- don't install /usr/lib/rpm/redhat per-vendor configuration anymore.
CVS patchset: 5512
CVS date: 2002/06/20 02:19:21
- 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).
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 \
-I$(top_srcdir)/rpmio \
-I$(top_srcdir)/beecrypt \
-I$(top_srcdir)/popt \
+ @WITH_LIBELF_INCLUDE@ \
@WITH_ZLIB_INCLUDE@ \
@INCPATH@
$(top_builddir)/rpmdb/librpmdb.la \
$(top_builddir)/rpmio/librpmio.la \
$(top_builddir)/popt/libpopt.la \
+ @WITH_LIBELF_LIB@ \
@WITH_ZLIB_LIB@ \
@INTLLIBS@ @LIBMISC@
(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
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);
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])
])
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
[ -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
int_32 uht, uhc;
if (!headerGetEntry(h, RPMTAG_HEADERIMMUTABLE, &uht, &uh, &uhc)
- || uh == NULL)
+ || uh == NULL)
{
h = headerFree(h, NULL);
goto exit;
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;
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;
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. */
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);
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;
#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. */
} 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. */
/* 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;
}
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 {
--- /dev/null
+.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
--- /dev/null
+# 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
--- /dev/null
+#!/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
--- /dev/null
+.deps
+.depend
+Makefile
+.libs
+*.la
+*.lo
+sys_elf.h
--- /dev/null
+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
#/*! \page config_macros Default configuration: /usr/lib/rpm/macros
# \verbatim
#
-# $Id: macros.in,v 1.100 2002/05/21 16:33:33 jbj Exp $
+# $Id: macros.in,v 1.101 2002/06/20 02:19:21 jbj Exp $
#
# This is a global RPM configuration file. All changes made here will
# be lost when the rpm package is upgraded. Any per-system configuration
# +OutputInformationFD=1 +OutputWarningFD=1 \
# -o %{__signature_filename} %{__plaintext_filename}
+#
+# XXX rpm-4.1 verifies prelinked libraries using a prelink undo helper.
+# Note: The 2nd token is used as argv[0] and "library" is a
+# placeholder that will be deleted and replaced with the appropriate
+# library file path.
+%__prelink_undo_cmd /usr/sbin/prelink prelink -y library
+
#==============================================================================
# ---- Transaction macros.
# Macro(s) used to parameterize transactions.
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"
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áø>"
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"
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"
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)"
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"
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"
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)"
"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)"
"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"
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"
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"
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"
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"
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 ""
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"
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"
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"
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"
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"
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>"
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"
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"
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)"
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"
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"
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)"
"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)"
"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"
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"
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"
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"
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"
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 ""
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"
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"
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: "
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"
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"
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 ""
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"
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 ""
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)"
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"
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"
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)"
"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)"
"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"
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"
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"
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"
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 ""
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"
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."
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 ""
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: "
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"
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"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
msgstr ""
#. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
msgid "getting list of mounted filesystems\n"
msgstr ""
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 ""
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 ""
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"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
msgstr ""
#. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
msgid "getting list of mounted filesystems\n"
msgstr ""
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 ""
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 ""
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"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
msgstr ""
#. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
msgid "getting list of mounted filesystems\n"
msgstr ""
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 ""
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 ""
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"
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 ""
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"
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 ""
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)"
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"
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"
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)"
"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)"
"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"
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"
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"
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"
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 ""
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"
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."
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 ""
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:"
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"
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"
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 ""
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"
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 ""
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 ""
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"
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"
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 "
" --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 ""
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 ""
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"
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"
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 ""
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"
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"
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 ""
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"
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"
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"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
msgstr ""
#. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
msgid "getting list of mounted filesystems\n"
msgstr ""
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 ""
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 ""
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"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
msgstr ""
#. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
msgid "getting list of mounted filesystems\n"
msgstr ""
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 ""
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 ""
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"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
msgstr ""
#. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
msgid "getting list of mounted filesystems\n"
msgstr ""
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 ""
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 ""
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"
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 ""
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"
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"
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 ""
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"
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 ""
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"
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 ""
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 ""
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"
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 ""
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 ""
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"
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 ""
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: "
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"
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"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
msgstr ""
#. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
msgid "getting list of mounted filesystems\n"
msgstr ""
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 ""
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 ""
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"
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 ""
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"
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"
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 "(¿ô»ú¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó)"
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"
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 ¤ÎºîÀ®¥¨¥é¡¼"
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)"
"<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)"
"¸Å¤¤¥Ð¡¼¥¸¥ç¥ó¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ë¥¢¥Ã¥×¥°¥ì¡¼¥É¤·¤Þ¤¹\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 "¥Ñ¥Ã¥±¡¼¥¸¥Õ¥¡¥¤¥ë¤Ë¤Ä¤¤¤ÆÌ䤤¹ç¤ï¤»¤Þ¤¹"
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"
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"
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"
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"
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 ""
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¡£"
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"
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 ¤Î¤¿¤á¤Î°Í¸À¤òËþ¤¿¤·¤Æ¤¤¤Þ¤»¤ó:"
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"
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"
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 "<µð·ºÅ丮>"
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"
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"
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 "(¼ýÀÚ°¡ ¾Æ´Õ´Ï´Ù)"
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"
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"
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)"
"<ÆÐÅ°Áö> À̸§°ú ÀÏÄ¡ÇÏ´Â ÆÐÅ°Áö´Â ¸ðµÎ Á¦°ÅÇÕ´Ï´Ù (<ÆÐÅ°Áö>¿¡ ¿©·¯°³ÀÇ ÆÐÅ°Áö"
"¸¦ µ¿½Ã¿¡ ÁöÁ¤ÇÒ °æ¿ì¿¡´Â ¿À·ù°¡ ¹ß»ýÇÕ´Ï´Ù)"
-#: 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)"
"ÀÌÀü ¹öÀüÀÇ ÆÐÅ°Áö·Î ´Ù¿î±×·¹À̵å ÇÕ´Ï´Ù (--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 "ÆÐÅ°Áö¸¦ ¾÷±×·¹À̵å ÇÕ´Ï´Ù"
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"
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"
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"
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"
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)ÇÕ´Ï´Ù"
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"
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 ""
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¿¡ ÀÇÁ¸¼º ¹®Á¦ ¹ß»ý: "
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"
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"
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>"
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"
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"
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 ""
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"
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"
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)"
"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)"
"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)"
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"
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"
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"
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 ""
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 ""
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"
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"
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"
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"
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"
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 ""
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"
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"
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±)"
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"
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"
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)"
"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)"
"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>"
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"
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"
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"
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 ""
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 ""
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."
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 ""
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: "
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"
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"
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>"
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"
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"
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)"
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"
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"
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)"
"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)"
"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)"
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"
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"
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"
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"
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"
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"
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 ""
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: "
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"
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
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 ""
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"
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 ""
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 ""
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"
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"
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)"
"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)"
"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"
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 ""
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"
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"
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 ""
# "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"
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"
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 ""
# "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"
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"
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"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
msgstr ""
#. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
msgid "getting list of mounted filesystems\n"
msgstr ""
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 ""
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 ""
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"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
msgstr ""
#. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
msgid "getting list of mounted filesystems\n"
msgstr ""
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 ""
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 ""
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"
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 "<ËÁÔÁÌÏÇ>"
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"
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"
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 "(ÎÅ ÞÉÓÌÏ)"
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"
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"
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)"
"ÕÄÁÌÉÔØ ×ÓÅ ÐÁËÅÔÙ, ÓÏ×ÐÁÄÁÀÝÉÅ Ó <ÐÁËÅÔ> (ÏÂÙÞÎÏ, ÅÓÌÉ <ÐÁËÅÔ> "
"ÓÏÏÔ×ÅÔÓÔ×ÕÅÔ ÎÅÓËÏÌØËÉÍ ÐÁËÅÔÁÍ, ÇÅÎÅÒÉÒÕÅÔÓÑ ÏÛÉÂËÁ)"
-#: 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)"
"ÏÔËÁÔ ÎÁ ÂÏÌÅÅ ÓÔÁÒÕÀ ×ÅÒÓÉÀ ÐÁËÅÔÁ (--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 "ÏÂÎÏ×ÉÔØ ÐÁËÅÔ(Ù)"
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"
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"
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"
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"
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"
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"
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 ""
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: "
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"
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"
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 ""
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"
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"
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)"
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"
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"
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)"
"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)"
"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>"
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"
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"
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"
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 ""
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 ""
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."
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 ""
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: "
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"
# -*- 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"
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 ""
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"
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"
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)"
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"
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"
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)"
"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)"
"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> "
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"
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"
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"
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"
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 ""
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."
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"
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: "
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"
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"
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 ""
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"
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 ""
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)"
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"
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"
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)"
"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"
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"
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"
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"
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 ""
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"
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"
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 ""
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: "
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"
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"
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>"
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"
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"
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)"
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"
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"
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)"
"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)"
"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"
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"
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"
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"
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"
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"
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"
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 ""
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: "
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"
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"
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>"
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"
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"
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)"
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"
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"
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)"
"<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)"
"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"
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"
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"
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"
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"
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 ""
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"
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"
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: "
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"
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"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
msgstr ""
#. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
msgid "getting list of mounted filesystems\n"
msgstr ""
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 ""
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 ""
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"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
msgstr ""
#. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
msgid "getting list of mounted filesystems\n"
msgstr ""
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 ""
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 ""
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"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
msgstr ""
#. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
msgid "getting list of mounted filesystems\n"
msgstr ""
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 ""
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 ""
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"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
msgstr ""
#. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
msgid "getting list of mounted filesystems\n"
msgstr ""
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 ""
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 ""
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@
&count);
}
- if (domd5(s->fileList[fileNumber], buf, 1)) {
+ if (domd5(s->fileList[fileNumber], buf, 1, NULL)) {
strcpy(buf, "00000000000000000000000000000000");
}
%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
%{__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.
-I$(top_srcdir)/rpmio \
-I$(top_srcdir)/beecrypt \
-I$(top_srcdir)/popt \
+ @WITH_LIBELF_INCLUDE@ \
@INCPATH@
EXTRA_DIST = db3.c
-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)
*/
#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);
#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.
#/*! \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
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
#*/
$(top_builddir)/rpmdb/librpmdb.la \
$(top_builddir)/rpmio/librpmio.la \
$(top_builddir)/popt/libpopt.la \
+ @WITH_LIBELF_LIB@ \
@INTLLIBS@
noinst_PROGRAMS = \