summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES1
-rw-r--r--configure.ac2
-rw-r--r--doc/rpm.85
-rw-r--r--lib/depends.c23
-rw-r--r--lib/formats.c2
-rw-r--r--lib/poptI.c4
-rw-r--r--lib/rpmal.c9
-rw-r--r--lib/rpminstall.c48
-rw-r--r--lib/rpmlib.h3
-rw-r--r--lib/rpmte.c7
-rw-r--r--lib/rpmte.h1
-rw-r--r--lib/rpmts.c55
-rw-r--r--lib/rpmts.h2
-rw-r--r--macros.in23
-rw-r--r--po/cs.po211
-rw-r--r--po/da.po218
-rw-r--r--po/de.po214
-rw-r--r--po/fi.po211
-rw-r--r--po/fr.po211
-rw-r--r--po/gl.po210
-rw-r--r--po/is.po211
-rw-r--r--po/ja.po214
-rw-r--r--po/ko.po211
-rw-r--r--po/no.po211
-rw-r--r--po/pl.po214
-rw-r--r--po/pt.po211
-rw-r--r--po/pt_BR.po221
-rw-r--r--po/ro.po210
-rw-r--r--po/rpm.pot210
-rw-r--r--po/ru.po211
-rw-r--r--po/sk.po214
-rw-r--r--po/sl.po216
-rw-r--r--po/sr.po211
-rw-r--r--po/sv.po211
-rw-r--r--po/tr.po211
-rw-r--r--python/rpmmodule.c2
-rw-r--r--python/rpmts-py.c2
-rw-r--r--rpm.spec.in5
38 files changed, 2602 insertions, 2054 deletions
diff --git a/CHANGES b/CHANGES
index eacbd7d92..d66d30a03 100644
--- a/CHANGES
+++ b/CHANGES
@@ -233,6 +233,7 @@
- python: include instance in IDTXload, filename in IDTXglob, return
- python: argument to ts.addErase (if integer) deletes that instance.
- python: rpmmi methods to return this instance, and number of members.
+ - supply transitive closure for CLI packages from rpmdb-redhat database.
4.0.3 -> 4.0.4:
- solaris: translate i86pc to i386 (#57182).
diff --git a/configure.ac b/configure.ac
index 9b3fa14cb..c7154e246 100644
--- a/configure.ac
+++ b/configure.ac
@@ -14,7 +14,7 @@ AM_CONFIG_HEADER(config.h)
dnl XXX AM_MAINTAINER_MODE
dnl Set of available languages.
-ALL_LINGUAS="cs da de en_RN es eu_ES fi fr gl hu id is it ja ko no pl pt pt_BR ro ru sk sl sr sv tr uk wa zh zh_CN.GB2312"
+ALL_LINGUAS="cs da de fi fr gl is ja ko no pl pt pt_BR ro ru sk sl sr sv tr"
# echo "
# ****************************************************************************
diff --git a/doc/rpm.8 b/doc/rpm.8
index 8bf3fd5dc..5bce9a040 100644
--- a/doc/rpm.8
+++ b/doc/rpm.8
@@ -96,7 +96,7 @@ rpm \- RPM Package Manager
.PP
- [\fB--allfiles\fR] [\fB--badreloc\fR] [\fB--excludepath \fIOLDPATH\fB\fR]
+ [\fB--aid\fR] [\fB--allfiles\fR] [\fB--badreloc\fR] [\fB--excludepath \fIOLDPATH\fB\fR]
[\fB--excludedocs\fR] [\fB--force\fR] [\fB-h,--hash\fR]
[\fB--ignoresize\fR] [\fB--ignorearch\fR] [\fB--ignoreos\fR]
[\fB--includedocs\fR] [\fB--justdb\fR] [\fB--nodeps\fR]
@@ -220,6 +220,9 @@ for information on \fBrpm\fR's internal
client support.
.PP
.TP
+\fB--aid\fR
+Add suggested packages to the transaction set when needed.
+.TP
\fB--allfiles\fR
Installs or upgrades all the missingok files in the package,
regardless if they exist.
diff --git a/lib/depends.c b/lib/depends.c
index 8c6c0e3f7..1ad5ca6ab 100644
--- a/lib/depends.c
+++ b/lib/depends.c
@@ -4,7 +4,7 @@
#include "system.h"
-#include <rpmlib.h>
+#include <rpmcli.h> /* XXX rpmcliPackagesTotal */
#include <rpmmacro.h> /* XXX rpmExpand("%{_dependency_whiteout}" */
@@ -192,8 +192,10 @@ int rpmtsAddInstallElement(rpmts ts, Header h,
/*@-boundswrite@*/
ts->order[oc] = p;
/*@=boundswrite@*/
- if (!duplicate)
+ if (!duplicate) {
ts->orderCount++;
+ rpmcliPackagesTotal++;
+ }
pkgKey = rpmalAdd(&ts->addedPackages, pkgKey, rpmteKey(p),
rpmteDS(p, RPMTAG_PROVIDENAME),
@@ -342,6 +344,7 @@ static int unsatisfiedDepend(rpmts ts, rpmds dep, int adding)
int _cacheThisRC = 1;
int rc;
int xx;
+ int retrying = 0;
if ((Name = rpmdsN(dep)) == NULL)
return 0; /* XXX can't happen */
@@ -394,6 +397,7 @@ static int unsatisfiedDepend(rpmts ts, rpmds dep, int adding)
}
}
+retry:
rc = 0; /* assume dependency is satisfied */
#if defined(DYING) || defined(__LCLINT__)
@@ -500,9 +504,17 @@ static int unsatisfiedDepend(rpmts ts, rpmds dep, int adding)
* Search for an unsatisfied dependency.
*/
/*@-boundsread@*/
- if (adding && !(rpmtsFlags(ts) & RPMTRANS_FLAG_NOSUGGEST)) {
- if (ts->solve != NULL)
+ if (adding && !retrying && !(rpmtsFlags(ts) & RPMTRANS_FLAG_NOSUGGEST)) {
+ if (ts->solve != NULL) {
xx = (*ts->solve) (ts, dep, ts->solveData);
+ if (xx == 0)
+ goto exit;
+ if (xx == -1) {
+ retrying = 1;
+ rpmalMakeIndex(ts->addedPackages);
+ goto retry;
+ }
+ }
}
/*@=boundsread@*/
@@ -1169,7 +1181,9 @@ int rpmtsOrder(rpmts ts)
int qlen;
int i, j;
+#ifdef DYING
rpmalMakeIndex(ts->addedPackages);
+#endif
/* T1. Initialize. */
if (oType == 0)
@@ -1601,7 +1615,6 @@ int rpmtsCheck(rpmts ts)
ts->probs = rpmpsCreate();
rpmalMakeIndex(ts->addedPackages);
- rpmalMakeIndex(ts->availablePackages);
/*
* Look at all of the added packages and make sure their dependencies
diff --git a/lib/formats.c b/lib/formats.c
index 504a50dce..e64620f62 100644
--- a/lib/formats.c
+++ b/lib/formats.c
@@ -307,7 +307,7 @@ static /*@only@*/ char * pgpsigFormat(int_32 type, const void * data,
}
if (pktlen == 0 || tag != PGPTAG_SIGNATURE) {
- val = xstrdup(_("(not a OpenPGP signature"));
+ val = xstrdup(_("(not an OpenPGP signature)"));
} else {
pgpDig dig = pgpNewDig();
pgpDigParams sigp = &dig->signature;
diff --git a/lib/poptI.c b/lib/poptI.c
index f3fc20849..07a90c77f 100644
--- a/lib/poptI.c
+++ b/lib/poptI.c
@@ -147,6 +147,10 @@ struct poptOption rpmInstallPoptTable[] = {
installArgCallback, 0, NULL, NULL },
/*@=type@*/
+ { "aid", '\0', POPT_BIT_SET|POPT_ARGFLAG_DOC_HIDDEN,
+ &rpmIArgs.transFlags, RPMTRANS_FLAG_ADDINDEPS,
+ N_("add suggested packages to transaction"), NULL },
+
{ "allfiles", '\0', POPT_BIT_SET,
&rpmIArgs.transFlags, RPMTRANS_FLAG_ALLFILES,
N_("install all files, even configurations which might otherwise be skipped"),
diff --git a/lib/rpmal.c b/lib/rpmal.c
index 5f629e613..2a69167e0 100644
--- a/lib/rpmal.c
+++ b/lib/rpmal.c
@@ -587,11 +587,12 @@ void rpmalMakeIndex(rpmal al)
{
availableIndex ai;
availablePackage alp;
+ int aisize;
int i;
- if (al == NULL) return;
+ if (al == NULL || al->list == NULL) return;
ai = &al->index;
- if (ai->size || al->list == NULL) return;
+ aisize = ai->size;
for (i = 0; i < al->size; i++) {
alp = al->list + i;
@@ -599,8 +600,8 @@ void rpmalMakeIndex(rpmal al)
ai->size += rpmdsCount(alp->provides);
}
- if (ai->size) {
- ai->index = xcalloc(ai->size, sizeof(*ai->index));
+ if (ai->size != aisize) {
+ ai->index = xrealloc(ai->index, ai->size * sizeof(*ai->index));
ai->k = 0;
for (i = 0; i < al->size; i++) {
diff --git a/lib/rpminstall.c b/lib/rpminstall.c
index a11297c26..b6df7d1da 100644
--- a/lib/rpminstall.c
+++ b/lib/rpminstall.c
@@ -7,6 +7,7 @@
#include <rpmcli.h>
#include "rpmdb.h"
+#include "rpmds.h"
#define _RPMTS_INTERNAL /* ts->goal, ts->dbmode, ts->suggests */
#include "rpmts.h"
@@ -108,6 +109,7 @@ void * rpmShowProgress(/*@null@*/ const void * arg,
const char * filename = (const char *)key;
/*@=assignexpose =abstract @*/
static FD_t fd = NULL;
+ int xx;
switch (what) {
case RPMCALLBACK_INST_OPEN_FILE:
@@ -117,7 +119,14 @@ void * rpmShowProgress(/*@null@*/ const void * arg,
/*@=boundsread@*/
fd = Fopen(filename, "r.ufdio");
/*@-type@*/ /* FIX: still necessary? */
- if (fd)
+ if (fd == NULL || Ferror(fd)) {
+ rpmError(RPMERR_OPEN, _("open of %s failed: %s\n"), filename,
+ Fstrerror(fd));
+ if (fd) {
+ xx = Fclose(fd);
+ fd = NULL;
+ }
+ } else
fd = fdLink(fd, "persist (showProgress)");
/*@=type@*/
return fd;
@@ -128,16 +137,12 @@ void * rpmShowProgress(/*@null@*/ const void * arg,
fd = fdFree(fd, "persist (showProgress)");
/*@=type@*/
if (fd) {
- (void) Fclose(fd);
+ xx = Fclose(fd);
fd = NULL;
}
break;
case RPMCALLBACK_INST_START:
-#if 0
-if (_hash_debug)
-fprintf(stderr, "--- INST_START: %p %lu:%lu %p %p\n", arg, amount, total, key, data);
-#endif
rpmcliHashesCurrent = 0;
if (h == NULL || !(flags & INSTALL_LABEL))
break;
@@ -292,12 +297,13 @@ int rpmInstall(rpmts ts,
if (fileArgv == NULL) goto exit;
+ ts->goal = TSM_INSTALL;
+ rpmcliPackagesTotal = 0;
+
(void) rpmtsSetFlags(ts, ia->transFlags);
probFilter = ia->probFilter;
relocations = ia->relocations;
- ts->goal = TSM_INSTALL;
-
if (ia->installInterfaceFlags & INSTALL_UPGRADE)
vsflags = rpmExpandNumeric("%{?_vsflags_erase}");
else
@@ -360,6 +366,30 @@ restart:
fileURL = eiu->argv[i];
eiu->argv[i] = NULL;
+#ifdef NOTYET
+if (fileURL[0] == '=') {
+ rpmds this = rpmdsSingle(RPMTAG_REQUIRENAME, fileURL+1, NULL, 0);
+
+ xx = rpmtsSolve(ts, this, NULL);
+ if (ts->suggests && ts->nsuggests > 0) {
+ fileURL = _free(fileURL);
+ fileURL = ts->suggests[0];
+ ts->suggests[0] = NULL;
+ while (ts->nsuggests-- > 0) {
+ if (ts->suggests[ts->nsuggests] == NULL)
+ continue;
+ ts->suggests[ts->nsuggests] = _free(ts->suggests[ts->nsuggests]);
+ }
+ ts->suggests = _free(ts->suggests);
+ rpmMessage(RPMMESS_DEBUG, _("Adding goal: %s\n"), fileURL);
+ eiu->pkgURL[eiu->pkgx] = fileURL;
+ fileURL = NULL;
+ eiu->pkgx++;
+ }
+ this = rpmdsFree(this);
+} else
+#endif
+
switch (urlIsURL(fileURL)) {
case URL_IS_FTP:
case URL_IS_HTTP:
@@ -627,7 +657,7 @@ restart:
if (eiu->numRPMS && !stopInstall) {
- rpmcliPackagesTotal = eiu->numRPMS + eiu->numSRPMS;
+ rpmcliPackagesTotal += eiu->numSRPMS;
rpmMessage(RPMMESS_DEBUG, _("installing binary packages\n"));
diff --git a/lib/rpmlib.h b/lib/rpmlib.h
index 831dc8b00..e1cfdfc64 100644
--- a/lib/rpmlib.h
+++ b/lib/rpmlib.h
@@ -925,7 +925,8 @@ typedef enum rpmtransFlags_e {
RPMTRANS_FLAG_CHAINSAW = (1 << 26),
/*@=enummemuse@*/
RPMTRANS_FLAG_NOMD5 = (1 << 27), /*!< from --nomd5 */
- RPMTRANS_FLAG_NOSUGGEST = (1 << 28) /*!< from --nosuggest */
+ RPMTRANS_FLAG_NOSUGGEST = (1 << 28), /*!< from --nosuggest */
+ RPMTRANS_FLAG_ADDINDEPS = (1 << 29)
} rpmtransFlags;
#define _noTransScripts \
diff --git a/lib/rpmte.c b/lib/rpmte.c
index a398e3459..246c6f976 100644
--- a/lib/rpmte.c
+++ b/lib/rpmte.c
@@ -444,8 +444,7 @@ rpmtsi XrpmtsiInit(rpmts ts, const char * fn, unsigned int ln)
tsi = xcalloc(1, sizeof(*tsi));
tsi->ts = rpmtsLink(ts, "rpmtsi");
tsi->reverse = ((rpmtsFlags(ts) & RPMTRANS_FLAG_REVERSE) ? 1 : 0);
- tsi->ocmax = rpmtsNElements(ts);
- tsi->oc = (tsi->reverse ? (tsi->ocmax - 1) : 0);
+ tsi->oc = (tsi->reverse ? (rpmtsNElements(ts) - 1) : 0);
tsi->ocsave = tsi->oc;
/*@-modfilesys@*/
if (_rpmte_debug)
@@ -466,13 +465,13 @@ rpmte rpmtsiNextElement(rpmtsi tsi)
rpmte te = NULL;
int oc = -1;
- if (tsi == NULL || tsi->ts == NULL || tsi->ocmax <= 0)
+ if (tsi == NULL || tsi->ts == NULL || rpmtsNElements(tsi->ts) <= 0)
return te;
if (tsi->reverse) {
if (tsi->oc >= 0) oc = tsi->oc--;
} else {
- if (tsi->oc < tsi->ocmax) oc = tsi->oc++;
+ if (tsi->oc < rpmtsNElements(tsi->ts)) oc = tsi->oc++;
}
tsi->ocsave = oc;
/*@-branchstate@*/
diff --git a/lib/rpmte.h b/lib/rpmte.h
index 0f512dd6c..5fbd235df 100644
--- a/lib/rpmte.h
+++ b/lib/rpmte.h
@@ -128,7 +128,6 @@ struct rpmtsi_s {
rpmts ts; /*!< transaction set. */
int reverse; /*!< reversed traversal? */
int ocsave; /*!< last returned iterator index. */
- int ocmax; /*!< iterator max index. */
int oc; /*!< iterator index. */
};
diff --git a/lib/rpmts.c b/lib/rpmts.c
index 253335550..da8a9567c 100644
--- a/lib/rpmts.c
+++ b/lib/rpmts.c
@@ -311,11 +311,12 @@ int rpmtsOpenSDB(rpmts ts, int dbmode)
return 1;
addMacro(NULL, "_dbpath", NULL, "%{_solve_dbpath}", RMIL_DEFAULT);
+
rc = rpmdbOpen(ts->rootDir, &ts->sdb, ts->sdbmode, 0644);
if (rc) {
const char * dn;
dn = rpmGetPath(ts->rootDir, "%{_dbpath}", NULL);
- rpmMessage(RPMMESS_DEBUG,
+ rpmMessage(RPMMESS_WARNING,
_("cannot open Solve database in %s\n"), dn);
dn = _free(dn);
}
@@ -349,6 +350,7 @@ int rpmtsSolve(rpmts ts, rpmds ds, /*@unused@*/ const void * data)
rpmdbMatchIterator mi;
Header bh;
Header h;
+ size_t bhnamelen;
time_t bhtime;
rpmTag rpmtag;
const char * keyp;
@@ -376,25 +378,40 @@ int rpmtsSolve(rpmts ts, rpmds ds, /*@unused@*/ const void * data)
rpmtag = (*keyp == '/' ? RPMTAG_BASENAMES : RPMTAG_PROVIDENAME);
keylen = 0;
mi = rpmdbInitIterator(ts->sdb, rpmtag, keyp, keylen);
+ bhnamelen = 0;
bhtime = 0;
bh = NULL;
while ((h = rpmdbNextIterator(mi)) != NULL) {
+ const char * hname;
+ size_t hnamelen;
time_t htime;
int_32 * ip;
if (rpmtag == RPMTAG_PROVIDENAME && !rpmdsAnyMatchesDep(h, ds, 1))
continue;
+ /* XXX Prefer the shortest name if given alternatives. */
+ hname = NULL;
+ hnamelen = 0;
+ if (headerGetEntry(h, RPMTAG_NAME, NULL, (void **)&hname, NULL)) {
+ if (hname)
+ hnamelen = strlen(hname);
+ }
+ if (bhnamelen > 0 && hnamelen > bhnamelen)
+ continue;
+
+ /* XXX Prefer the newest build if given alternatives. */
htime = 0;
if (headerGetEntry(h, RPMTAG_BUILDTIME, NULL, (void **)&ip, NULL))
htime = (time_t)*ip;
- /* XXX Prefer the newest build if given alternatives. */
if (htime <= bhtime)
continue;
+
bh = headerFree(bh);
bh = headerLink(h);
bhtime = htime;
+ bhnamelen = hnamelen;
}
mi = rpmdbFreeIterator(mi);
@@ -414,6 +431,40 @@ int rpmtsSolve(rpmts ts, rpmds ds, /*@unused@*/ const void * data)
goto exit;
}
+ if (ts->transFlags & RPMTRANS_FLAG_ADDINDEPS) {
+ Header h;
+ FD_t fd;
+ rpmRC rpmrc;
+
+ fd = Fopen(str, "r.ufdio");
+ if (fd == NULL || Ferror(fd)) {
+ rpmError(RPMERR_OPEN, _("open of %s failed: %s\n"), str,
+ Fstrerror(fd));
+ if (fd) {
+ xx = Fclose(fd);
+ fd = NULL;
+ }
+ str = _free(str);
+ goto exit;
+ }
+ rpmrc = rpmReadPackageFile(ts, fd, str, &h);
+ xx = Fclose(fd);
+ if (rpmrc == RPMRC_OK || rpmrc == RPMRC_BADSIZE) {
+ if (h != NULL &&
+ !rpmtsAddInstallElement(ts, h, (fnpyKey)str, 1, NULL))
+ {
+ rpmMessage(RPMMESS_DEBUG, _("Adding: %s\n"), str);
+ rc = -1;
+ /* XXX str memory leak */
+ } else
+ str = _free(str);
+ } else
+ str = _free(str);
+ h = headerFree(h);
+ goto exit;
+ }
+
+ rpmMessage(RPMMESS_DEBUG, _("Suggesting: %s\n"), str);
/* If suggestion is already present, don't bother. */
if (ts->suggests != NULL && ts->nsuggests > 0) {
if (bsearch(&str, ts->suggests, ts->nsuggests,
diff --git a/lib/rpmts.h b/lib/rpmts.h
index 4a64a8c21..d729d7d51 100644
--- a/lib/rpmts.h
+++ b/lib/rpmts.h
@@ -375,7 +375,7 @@ int rpmtsOpenSDB(rpmts ts, int dbmode)
* @param ts transaction set
* @param ds dependency set
* @param data opaque data associated with callback
- * @return 0 if resolved, 1 not found
+ * @return -1 retry, 0 ignore, 1 not found
*/
/*@-exportlocal@*/
int rpmtsSolve(rpmts ts, rpmds ds, const void * data)
diff --git a/macros.in b/macros.in
index fc18e757c..2df5a25b3 100644
--- a/macros.in
+++ b/macros.in
@@ -1,7 +1,7 @@
#/*! \page config_macros Default configuration: /usr/lib/rpm/macros
# \verbatim
#
-# $Id: macros.in,v 1.118 2002/08/06 01:41:46 jbj Exp $
+# $Id: macros.in,v 1.119 2002/08/13 16:36:45 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
@@ -534,12 +534,16 @@
# /etc/rpm/macros.solve, installed with the rpmdb-redhat package.
#%_solve_dbpath /usr/lib/rpmdb/%{_arch}-%{_vendor}-%{_os}/redhat
+# The path to the dependency universe packages. This should
+# be a path to the packages contained in the solve database.
+#%_solve_pkgsdir /mnt/redhat/test/latest-i386/RedHat/RPMS/
+
# The output binary package file name template used when suggesting
# binary packages that solve a dependency. The macro is usually defined
# in /etc/rpm/macros.solve, installed with the rpmdb-redhat package.
#
# XXX Note: escaped %% for use in headerSprintf()
-#%_solve_name_fmt %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm
+#%_solve_name_fmt %{?_solve_pkgsdir}%%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm
# The output binary package file name template used when repackaging
# erased packages.
@@ -564,13 +568,14 @@
# Note: the %_vsflags_erase applies to --upgrade/--freshen modes as
# well as --erase.
#
-%_vsflags_build 0
-%_vsflags_erase 0
-%_vsflags_install 0
-%_vsflags_query 1
-%_vsflags_rebuilddb 0
-%_vsflags_up2date 0
-%_vsflags_verify 0
+%__vsflags 0
+%_vsflags_build %{__vsflags}
+%_vsflags_erase %{__vsflags}
+%_vsflags_install %{__vsflags}
+%_vsflags_query %{__vsflags}
+%_vsflags_rebuilddb %{__vsflags}
+%_vsflags_up2date %{__vsflags}
+%_vsflags_verify %{__vsflags}
# Relations between package names that cause dependency loops
# with legacy packages that cannot be fixed. Relations are
diff --git a/po/cs.po b/po/cs.po
index 7cb56bb0b..bf2b99559 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-10 13:48-0400\n"
+"POT-Creation-Date: 2002-08-13 12:17-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"
@@ -1268,19 +1268,19 @@ msgstr "nekontrolovat závislosti balíèkù"
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr "generovat hlavièky balíèkù kompatibilní s RPM verze 2 a 3"
-#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:261 lib/poptI.c:268
+#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:265 lib/poptI.c:272
#: lib/poptQV.c:329 lib/poptQV.c:338 lib/poptQV.c:377
#, fuzzy
msgid "don't verify package digest(s)"
msgstr "nekontrolovat závislosti balíèkù"
-#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:263 lib/poptI.c:270
+#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:267 lib/poptI.c:274
#: lib/poptQV.c:332 lib/poptQV.c:340 lib/poptQV.c:380
#, fuzzy
msgid "don't verify database header(s) when retrieved"
msgstr "nekontrolovat architekturu balíèku"
-#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:265 lib/poptI.c:272
+#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:269 lib/poptI.c:276
#: lib/poptQV.c:335 lib/poptQV.c:342 lib/poptQV.c:382
#, fuzzy
msgid "don't verify package signature(s)"
@@ -1375,52 +1375,52 @@ msgstr "selhal - "
msgid "package %s was already added, replacing with %s\n"
msgstr "balíèek %s je ji¾ nainstalován"
-#: lib/depends.c:391
+#: lib/depends.c:394
msgid "(cached)"
msgstr ""
-#: lib/depends.c:417
+#: lib/depends.c:421
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %-45s ANO (rpmrc poskytuje)\n"
-#: lib/depends.c:434
+#: lib/depends.c:438
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %-45s ANO (rpmlib poskytuje)\n"
-#: lib/depends.c:463
+#: lib/depends.c:467
#, fuzzy
msgid "(db files)"
msgstr "©patnı soubor: %s: %s\n"
-#: lib/depends.c:476
+#: lib/depends.c:480
#, fuzzy
msgid "(db provides)"
msgstr "%s: %-45s ANO (db poskytuje)\n"
-#: lib/depends.c:489
+#: lib/depends.c:493
#, fuzzy
msgid "(db package)"
msgstr "¾ádné balíèky\n"
-#: lib/depends.c:839
+#: lib/depends.c:851
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:961
+#: lib/depends.c:973
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "odstraòuji %s-%s-%s \"%s\" z tsort relací.\n"
#. Record all relations.
-#: lib/depends.c:1193
+#: lib/depends.c:1207
msgid "========== recording tsort relations\n"
msgstr "========== ukládání tsort relací\n"
#. T4. Scan for zeroes.
-#: lib/depends.c:1294
+#: lib/depends.c:1308
#, fuzzy
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
@@ -1428,20 +1428,20 @@ msgid ""
msgstr ""
"========== tsorting balíèkù (poøadí, #pøedchùdce, #následovník, hloubka)\n"
-#: lib/depends.c:1377
+#: lib/depends.c:1391
msgid "========== successors only (presentation order)\n"
msgstr "========== pouze úspì¹né (poøadí dle prezentace)\n"
-#: lib/depends.c:1447
+#: lib/depends.c:1461
msgid "LOOP:\n"
msgstr "SMYÈKA:\n"
-#: lib/depends.c:1482
+#: lib/depends.c:1496
msgid "========== continuing tsort ...\n"
msgstr "========== pokraèuje tsort ...\n"
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1487
+#: lib/depends.c:1501
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1467,7 +1467,7 @@ msgstr "(není èíslo)"
#: lib/formats.c:310
#, fuzzy
-msgid "(not a OpenPGP signature"
+msgid "(not an OpenPGP signature)"
msgstr "vynechat pøípadné PGP podpisy"
#: lib/fs.c:77
@@ -1716,11 +1716,16 @@ msgid "malformed rollback time/date stamp argument"
msgstr "poru¹enı rollback èas"
#: lib/poptI.c:152
+#, fuzzy
+msgid "add suggested packages to transaction"
+msgstr "dotaz/ovìøení balíèkù ve skupinì"
+
+#: lib/poptI.c:156
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:156
+#: lib/poptI.c:160
msgid ""
"remove all packages which match <package> (normally an error is generated if "
"<package> specified multiple packages)"
@@ -1728,140 +1733,140 @@ msgstr ""
"odstranit v¹echny balíèky odpovídající <balíèku> (obvykle se generuje chyba, "
"specifikuje-li <balíèek> více balíèkù)"
-#: lib/poptI.c:162 lib/poptI.c:241 lib/poptI.c:244
+#: lib/poptI.c:166 lib/poptI.c:245 lib/poptI.c:248
msgid "do not execute package scriptlet(s)"
msgstr "nespou¹tìt ¾ádné skripty urèené pro balíèky"
-#: lib/poptI.c:166
+#: lib/poptI.c:170
msgid "relocate files in non-relocateable package"
msgstr "pøemístìní souborù v nepøemístitelném balíèku"
-#: lib/poptI.c:169
+#: lib/poptI.c:173
msgid "save erased package files by renaming into sub-directory"
msgstr "uchovat smazané soubory pøesunem do podadresáøe"
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "erase (uninstall) package"
msgstr "smazat (deinstalovat) balíèek"
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "<package>+"
msgstr "<balíèek>"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "do not install documentation"
msgstr "neinstalovat dokumentaci"
-#: lib/poptI.c:177
+#: lib/poptI.c:181
msgid "skip files with leading component <path> "
msgstr "pøeskoèit soubory s úvodní cestou <cesta> "
-#: lib/poptI.c:178
+#: lib/poptI.c:182
msgid "<path>"
msgstr "<cesta>"
-#: lib/poptI.c:183 lib/poptI.c:186
+#: lib/poptI.c:187 lib/poptI.c:190
msgid "short hand for --replacepkgs --replacefiles"
msgstr "zkratka pro --replacepkgs --replacefiles"
-#: lib/poptI.c:191
+#: lib/poptI.c:195
msgid "upgrade package(s) if already installed"
msgstr "aktualizace balíèku jestli¾e je ji¾ nainstalován"
-#: lib/poptI.c:192 lib/poptI.c:210 lib/poptI.c:213 lib/poptI.c:320
+#: lib/poptI.c:196 lib/poptI.c:214 lib/poptI.c:217 lib/poptI.c:324
msgid "<packagefile>+"
msgstr "<soubor_balíèku>+"
-#: lib/poptI.c:194
+#: lib/poptI.c:198
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:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr "nekontrolovat architekturu balíèku"
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr "nekontrolovat operaèní systém balíèku"
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr "nekontrolovat volné místo na disku pøed instalací"
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr "nainstalovat dokumentaci"
-#: lib/poptI.c:210 lib/poptI.c:213
+#: lib/poptI.c:214 lib/poptI.c:217
#, fuzzy
msgid "install package(s)"
msgstr "nainstalovat balíèek"
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "update the database, but do not modify the filesystem"
msgstr "upravit databázi, ale neupravovat systém souborovù"
-#: lib/poptI.c:221 lib/poptI.c:224
+#: lib/poptI.c:225 lib/poptI.c:228
msgid "do not verify package dependencies"
msgstr "nekontrolovat závislosti balíèkù"
-#: lib/poptI.c:228 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:232 lib/poptQV.c:275 lib/poptQV.c:278
msgid "don't verify MD5 digest of files"
msgstr "nekontrolovat MD5 souborù v balíèku"
-#: lib/poptI.c:231
+#: lib/poptI.c:235
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:236
+#: lib/poptI.c:240
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:248
+#: lib/poptI.c:252
#, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr "nespou¹tìt ¾ádné skripty (jsou-li nìjaké)"
-#: lib/poptI.c:251
+#: lib/poptI.c:255
#, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr "nespou¹tìt ¾ádné skripty (jsou-li nìjaké)"
-#: lib/poptI.c:254
+#: lib/poptI.c:258
#, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr "nespou¹tìt ¾ádné skripty (jsou-li nìjaké)"
-#: lib/poptI.c:257
+#: lib/poptI.c:261
#, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr "nespou¹tìt ¾ádné skripty (jsou-li nìjaké)"
-#: lib/poptI.c:276
+#: lib/poptI.c:280
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:279
+#: lib/poptI.c:283
#, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr "nespou¹tìt ¾ádné skripty urèené pro balíèky"
-#: lib/poptI.c:282
+#: lib/poptI.c:286
#, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr "nespou¹tìt ¾ádné instalaèní skripty"
-#: lib/poptI.c:285
+#: lib/poptI.c:289
#, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr "nespou¹tìt ¾ádné instalaèní skripty"
-#: lib/poptI.c:288
+#: lib/poptI.c:292
#, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr "nespou¹tìt ¾ádné instalaèní skripty"
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
@@ -1869,52 +1874,52 @@ msgstr ""
"aktualizovat na starou verzi balíèku (--force to dìlá pøi aktualizacích "
"automaticky)"
-#: lib/poptI.c:296
+#: lib/poptI.c:300
msgid "print percentages as package installs"
msgstr "bìhem instalace balíèku zobrazit procenta"
-#: lib/poptI.c:298
+#: lib/poptI.c:302
msgid "relocate the package to <dir>, if relocatable"
msgstr "pøemístit soubory do <adr>, jsou-li pøemístitelné"
-#: lib/poptI.c:299
+#: lib/poptI.c:303
msgid "<dir>"
msgstr "<adresáø>"
-#: lib/poptI.c:301
+#: lib/poptI.c:305
msgid "relocate files from path <old> to <new>"
msgstr "pøemístit soubory ze <staré_cesty> do <nové_cesty>"
-#: lib/poptI.c:302
+#: lib/poptI.c:306
msgid "<old>=<new>"
msgstr "<stará_cesta>=<nová_cesta>"
-#: lib/poptI.c:305
+#: lib/poptI.c:309
msgid "save erased package files by repackaging"
msgstr "uchovat smazané soubory pomocí pøebalení"
-#: lib/poptI.c:308
+#: lib/poptI.c:312
msgid "install even if the package replaces installed files"
msgstr "instalovat, i kdy¾ balíèek pøepí¹e existující soubory"
-#: lib/poptI.c:311
+#: lib/poptI.c:315
msgid "reinstall if the package is already present"
msgstr "pøeinstalovat, i kdy¾ je ji¾ balíèek pøítomen"
-#: lib/poptI.c:313
+#: lib/poptI.c:317
#, 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:314
+#: lib/poptI.c:318
msgid "<date>"
msgstr "<datum>"
-#: lib/poptI.c:316
+#: lib/poptI.c:320
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:319
+#: lib/poptI.c:323
msgid "upgrade package(s)"
msgstr "aktualizace balíèku"
@@ -2180,7 +2185,7 @@ msgstr "nemohu otevøít %s: %s\n"
msgid "%s failed: %s\n"
msgstr "%s selhalo\n"
-#: lib/query.c:122 lib/rpmts.c:413
+#: lib/query.c:122 lib/rpmts.c:430
#, c-format
msgid "incorrect format: %s\n"
msgstr "nesprávnı formát: %s\n"
@@ -2229,8 +2234,9 @@ msgstr "balíèek nemá vlastníka souboru ani seznamy id\n"
msgid "can't query %s: %s\n"
msgstr "nemohu provést dotaz %s: %s\n"
-#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:422 lib/rpminstall.c:553
-#: lib/rpminstall.c:956 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:123 lib/rpminstall.c:452
+#: lib/rpminstall.c:583 lib/rpminstall.c:986 lib/rpmts.c:441
+#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "otevøení %s selhalo: %s\n"
@@ -2244,7 +2250,7 @@ msgstr "dotaz na %s se nezdaøil\n"
msgid "old format source packages cannot be queried\n"
msgstr "nelze provést dotaz na zdrojové balíèky starého formátu\n"
-#: lib/query.c:609 lib/rpminstall.c:566
+#: lib/query.c:609 lib/rpminstall.c:596
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "¾ádnı balíèek neaktivuje %s\n"
@@ -2313,17 +2319,17 @@ msgstr "záznam balíèku èíslo: %u\n"
msgid "record %u could not be read\n"
msgstr "záznam %u nelze pøeèíst\n"
-#: lib/query.c:907 lib/rpminstall.c:733
+#: lib/query.c:907 lib/rpminstall.c:763
#, c-format
msgid "package %s is not installed\n"
msgstr "balíèek %s není nainstalován\n"
-#: lib/rpmal.c:696
+#: lib/rpmal.c:697
#, fuzzy
msgid "(added files)"
msgstr "©patnı soubor: %s: %s\n"
-#: lib/rpmal.c:773
+#: lib/rpmal.c:774
#, fuzzy
msgid "(added provide)"
msgstr "%s: %-45s ANO (pøidáno poskytuje)\n"
@@ -2485,110 +2491,115 @@ msgstr "Provádìní(%s): %s\n"
msgid "relocating directory %s to %s\n"
msgstr "nemohu provést dotaz %s: %s\n"
-#: lib/rpminstall.c:181
+#: lib/rpminstall.c:186
msgid "Preparing..."
msgstr ""
-#: lib/rpminstall.c:183
+#: lib/rpminstall.c:188
#, fuzzy
msgid "Preparing packages for installation..."
msgstr "nezadány ¾ádné balíèky pro instalaci"
-#: lib/rpminstall.c:201
+#: lib/rpminstall.c:206
msgid "Repackaging..."
msgstr ""
-#: lib/rpminstall.c:203
+#: lib/rpminstall.c:208
msgid "Repackaging erased files..."
msgstr ""
-#: lib/rpminstall.c:222
+#: lib/rpminstall.c:227
msgid "Upgrading..."
msgstr ""
-#: lib/rpminstall.c:224
+#: lib/rpminstall.c:229
#, fuzzy
msgid "Upgrading packages..."
msgstr "aktualizace balíèku"
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:384
+#, fuzzy, c-format
+msgid "Adding goal: %s\n"
+msgstr "Hledám %s: (pou¾it %s)...\n"
+
+#: lib/rpminstall.c:399
#, 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:382
+#: lib/rpminstall.c:412
#, fuzzy, c-format
msgid " ... as %s\n"
msgstr "%s ulo¾eno jako %s\n"
-#: lib/rpminstall.c:386
+#: lib/rpminstall.c:416
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:507
#, fuzzy, c-format
msgid "package %s is not relocateable\n"
msgstr "cesta %s v balíèku %s není pøemístitelná"
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:557
#, 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:533
+#: lib/rpminstall.c:563
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:545 lib/rpminstall.c:812 tools/rpmgraph.c:156
+#: lib/rpminstall.c:575 lib/rpminstall.c:842 tools/rpmgraph.c:156
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "neinstalován "
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:611
#, 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:595 lib/rpminstall.c:761 lib/rpminstall.c:1160
+#: lib/rpminstall.c:625 lib/rpminstall.c:791 lib/rpminstall.c:1190
#: tools/rpmgraph.c:202
#, fuzzy
msgid "Failed dependencies:\n"
msgstr "chybné závislosti pøi sestavování:\n"
-#: lib/rpminstall.c:602 tools/rpmgraph.c:208
+#: lib/rpminstall.c:632 tools/rpmgraph.c:208
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:632
+#: lib/rpminstall.c:662
#, fuzzy
msgid "installing binary packages\n"
msgstr "nainstalovat balíèek"
-#: lib/rpminstall.c:656
+#: lib/rpminstall.c:686
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "nemohu vytvoøit %s: %s\n"
-#: lib/rpminstall.c:736
+#: lib/rpminstall.c:766
#, 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:796
+#: lib/rpminstall.c:826
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "nemohu vytvoøit %s: %s\n"
-#: lib/rpminstall.c:802
+#: lib/rpminstall.c:832
#, fuzzy, c-format
msgid "Installing %s\n"
msgstr "øádek: %s\n"
-#: lib/rpminstall.c:1154
+#: lib/rpminstall.c:1184
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
@@ -2805,13 +2816,23 @@ msgstr "Nemohu otevøít %s: %s\n"
msgid "cannot open Packages database in %s\n"
msgstr "nemohu otevøít RPM databázi v %s\n"
-#: lib/rpmts.c:319
+#: lib/rpmts.c:320
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "nemohu otevøít RPM databázi v %s\n"
+#: lib/rpmts.c:456
+#, fuzzy, c-format
+msgid "Adding: %s\n"
+msgstr "øádek: %s\n"
+
+#: lib/rpmts.c:467
+#, fuzzy, c-format
+msgid "Suggesting: %s\n"
+msgstr "RPM verze %s\n"
+
#. Get available space on mounted file systems.
-#: lib/rpmts.c:809
+#: lib/rpmts.c:860
msgid "getting list of mounted filesystems\n"
msgstr "získávám seznam pøipojenıch systémù souborù\n"
diff --git a/po/da.po b/po/da.po
index 5999cc2d5..5757bdd07 100644
--- a/po/da.po
+++ b/po/da.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-10 13:48-0400\n"
+"POT-Creation-Date: 2002-08-13 12:17-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"
@@ -1268,19 +1268,19 @@ msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
"generér pakkehoved(er), der er kompatible med (gamle) rpm[23]-indpakninger"
-#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:261 lib/poptI.c:268
+#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:265 lib/poptI.c:272
#: lib/poptQV.c:329 lib/poptQV.c:338 lib/poptQV.c:377
#, fuzzy
msgid "don't verify package digest(s)"
msgstr "undlad at tjekke pakkers afhængighedskrav"
-#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:263 lib/poptI.c:270
+#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:267 lib/poptI.c:274
#: lib/poptQV.c:332 lib/poptQV.c:340 lib/poptQV.c:380
#, fuzzy
msgid "don't verify database header(s) when retrieved"
msgstr "tjek ikke pakkens arkitektur"
-#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:265 lib/poptI.c:272
+#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:269 lib/poptI.c:276
#: lib/poptQV.c:335 lib/poptQV.c:342 lib/poptQV.c:382
#, fuzzy
msgid "don't verify package signature(s)"
@@ -1376,71 +1376,71 @@ msgstr " mislykkedes - "
msgid "package %s was already added, replacing with %s\n"
msgstr "pakken %s er allerede installeret"
-#: lib/depends.c:391
+#: lib/depends.c:394
msgid "(cached)"
msgstr ""
-#: lib/depends.c:417
+#: lib/depends.c:421
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %-45s JA (rpmrc tilfører)\n"
-#: lib/depends.c:434
+#: lib/depends.c:438
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %-45s JA (rpmlib tilfører)\n"
-#: lib/depends.c:463
+#: lib/depends.c:467
#, fuzzy
msgid "(db files)"
msgstr "ugyldig db-fil %s\n"
-#: lib/depends.c:476
+#: lib/depends.c:480
#, fuzzy
msgid "(db provides)"
msgstr "%s: %-45s JA (db tilfører)\n"
-#: lib/depends.c:489
+#: lib/depends.c:493
#, fuzzy
msgid "(db package)"
msgstr "ingen pakker\n"
-#: lib/depends.c:839
+#: lib/depends.c:851
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:961
+#: lib/depends.c:973
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "fjerne %s-%s-%s \"%s\" fra tsort-relationer.\n"
#. Record all relations.
-#: lib/depends.c:1193
+#: lib/depends.c:1207
msgid "========== recording tsort relations\n"
msgstr "========== gemmer tsort-relationer\n"
#. T4. Scan for zeroes.
-#: lib/depends.c:1294
+#: lib/depends.c:1308
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1377
+#: lib/depends.c:1391
msgid "========== successors only (presentation order)\n"
msgstr "========== kun efterfølgere (præsentationsrækkefølge)\n"
-#: lib/depends.c:1447
+#: lib/depends.c:1461
msgid "LOOP:\n"
msgstr "LØKKE:\n"
-#: lib/depends.c:1482
+#: lib/depends.c:1496
msgid "========== continuing tsort ...\n"
msgstr "========== fortsætter tsort ...\n"
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1487
+#: lib/depends.c:1501
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1466,7 +1466,7 @@ msgstr "(ikke et tal)"
#: lib/formats.c:310
#, fuzzy
-msgid "(not a OpenPGP signature"
+msgid "(not an OpenPGP signature)"
msgstr "overspring eventuelle PGP-signaturer"
#: lib/fs.c:77
@@ -1713,12 +1713,17 @@ msgid "malformed rollback time/date stamp argument"
msgstr ""
#: lib/poptI.c:152
+#, fuzzy
+msgid "add suggested packages to transaction"
+msgstr "forespørg/verificér pakke(r) i gruppen"
+
+#: lib/poptI.c:156
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:156
+#: lib/poptI.c:160
msgid ""
"remove all packages which match <package> (normally an error is generated if "
"<package> specified multiple packages)"
@@ -1726,146 +1731,146 @@ msgstr ""
"fjern alle pakker, som passer med <pakke> (normalt ville det medføre en "
"fejl, hvis <pakke> angav flere pakker)"
-#: lib/poptI.c:162 lib/poptI.c:241 lib/poptI.c:244
+#: lib/poptI.c:166 lib/poptI.c:245 lib/poptI.c:248
#, fuzzy
msgid "do not execute package scriptlet(s)"
msgstr "udfør ingen pakkespecifikke skripter"
-#: lib/poptI.c:166
+#: lib/poptI.c:170
msgid "relocate files in non-relocateable package"
msgstr "omdirigér filer i ikke-omdirigérbar pakke"
-#: lib/poptI.c:169
+#: lib/poptI.c:173
msgid "save erased package files by renaming into sub-directory"
msgstr ""
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "erase (uninstall) package"
msgstr "slet (afinstallér) pakke"
-#: lib/poptI.c:172
+#: lib/poptI.c:176
#, fuzzy
msgid "<package>+"
msgstr "<pakke>"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "do not install documentation"
msgstr "installér ikke dokumentation"
-#: lib/poptI.c:177
+#: lib/poptI.c:181
msgid "skip files with leading component <path> "
msgstr "overspring filer med foranstillet komponent <sti> "
-#: lib/poptI.c:178
+#: lib/poptI.c:182
msgid "<path>"
msgstr ""
-#: lib/poptI.c:183 lib/poptI.c:186
+#: lib/poptI.c:187 lib/poptI.c:190
msgid "short hand for --replacepkgs --replacefiles"
msgstr "forkortelse for --replacepkgs --replacefiles"
-#: lib/poptI.c:191
+#: lib/poptI.c:195
#, fuzzy
msgid "upgrade package(s) if already installed"
msgstr "opgradér pakke, hvis den allerede er installeret"
-#: lib/poptI.c:192 lib/poptI.c:210 lib/poptI.c:213 lib/poptI.c:320
+#: lib/poptI.c:196 lib/poptI.c:214 lib/poptI.c:217 lib/poptI.c:324
msgid "<packagefile>+"
msgstr "<pakkefil>+"
-#: lib/poptI.c:194
+#: lib/poptI.c:198
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:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr "tjek ikke pakkens arkitektur"
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr "tjek ikke pakkens operativsystem"
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr "tjek ikke om der er diskplads, før der installeres"
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr "installér dokumentation"
-#: lib/poptI.c:210 lib/poptI.c:213
+#: lib/poptI.c:214 lib/poptI.c:217
#, fuzzy
msgid "install package(s)"
msgstr "installér pakke"
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "update the database, but do not modify the filesystem"
msgstr "opdatér databasen, men rør ikke filsystemet"
-#: lib/poptI.c:221 lib/poptI.c:224
+#: lib/poptI.c:225 lib/poptI.c:228
msgid "do not verify package dependencies"
msgstr "undlad at tjekke pakkers afhængighedskrav"
-#: lib/poptI.c:228 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:232 lib/poptQV.c:275 lib/poptQV.c:278
#, fuzzy
msgid "don't verify MD5 digest of files"
msgstr "verificér ikke filerne i pakke"
-#: lib/poptI.c:231
+#: lib/poptI.c:235
msgid "do not reorder package installation to satisfy dependencies"
msgstr ""
"ændr ikke pakkernes installationsrækkefølge for at opfylde afhængigheder"
-#: lib/poptI.c:236
+#: lib/poptI.c:240
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:248
+#: lib/poptI.c:252
#, fuzzy, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr "udfør ikke eventuelle skripter"
-#: lib/poptI.c:251
+#: lib/poptI.c:255
#, fuzzy, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr "udfør ikke eventuelle skripter"
-#: lib/poptI.c:254
+#: lib/poptI.c:258
#, fuzzy, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr "udfør ikke eventuelle skripter"
-#: lib/poptI.c:257
+#: lib/poptI.c:261
#, fuzzy, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr "udfør ikke eventuelle skripter"
-#: lib/poptI.c:276
+#: lib/poptI.c:280
#, 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:279
+#: lib/poptI.c:283
#, fuzzy, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr "udfør ingen pakkespecifikke skripter"
-#: lib/poptI.c:282
+#: lib/poptI.c:286
#, fuzzy, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr "udfør ingen installations-småskripter"
-#: lib/poptI.c:285
+#: lib/poptI.c:289
#, fuzzy, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr "udfør ingen installations-småskripter"
-#: lib/poptI.c:288
+#: lib/poptI.c:292
#, fuzzy, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr "udfør ingen installations-småskripter"
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
@@ -1873,53 +1878,53 @@ msgstr ""
"opgradér til en ældre version af pakken (--force gør ikke dette automatisk "
"ved opgraderinger)"
-#: lib/poptI.c:296
+#: lib/poptI.c:300
msgid "print percentages as package installs"
msgstr "vis procenter efterhånden som pakken installeres"
-#: lib/poptI.c:298
+#: lib/poptI.c:302
msgid "relocate the package to <dir>, if relocatable"
msgstr "omdirigér pakken til <katalog>, hvis omdirigérbar"
-#: lib/poptI.c:299
+#: lib/poptI.c:303
msgid "<dir>"
msgstr "<katalog>"
-#: lib/poptI.c:301
+#: lib/poptI.c:305
#, fuzzy
msgid "relocate files from path <old> to <new>"
msgstr "omdirigér filer fra <gammelsti> til <nysti>"
-#: lib/poptI.c:302
+#: lib/poptI.c:306
#, fuzzy
msgid "<old>=<new>"
msgstr "<gammelsti>=<nysti>"
-#: lib/poptI.c:305
+#: lib/poptI.c:309
msgid "save erased package files by repackaging"
msgstr ""
-#: lib/poptI.c:308
+#: lib/poptI.c:312
msgid "install even if the package replaces installed files"
msgstr "intallér selvom pakken erstatter installerede filer"
-#: lib/poptI.c:311
+#: lib/poptI.c:315
msgid "reinstall if the package is already present"
msgstr "geninstallér hvis pakken allerede er installeret"
-#: lib/poptI.c:313
+#: lib/poptI.c:317
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr ""
-#: lib/poptI.c:314
+#: lib/poptI.c:318
msgid "<date>"
msgstr ""
-#: lib/poptI.c:316
+#: lib/poptI.c:320
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:319
+#: lib/poptI.c:323
#, fuzzy
msgid "upgrade package(s)"
msgstr "opgradér pakke"
@@ -2195,7 +2200,7 @@ msgstr "kunne ikke åbne %s: %s\n"
msgid "%s failed: %s\n"
msgstr "%s mislykkedes\n"
-#: lib/query.c:122 lib/rpmts.c:413
+#: lib/query.c:122 lib/rpmts.c:430
#, c-format
msgid "incorrect format: %s\n"
msgstr "ugyldigt format: %s\n"
@@ -2244,8 +2249,9 @@ msgstr "pakke har hverken filejerskabs- eller id-lister\n"
msgid "can't query %s: %s\n"
msgstr "kunne ikke forespørge %s: %s\n"
-#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:422 lib/rpminstall.c:553
-#: lib/rpminstall.c:956 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:123 lib/rpminstall.c:452
+#: lib/rpminstall.c:583 lib/rpminstall.c:986 lib/rpmts.c:441
+#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "åbning af %s mislykkedes %s\n"
@@ -2259,7 +2265,7 @@ msgstr "forespørgsel af %s mislykkedes\n"
msgid "old format source packages cannot be queried\n"
msgstr "pakke med gammelt kildeformat kan ikke forespørges\n"
-#: lib/query.c:609 lib/rpminstall.c:566
+#: lib/query.c:609 lib/rpminstall.c:596
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "ingen pakker udløser %s\n"
@@ -2328,17 +2334,17 @@ msgstr "pakkens post-nummer: %u\n"
msgid "record %u could not be read\n"
msgstr "post %d kunne ikke læses\n"
-#: lib/query.c:907 lib/rpminstall.c:733
+#: lib/query.c:907 lib/rpminstall.c:763
#, c-format
msgid "package %s is not installed\n"
msgstr "pakken %s er ikke installeret\n"
-#: lib/rpmal.c:696
+#: lib/rpmal.c:697
#, fuzzy
msgid "(added files)"
msgstr "ugyldig db-fil %s\n"
-#: lib/rpmal.c:773
+#: lib/rpmal.c:774
#, fuzzy
msgid "(added provide)"
msgstr "%s: %-45s JA (tilføjede 'provide')\n"
@@ -2499,110 +2505,115 @@ msgstr "omrokerer %s til %s\n"
msgid "relocating directory %s to %s\n"
msgstr "omrokerer kataloget %s til %s\n"
-#: lib/rpminstall.c:181
+#: lib/rpminstall.c:186
msgid "Preparing..."
msgstr "Forbereder..."
-#: lib/rpminstall.c:183
+#: lib/rpminstall.c:188
msgid "Preparing packages for installation..."
msgstr "Forbereder pakker til installation..."
-#: lib/rpminstall.c:201
+#: lib/rpminstall.c:206
#, fuzzy
msgid "Repackaging..."
msgstr "Forbereder..."
-#: lib/rpminstall.c:203
+#: lib/rpminstall.c:208
msgid "Repackaging erased files..."
msgstr ""
-#: lib/rpminstall.c:222
+#: lib/rpminstall.c:227
#, fuzzy
msgid "Upgrading..."
msgstr "Forbereder..."
-#: lib/rpminstall.c:224
+#: lib/rpminstall.c:229
#, fuzzy
msgid "Upgrading packages..."
msgstr "opgradér pakke"
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:384
+#, fuzzy, c-format
+msgid "Adding goal: %s\n"
+msgstr "Finder %s: (benytter %s)...\n"
+
+#: lib/rpminstall.c:399
#, c-format
msgid "Retrieving %s\n"
msgstr "Modtager %s\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:382
+#: lib/rpminstall.c:412
#, c-format
msgid " ... as %s\n"
msgstr " ... som %s\n"
-#: lib/rpminstall.c:386
+#: lib/rpminstall.c:416
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "overspringer %s - overførsel mislykkedes - %s\n"
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:507
#, c-format
msgid "package %s is not relocateable\n"
msgstr "pakke %s kan ikke omrokeres\n"
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:557
#, c-format
msgid "error reading from file %s\n"
msgstr "fejl ved læsning fra filen %s\n"
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:563
#, 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:545 lib/rpminstall.c:812 tools/rpmgraph.c:156
+#: lib/rpminstall.c:575 lib/rpminstall.c:842 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s kunne ikke installeres\n"
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:611
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr "fandt %d kilde- og %d binærpakker\n"
-#: lib/rpminstall.c:595 lib/rpminstall.c:761 lib/rpminstall.c:1160
+#: lib/rpminstall.c:625 lib/rpminstall.c:791 lib/rpminstall.c:1190
#: tools/rpmgraph.c:202
#, fuzzy
msgid "Failed dependencies:\n"
msgstr "afhængighedskrav, der ikke kunne imødekommes:\n"
-#: lib/rpminstall.c:602 tools/rpmgraph.c:208
+#: lib/rpminstall.c:632 tools/rpmgraph.c:208
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:632
+#: lib/rpminstall.c:662
msgid "installing binary packages\n"
msgstr "installerer binærpakker\n"
-#: lib/rpminstall.c:656
+#: lib/rpminstall.c:686
#, c-format
msgid "cannot open file %s: %s\n"
msgstr "kunne ikke åbne fil %s: %s\n"
-#: lib/rpminstall.c:736
+#: lib/rpminstall.c:766
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" angiver flere pakker\n"
-#: lib/rpminstall.c:796
+#: lib/rpminstall.c:826
#, c-format
msgid "cannot open %s: %s\n"
msgstr "kunne ikke åbne %s: %s\n"
-#: lib/rpminstall.c:802
+#: lib/rpminstall.c:832
#, c-format
msgid "Installing %s\n"
msgstr "Installerer %s\n"
-#: lib/rpminstall.c:1154
+#: lib/rpminstall.c:1184
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
@@ -2822,13 +2833,25 @@ msgstr "Kunne ikke åbne %s for læsning: %s.\n"
msgid "cannot open Packages database in %s\n"
msgstr "kunne ikke åbne Packages-database i %s\n"
-#: lib/rpmts.c:319
+#: lib/rpmts.c:320
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "kan ikke åbne rpm-database i %s\n"
+#: lib/rpmts.c:456
+#, fuzzy, c-format
+msgid "Adding: %s\n"
+msgstr "linie: %s\n"
+
+#: lib/rpmts.c:467
+#, fuzzy, c-format
+msgid "Suggesting: %s\n"
+msgstr ""
+"kilder i: %s\n"
+"\n"
+
#. Get available space on mounted file systems.
-#: lib/rpmts.c:809
+#: lib/rpmts.c:860
msgid "getting list of mounted filesystems\n"
msgstr "henter liste over monterede filsystemer\n"
@@ -4737,11 +4760,6 @@ msgstr ""
#~ msgid "cannot create sourcedir %s\n"
#~ msgstr "kunne ikke oprette kildekatalog %s\n"
-#~ msgid "sources in: %s\n"
-#~ msgstr ""
-#~ "kilder i: %s\n"
-#~ "\n"
-
#~ msgid "cannot create specdir %s\n"
#~ msgstr "kunne ikke oprette spec-katalog %s\n"
diff --git a/po/de.po b/po/de.po
index 7bf955eca..6a7380dd4 100644
--- a/po/de.po
+++ b/po/de.po
@@ -37,7 +37,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-10 13:48-0400\n"
+"POT-Creation-Date: 2002-08-13 12:17-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"
@@ -1393,19 +1393,19 @@ msgstr "Dateiabhängigkeiten nicht überprüfen"
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:261 lib/poptI.c:268
+#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:265 lib/poptI.c:272
#: lib/poptQV.c:329 lib/poptQV.c:338 lib/poptQV.c:377
#, fuzzy
msgid "don't verify package digest(s)"
msgstr "Dateiabhängigkeiten nicht überprüfen"
-#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:263 lib/poptI.c:270
+#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:267 lib/poptI.c:274
#: lib/poptQV.c:332 lib/poptQV.c:340 lib/poptQV.c:380
#, fuzzy
msgid "don't verify database header(s) when retrieved"
msgstr "Paket-Architektur nicht überprüfen"
-#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:265 lib/poptI.c:272
+#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:269 lib/poptI.c:276
#: lib/poptQV.c:335 lib/poptQV.c:342 lib/poptQV.c:382
#, fuzzy
msgid "don't verify package signature(s)"
@@ -1507,71 +1507,71 @@ msgstr "pgp fehlgeschlagen"
msgid "package %s was already added, replacing with %s\n"
msgstr "Paket %s ist nicht installiert\n"
-#: lib/depends.c:391
+#: lib/depends.c:394
msgid "(cached)"
msgstr ""
-#: lib/depends.c:417
+#: lib/depends.c:421
msgid "(rpmrc provides)"
msgstr ""
-#: lib/depends.c:434
+#: lib/depends.c:438
#, fuzzy
msgid "(rpmlib provides)"
msgstr "die Datei »%s« gehört zu keinem Paket\n"
# , c-format
-#: lib/depends.c:463
+#: lib/depends.c:467
#, fuzzy
msgid "(db files)"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: lib/depends.c:476
+#: lib/depends.c:480
msgid "(db provides)"
msgstr ""
-#: lib/depends.c:489
+#: lib/depends.c:493
#, fuzzy
msgid "(db package)"
msgstr "Anfrage an alle Pakete"
-#: lib/depends.c:839
+#: lib/depends.c:851
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
# FIXME
-#: lib/depends.c:961
+#: lib/depends.c:973
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "Fehler beim Löschen des Eintrags %s nach %s"
#. Record all relations.
-#: lib/depends.c:1193
+#: lib/depends.c:1207
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1294
+#: lib/depends.c:1308
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1377
+#: lib/depends.c:1391
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1447
+#: lib/depends.c:1461
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1482
+#: lib/depends.c:1496
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1487
+#: lib/depends.c:1501
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1597,7 +1597,7 @@ msgstr "(keine Zahl)"
#: lib/formats.c:310
#, fuzzy
-msgid "(not a OpenPGP signature"
+msgid "(not an OpenPGP signature)"
msgstr "alle PGP-Signaturen überspringen"
# , c-format
@@ -1852,12 +1852,17 @@ msgid "malformed rollback time/date stamp argument"
msgstr ""
#: lib/poptI.c:152
+#, fuzzy
+msgid "add suggested packages to transaction"
+msgstr "Paket hat keinen Namen"
+
+#: lib/poptI.c:156
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:156
+#: lib/poptI.c:160
msgid ""
"remove all packages which match <package> (normally an error is generated if "
"<package> specified multiple packages)"
@@ -1865,148 +1870,148 @@ msgstr ""
"Alle Pakete entfernen, die mit <PAKET> übereinstimmen (normalerweise wird "
"ein Fehler angezeigt, wenn <PAKET> mehrere Pakete bezeichnet)"
-#: lib/poptI.c:162 lib/poptI.c:241 lib/poptI.c:244
+#: lib/poptI.c:166 lib/poptI.c:245 lib/poptI.c:248
#, fuzzy
msgid "do not execute package scriptlet(s)"
msgstr "Keine paketspezifischen Skripte ausführen"
-#: lib/poptI.c:166
+#: lib/poptI.c:170
#, fuzzy
msgid "relocate files in non-relocateable package"
msgstr "Paket %s ist nicht installiert\n"
-#: lib/poptI.c:169
+#: lib/poptI.c:173
msgid "save erased package files by renaming into sub-directory"
msgstr ""
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "erase (uninstall) package"
msgstr "Paket löschen (deinstallieren)"
-#: lib/poptI.c:172
+#: lib/poptI.c:176
#, fuzzy
msgid "<package>+"
msgstr "Anfrage an alle Pakete"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "do not install documentation"
msgstr "Dokumentation nicht installieren"
-#: lib/poptI.c:177
+#: lib/poptI.c:181
msgid "skip files with leading component <path> "
msgstr ""
-#: lib/poptI.c:178
+#: lib/poptI.c:182
msgid "<path>"
msgstr ""
-#: lib/poptI.c:183 lib/poptI.c:186
+#: lib/poptI.c:187 lib/poptI.c:190
msgid "short hand for --replacepkgs --replacefiles"
msgstr "Abkürzung für --replacepkgs --replacefiles"
-#: lib/poptI.c:191
+#: lib/poptI.c:195
#, fuzzy
msgid "upgrade package(s) if already installed"
msgstr "Paket %s ist nicht installiert\n"
-#: lib/poptI.c:192 lib/poptI.c:210 lib/poptI.c:213 lib/poptI.c:320
+#: lib/poptI.c:196 lib/poptI.c:214 lib/poptI.c:217 lib/poptI.c:324
#, fuzzy
msgid "<packagefile>+"
msgstr " -b<STUFE> <SPEC> "
-#: lib/poptI.c:194
+#: lib/poptI.c:198
msgid "print hash marks as package installs (good with -v)"
msgstr "Fortschrittsanzeige bei der Paketinstallation (gut zusammen mit -v)"
-#: lib/poptI.c:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr "Paket-Architektur nicht überprüfen"
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr "Paket-Betriebssystem nicht überprüfen"
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr ""
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr "Dokumentation installieren"
-#: lib/poptI.c:210 lib/poptI.c:213
+#: lib/poptI.c:214 lib/poptI.c:217
#, fuzzy
msgid "install package(s)"
msgstr "Paket installieren"
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "update the database, but do not modify the filesystem"
msgstr "Datenbank erneuern, aber das Dateisystem nicht verändern"
-#: lib/poptI.c:221 lib/poptI.c:224
+#: lib/poptI.c:225 lib/poptI.c:228
msgid "do not verify package dependencies"
msgstr "Dateiabhängigkeiten nicht überprüfen"
-#: lib/poptI.c:228 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:232 lib/poptQV.c:275 lib/poptQV.c:278
#, fuzzy
msgid "don't verify MD5 digest of files"
msgstr "Paket installieren"
-#: lib/poptI.c:231
+#: lib/poptI.c:235
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:236
+#: lib/poptI.c:240
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:248
+#: lib/poptI.c:252
#, fuzzy, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr "Keine Stufen ausführen"
-#: lib/poptI.c:251
+#: lib/poptI.c:255
#, fuzzy, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr "Keine Stufen ausführen"
-#: lib/poptI.c:254
+#: lib/poptI.c:258
#, fuzzy, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr "Keine Stufen ausführen"
-#: lib/poptI.c:257
+#: lib/poptI.c:261
#, fuzzy, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr "Keine Stufen ausführen"
-#: lib/poptI.c:276
+#: lib/poptI.c:280
#, 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:279
+#: lib/poptI.c:283
#, fuzzy, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr "Keine paketspezifischen Skripte ausführen"
-#: lib/poptI.c:282
+#: lib/poptI.c:286
#, fuzzy, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr "Keine Installations-Skripte ausführen"
-#: lib/poptI.c:285
+#: lib/poptI.c:289
#, fuzzy, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr "Keine Installations-Skripte ausführen"
-#: lib/poptI.c:288
+#: lib/poptI.c:292
#, fuzzy, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr "Keine Installations-Skripte ausführen"
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
@@ -2014,54 +2019,54 @@ msgstr ""
"Aktualisierung auf eine alte Version des Pakets (--force macht das bei "
"Aktualisierungen automatisch)"
-#: lib/poptI.c:296
+#: lib/poptI.c:300
msgid "print percentages as package installs"
msgstr "Prozentangabe bei der Paketinstallation ausgeben"
-#: lib/poptI.c:298
+#: lib/poptI.c:302
msgid "relocate the package to <dir>, if relocatable"
msgstr ""
"Verschiebe das Paket, wenn es verschiebbar ist, in das Verzeichnis <VERZ>"
-#: lib/poptI.c:299
+#: lib/poptI.c:303
msgid "<dir>"
msgstr ""
-#: lib/poptI.c:301
+#: lib/poptI.c:305
#, fuzzy
msgid "relocate files from path <old> to <new>"
msgstr "verschiebe Dateien von <alter_Pfad> nach <neuer_Pfad>"
-#: lib/poptI.c:302
+#: lib/poptI.c:306
#, fuzzy
msgid "<old>=<new>"
msgstr "verschiebe Dateien von <alter_Pfad> nach <neuer_Pfad>"
-#: lib/poptI.c:305
+#: lib/poptI.c:309
msgid "save erased package files by repackaging"
msgstr ""
-#: lib/poptI.c:308
+#: lib/poptI.c:312
msgid "install even if the package replaces installed files"
msgstr "Auch dann installieren, wenn das Paket installierte Dateien ersetzt"
-#: lib/poptI.c:311
+#: lib/poptI.c:315
msgid "reinstall if the package is already present"
msgstr "Neuinstallation, wenn das Paket schon vorhanden ist"
-#: lib/poptI.c:313
+#: lib/poptI.c:317
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr ""
-#: lib/poptI.c:314
+#: lib/poptI.c:318
msgid "<date>"
msgstr ""
-#: lib/poptI.c:316
+#: lib/poptI.c:320
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:319
+#: lib/poptI.c:323
#, fuzzy
msgid "upgrade package(s)"
msgstr "Paket installieren"
@@ -2355,7 +2360,7 @@ msgstr "Öffnen von %s fehlgeschlagen: %s"
msgid "%s failed: %s\n"
msgstr "pgp fehlgeschlagen"
-#: lib/query.c:122 lib/rpmts.c:413
+#: lib/query.c:122 lib/rpmts.c:430
#, fuzzy, c-format
msgid "incorrect format: %s\n"
msgstr "Fehler beim Format %s\n"
@@ -2406,8 +2411,9 @@ msgstr "Paket hat keinen Namen"
msgid "can't query %s: %s\n"
msgstr "Fehler: kann %s nicht öffnen\n"
-#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:422 lib/rpminstall.c:553
-#: lib/rpminstall.c:956 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:123 lib/rpminstall.c:452
+#: lib/rpminstall.c:583 lib/rpminstall.c:986 lib/rpmts.c:441
+#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "öffnen von %s fehlgeschlagen: %s\n"
@@ -2421,7 +2427,7 @@ msgstr "Anfrage von %s fehlgeschlagen\n"
msgid "old format source packages cannot be queried\n"
msgstr "altes Sourceformat-Paket kann nicht angefragt werden\n"
-#: lib/query.c:609 lib/rpminstall.c:566
+#: lib/query.c:609 lib/rpminstall.c:596
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "kein Paket triggert %s\n"
@@ -2494,18 +2500,18 @@ msgstr "ungültige Paket-Nummer: %s\n"
msgid "record %u could not be read\n"
msgstr "Eintrag %d konnte nicht gelesen werden\n"
-#: lib/query.c:907 lib/rpminstall.c:733
+#: lib/query.c:907 lib/rpminstall.c:763
#, c-format
msgid "package %s is not installed\n"
msgstr "Paket %s ist nicht installiert\n"
# , c-format
-#: lib/rpmal.c:696
+#: lib/rpmal.c:697
#, fuzzy
msgid "(added files)"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: lib/rpmal.c:773
+#: lib/rpmal.c:774
msgid "(added provide)"
msgstr ""
@@ -2667,111 +2673,117 @@ msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
msgid "relocating directory %s to %s\n"
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
-#: lib/rpminstall.c:181
+#: lib/rpminstall.c:186
msgid "Preparing..."
msgstr ""
-#: lib/rpminstall.c:183
+#: lib/rpminstall.c:188
#, fuzzy
msgid "Preparing packages for installation..."
msgstr "Es wurden keine Pakete für die Installation angegeben"
-#: lib/rpminstall.c:201
+#: lib/rpminstall.c:206
msgid "Repackaging..."
msgstr ""
-#: lib/rpminstall.c:203
+#: lib/rpminstall.c:208
msgid "Repackaging erased files..."
msgstr ""
-#: lib/rpminstall.c:222
+#: lib/rpminstall.c:227
msgid "Upgrading..."
msgstr ""
-#: lib/rpminstall.c:224
+#: lib/rpminstall.c:229
#, fuzzy
msgid "Upgrading packages..."
msgstr "Paket installieren"
# , c-format
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:384
+#, fuzzy, c-format
+msgid "Adding goal: %s\n"
+msgstr "Öffnen von %s fehlgeschlagen: %s"
+
+# , c-format
+#: lib/rpminstall.c:399
#, 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:382
+#: lib/rpminstall.c:412
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:386
+#: lib/rpminstall.c:416
#, fuzzy, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "Fehler: überspringe %s - Übertragung fehlgeschlagen - %s\n"
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:507
#, fuzzy, c-format
msgid "package %s is not relocateable\n"
msgstr "Paket %s ist nicht installiert\n"
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:557
#, fuzzy, c-format
msgid "error reading from file %s\n"
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:563
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:545 lib/rpminstall.c:812 tools/rpmgraph.c:156
+#: lib/rpminstall.c:575 lib/rpminstall.c:842 tools/rpmgraph.c:156
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "Fehler: %s kann nicht installiert werden\n"
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:611
#, fuzzy, c-format
msgid "found %d source and %d binary packages\n"
msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
-#: lib/rpminstall.c:595 lib/rpminstall.c:761 lib/rpminstall.c:1160
+#: lib/rpminstall.c:625 lib/rpminstall.c:791 lib/rpminstall.c:1190
#: tools/rpmgraph.c:202
#, fuzzy
msgid "Failed dependencies:\n"
msgstr "fehlgeschlagene Paket-Abhängigkeiten:\n"
-#: lib/rpminstall.c:602 tools/rpmgraph.c:208
+#: lib/rpminstall.c:632 tools/rpmgraph.c:208
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:632
+#: lib/rpminstall.c:662
#, fuzzy
msgid "installing binary packages\n"
msgstr "Paket installieren"
-#: lib/rpminstall.c:656
+#: lib/rpminstall.c:686
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "kann Datei %s nicht öffnen: "
-#: lib/rpminstall.c:736
+#: lib/rpminstall.c:766
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" bezeichnet mehrere Pakete\n"
-#: lib/rpminstall.c:796
+#: lib/rpminstall.c:826
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "Fehler: kann %s nicht öffnen\n"
-#: lib/rpminstall.c:802
+#: lib/rpminstall.c:832
#, c-format
msgid "Installing %s\n"
msgstr "Installiere %s\n"
-#: lib/rpminstall.c:1154
+#: lib/rpminstall.c:1184
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
@@ -2995,13 +3007,25 @@ msgstr "Datei %s kann nicht zum Lesen geöffnet werden: %s."
msgid "cannot open Packages database in %s\n"
msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n"
-#: lib/rpmts.c:319
+#: lib/rpmts.c:320
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n"
+# , c-format
+#: lib/rpmts.c:456
+#, fuzzy, c-format
+msgid "Adding: %s\n"
+msgstr "Öffnen von %s fehlgeschlagen: %s"
+
+# , c-format
+#: lib/rpmts.c:467
+#, fuzzy, c-format
+msgid "Suggesting: %s\n"
+msgstr "Hole %s heraus\n"
+
#. Get available space on mounted file systems.
-#: lib/rpmts.c:809
+#: lib/rpmts.c:860
msgid "getting list of mounted filesystems\n"
msgstr ""
diff --git a/po/fi.po b/po/fi.po
index d0a8836eb..41469046f 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-10 13:48-0400\n"
+"POT-Creation-Date: 2002-08-13 12:17-0400\n"
"PO-Revision-Date: 1998-05-02 21:41:47-0400\n"
"Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
"Language-Team: Finnish <linux@sot.com>\n"
@@ -1286,19 +1286,19 @@ msgstr "älä tarkista paketin riippuvuuksia"
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:261 lib/poptI.c:268
+#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:265 lib/poptI.c:272
#: lib/poptQV.c:329 lib/poptQV.c:338 lib/poptQV.c:377
#, fuzzy
msgid "don't verify package digest(s)"
msgstr "älä tarkista paketin riippuvuuksia"
-#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:263 lib/poptI.c:270
+#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:267 lib/poptI.c:274
#: lib/poptQV.c:332 lib/poptQV.c:340 lib/poptQV.c:380
#, fuzzy
msgid "don't verify database header(s) when retrieved"
msgstr "älä tarkista paketin arkkitehtuuria"
-#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:265 lib/poptI.c:272
+#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:269 lib/poptI.c:276
#: lib/poptQV.c:335 lib/poptQV.c:342 lib/poptQV.c:382
#, fuzzy
msgid "don't verify package signature(s)"
@@ -1400,69 +1400,69 @@ msgstr "pgp epäonnistui"
msgid "package %s was already added, replacing with %s\n"
msgstr "paketti %s ei ole asennettu\n"
-#: lib/depends.c:391
+#: lib/depends.c:394
msgid "(cached)"
msgstr ""
-#: lib/depends.c:417
+#: lib/depends.c:421
msgid "(rpmrc provides)"
msgstr ""
-#: lib/depends.c:434
+#: lib/depends.c:438
#, fuzzy
msgid "(rpmlib provides)"
msgstr "tiedostoa %s ei omista mikään paketti\n"
-#: lib/depends.c:463
+#: lib/depends.c:467
#, fuzzy
msgid "(db files)"
msgstr "en voinut avata %s: %s"
-#: lib/depends.c:476
+#: lib/depends.c:480
msgid "(db provides)"
msgstr ""
-#: lib/depends.c:489
+#: lib/depends.c:493
#, fuzzy
msgid "(db package)"
msgstr "kysele kaikki paketit"
-#: lib/depends.c:839
+#: lib/depends.c:851
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:961
+#: lib/depends.c:973
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "virhe poistettaessa tietuetta %s %s:stä"
#. Record all relations.
-#: lib/depends.c:1193
+#: lib/depends.c:1207
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1294
+#: lib/depends.c:1308
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1377
+#: lib/depends.c:1391
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1447
+#: lib/depends.c:1461
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1482
+#: lib/depends.c:1496
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1487
+#: lib/depends.c:1501
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1488,7 +1488,7 @@ msgstr "(ei ole luku)"
#: lib/formats.c:310
#, fuzzy
-msgid "(not a OpenPGP signature"
+msgid "(not an OpenPGP signature)"
msgstr "ohita PGP-allekirjoitukset"
#: lib/fs.c:77
@@ -1738,11 +1738,16 @@ msgid "malformed rollback time/date stamp argument"
msgstr ""
#: lib/poptI.c:152
+#, fuzzy
+msgid "add suggested packages to transaction"
+msgstr "paketilla ei ole nimeä"
+
+#: lib/poptI.c:156
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:156
+#: lib/poptI.c:160
msgid ""
"remove all packages which match <package> (normally an error is generated if "
"<package> specified multiple packages)"
@@ -1750,147 +1755,147 @@ msgstr ""
"poista kaikki paketit, joiden nimeä vastaa <paketti> (tavallisesti, jos "
"<paketti> määrittää useita paketteja, tulee virhe)"
-#: lib/poptI.c:162 lib/poptI.c:241 lib/poptI.c:244
+#: lib/poptI.c:166 lib/poptI.c:245 lib/poptI.c:248
#, fuzzy
msgid "do not execute package scriptlet(s)"
msgstr "älä aja mitään pakettikohtaisia skriptejä"
-#: lib/poptI.c:166
+#: lib/poptI.c:170
#, fuzzy
msgid "relocate files in non-relocateable package"
msgstr "paketti %s ei ole asennettu\n"
-#: lib/poptI.c:169
+#: lib/poptI.c:173
msgid "save erased package files by renaming into sub-directory"
msgstr ""
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "erase (uninstall) package"
msgstr "poista paketti"
-#: lib/poptI.c:172
+#: lib/poptI.c:176
#, fuzzy
msgid "<package>+"
msgstr "kysele kaikki paketit"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "do not install documentation"
msgstr "älä asenna dokumentointia"
-#: lib/poptI.c:177
+#: lib/poptI.c:181
msgid "skip files with leading component <path> "
msgstr ""
-#: lib/poptI.c:178
+#: lib/poptI.c:182
msgid "<path>"
msgstr ""
-#: lib/poptI.c:183 lib/poptI.c:186
+#: lib/poptI.c:187 lib/poptI.c:190
msgid "short hand for --replacepkgs --replacefiles"
msgstr "lyhenne parametreille --replacepkgs --replacefiles"
-#: lib/poptI.c:191
+#: lib/poptI.c:195
#, fuzzy
msgid "upgrade package(s) if already installed"
msgstr "paketti %s ei ole asennettu\n"
-#: lib/poptI.c:192 lib/poptI.c:210 lib/poptI.c:213 lib/poptI.c:320
+#: lib/poptI.c:196 lib/poptI.c:214 lib/poptI.c:217 lib/poptI.c:324
#, fuzzy
msgid "<packagefile>+"
msgstr " -b<vaihe> <määrittely> "
-#: lib/poptI.c:194
+#: lib/poptI.c:198
msgid "print hash marks as package installs (good with -v)"
msgstr "tulosta risuaitaa paketin asentuessa (-v:n kanssa hyvä)"
-#: lib/poptI.c:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr "älä tarkista paketin arkkitehtuuria"
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr "älä tarkista paketin käyttöjärjestelmää"
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr ""
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr "asenna dokumentaatio"
-#: lib/poptI.c:210 lib/poptI.c:213
+#: lib/poptI.c:214 lib/poptI.c:217
#, fuzzy
msgid "install package(s)"
msgstr "asenna paketti"
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "update the database, but do not modify the filesystem"
msgstr "päivitä tietokanta, mutta älä muuta tiedostojärjestelmää"
-#: lib/poptI.c:221 lib/poptI.c:224
+#: lib/poptI.c:225 lib/poptI.c:228
msgid "do not verify package dependencies"
msgstr "älä tarkista paketin riippuvuuksia"
-#: lib/poptI.c:228 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:232 lib/poptQV.c:275 lib/poptQV.c:278
#, fuzzy
msgid "don't verify MD5 digest of files"
msgstr "asenna paketti"
-#: lib/poptI.c:231
+#: lib/poptI.c:235
msgid "do not reorder package installation to satisfy dependencies"
msgstr "älä muuta asennusjärjestystä riippuvuuksien tyydyttämiseksi"
-#: lib/poptI.c:236
+#: lib/poptI.c:240
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:248
+#: lib/poptI.c:252
#, fuzzy, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr "älä suorita mitään vaiheita"
-#: lib/poptI.c:251
+#: lib/poptI.c:255
#, fuzzy, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr "älä suorita mitään vaiheita"
-#: lib/poptI.c:254
+#: lib/poptI.c:258
#, fuzzy, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr "älä suorita mitään vaiheita"
-#: lib/poptI.c:257
+#: lib/poptI.c:261
#, fuzzy, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr "älä suorita mitään vaiheita"
-#: lib/poptI.c:276
+#: lib/poptI.c:280
#, fuzzy
msgid "do not execute any scriptlet(s) triggered by this package"
msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
-#: lib/poptI.c:279
+#: lib/poptI.c:283
#, fuzzy, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr "älä aja mitään pakettikohtaisia skriptejä"
-#: lib/poptI.c:282
+#: lib/poptI.c:286
#, fuzzy, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr "älä suorita asennusskriptejä"
-#: lib/poptI.c:285
+#: lib/poptI.c:289
#, fuzzy, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr "älä suorita asennusskriptejä"
-#: lib/poptI.c:288
+#: lib/poptI.c:292
#, fuzzy, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr "älä suorita asennusskriptejä"
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
@@ -1898,53 +1903,53 @@ msgstr ""
"päivitä vanhempaan versioon (--force päivitettäessä tekee tämän "
"automaattisesti)"
-#: lib/poptI.c:296
+#: lib/poptI.c:300
msgid "print percentages as package installs"
msgstr "tulosta asennuksen eteneminen prosentteina"
-#: lib/poptI.c:298
+#: lib/poptI.c:302
msgid "relocate the package to <dir>, if relocatable"
msgstr "siirrä paketti hakemistoon <hakem>, jos siirrettävissä"
-#: lib/poptI.c:299
+#: lib/poptI.c:303
msgid "<dir>"
msgstr ""
-#: lib/poptI.c:301
+#: lib/poptI.c:305
#, fuzzy
msgid "relocate files from path <old> to <new>"
msgstr "siirrä tiedostot hakemistosta <vanhapolku> hakemistoon <uusipolku>"
-#: lib/poptI.c:302
+#: lib/poptI.c:306
#, fuzzy
msgid "<old>=<new>"
msgstr "siirrä tiedostot hakemistosta <vanhapolku> hakemistoon <uusipolku>"
-#: lib/poptI.c:305
+#: lib/poptI.c:309
msgid "save erased package files by repackaging"
msgstr ""
-#: lib/poptI.c:308
+#: lib/poptI.c:312
msgid "install even if the package replaces installed files"
msgstr "asenna vaikka paketti korvaisi asennettuja tiedostoja"
-#: lib/poptI.c:311
+#: lib/poptI.c:315
msgid "reinstall if the package is already present"
msgstr "asenna uudelleen, jos paketti on jo asennettu"
-#: lib/poptI.c:313
+#: lib/poptI.c:317
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr ""
-#: lib/poptI.c:314
+#: lib/poptI.c:318
msgid "<date>"
msgstr ""
-#: lib/poptI.c:316
+#: lib/poptI.c:320
msgid "don't install, but tell if it would work or not"
msgstr "älä asenna, mutta kerro onnistuisiko se"
-#: lib/poptI.c:319
+#: lib/poptI.c:323
#, fuzzy
msgid "upgrade package(s)"
msgstr "asenna paketti"
@@ -2235,7 +2240,7 @@ msgstr "en voinut avata %s: %s"
msgid "%s failed: %s\n"
msgstr "pgp epäonnistui"
-#: lib/query.c:122 lib/rpmts.c:413
+#: lib/query.c:122 lib/rpmts.c:430
#, fuzzy, c-format
msgid "incorrect format: %s\n"
msgstr "virhe formaatissa: %s\n"
@@ -2286,8 +2291,9 @@ msgstr "paketilla ei ole nimeä"
msgid "can't query %s: %s\n"
msgstr "virhe: en voi avata %s\n"
-#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:422 lib/rpminstall.c:553
-#: lib/rpminstall.c:956 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:123 lib/rpminstall.c:452
+#: lib/rpminstall.c:583 lib/rpminstall.c:986 lib/rpmts.c:441
+#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "%s:n avaus ei onnistunut: %s\n"
@@ -2301,7 +2307,7 @@ msgstr "%s:n kysely ei onnistunut\n"
msgid "old format source packages cannot be queried\n"
msgstr "vanhan formaatin lähdekoodipaketteja ei voi kysellä\n"
-#: lib/query.c:609 lib/rpminstall.c:566
+#: lib/query.c:609 lib/rpminstall.c:596
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "mikään paketti ei laukaise %s:a\n"
@@ -2371,17 +2377,17 @@ msgstr "virheellinen paketin numero: %s\n"
msgid "record %u could not be read\n"
msgstr "tietuetta %d ei voitu lukea\n"
-#: lib/query.c:907 lib/rpminstall.c:733
+#: lib/query.c:907 lib/rpminstall.c:763
#, c-format
msgid "package %s is not installed\n"
msgstr "paketti %s ei ole asennettu\n"
-#: lib/rpmal.c:696
+#: lib/rpmal.c:697
#, fuzzy
msgid "(added files)"
msgstr "en voinut avata %s: %s"
-#: lib/rpmal.c:773
+#: lib/rpmal.c:774
msgid "(added provide)"
msgstr ""
@@ -2540,110 +2546,115 @@ msgstr "virhe luotaessa hakemistoa %s: %s"
msgid "relocating directory %s to %s\n"
msgstr "virhe luotaessa hakemistoa %s: %s"
-#: lib/rpminstall.c:181
+#: lib/rpminstall.c:186
msgid "Preparing..."
msgstr ""
-#: lib/rpminstall.c:183
+#: lib/rpminstall.c:188
#, fuzzy
msgid "Preparing packages for installation..."
msgstr "asennukselle ei määritelty paketteja"
-#: lib/rpminstall.c:201
+#: lib/rpminstall.c:206
msgid "Repackaging..."
msgstr ""
-#: lib/rpminstall.c:203
+#: lib/rpminstall.c:208
msgid "Repackaging erased files..."
msgstr ""
-#: lib/rpminstall.c:222
+#: lib/rpminstall.c:227
msgid "Upgrading..."
msgstr ""
-#: lib/rpminstall.c:224
+#: lib/rpminstall.c:229
#, fuzzy
msgid "Upgrading packages..."
msgstr "asenna paketti"
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:384
+#, fuzzy, c-format
+msgid "Adding goal: %s\n"
+msgstr "en voinut avata %s: %s"
+
+#: lib/rpminstall.c:399
#, c-format
msgid "Retrieving %s\n"
msgstr "Haen: %s\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:382
+#: lib/rpminstall.c:412
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:386
+#: lib/rpminstall.c:416
#, fuzzy, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "virhe: ohitan %s:n, siirto epäonnistui - %s\n"
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:507
#, fuzzy, c-format
msgid "package %s is not relocateable\n"
msgstr "paketti %s ei ole asennettu\n"
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:557
#, fuzzy, c-format
msgid "error reading from file %s\n"
msgstr "virhe luotaessa hakemistoa %s: %s"
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:563
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:545 lib/rpminstall.c:812 tools/rpmgraph.c:156
+#: lib/rpminstall.c:575 lib/rpminstall.c:842 tools/rpmgraph.c:156
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "virhe: %s ei voida asentaa\n"
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:611
#, fuzzy, c-format
msgid "found %d source and %d binary packages\n"
msgstr "ryhmässä %s ei ole paketteja\n"
-#: lib/rpminstall.c:595 lib/rpminstall.c:761 lib/rpminstall.c:1160
+#: lib/rpminstall.c:625 lib/rpminstall.c:791 lib/rpminstall.c:1190
#: tools/rpmgraph.c:202
#, fuzzy
msgid "Failed dependencies:\n"
msgstr "puuttuvat riippuvuudet:\n"
-#: lib/rpminstall.c:602 tools/rpmgraph.c:208
+#: lib/rpminstall.c:632 tools/rpmgraph.c:208
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:632
+#: lib/rpminstall.c:662
#, fuzzy
msgid "installing binary packages\n"
msgstr "asenna paketti"
-#: lib/rpminstall.c:656
+#: lib/rpminstall.c:686
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "en voinut avata tiedostoa %s: "
-#: lib/rpminstall.c:736
+#: lib/rpminstall.c:766
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" määrittää useita paketteja\n"
-#: lib/rpminstall.c:796
+#: lib/rpminstall.c:826
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "virhe: en voi avata %s\n"
-#: lib/rpminstall.c:802
+#: lib/rpminstall.c:832
#, c-format
msgid "Installing %s\n"
msgstr "Asennan: %s\n"
-#: lib/rpminstall.c:1154
+#: lib/rpminstall.c:1184
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
@@ -2860,13 +2871,23 @@ msgstr "En voi avata %s luettavaksi: %s."
msgid "cannot open Packages database in %s\n"
msgstr "virhe: en voi avata %s%s/packages.rpm\n"
-#: lib/rpmts.c:319
+#: lib/rpmts.c:320
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "virhe: en voi avata %s%s/packages.rpm\n"
+#: lib/rpmts.c:456
+#, fuzzy, c-format
+msgid "Adding: %s\n"
+msgstr "en voinut avata %s: %s"
+
+#: lib/rpmts.c:467
+#, fuzzy, c-format
+msgid "Suggesting: %s\n"
+msgstr "Haen: %s\n"
+
#. Get available space on mounted file systems.
-#: lib/rpmts.c:809
+#: lib/rpmts.c:860
msgid "getting list of mounted filesystems\n"
msgstr ""
diff --git a/po/fr.po b/po/fr.po
index 771e2e0bb..23234635b 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-10 13:48-0400\n"
+"POT-Creation-Date: 2002-08-13 12:17-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"
@@ -1313,19 +1313,19 @@ msgstr "impossible d'ouvrir: %s\n"
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:261 lib/poptI.c:268
+#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:265 lib/poptI.c:272
#: lib/poptQV.c:329 lib/poptQV.c:338 lib/poptQV.c:377
#, fuzzy
msgid "don't verify package digest(s)"
msgstr ""
" -f <file>+ - interroge le package qui appartient <file>"
-#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:263 lib/poptI.c:270
+#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:267 lib/poptI.c:274
#: lib/poptQV.c:332 lib/poptQV.c:340 lib/poptQV.c:380
msgid "don't verify database header(s) when retrieved"
msgstr ""
-#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:265 lib/poptI.c:272
+#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:269 lib/poptI.c:276
#: lib/poptQV.c:335 lib/poptQV.c:342 lib/poptQV.c:382
#, fuzzy
msgid "don't verify package signature(s)"
@@ -1428,68 +1428,68 @@ msgstr "La construction a chou.\n"
msgid "package %s was already added, replacing with %s\n"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/depends.c:391
+#: lib/depends.c:394
msgid "(cached)"
msgstr ""
-#: lib/depends.c:417
+#: lib/depends.c:421
msgid "(rpmrc provides)"
msgstr ""
-#: lib/depends.c:434
+#: lib/depends.c:438
msgid "(rpmlib provides)"
msgstr ""
-#: lib/depends.c:463
+#: lib/depends.c:467
#, fuzzy
msgid "(db files)"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/depends.c:476
+#: lib/depends.c:480
msgid "(db provides)"
msgstr ""
-#: lib/depends.c:489
+#: lib/depends.c:493
#, fuzzy
msgid "(db package)"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/depends.c:839
+#: lib/depends.c:851
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:961
+#: lib/depends.c:973
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "impossible d'ouvrir: %s\n"
#. Record all relations.
-#: lib/depends.c:1193
+#: lib/depends.c:1207
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1294
+#: lib/depends.c:1308
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1377
+#: lib/depends.c:1391
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1447
+#: lib/depends.c:1461
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1482
+#: lib/depends.c:1496
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1487
+#: lib/depends.c:1501
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1513,7 +1513,7 @@ msgstr ""
#: lib/formats.c:310
#, fuzzy
-msgid "(not a OpenPGP signature"
+msgid "(not an OpenPGP signature)"
msgstr " --sign - genre une signature PGP"
#: lib/fs.c:77
@@ -1760,160 +1760,165 @@ msgid "malformed rollback time/date stamp argument"
msgstr ""
#: lib/poptI.c:152
+#, fuzzy
+msgid "add suggested packages to transaction"
+msgstr "aucun package n'a t spcifi pour la dsinstallation"
+
+#: lib/poptI.c:156
msgid "install all files, even configurations which might otherwise be skipped"
msgstr ""
-#: lib/poptI.c:156
+#: lib/poptI.c:160
msgid ""
"remove all packages which match <package> (normally an error is generated if "
"<package> specified multiple packages)"
msgstr ""
-#: lib/poptI.c:162 lib/poptI.c:241 lib/poptI.c:244
+#: lib/poptI.c:166 lib/poptI.c:245 lib/poptI.c:248
msgid "do not execute package scriptlet(s)"
msgstr ""
-#: lib/poptI.c:166
+#: lib/poptI.c:170
#, fuzzy
msgid "relocate files in non-relocateable package"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/poptI.c:169
+#: lib/poptI.c:173
msgid "save erased package files by renaming into sub-directory"
msgstr ""
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "erase (uninstall) package"
msgstr ""
-#: lib/poptI.c:172
+#: lib/poptI.c:176
#, fuzzy
msgid "<package>+"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "do not install documentation"
msgstr ""
-#: lib/poptI.c:177
+#: lib/poptI.c:181
msgid "skip files with leading component <path> "
msgstr ""
-#: lib/poptI.c:178
+#: lib/poptI.c:182
msgid "<path>"
msgstr ""
-#: lib/poptI.c:183 lib/poptI.c:186
+#: lib/poptI.c:187 lib/poptI.c:190
#, fuzzy
msgid "short hand for --replacepkgs --replacefiles"
msgstr " --force - raccourci pour --replacepkgs --replacefiles"
-#: lib/poptI.c:191
+#: lib/poptI.c:195
#, fuzzy
msgid "upgrade package(s) if already installed"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/poptI.c:192 lib/poptI.c:210 lib/poptI.c:213 lib/poptI.c:320
+#: lib/poptI.c:196 lib/poptI.c:214 lib/poptI.c:217 lib/poptI.c:324
#, fuzzy
msgid "<packagefile>+"
msgstr " -i <packagefile>\t- installe le package"
-#: lib/poptI.c:194
+#: lib/poptI.c:198
#, 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:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr ""
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr ""
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr ""
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr ""
-#: lib/poptI.c:210 lib/poptI.c:213
+#: lib/poptI.c:214 lib/poptI.c:217
#, fuzzy
msgid "install package(s)"
msgstr ""
" -p <packagefile>+ - interroge le package (non install) <packagefile>"
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "update the database, but do not modify the filesystem"
msgstr ""
-#: lib/poptI.c:221 lib/poptI.c:224
+#: lib/poptI.c:225 lib/poptI.c:228
msgid "do not verify package dependencies"
msgstr ""
-#: lib/poptI.c:228 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:232 lib/poptQV.c:275 lib/poptQV.c:278
msgid "don't verify MD5 digest of files"
msgstr ""
-#: lib/poptI.c:231
+#: lib/poptI.c:235
msgid "do not reorder package installation to satisfy dependencies"
msgstr ""
-#: lib/poptI.c:236
+#: lib/poptI.c:240
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:248
+#: lib/poptI.c:252
#, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:251
+#: lib/poptI.c:255
#, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:254
+#: lib/poptI.c:258
#, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:257
+#: lib/poptI.c:261
#, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:276
+#: lib/poptI.c:280
#, fuzzy
msgid "do not execute any scriptlet(s) triggered by this package"
msgstr ""
" -f <file>+ - interroge le package qui appartient <file>"
-#: lib/poptI.c:279
+#: lib/poptI.c:283
#, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr ""
-#: lib/poptI.c:282
+#: lib/poptI.c:286
#, fuzzy, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/poptI.c:285
+#: lib/poptI.c:289
#, fuzzy, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/poptI.c:288
+#: lib/poptI.c:292
#, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr ""
-#: lib/poptI.c:292
+#: lib/poptI.c:296
#, fuzzy
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
@@ -1922,60 +1927,60 @@ msgstr ""
" --oldpackage - mise jour par une ancienne version du package (--"
"force"
-#: lib/poptI.c:296
+#: lib/poptI.c:300
#, fuzzy
msgid "print percentages as package installs"
msgstr ""
" --percent - affiche des '%' pendant l'installation du package"
-#: lib/poptI.c:298
+#: lib/poptI.c:302
msgid "relocate the package to <dir>, if relocatable"
msgstr ""
-#: lib/poptI.c:299
+#: lib/poptI.c:303
msgid "<dir>"
msgstr ""
-#: lib/poptI.c:301
+#: lib/poptI.c:305
msgid "relocate files from path <old> to <new>"
msgstr ""
-#: lib/poptI.c:302
+#: lib/poptI.c:306
msgid "<old>=<new>"
msgstr ""
-#: lib/poptI.c:305
+#: lib/poptI.c:309
msgid "save erased package files by repackaging"
msgstr ""
-#: lib/poptI.c:308
+#: lib/poptI.c:312
#, 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:311
+#: lib/poptI.c:315
#, fuzzy
msgid "reinstall if the package is already present"
msgstr " --replacepkgs - rinstalle si le package est dj prsent"
-#: lib/poptI.c:313
+#: lib/poptI.c:317
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr ""
-#: lib/poptI.c:314
+#: lib/poptI.c:318
msgid "<date>"
msgstr ""
-#: lib/poptI.c:316
+#: lib/poptI.c:320
#, 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:319
+#: lib/poptI.c:323
#, fuzzy
msgid "upgrade package(s)"
msgstr ""
@@ -2275,7 +2280,7 @@ msgstr "impossible d'ouvrir: %s\n"
msgid "%s failed: %s\n"
msgstr "La construction a chou.\n"
-#: lib/query.c:122 lib/rpmts.c:413
+#: lib/query.c:122 lib/rpmts.c:430
#, c-format
msgid "incorrect format: %s\n"
msgstr ""
@@ -2326,8 +2331,9 @@ msgstr "aucun package n'a t spcifi pour l'installation"
msgid "can't query %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:422 lib/rpminstall.c:553
-#: lib/rpminstall.c:956 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:123 lib/rpminstall.c:452
+#: lib/rpminstall.c:583 lib/rpminstall.c:986 lib/rpmts.c:441
+#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "La construction a chou.\n"
@@ -2341,7 +2347,7 @@ msgstr ""
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:609 lib/rpminstall.c:566
+#: lib/query.c:609 lib/rpminstall.c:596
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "aucun package n'a t spcifi pour l'installation"
@@ -2411,17 +2417,17 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
-#: lib/query.c:907 lib/rpminstall.c:733
+#: lib/query.c:907 lib/rpminstall.c:763
#, fuzzy, c-format
msgid "package %s is not installed\n"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/rpmal.c:696
+#: lib/rpmal.c:697
#, fuzzy
msgid "(added files)"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmal.c:773
+#: lib/rpmal.c:774
msgid "(added provide)"
msgstr ""
@@ -2579,110 +2585,115 @@ msgstr "impossible d'ouvrir: %s\n"
msgid "relocating directory %s to %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpminstall.c:181
+#: lib/rpminstall.c:186
msgid "Preparing..."
msgstr ""
-#: lib/rpminstall.c:183
+#: lib/rpminstall.c:188
#, fuzzy
msgid "Preparing packages for installation..."
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/rpminstall.c:201
+#: lib/rpminstall.c:206
msgid "Repackaging..."
msgstr ""
-#: lib/rpminstall.c:203
+#: lib/rpminstall.c:208
msgid "Repackaging erased files..."
msgstr ""
-#: lib/rpminstall.c:222
+#: lib/rpminstall.c:227
msgid "Upgrading..."
msgstr ""
-#: lib/rpminstall.c:224
+#: lib/rpminstall.c:229
#, fuzzy
msgid "Upgrading packages..."
msgstr ""
" -p <packagefile>+ - interroge le package (non install) <packagefile>"
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:384
+#, fuzzy, c-format
+msgid "Adding goal: %s\n"
+msgstr "impossible d'ouvrir: %s\n"
+
+#: lib/rpminstall.c:399
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:382
+#: lib/rpminstall.c:412
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:386
+#: lib/rpminstall.c:416
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:507
#, fuzzy, c-format
msgid "package %s is not relocateable\n"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:557
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:563
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:545 lib/rpminstall.c:812 tools/rpmgraph.c:156
+#: lib/rpminstall.c:575 lib/rpminstall.c:842 tools/rpmgraph.c:156
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:611
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:595 lib/rpminstall.c:761 lib/rpminstall.c:1160
+#: lib/rpminstall.c:625 lib/rpminstall.c:791 lib/rpminstall.c:1190
#: tools/rpmgraph.c:202
#, fuzzy
msgid "Failed dependencies:\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpminstall.c:602 tools/rpmgraph.c:208
+#: lib/rpminstall.c:632 tools/rpmgraph.c:208
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:632
+#: lib/rpminstall.c:662
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:656
+#: lib/rpminstall.c:686
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpminstall.c:736
+#: lib/rpminstall.c:766
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:796
+#: lib/rpminstall.c:826
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpminstall.c:802
+#: lib/rpminstall.c:832
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpminstall.c:1154
+#: lib/rpminstall.c:1184
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
@@ -2899,13 +2910,23 @@ msgstr "impossible d'ouvrir: %s\n"
msgid "cannot open Packages database in %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmts.c:319
+#: lib/rpmts.c:320
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "impossible d'ouvrir: %s\n"
+#: lib/rpmts.c:456
+#, fuzzy, c-format
+msgid "Adding: %s\n"
+msgstr "impossible d'ouvrir: %s\n"
+
+#: lib/rpmts.c:467
+#, c-format
+msgid "Suggesting: %s\n"
+msgstr ""
+
#. Get available space on mounted file systems.
-#: lib/rpmts.c:809
+#: lib/rpmts.c:860
msgid "getting list of mounted filesystems\n"
msgstr ""
diff --git a/po/gl.po b/po/gl.po
index 99c0d29a5..f9d108b3c 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2002-08-10 13:48-0400\n"
+"POT-Creation-Date: 2002-08-13 12:17-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"
@@ -1237,17 +1237,17 @@ msgstr ""
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:261 lib/poptI.c:268
+#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:265 lib/poptI.c:272
#: lib/poptQV.c:329 lib/poptQV.c:338 lib/poptQV.c:377
msgid "don't verify package digest(s)"
msgstr ""
-#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:263 lib/poptI.c:270
+#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:267 lib/poptI.c:274
#: lib/poptQV.c:332 lib/poptQV.c:340 lib/poptQV.c:380
msgid "don't verify database header(s) when retrieved"
msgstr ""
-#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:265 lib/poptI.c:272
+#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:269 lib/poptI.c:276
#: lib/poptQV.c:335 lib/poptQV.c:342 lib/poptQV.c:382
msgid "don't verify package signature(s)"
msgstr ""
@@ -1341,66 +1341,66 @@ msgstr ""
msgid "package %s was already added, replacing with %s\n"
msgstr ""
-#: lib/depends.c:391
+#: lib/depends.c:394
msgid "(cached)"
msgstr ""
-#: lib/depends.c:417
+#: lib/depends.c:421
msgid "(rpmrc provides)"
msgstr ""
-#: lib/depends.c:434
+#: lib/depends.c:438
msgid "(rpmlib provides)"
msgstr ""
-#: lib/depends.c:463
+#: lib/depends.c:467
msgid "(db files)"
msgstr ""
-#: lib/depends.c:476
+#: lib/depends.c:480
msgid "(db provides)"
msgstr ""
-#: lib/depends.c:489
+#: lib/depends.c:493
msgid "(db package)"
msgstr ""
-#: lib/depends.c:839
+#: lib/depends.c:851
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:961
+#: lib/depends.c:973
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
-#: lib/depends.c:1193
+#: lib/depends.c:1207
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1294
+#: lib/depends.c:1308
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1377
+#: lib/depends.c:1391
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1447
+#: lib/depends.c:1461
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1482
+#: lib/depends.c:1496
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1487
+#: lib/depends.c:1501
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1423,7 +1423,7 @@ msgid "(not a blob)"
msgstr ""
#: lib/formats.c:310
-msgid "(not a OpenPGP signature"
+msgid "(not an OpenPGP signature)"
msgstr ""
#: lib/fs.c:77
@@ -1664,198 +1664,202 @@ msgid "malformed rollback time/date stamp argument"
msgstr ""
#: lib/poptI.c:152
-msgid "install all files, even configurations which might otherwise be skipped"
+msgid "add suggested packages to transaction"
msgstr ""
#: lib/poptI.c:156
+msgid "install all files, even configurations which might otherwise be skipped"
+msgstr ""
+
+#: lib/poptI.c:160
msgid ""
"remove all packages which match <package> (normally an error is generated if "
"<package> specified multiple packages)"
msgstr ""
-#: lib/poptI.c:162 lib/poptI.c:241 lib/poptI.c:244
+#: lib/poptI.c:166 lib/poptI.c:245 lib/poptI.c:248
msgid "do not execute package scriptlet(s)"
msgstr ""
-#: lib/poptI.c:166
+#: lib/poptI.c:170
msgid "relocate files in non-relocateable package"
msgstr ""
-#: lib/poptI.c:169
+#: lib/poptI.c:173
msgid "save erased package files by renaming into sub-directory"
msgstr ""
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "erase (uninstall) package"
msgstr ""
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "<package>+"
msgstr ""
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "do not install documentation"
msgstr ""
-#: lib/poptI.c:177
+#: lib/poptI.c:181
msgid "skip files with leading component <path> "
msgstr ""
-#: lib/poptI.c:178
+#: lib/poptI.c:182
msgid "<path>"
msgstr ""
-#: lib/poptI.c:183 lib/poptI.c:186
+#: lib/poptI.c:187 lib/poptI.c:190
msgid "short hand for --replacepkgs --replacefiles"
msgstr ""
-#: lib/poptI.c:191
+#: lib/poptI.c:195
msgid "upgrade package(s) if already installed"
msgstr ""
-#: lib/poptI.c:192 lib/poptI.c:210 lib/poptI.c:213 lib/poptI.c:320
+#: lib/poptI.c:196 lib/poptI.c:214 lib/poptI.c:217 lib/poptI.c:324
msgid "<packagefile>+"
msgstr ""
-#: lib/poptI.c:194
+#: lib/poptI.c:198
msgid "print hash marks as package installs (good with -v)"
msgstr ""
-#: lib/poptI.c:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr ""
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr ""
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr ""
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr ""
-#: lib/poptI.c:210 lib/poptI.c:213
+#: lib/poptI.c:214 lib/poptI.c:217
msgid "install package(s)"
msgstr ""
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "update the database, but do not modify the filesystem"
msgstr ""
-#: lib/poptI.c:221 lib/poptI.c:224
+#: lib/poptI.c:225 lib/poptI.c:228
msgid "do not verify package dependencies"
msgstr ""
-#: lib/poptI.c:228 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:232 lib/poptQV.c:275 lib/poptQV.c:278
msgid "don't verify MD5 digest of files"
msgstr ""
-#: lib/poptI.c:231
+#: lib/poptI.c:235
msgid "do not reorder package installation to satisfy dependencies"
msgstr ""
-#: lib/poptI.c:236
+#: lib/poptI.c:240
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:248
+#: lib/poptI.c:252
#, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:251
+#: lib/poptI.c:255
#, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:254
+#: lib/poptI.c:258
#, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:257
+#: lib/poptI.c:261
#, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:276
+#: lib/poptI.c:280
msgid "do not execute any scriptlet(s) triggered by this package"
msgstr ""
-#: lib/poptI.c:279
+#: lib/poptI.c:283
#, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr ""
-#: lib/poptI.c:282
+#: lib/poptI.c:286
#, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr ""
-#: lib/poptI.c:285
+#: lib/poptI.c:289
#, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr ""
-#: lib/poptI.c:288
+#: lib/poptI.c:292
#, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr ""
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
msgstr ""
-#: lib/poptI.c:296
+#: lib/poptI.c:300
msgid "print percentages as package installs"
msgstr ""
-#: lib/poptI.c:298
+#: lib/poptI.c:302
msgid "relocate the package to <dir>, if relocatable"
msgstr ""
-#: lib/poptI.c:299
+#: lib/poptI.c:303
msgid "<dir>"
msgstr ""
-#: lib/poptI.c:301
+#: lib/poptI.c:305
msgid "relocate files from path <old> to <new>"
msgstr ""
-#: lib/poptI.c:302
+#: lib/poptI.c:306
msgid "<old>=<new>"
msgstr ""
-#: lib/poptI.c:305
+#: lib/poptI.c:309
msgid "save erased package files by repackaging"
msgstr ""
-#: lib/poptI.c:308
+#: lib/poptI.c:312
msgid "install even if the package replaces installed files"
msgstr ""
-#: lib/poptI.c:311
+#: lib/poptI.c:315
msgid "reinstall if the package is already present"
msgstr ""
-#: lib/poptI.c:313
+#: lib/poptI.c:317
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr ""
-#: lib/poptI.c:314
+#: lib/poptI.c:318
msgid "<date>"
msgstr ""
-#: lib/poptI.c:316
+#: lib/poptI.c:320
msgid "don't install, but tell if it would work or not"
msgstr ""
-#: lib/poptI.c:319
+#: lib/poptI.c:323
msgid "upgrade package(s)"
msgstr ""
@@ -2107,7 +2111,7 @@ msgstr ""
msgid "%s failed: %s\n"
msgstr ""
-#: lib/query.c:122 lib/rpmts.c:413
+#: lib/query.c:122 lib/rpmts.c:430
#, c-format
msgid "incorrect format: %s\n"
msgstr ""
@@ -2155,8 +2159,9 @@ msgstr ""
msgid "can't query %s: %s\n"
msgstr ""
-#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:422 lib/rpminstall.c:553
-#: lib/rpminstall.c:956 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:123 lib/rpminstall.c:452
+#: lib/rpminstall.c:583 lib/rpminstall.c:986 lib/rpmts.c:441
+#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@@ -2170,7 +2175,7 @@ msgstr ""
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:609 lib/rpminstall.c:566
+#: lib/query.c:609 lib/rpminstall.c:596
#, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr ""
@@ -2239,16 +2244,16 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
-#: lib/query.c:907 lib/rpminstall.c:733
+#: lib/query.c:907 lib/rpminstall.c:763
#, c-format
msgid "package %s is not installed\n"
msgstr ""
-#: lib/rpmal.c:696
+#: lib/rpmal.c:697
msgid "(added files)"
msgstr ""
-#: lib/rpmal.c:773
+#: lib/rpmal.c:774
msgid "(added provide)"
msgstr ""
@@ -2405,106 +2410,111 @@ msgstr ""
msgid "relocating directory %s to %s\n"
msgstr ""
-#: lib/rpminstall.c:181
+#: lib/rpminstall.c:186
msgid "Preparing..."
msgstr ""
-#: lib/rpminstall.c:183
+#: lib/rpminstall.c:188
msgid "Preparing packages for installation..."
msgstr ""
-#: lib/rpminstall.c:201
+#: lib/rpminstall.c:206
msgid "Repackaging..."
msgstr ""
-#: lib/rpminstall.c:203
+#: lib/rpminstall.c:208
msgid "Repackaging erased files..."
msgstr ""
-#: lib/rpminstall.c:222
+#: lib/rpminstall.c:227
msgid "Upgrading..."
msgstr ""
-#: lib/rpminstall.c:224
+#: lib/rpminstall.c:229
msgid "Upgrading packages..."
msgstr ""
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:384
+#, c-format
+msgid "Adding goal: %s\n"
+msgstr ""
+
+#: lib/rpminstall.c:399
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:382
+#: lib/rpminstall.c:412
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:386
+#: lib/rpminstall.c:416
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:507
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:557
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:563
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:545 lib/rpminstall.c:812 tools/rpmgraph.c:156
+#: lib/rpminstall.c:575 lib/rpminstall.c:842 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:611
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:595 lib/rpminstall.c:761 lib/rpminstall.c:1160
+#: lib/rpminstall.c:625 lib/rpminstall.c:791 lib/rpminstall.c:1190
#: tools/rpmgraph.c:202
msgid "Failed dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:602 tools/rpmgraph.c:208
+#: lib/rpminstall.c:632 tools/rpmgraph.c:208
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:632
+#: lib/rpminstall.c:662
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:656
+#: lib/rpminstall.c:686
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:736
+#: lib/rpminstall.c:766
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:796
+#: lib/rpminstall.c:826
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:802
+#: lib/rpminstall.c:832
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpminstall.c:1154
+#: lib/rpminstall.c:1184
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
@@ -2720,13 +2730,23 @@ msgstr ""
msgid "cannot open Packages database in %s\n"
msgstr ""
-#: lib/rpmts.c:319
+#: lib/rpmts.c:320
#, c-format
msgid "cannot open Solve database in %s\n"
msgstr ""
+#: lib/rpmts.c:456
+#, c-format
+msgid "Adding: %s\n"
+msgstr ""
+
+#: lib/rpmts.c:467
+#, c-format
+msgid "Suggesting: %s\n"
+msgstr ""
+
#. Get available space on mounted file systems.
-#: lib/rpmts.c:809
+#: lib/rpmts.c:860
msgid "getting list of mounted filesystems\n"
msgstr ""
diff --git a/po/is.po b/po/is.po
index f83d68e64..0ba7d33b3 100644
--- a/po/is.po
+++ b/po/is.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-10 13:48-0400\n"
+"POT-Creation-Date: 2002-08-13 12:17-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"
@@ -1245,19 +1245,19 @@ msgstr "ekki skoğa pakkaskilyrğin"
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:261 lib/poptI.c:268
+#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:265 lib/poptI.c:272
#: lib/poptQV.c:329 lib/poptQV.c:338 lib/poptQV.c:377
#, fuzzy
msgid "don't verify package digest(s)"
msgstr "ekki skoğa pakkaskilyrğin"
-#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:263 lib/poptI.c:270
+#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:267 lib/poptI.c:274
#: lib/poptQV.c:332 lib/poptQV.c:340 lib/poptQV.c:380
#, fuzzy
msgid "don't verify database header(s) when retrieved"
msgstr "ekki skoğa pakkaskilyrğin"
-#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:265 lib/poptI.c:272
+#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:269 lib/poptI.c:276
#: lib/poptQV.c:335 lib/poptQV.c:342 lib/poptQV.c:382
#, fuzzy
msgid "don't verify package signature(s)"
@@ -1352,67 +1352,67 @@ msgstr ""
msgid "package %s was already added, replacing with %s\n"
msgstr ""
-#: lib/depends.c:391
+#: lib/depends.c:394
msgid "(cached)"
msgstr ""
-#: lib/depends.c:417
+#: lib/depends.c:421
msgid "(rpmrc provides)"
msgstr ""
-#: lib/depends.c:434
+#: lib/depends.c:438
msgid "(rpmlib provides)"
msgstr ""
-#: lib/depends.c:463
+#: lib/depends.c:467
msgid "(db files)"
msgstr ""
-#: lib/depends.c:476
+#: lib/depends.c:480
msgid "(db provides)"
msgstr ""
-#: lib/depends.c:489
+#: lib/depends.c:493
#, fuzzy
msgid "(db package)"
msgstr "uppfæra pakka"
-#: lib/depends.c:839
+#: lib/depends.c:851
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:961
+#: lib/depends.c:973
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
-#: lib/depends.c:1193
+#: lib/depends.c:1207
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1294
+#: lib/depends.c:1308
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1377
+#: lib/depends.c:1391
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1447
+#: lib/depends.c:1461
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1482
+#: lib/depends.c:1496
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1487
+#: lib/depends.c:1501
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1436,7 +1436,7 @@ msgstr ""
#: lib/formats.c:310
#, fuzzy
-msgid "(not a OpenPGP signature"
+msgid "(not an OpenPGP signature)"
msgstr "búa til undirskrift"
#: lib/fs.c:77
@@ -1679,199 +1679,204 @@ msgid "malformed rollback time/date stamp argument"
msgstr ""
#: lib/poptI.c:152
+#, fuzzy
+msgid "add suggested packages to transaction"
+msgstr "fyrirspurn/yfirferğ á pakkann sam á skrá"
+
+#: lib/poptI.c:156
msgid "install all files, even configurations which might otherwise be skipped"
msgstr ""
-#: lib/poptI.c:156
+#: lib/poptI.c:160
msgid ""
"remove all packages which match <package> (normally an error is generated if "
"<package> specified multiple packages)"
msgstr ""
-#: lib/poptI.c:162 lib/poptI.c:241 lib/poptI.c:244
+#: lib/poptI.c:166 lib/poptI.c:245 lib/poptI.c:248
msgid "do not execute package scriptlet(s)"
msgstr ""
-#: lib/poptI.c:166
+#: lib/poptI.c:170
msgid "relocate files in non-relocateable package"
msgstr ""
-#: lib/poptI.c:169
+#: lib/poptI.c:173
msgid "save erased package files by renaming into sub-directory"
msgstr ""
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "erase (uninstall) package"
msgstr ""
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "<package>+"
msgstr "<pakkaskrá>+"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "do not install documentation"
msgstr ""
-#: lib/poptI.c:177
+#: lib/poptI.c:181
msgid "skip files with leading component <path> "
msgstr ""
-#: lib/poptI.c:178
+#: lib/poptI.c:182
msgid "<path>"
msgstr ""
-#: lib/poptI.c:183 lib/poptI.c:186
+#: lib/poptI.c:187 lib/poptI.c:190
msgid "short hand for --replacepkgs --replacefiles"
msgstr ""
-#: lib/poptI.c:191
+#: lib/poptI.c:195
msgid "upgrade package(s) if already installed"
msgstr ""
-#: lib/poptI.c:192 lib/poptI.c:210 lib/poptI.c:213 lib/poptI.c:320
+#: lib/poptI.c:196 lib/poptI.c:214 lib/poptI.c:217 lib/poptI.c:324
msgid "<packagefile>+"
msgstr "<pakkaskrá>+"
-#: lib/poptI.c:194
+#: lib/poptI.c:198
msgid "print hash marks as package installs (good with -v)"
msgstr ""
-#: lib/poptI.c:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr ""
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr ""
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr ""
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr ""
-#: lib/poptI.c:210 lib/poptI.c:213
+#: lib/poptI.c:214 lib/poptI.c:217
#, fuzzy
msgid "install package(s)"
msgstr "setja inn pakka"
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "update the database, but do not modify the filesystem"
msgstr ""
-#: lib/poptI.c:221 lib/poptI.c:224
+#: lib/poptI.c:225 lib/poptI.c:228
msgid "do not verify package dependencies"
msgstr ""
-#: lib/poptI.c:228 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:232 lib/poptQV.c:275 lib/poptQV.c:278
msgid "don't verify MD5 digest of files"
msgstr "ekki yfirfara MD5 undirritun skráa"
-#: lib/poptI.c:231
+#: lib/poptI.c:235
msgid "do not reorder package installation to satisfy dependencies"
msgstr ""
-#: lib/poptI.c:236
+#: lib/poptI.c:240
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:248
+#: lib/poptI.c:252
#, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:251
+#: lib/poptI.c:255
#, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:254
+#: lib/poptI.c:258
#, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:257
+#: lib/poptI.c:261
#, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:276
+#: lib/poptI.c:280
msgid "do not execute any scriptlet(s) triggered by this package"
msgstr ""
-#: lib/poptI.c:279
+#: lib/poptI.c:283
#, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr ""
-#: lib/poptI.c:282
+#: lib/poptI.c:286
#, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr ""
-#: lib/poptI.c:285
+#: lib/poptI.c:289
#, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr ""
-#: lib/poptI.c:288
+#: lib/poptI.c:292
#, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr ""
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
msgstr ""
-#: lib/poptI.c:296
+#: lib/poptI.c:300
msgid "print percentages as package installs"
msgstr ""
-#: lib/poptI.c:298
+#: lib/poptI.c:302
msgid "relocate the package to <dir>, if relocatable"
msgstr ""
-#: lib/poptI.c:299
+#: lib/poptI.c:303
msgid "<dir>"
msgstr ""
-#: lib/poptI.c:301
+#: lib/poptI.c:305
msgid "relocate files from path <old> to <new>"
msgstr ""
-#: lib/poptI.c:302
+#: lib/poptI.c:306
msgid "<old>=<new>"
msgstr "<gömul>=<nı>"
-#: lib/poptI.c:305
+#: lib/poptI.c:309
msgid "save erased package files by repackaging"
msgstr ""
-#: lib/poptI.c:308
+#: lib/poptI.c:312
msgid "install even if the package replaces installed files"
msgstr ""
-#: lib/poptI.c:311
+#: lib/poptI.c:315
msgid "reinstall if the package is already present"
msgstr ""
-#: lib/poptI.c:313
+#: lib/poptI.c:317
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr ""
-#: lib/poptI.c:314
+#: lib/poptI.c:318
msgid "<date>"
msgstr ""
-#: lib/poptI.c:316
+#: lib/poptI.c:320
msgid "don't install, but tell if it would work or not"
msgstr ""
-#: lib/poptI.c:319
+#: lib/poptI.c:323
msgid "upgrade package(s)"
msgstr "uppfæra pakka"
@@ -2133,7 +2138,7 @@ msgstr "gat ekki opnağ %s: %s\n"
msgid "%s failed: %s\n"
msgstr "%s brást\n"
-#: lib/query.c:122 lib/rpmts.c:413
+#: lib/query.c:122 lib/rpmts.c:430
#, c-format
msgid "incorrect format: %s\n"
msgstr ""
@@ -2181,8 +2186,9 @@ msgstr ""
msgid "can't query %s: %s\n"
msgstr ""
-#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:422 lib/rpminstall.c:553
-#: lib/rpminstall.c:956 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:123 lib/rpminstall.c:452
+#: lib/rpminstall.c:583 lib/rpminstall.c:986 lib/rpmts.c:441
+#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@@ -2196,7 +2202,7 @@ msgstr ""
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:609 lib/rpminstall.c:566
+#: lib/query.c:609 lib/rpminstall.c:596
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "get ekki opnağ pakka gagnagrunn í\n"
@@ -2265,16 +2271,16 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
-#: lib/query.c:907 lib/rpminstall.c:733
+#: lib/query.c:907 lib/rpminstall.c:763
#, c-format
msgid "package %s is not installed\n"
msgstr ""
-#: lib/rpmal.c:696
+#: lib/rpmal.c:697
msgid "(added files)"
msgstr ""
-#: lib/rpmal.c:773
+#: lib/rpmal.c:774
msgid "(added provide)"
msgstr ""
@@ -2431,108 +2437,113 @@ msgstr "%5d færa %s -> %s\n"
msgid "relocating directory %s to %s\n"
msgstr "%5d færa %s -> %s\n"
-#: lib/rpminstall.c:181
+#: lib/rpminstall.c:186
msgid "Preparing..."
msgstr ""
-#: lib/rpminstall.c:183
+#: lib/rpminstall.c:188
msgid "Preparing packages for installation..."
msgstr ""
-#: lib/rpminstall.c:201
+#: lib/rpminstall.c:206
msgid "Repackaging..."
msgstr ""
-#: lib/rpminstall.c:203
+#: lib/rpminstall.c:208
msgid "Repackaging erased files..."
msgstr ""
-#: lib/rpminstall.c:222
+#: lib/rpminstall.c:227
msgid "Upgrading..."
msgstr ""
-#: lib/rpminstall.c:224
+#: lib/rpminstall.c:229
#, fuzzy
msgid "Upgrading packages..."
msgstr "uppfæra pakka"
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:384
+#, fuzzy, c-format
+msgid "Adding goal: %s\n"
+msgstr "Skrá %s: %s\n"
+
+#: lib/rpminstall.c:399
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:382
+#: lib/rpminstall.c:412
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:386
+#: lib/rpminstall.c:416
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:507
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:557
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:563
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:545 lib/rpminstall.c:812 tools/rpmgraph.c:156
+#: lib/rpminstall.c:575 lib/rpminstall.c:842 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:611
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:595 lib/rpminstall.c:761 lib/rpminstall.c:1160
+#: lib/rpminstall.c:625 lib/rpminstall.c:791 lib/rpminstall.c:1190
#: tools/rpmgraph.c:202
#, fuzzy
msgid "Failed dependencies:\n"
msgstr "gat ekki útbúiğ pakkaskilyrği:\n"
-#: lib/rpminstall.c:602 tools/rpmgraph.c:208
+#: lib/rpminstall.c:632 tools/rpmgraph.c:208
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:632
+#: lib/rpminstall.c:662
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:656
+#: lib/rpminstall.c:686
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:736
+#: lib/rpminstall.c:766
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:796
+#: lib/rpminstall.c:826
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:802
+#: lib/rpminstall.c:832
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpminstall.c:1154
+#: lib/rpminstall.c:1184
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
@@ -2748,13 +2759,23 @@ msgstr "Get ekki opnağ %s til lesturs: %s.\n"
msgid "cannot open Packages database in %s\n"
msgstr "get ekki opnağ pakka gagnagrunn í %s\n"
-#: lib/rpmts.c:319
+#: lib/rpmts.c:320
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "get ekki opnağ pakka gagnagrunn í %s\n"
+#: lib/rpmts.c:456
+#, fuzzy, c-format
+msgid "Adding: %s\n"
+msgstr "lína: %s\n"
+
+#: lib/rpmts.c:467
+#, c-format
+msgid "Suggesting: %s\n"
+msgstr ""
+
#. Get available space on mounted file systems.
-#: lib/rpmts.c:809
+#: lib/rpmts.c:860
msgid "getting list of mounted filesystems\n"
msgstr ""
diff --git a/po/ja.po b/po/ja.po
index 3a185bcfc..8d8cbca49 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-10 13:48-0400\n"
+"POT-Creation-Date: 2002-08-13 12:17-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"
@@ -1305,19 +1305,19 @@ msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î°Í¸´Ø·¸¤Î¸¡¾Ú¤ò¤·¤Ş¤»¤ó"
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:261 lib/poptI.c:268
+#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:265 lib/poptI.c:272
#: lib/poptQV.c:329 lib/poptQV.c:338 lib/poptQV.c:377
#, fuzzy
msgid "don't verify package digest(s)"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î°Í¸´Ø·¸¤Î¸¡¾Ú¤ò¤·¤Ş¤»¤ó"
-#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:263 lib/poptI.c:270
+#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:267 lib/poptI.c:274
#: lib/poptQV.c:332 lib/poptQV.c:340 lib/poptQV.c:380
#, fuzzy
msgid "don't verify database header(s) when retrieved"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¤ÎÂоݥ¢¡¼¥­¥Æ¥¯¥Á¥ã¤Î¸¡¾Ú¤ò¤·¤Ş¤»¤ó"
-#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:265 lib/poptI.c:272
+#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:269 lib/poptI.c:276
#: lib/poptQV.c:335 lib/poptQV.c:342 lib/poptQV.c:382
#, fuzzy
msgid "don't verify package signature(s)"
@@ -1421,71 +1421,71 @@ msgstr "¼ºÇÔ - "
msgid "package %s was already added, replacing with %s\n"
msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Ï¤¹¤Ç¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Ş¤¹"
-#: lib/depends.c:391
+#: lib/depends.c:394
msgid "(cached)"
msgstr ""
-#: lib/depends.c:417
+#: lib/depends.c:421
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %s ¤Ï rpmrc ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËş¤µ¤ì¤Ş¤¹¡£\n"
-#: lib/depends.c:434
+#: lib/depends.c:438
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %s ¤Ï rpmrc ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËş¤µ¤ì¤Ş¤¹¡£\n"
-#: lib/depends.c:463
+#: lib/depends.c:467
#, fuzzy
msgid "(db files)"
msgstr "ÉÔÀµ¤Ê¥Õ¥¡¥¤¥ë¤Î¾õÂÖ: %s"
-#: lib/depends.c:476
+#: lib/depends.c:480
#, fuzzy
msgid "(db provides)"
msgstr "%s: %s ¤Ï db ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËş¤µ¤ì¤Ş¤¹¡£\n"
-#: lib/depends.c:489
+#: lib/depends.c:493
#, fuzzy
msgid "(db package)"
msgstr "%d ¸Ä¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò¸«¤Ä¤±¤Ş¤·¤¿\n"
-#: lib/depends.c:839
+#: lib/depends.c:851
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:961
+#: lib/depends.c:973
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "group ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Ş¤¹\n"
#. Record all relations.
-#: lib/depends.c:1193
+#: lib/depends.c:1207
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1294
+#: lib/depends.c:1308
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1377
+#: lib/depends.c:1391
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1447
+#: lib/depends.c:1461
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1482
+#: lib/depends.c:1496
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1487
+#: lib/depends.c:1501
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1511,7 +1511,7 @@ msgstr "(¿ô»ú¤Ç¤Ï¤¢¤ê¤Ş¤»¤ó)"
#: lib/formats.c:310
#, fuzzy
-msgid "(not a OpenPGP signature"
+msgid "(not an OpenPGP signature)"
msgstr "PGP ½ğ̾¤ò¥¹¥­¥Ã¥×¤·¤Ş¤¹"
#: lib/fs.c:77
@@ -1762,10 +1762,15 @@ msgid "malformed rollback time/date stamp argument"
msgstr ""
#: lib/poptI.c:152
+#, fuzzy
+msgid "add suggested packages to transaction"
+msgstr "¥°¥ë¡¼¥×Ãæ¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ë¤Ä¤¤¤ÆÌ䤤¹ç¤ï¤»¤Ş¤¹\n"
+
+#: lib/poptI.c:156
msgid "install all files, even configurations which might otherwise be skipped"
msgstr "ÀßÄê¤ò¥¹¥­¥Ã¥×¤·¡¢Á´¥Õ¥¡¥¤¥ë¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Ş¤¹"
-#: lib/poptI.c:156
+#: lib/poptI.c:160
msgid ""
"remove all packages which match <package> (normally an error is generated if "
"<package> specified multiple packages)"
@@ -1773,154 +1778,154 @@ msgstr ""
"<package> ¤È°ìÃפ¹¤ë¥Ñ¥Ã¥±¡¼¥¸Á´¤Æ¤òºï½ü¤·¤Ş¤¹(°ìÈÌ\n"
"\t\t\t Ū¤ËÊ£¿ô¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò»ØÄꤹ¤ë¤È¥¨¥é¡¼¤Ë¤Ê¤ê¤Ş¤¹)"
-#: lib/poptI.c:162 lib/poptI.c:241 lib/poptI.c:244
+#: lib/poptI.c:166 lib/poptI.c:245 lib/poptI.c:248
#, fuzzy
msgid "do not execute package scriptlet(s)"
msgstr "¥Ñ¥Ã¥±¡¼¥¸»ØÄê¤Î¥¹¥¯¥ê¥×¥È¤ò¼Â¹Ô¤·¤Ş¤»¤ó"
-#: lib/poptI.c:166
+#: lib/poptI.c:170
#, fuzzy
msgid "relocate files in non-relocateable package"
msgstr "¥Ñ¥¹ %s ¤ÏºÆÇÛÃ֤Ǥ­¤Ş¤»¤ó(¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤ËÂФ·¤Æ)"
-#: lib/poptI.c:169
+#: lib/poptI.c:173
msgid "save erased package files by renaming into sub-directory"
msgstr ""
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "erase (uninstall) package"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¤òºï½ü(¥¢¥ó¥¤¥ó¥¹¥È¡¼¥ë)¤·¤Ş¤¹"
-#: lib/poptI.c:172
+#: lib/poptI.c:176
#, fuzzy
msgid "<package>+"
msgstr "%d ¸Ä¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò¸«¤Ä¤±¤Ş¤·¤¿\n"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "do not install documentation"
msgstr "¥É¥­¥å¥á¥ó¥È¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Ş¤»¤ó"
-#: lib/poptI.c:177
+#: lib/poptI.c:181
#, fuzzy
msgid "skip files with leading component <path> "
msgstr "¥Ñ¥¹ <path> Ãæ¤Î¥Õ¥¡¥¤¥ë¤ò¥¹¥­¥Ã¥×¤·¤Ş¤¹"
-#: lib/poptI.c:178
+#: lib/poptI.c:182
msgid "<path>"
msgstr ""
-#: lib/poptI.c:183 lib/poptI.c:186
+#: lib/poptI.c:187 lib/poptI.c:190
msgid "short hand for --replacepkgs --replacefiles"
msgstr "--replacepkgs ¤È --replacefiles ¤òû½Ì¤·¤¿¤â¤Î"
-#: lib/poptI.c:191
+#: lib/poptI.c:195
#, fuzzy
msgid "upgrade package(s) if already installed"
msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Ï¤¹¤Ç¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Ş¤¹"
-#: lib/poptI.c:192 lib/poptI.c:210 lib/poptI.c:213 lib/poptI.c:320
+#: lib/poptI.c:196 lib/poptI.c:214 lib/poptI.c:217 lib/poptI.c:324
#, fuzzy
msgid "<packagefile>+"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¥Õ¥¡¥¤¥ë¤Ë¤Ä¤¤¤ÆÌ䤤¹ç¤ï¤»¤Ş¤¹"
-#: lib/poptI.c:194
+#: lib/poptI.c:198
msgid "print hash marks as package installs (good with -v)"
msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ëºİ¤Ë '#' ¤Çɽ¼¨¤·¤Ş¤¹(-v ¤ò»ÈÍѤ¹¤ë¤ÈÎɤ¤)"
-#: lib/poptI.c:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¤ÎÂоݥ¢¡¼¥­¥Æ¥¯¥Á¥ã¤Î¸¡¾Ú¤ò¤·¤Ş¤»¤ó"
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr "¥Ñ¥Ã¥±¡¼¥¸ÂоİOS¤Î¸¡¾Ú¤ò¤·¤Ş¤»¤ó"
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr "¥¤¥ó¥¹¥È¡¼¥ëÁ°¤Ë¥Ç¥£¥¹¥¯¤ÎÍÆÎÌ¥Á¥§¥Ã¥¯¤ò¤·¤Ş¤»¤ó"
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr "¥É¥­¥å¥á¥ó¥È¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Ş¤¹"
-#: lib/poptI.c:210 lib/poptI.c:213
+#: lib/poptI.c:214 lib/poptI.c:217
#, fuzzy
msgid "install package(s)"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Ş¤¹"
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "update the database, but do not modify the filesystem"
msgstr ""
"¥Ç¡¼¥¿¥Ù¡¼¥¹¤ò¹¹¿·¤·¤Ş¤¹¤¬¡¢\n"
"¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤ÎÊѹ¹¤·¤Ş¤»¤ó"
-#: lib/poptI.c:221 lib/poptI.c:224
+#: lib/poptI.c:225 lib/poptI.c:228
msgid "do not verify package dependencies"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î°Í¸´Ø·¸¤Î¸¡¾Ú¤ò¤·¤Ş¤»¤ó"
-#: lib/poptI.c:228 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:232 lib/poptQV.c:275 lib/poptQV.c:278
#, fuzzy
msgid "don't verify MD5 digest of files"
msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò¤·¤Ş¤»¤ó"
-#: lib/poptI.c:231
+#: lib/poptI.c:235
msgid "do not reorder package installation to satisfy dependencies"
msgstr ""
"°Í¸À­¤òËş¤¿¤¹¤¿¤á¤Î¥Ñ¥Ã¥±¡¼¥¸¤Î\n"
"¥¤¥ó¥¹¥È¡¼¥ë¤òÍ׵ᤷ¤Ş¤»¤ó"
-#: lib/poptI.c:236
+#: lib/poptI.c:240
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:248
+#: lib/poptI.c:252
#, fuzzy, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr "¤É¤ÎÃʳ¬¤â¼Â¹Ô¤·¤Ş¤»¤ó"
-#: lib/poptI.c:251
+#: lib/poptI.c:255
#, fuzzy, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr "¤É¤ÎÃʳ¬¤â¼Â¹Ô¤·¤Ş¤»¤ó"
-#: lib/poptI.c:254
+#: lib/poptI.c:258
#, fuzzy, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr "¤É¤ÎÃʳ¬¤â¼Â¹Ô¤·¤Ş¤»¤ó"
-#: lib/poptI.c:257
+#: lib/poptI.c:261
#, fuzzy, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr "¤É¤ÎÃʳ¬¤â¼Â¹Ô¤·¤Ş¤»¤ó"
-#: lib/poptI.c:276
+#: lib/poptI.c:280
#, fuzzy
msgid "do not execute any scriptlet(s) triggered by this package"
msgstr ""
"¤³¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ë¤è¤Ã¤Æ¥È¥ê¥¬¡¼¤µ¤ì¤ë¥¹¥¯¥ê¥×¥È¤ò\n"
"¼Â¹Ô¤·¤Ş¤»¤ó"
-#: lib/poptI.c:279
+#: lib/poptI.c:283
#, fuzzy, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr "¥Ñ¥Ã¥±¡¼¥¸»ØÄê¤Î¥¹¥¯¥ê¥×¥È¤ò¼Â¹Ô¤·¤Ş¤»¤ó"
-#: lib/poptI.c:282
+#: lib/poptI.c:286
#, fuzzy, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr "¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È¤ò¼Â¹Ô¤·¤Ş¤»¤ó"
-#: lib/poptI.c:285
+#: lib/poptI.c:289
#, fuzzy, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr "¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È¤ò¼Â¹Ô¤·¤Ş¤»¤ó"
-#: lib/poptI.c:288
+#: lib/poptI.c:292
#, fuzzy, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr "¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È¤ò¼Â¹Ô¤·¤Ş¤»¤ó"
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
@@ -1928,57 +1933,57 @@ msgstr ""
"¸Å¤¤¥Ğ¡¼¥¸¥ç¥ó¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ë¥¢¥Ã¥×¥°¥ì¡¼¥É¤·¤Ş¤¹\n"
"(¥¢¥Ã¥×¥°¥ì¡¼¥É»ş¤Î --force ¤Ï¤³¤ì¤ò¼«Æ°Åª¤Ë¹Ô¤¤¤Ş¤¹)"
-#: lib/poptI.c:296
+#: lib/poptI.c:300
msgid "print percentages as package installs"
msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ëºİ¤Ë '%' ¤Çɽ¼¨¤·¤Ş¤¹"
-#: lib/poptI.c:298
+#: lib/poptI.c:302
msgid "relocate the package to <dir>, if relocatable"
msgstr ""
"ºÆÇÛÃÖ²Äǽ¤Ê¥Ñ¥Ã¥±¡¼¥¸¤ËÂФ·¡¢¥¤¥ó¥¹¥È¡¼¥ë¥Ñ¥¹\n"
"ÀÜƬ¼­¤ò <dir> ¤ËÀßÄꤷ¤Ş¤¹"
-#: lib/poptI.c:299
+#: lib/poptI.c:303
msgid "<dir>"
msgstr ""
-#: lib/poptI.c:301
+#: lib/poptI.c:305
#, fuzzy
msgid "relocate files from path <old> to <new>"
msgstr "<oldpath> ¤«¤é <newpath> ¤Ë¥Õ¥¡¥¤¥ë¤òºÆÇÛÃÖ¤µ¤»¤Ş¤¹"
-#: lib/poptI.c:302
+#: lib/poptI.c:306
#, fuzzy
msgid "<old>=<new>"
msgstr "<oldpath> ¤«¤é <newpath> ¤Ë¥Õ¥¡¥¤¥ë¤òºÆÇÛÃÖ¤µ¤»¤Ş¤¹"
-#: lib/poptI.c:305
+#: lib/poptI.c:309
msgid "save erased package files by repackaging"
msgstr ""
-#: lib/poptI.c:308
+#: lib/poptI.c:312
msgid "install even if the package replaces installed files"
msgstr ""
"¥¤¥ó¥¹¥È¡¼¥ë»ş¤ËÃÖ¤­´¹¤¨¤é¤ì¤ë¥Õ¥¡¥¤¥ë¤¬\n"
"¤¢¤Ã¤Æ¤â¥¤¥ó¥¹¥È¡¼¥ë¤·¤Ş¤¹"
-#: lib/poptI.c:311
+#: lib/poptI.c:315
msgid "reinstall if the package is already present"
msgstr "´û¤Ë¸ºß¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ç¤âºÆ¥¤¥ó¥¹¥È¡¼¥ë¤·¤Ş¤¹"
-#: lib/poptI.c:313
+#: lib/poptI.c:317
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr ""
-#: lib/poptI.c:314
+#: lib/poptI.c:318
msgid "<date>"
msgstr ""
-#: lib/poptI.c:316
+#: lib/poptI.c:320
msgid "don't install, but tell if it would work or not"
msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤»¤º¤Ë¡¢¥Æ¥¹¥È¤Î¤ß¹Ô¤¤¤Ş¤¹"
-#: lib/poptI.c:319
+#: lib/poptI.c:323
#, fuzzy
msgid "upgrade package(s)"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¥Õ¥¡¥¤¥ë¤Ë¤Ä¤¤¤ÆÌ䤤¹ç¤ï¤»¤Ş¤¹"
@@ -2272,7 +2277,7 @@ msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s"
msgid "%s failed: %s\n"
msgstr "%s ¼ºÇÔ"
-#: lib/query.c:122 lib/rpmts.c:413
+#: lib/query.c:122 lib/rpmts.c:430
#, fuzzy, c-format
msgid "incorrect format: %s\n"
msgstr "¥Õ¥©¡¼¥Ş¥Ã¥ÈÃæ¤Î¥¨¥é¡¼: %s\n"
@@ -2322,8 +2327,9 @@ msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ï¥Õ¥¡¥¤¥ë½êÍ­¼Ô¤ä id ¥ê¥¹¥È¤ò¤É¤Á¤é¤â»ı¤Ã¤Æ¤¤¤Ş¤»¤ó"
msgid "can't query %s: %s\n"
msgstr "%s ¤òºï½ü(unlink)¤Ç¤­¤Ş¤»¤ó: %s\n"
-#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:422 lib/rpminstall.c:553
-#: lib/rpminstall.c:956 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:123 lib/rpminstall.c:452
+#: lib/rpminstall.c:583 lib/rpminstall.c:986 lib/rpmts.c:441
+#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s\n"
@@ -2337,7 +2343,7 @@ msgstr "%s ¤Ø¤ÎÌ䤤¹ç¤ï¤»¤Ë¼ºÇÔ¤·¤Ş¤·¤¿\n"
msgid "old format source packages cannot be queried\n"
msgstr "µì·Á¼°¤Î¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤òÌ䤤¹ç¤ï¤»¤ë¤³¤È¤Ï¤Ç¤­¤Ş¤»¤ó\n"
-#: lib/query.c:609 lib/rpminstall.c:566
+#: lib/query.c:609 lib/rpminstall.c:596
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "%s ¤ò¥È¥ê¥¬¡¼¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Ş¤»¤ó\n"
@@ -2407,17 +2413,17 @@ msgstr "¥Ñ¥Ã¥±¡¼¥¸¥ì¥³¡¼¥ÉÈÖ¹æ %d\n"
msgid "record %u could not be read\n"
msgstr "¥ì¥³¡¼¥É %d ¤òÆɤळ¤È¤¬¤Ç¤­¤Ş¤»¤ó¤Ç¤·¤¿\n"
-#: lib/query.c:907 lib/rpminstall.c:733
+#: lib/query.c:907 lib/rpminstall.c:763
#, c-format
msgid "package %s is not installed\n"
msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Ş¤»¤ó\n"
-#: lib/rpmal.c:696
+#: lib/rpmal.c:697
#, fuzzy
msgid "(added files)"
msgstr "ÉÔÀµ¤Ê¥Õ¥¡¥¤¥ë¤Î¾õÂÖ: %s"
-#: lib/rpmal.c:773
+#: lib/rpmal.c:774
#, fuzzy
msgid "(added provide)"
msgstr "%s: %s ¤Ï provide ¤Ë²Ã¤¨¤ë¤³¤È¤Ë¤è¤Ã¤ÆËş¤µ¤ì¤Ş¤¹¡£\n"
@@ -2579,110 +2585,115 @@ msgstr "%s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Ş¤¹\n"
msgid "relocating directory %s to %s\n"
msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Ş¤¹\n"
-#: lib/rpminstall.c:181
+#: lib/rpminstall.c:186
msgid "Preparing..."
msgstr ""
-#: lib/rpminstall.c:183
+#: lib/rpminstall.c:188
#, fuzzy
msgid "Preparing packages for installation..."
msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤Î¤¿¤á¤Î¥Ñ¥Ã¥±¡¼¥¸¤¬¤¢¤ê¤Ş¤»¤ó"
-#: lib/rpminstall.c:201
+#: lib/rpminstall.c:206
msgid "Repackaging..."
msgstr ""
-#: lib/rpminstall.c:203
+#: lib/rpminstall.c:208
#, fuzzy
msgid "Repackaging erased files..."
msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ë¥Õ¥¡¥¤¥ë¤¬Í­¤ê¤Ş¤»¤ó\n"
-#: lib/rpminstall.c:222
+#: lib/rpminstall.c:227
msgid "Upgrading..."
msgstr ""
-#: lib/rpminstall.c:224
+#: lib/rpminstall.c:229
#, fuzzy
msgid "Upgrading packages..."
msgstr "¥Ñ¥Ã¥±¡¼¥¸¥Õ¥¡¥¤¥ë¤Ë¤Ä¤¤¤ÆÌ䤤¹ç¤ï¤»¤Ş¤¹"
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:384
+#, fuzzy, c-format
+msgid "Adding goal: %s\n"
+msgstr "%s ¤òõ¤·¤Æ¤¤¤Ş¤¹: (%s ¤ò»ÈÍѤ·¤Æ¤¤¤Ş¤¹)...\n"
+
+#: lib/rpminstall.c:399
#, c-format
msgid "Retrieving %s\n"
msgstr "%s ¤ò¼èÆÀ¤·¤Æ¤¤¤Ş¤¹\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:382
+#: lib/rpminstall.c:412
#, c-format
msgid " ... as %s\n"
msgstr "%s ¤È¤·¤Æ...\n"
-#: lib/rpminstall.c:386
+#: lib/rpminstall.c:416
#, fuzzy, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "%s ¤ò¥¹¥­¥Ã¥×¤·¤Ş¤¹ - žÁ÷¼ºÇÔ - %s\n"
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:507
#, fuzzy, c-format
msgid "package %s is not relocateable\n"
msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤ÏºÆÇÛÃ֤Ǥ­¤Ş¤»¤ó"
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:557
#, fuzzy, c-format
msgid "error reading from file %s\n"
msgstr "¥Õ¥¡¥¤¥ë %s ¤«¤é¤ÎÆɤ߹ş¤ß¥¨¥é¡¼ "
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:563
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr "¥Õ¥¡¥¤¥ë %s ¤Ë¤Ï¤è¤ê¿·¤·¤¤ RPM ¤Î¥Ğ¡¼¥¸¥ç¥ó¤¬É¬ÍפǤ¹\n"
-#: lib/rpminstall.c:545 lib/rpminstall.c:812 tools/rpmgraph.c:156
+#: lib/rpminstall.c:575 lib/rpminstall.c:842 tools/rpmgraph.c:156
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "%s ¤ò¥¤¥ó¥¹¥È¡¼¥ë¤Ç¤­¤Ş¤»¤ó\n"
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:611
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr "%d ¸Ä¤Î¥½¡¼¥¹¤È %d ¸Ä¤Î¥Ğ¥¤¥Ê¥ê¥Ñ¥Ã¥±¡¼¥¸¤¬¸«¤Ä¤«¤ê¤Ş¤·¤¿\n"
-#: lib/rpminstall.c:595 lib/rpminstall.c:761 lib/rpminstall.c:1160
+#: lib/rpminstall.c:625 lib/rpminstall.c:791 lib/rpminstall.c:1190
#: tools/rpmgraph.c:202
#, fuzzy
msgid "Failed dependencies:\n"
msgstr "°Í¸À­¤Î·çÇ¡:\n"
-#: lib/rpminstall.c:602 tools/rpmgraph.c:208
+#: lib/rpminstall.c:632 tools/rpmgraph.c:208
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:632
+#: lib/rpminstall.c:662
msgid "installing binary packages\n"
msgstr "¥Ğ¥¤¥Ê¥ê¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ëÃæ\n"
-#: lib/rpminstall.c:656
+#: lib/rpminstall.c:686
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "¥Õ¥¡¥¤¥ë %s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Ş¤»¤ó: %s"
-#: lib/rpminstall.c:736
+#: lib/rpminstall.c:766
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" ¤ÏÊ£¿ô¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò»ØÄꤷ¤Æ¤¤¤Ş¤¹\n"
-#: lib/rpminstall.c:796
+#: lib/rpminstall.c:826
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "%s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Ş¤»¤ó\n"
-#: lib/rpminstall.c:802
+#: lib/rpminstall.c:832
#, c-format
msgid "Installing %s\n"
msgstr "%s ¤ò¥¤¥ó¥¹¥È¡¼¥ëÃæ\n"
-#: lib/rpminstall.c:1154
+#: lib/rpminstall.c:1184
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
@@ -2908,13 +2919,23 @@ msgstr "Æɤ߹ş¤à¤¿¤á¤Ë %s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Ş¤»¤ó: %s¡£"
msgid "cannot open Packages database in %s\n"
msgstr "%s/packages.rpm ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Ş¤»¤ó\n"
-#: lib/rpmts.c:319
+#: lib/rpmts.c:320
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "%s/packages.rpm ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Ş¤»¤ó\n"
+#: lib/rpmts.c:456
+#, fuzzy, c-format
+msgid "Adding: %s\n"
+msgstr "¹ÔÌÜ: %s"
+
+#: lib/rpmts.c:467
+#, fuzzy, c-format
+msgid "Suggesting: %s\n"
+msgstr "¥½¡¼¥¹¤Ï: %s\n"
+
#. Get available space on mounted file systems.
-#: lib/rpmts.c:809
+#: lib/rpmts.c:860
msgid "getting list of mounted filesystems\n"
msgstr "¥Ş¥¦¥ó¥È¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤Î¥ê¥¹¥È¤ò¼èÆÀ¤·¤Æ¤¤¤Ş¤¹\n"
@@ -4461,9 +4482,6 @@ msgstr ""
#~ msgid "cannot create sourcedir %s\n"
#~ msgstr "%s ¤òºîÀ®¤Ç¤­¤Ş¤»¤ó: %s"
-#~ msgid "sources in: %s\n"
-#~ msgstr "¥½¡¼¥¹¤Ï: %s\n"
-
#, fuzzy
#~ msgid "cannot create specdir %s\n"
#~ msgstr "%s ¤òºîÀ®¤Ç¤­¤Ş¤»¤ó: %s"
diff --git a/po/ko.po b/po/ko.po
index 564176841..85fd79e41 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.4\n"
-"POT-Creation-Date: 2002-08-10 13:48-0400\n"
+"POT-Creation-Date: 2002-08-13 12:17-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"
@@ -1254,19 +1254,19 @@ msgstr "ÆĞÅ°Áö Á¦ÀÛ ÀÇÁ¸¼ºÀ» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr "(±âÁ¸ÀÇ) rpm[23] ÆĞŰ¡°ú ȣȯÇÏ´Â ÆĞÅ°Áö Çì´õ¸¦ »ı¼ºÇÕ´Ï´Ù"
-#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:261 lib/poptI.c:268
+#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:265 lib/poptI.c:272
#: lib/poptQV.c:329 lib/poptQV.c:338 lib/poptQV.c:377
#, fuzzy
msgid "don't verify package digest(s)"
msgstr "ÆĞÅ°ÁöÀÇ ÀÇÁ¸¼ºÀ» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
-#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:263 lib/poptI.c:270
+#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:267 lib/poptI.c:274
#: lib/poptQV.c:332 lib/poptQV.c:340 lib/poptQV.c:380
#, fuzzy
msgid "don't verify database header(s) when retrieved"
msgstr "ÆĞÅ°ÁöÀÇ ¾ÆÅ°ÅØÃĸ¦ °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
-#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:265 lib/poptI.c:272
+#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:269 lib/poptI.c:276
#: lib/poptQV.c:335 lib/poptQV.c:342 lib/poptQV.c:382
#, fuzzy
msgid "don't verify package signature(s)"
@@ -1361,52 +1361,52 @@ msgstr " ½ÇÆĞÇÔ - "
msgid "package %s was already added, replacing with %s\n"
msgstr "%s ÆĞÅ°Áö´Â ÀÌ¹Ì ¼³Ä¡µÇ¾î ÀÖ½À´Ï´Ù"
-#: lib/depends.c:391
+#: lib/depends.c:394
msgid "(cached)"
msgstr ""
-#: lib/depends.c:417
+#: lib/depends.c:421
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %-45s ¿¹ (rpmrcÀÌ Á¦°øÇÔ)\n"
-#: lib/depends.c:434
+#: lib/depends.c:438
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %-45s ¿¹ (rpmlibÀÌ Á¦°øÇÔ)\n"
-#: lib/depends.c:463
+#: lib/depends.c:467
#, fuzzy
msgid "(db files)"
msgstr "À߸øµÈ db ÆÄÀÏ %s\n"
-#: lib/depends.c:476
+#: lib/depends.c:480
#, fuzzy
msgid "(db provides)"
msgstr "%s: %-45s ¿¹ (db°¡ Á¦°øÇÔ)\n"
-#: lib/depends.c:489
+#: lib/depends.c:493
#, fuzzy
msgid "(db package)"
msgstr "ÆĞÅ°Áö°¡ ¾ø½À´Ï´Ù\n"
-#: lib/depends.c:839
+#: lib/depends.c:851
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr "´ÙÀ½°ú °ü·ÃµÈ ÆĞÅ°Áö À̸§À» ¹«½ÃÇÕ´Ï´Ù [%d]\t%s -> %s\n"
-#: lib/depends.c:961
+#: lib/depends.c:973
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "tsort °ü°è¿¡¼­ %s-%s-%s \"%s\"(À»)¸¦ »èÁ¦ÇÕ´Ï´Ù.\n"
#. Record all relations.
-#: lib/depends.c:1193
+#: lib/depends.c:1207
msgid "========== recording tsort relations\n"
msgstr "========== tsort °ü°è¸¦ ±â·Ï(record)ÇÕ´Ï´Ù\n"
#. T4. Scan for zeroes.
-#: lib/depends.c:1294
+#: lib/depends.c:1308
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
@@ -1414,20 +1414,20 @@ msgstr ""
"========== ÆĞÅ°Áö¸¦ tsort ÇÕ´Ï´Ù (¼ø¼­, #¼±ÀÓÀÚ, #ÈÄÀÓÀÚ, Æ®¸®, ±íÀÌ"
"[depth])\n"
-#: lib/depends.c:1377
+#: lib/depends.c:1391
msgid "========== successors only (presentation order)\n"
msgstr "========== ÈÄÀÓÀÚ¸¸ [successors only] (Ç¥Çö ¼ø)\n"
-#: lib/depends.c:1447
+#: lib/depends.c:1461
msgid "LOOP:\n"
msgstr "·çÇÁ(LOOP):\n"
-#: lib/depends.c:1482
+#: lib/depends.c:1496
msgid "========== continuing tsort ...\n"
msgstr "========== tsort¸¦ ÁøÇàÇÕ´Ï´Ù...\n"
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1487
+#: lib/depends.c:1501
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1451,7 +1451,7 @@ msgstr "(BLOB[Binary Large OBject]ÀÌ ¾Æ´Õ´Ï´Ù)"
#: lib/formats.c:310
#, fuzzy
-msgid "(not a OpenPGP signature"
+msgid "(not an OpenPGP signature)"
msgstr "¾î¶°ÇÑ PGP ¼­¸íµµ °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
#: lib/fs.c:77
@@ -1699,12 +1699,17 @@ msgid "malformed rollback time/date stamp argument"
msgstr "·Ñ¹é(rollback)ÀÇ ÀμöÀÎ ½Ã°£/³¯Â¥ ½ºÅÆÇÁ°¡ ¿Ã¹Ù¸£Áö ¾Ê½À´Ï´Ù"
#: lib/poptI.c:152
+#, fuzzy
+msgid "add suggested packages to transaction"
+msgstr "¼³Ä¡ ³»¿ëÀ» ÅëÇØ ÆĞÅ°Áö¸¦ ÁúÀÇ/°ËÁõ ÇÕ´Ï´Ù"
+
+#: lib/poptI.c:156
msgid "install all files, even configurations which might otherwise be skipped"
msgstr ""
"ƯÁ¤ ÆÄÀÏÀ» »ı·«Çϱâ À§ÇÑ ¼³Á¤ÀÌ Àû¿ëµÈ °æ¿ì¿¡µµ, ÆĞÅ°Áö ¾ÈÀÇ ¸ğµç ÆÄÀÏÀ» ¼³"
"Ä¡ÇÕ´Ï´Ù"
-#: lib/poptI.c:156
+#: lib/poptI.c:160
msgid ""
"remove all packages which match <package> (normally an error is generated if "
"<package> specified multiple packages)"
@@ -1712,144 +1717,144 @@ msgstr ""
"<ÆĞÅ°Áö> À̸§°ú ÀÏÄ¡ÇÏ´Â ÆĞÅ°Áö´Â ¸ğµÎ Á¦°ÅÇÕ´Ï´Ù (<ÆĞÅ°Áö>¿¡ ¿©·¯°³ÀÇ ÆĞÅ°Áö"
"¸¦ µ¿½Ã¿¡ ÁöÁ¤ÇÒ °æ¿ì¿¡´Â ¿À·ù°¡ ¹ß»ıÇÕ´Ï´Ù)"
-#: lib/poptI.c:162 lib/poptI.c:241 lib/poptI.c:244
+#: lib/poptI.c:166 lib/poptI.c:245 lib/poptI.c:248
msgid "do not execute package scriptlet(s)"
msgstr "ÆĞÅ°Áö ½ºÅ©¸³Æ²¸´(scriptlet)À» ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù"
-#: lib/poptI.c:166
+#: lib/poptI.c:170
msgid "relocate files in non-relocateable package"
msgstr "Àç¹èÄ¡ ±â´ÉÀÌ ¾ø´Â ÆĞÅ°ÁöÀÇ ÆÄÀÏÀ» Àç¹èÄ¡ÇÏ¿© ¼³Ä¡ÇÕ´Ï´Ù"
-#: lib/poptI.c:169
+#: lib/poptI.c:173
msgid "save erased package files by renaming into sub-directory"
msgstr "ÇϺÎ-µğ·ºÅ丮·Î À̸§ º¯°æ½Ã »èÁ¦µÈ ÆĞÅ°Áö ÆÄÀÏÀ» ÀúÀåÇÕ´Ï´Ù"
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "erase (uninstall) package"
msgstr "ÆĞÅ°Áö¸¦ (Á¦°Å) »èÁ¦ÇÕ´Ï´Ù"
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "<package>+"
msgstr "<ÆĞÅ°Áö>+"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "do not install documentation"
msgstr "ÆĞÅ°Áö¿¡ Æ÷ÇÔµÈ ¹®¼­ ÆÄÀÏÀ» ¼³Ä¡ÇÏÁö ¾Ê½À´Ï´Ù"
-#: lib/poptI.c:177
+#: lib/poptI.c:181
msgid "skip files with leading component <path> "
msgstr "<°æ·Î>·Î ½ÃÀ۵Ǵ ÆÄÀÏÀº ¼³Ä¡ÇÏÁö ¾Ê½À´Ï´Ù "
-#: lib/poptI.c:178
+#: lib/poptI.c:182
msgid "<path>"
msgstr "<°æ·Î>"
-#: lib/poptI.c:183 lib/poptI.c:186
+#: lib/poptI.c:187 lib/poptI.c:190
msgid "short hand for --replacepkgs --replacefiles"
msgstr "--replacepkgs ¿Í --replacefiles ¿É¼ÇÀ» µ¿½Ã¿¡ »ç¿ëÇÕ´Ï´Ù"
-#: lib/poptI.c:191
+#: lib/poptI.c:195
msgid "upgrade package(s) if already installed"
msgstr "±âÁ¸¿¡ ¼³Ä¡µÈ ÆĞÅ°Áö¸¦ ¾÷±×·¹À̵å ÇÕ´Ï´Ù"
-#: lib/poptI.c:192 lib/poptI.c:210 lib/poptI.c:213 lib/poptI.c:320
+#: lib/poptI.c:196 lib/poptI.c:214 lib/poptI.c:217 lib/poptI.c:324
msgid "<packagefile>+"
msgstr "<ÆĞÅ°ÁöÆÄÀÏ>+"
-#: lib/poptI.c:194
+#: lib/poptI.c:198
msgid "print hash marks as package installs (good with -v)"
msgstr ""
"ÆĞÅ°Áö ¼³Ä¡¸¦ Çؽø¶Å©(#)·Î Ç¥½ÃÇÕ´Ï´Ù (-v ¿É¼Ç°ú ÇÔ²² »ç¿ëÇÏ´Â °ÍÀÌ ÁÁ½À´Ï"
"´Ù)"
-#: lib/poptI.c:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr "ÆĞÅ°ÁöÀÇ ¾ÆÅ°ÅØÃĸ¦ °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr "ÆĞÅ°ÁöÀÇ ¿î¿µÃ¼Á¦¸¦ °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr "ÆĞÅ°Áö¸¦ ¼³Ä¡Çϱâ Àü¿¡ µğ½ºÅ© °ø°£À» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr "ÆĞÅ°Áö¿¡ Æ÷ÇÔµÈ ¹®¼­ ÆÄÀÏÀ» ¼³Ä¡ÇÕ´Ï´Ù"
-#: lib/poptI.c:210 lib/poptI.c:213
+#: lib/poptI.c:214 lib/poptI.c:217
#, fuzzy
msgid "install package(s)"
msgstr "ÆĞÅ°Áö¸¦ ¼³Ä¡ÇÕ´Ï´Ù"
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "update the database, but do not modify the filesystem"
msgstr "ÆÄÀϽýºÅÛÀ» º¯°æÇÏÁö ¾Ê°í, µ¥ÀÌÅͺ£À̽º¸¦ °»½ÅÇÕ´Ï´Ù"
-#: lib/poptI.c:221 lib/poptI.c:224
+#: lib/poptI.c:225 lib/poptI.c:228
msgid "do not verify package dependencies"
msgstr "ÆĞÅ°ÁöÀÇ ÀÇÁ¸¼ºÀ» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
-#: lib/poptI.c:228 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:232 lib/poptQV.c:275 lib/poptQV.c:278
msgid "don't verify MD5 digest of files"
msgstr "ÆÄÀÏÀÇ MD5 Ãà¾à(digest)À» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
-#: lib/poptI.c:231
+#: lib/poptI.c:235
msgid "do not reorder package installation to satisfy dependencies"
msgstr "ÀÇÁ¸¼ºÀÌ ÀÖ´Â ÆĞÅ°Áö¸¦ ¼³Ä¡Çϵµ·Ï Àç¿ä±¸ÇÏÁö ¾Ê½À´Ï´Ù"
-#: lib/poptI.c:236
+#: lib/poptI.c:240
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:248
+#: lib/poptI.c:252
#, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr "%%pre ½ºÅ©¸³Æ²¸´(scriptlet)À» ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù (ÀÖÀ» °æ¿ì)"
-#: lib/poptI.c:251
+#: lib/poptI.c:255
#, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr "%%post ½ºÅ©¸³Æ²¸´(scriptlet)À» ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù (ÀÖÀ» °æ¿ì)"
-#: lib/poptI.c:254
+#: lib/poptI.c:258
#, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr "%%preun ½ºÅ©¸³Æ²¸´(scriptlet)À» ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù (ÀÖÀ» °æ¿ì)"
-#: lib/poptI.c:257
+#: lib/poptI.c:261
#, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr "%%postun ½ºÅ©¸³Æ²¸´(scriptlet)À» ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù (ÀÖÀ» °æ¿ì)"
-#: lib/poptI.c:276
+#: lib/poptI.c:280
msgid "do not execute any scriptlet(s) triggered by this package"
msgstr ""
"ÀÌ ÆĞÅ°Áö¿¡ ÀÇÇØ »ı¼ºµÇ´Â(triggered) ¾î¶°ÇÑ ½ºÅ©¸³Æ²¸´(scriptlet)µµ ½ÇÇàÇÏÁö "
"¾Ê½À´Ï´Ù"
-#: lib/poptI.c:279
+#: lib/poptI.c:283
#, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr "¾î¶°ÇÑ %%triggerprein ½ºÅ©¸³Æ²¸´(scriptlet)µµ ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù"
-#: lib/poptI.c:282
+#: lib/poptI.c:286
#, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr "¾î¶°ÇÑ %%triggerin ½ºÅ©¸³Æ²¸´(scriptlet)µµ ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù"
-#: lib/poptI.c:285
+#: lib/poptI.c:289
#, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr "¾î¶°ÇÑ %%triggerun ½ºÅ©¸³Æ²¸´(scriptlet)µµ ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù"
-#: lib/poptI.c:288
+#: lib/poptI.c:292
#, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr "¾î¶°ÇÑ %%triggerpostun ½ºÅ©¸³Æ²¸´(scriptlet)µµ ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù"
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
@@ -1857,52 +1862,52 @@ msgstr ""
"ÀÌÀü ¹öÀüÀÇ ÆĞÅ°Áö·Î ´Ù¿î±×·¹À̵å ÇÕ´Ï´Ù (--force ¿É¼ÇÀ» »ç¿ë½Ã¿¡´Â ÀÌ ¿É¼Ç"
"ÀÌ ÀÚµ¿À¸·Î Àû¿ëµË´Ï´Ù)"
-#: lib/poptI.c:296
+#: lib/poptI.c:300
msgid "print percentages as package installs"
msgstr "ÆĞÅ°Áö ¼³Ä¡¸¦ ÆÛ¼¾Æ®(%)·Î Ç¥½ÃÇÕ´Ï´Ù"
-#: lib/poptI.c:298
+#: lib/poptI.c:302
msgid "relocate the package to <dir>, if relocatable"
msgstr ""
"Àç¹èÄ¡ ±â´ÉÀÌ ÀÖ´Â ÆĞÅ°ÁöÀÇ °æ¿ì, ÁöÁ¤ÇÑ <µğ·ºÅ丮>·Î Àç¹èÄ¡ÇÏ¿© ¼³Ä¡ÇÕ´Ï´Ù"
-#: lib/poptI.c:299
+#: lib/poptI.c:303
msgid "<dir>"
msgstr "<µğ·ºÅ丮>"
-#: lib/poptI.c:301
+#: lib/poptI.c:305
msgid "relocate files from path <old> to <new>"
msgstr "<ÀÌÀü°æ·Î>¿¡¼­ <»õ·Î¿î°æ·Î>·Î ÆÄÀÏÀ» Àç¹èÄ¡ ÇÕ´Ï´Ù"
-#: lib/poptI.c:302
+#: lib/poptI.c:306
msgid "<old>=<new>"
msgstr "<ÀÌÀü°æ·Î>=<»õ·Î¿î°æ·Î>"
-#: lib/poptI.c:305
+#: lib/poptI.c:309
msgid "save erased package files by repackaging"
msgstr "ÀçÆĞŰ¡(repackaging)À¸·Î ÀÎÇØ »èÁ¦µÇ´Â ÆĞÅ°Áö ÆÄÀÏÀ» ÀúÀåÇÕ´Ï´Ù"
-#: lib/poptI.c:308
+#: lib/poptI.c:312
msgid "install even if the package replaces installed files"
msgstr "ÆĞÅ°Áö ¼³Ä¡½Ã ±âÁ¸¿¡ ¼³Ä¡µÇ¾î ÀÖ´Â ÆÄÀÏÀ» µ¤¾î¾¹´Ï´Ù"
-#: lib/poptI.c:311
+#: lib/poptI.c:315
msgid "reinstall if the package is already present"
msgstr "ÆĞÅ°Áö°¡ ÀÌ¹Ì ¼³Ä¡µÇ¾î ÀÖ´Â °æ¿ì¿¡µµ ¼³Ä¡ÇÕ´Ï´Ù"
-#: lib/poptI.c:313
+#: lib/poptI.c:317
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr "»õ·Î ¼³Ä¡ »èÁ¦, ÀÌÀü ¼³Ä¡ À缳ġ, ÆĞÅ°Áö, <³¯Â¥> º¹±¸(back to date)"
-#: lib/poptI.c:314
+#: lib/poptI.c:318
msgid "<date>"
msgstr "<³¯Â¥>"
-#: lib/poptI.c:316
+#: lib/poptI.c:320
msgid "don't install, but tell if it would work or not"
msgstr "ÆĞÅ°Áö¸¦ ¼³Ä¡ÇÏÁö ¾Ê°í, Á¦´ë·Î ¼³Ä¡µÇ´ÂÁö¸¸ È®ÀÎÇÕ´Ï´Ù"
-#: lib/poptI.c:319
+#: lib/poptI.c:323
msgid "upgrade package(s)"
msgstr "ÆĞÅ°Áö¸¦ ¾÷±×·¹À̵å ÇÕ´Ï´Ù"
@@ -2169,7 +2174,7 @@ msgstr "%2$s ÆÄÀÏÀÇ %1$s(ÀÌ)°¡ ½ÇÆĞÇÔ: %3$s\n"
msgid "%s failed: %s\n"
msgstr "%s(ÀÌ)°¡ ½ÇÆĞÇÔ: %s\n"
-#: lib/query.c:122 lib/rpmts.c:413
+#: lib/query.c:122 lib/rpmts.c:430
#, c-format
msgid "incorrect format: %s\n"
msgstr "¿Ã¹Ù¸£Áö ¸øÇÑ Çü½Ä: %s\n"
@@ -2218,8 +2223,9 @@ msgstr "ÆĞÅ°Áö¿¡ ÆÄÀÏ ¼ÒÀ¯ÀÚ ¶Ç´Â id ¸ñ·ÏÀÌ ¾ø½À´Ï´Ù\n"
msgid "can't query %s: %s\n"
msgstr "%s(À»)¸¦ ÁúÀÇÇÒ ¼ö ¾øÀ½: %s\n"
-#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:422 lib/rpminstall.c:553
-#: lib/rpminstall.c:956 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:123 lib/rpminstall.c:452
+#: lib/rpminstall.c:583 lib/rpminstall.c:986 lib/rpmts.c:441
+#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "%s(À»)¸¦ ¿©´Âµ¥ ½ÇÆĞÇÔ: %s\n"
@@ -2233,7 +2239,7 @@ msgstr "%s(À»)¸¦ ÁúÀÇÇϴµ¥ ½ÇÆĞÇß½À´Ï´Ù\n"
msgid "old format source packages cannot be queried\n"
msgstr "ÀÌÀü Çü½ÄÀÇ ¼Ò½º ÆĞÅ°Áö´Â ÁúÀÇÇÒ ¼ö ¾ø½À´Ï´Ù\n"
-#: lib/query.c:609 lib/rpminstall.c:566
+#: lib/query.c:609 lib/rpminstall.c:596
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "%s(¿Í)°ú ÀÏÄ¡ÇÏ´Â ÆĞÅ°Áö°¡ ¾øÀ½: %s\n"
@@ -2303,17 +2309,17 @@ msgstr "ÆĞÅ°Áö ±â·Ï(record) ¹øÈ£: %u\n"
msgid "record %u could not be read\n"
msgstr "±â·Ï(record) ¹øÈ£ %u(Àº)´Â ÀĞÀ» ¼ö ¾ø½À´Ï´Ù\n"
-#: lib/query.c:907 lib/rpminstall.c:733
+#: lib/query.c:907 lib/rpminstall.c:763
#, c-format
msgid "package %s is not installed\n"
msgstr "%s ÆĞÅ°Áö°¡ ¼³Ä¡µÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù\n"
-#: lib/rpmal.c:696
+#: lib/rpmal.c:697
#, fuzzy
msgid "(added files)"
msgstr "À߸øµÈ db ÆÄÀÏ %s\n"
-#: lib/rpmal.c:773
+#: lib/rpmal.c:774
#, fuzzy
msgid "(added provide)"
msgstr "%s: %-45s ¿¹ (Á¦°øÀÌ Ãß°¡µÊ)\n"
@@ -2473,110 +2479,115 @@ msgstr "%s(À»)¸¦ %s(À¸)·Î Àç¹èÄ¡ ÇÕ´Ï´Ù\n"
msgid "relocating directory %s to %s\n"
msgstr "%s µğ·ºÅ丮¸¦ %s(À¸)·Î Àç¹èÄ¡ ÇÕ´Ï´Ù\n"
-#: lib/rpminstall.c:181
+#: lib/rpminstall.c:186
msgid "Preparing..."
msgstr "Áغñ Áß..."
-#: lib/rpminstall.c:183
+#: lib/rpminstall.c:188
msgid "Preparing packages for installation..."
msgstr "¼³Ä¡ÇÒ ÆĞÅ°Áö¸¦ ÁغñÇÏ°í ÀÖ½À´Ï´Ù..."
-#: lib/rpminstall.c:201
+#: lib/rpminstall.c:206
#, fuzzy
msgid "Repackaging..."
msgstr "Áغñ Áß..."
-#: lib/rpminstall.c:203
+#: lib/rpminstall.c:208
msgid "Repackaging erased files..."
msgstr ""
-#: lib/rpminstall.c:222
+#: lib/rpminstall.c:227
#, fuzzy
msgid "Upgrading..."
msgstr "Áغñ Áß..."
-#: lib/rpminstall.c:224
+#: lib/rpminstall.c:229
#, fuzzy
msgid "Upgrading packages..."
msgstr "ÆĞÅ°Áö¸¦ ¾÷±×·¹À̵å ÇÕ´Ï´Ù"
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:384
+#, fuzzy, c-format
+msgid "Adding goal: %s\n"
+msgstr "%s(À»)¸¦ ã´Â Áß: (%s »ç¿ë)...\n"
+
+#: lib/rpminstall.c:399
#, c-format
msgid "Retrieving %s\n"
msgstr "%s(À»)¸¦ º¹±¸ÇÕ´Ï´Ù\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:382
+#: lib/rpminstall.c:412
#, c-format
msgid " ... as %s\n"
msgstr " ... %s(À¸)·Î\n"
-#: lib/rpminstall.c:386
+#: lib/rpminstall.c:416
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "%s(À»)¸¦ »ı·«ÇÕ´Ï´Ù - Àü¼Û(transfer)¿¡ ½ÇÆĞÇÔ - %s\n"
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:507
#, c-format
msgid "package %s is not relocateable\n"
msgstr "%s ÆĞÅ°Áö´Â Àç¹èÄ¡ÇÒ ¼ö ¾ø½À´Ï´Ù\n"
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:557
#, c-format
msgid "error reading from file %s\n"
msgstr "%s ÆÄÀÏÀ» ÀĞ´Â µµÁß ¿À·ù°¡ ¹ß»ıÇß½À´Ï´Ù\n"
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:563
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr "%s ÆÄÀÏÀº ÃֽŠ¹öÀüÀÇ RPMÀ» ÇÊ¿ä·Î ÇÕ´Ï´Ù\n"
-#: lib/rpminstall.c:545 lib/rpminstall.c:812 tools/rpmgraph.c:156
+#: lib/rpminstall.c:575 lib/rpminstall.c:842 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s(Àº)´Â ¼³Ä¡ÇÒ ¼ö ¾ø½À´Ï´Ù\n"
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:611
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr "%dÀÇ ¼Ò½º¿Í %dÀÇ ¹ÙÀ̳ʸ® ÆĞÅ°Áö°¡ °Ë»öµÇ¾ú½À´Ï´Ù\n"
-#: lib/rpminstall.c:595 lib/rpminstall.c:761 lib/rpminstall.c:1160
+#: lib/rpminstall.c:625 lib/rpminstall.c:791 lib/rpminstall.c:1190
#: tools/rpmgraph.c:202
#, fuzzy
msgid "Failed dependencies:\n"
msgstr "ÀÇÁ¸¼º ¹®Á¦·Î ÀÎÇØ ½ÇÆĞÇÔ:\n"
-#: lib/rpminstall.c:602 tools/rpmgraph.c:208
+#: lib/rpminstall.c:632 tools/rpmgraph.c:208
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:632
+#: lib/rpminstall.c:662
msgid "installing binary packages\n"
msgstr "¹ÙÀ̳ʸ® ÆĞÅ°Áö¸¦ ¼³Ä¡ÇÕ´Ï´Ù\n"
-#: lib/rpminstall.c:656
+#: lib/rpminstall.c:686
#, c-format
msgid "cannot open file %s: %s\n"
msgstr "%s ÆÄÀÏÀ» ¿­ ¼ö ¾øÀ½: %s\n"
-#: lib/rpminstall.c:736
+#: lib/rpminstall.c:766
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" ¿©·¯°³ÀÇ ÆĞÅ°Áö¸¦ ÁöÁ¤ÇÕ´Ï´Ù\n"
-#: lib/rpminstall.c:796
+#: lib/rpminstall.c:826
#, c-format
msgid "cannot open %s: %s\n"
msgstr "%s(À»)¸¦ ¿­ ¼ö ¾øÀ½: %s\n"
-#: lib/rpminstall.c:802
+#: lib/rpminstall.c:832
#, c-format
msgid "Installing %s\n"
msgstr "%s(À»)¸¦ ¼³Ä¡ÇÕ´Ï´Ù\n"
-#: lib/rpminstall.c:1154
+#: lib/rpminstall.c:1184
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
@@ -2799,13 +2810,23 @@ msgstr "%s(À»)¸¦ ¿­ ¼ö ¾øÀ½: %s.\n"
msgid "cannot open Packages database in %s\n"
msgstr "%s ¾ÈÀÇ ÆĞÅ°Áö µ¥ÀÌÅͺ£À̽º¸¦ ¿­ ¼ö ¾ø½À´Ï´Ù\n"
-#: lib/rpmts.c:319
+#: lib/rpmts.c:320
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "%sÀÇ rpm µ¥ÀÌÅͺ£À̽º¸¦ ¿­ ¼ö ¾ø½À´Ï´Ù\n"
+#: lib/rpmts.c:456
+#, fuzzy, c-format
+msgid "Adding: %s\n"
+msgstr "Çà: %s\n"
+
+#: lib/rpmts.c:467
+#, fuzzy, c-format
+msgid "Suggesting: %s\n"
+msgstr "%s(À»)¸¦ º¹±¸ÇÕ´Ï´Ù\n"
+
#. Get available space on mounted file systems.
-#: lib/rpmts.c:809
+#: lib/rpmts.c:860
msgid "getting list of mounted filesystems\n"
msgstr ""
diff --git a/po/no.po b/po/no.po
index f4134c528..9a7a79c32 100644
--- a/po/no.po
+++ b/po/no.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-10 13:48-0400\n"
+"POT-Creation-Date: 2002-08-13 12:17-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"
@@ -1260,19 +1260,19 @@ msgstr "ikke verifiser pakkeavhengigheter"
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:261 lib/poptI.c:268
+#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:265 lib/poptI.c:272
#: lib/poptQV.c:329 lib/poptQV.c:338 lib/poptQV.c:377
#, fuzzy
msgid "don't verify package digest(s)"
msgstr "ikke verifiser pakkeavhengigheter"
-#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:263 lib/poptI.c:270
+#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:267 lib/poptI.c:274
#: lib/poptQV.c:332 lib/poptQV.c:340 lib/poptQV.c:380
#, fuzzy
msgid "don't verify database header(s) when retrieved"
msgstr "ikke verifiser pakkearkitektur"
-#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:265 lib/poptI.c:272
+#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:269 lib/poptI.c:276
#: lib/poptQV.c:335 lib/poptQV.c:342 lib/poptQV.c:382
#, fuzzy
msgid "don't verify package signature(s)"
@@ -1367,67 +1367,67 @@ msgstr " feilet - "
msgid "package %s was already added, replacing with %s\n"
msgstr "pakke %s er allerede installert"
-#: lib/depends.c:391
+#: lib/depends.c:394
msgid "(cached)"
msgstr ""
-#: lib/depends.c:417
+#: lib/depends.c:421
msgid "(rpmrc provides)"
msgstr ""
-#: lib/depends.c:434
+#: lib/depends.c:438
msgid "(rpmlib provides)"
msgstr ""
-#: lib/depends.c:463
+#: lib/depends.c:467
msgid "(db files)"
msgstr ""
-#: lib/depends.c:476
+#: lib/depends.c:480
msgid "(db provides)"
msgstr ""
-#: lib/depends.c:489
+#: lib/depends.c:493
#, fuzzy
msgid "(db package)"
msgstr "ingen pakker\n"
-#: lib/depends.c:839
+#: lib/depends.c:851
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:961
+#: lib/depends.c:973
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
-#: lib/depends.c:1193
+#: lib/depends.c:1207
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1294
+#: lib/depends.c:1308
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1377
+#: lib/depends.c:1391
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1447
+#: lib/depends.c:1461
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1482
+#: lib/depends.c:1496
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1487
+#: lib/depends.c:1501
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1451,7 +1451,7 @@ msgstr ""
#: lib/formats.c:310
#, fuzzy
-msgid "(not a OpenPGP signature"
+msgid "(not an OpenPGP signature)"
msgstr "hopp over PGP-signaturer"
#: lib/fs.c:77
@@ -1697,10 +1697,15 @@ msgid "malformed rollback time/date stamp argument"
msgstr ""
#: lib/poptI.c:152
+#, fuzzy
+msgid "add suggested packages to transaction"
+msgstr "spør/verifiser pakke(r) i gruppe"
+
+#: lib/poptI.c:156
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:156
+#: lib/poptI.c:160
msgid ""
"remove all packages which match <package> (normally an error is generated if "
"<package> specified multiple packages)"
@@ -1708,140 +1713,140 @@ msgstr ""
"fjern alle pakker som er lik <pakke> (normalt vil en feil genereres hvis "
"<pakke> spesifiserer flere pakker)"
-#: lib/poptI.c:162 lib/poptI.c:241 lib/poptI.c:244
+#: lib/poptI.c:166 lib/poptI.c:245 lib/poptI.c:248
msgid "do not execute package scriptlet(s)"
msgstr "ikke kjør pakkespesifikke skriptlet"
-#: lib/poptI.c:166
+#: lib/poptI.c:170
msgid "relocate files in non-relocateable package"
msgstr "omplasser filer i ikke-omplasserbar pakke"
-#: lib/poptI.c:169
+#: lib/poptI.c:173
msgid "save erased package files by renaming into sub-directory"
msgstr "lagre slettede pakkefiler ved å endre navn til underkatalog"
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "erase (uninstall) package"
msgstr "slett (avinstaller) pakke"
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "<package>+"
msgstr "<pakke>+"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "do not install documentation"
msgstr "ikke installer dokumentasjon"
-#: lib/poptI.c:177
+#: lib/poptI.c:181
msgid "skip files with leading component <path> "
msgstr "hopp over filer med innledende komponent <sti> "
-#: lib/poptI.c:178
+#: lib/poptI.c:182
msgid "<path>"
msgstr "<sti>"
-#: lib/poptI.c:183 lib/poptI.c:186
+#: lib/poptI.c:187 lib/poptI.c:190
msgid "short hand for --replacepkgs --replacefiles"
msgstr "forkortning for --replacepkgs --replacefiles"
-#: lib/poptI.c:191
+#: lib/poptI.c:195
msgid "upgrade package(s) if already installed"
msgstr "oppgrader pakke(r) hvis allerede installert"
-#: lib/poptI.c:192 lib/poptI.c:210 lib/poptI.c:213 lib/poptI.c:320
+#: lib/poptI.c:196 lib/poptI.c:214 lib/poptI.c:217 lib/poptI.c:324
msgid "<packagefile>+"
msgstr "<pakkefil>+"
-#: lib/poptI.c:194
+#: lib/poptI.c:198
msgid "print hash marks as package installs (good with -v)"
msgstr "skriv ut skigarder etter som pakken installeres (nyttig med -v)"
-#: lib/poptI.c:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr "ikke verifiser pakkearkitektur"
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr "ikke verifiser operativsystem for pakken"
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr "ikke sjekk diskplass før installasjon"
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr "installer dokumentasjon"
-#: lib/poptI.c:210 lib/poptI.c:213
+#: lib/poptI.c:214 lib/poptI.c:217
#, fuzzy
msgid "install package(s)"
msgstr "installer pakke"
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "update the database, but do not modify the filesystem"
msgstr "oppdater databasen, men ikke modifiser filsystemet"
-#: lib/poptI.c:221 lib/poptI.c:224
+#: lib/poptI.c:225 lib/poptI.c:228
msgid "do not verify package dependencies"
msgstr "ikke verifiser pakkeavhengigheter"
-#: lib/poptI.c:228 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:232 lib/poptQV.c:275 lib/poptQV.c:278
msgid "don't verify MD5 digest of files"
msgstr ""
-#: lib/poptI.c:231
+#: lib/poptI.c:235
msgid "do not reorder package installation to satisfy dependencies"
msgstr "ikke ordne pakkeinstallasjon for å tilfredsstille avhengigheter"
-#: lib/poptI.c:236
+#: lib/poptI.c:240
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:248
+#: lib/poptI.c:252
#, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr "ikke kjør noen %%pre skriptlet (hvis noen)"
-#: lib/poptI.c:251
+#: lib/poptI.c:255
#, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr "ikke kjør %%post skriptlet (hvis noen)"
-#: lib/poptI.c:254
+#: lib/poptI.c:258
#, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr "ikke kjør %%preun skriptlet (hvis noen)"
-#: lib/poptI.c:257
+#: lib/poptI.c:261
#, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr "ikke kjør %%postun skriptlet (hvis noen)"
-#: lib/poptI.c:276
+#: lib/poptI.c:280
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:279
+#: lib/poptI.c:283
#, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr "ikke kjør %%triggerprein skriptlets"
-#: lib/poptI.c:282
+#: lib/poptI.c:286
#, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr "ikke kjør %%triggerin skriptlets"
-#: lib/poptI.c:285
+#: lib/poptI.c:289
#, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr "ikke kjør %%triggerun skriplets"
-#: lib/poptI.c:288
+#: lib/poptI.c:292
#, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr "ikke kjør %%triggerpostun skriptlets"
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
@@ -1849,52 +1854,52 @@ msgstr ""
"oppgrader til en gammel versjon av pakken (--force ved oppgraderinger gjør "
"dette automatisk)"
-#: lib/poptI.c:296
+#: lib/poptI.c:300
msgid "print percentages as package installs"
msgstr "skriv ut prosentvis fremgang etter som pakken installeres"
-#: lib/poptI.c:298
+#: lib/poptI.c:302
msgid "relocate the package to <dir>, if relocatable"
msgstr "omplasser pakken til <kat>, hvis den er omplasserbar"
-#: lib/poptI.c:299
+#: lib/poptI.c:303
msgid "<dir>"
msgstr "<kat>"
-#: lib/poptI.c:301
+#: lib/poptI.c:305
msgid "relocate files from path <old> to <new>"
msgstr "omplasser filer fra sti <gml> til <ny>"
-#: lib/poptI.c:302
+#: lib/poptI.c:306
msgid "<old>=<new>"
msgstr "<gml>=<ny>"
-#: lib/poptI.c:305
+#: lib/poptI.c:309
msgid "save erased package files by repackaging"
msgstr "lagre slettede pakkefiler ved ompakking"
-#: lib/poptI.c:308
+#: lib/poptI.c:312
msgid "install even if the package replaces installed files"
msgstr "installer selv om pakken erstatter installerte filer"
-#: lib/poptI.c:311
+#: lib/poptI.c:315
msgid "reinstall if the package is already present"
msgstr "reinstaller selv om pakken allerede er installert"
-#: lib/poptI.c:313
+#: lib/poptI.c:317
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr ""
-#: lib/poptI.c:314
+#: lib/poptI.c:318
#, fuzzy
msgid "<date>"
msgstr "<sti>"
-#: lib/poptI.c:316
+#: lib/poptI.c:320
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:319
+#: lib/poptI.c:323
msgid "upgrade package(s)"
msgstr "oppgrader pakke(r)"
@@ -2159,7 +2164,7 @@ msgstr "klarte ikke å åpne %s: %s\n"
msgid "%s failed: %s\n"
msgstr "%s feilet\n"
-#: lib/query.c:122 lib/rpmts.c:413
+#: lib/query.c:122 lib/rpmts.c:430
#, c-format
msgid "incorrect format: %s\n"
msgstr "ukorrekt format: %s\n"
@@ -2208,8 +2213,9 @@ msgstr "pakken har verken fileier eller id-lister\n"
msgid "can't query %s: %s\n"
msgstr "kan ikke spørre på %s: %s\n"
-#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:422 lib/rpminstall.c:553
-#: lib/rpminstall.c:956 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:123 lib/rpminstall.c:452
+#: lib/rpminstall.c:583 lib/rpminstall.c:986 lib/rpmts.c:441
+#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "feil under åpning av %s: %s\n"
@@ -2223,7 +2229,7 @@ msgstr "spørring på %s feilet\n"
msgid "old format source packages cannot be queried\n"
msgstr "kildepakker i gammelt format kan ikke spørres\n"
-#: lib/query.c:609 lib/rpminstall.c:566
+#: lib/query.c:609 lib/rpminstall.c:596
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "ingen pakke utløser %s\n"
@@ -2292,16 +2298,16 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
-#: lib/query.c:907 lib/rpminstall.c:733
+#: lib/query.c:907 lib/rpminstall.c:763
#, c-format
msgid "package %s is not installed\n"
msgstr "pakke %s er ikke installert\n"
-#: lib/rpmal.c:696
+#: lib/rpmal.c:697
msgid "(added files)"
msgstr ""
-#: lib/rpmal.c:773
+#: lib/rpmal.c:774
msgid "(added provide)"
msgstr ""
@@ -2458,110 +2464,115 @@ msgstr "relokerer %s til %s\n"
msgid "relocating directory %s to %s\n"
msgstr "relokerer katalog %s til %s\n"
-#: lib/rpminstall.c:181
+#: lib/rpminstall.c:186
msgid "Preparing..."
msgstr "Forbereder..."
-#: lib/rpminstall.c:183
+#: lib/rpminstall.c:188
msgid "Preparing packages for installation..."
msgstr "Forbereder pakker for installasjon..."
-#: lib/rpminstall.c:201
+#: lib/rpminstall.c:206
#, fuzzy
msgid "Repackaging..."
msgstr "Forbereder..."
-#: lib/rpminstall.c:203
+#: lib/rpminstall.c:208
msgid "Repackaging erased files..."
msgstr ""
-#: lib/rpminstall.c:222
+#: lib/rpminstall.c:227
#, fuzzy
msgid "Upgrading..."
msgstr "Forbereder..."
-#: lib/rpminstall.c:224
+#: lib/rpminstall.c:229
#, fuzzy
msgid "Upgrading packages..."
msgstr "oppgrader pakke(r)"
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:384
+#, fuzzy, c-format
+msgid "Adding goal: %s\n"
+msgstr "Fil %s: %s\n"
+
+#: lib/rpminstall.c:399
#, c-format
msgid "Retrieving %s\n"
msgstr "Henter %s\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:382
+#: lib/rpminstall.c:412
#, c-format
msgid " ... as %s\n"
msgstr " ... som %s\n"
-#: lib/rpminstall.c:386
+#: lib/rpminstall.c:416
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "hopper over %s - overføring feilet - %s\n"
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:507
#, c-format
msgid "package %s is not relocateable\n"
msgstr "pakke %s kan ikke relokeres\n"
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:557
#, c-format
msgid "error reading from file %s\n"
msgstr "feil under lesing fra fil %s\n"
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:563
#, 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:545 lib/rpminstall.c:812 tools/rpmgraph.c:156
+#: lib/rpminstall.c:575 lib/rpminstall.c:842 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:611
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr "fant %d kilde- og %d binærpakker\n"
-#: lib/rpminstall.c:595 lib/rpminstall.c:761 lib/rpminstall.c:1160
+#: lib/rpminstall.c:625 lib/rpminstall.c:791 lib/rpminstall.c:1190
#: tools/rpmgraph.c:202
#, fuzzy
msgid "Failed dependencies:\n"
msgstr "feilede avhengigheter:\n"
-#: lib/rpminstall.c:602 tools/rpmgraph.c:208
+#: lib/rpminstall.c:632 tools/rpmgraph.c:208
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:632
+#: lib/rpminstall.c:662
msgid "installing binary packages\n"
msgstr "installerer binærpakker\n"
-#: lib/rpminstall.c:656
+#: lib/rpminstall.c:686
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:736
+#: lib/rpminstall.c:766
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" spesifiserer flere pakker\n"
-#: lib/rpminstall.c:796
+#: lib/rpminstall.c:826
#, c-format
msgid "cannot open %s: %s\n"
msgstr "kan ikke åpne %s: %s\n"
-#: lib/rpminstall.c:802
+#: lib/rpminstall.c:832
#, c-format
msgid "Installing %s\n"
msgstr "Installerer %s\n"
-#: lib/rpminstall.c:1154
+#: lib/rpminstall.c:1184
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
@@ -2778,13 +2789,23 @@ msgstr "Kunne ikke åpne spec fil %s: %s\n"
msgid "cannot open Packages database in %s\n"
msgstr "kan ikke åpne pakkedatabase i %s\n"
-#: lib/rpmts.c:319
+#: lib/rpmts.c:320
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "kan ikke åpne database i %s\n"
+#: lib/rpmts.c:456
+#, fuzzy, c-format
+msgid "Adding: %s\n"
+msgstr "Installerer %s\n"
+
+#: lib/rpmts.c:467
+#, fuzzy, c-format
+msgid "Suggesting: %s\n"
+msgstr "Henter %s\n"
+
#. Get available space on mounted file systems.
-#: lib/rpmts.c:809
+#: lib/rpmts.c:860
msgid "getting list of mounted filesystems\n"
msgstr "henter liste over monterte filsystemer\n"
diff --git a/po/pl.po b/po/pl.po
index 744dd5f51..0e003b101 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-10 13:48-0400\n"
+"POT-Creation-Date: 2002-08-13 12:17-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"
@@ -1294,19 +1294,19 @@ msgstr "nie sprawdzaj zale¿no¶ci pakietu"
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:261 lib/poptI.c:268
+#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:265 lib/poptI.c:272
#: lib/poptQV.c:329 lib/poptQV.c:338 lib/poptQV.c:377
#, fuzzy
msgid "don't verify package digest(s)"
msgstr "nie sprawdzaj zale¿no¶ci pakietu"
-#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:263 lib/poptI.c:270
+#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:267 lib/poptI.c:274
#: lib/poptQV.c:332 lib/poptQV.c:340 lib/poptQV.c:380
#, fuzzy
msgid "don't verify database header(s) when retrieved"
msgstr "nie sprawdzaj architektury systemu"
-#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:265 lib/poptI.c:272
+#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:269 lib/poptI.c:276
#: lib/poptQV.c:335 lib/poptQV.c:342 lib/poptQV.c:382
#, fuzzy
msgid "don't verify package signature(s)"
@@ -1404,70 +1404,70 @@ msgstr " nie powiod³o siê -"
msgid "package %s was already added, replacing with %s\n"
msgstr "pakiet %s-%s-%s jest ju¿ zainstalowany"
-#: lib/depends.c:391
+#: lib/depends.c:394
msgid "(cached)"
msgstr ""
-#: lib/depends.c:417
+#: lib/depends.c:421
msgid "(rpmrc provides)"
msgstr ""
-#: lib/depends.c:434
+#: lib/depends.c:438
#, fuzzy
msgid "(rpmlib provides)"
msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
-#: lib/depends.c:463
+#: lib/depends.c:467
#, fuzzy
msgid "(db files)"
msgstr "b³êdny status pliku: %s"
-#: lib/depends.c:476
+#: lib/depends.c:480
#, fuzzy
msgid "(db provides)"
msgstr "Udostêpniane zasoby:"
-#: lib/depends.c:489
+#: lib/depends.c:493
#, fuzzy
msgid "(db package)"
msgstr "znaleziono %d pakietów\n"
-#: lib/depends.c:839
+#: lib/depends.c:851
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:961
+#: lib/depends.c:973
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "usuwanie indeksu grupy\n"
#. Record all relations.
-#: lib/depends.c:1193
+#: lib/depends.c:1207
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1294
+#: lib/depends.c:1308
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1377
+#: lib/depends.c:1391
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1447
+#: lib/depends.c:1461
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1482
+#: lib/depends.c:1496
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1487
+#: lib/depends.c:1501
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1493,7 +1493,7 @@ msgstr "(nie jest liczb±)"
#: lib/formats.c:310
#, fuzzy
-msgid "(not a OpenPGP signature"
+msgid "(not an OpenPGP signature)"
msgstr "pomiñ wszelkie sygnatury PGP"
#: lib/fs.c:77
@@ -1743,12 +1743,17 @@ msgid "malformed rollback time/date stamp argument"
msgstr ""
#: lib/poptI.c:152
+#, fuzzy
+msgid "add suggested packages to transaction"
+msgstr "odpytywanie pakietów w grupie"
+
+#: lib/poptI.c:156
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:156
+#: lib/poptI.c:160
msgid ""
"remove all packages which match <package> (normally an error is generated if "
"<package> specified multiple packages)"
@@ -1756,148 +1761,148 @@ msgstr ""
"usuñ wszystkie pakiety, które spe³niaj± wzorzec <pakiet> (zazwyczaj "
"wy¶wietlany jest b³±d gdy <pakiet> opisuje wiele pakietów)"
-#: lib/poptI.c:162 lib/poptI.c:241 lib/poptI.c:244
+#: lib/poptI.c:166 lib/poptI.c:245 lib/poptI.c:248
#, fuzzy
msgid "do not execute package scriptlet(s)"
msgstr "nie wykonuj ¿adnych skryptów instalacyjnych"
-#: lib/poptI.c:166
+#: lib/poptI.c:170
#, 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:169
+#: lib/poptI.c:173
msgid "save erased package files by renaming into sub-directory"
msgstr ""
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "erase (uninstall) package"
msgstr "usuñ (odinstaluj) pakiet"
-#: lib/poptI.c:172
+#: lib/poptI.c:176
#, fuzzy
msgid "<package>+"
msgstr "znaleziono %d pakietów\n"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "do not install documentation"
msgstr "nie instaluj dokumentacji"
-#: lib/poptI.c:177
+#: lib/poptI.c:181
#, fuzzy
msgid "skip files with leading component <path> "
msgstr "pomiñ pliki le¿±ce w <¶cie¿ce>"
-#: lib/poptI.c:178
+#: lib/poptI.c:182
msgid "<path>"
msgstr ""
-#: lib/poptI.c:183 lib/poptI.c:186
+#: lib/poptI.c:187 lib/poptI.c:190
msgid "short hand for --replacepkgs --replacefiles"
msgstr "skrócona wersja kombinacji --replacepkgs --replacefiles"
-#: lib/poptI.c:191
+#: lib/poptI.c:195
#, fuzzy
msgid "upgrade package(s) if already installed"
msgstr "pakiet %s-%s-%s jest ju¿ zainstalowany"
-#: lib/poptI.c:192 lib/poptI.c:210 lib/poptI.c:213 lib/poptI.c:320
+#: lib/poptI.c:196 lib/poptI.c:214 lib/poptI.c:217 lib/poptI.c:324
#, fuzzy
msgid "<packagefile>+"
msgstr " -p <nazwa pakietu>+ "
-#: lib/poptI.c:194
+#: lib/poptI.c:198
msgid "print hash marks as package installs (good with -v)"
msgstr "wy¶wietlaj znaki hash przy instalacji (fajne z -v)"
-#: lib/poptI.c:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr "nie sprawdzaj architektury systemu"
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr "nie sprawdzaj rodzaju systemu operacyjnego"
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr "nie sprawdzaj zajêto¶ci dysku przed instalacj±"
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr "zainstaluj dokumentacjê"
-#: lib/poptI.c:210 lib/poptI.c:213
+#: lib/poptI.c:214 lib/poptI.c:217
#, fuzzy
msgid "install package(s)"
msgstr "instaluj pakiet"
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "update the database, but do not modify the filesystem"
msgstr "od¶wie¿ bazê, ale nie modyfikuj systemu plików"
-#: lib/poptI.c:221 lib/poptI.c:224
+#: lib/poptI.c:225 lib/poptI.c:228
msgid "do not verify package dependencies"
msgstr "nie sprawdzaj zale¿no¶ci pakietu"
-#: lib/poptI.c:228 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:232 lib/poptQV.c:275 lib/poptQV.c:278
#, fuzzy
msgid "don't verify MD5 digest of files"
msgstr "nie sprawdzaj plików pakietu"
-#: lib/poptI.c:231
+#: lib/poptI.c:235
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:236
+#: lib/poptI.c:240
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:248
+#: lib/poptI.c:252
#, fuzzy, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr "nie wykonuj ¿adnych etapów"
-#: lib/poptI.c:251
+#: lib/poptI.c:255
#, fuzzy, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr "nie wykonuj ¿adnych etapów"
-#: lib/poptI.c:254
+#: lib/poptI.c:258
#, fuzzy, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr "nie wykonuj ¿adnych etapów"
-#: lib/poptI.c:257
+#: lib/poptI.c:261
#, fuzzy, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr "nie wykonuj ¿adnych etapów"
-#: lib/poptI.c:276
+#: lib/poptI.c:280
#, fuzzy
msgid "do not execute any scriptlet(s) triggered by this package"
msgstr "odpytywanie pakietów zahaczanych przez pakiet"
-#: lib/poptI.c:279
+#: lib/poptI.c:283
#, fuzzy, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr "nie wykonuj ¿adnych skryptów instalacyjnych"
-#: lib/poptI.c:282
+#: lib/poptI.c:286
#, fuzzy, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr "nie wykonuj ¿adnych skryptów instalacyjnych"
-#: lib/poptI.c:285
+#: lib/poptI.c:289
#, fuzzy, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr "nie wykonuj ¿adnych skryptów instalacyjnych"
-#: lib/poptI.c:288
+#: lib/poptI.c:292
#, fuzzy, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr "nie wykonuj ¿adnych skryptów instalacyjnych"
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
@@ -1905,53 +1910,53 @@ msgstr ""
"uaktualnij do starej wersji (--force robi to samo automatycznie podczas "
"uaktualniania)"
-#: lib/poptI.c:296
+#: lib/poptI.c:300
msgid "print percentages as package installs"
msgstr "wy¶wietlaj stan instalacji w procentach"
-#: lib/poptI.c:298
+#: lib/poptI.c:302
msgid "relocate the package to <dir>, if relocatable"
msgstr "przesuñ pliki pakietu do drzewa <katalog>, je¶li jest przesuwalny"
-#: lib/poptI.c:299
+#: lib/poptI.c:303
msgid "<dir>"
msgstr ""
-#: lib/poptI.c:301
+#: lib/poptI.c:305
#, 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:302
+#: lib/poptI.c:306
#, fuzzy
msgid "<old>=<new>"
msgstr " --relocate <stara-¶cie¿ka>=<nowa-¶cie¿ka>"
-#: lib/poptI.c:305
+#: lib/poptI.c:309
msgid "save erased package files by repackaging"
msgstr ""
-#: lib/poptI.c:308
+#: lib/poptI.c:312
msgid "install even if the package replaces installed files"
msgstr "instaluj nawet gdy pakiet zastêpuje inne zainstalowane pliki"
-#: lib/poptI.c:311
+#: lib/poptI.c:315
msgid "reinstall if the package is already present"
msgstr "przeinstaluj je¶li pakiet jest ju¿ zainstalowany"
-#: lib/poptI.c:313
+#: lib/poptI.c:317
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr ""
-#: lib/poptI.c:314
+#: lib/poptI.c:318
msgid "<date>"
msgstr ""
-#: lib/poptI.c:316
+#: lib/poptI.c:320
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:319
+#: lib/poptI.c:323
#, fuzzy
msgid "upgrade package(s)"
msgstr " --upgrade <nazwa pakietu>"
@@ -2236,7 +2241,7 @@ msgstr "nie mo¿na otworzyæ %s: %s"
msgid "%s failed: %s\n"
msgstr "%s nie powiod³o siê"
-#: lib/query.c:122 lib/rpmts.c:413
+#: lib/query.c:122 lib/rpmts.c:430
#, fuzzy, c-format
msgid "incorrect format: %s\n"
msgstr "b³±d w formacie: %s\n"
@@ -2286,8 +2291,9 @@ msgstr "pakiet nie ma ani w³a¶ciciela pliku ani list id"
msgid "can't query %s: %s\n"
msgstr "nie mo¿na odwi±zaæ %s: %s\n"
-#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:422 lib/rpminstall.c:553
-#: lib/rpminstall.c:956 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:123 lib/rpminstall.c:452
+#: lib/rpminstall.c:583 lib/rpminstall.c:986 lib/rpmts.c:441
+#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "otwarcie %s nie powiod³o siê: %s\n"
@@ -2301,7 +2307,7 @@ msgstr "odpytywanie %s nie powiod³o siê\n"
msgid "old format source packages cannot be queried\n"
msgstr "pakiety w starym formacie nie mog± byæ odpytywane\n"
-#: lib/query.c:609 lib/rpminstall.c:566
+#: lib/query.c:609 lib/rpminstall.c:596
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "¿aden pakiet nie zahacza %s\n"
@@ -2371,17 +2377,17 @@ msgstr "numer rekordu pakietu: %d\n"
msgid "record %u could not be read\n"
msgstr "nie mo¿na odczytaæ rekordu %d\n"
-#: lib/query.c:907 lib/rpminstall.c:733
+#: lib/query.c:907 lib/rpminstall.c:763
#, c-format
msgid "package %s is not installed\n"
msgstr "pakiet %s nie jest zainstalowany\n"
-#: lib/rpmal.c:696
+#: lib/rpmal.c:697
#, fuzzy
msgid "(added files)"
msgstr "b³êdny status pliku: %s"
-#: lib/rpmal.c:773
+#: lib/rpmal.c:774
msgid "(added provide)"
msgstr ""
@@ -2540,110 +2546,115 @@ msgstr "przesuwanie %s do %s\n"
msgid "relocating directory %s to %s\n"
msgstr "przesuwanie %s do %s\n"
-#: lib/rpminstall.c:181
+#: lib/rpminstall.c:186
msgid "Preparing..."
msgstr ""
-#: lib/rpminstall.c:183
+#: lib/rpminstall.c:188
#, fuzzy
msgid "Preparing packages for installation..."
msgstr "nie podano nazw plików do zainstalowania"
-#: lib/rpminstall.c:201
+#: lib/rpminstall.c:206
msgid "Repackaging..."
msgstr ""
-#: lib/rpminstall.c:203
+#: lib/rpminstall.c:208
#, fuzzy
msgid "Repackaging erased files..."
msgstr "pakiet nie ma plików\n"
-#: lib/rpminstall.c:222
+#: lib/rpminstall.c:227
msgid "Upgrading..."
msgstr ""
-#: lib/rpminstall.c:224
+#: lib/rpminstall.c:229
#, fuzzy
msgid "Upgrading packages..."
msgstr " --upgrade <nazwa pakietu>"
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:384
+#, fuzzy, c-format
+msgid "Adding goal: %s\n"
+msgstr "Wyszukiwanie wymaganych zasobów...\n"
+
+#: lib/rpminstall.c:399
#, 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:382
+#: lib/rpminstall.c:412
#, c-format
msgid " ... as %s\n"
msgstr "... jako %s\n"
-#: lib/rpminstall.c:386
+#: lib/rpminstall.c:416
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "%s pomijany - transmisja %s nie powiod³a siê\n"
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:507
#, c-format
msgid "package %s is not relocateable\n"
msgstr "pakiet %s nie jest przesuwalny\n"
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:557
#, c-format
msgid "error reading from file %s\n"
msgstr "b³±d czytania z pliku %s\n"
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:563
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr "plik %s wymaga nowszej wersji RPM\n"
-#: lib/rpminstall.c:545 lib/rpminstall.c:812 tools/rpmgraph.c:156
+#: lib/rpminstall.c:575 lib/rpminstall.c:842 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s nie mo¿e byæ zainstalowany\n"
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:611
#, 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:595 lib/rpminstall.c:761 lib/rpminstall.c:1160
+#: lib/rpminstall.c:625 lib/rpminstall.c:791 lib/rpminstall.c:1190
#: tools/rpmgraph.c:202
#, fuzzy
msgid "Failed dependencies:\n"
msgstr "niespe³nione zale¿no¶ci:\n"
-#: lib/rpminstall.c:602 tools/rpmgraph.c:208
+#: lib/rpminstall.c:632 tools/rpmgraph.c:208
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:632
+#: lib/rpminstall.c:662
msgid "installing binary packages\n"
msgstr "instalacja pakietów binarnych\n"
-#: lib/rpminstall.c:656
+#: lib/rpminstall.c:686
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "nie mo¿na otworzyæ pliku %s: %s"
-#: lib/rpminstall.c:736
+#: lib/rpminstall.c:766
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" okre¶la wiele pakietów\n"
-#: lib/rpminstall.c:796
+#: lib/rpminstall.c:826
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "nie mo¿na otworzyæ %s\n"
-#: lib/rpminstall.c:802
+#: lib/rpminstall.c:832
#, c-format
msgid "Installing %s\n"
msgstr "Instalacja %s\n"
-#: lib/rpminstall.c:1154
+#: lib/rpminstall.c:1184
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
@@ -2862,13 +2873,23 @@ msgstr "Nie mo¿na otworzyæ %s do odczytu: %s."
msgid "cannot open Packages database in %s\n"
msgstr "nie mo¿na otworzyæ %s/packages.rpm\n"
-#: lib/rpmts.c:319
+#: lib/rpmts.c:320
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "nie mo¿na otworzyæ %s/packages.rpm\n"
+#: lib/rpmts.c:456
+#, fuzzy, c-format
+msgid "Adding: %s\n"
+msgstr "linia: %s"
+
+#: lib/rpmts.c:467
+#, fuzzy, c-format
+msgid "Suggesting: %s\n"
+msgstr "¼ród³a w: %s\n"
+
#. Get available space on mounted file systems.
-#: lib/rpmts.c:809
+#: lib/rpmts.c:860
msgid "getting list of mounted filesystems\n"
msgstr ""
@@ -4827,9 +4848,6 @@ msgstr ""
#~ msgid "cannot create sourcedir %s\n"
#~ msgstr "nie mo¿na utworzyæ %s"
-#~ msgid "sources in: %s\n"
-#~ msgstr "¼ród³a w: %s\n"
-
#, fuzzy
#~ msgid "cannot create specdir %s\n"
#~ msgstr "nie mo¿na utworzyæ %s"
diff --git a/po/pt.po b/po/pt.po
index 320abd21f..146995f2f 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm\n"
-"POT-Creation-Date: 2002-08-10 13:48-0400\n"
+"POT-Creation-Date: 2002-08-13 12:17-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"
@@ -1270,19 +1270,19 @@ msgstr "não verificar as dependências de compilação"
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr "gerar um cabeçalho do pacote compatível com os pacotes do rpm[23]"
-#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:261 lib/poptI.c:268
+#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:265 lib/poptI.c:272
#: lib/poptQV.c:329 lib/poptQV.c:338 lib/poptQV.c:377
#, fuzzy
msgid "don't verify package digest(s)"
msgstr "não verificar as dependências do pacote"
-#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:263 lib/poptI.c:270
+#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:267 lib/poptI.c:274
#: lib/poptQV.c:332 lib/poptQV.c:340 lib/poptQV.c:380
#, fuzzy
msgid "don't verify database header(s) when retrieved"
msgstr "não verifica a arquitectura do pacote"
-#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:265 lib/poptI.c:272
+#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:269 lib/poptI.c:276
#: lib/poptQV.c:335 lib/poptQV.c:342 lib/poptQV.c:382
#, fuzzy
msgid "don't verify package signature(s)"
@@ -1377,72 +1377,72 @@ msgstr " falhou - "
msgid "package %s was already added, replacing with %s\n"
msgstr "o pacote %s já está instalado"
-#: lib/depends.c:391
+#: lib/depends.c:394
msgid "(cached)"
msgstr ""
-#: lib/depends.c:417
+#: lib/depends.c:421
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %-45s SIM (oferecidos pelo rpmrc)\n"
-#: lib/depends.c:434
+#: lib/depends.c:438
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %-45s SIM (oferecidos pela rpmlib)\n"
-#: lib/depends.c:463
+#: lib/depends.c:467
#, fuzzy
msgid "(db files)"
msgstr "ficheiro db inválido %s\n"
-#: lib/depends.c:476
+#: lib/depends.c:480
#, fuzzy
msgid "(db provides)"
msgstr "%s: %-45s SI (oferecidos pelo db)\n"
-#: lib/depends.c:489
+#: lib/depends.c:493
#, fuzzy
msgid "(db package)"
msgstr "nenhum pacote\n"
-#: lib/depends.c:839
+#: lib/depends.c:851
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr "ignorar relações entre o nome do pacote [%d]\t%s -> %s\n"
-#: lib/depends.c:961
+#: lib/depends.c:973
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "a remover o %s-%s-%s \"%s\" das relações do tsort.\n"
#. Record all relations.
-#: lib/depends.c:1193
+#: lib/depends.c:1207
msgid "========== recording tsort relations\n"
msgstr "=========== a guardar as relações do tsort\n"
#. T4. Scan for zeroes.
-#: lib/depends.c:1294
+#: lib/depends.c:1308
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
"========== ordenar pacotes (order, #predecessors, #succesors, tree, depth)\n"
-#: lib/depends.c:1377
+#: lib/depends.c:1391
msgid "========== successors only (presentation order)\n"
msgstr "========== só os sucessores (ordem de apresentação)\n"
-#: lib/depends.c:1447
+#: lib/depends.c:1461
msgid "LOOP:\n"
msgstr "CICLO:\n"
-#: lib/depends.c:1482
+#: lib/depends.c:1496
msgid "========== continuing tsort ...\n"
msgstr "========== a prosseguir o tsort ...\n"
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1487
+#: lib/depends.c:1501
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1466,7 +1466,7 @@ msgstr "(não é um blob)"
#: lib/formats.c:310
#, fuzzy
-msgid "(not a OpenPGP signature"
+msgid "(not an OpenPGP signature)"
msgstr "ignorar as assinaturas de PGP"
#: lib/fs.c:77
@@ -1716,12 +1716,17 @@ msgid "malformed rollback time/date stamp argument"
msgstr "argumento hora/data inválido para 'rollback'"
#: lib/poptI.c:152
+#, fuzzy
+msgid "add suggested packages to transaction"
+msgstr "pesquisar/verificar o(s) pacote(s) de transacção de instalação"
+
+#: lib/poptI.c:156
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:156
+#: lib/poptI.c:160
msgid ""
"remove all packages which match <package> (normally an error is generated if "
"<package> specified multiple packages)"
@@ -1729,142 +1734,142 @@ msgstr ""
"remove todos os pacotes que correspondam a <pacote> (normalmente aparece um "
"erro se o <pacote> especifica vários pacotes)"
-#: lib/poptI.c:162 lib/poptI.c:241 lib/poptI.c:244
+#: lib/poptI.c:166 lib/poptI.c:245 lib/poptI.c:248
msgid "do not execute package scriptlet(s)"
msgstr "não executar nenhuns scripts do pacote"
-#: lib/poptI.c:166
+#: lib/poptI.c:170
msgid "relocate files in non-relocateable package"
msgstr "muda os ficheiros de sítio num pacote de localização fixa"
-#: lib/poptI.c:169
+#: lib/poptI.c:173
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:172
+#: lib/poptI.c:176
msgid "erase (uninstall) package"
msgstr "apaga (desinstala) o pacote"
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "<package>+"
msgstr "<pacote>+"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "do not install documentation"
msgstr "não instala a documentação"
-#: lib/poptI.c:177
+#: lib/poptI.c:181
msgid "skip files with leading component <path> "
msgstr "ignorar os ficheiros com a componente inicial <dir> "
-#: lib/poptI.c:178
+#: lib/poptI.c:182
msgid "<path>"
msgstr "<caminho>"
-#: lib/poptI.c:183 lib/poptI.c:186
+#: lib/poptI.c:187 lib/poptI.c:190
msgid "short hand for --replacepkgs --replacefiles"
msgstr "abreviatura para --replacepkgs --replacefiles"
-#: lib/poptI.c:191
+#: lib/poptI.c:195
msgid "upgrade package(s) if already installed"
msgstr "actualizar o pacote(s) se já estiver instalado"
-#: lib/poptI.c:192 lib/poptI.c:210 lib/poptI.c:213 lib/poptI.c:320
+#: lib/poptI.c:196 lib/poptI.c:214 lib/poptI.c:217 lib/poptI.c:324
msgid "<packagefile>+"
msgstr "<pacote>+"
-#: lib/poptI.c:194
+#: lib/poptI.c:198
msgid "print hash marks as package installs (good with -v)"
msgstr "mostra cardinais enquanto o pacote instala (conveniente com o -v)"
-#: lib/poptI.c:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr "não verifica a arquitectura do pacote"
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr "não verifica o sistema operativo do pacote"
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr "não verifica o espaço em disco antes de instalar"
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr "instala a documentação"
-#: lib/poptI.c:210 lib/poptI.c:213
+#: lib/poptI.c:214 lib/poptI.c:217
#, fuzzy
msgid "install package(s)"
msgstr "instala o pacote"
-#: lib/poptI.c:217
+#: lib/poptI.c:221
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:221 lib/poptI.c:224
+#: lib/poptI.c:225 lib/poptI.c:228
msgid "do not verify package dependencies"
msgstr "não verifica as dependências do pacote"
-#: lib/poptI.c:228 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:232 lib/poptQV.c:275 lib/poptQV.c:278
msgid "don't verify MD5 digest of files"
msgstr "não verificar o MD5 dos ficheiros"
-#: lib/poptI.c:231
+#: lib/poptI.c:235
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:236
+#: lib/poptI.c:240
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:248
+#: lib/poptI.c:252
#, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr "não executar o script %%pre (se existir)"
-#: lib/poptI.c:251
+#: lib/poptI.c:255
#, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr "não executar o script %%post (se existir)"
-#: lib/poptI.c:254
+#: lib/poptI.c:258
#, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr "não executar o script %%preun (se existir)"
-#: lib/poptI.c:257
+#: lib/poptI.c:261
#, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr "não executar o script %%postun (se existir)"
-#: lib/poptI.c:276
+#: lib/poptI.c:280
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:279
+#: lib/poptI.c:283
#, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr "não executar nenhum dos scripts %%triggerprein"
-#: lib/poptI.c:282
+#: lib/poptI.c:286
#, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr "não executar nenhum dos scripts %%triggerin"
-#: lib/poptI.c:285
+#: lib/poptI.c:289
#, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr "não executar nenhum dos scripts %%triggerun"
-#: lib/poptI.c:288
+#: lib/poptI.c:292
#, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr "não executar nenhum dos scripts %%triggerpostun"
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
@@ -1872,51 +1877,51 @@ msgstr ""
"actualiza para um versão antiga do pacote (o --force faz isto "
"automaticamente)"
-#: lib/poptI.c:296
+#: lib/poptI.c:300
msgid "print percentages as package installs"
msgstr "mostra percentagens enquanto o pacote instala"
-#: lib/poptI.c:298
+#: lib/poptI.c:302
msgid "relocate the package to <dir>, if relocatable"
msgstr "muda o pacote para <dir>, se for possível"
-#: lib/poptI.c:299
+#: lib/poptI.c:303
msgid "<dir>"
msgstr "<dir>"
-#: lib/poptI.c:301
+#: lib/poptI.c:305
msgid "relocate files from path <old> to <new>"
msgstr "muda os ficheiros de <velho> para <novo>"
-#: lib/poptI.c:302
+#: lib/poptI.c:306
msgid "<old>=<new>"
msgstr "<velho>=<novo>"
-#: lib/poptI.c:305
+#: lib/poptI.c:309
msgid "save erased package files by repackaging"
msgstr "gravar ficheiros apagados reempacotando-os"
-#: lib/poptI.c:308
+#: lib/poptI.c:312
msgid "install even if the package replaces installed files"
msgstr "instala mesmo se o pacote substituir ficheiros instalados"
-#: lib/poptI.c:311
+#: lib/poptI.c:315
msgid "reinstall if the package is already present"
msgstr "reinstalar se o pacote já estiver presente"
-#: lib/poptI.c:313
+#: lib/poptI.c:317
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr "desinstalador novo, reinstalar velho, pacote(s) voltar à <data>"
-#: lib/poptI.c:314
+#: lib/poptI.c:318
msgid "<date>"
msgstr "<data>"
-#: lib/poptI.c:316
+#: lib/poptI.c:320
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:319
+#: lib/poptI.c:323
msgid "upgrade package(s)"
msgstr "actualizar pacote(s)"
@@ -2180,7 +2185,7 @@ msgstr "%s falhou no ficheiro %s: %s\n"
msgid "%s failed: %s\n"
msgstr "%s falhou: %s\n"
-#: lib/query.c:122 lib/rpmts.c:413
+#: lib/query.c:122 lib/rpmts.c:430
#, c-format
msgid "incorrect format: %s\n"
msgstr "formato incorrecto: %s\n"
@@ -2229,8 +2234,9 @@ msgstr "o pacote nem tem um dono do ficheiro ou as listas de IDs\n"
msgid "can't query %s: %s\n"
msgstr "não consigo pesquisar o %s: %s\n"
-#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:422 lib/rpminstall.c:553
-#: lib/rpminstall.c:956 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:123 lib/rpminstall.c:452
+#: lib/rpminstall.c:583 lib/rpminstall.c:986 lib/rpmts.c:441
+#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "o acesso ao %s falhou: %s\n"
@@ -2245,7 +2251,7 @@ msgid "old format source packages cannot be queried\n"
msgstr ""
"os pacotes com código-fonte no formato antigo não podem ser pesquisados\n"
-#: lib/query.c:609 lib/rpminstall.c:566
+#: lib/query.c:609 lib/rpminstall.c:596
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "nenhum pacote coincide com %s: %s\n"
@@ -2314,17 +2320,17 @@ msgstr "número de registo do pacote: %u\n"
msgid "record %u could not be read\n"
msgstr "o registo %u não pôde ser lido\n"
-#: lib/query.c:907 lib/rpminstall.c:733
+#: lib/query.c:907 lib/rpminstall.c:763
#, c-format
msgid "package %s is not installed\n"
msgstr "o pacote %s não está instalado\n"
-#: lib/rpmal.c:696
+#: lib/rpmal.c:697
#, fuzzy
msgid "(added files)"
msgstr "ficheiro db inválido %s\n"
-#: lib/rpmal.c:773
+#: lib/rpmal.c:774
#, fuzzy
msgid "(added provide)"
msgstr "%s: %-45s SIM (oferecidos para adição)\n"
@@ -2484,110 +2490,115 @@ msgstr "a mudar o %s para %s\n"
msgid "relocating directory %s to %s\n"
msgstr "a mudar a directoria %s para %s\n"
-#: lib/rpminstall.c:181
+#: lib/rpminstall.c:186
msgid "Preparing..."
msgstr "A preparar..."
-#: lib/rpminstall.c:183
+#: lib/rpminstall.c:188
msgid "Preparing packages for installation..."
msgstr "A preparar os pacotes para a instalação..."
-#: lib/rpminstall.c:201
+#: lib/rpminstall.c:206
#, fuzzy
msgid "Repackaging..."
msgstr "A preparar..."
-#: lib/rpminstall.c:203
+#: lib/rpminstall.c:208
msgid "Repackaging erased files..."
msgstr ""
-#: lib/rpminstall.c:222
+#: lib/rpminstall.c:227
#, fuzzy
msgid "Upgrading..."
msgstr "A preparar..."
-#: lib/rpminstall.c:224
+#: lib/rpminstall.c:229
#, fuzzy
msgid "Upgrading packages..."
msgstr "actualizar pacote(s)"
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:384
+#, fuzzy, c-format
+msgid "Adding goal: %s\n"
+msgstr "A procurar o %s: (usando o %s)...\n"
+
+#: lib/rpminstall.c:399
#, 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:382
+#: lib/rpminstall.c:412
#, c-format
msgid " ... as %s\n"
msgstr " ... como %s\n"
-#: lib/rpminstall.c:386
+#: lib/rpminstall.c:416
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "a ignorar o %s - a transferência falhou - %s\n"
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:507
#, 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:527
+#: lib/rpminstall.c:557
#, c-format
msgid "error reading from file %s\n"
msgstr "erro ao ler do ficheiros %s\n"
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:563
#, 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:545 lib/rpminstall.c:812 tools/rpmgraph.c:156
+#: lib/rpminstall.c:575 lib/rpminstall.c:842 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr "o %s não pode ser instalado\n"
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:611
#, 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:595 lib/rpminstall.c:761 lib/rpminstall.c:1160
+#: lib/rpminstall.c:625 lib/rpminstall.c:791 lib/rpminstall.c:1190
#: tools/rpmgraph.c:202
#, fuzzy
msgid "Failed dependencies:\n"
msgstr "dependências falhadas:\n"
-#: lib/rpminstall.c:602 tools/rpmgraph.c:208
+#: lib/rpminstall.c:632 tools/rpmgraph.c:208
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:632
+#: lib/rpminstall.c:662
msgid "installing binary packages\n"
msgstr "a instalar os pacotes binários\n"
-#: lib/rpminstall.c:656
+#: lib/rpminstall.c:686
#, c-format
msgid "cannot open file %s: %s\n"
msgstr "não consigo aceder ao ficheiro %s: %s\n"
-#: lib/rpminstall.c:736
+#: lib/rpminstall.c:766
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "o \"%s\" especifica vários pacotes\n"
-#: lib/rpminstall.c:796
+#: lib/rpminstall.c:826
#, c-format
msgid "cannot open %s: %s\n"
msgstr "não consigo aceder ao %s: %s\n"
-#: lib/rpminstall.c:802
+#: lib/rpminstall.c:832
#, c-format
msgid "Installing %s\n"
msgstr "A instalar o %s\n"
-#: lib/rpminstall.c:1154
+#: lib/rpminstall.c:1184
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
@@ -2808,13 +2819,23 @@ msgstr "Não consegui abrir o %s para leitura: %s.\n"
msgid "cannot open Packages database in %s\n"
msgstr "não consigo abrir a base de dados Packages em %s\n"
-#: lib/rpmts.c:319
+#: lib/rpmts.c:320
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "não consigo a base de dados do RPM em %s\n"
+#: lib/rpmts.c:456
+#, fuzzy, c-format
+msgid "Adding: %s\n"
+msgstr "linha: %s\n"
+
+#: lib/rpmts.c:467
+#, fuzzy, c-format
+msgid "Suggesting: %s\n"
+msgstr "A obter o %s\n"
+
#. Get available space on mounted file systems.
-#: lib/rpmts.c:809
+#: lib/rpmts.c:860
msgid "getting list of mounted filesystems\n"
msgstr ""
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 94e3547a4..9a8082a73 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-10 13:48-0400\n"
+"POT-Creation-Date: 2002-08-13 12:17-0400\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8-bit\n"
@@ -1407,19 +1407,19 @@ msgstr "no verifique as dependncias do pacote"
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:261 lib/poptI.c:268
+#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:265 lib/poptI.c:272
#: lib/poptQV.c:329 lib/poptQV.c:338 lib/poptQV.c:377
#, fuzzy
msgid "don't verify package digest(s)"
msgstr "no verifique as dependncias do pacote"
-#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:263 lib/poptI.c:270
+#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:267 lib/poptI.c:274
#: lib/poptQV.c:332 lib/poptQV.c:340 lib/poptQV.c:380
#, fuzzy
msgid "don't verify database header(s) when retrieved"
msgstr "no verifique a arquitetura do pacote"
-#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:265 lib/poptI.c:272
+#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:269 lib/poptI.c:276
#: lib/poptQV.c:335 lib/poptQV.c:342 lib/poptQV.c:382
#, fuzzy
msgid "don't verify package signature(s)"
@@ -1520,70 +1520,70 @@ msgstr "Construo falhou.\n"
msgid "package %s was already added, replacing with %s\n"
msgstr "no foi passado pacote para instalao"
-#: lib/depends.c:391
+#: lib/depends.c:394
msgid "(cached)"
msgstr ""
-#: lib/depends.c:417
+#: lib/depends.c:421
msgid "(rpmrc provides)"
msgstr ""
-#: lib/depends.c:434
+#: lib/depends.c:438
msgid "(rpmlib provides)"
msgstr ""
# , c-format
-#: lib/depends.c:463
+#: lib/depends.c:467
#, fuzzy
msgid "(db files)"
msgstr "No consegui abrir: %s\n"
-#: lib/depends.c:476
+#: lib/depends.c:480
msgid "(db provides)"
msgstr ""
-#: lib/depends.c:489
+#: lib/depends.c:493
#, fuzzy
msgid "(db package)"
msgstr "pesquise todos os pacotes"
-#: lib/depends.c:839
+#: lib/depends.c:851
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
# , c-format
-#: lib/depends.c:961
+#: lib/depends.c:973
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "No consegui abrir: %s\n"
#. Record all relations.
-#: lib/depends.c:1193
+#: lib/depends.c:1207
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1294
+#: lib/depends.c:1308
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1377
+#: lib/depends.c:1391
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1447
+#: lib/depends.c:1461
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1482
+#: lib/depends.c:1496
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1487
+#: lib/depends.c:1501
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1607,7 +1607,7 @@ msgstr ""
#: lib/formats.c:310
#, fuzzy
-msgid "(not a OpenPGP signature"
+msgid "(not an OpenPGP signature)"
msgstr "desconsidere quaisquer assinaturas PGP"
# , c-format
@@ -1867,10 +1867,15 @@ msgid "malformed rollback time/date stamp argument"
msgstr ""
#: lib/poptI.c:152
+#, fuzzy
+msgid "add suggested packages to transaction"
+msgstr "no foi passado pacote para desinstalao"
+
+#: lib/poptI.c:156
msgid "install all files, even configurations which might otherwise be skipped"
msgstr ""
-#: lib/poptI.c:156
+#: lib/poptI.c:160
msgid ""
"remove all packages which match <package> (normally an error is generated if "
"<package> specified multiple packages)"
@@ -1878,149 +1883,149 @@ msgstr ""
"remova todos os pacotes iguais a <pacote> (normalmente um erro gerado se "
"<pacote> especificou mltiplos pacotes)"
-#: lib/poptI.c:162 lib/poptI.c:241 lib/poptI.c:244
+#: lib/poptI.c:166 lib/poptI.c:245 lib/poptI.c:248
#, fuzzy
msgid "do not execute package scriptlet(s)"
msgstr "no execute nenhuma script especfica do pacote"
-#: lib/poptI.c:166
+#: lib/poptI.c:170
#, fuzzy
msgid "relocate files in non-relocateable package"
msgstr "no foi passado pacote para instalao"
-#: lib/poptI.c:169
+#: lib/poptI.c:173
msgid "save erased package files by renaming into sub-directory"
msgstr ""
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "erase (uninstall) package"
msgstr "apague (desinstale) pacote"
-#: lib/poptI.c:172
+#: lib/poptI.c:176
#, fuzzy
msgid "<package>+"
msgstr "pesquise todos os pacotes"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "do not install documentation"
msgstr "no instale documentao"
-#: lib/poptI.c:177
+#: lib/poptI.c:181
msgid "skip files with leading component <path> "
msgstr ""
-#: lib/poptI.c:178
+#: lib/poptI.c:182
msgid "<path>"
msgstr ""
-#: lib/poptI.c:183 lib/poptI.c:186
+#: lib/poptI.c:187 lib/poptI.c:190
msgid "short hand for --replacepkgs --replacefiles"
msgstr "alis para --replacepkgs --replacefiles"
-#: lib/poptI.c:191
+#: lib/poptI.c:195
#, fuzzy
msgid "upgrade package(s) if already installed"
msgstr "no foi passado pacote para instalao"
-#: lib/poptI.c:192 lib/poptI.c:210 lib/poptI.c:213 lib/poptI.c:320
+#: lib/poptI.c:196 lib/poptI.c:214 lib/poptI.c:217 lib/poptI.c:324
#, fuzzy
msgid "<packagefile>+"
msgstr " -b<estgio> <spec> "
-#: lib/poptI.c:194
+#: lib/poptI.c:198
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:197
+#: lib/poptI.c:201
#, fuzzy
msgid "don't verify package architecture"
msgstr "no verifique a arquitetura do pacote"
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr "no verifique o sistema operacional do pacote"
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr ""
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr "instale documentao"
-#: lib/poptI.c:210 lib/poptI.c:213
+#: lib/poptI.c:214 lib/poptI.c:217
#, fuzzy
msgid "install package(s)"
msgstr "instale pacote"
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "update the database, but do not modify the filesystem"
msgstr ""
-#: lib/poptI.c:221 lib/poptI.c:224
+#: lib/poptI.c:225 lib/poptI.c:228
msgid "do not verify package dependencies"
msgstr "no verifique as dependncias do pacote"
-#: lib/poptI.c:228 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:232 lib/poptQV.c:275 lib/poptQV.c:278
#, fuzzy
msgid "don't verify MD5 digest of files"
msgstr "instale pacote"
-#: lib/poptI.c:231
+#: lib/poptI.c:235
#, fuzzy
msgid "do not reorder package installation to satisfy dependencies"
msgstr "no verifique as dependncias do pacote"
-#: lib/poptI.c:236
+#: lib/poptI.c:240
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:248
+#: lib/poptI.c:252
#, fuzzy, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr "no execute nenhum estgio"
-#: lib/poptI.c:251
+#: lib/poptI.c:255
#, fuzzy, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr "no execute nenhum estgio"
-#: lib/poptI.c:254
+#: lib/poptI.c:258
#, fuzzy, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr "no execute nenhum estgio"
-#: lib/poptI.c:257
+#: lib/poptI.c:261
#, fuzzy, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr "no execute nenhum estgio"
-#: lib/poptI.c:276
+#: lib/poptI.c:280
#, fuzzy
msgid "do not execute any scriptlet(s) triggered by this package"
msgstr "pesquise o pacote ao qual <arquivo> pertence"
-#: lib/poptI.c:279
+#: lib/poptI.c:283
#, fuzzy, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr "no execute nenhuma script especfica do pacote"
-#: lib/poptI.c:282
+#: lib/poptI.c:286
#, fuzzy, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr "no execute nenhuma script de instalao"
-#: lib/poptI.c:285
+#: lib/poptI.c:289
#, fuzzy, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr "no execute nenhuma script de instalao"
-#: lib/poptI.c:288
+#: lib/poptI.c:292
#, fuzzy, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr "no execute nenhuma script de instalao"
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
@@ -2028,52 +2033,52 @@ msgstr ""
"atualize para uma verso mais velha do pacote (--force em atualizaes no faz "
"isto automaticamente)"
-#: lib/poptI.c:296
+#: lib/poptI.c:300
msgid "print percentages as package installs"
msgstr "imprima porcentagens a medida que o pacote vai sendo instalado"
-#: lib/poptI.c:298
+#: lib/poptI.c:302
msgid "relocate the package to <dir>, if relocatable"
msgstr "realoque o pacote para <diretrio>, se realocvel"
-#: lib/poptI.c:299
+#: lib/poptI.c:303
msgid "<dir>"
msgstr ""
-#: lib/poptI.c:301
+#: lib/poptI.c:305
msgid "relocate files from path <old> to <new>"
msgstr ""
-#: lib/poptI.c:302
+#: lib/poptI.c:306
#, fuzzy
msgid "<old>=<new>"
msgstr " [--nomd5] [alvos]"
-#: lib/poptI.c:305
+#: lib/poptI.c:309
msgid "save erased package files by repackaging"
msgstr ""
-#: lib/poptI.c:308
+#: lib/poptI.c:312
msgid "install even if the package replaces installed files"
msgstr "instale mesmo que o pacote substitua arquivos j instalados"
-#: lib/poptI.c:311
+#: lib/poptI.c:315
msgid "reinstall if the package is already present"
msgstr "reinstale se o pacote j estiver presente"
-#: lib/poptI.c:313
+#: lib/poptI.c:317
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr ""
-#: lib/poptI.c:314
+#: lib/poptI.c:318
msgid "<date>"
msgstr ""
-#: lib/poptI.c:316
+#: lib/poptI.c:320
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:319
+#: lib/poptI.c:323
#, fuzzy
msgid "upgrade package(s)"
msgstr "instale pacote"
@@ -2367,7 +2372,7 @@ msgstr "No consegui abrir: %s\n"
msgid "%s failed: %s\n"
msgstr "Construo falhou.\n"
-#: lib/query.c:122 lib/rpmts.c:413
+#: lib/query.c:122 lib/rpmts.c:430
#, c-format
msgid "incorrect format: %s\n"
msgstr ""
@@ -2419,8 +2424,9 @@ msgstr "no foi passado pacote para instalao"
msgid "can't query %s: %s\n"
msgstr "No consegui abrir: %s\n"
-#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:422 lib/rpminstall.c:553
-#: lib/rpminstall.c:956 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:123 lib/rpminstall.c:452
+#: lib/rpminstall.c:583 lib/rpminstall.c:986 lib/rpmts.c:441
+#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "Construo falhou.\n"
@@ -2434,7 +2440,7 @@ msgstr ""
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:609 lib/rpminstall.c:566
+#: lib/query.c:609 lib/rpminstall.c:596
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "no foram passados pacotes para assinatura"
@@ -2505,18 +2511,18 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
-#: lib/query.c:907 lib/rpminstall.c:733
+#: lib/query.c:907 lib/rpminstall.c:763
#, fuzzy, c-format
msgid "package %s is not installed\n"
msgstr "no foi passado pacote para instalao"
# , c-format
-#: lib/rpmal.c:696
+#: lib/rpmal.c:697
#, fuzzy
msgid "(added files)"
msgstr "No consegui abrir: %s\n"
-#: lib/rpmal.c:773
+#: lib/rpmal.c:774
msgid "(added provide)"
msgstr ""
@@ -2707,32 +2713,38 @@ msgstr "No consegui abrir: %s\n"
msgid "relocating directory %s to %s\n"
msgstr "No consegui abrir: %s\n"
-#: lib/rpminstall.c:181
+#: lib/rpminstall.c:186
msgid "Preparing..."
msgstr ""
-#: lib/rpminstall.c:183
+#: lib/rpminstall.c:188
#, fuzzy
msgid "Preparing packages for installation..."
msgstr "no foi passado pacote para instalao"
-#: lib/rpminstall.c:201
+#: lib/rpminstall.c:206
msgid "Repackaging..."
msgstr ""
-#: lib/rpminstall.c:203
+#: lib/rpminstall.c:208
msgid "Repackaging erased files..."
msgstr ""
-#: lib/rpminstall.c:222
+#: lib/rpminstall.c:227
msgid "Upgrading..."
msgstr ""
-#: lib/rpminstall.c:224
+#: lib/rpminstall.c:229
#, fuzzy
msgid "Upgrading packages..."
msgstr "instale pacote"
+# , c-format
+#: lib/rpminstall.c:384
+#, fuzzy, c-format
+msgid "Adding goal: %s\n"
+msgstr "No consegui ler o arquivo spec de %s\n"
+
# "Project-Id-Version: rpm-2.5.3\n"
# "PO-Revision-Date: 1997-09-11 14:00 MET DST\n"
# "Last-Translator: Arnaldo Carvalho de Melo <acme@conectiva.com.br>\n"
@@ -2741,86 +2753,86 @@ msgstr "instale pacote"
# "Content-Type: text/plain; charset=ISO-8859-1\n"
# "Content-Transfer-Encoding: 8-bit\n"
# , c-format
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:399
#, 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:382
+#: lib/rpminstall.c:412
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:386
+#: lib/rpminstall.c:416
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:507
#, fuzzy, c-format
msgid "package %s is not relocateable\n"
msgstr "no foi passado pacote para instalao"
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:557
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:563
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:545 lib/rpminstall.c:812 tools/rpmgraph.c:156
+#: lib/rpminstall.c:575 lib/rpminstall.c:842 tools/rpmgraph.c:156
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "no foi passado pacote para instalao"
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:611
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:595 lib/rpminstall.c:761 lib/rpminstall.c:1160
+#: lib/rpminstall.c:625 lib/rpminstall.c:791 lib/rpminstall.c:1190
#: tools/rpmgraph.c:202
#, fuzzy
msgid "Failed dependencies:\n"
msgstr "lista dependncias do pacote"
-#: lib/rpminstall.c:602 tools/rpmgraph.c:208
+#: lib/rpminstall.c:632 tools/rpmgraph.c:208
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:632
+#: lib/rpminstall.c:662
#, fuzzy
msgid "installing binary packages\n"
msgstr "instale pacote"
# , c-format
-#: lib/rpminstall.c:656
+#: lib/rpminstall.c:686
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "No consegui abrir: %s\n"
-#: lib/rpminstall.c:736
+#: lib/rpminstall.c:766
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
# , c-format
-#: lib/rpminstall.c:796
+#: lib/rpminstall.c:826
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "No consegui abrir: %s\n"
-#: lib/rpminstall.c:802
+#: lib/rpminstall.c:832
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpminstall.c:1154
+#: lib/rpminstall.c:1184
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
@@ -3046,13 +3058,32 @@ msgid "cannot open Packages database in %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
-#: lib/rpmts.c:319
+#: lib/rpmts.c:320
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "No consegui abrir: %s\n"
+# , c-format
+#: lib/rpmts.c:456
+#, fuzzy, c-format
+msgid "Adding: %s\n"
+msgstr "No consegui ler o arquivo spec de %s\n"
+
+# "Project-Id-Version: rpm-2.5.3\n"
+# "PO-Revision-Date: 1997-09-11 14:00 MET DST\n"
+# "Last-Translator: Arnaldo Carvalho de Melo <acme@conectiva.com.br>\n"
+# "Language-Team: Portuguese <pt@li.org>\n"
+# "MIME-Version: 1.0\n"
+# "Content-Type: text/plain; charset=ISO-8859-1\n"
+# "Content-Transfer-Encoding: 8-bit\n"
+# , c-format
+#: lib/rpmts.c:467
+#, fuzzy, c-format
+msgid "Suggesting: %s\n"
+msgstr "RPM verso %s\n"
+
#. Get available space on mounted file systems.
-#: lib/rpmts.c:809
+#: lib/rpmts.c:860
msgid "getting list of mounted filesystems\n"
msgstr ""
diff --git a/po/ro.po b/po/ro.po
index 962d3185f..1db8226df 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-10 13:48-0400\n"
+"POT-Creation-Date: 2002-08-13 12:17-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"
@@ -1237,17 +1237,17 @@ msgstr ""
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:261 lib/poptI.c:268
+#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:265 lib/poptI.c:272
#: lib/poptQV.c:329 lib/poptQV.c:338 lib/poptQV.c:377
msgid "don't verify package digest(s)"
msgstr ""
-#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:263 lib/poptI.c:270
+#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:267 lib/poptI.c:274
#: lib/poptQV.c:332 lib/poptQV.c:340 lib/poptQV.c:380
msgid "don't verify database header(s) when retrieved"
msgstr ""
-#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:265 lib/poptI.c:272
+#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:269 lib/poptI.c:276
#: lib/poptQV.c:335 lib/poptQV.c:342 lib/poptQV.c:382
msgid "don't verify package signature(s)"
msgstr ""
@@ -1341,66 +1341,66 @@ msgstr ""
msgid "package %s was already added, replacing with %s\n"
msgstr ""
-#: lib/depends.c:391
+#: lib/depends.c:394
msgid "(cached)"
msgstr ""
-#: lib/depends.c:417
+#: lib/depends.c:421
msgid "(rpmrc provides)"
msgstr ""
-#: lib/depends.c:434
+#: lib/depends.c:438
msgid "(rpmlib provides)"
msgstr ""
-#: lib/depends.c:463
+#: lib/depends.c:467
msgid "(db files)"
msgstr ""
-#: lib/depends.c:476
+#: lib/depends.c:480
msgid "(db provides)"
msgstr ""
-#: lib/depends.c:489
+#: lib/depends.c:493
msgid "(db package)"
msgstr ""
-#: lib/depends.c:839
+#: lib/depends.c:851
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:961
+#: lib/depends.c:973
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
-#: lib/depends.c:1193
+#: lib/depends.c:1207
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1294
+#: lib/depends.c:1308
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1377
+#: lib/depends.c:1391
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1447
+#: lib/depends.c:1461
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1482
+#: lib/depends.c:1496
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1487
+#: lib/depends.c:1501
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1423,7 +1423,7 @@ msgid "(not a blob)"
msgstr ""
#: lib/formats.c:310
-msgid "(not a OpenPGP signature"
+msgid "(not an OpenPGP signature)"
msgstr ""
#: lib/fs.c:77
@@ -1664,198 +1664,202 @@ msgid "malformed rollback time/date stamp argument"
msgstr ""
#: lib/poptI.c:152
-msgid "install all files, even configurations which might otherwise be skipped"
+msgid "add suggested packages to transaction"
msgstr ""
#: lib/poptI.c:156
+msgid "install all files, even configurations which might otherwise be skipped"
+msgstr ""
+
+#: lib/poptI.c:160
msgid ""
"remove all packages which match <package> (normally an error is generated if "
"<package> specified multiple packages)"
msgstr ""
-#: lib/poptI.c:162 lib/poptI.c:241 lib/poptI.c:244
+#: lib/poptI.c:166 lib/poptI.c:245 lib/poptI.c:248
msgid "do not execute package scriptlet(s)"
msgstr ""
-#: lib/poptI.c:166
+#: lib/poptI.c:170
msgid "relocate files in non-relocateable package"
msgstr ""
-#: lib/poptI.c:169
+#: lib/poptI.c:173
msgid "save erased package files by renaming into sub-directory"
msgstr ""
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "erase (uninstall) package"
msgstr ""
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "<package>+"
msgstr ""
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "do not install documentation"
msgstr ""
-#: lib/poptI.c:177
+#: lib/poptI.c:181
msgid "skip files with leading component <path> "
msgstr ""
-#: lib/poptI.c:178
+#: lib/poptI.c:182
msgid "<path>"
msgstr ""
-#: lib/poptI.c:183 lib/poptI.c:186
+#: lib/poptI.c:187 lib/poptI.c:190
msgid "short hand for --replacepkgs --replacefiles"
msgstr ""
-#: lib/poptI.c:191
+#: lib/poptI.c:195
msgid "upgrade package(s) if already installed"
msgstr ""
-#: lib/poptI.c:192 lib/poptI.c:210 lib/poptI.c:213 lib/poptI.c:320
+#: lib/poptI.c:196 lib/poptI.c:214 lib/poptI.c:217 lib/poptI.c:324
msgid "<packagefile>+"
msgstr ""
-#: lib/poptI.c:194
+#: lib/poptI.c:198
msgid "print hash marks as package installs (good with -v)"
msgstr ""
-#: lib/poptI.c:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr ""
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr ""
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr ""
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr ""
-#: lib/poptI.c:210 lib/poptI.c:213
+#: lib/poptI.c:214 lib/poptI.c:217
msgid "install package(s)"
msgstr ""
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "update the database, but do not modify the filesystem"
msgstr ""
-#: lib/poptI.c:221 lib/poptI.c:224
+#: lib/poptI.c:225 lib/poptI.c:228
msgid "do not verify package dependencies"
msgstr ""
-#: lib/poptI.c:228 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:232 lib/poptQV.c:275 lib/poptQV.c:278
msgid "don't verify MD5 digest of files"
msgstr ""
-#: lib/poptI.c:231
+#: lib/poptI.c:235
msgid "do not reorder package installation to satisfy dependencies"
msgstr ""
-#: lib/poptI.c:236
+#: lib/poptI.c:240
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:248
+#: lib/poptI.c:252
#, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:251
+#: lib/poptI.c:255
#, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:254
+#: lib/poptI.c:258
#, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:257
+#: lib/poptI.c:261
#, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:276
+#: lib/poptI.c:280
msgid "do not execute any scriptlet(s) triggered by this package"
msgstr ""
-#: lib/poptI.c:279
+#: lib/poptI.c:283
#, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr ""
-#: lib/poptI.c:282
+#: lib/poptI.c:286
#, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr ""
-#: lib/poptI.c:285
+#: lib/poptI.c:289
#, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr ""
-#: lib/poptI.c:288
+#: lib/poptI.c:292
#, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr ""
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
msgstr ""
-#: lib/poptI.c:296
+#: lib/poptI.c:300
msgid "print percentages as package installs"
msgstr ""
-#: lib/poptI.c:298
+#: lib/poptI.c:302
msgid "relocate the package to <dir>, if relocatable"
msgstr ""
-#: lib/poptI.c:299
+#: lib/poptI.c:303
msgid "<dir>"
msgstr ""
-#: lib/poptI.c:301
+#: lib/poptI.c:305
msgid "relocate files from path <old> to <new>"
msgstr ""
-#: lib/poptI.c:302
+#: lib/poptI.c:306
msgid "<old>=<new>"
msgstr ""
-#: lib/poptI.c:305
+#: lib/poptI.c:309
msgid "save erased package files by repackaging"
msgstr ""
-#: lib/poptI.c:308
+#: lib/poptI.c:312
msgid "install even if the package replaces installed files"
msgstr ""
-#: lib/poptI.c:311
+#: lib/poptI.c:315
msgid "reinstall if the package is already present"
msgstr ""
-#: lib/poptI.c:313
+#: lib/poptI.c:317
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr ""
-#: lib/poptI.c:314
+#: lib/poptI.c:318
msgid "<date>"
msgstr ""
-#: lib/poptI.c:316
+#: lib/poptI.c:320
msgid "don't install, but tell if it would work or not"
msgstr ""
-#: lib/poptI.c:319
+#: lib/poptI.c:323
msgid "upgrade package(s)"
msgstr ""
@@ -2107,7 +2111,7 @@ msgstr ""
msgid "%s failed: %s\n"
msgstr ""
-#: lib/query.c:122 lib/rpmts.c:413
+#: lib/query.c:122 lib/rpmts.c:430
#, c-format
msgid "incorrect format: %s\n"
msgstr ""
@@ -2155,8 +2159,9 @@ msgstr ""
msgid "can't query %s: %s\n"
msgstr ""
-#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:422 lib/rpminstall.c:553
-#: lib/rpminstall.c:956 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:123 lib/rpminstall.c:452
+#: lib/rpminstall.c:583 lib/rpminstall.c:986 lib/rpmts.c:441
+#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@@ -2170,7 +2175,7 @@ msgstr ""
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:609 lib/rpminstall.c:566
+#: lib/query.c:609 lib/rpminstall.c:596
#, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr ""
@@ -2239,16 +2244,16 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
-#: lib/query.c:907 lib/rpminstall.c:733
+#: lib/query.c:907 lib/rpminstall.c:763
#, c-format
msgid "package %s is not installed\n"
msgstr ""
-#: lib/rpmal.c:696
+#: lib/rpmal.c:697
msgid "(added files)"
msgstr ""
-#: lib/rpmal.c:773
+#: lib/rpmal.c:774
msgid "(added provide)"
msgstr ""
@@ -2405,106 +2410,111 @@ msgstr ""
msgid "relocating directory %s to %s\n"
msgstr ""
-#: lib/rpminstall.c:181
+#: lib/rpminstall.c:186
msgid "Preparing..."
msgstr ""
-#: lib/rpminstall.c:183
+#: lib/rpminstall.c:188
msgid "Preparing packages for installation..."
msgstr ""
-#: lib/rpminstall.c:201
+#: lib/rpminstall.c:206
msgid "Repackaging..."
msgstr ""
-#: lib/rpminstall.c:203
+#: lib/rpminstall.c:208
msgid "Repackaging erased files..."
msgstr ""
-#: lib/rpminstall.c:222
+#: lib/rpminstall.c:227
msgid "Upgrading..."
msgstr ""
-#: lib/rpminstall.c:224
+#: lib/rpminstall.c:229
msgid "Upgrading packages..."
msgstr ""
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:384
+#, c-format
+msgid "Adding goal: %s\n"
+msgstr ""
+
+#: lib/rpminstall.c:399
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:382
+#: lib/rpminstall.c:412
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:386
+#: lib/rpminstall.c:416
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:507
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:557
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:563
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:545 lib/rpminstall.c:812 tools/rpmgraph.c:156
+#: lib/rpminstall.c:575 lib/rpminstall.c:842 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:611
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:595 lib/rpminstall.c:761 lib/rpminstall.c:1160
+#: lib/rpminstall.c:625 lib/rpminstall.c:791 lib/rpminstall.c:1190
#: tools/rpmgraph.c:202
msgid "Failed dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:602 tools/rpmgraph.c:208
+#: lib/rpminstall.c:632 tools/rpmgraph.c:208
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:632
+#: lib/rpminstall.c:662
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:656
+#: lib/rpminstall.c:686
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:736
+#: lib/rpminstall.c:766
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:796
+#: lib/rpminstall.c:826
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:802
+#: lib/rpminstall.c:832
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpminstall.c:1154
+#: lib/rpminstall.c:1184
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
@@ -2720,13 +2730,23 @@ msgstr ""
msgid "cannot open Packages database in %s\n"
msgstr ""
-#: lib/rpmts.c:319
+#: lib/rpmts.c:320
#, c-format
msgid "cannot open Solve database in %s\n"
msgstr ""
+#: lib/rpmts.c:456
+#, c-format
+msgid "Adding: %s\n"
+msgstr ""
+
+#: lib/rpmts.c:467
+#, c-format
+msgid "Suggesting: %s\n"
+msgstr ""
+
#. Get available space on mounted file systems.
-#: lib/rpmts.c:809
+#: lib/rpmts.c:860
msgid "getting list of mounted filesystems\n"
msgstr ""
diff --git a/po/rpm.pot b/po/rpm.pot
index fc219a16f..8c2b166ff 100644
--- a/po/rpm.pot
+++ b/po/rpm.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2002-08-10 13:48-0400\n"
+"POT-Creation-Date: 2002-08-13 12:17-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"
@@ -1243,17 +1243,17 @@ msgstr ""
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:261 lib/poptI.c:268
+#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:265 lib/poptI.c:272
#: lib/poptQV.c:329 lib/poptQV.c:338 lib/poptQV.c:377
msgid "don't verify package digest(s)"
msgstr ""
-#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:263 lib/poptI.c:270
+#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:267 lib/poptI.c:274
#: lib/poptQV.c:332 lib/poptQV.c:340 lib/poptQV.c:380
msgid "don't verify database header(s) when retrieved"
msgstr ""
-#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:265 lib/poptI.c:272
+#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:269 lib/poptI.c:276
#: lib/poptQV.c:335 lib/poptQV.c:342 lib/poptQV.c:382
msgid "don't verify package signature(s)"
msgstr ""
@@ -1347,66 +1347,66 @@ msgstr ""
msgid "package %s was already added, replacing with %s\n"
msgstr ""
-#: lib/depends.c:391
+#: lib/depends.c:394
msgid "(cached)"
msgstr ""
-#: lib/depends.c:417
+#: lib/depends.c:421
msgid "(rpmrc provides)"
msgstr ""
-#: lib/depends.c:434
+#: lib/depends.c:438
msgid "(rpmlib provides)"
msgstr ""
-#: lib/depends.c:463
+#: lib/depends.c:467
msgid "(db files)"
msgstr ""
-#: lib/depends.c:476
+#: lib/depends.c:480
msgid "(db provides)"
msgstr ""
-#: lib/depends.c:489
+#: lib/depends.c:493
msgid "(db package)"
msgstr ""
-#: lib/depends.c:839
+#: lib/depends.c:851
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:961
+#: lib/depends.c:973
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
-#: lib/depends.c:1193
+#: lib/depends.c:1207
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1294
+#: lib/depends.c:1308
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1377
+#: lib/depends.c:1391
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1447
+#: lib/depends.c:1461
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1482
+#: lib/depends.c:1496
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1487
+#: lib/depends.c:1501
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1429,7 +1429,7 @@ msgid "(not a blob)"
msgstr ""
#: lib/formats.c:310
-msgid "(not a OpenPGP signature"
+msgid "(not an OpenPGP signature)"
msgstr ""
#: lib/fs.c:77
@@ -1670,198 +1670,202 @@ msgid "malformed rollback time/date stamp argument"
msgstr ""
#: lib/poptI.c:152
-msgid "install all files, even configurations which might otherwise be skipped"
+msgid "add suggested packages to transaction"
msgstr ""
#: lib/poptI.c:156
+msgid "install all files, even configurations which might otherwise be skipped"
+msgstr ""
+
+#: lib/poptI.c:160
msgid ""
"remove all packages which match <package> (normally an error is generated if "
"<package> specified multiple packages)"
msgstr ""
-#: lib/poptI.c:162 lib/poptI.c:241 lib/poptI.c:244
+#: lib/poptI.c:166 lib/poptI.c:245 lib/poptI.c:248
msgid "do not execute package scriptlet(s)"
msgstr ""
-#: lib/poptI.c:166
+#: lib/poptI.c:170
msgid "relocate files in non-relocateable package"
msgstr ""
-#: lib/poptI.c:169
+#: lib/poptI.c:173
msgid "save erased package files by renaming into sub-directory"
msgstr ""
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "erase (uninstall) package"
msgstr ""
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "<package>+"
msgstr ""
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "do not install documentation"
msgstr ""
-#: lib/poptI.c:177
+#: lib/poptI.c:181
msgid "skip files with leading component <path> "
msgstr ""
-#: lib/poptI.c:178
+#: lib/poptI.c:182
msgid "<path>"
msgstr ""
-#: lib/poptI.c:183 lib/poptI.c:186
+#: lib/poptI.c:187 lib/poptI.c:190
msgid "short hand for --replacepkgs --replacefiles"
msgstr ""
-#: lib/poptI.c:191
+#: lib/poptI.c:195
msgid "upgrade package(s) if already installed"
msgstr ""
-#: lib/poptI.c:192 lib/poptI.c:210 lib/poptI.c:213 lib/poptI.c:320
+#: lib/poptI.c:196 lib/poptI.c:214 lib/poptI.c:217 lib/poptI.c:324
msgid "<packagefile>+"
msgstr ""
-#: lib/poptI.c:194
+#: lib/poptI.c:198
msgid "print hash marks as package installs (good with -v)"
msgstr ""
-#: lib/poptI.c:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr ""
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr ""
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr ""
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr ""
-#: lib/poptI.c:210 lib/poptI.c:213
+#: lib/poptI.c:214 lib/poptI.c:217
msgid "install package(s)"
msgstr ""
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "update the database, but do not modify the filesystem"
msgstr ""
-#: lib/poptI.c:221 lib/poptI.c:224
+#: lib/poptI.c:225 lib/poptI.c:228
msgid "do not verify package dependencies"
msgstr ""
-#: lib/poptI.c:228 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:232 lib/poptQV.c:275 lib/poptQV.c:278
msgid "don't verify MD5 digest of files"
msgstr ""
-#: lib/poptI.c:231
+#: lib/poptI.c:235
msgid "do not reorder package installation to satisfy dependencies"
msgstr ""
-#: lib/poptI.c:236
+#: lib/poptI.c:240
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:248
+#: lib/poptI.c:252
#, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:251
+#: lib/poptI.c:255
#, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:254
+#: lib/poptI.c:258
#, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:257
+#: lib/poptI.c:261
#, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr ""
-#: lib/poptI.c:276
+#: lib/poptI.c:280
msgid "do not execute any scriptlet(s) triggered by this package"
msgstr ""
-#: lib/poptI.c:279
+#: lib/poptI.c:283
#, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr ""
-#: lib/poptI.c:282
+#: lib/poptI.c:286
#, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr ""
-#: lib/poptI.c:285
+#: lib/poptI.c:289
#, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr ""
-#: lib/poptI.c:288
+#: lib/poptI.c:292
#, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr ""
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
msgstr ""
-#: lib/poptI.c:296
+#: lib/poptI.c:300
msgid "print percentages as package installs"
msgstr ""
-#: lib/poptI.c:298
+#: lib/poptI.c:302
msgid "relocate the package to <dir>, if relocatable"
msgstr ""
-#: lib/poptI.c:299
+#: lib/poptI.c:303
msgid "<dir>"
msgstr ""
-#: lib/poptI.c:301
+#: lib/poptI.c:305
msgid "relocate files from path <old> to <new>"
msgstr ""
-#: lib/poptI.c:302
+#: lib/poptI.c:306
msgid "<old>=<new>"
msgstr ""
-#: lib/poptI.c:305
+#: lib/poptI.c:309
msgid "save erased package files by repackaging"
msgstr ""
-#: lib/poptI.c:308
+#: lib/poptI.c:312
msgid "install even if the package replaces installed files"
msgstr ""
-#: lib/poptI.c:311
+#: lib/poptI.c:315
msgid "reinstall if the package is already present"
msgstr ""
-#: lib/poptI.c:313
+#: lib/poptI.c:317
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr ""
-#: lib/poptI.c:314
+#: lib/poptI.c:318
msgid "<date>"
msgstr ""
-#: lib/poptI.c:316
+#: lib/poptI.c:320
msgid "don't install, but tell if it would work or not"
msgstr ""
-#: lib/poptI.c:319
+#: lib/poptI.c:323
msgid "upgrade package(s)"
msgstr ""
@@ -2113,7 +2117,7 @@ msgstr ""
msgid "%s failed: %s\n"
msgstr ""
-#: lib/query.c:122 lib/rpmts.c:413
+#: lib/query.c:122 lib/rpmts.c:430
#, c-format
msgid "incorrect format: %s\n"
msgstr ""
@@ -2161,8 +2165,9 @@ msgstr ""
msgid "can't query %s: %s\n"
msgstr ""
-#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:422 lib/rpminstall.c:553
-#: lib/rpminstall.c:956 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:123 lib/rpminstall.c:452
+#: lib/rpminstall.c:583 lib/rpminstall.c:986 lib/rpmts.c:441
+#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@@ -2176,7 +2181,7 @@ msgstr ""
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:609 lib/rpminstall.c:566
+#: lib/query.c:609 lib/rpminstall.c:596
#, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr ""
@@ -2245,16 +2250,16 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
-#: lib/query.c:907 lib/rpminstall.c:733
+#: lib/query.c:907 lib/rpminstall.c:763
#, c-format
msgid "package %s is not installed\n"
msgstr ""
-#: lib/rpmal.c:696
+#: lib/rpmal.c:697
msgid "(added files)"
msgstr ""
-#: lib/rpmal.c:773
+#: lib/rpmal.c:774
msgid "(added provide)"
msgstr ""
@@ -2411,106 +2416,111 @@ msgstr ""
msgid "relocating directory %s to %s\n"
msgstr ""
-#: lib/rpminstall.c:181
+#: lib/rpminstall.c:186
msgid "Preparing..."
msgstr ""
-#: lib/rpminstall.c:183
+#: lib/rpminstall.c:188
msgid "Preparing packages for installation..."
msgstr ""
-#: lib/rpminstall.c:201
+#: lib/rpminstall.c:206
msgid "Repackaging..."
msgstr ""
-#: lib/rpminstall.c:203
+#: lib/rpminstall.c:208
msgid "Repackaging erased files..."
msgstr ""
-#: lib/rpminstall.c:222
+#: lib/rpminstall.c:227
msgid "Upgrading..."
msgstr ""
-#: lib/rpminstall.c:224
+#: lib/rpminstall.c:229
msgid "Upgrading packages..."
msgstr ""
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:384
+#, c-format
+msgid "Adding goal: %s\n"
+msgstr ""
+
+#: lib/rpminstall.c:399
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:382
+#: lib/rpminstall.c:412
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:386
+#: lib/rpminstall.c:416
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:507
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:557
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:563
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:545 lib/rpminstall.c:812 tools/rpmgraph.c:156
+#: lib/rpminstall.c:575 lib/rpminstall.c:842 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:611
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:595 lib/rpminstall.c:761 lib/rpminstall.c:1160
+#: lib/rpminstall.c:625 lib/rpminstall.c:791 lib/rpminstall.c:1190
#: tools/rpmgraph.c:202
msgid "Failed dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:602 tools/rpmgraph.c:208
+#: lib/rpminstall.c:632 tools/rpmgraph.c:208
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:632
+#: lib/rpminstall.c:662
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:656
+#: lib/rpminstall.c:686
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:736
+#: lib/rpminstall.c:766
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:796
+#: lib/rpminstall.c:826
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:802
+#: lib/rpminstall.c:832
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpminstall.c:1154
+#: lib/rpminstall.c:1184
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
@@ -2726,13 +2736,23 @@ msgstr ""
msgid "cannot open Packages database in %s\n"
msgstr ""
-#: lib/rpmts.c:319
+#: lib/rpmts.c:320
#, c-format
msgid "cannot open Solve database in %s\n"
msgstr ""
+#: lib/rpmts.c:456
+#, c-format
+msgid "Adding: %s\n"
+msgstr ""
+
+#: lib/rpmts.c:467
+#, c-format
+msgid "Suggesting: %s\n"
+msgstr ""
+
#. Get available space on mounted file systems.
-#: lib/rpmts.c:809
+#: lib/rpmts.c:860
msgid "getting list of mounted filesystems\n"
msgstr ""
diff --git a/po/ru.po b/po/ru.po
index 430f60ead..1840d9ec9 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-10 13:48-0400\n"
+"POT-Creation-Date: 2002-08-13 12:17-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"
@@ -1276,19 +1276,19 @@ msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
"ÓÏÚÄÁÔØ ÚÁÇÏÌÏ×ÏË(ËÉ) ĞÁËÅÔÁ, ÓÏ×ÍÅÓÔÉÍÙÅ Ó (ÕÓÔÁÒÅ×ÛÉÍÉ) ÆÏÒÍÁÔÁÍÉ rpm[23]"
-#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:261 lib/poptI.c:268
+#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:265 lib/poptI.c:272
#: lib/poptQV.c:329 lib/poptQV.c:338 lib/poptQV.c:377
#, fuzzy
msgid "don't verify package digest(s)"
msgstr "ÎÅ ĞÒÏ×ÅÒÑÔØ ÚÁ×ÉÓÉÍÏÓÔÉ ĞÁËÅÔÁ"
-#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:263 lib/poptI.c:270
+#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:267 lib/poptI.c:274
#: lib/poptQV.c:332 lib/poptQV.c:340 lib/poptQV.c:380
#, fuzzy
msgid "don't verify database header(s) when retrieved"
msgstr "ÎÅ ĞÒÏ×ÅÒÑÔØ ÁÒÈÉÔÅËÔÕÒÕ ĞÁËÅÔÁ"
-#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:265 lib/poptI.c:272
+#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:269 lib/poptI.c:276
#: lib/poptQV.c:335 lib/poptQV.c:342 lib/poptQV.c:382
#, fuzzy
msgid "don't verify package signature(s)"
@@ -1383,52 +1383,52 @@ msgstr "ÎÅ ÕÄÁÌÏÓØ - "
msgid "package %s was already added, replacing with %s\n"
msgstr "ĞÁËÅÔ %s ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ"
-#: lib/depends.c:391
+#: lib/depends.c:394
msgid "(cached)"
msgstr ""
-#: lib/depends.c:417
+#: lib/depends.c:421
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %-45s YES (rpmrc provides)\n"
-#: lib/depends.c:434
+#: lib/depends.c:438
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %-45s YES (rpmlib provides)\n"
-#: lib/depends.c:463
+#: lib/depends.c:467
#, fuzzy
msgid "(db files)"
msgstr "ÎÅ×ÅÒÎÙÊ ÆÁÊÌ ÂÁÚÙ ÄÁÎÎÙÈ %s\n"
-#: lib/depends.c:476
+#: lib/depends.c:480
#, fuzzy
msgid "(db provides)"
msgstr "%s: %-45s YES (db provides)\n"
-#: lib/depends.c:489
+#: lib/depends.c:493
#, fuzzy
msgid "(db package)"
msgstr "ÎÅÔ ĞÁËÅÔÏ×\n"
-#: lib/depends.c:839
+#: lib/depends.c:851
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:961
+#: lib/depends.c:973
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "ÕÄÁÌÑÅÔÓÑ %s-%s-%s \"%s\" ÉÚ ÕĞÏÒÑÄÏŞÅÎÎÙÈ ÚÁ×ÉÓÉÍÏÓÔÅÊ.\n"
#. Record all relations.
-#: lib/depends.c:1193
+#: lib/depends.c:1207
msgid "========== recording tsort relations\n"
msgstr "========== ÚÁĞÉÓØ ÕĞÏÒÑÄÏŞÅÎÎÙÈ ÚÁ×ÉÓÉÍÏÓÔÅÊ\n"
#. T4. Scan for zeroes.
-#: lib/depends.c:1294
+#: lib/depends.c:1308
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
@@ -1436,20 +1436,20 @@ msgstr ""
"========== ÓÏÒÔÉÒÏ×ËÁ ĞÁËÅÔÏ× (ÏŞÅÒÅÄÎÏÓÔØ, #predecessors, #succesors, "
"ÄÅÒÅ×Ï, ÇÌÕÂÉÎÁ)\n"
-#: lib/depends.c:1377
+#: lib/depends.c:1391
msgid "========== successors only (presentation order)\n"
msgstr "========== ÔÏÌØËÏ ĞÏÓÌÅÄÏ×ÁÔÅÌÉ (× ĞÏÒÑÄËÅ ĞÒÅÄÓÔÁ×ÌÅÎÉÑ)\n"
-#: lib/depends.c:1447
+#: lib/depends.c:1461
msgid "LOOP:\n"
msgstr "ãéëì:\n"
-#: lib/depends.c:1482
+#: lib/depends.c:1496
msgid "========== continuing tsort ...\n"
msgstr "========== ĞÒÏÄÏÌÖÅÎÉÅ ÕĞÏÒÑÄÏŞÅÎÉÑ ...\n"
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1487
+#: lib/depends.c:1501
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1473,7 +1473,7 @@ msgstr ""
#: lib/formats.c:310
#, fuzzy
-msgid "(not a OpenPGP signature"
+msgid "(not an OpenPGP signature)"
msgstr "ĞÒÏĞÕÓÔÉÔØ ×ÓÅ PGP-ĞÏÄĞÉÓÉ"
#: lib/fs.c:77
@@ -1721,12 +1721,17 @@ msgid "malformed rollback time/date stamp argument"
msgstr "ÎÅĞÒÁ×ÉÌØÎÙÊ ÆÏÒÍÁÔ ×ÒÅÍÅÎÉ ÏÔËÁÔÁ"
#: lib/poptI.c:152
+#, fuzzy
+msgid "add suggested packages to transaction"
+msgstr "ÚÁĞÒÏÓÉÔØ/ĞÒÏ×ÅÒÉÔØ ĞÁËÅÔ(Ù) ÉÚ ÔÒÁÎÚÁËÃÉÉ ÕÓÔÁÎÏ×ËÉ"
+
+#: lib/poptI.c:156
msgid "install all files, even configurations which might otherwise be skipped"
msgstr ""
"ÕÓÔÁÎÁ×ÌÉ×ÁÔØ ×ÓÅ ÆÁÊÌÙ, ÄÁÖÅ ËÏÎÆÉÇÕÒÁÃÉÏÎÎÙÅ, ËÏÔÏÒÙÅ ÍÏÇÌÉ ÂÙ ÂÙÔØ "
"ĞÒÏĞÕİÅÎÙ"
-#: lib/poptI.c:156
+#: lib/poptI.c:160
msgid ""
"remove all packages which match <package> (normally an error is generated if "
"<package> specified multiple packages)"
@@ -1734,140 +1739,140 @@ msgstr ""
"ÕÄÁÌÉÔØ ×ÓÅ ĞÁËÅÔÙ, ÓÏ×ĞÁÄÁÀİÉÅ Ó <ĞÁËÅÔ> (ÏÂÙŞÎÏ, ÅÓÌÉ <ĞÁËÅÔ> "
"ÓÏÏÔ×ÅÔÓÔ×ÕÅÔ ÎÅÓËÏÌØËÉÍ ĞÁËÅÔÁÍ, ÇÅÎÅÒÉÒÕÅÔÓÑ ÏÛÉÂËÁ)"
-#: lib/poptI.c:162 lib/poptI.c:241 lib/poptI.c:244
+#: lib/poptI.c:166 lib/poptI.c:245 lib/poptI.c:248
msgid "do not execute package scriptlet(s)"
msgstr "ÎÅ ÉÓĞÏÌÎÑÔØ ÎÉËÁËÉÈ ÓÃÅÎÁÒÉÅ× ĞÁËÅÔÁ(Ï×)"
-#: lib/poptI.c:166
+#: lib/poptI.c:170
msgid "relocate files in non-relocateable package"
msgstr "ĞÅÒÅÍÅÓÔÉÔØ ÆÁÊÌÙ × ÎÅĞÅÒÅÍÅİÁÅÍÏÍ ĞÁËÅÔÅ"
-#: lib/poptI.c:169
+#: lib/poptI.c:173
msgid "save erased package files by renaming into sub-directory"
msgstr "ÓÏÈÒÁÎÉÔØ × ĞÏÄËÁÔÁÌÏÇÅ ĞÏÄÌÅÖÁİÉÅ ÕÄÁÌÅÎÉÀ ÆÁÊÌÙ ĞÁËÅÔÁ"
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "erase (uninstall) package"
msgstr "ÕÄÁÌÉÔØ (ÄÅÉÎÓÔÁÌÌÉÒÏ×ÁÔØ) ĞÁËÅÔ"
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "<package>+"
msgstr "<ĞÁËÅÔ>+"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "do not install documentation"
msgstr "ÎÅ ÕÓÔÁÎÁ×ÌÉ×ÁÔØ ÄÏËÕÍÅÎÔÁÃÉÀ"
-#: lib/poptI.c:177
+#: lib/poptI.c:181
msgid "skip files with leading component <path> "
msgstr "ĞÒÏĞÕÓÔÉÔØ ÆÁÊÌÙ × ĞÕÔÉ <ĞÕÔØ>"
-#: lib/poptI.c:178
+#: lib/poptI.c:182
msgid "<path>"
msgstr "<ĞÕÔØ>"
-#: lib/poptI.c:183 lib/poptI.c:186
+#: lib/poptI.c:187 lib/poptI.c:190
msgid "short hand for --replacepkgs --replacefiles"
msgstr "ÓÏËÒÁİÅÎÉÅ ÄÌÑ --replacepkgs --replacefiles"
-#: lib/poptI.c:191
+#: lib/poptI.c:195
msgid "upgrade package(s) if already installed"
msgstr "ÏÂÎÏ×ÉÔØ ĞÁËÅÔ(Ù) ÅÓÌÉ ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ"
-#: lib/poptI.c:192 lib/poptI.c:210 lib/poptI.c:213 lib/poptI.c:320
+#: lib/poptI.c:196 lib/poptI.c:214 lib/poptI.c:217 lib/poptI.c:324
msgid "<packagefile>+"
msgstr "<ÆÁÊÌ ĞÁËÅÔÁ>+"
-#: lib/poptI.c:194
+#: lib/poptI.c:198
msgid "print hash marks as package installs (good with -v)"
msgstr "×Ù×ÏÄÉÔØ \"#\" ĞÏ ÍÅÒÅ ÕÓÔÁÎÏ×ËÉ ĞÁËÅÔÁ (ÈÏÒÏÛÏ Ó -v)"
-#: lib/poptI.c:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr "ÎÅ ĞÒÏ×ÅÒÑÔØ ÁÒÈÉÔÅËÔÕÒÕ ĞÁËÅÔÁ"
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr "ÎÅ ĞÒÏ×ÅÒÑÔØ ÏĞÅÒÁÃÉÏÎÎÕÀ ÓÉÓÔÅÍÕ ĞÁËÅÔÁ"
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr "ÎÅ ĞÒÏ×ÅÒÑÔØ ÄÉÓËÏ×ÏÅ ĞÒÏÓÔÒÁÎÓÔ×Ï ĞÅÒÅÄ ÕÓÔÁÎÏ×ËÏÊ"
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr "ÕÓÔÁÎÏ×ÉÔØ ÄÏËÕÍÅÎÔÁÃÉÀ"
-#: lib/poptI.c:210 lib/poptI.c:213
+#: lib/poptI.c:214 lib/poptI.c:217
#, fuzzy
msgid "install package(s)"
msgstr "ÕÓÔÁÎÏ×ÉÔØ ĞÁËÅÔ"
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "update the database, but do not modify the filesystem"
msgstr "ÏÂÎÏ×ÉÔØ ÂÁÚÕ ÄÁÎÎÙÈ, ÎÏ ÎÅ ÍÏÄÉÆÉÃÉÒÏ×ÁÔØ ÆÁÊÌÏ×ÕÀ ÓÉÓÔÅÍÕ"
-#: lib/poptI.c:221 lib/poptI.c:224
+#: lib/poptI.c:225 lib/poptI.c:228
msgid "do not verify package dependencies"
msgstr "ÎÅ ĞÒÏ×ÅÒÑÔØ ÚÁ×ÉÓÉÍÏÓÔÉ ĞÁËÅÔÁ"
-#: lib/poptI.c:228 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:232 lib/poptQV.c:275 lib/poptQV.c:278
msgid "don't verify MD5 digest of files"
msgstr "ÎÅ ĞÒÏ×ÅÒÑÔØ ÆÁÊÌÙ ÎÁ ËÏÎÔÒÏÌØÎÕÀ ÓÕÍÍÕ MD5"
-#: lib/poptI.c:231
+#: lib/poptI.c:235
msgid "do not reorder package installation to satisfy dependencies"
msgstr "ÎÅ ÍÅÎÑÔØ ĞÏÒÑÄÏË ÕÓÔÁÎÏ×ËÉ ĞÁËÅÔÏ× ÄÌÑ ÕÄÏ×ÌÅÔ×ÏÒÅÎÉÑ ÚÁ×ÉÓÉÍÏÓÔÅÊ"
-#: lib/poptI.c:236
+#: lib/poptI.c:240
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:248
+#: lib/poptI.c:252
#, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr "ÎÅ ÉÓĞÏÌÎÑÔØ %%pre ÓÃÅÎÁÒÉÅ× (ÅÓÌÉ ÅÓÔØ)"
-#: lib/poptI.c:251
+#: lib/poptI.c:255
#, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr "ÎÅ ÉÓĞÏÌÎÑÔØ %%post ÓÃÅÎÁÒÉÅ× (ÅÓÌÉ ÅÓÔØ)"
-#: lib/poptI.c:254
+#: lib/poptI.c:258
#, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr "ÎÅ ÉÓĞÏÌÎÑÔØ %%preun ÓÃÅÎÁÒÉÅ× (ÅÓÌÉ ÅÓÔØ)"
-#: lib/poptI.c:257
+#: lib/poptI.c:261
#, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr "ÎÅ ÉÓĞÏÌÎÑÔØ %%postun ÓÃÅÎÁÒÉÅ× (ÅÓÌÉ ÅÓÔØ)"
-#: lib/poptI.c:276
+#: lib/poptI.c:280
msgid "do not execute any scriptlet(s) triggered by this package"
msgstr "ÎÅ ÉÓĞÏÌÎÑÔØ ÔÒÉÇÇÅÒ-ÓÃÅÎÁÒÉÅ×, ×Ú×ÅÄÅÎÎÙÈ ÜÔÉÍ ĞÁËÅÔÏÍ"
-#: lib/poptI.c:279
+#: lib/poptI.c:283
#, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr "ÎÅ ÉÓĞÏÌÎÑÔØ %%triggerprein ÓÃÅÎÁÒÉÅ×"
-#: lib/poptI.c:282
+#: lib/poptI.c:286
#, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr "ÎÅ ÉÓĞÏÌÎÑÔØ %%triggerin ÓÃÅÎÁÒÉÅ×"
-#: lib/poptI.c:285
+#: lib/poptI.c:289
#, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr "ÎÅ ÉÓĞÏÌÎÑÔØ %%triggerun ÓÃÅÎÁÒÉÅ×"
-#: lib/poptI.c:288
+#: lib/poptI.c:292
#, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr "ÎÅ ÉÓĞÏÌÎÑÔØ %%triggerpostun ÓÃÅÎÁÒÉÅ×"
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
@@ -1875,53 +1880,53 @@ msgstr ""
"ÏÔËÁÔ ÎÁ ÂÏÌÅÅ ÓÔÁÒÕÀ ×ÅÒÓÉÀ ĞÁËÅÔÁ (--force ĞÒÉ ÏÂÎÏ×ÌÅÎÉÉ ÄÅÌÁÅÔ ÜÔÏ "
"Á×ÔÏÍÁÔÉŞÅÓËÉ)"
-#: lib/poptI.c:296
+#: lib/poptI.c:300
msgid "print percentages as package installs"
msgstr "×Ù×ÏÄÉÔØ ĞÒÏÃÅÎÔ ÇÏÔÏ×ÎÏÓÔÉ ĞÏ ÍÅÒÅ ÕÓÔÁÎÏ×ËÉ ĞÁËÅÔÁ"
-#: lib/poptI.c:298
+#: lib/poptI.c:302
msgid "relocate the package to <dir>, if relocatable"
msgstr "ĞÅÒÅÍÅÓÔÉÔØ ĞÁËÅÔ × <ËÁÔÁÌÏÇ>, ÅÓÌÉ ĞÁËÅÔ ÜÔÏ ĞÏÚ×ÏÌÑÅÔ"
-#: lib/poptI.c:299
+#: lib/poptI.c:303
msgid "<dir>"
msgstr "<ËÁÔÁÌÏÇ>"
-#: lib/poptI.c:301
+#: lib/poptI.c:305
msgid "relocate files from path <old> to <new>"
msgstr "ĞÅÒÅÍÅÓÔÉÔØ ÆÁÊÌÙ ÉÚ ĞÕÔÉ <old> × <new>"
-#: lib/poptI.c:302
+#: lib/poptI.c:306
msgid "<old>=<new>"
msgstr "<old>=<new>"
-#: lib/poptI.c:305
+#: lib/poptI.c:309
msgid "save erased package files by repackaging"
msgstr "ÓÏÈÒÁÎÉÔØ ĞÏÄÌÅÖÁİÉÅ ÕÄÁÌÅÎÉÀ ÆÁÊÌÙ × ÎÏ×ÏÍ ĞÁËÅÔÅ"
-#: lib/poptI.c:308
+#: lib/poptI.c:312
msgid "install even if the package replaces installed files"
msgstr "ÕÓÔÁÎÁ×ÌÉ×ÁÔØ, ÄÁÖÅ ÅÓÌÉ ĞÁËÅÔ ĞÅÒÅĞÉÛÅÔ ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎÎÙÅ ÆÁÊÌÙ"
-#: lib/poptI.c:311
+#: lib/poptI.c:315
msgid "reinstall if the package is already present"
msgstr "ĞÅÒÅÕÓÔÁÎÏ×ÉÔØ, ÅÓÌÉ ĞÁËÅÔ ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ"
-#: lib/poptI.c:313
+#: lib/poptI.c:317
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr ""
"ÕÄÁÌÉÔØ ÎÏ×ÙÊ(Å) ĞÁËÅÔ(Ù), ĞÅÒÅÕÓÔÁÎÏ×ÉÔØ ÓÔÁÒÙÊ(Å) ĞÁËÅÔ(Ù), ÏÂÒÁÔÎÏ ÎÁ "
"ÕËÁÚÁÎÎÕÀ ÄÁÔÕ"
-#: lib/poptI.c:314
+#: lib/poptI.c:318
msgid "<date>"
msgstr "<ÄÁÔÁ>"
-#: lib/poptI.c:316
+#: lib/poptI.c:320
msgid "don't install, but tell if it would work or not"
msgstr "ÎÅ ÕÓÔÁÎÁ×ÌÉ×ÁÔØ, Á ÔÏÌØËÏ ÓÏÏÂİÉÔØ, ÕÄÁÓÔÓÑ ÌÉ ÕÓÔÁÎÏ×ËÁ"
-#: lib/poptI.c:319
+#: lib/poptI.c:323
msgid "upgrade package(s)"
msgstr "ÏÂÎÏ×ÉÔØ ĞÁËÅÔ(Ù)"
@@ -2183,7 +2188,7 @@ msgstr "%s ÏÛÉÂËÁ ÎÁ ÆÁÊÌÅ %s: %s\n"
msgid "%s failed: %s\n"
msgstr "%s ÎÅ ÕÄÁÌÏÓØ: %s\n"
-#: lib/query.c:122 lib/rpmts.c:413
+#: lib/query.c:122 lib/rpmts.c:430
#, c-format
msgid "incorrect format: %s\n"
msgstr "ÏÛÉÂËÁ × ÆÏÒÍÁÔÅ: %s\n"
@@ -2232,8 +2237,9 @@ msgstr "ĞÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÓĞÉÓËÏ× ÎÉ ÈÏÚÑÅ× ÆÁÊÌÏ×, ÎÉ ÉÈ ID\n"
msgid "can't query %s: %s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÚÁĞÒÏÓÉÔØ %s: %s\n"
-#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:422 lib/rpminstall.c:553
-#: lib/rpminstall.c:956 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:123 lib/rpminstall.c:452
+#: lib/rpminstall.c:583 lib/rpminstall.c:986 lib/rpmts.c:441
+#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
@@ -2247,7 +2253,7 @@ msgstr "ÏÛÉÂËÁ ÚÁĞÒÏÓÁ %s\n"
msgid "old format source packages cannot be queried\n"
msgstr "ÚÁĞÒÏÓÙ Ë ÉÓÈÏÄÎÙÍ ĞÁËÅÔÁÍ × ÓÔÁÒÏÍ ÆÏÒÍÁÔÅ ÎÅ ĞÏÄÄÅÒÖÉ×ÁÀÔÓÑ\n"
-#: lib/query.c:609 lib/rpminstall.c:566
+#: lib/query.c:609 lib/rpminstall.c:596
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "ÎÉ ÏÄÉÎ ĞÁËÅÔ ÎÅ ĞÏÄÈÏÄÉÔ Ë %s: %s\n"
@@ -2316,17 +2322,17 @@ msgstr "ÎÏÍÅÒ ÚÁĞÉÓÉ ĞÁËÅÔÁ: %u\n"
msgid "record %u could not be read\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ĞÒÏŞÉÔÁÔØ ÚÁĞÉÓØ %u\n"
-#: lib/query.c:907 lib/rpminstall.c:733
+#: lib/query.c:907 lib/rpminstall.c:763
#, c-format
msgid "package %s is not installed\n"
msgstr "ĞÁËÅÔ %s ÎÅ ÕÓÔÁÎÏ×ÌÅÎ\n"
-#: lib/rpmal.c:696
+#: lib/rpmal.c:697
#, fuzzy
msgid "(added files)"
msgstr "ÎÅ×ÅÒÎÙÊ ÆÁÊÌ ÂÁÚÙ ÄÁÎÎÙÈ %s\n"
-#: lib/rpmal.c:773
+#: lib/rpmal.c:774
#, fuzzy
msgid "(added provide)"
msgstr "%s: %-45s YES (added provide)\n"
@@ -2486,110 +2492,115 @@ msgstr "ĞÅÒÅÍÅİÁÅÔÓÑ %s × %s\n"
msgid "relocating directory %s to %s\n"
msgstr "ĞÅÒÅÍÅİÁÅÔÓÑ ËÁÔÁÌÏÇ %s × %s\n"
-#: lib/rpminstall.c:181
+#: lib/rpminstall.c:186
msgid "Preparing..."
msgstr "ğÏÄÇÏÔÏ×ËÁ..."
-#: lib/rpminstall.c:183
+#: lib/rpminstall.c:188
msgid "Preparing packages for installation..."
msgstr "ğÏÄÇÏÔÏ×ËÁ ĞÁËÅÔÏ× ÄÌÑ ÕÓÔÁÎÏ×ËÉ..."
-#: lib/rpminstall.c:201
+#: lib/rpminstall.c:206
#, fuzzy
msgid "Repackaging..."
msgstr "ğÏÄÇÏÔÏ×ËÁ..."
-#: lib/rpminstall.c:203
+#: lib/rpminstall.c:208
msgid "Repackaging erased files..."
msgstr ""
-#: lib/rpminstall.c:222
+#: lib/rpminstall.c:227
#, fuzzy
msgid "Upgrading..."
msgstr "ğÏÄÇÏÔÏ×ËÁ..."
-#: lib/rpminstall.c:224
+#: lib/rpminstall.c:229
#, fuzzy
msgid "Upgrading packages..."
msgstr "ÏÂÎÏ×ÉÔØ ĞÁËÅÔ(Ù)"
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:384
+#, fuzzy, c-format
+msgid "Adding goal: %s\n"
+msgstr "ğÏÉÓË %s (ÉÓĞÏÌØÚÕÑ %s): ...\n"
+
+#: lib/rpminstall.c:399
#, c-format
msgid "Retrieving %s\n"
msgstr "úÁÇÒÕÖÁÅÔÓÑ %s\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:382
+#: lib/rpminstall.c:412
#, c-format
msgid " ... as %s\n"
msgstr " ... ËÁË %s\n"
-#: lib/rpminstall.c:386
+#: lib/rpminstall.c:416
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "%s ĞÒÏĞÕÓËÁÅÔÓÑ - ÏÛÉÂËÁ ĞÅÒÅÄÁŞÉ - %s\n"
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:507
#, c-format
msgid "package %s is not relocateable\n"
msgstr "ĞÁËÅÔ %s - ÎÅ ĞÅÒÅÍÅİÁÅÍÙÊ\n"
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:557
#, c-format
msgid "error reading from file %s\n"
msgstr "ÏÛÉÂËÁ ŞÔÅÎÉÑ ÉÚ ÆÁÊÌÁ %s\n"
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:563
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr "ÄÌÑ ÆÁÊÌÁ %s ÎÅÏÂÈÏÄÉÍÁ ÂÏÌÅÅ ÎÏ×ÁÑ ×ÅÒÓÉÑ RPM\n"
-#: lib/rpminstall.c:545 lib/rpminstall.c:812 tools/rpmgraph.c:156
+#: lib/rpminstall.c:575 lib/rpminstall.c:842 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s ÎÅ ÍÏÖÅÔ ÂÙÔØ ÕÓÔÁÎÏ×ÌÅÎ\n"
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:611
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr "ÎÁÊÄÅÎÏ %d ÉÓÈÏÄÎÙÈ É %d ÂÉÎÁÒÎÙÈ ĞÁËÅÔÏ×\n"
-#: lib/rpminstall.c:595 lib/rpminstall.c:761 lib/rpminstall.c:1160
+#: lib/rpminstall.c:625 lib/rpminstall.c:791 lib/rpminstall.c:1190
#: tools/rpmgraph.c:202
#, fuzzy
msgid "Failed dependencies:\n"
msgstr "ÎÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ:\n"
-#: lib/rpminstall.c:602 tools/rpmgraph.c:208
+#: lib/rpminstall.c:632 tools/rpmgraph.c:208
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:632
+#: lib/rpminstall.c:662
msgid "installing binary packages\n"
msgstr "ÕÓÔÁÎÁ×ÌÉ×ÁÀ ÂÉÎÁÒÎÙÅ ĞÁËÅÔÙ\n"
-#: lib/rpminstall.c:656
+#: lib/rpminstall.c:686
#, c-format
msgid "cannot open file %s: %s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ %s: %s\n"
-#: lib/rpminstall.c:736
+#: lib/rpminstall.c:766
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" ÚÁÄÁÅÔ ÎÅÓËÏÌØËÏ ĞÁËÅÔÏ×\n"
-#: lib/rpminstall.c:796
+#: lib/rpminstall.c:826
#, c-format
msgid "cannot open %s: %s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
-#: lib/rpminstall.c:802
+#: lib/rpminstall.c:832
#, c-format
msgid "Installing %s\n"
msgstr "õÓÔÁÎÁ×ÌÉ×ÁÅÔÓÑ %s\n"
-#: lib/rpminstall.c:1154
+#: lib/rpminstall.c:1184
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
@@ -2807,13 +2818,23 @@ msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s ÄÌÑ ŞÔÅÎÉÑ: %s.\n"
msgid "cannot open Packages database in %s\n"
msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ ÂÁÚÕ ÄÁÎÎÙÈ Packages × %s\n"
-#: lib/rpmts.c:319
+#: lib/rpmts.c:320
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÂÁÚÕ ÄÁÎÎÙÈ RPM × %s\n"
+#: lib/rpmts.c:456
+#, fuzzy, c-format
+msgid "Adding: %s\n"
+msgstr "ÓÔÒÏËÁ: %s\n"
+
+#: lib/rpmts.c:467
+#, fuzzy, c-format
+msgid "Suggesting: %s\n"
+msgstr "úÁÇÒÕÖÁÅÔÓÑ %s\n"
+
#. Get available space on mounted file systems.
-#: lib/rpmts.c:809
+#: lib/rpmts.c:860
msgid "getting list of mounted filesystems\n"
msgstr ""
diff --git a/po/sk.po b/po/sk.po
index c0e03b88e..497a2393e 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-10 13:48-0400\n"
+"POT-Creation-Date: 2002-08-13 12:17-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"
@@ -1290,19 +1290,19 @@ msgstr "neoverova» závislosti balíka"
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:261 lib/poptI.c:268
+#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:265 lib/poptI.c:272
#: lib/poptQV.c:329 lib/poptQV.c:338 lib/poptQV.c:377
#, fuzzy
msgid "don't verify package digest(s)"
msgstr "neoverova» závislosti balíka"
-#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:263 lib/poptI.c:270
+#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:267 lib/poptI.c:274
#: lib/poptQV.c:332 lib/poptQV.c:340 lib/poptQV.c:380
#, fuzzy
msgid "don't verify database header(s) when retrieved"
msgstr "neoverova» architektúru balíka"
-#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:265 lib/poptI.c:272
+#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:269 lib/poptI.c:276
#: lib/poptQV.c:335 lib/poptQV.c:342 lib/poptQV.c:382
#, fuzzy
msgid "don't verify package signature(s)"
@@ -1402,70 +1402,70 @@ msgstr " zlyhalo - "
msgid "package %s was already added, replacing with %s\n"
msgstr "balík %s nie je nain¹talovanı\n"
-#: lib/depends.c:391
+#: lib/depends.c:394
msgid "(cached)"
msgstr ""
-#: lib/depends.c:417
+#: lib/depends.c:421
msgid "(rpmrc provides)"
msgstr ""
-#: lib/depends.c:434
+#: lib/depends.c:438
#, fuzzy
msgid "(rpmlib provides)"
msgstr "súbor %s nie je vlastnenı ¾iadnym balíkom\n"
-#: lib/depends.c:463
+#: lib/depends.c:467
#, fuzzy
msgid "(db files)"
msgstr "chybnı stav súboru: %s"
-#: lib/depends.c:476
+#: lib/depends.c:480
#, fuzzy
msgid "(db provides)"
msgstr "Poskytuje:"
-#: lib/depends.c:489
+#: lib/depends.c:493
#, fuzzy
msgid "(db package)"
msgstr "nájdenıch %d balíkov\n"
-#: lib/depends.c:839
+#: lib/depends.c:851
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:961
+#: lib/depends.c:973
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "odstraòuje sa index skupín\n"
#. Record all relations.
-#: lib/depends.c:1193
+#: lib/depends.c:1207
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1294
+#: lib/depends.c:1308
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1377
+#: lib/depends.c:1391
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1447
+#: lib/depends.c:1461
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1482
+#: lib/depends.c:1496
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1487
+#: lib/depends.c:1501
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1491,7 +1491,7 @@ msgstr "(nie je èíslo)"
#: lib/formats.c:310
#, fuzzy
-msgid "(not a OpenPGP signature"
+msgid "(not an OpenPGP signature)"
msgstr "vynecha» akékoµvek PGP podpisy"
#: lib/fs.c:77
@@ -1739,12 +1739,17 @@ msgid "malformed rollback time/date stamp argument"
msgstr ""
#: lib/poptI.c:152
+#, fuzzy
+msgid "add suggested packages to transaction"
+msgstr "opıta» sa v¹etkıch balíkov v skupine"
+
+#: lib/poptI.c:156
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:156
+#: lib/poptI.c:160
msgid ""
"remove all packages which match <package> (normally an error is generated if "
"<package> specified multiple packages)"
@@ -1752,148 +1757,148 @@ msgstr ""
"odin¹talova» v¹etky balíky urèené <balíkom> (inak je chybou, pokiaµ <balík> "
"¹pecifikuje viac ako jeden balík)"
-#: lib/poptI.c:162 lib/poptI.c:241 lib/poptI.c:244
+#: lib/poptI.c:166 lib/poptI.c:245 lib/poptI.c:248
#, fuzzy
msgid "do not execute package scriptlet(s)"
msgstr "nevykona» ¾iadne skripty ¹pecifikované balíkom"
-#: lib/poptI.c:166
+#: lib/poptI.c:170
#, fuzzy
msgid "relocate files in non-relocateable package"
msgstr "balík %s nie je nain¹talovanı\n"
-#: lib/poptI.c:169
+#: lib/poptI.c:173
msgid "save erased package files by renaming into sub-directory"
msgstr ""
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "erase (uninstall) package"
msgstr "odin¹talova» balík"
-#: lib/poptI.c:172
+#: lib/poptI.c:176
#, fuzzy
msgid "<package>+"
msgstr "nájdenıch %d balíkov\n"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "do not install documentation"
msgstr "nein¹talova» dokumentáciu"
-#: lib/poptI.c:177
+#: lib/poptI.c:181
#, fuzzy
msgid "skip files with leading component <path> "
msgstr "vynecha» súbory v ceste <cesta>"
-#: lib/poptI.c:178
+#: lib/poptI.c:182
msgid "<path>"
msgstr ""
-#: lib/poptI.c:183 lib/poptI.c:186
+#: lib/poptI.c:187 lib/poptI.c:190
msgid "short hand for --replacepkgs --replacefiles"
msgstr "skratka pre --replacepkgs --replacefiles"
-#: lib/poptI.c:191
+#: lib/poptI.c:195
#, fuzzy
msgid "upgrade package(s) if already installed"
msgstr "balík %s nie je nain¹talovanı\n"
-#: lib/poptI.c:192 lib/poptI.c:210 lib/poptI.c:213 lib/poptI.c:320
+#: lib/poptI.c:196 lib/poptI.c:214 lib/poptI.c:217 lib/poptI.c:324
#, fuzzy
msgid "<packagefile>+"
msgstr " -p <súbor_balíku>+"
-#: lib/poptI.c:194
+#: lib/poptI.c:198
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:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr "neoverova» architektúru balíka"
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr "neoverova» operaènı systém balíka"
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr "pred in¹taláciou nekontrolova» dostupné miesto na disku"
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr "in¹talova» dokumentáciu"
-#: lib/poptI.c:210 lib/poptI.c:213
+#: lib/poptI.c:214 lib/poptI.c:217
#, fuzzy
msgid "install package(s)"
msgstr "in¹talova» balík"
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "update the database, but do not modify the filesystem"
msgstr "aktualizova» databázu bez zmeny súborového systému"
-#: lib/poptI.c:221 lib/poptI.c:224
+#: lib/poptI.c:225 lib/poptI.c:228
msgid "do not verify package dependencies"
msgstr "neoverova» závislosti balíka"
-#: lib/poptI.c:228 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:232 lib/poptQV.c:275 lib/poptQV.c:278
#, fuzzy
msgid "don't verify MD5 digest of files"
msgstr "zobrazi» súbory v balíku"
-#: lib/poptI.c:231
+#: lib/poptI.c:235
msgid "do not reorder package installation to satisfy dependencies"
msgstr "nemeni» poradie balíkov kvôli vyrie¹eniu závislostí"
-#: lib/poptI.c:236
+#: lib/poptI.c:240
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:248
+#: lib/poptI.c:252
#, fuzzy, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr "nevykona» ¾iadne etapy"
-#: lib/poptI.c:251
+#: lib/poptI.c:255
#, fuzzy, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr "nevykona» ¾iadne etapy"
-#: lib/poptI.c:254
+#: lib/poptI.c:258
#, fuzzy, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr "nevykona» ¾iadne etapy"
-#: lib/poptI.c:257
+#: lib/poptI.c:261
#, fuzzy, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr "nevykona» ¾iadne etapy"
-#: lib/poptI.c:276
+#: lib/poptI.c:280
#, 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:279
+#: lib/poptI.c:283
#, fuzzy, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr "nevykona» ¾iadne skripty ¹pecifikované balíkom"
-#: lib/poptI.c:282
+#: lib/poptI.c:286
#, fuzzy, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr "nevykona» ¾iadne in¹talaèné skripty"
-#: lib/poptI.c:285
+#: lib/poptI.c:289
#, fuzzy, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr "nevykona» ¾iadne in¹talaèné skripty"
-#: lib/poptI.c:288
+#: lib/poptI.c:292
#, fuzzy, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr "nevykona» ¾iadne in¹talaèné skripty"
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
@@ -1901,53 +1906,53 @@ msgstr ""
"aktualizova» na star¹iu verziu balíka (--force to pri aktualizácii urobí "
"automaticky)"
-#: lib/poptI.c:296
+#: lib/poptI.c:300
msgid "print percentages as package installs"
msgstr "vypisova» percentá poèas in¹talácie balíka"
-#: lib/poptI.c:298
+#: lib/poptI.c:302
msgid "relocate the package to <dir>, if relocatable"
msgstr "presunú» balík do <adresára>, pokiaµ to balík povoµuje"
-#: lib/poptI.c:299
+#: lib/poptI.c:303
msgid "<dir>"
msgstr ""
-#: lib/poptI.c:301
+#: lib/poptI.c:305
#, fuzzy
msgid "relocate files from path <old> to <new>"
msgstr "presunú» súbory zo <starej_cesty> do <novej_cesty>"
-#: lib/poptI.c:302
+#: lib/poptI.c:306
#, fuzzy
msgid "<old>=<new>"
msgstr " --relocate <stará_cesta>=<nová_cesta>"
-#: lib/poptI.c:305
+#: lib/poptI.c:309
msgid "save erased package files by repackaging"
msgstr ""
-#: lib/poptI.c:308
+#: lib/poptI.c:312
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:311
+#: lib/poptI.c:315
msgid "reinstall if the package is already present"
msgstr "prein¹talova», pokiaµ u¾ balík existuje"
-#: lib/poptI.c:313
+#: lib/poptI.c:317
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr ""
-#: lib/poptI.c:314
+#: lib/poptI.c:318
msgid "<date>"
msgstr ""
-#: lib/poptI.c:316
+#: lib/poptI.c:320
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:319
+#: lib/poptI.c:323
#, fuzzy
msgid "upgrade package(s)"
msgstr " --upgrade <súbor_balíka>"
@@ -2234,7 +2239,7 @@ msgstr "nepodarilo sa otvori» %s: %s"
msgid "%s failed: %s\n"
msgstr "%s zlyhalo"
-#: lib/query.c:122 lib/rpmts.c:413
+#: lib/query.c:122 lib/rpmts.c:430
#, fuzzy, c-format
msgid "incorrect format: %s\n"
msgstr "chyba formátu: %s\n"
@@ -2284,8 +2289,9 @@ msgstr "balík neobsahuje ani vlastníka súboru, ani zoznamy identifikácií"
msgid "can't query %s: %s\n"
msgstr "zmazanie %s zlyhalo: %s\n"
-#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:422 lib/rpminstall.c:553
-#: lib/rpminstall.c:956 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:123 lib/rpminstall.c:452
+#: lib/rpminstall.c:583 lib/rpminstall.c:986 lib/rpmts.c:441
+#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "otvorenie %s zlyhalo\n"
@@ -2299,7 +2305,7 @@ msgstr "otázka na %s zlyhala\n"
msgid "old format source packages cannot be queried\n"
msgstr "nie je mo¾né pıta» sa zdrojovıch balíkov v starom formáte\n"
-#: lib/query.c:609 lib/rpminstall.c:566
+#: lib/query.c:609 lib/rpminstall.c:596
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "¾iadny z balíkov nespú¹»a %s\n"
@@ -2369,17 +2375,17 @@ msgstr "po¾aduje sa záznam èíslo %d\n"
msgid "record %u could not be read\n"
msgstr "záznam %d nie je mo¾né preèíta»\n"
-#: lib/query.c:907 lib/rpminstall.c:733
+#: lib/query.c:907 lib/rpminstall.c:763
#, c-format
msgid "package %s is not installed\n"
msgstr "balík %s nie je nain¹talovanı\n"
-#: lib/rpmal.c:696
+#: lib/rpmal.c:697
#, fuzzy
msgid "(added files)"
msgstr "chybnı stav súboru: %s"
-#: lib/rpmal.c:773
+#: lib/rpmal.c:774
msgid "(added provide)"
msgstr ""
@@ -2538,110 +2544,115 @@ msgstr "presúva sa %s do %s\n"
msgid "relocating directory %s to %s\n"
msgstr "presúva sa %s do %s\n"
-#: lib/rpminstall.c:181
+#: lib/rpminstall.c:186
msgid "Preparing..."
msgstr ""
-#: lib/rpminstall.c:183
+#: lib/rpminstall.c:188
#, fuzzy
msgid "Preparing packages for installation..."
msgstr "neboli zadané ¾iadne balíky pre in¹taláciu"
-#: lib/rpminstall.c:201
+#: lib/rpminstall.c:206
msgid "Repackaging..."
msgstr ""
-#: lib/rpminstall.c:203
+#: lib/rpminstall.c:208
#, fuzzy
msgid "Repackaging erased files..."
msgstr "balík neobsahuje ¾iadne súbory\n"
-#: lib/rpminstall.c:222
+#: lib/rpminstall.c:227
msgid "Upgrading..."
msgstr ""
-#: lib/rpminstall.c:224
+#: lib/rpminstall.c:229
#, fuzzy
msgid "Upgrading packages..."
msgstr " --upgrade <súbor_balíka>"
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:384
+#, fuzzy, c-format
+msgid "Adding goal: %s\n"
+msgstr "Zis»ujú sa po¾adované vlastnosti...\n"
+
+#: lib/rpminstall.c:399
#, 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:382
+#: lib/rpminstall.c:412
#, c-format
msgid " ... as %s\n"
msgstr "... ako %s\n"
-#: lib/rpminstall.c:386
+#: lib/rpminstall.c:416
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "%s vynechané - prenos zlyhal - %s\n"
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:507
#, fuzzy, c-format
msgid "package %s is not relocateable\n"
msgstr "balík %s nie je nain¹talovanı\n"
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:557
#, fuzzy, c-format
msgid "error reading from file %s\n"
msgstr "chyba pri vytváraní doèasného súboru %s"
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:563
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:545 lib/rpminstall.c:812 tools/rpmgraph.c:156
+#: lib/rpminstall.c:575 lib/rpminstall.c:842 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s nie je mo¾né nain¹talova»\n"
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:611
#, 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:595 lib/rpminstall.c:761 lib/rpminstall.c:1160
+#: lib/rpminstall.c:625 lib/rpminstall.c:791 lib/rpminstall.c:1190
#: tools/rpmgraph.c:202
#, fuzzy
msgid "Failed dependencies:\n"
msgstr "nevyrie¹ené závislosti:\n"
-#: lib/rpminstall.c:602 tools/rpmgraph.c:208
+#: lib/rpminstall.c:632 tools/rpmgraph.c:208
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:632
+#: lib/rpminstall.c:662
msgid "installing binary packages\n"
msgstr "in¹talujú sa binárne balíky\n"
-#: lib/rpminstall.c:656
+#: lib/rpminstall.c:686
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "nie je mo¾né otvori» súbor %s: %s"
-#: lib/rpminstall.c:736
+#: lib/rpminstall.c:766
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" ¹pecifikuje viac balíkov\n"
-#: lib/rpminstall.c:796
+#: lib/rpminstall.c:826
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "nie je mo¾né otvori» %s\n"
-#: lib/rpminstall.c:802
+#: lib/rpminstall.c:832
#, c-format
msgid "Installing %s\n"
msgstr "In¹taluje sa %s\n"
-#: lib/rpminstall.c:1154
+#: lib/rpminstall.c:1184
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
@@ -2858,13 +2869,23 @@ msgstr "Nie je mo¾né otvori» %s pre èítanie: %s."
msgid "cannot open Packages database in %s\n"
msgstr "nie je mo¾né otvori» %s/packages.rpm\n"
-#: lib/rpmts.c:319
+#: lib/rpmts.c:320
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "nie je mo¾né otvori» %s/packages.rpm\n"
+#: lib/rpmts.c:456
+#, fuzzy, c-format
+msgid "Adding: %s\n"
+msgstr "riadok: %s"
+
+#: lib/rpmts.c:467
+#, fuzzy, c-format
+msgid "Suggesting: %s\n"
+msgstr "zdroje v: %s\n"
+
#. Get available space on mounted file systems.
-#: lib/rpmts.c:809
+#: lib/rpmts.c:860
msgid "getting list of mounted filesystems\n"
msgstr ""
@@ -4844,9 +4865,6 @@ msgstr ""
#~ msgid "cannot create sourcedir %s\n"
#~ msgstr "nie je mo¾né zapísa» do %s: "
-#~ msgid "sources in: %s\n"
-#~ msgstr "zdroje v: %s\n"
-
#, fuzzy
#~ msgid "cannot create specdir %s\n"
#~ msgstr "nie je mo¾né zapísa» do %s: "
diff --git a/po/sl.po b/po/sl.po
index 3ca04e952..673d8ca6f 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -1,12 +1,12 @@
# -*- mode:po; coding:iso-latin-2; -*- Slovenian messages for Redhat pkg. mngr.
# Copyright (C) 2000 Free Software Foundation, Inc.
# Primo¾ Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>, 2000.
-# $Id: sl.po,v 1.311 2002/08/10 17:52:10 jbj Exp $
+# $Id: sl.po,v 1.312 2002/08/13 16:37:28 jbj Exp $
#
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-10 13:48-0400\n"
+"POT-Creation-Date: 2002-08-13 12:17-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"
@@ -1294,19 +1294,19 @@ msgstr "brez preverjanja soodvisnosti paketa"
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:261 lib/poptI.c:268
+#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:265 lib/poptI.c:272
#: lib/poptQV.c:329 lib/poptQV.c:338 lib/poptQV.c:377
#, fuzzy
msgid "don't verify package digest(s)"
msgstr "brez preverjanja soodvisnosti paketa"
-#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:263 lib/poptI.c:270
+#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:267 lib/poptI.c:274
#: lib/poptQV.c:332 lib/poptQV.c:340 lib/poptQV.c:380
#, fuzzy
msgid "don't verify database header(s) when retrieved"
msgstr "brez preverjanja arhitekture paketa"
-#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:265 lib/poptI.c:272
+#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:269 lib/poptI.c:276
#: lib/poptQV.c:335 lib/poptQV.c:342 lib/poptQV.c:382
#, fuzzy
msgid "don't verify package signature(s)"
@@ -1404,71 +1404,71 @@ msgstr " neuspe¹no - "
msgid "package %s was already added, replacing with %s\n"
msgstr "paket %s-%s-%s je ¾e name¹èen"
-#: lib/depends.c:391
+#: lib/depends.c:394
msgid "(cached)"
msgstr ""
-#: lib/depends.c:417
+#: lib/depends.c:421
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %-45s DA (rpmrc ponudbe)\n"
-#: lib/depends.c:434
+#: lib/depends.c:438
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %-45s DA (rpmlib ponudbe)\n"
-#: lib/depends.c:463
+#: lib/depends.c:467
#, fuzzy
msgid "(db files)"
msgstr "po¹kodovana zbirka podatkov %s"
-#: lib/depends.c:476
+#: lib/depends.c:480
#, fuzzy
msgid "(db provides)"
msgstr "%s: %-45s DA (db ponudbe)\n"
-#: lib/depends.c:489
+#: lib/depends.c:493
#, fuzzy
msgid "(db package)"
msgstr "ni paketov\n"
-#: lib/depends.c:839
+#: lib/depends.c:851
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:961
+#: lib/depends.c:973
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "odstranjujemo seznam skupin\n"
#. Record all relations.
-#: lib/depends.c:1193
+#: lib/depends.c:1207
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1294
+#: lib/depends.c:1308
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1377
+#: lib/depends.c:1391
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1447
+#: lib/depends.c:1461
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1482
+#: lib/depends.c:1496
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1487
+#: lib/depends.c:1501
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1494,7 +1494,7 @@ msgstr "(ni ¹tevilo)"
#: lib/formats.c:310
#, fuzzy
-msgid "(not a OpenPGP signature"
+msgid "(not an OpenPGP signature)"
msgstr "preskoèi vse podpise PGP"
#: lib/fs.c:77
@@ -1742,11 +1742,16 @@ msgid "malformed rollback time/date stamp argument"
msgstr ""
#: lib/poptI.c:152
+#, fuzzy
+msgid "add suggested packages to transaction"
+msgstr "poizvedba po paketu v skupini"
+
+#: lib/poptI.c:156
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:156
+#: lib/poptI.c:160
msgid ""
"remove all packages which match <package> (normally an error is generated if "
"<package> specified multiple packages)"
@@ -1754,148 +1759,148 @@ msgstr ""
"odstrani vse pakete, ki vsebujejo vzorec <paket> (sicer program izide z "
"napako, èe paket <paket> doloèa veè paketov)"
-#: lib/poptI.c:162 lib/poptI.c:241 lib/poptI.c:244
+#: lib/poptI.c:166 lib/poptI.c:245 lib/poptI.c:248
#, fuzzy
msgid "do not execute package scriptlet(s)"
msgstr "brez izvajanja skriptov paketa"
-#: lib/poptI.c:166
+#: lib/poptI.c:170
msgid "relocate files in non-relocateable package"
msgstr ""
-#: lib/poptI.c:169
+#: lib/poptI.c:173
msgid "save erased package files by renaming into sub-directory"
msgstr ""
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "erase (uninstall) package"
msgstr "izbri¹i (odstrani) paket"
-#: lib/poptI.c:172
+#: lib/poptI.c:176
#, fuzzy
msgid "<package>+"
msgstr "ni paketov\n"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "do not install documentation"
msgstr "brez namestitve dokumentacije"
-#: lib/poptI.c:177
+#: lib/poptI.c:181
#, fuzzy
msgid "skip files with leading component <path> "
msgstr "preskok datotek v navedeni poti"
-#: lib/poptI.c:178
+#: lib/poptI.c:182
msgid "<path>"
msgstr ""
-#: lib/poptI.c:183 lib/poptI.c:186
+#: lib/poptI.c:187 lib/poptI.c:190
msgid "short hand for --replacepkgs --replacefiles"
msgstr "okraj¹ava za --replacepkgs --replacefiles"
-#: lib/poptI.c:191
+#: lib/poptI.c:195
#, fuzzy
msgid "upgrade package(s) if already installed"
msgstr "paket %s-%s-%s je ¾e name¹èen"
-#: lib/poptI.c:192 lib/poptI.c:210 lib/poptI.c:213 lib/poptI.c:320
+#: lib/poptI.c:196 lib/poptI.c:214 lib/poptI.c:217 lib/poptI.c:324
#, fuzzy
msgid "<packagefile>+"
msgstr " -p <paket>+ "
-#: lib/poptI.c:194
+#: lib/poptI.c:198
msgid "print hash marks as package installs (good with -v)"
msgstr "z izpisom znakov # ob namestitvi (uporabno z -v)"
-#: lib/poptI.c:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr "brez preverjanja arhitekture paketa"
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr "brez preverjanja operacijskega sistema paketa"
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr "brez preverjanja prostora na disku pred name¹èanjem"
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr "namesti dokumentacijo"
-#: lib/poptI.c:210 lib/poptI.c:213
+#: lib/poptI.c:214 lib/poptI.c:217
#, fuzzy
msgid "install package(s)"
msgstr "name¹èanje paketa"
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "update the database, but do not modify the filesystem"
msgstr "obnovi podatkovno zbirko, a ne spreminjaj datoteènega sistema"
-#: lib/poptI.c:221 lib/poptI.c:224
+#: lib/poptI.c:225 lib/poptI.c:228
msgid "do not verify package dependencies"
msgstr "brez preverjanja soodvisnosti paketa"
-#: lib/poptI.c:228 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:232 lib/poptQV.c:275 lib/poptQV.c:278
#, fuzzy
msgid "don't verify MD5 digest of files"
msgstr "brez preverjanja datotek v paketu"
-#: lib/poptI.c:231
+#: lib/poptI.c:235
msgid "do not reorder package installation to satisfy dependencies"
msgstr ""
"brez spreminjanja vrstnega reda paketov z namenom zadovoljevanja soodvisnosti"
-#: lib/poptI.c:236
+#: lib/poptI.c:240
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:248
+#: lib/poptI.c:252
#, fuzzy, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr "brez izvajanja katerekoli stopen izgradnje"
-#: lib/poptI.c:251
+#: lib/poptI.c:255
#, fuzzy, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr "brez izvajanja katerekoli stopen izgradnje"
-#: lib/poptI.c:254
+#: lib/poptI.c:258
#, fuzzy, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr "brez izvajanja katerekoli stopen izgradnje"
-#: lib/poptI.c:257
+#: lib/poptI.c:261
#, fuzzy, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr "brez izvajanja katerekoli stopen izgradnje"
-#: lib/poptI.c:276
+#: lib/poptI.c:280
#, 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:279
+#: lib/poptI.c:283
#, fuzzy, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr "brez izvajanja skriptov paketa"
-#: lib/poptI.c:282
+#: lib/poptI.c:286
#, fuzzy, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr "brez izvajanja namestitvenih skriptov"
-#: lib/poptI.c:285
+#: lib/poptI.c:289
#, fuzzy, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr "brez izvajanja namestitvenih skriptov"
-#: lib/poptI.c:288
+#: lib/poptI.c:292
#, fuzzy, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr "brez izvajanja namestitvenih skriptov"
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
@@ -1903,53 +1908,53 @@ msgstr ""
"nadgraditev na starej¹o razlièico paketa (--force pri nadgradnjah "
"avtomatièno vkljuèi to izbiro)"
-#: lib/poptI.c:296
+#: lib/poptI.c:300
msgid "print percentages as package installs"
msgstr "izpis odstotkov med namestitvijo"
-#: lib/poptI.c:298
+#: lib/poptI.c:302
msgid "relocate the package to <dir>, if relocatable"
msgstr "èe je mogoèe, bo paket prestavljen v imenik <imenik>"
-#: lib/poptI.c:299
+#: lib/poptI.c:303
msgid "<dir>"
msgstr ""
-#: lib/poptI.c:301
+#: lib/poptI.c:305
#, fuzzy
msgid "relocate files from path <old> to <new>"
msgstr "prestavljanje datoteke iz stare poti v novo"
-#: lib/poptI.c:302
+#: lib/poptI.c:306
#, fuzzy
msgid "<old>=<new>"
msgstr " --relocate <starapot>=<novapot>"
-#: lib/poptI.c:305
+#: lib/poptI.c:309
msgid "save erased package files by repackaging"
msgstr ""
-#: lib/poptI.c:308
+#: lib/poptI.c:312
msgid "install even if the package replaces installed files"
msgstr "namesti, èetudi paket pi¹e prek ¾e name¹èene datoteke"
-#: lib/poptI.c:311
+#: lib/poptI.c:315
msgid "reinstall if the package is already present"
msgstr "ponovno namesti, èe paket ¾e obstaja"
-#: lib/poptI.c:313
+#: lib/poptI.c:317
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr ""
-#: lib/poptI.c:314
+#: lib/poptI.c:318
msgid "<date>"
msgstr ""
-#: lib/poptI.c:316
+#: lib/poptI.c:320
msgid "don't install, but tell if it would work or not"
msgstr "ne namesti, a ugotovi, èe bi delovalo"
-#: lib/poptI.c:319
+#: lib/poptI.c:323
#, fuzzy
msgid "upgrade package(s)"
msgstr " --upgrade <paket> "
@@ -2234,7 +2239,7 @@ msgstr "neuspe¹no odpiranje %s: %s\n"
msgid "%s failed: %s\n"
msgstr "%s neuspe¹en"
-#: lib/query.c:122 lib/rpmts.c:413
+#: lib/query.c:122 lib/rpmts.c:430
#, fuzzy, c-format
msgid "incorrect format: %s\n"
msgstr "napaka v obliki: %s\n"
@@ -2284,8 +2289,9 @@ msgstr "paket ne vsebuje ne lastnika datotek niti seznamov id"
msgid "can't query %s: %s\n"
msgstr "ni mo¾no poizvedeti o %s: %s\n"
-#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:422 lib/rpminstall.c:553
-#: lib/rpminstall.c:956 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:123 lib/rpminstall.c:452
+#: lib/rpminstall.c:583 lib/rpminstall.c:986 lib/rpmts.c:441
+#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "odpiranje %s je bilo neuspe¹no: %s\n"
@@ -2299,7 +2305,7 @@ msgstr "poizvedba po %s je bila neuspe¹na\n"
msgid "old format source packages cannot be queried\n"
msgstr "poizvedba po izvornih paketih v stari obliki ni mo¾na\n"
-#: lib/query.c:609 lib/rpminstall.c:566
+#: lib/query.c:609 lib/rpminstall.c:596
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "noben paket ne pro¾i %s\n"
@@ -2369,17 +2375,17 @@ msgstr "¹tevilka zapisa paketa: %d\n"
msgid "record %u could not be read\n"
msgstr "zapisa %d ni mo¾no prebrati\n"
-#: lib/query.c:907 lib/rpminstall.c:733
+#: lib/query.c:907 lib/rpminstall.c:763
#, c-format
msgid "package %s is not installed\n"
msgstr "paket %s ni name¹èen\n"
-#: lib/rpmal.c:696
+#: lib/rpmal.c:697
#, fuzzy
msgid "(added files)"
msgstr "po¹kodovana zbirka podatkov %s"
-#: lib/rpmal.c:773
+#: lib/rpmal.c:774
#, fuzzy
msgid "(added provide)"
msgstr "%s: %-45s DA (dodane ponudbe)\n"
@@ -2540,110 +2546,115 @@ msgstr "premikanje %s v %s\n"
msgid "relocating directory %s to %s\n"
msgstr "premiokanje imenika %s v %s\n"
-#: lib/rpminstall.c:181
+#: lib/rpminstall.c:186
msgid "Preparing..."
msgstr ""
-#: lib/rpminstall.c:183
+#: lib/rpminstall.c:188
#, fuzzy
msgid "Preparing packages for installation..."
msgstr "paketi za namestitev niso navedeni"
-#: lib/rpminstall.c:201
+#: lib/rpminstall.c:206
msgid "Repackaging..."
msgstr ""
-#: lib/rpminstall.c:203
+#: lib/rpminstall.c:208
#, fuzzy
msgid "Repackaging erased files..."
msgstr "paket ne vsebuje datotek\n"
-#: lib/rpminstall.c:222
+#: lib/rpminstall.c:227
msgid "Upgrading..."
msgstr ""
-#: lib/rpminstall.c:224
+#: lib/rpminstall.c:229
#, fuzzy
msgid "Upgrading packages..."
msgstr " --upgrade <paket> "
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:384
+#, fuzzy, c-format
+msgid "Adding goal: %s\n"
+msgstr "Iskanje %s: (z uporabo %s)...\n"
+
+#: lib/rpminstall.c:399
#, 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:382
+#: lib/rpminstall.c:412
#, c-format
msgid " ... as %s\n"
msgstr " ... kot %s\n"
-#: lib/rpminstall.c:386
+#: lib/rpminstall.c:416
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "preskoèeno - %s - prenos neuspe¹en - %s\n"
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:507
#, c-format
msgid "package %s is not relocateable\n"
msgstr "paketa %s ni mo¾no premakniti\n"
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:557
#, c-format
msgid "error reading from file %s\n"
msgstr "napaka pri branju iz datoteke %s\n"
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:563
#, 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:545 lib/rpminstall.c:812 tools/rpmgraph.c:156
+#: lib/rpminstall.c:575 lib/rpminstall.c:842 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s ni mo¾no namestiti\n"
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:611
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr "najdeno %d izvornih in %d binarnih paketov\n"
-#: lib/rpminstall.c:595 lib/rpminstall.c:761 lib/rpminstall.c:1160
+#: lib/rpminstall.c:625 lib/rpminstall.c:791 lib/rpminstall.c:1190
#: tools/rpmgraph.c:202
#, fuzzy
msgid "Failed dependencies:\n"
msgstr "neuspe¹ne soodvisnosti:\n"
-#: lib/rpminstall.c:602 tools/rpmgraph.c:208
+#: lib/rpminstall.c:632 tools/rpmgraph.c:208
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:632
+#: lib/rpminstall.c:662
msgid "installing binary packages\n"
msgstr "name¹èanje binarnih paketov\n"
-#: lib/rpminstall.c:656
+#: lib/rpminstall.c:686
#, c-format
msgid "cannot open file %s: %s\n"
msgstr "ni mo¾no odpreti datoteke %s: %s\n"
-#: lib/rpminstall.c:736
+#: lib/rpminstall.c:766
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" doloèa veè paketov\n"
-#: lib/rpminstall.c:796
+#: lib/rpminstall.c:826
#, c-format
msgid "cannot open %s: %s\n"
msgstr "ni mo¾no odpreti %s: %s\n"
-#: lib/rpminstall.c:802
+#: lib/rpminstall.c:832
#, c-format
msgid "Installing %s\n"
msgstr "Name¹èanje %s\n"
-#: lib/rpminstall.c:1154
+#: lib/rpminstall.c:1184
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
@@ -2861,13 +2872,23 @@ msgstr "%s ni mo¾no odpreti za branje: %s."
msgid "cannot open Packages database in %s\n"
msgstr "zbirko podatkov paketov ni mo¾no odpreti v %s\n"
-#: lib/rpmts.c:319
+#: lib/rpmts.c:320
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "datoteke %s/packages.rpm ni mogo¾no odpreti\n"
+#: lib/rpmts.c:456
+#, fuzzy, c-format
+msgid "Adding: %s\n"
+msgstr "vrstica: %s"
+
+#: lib/rpmts.c:467
+#, fuzzy, c-format
+msgid "Suggesting: %s\n"
+msgstr "izvori v: %s\n"
+
#. Get available space on mounted file systems.
-#: lib/rpmts.c:809
+#: lib/rpmts.c:860
msgid "getting list of mounted filesystems\n"
msgstr "zbiranje seznama priklopljenih datoteènih sistemov.\n"
@@ -4870,9 +4891,6 @@ msgstr ""
#~ msgid "cannot create sourcedir %s\n"
#~ msgstr "ni mo¾no ustvariti izvornega imenika %s"
-#~ msgid "sources in: %s\n"
-#~ msgstr "izvori v: %s\n"
-
#, fuzzy
#~ msgid "cannot create specdir %s\n"
#~ msgstr "ni mo¾no ustvariti imenika z doloèili spec %s"
diff --git a/po/sr.po b/po/sr.po
index 12e984979..cf0ea344c 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-10 13:48-0400\n"
+"POT-Creation-Date: 2002-08-13 12:17-0400\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -1279,19 +1279,19 @@ msgstr "nemoj proveravati zavisnosti paketa"
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr ""
-#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:261 lib/poptI.c:268
+#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:265 lib/poptI.c:272
#: lib/poptQV.c:329 lib/poptQV.c:338 lib/poptQV.c:377
#, fuzzy
msgid "don't verify package digest(s)"
msgstr "nemoj proveravati zavisnosti paketa"
-#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:263 lib/poptI.c:270
+#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:267 lib/poptI.c:274
#: lib/poptQV.c:332 lib/poptQV.c:340 lib/poptQV.c:380
#, fuzzy
msgid "don't verify database header(s) when retrieved"
msgstr "nemoj proveravati arhitekturu paketa"
-#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:265 lib/poptI.c:272
+#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:269 lib/poptI.c:276
#: lib/poptQV.c:335 lib/poptQV.c:342 lib/poptQV.c:382
#, fuzzy
msgid "don't verify package signature(s)"
@@ -1393,69 +1393,69 @@ msgstr "PGP omanuo"
msgid "package %s was already added, replacing with %s\n"
msgstr "paket %s nije instaliran\n"
-#: lib/depends.c:391
+#: lib/depends.c:394
msgid "(cached)"
msgstr ""
-#: lib/depends.c:417
+#: lib/depends.c:421
msgid "(rpmrc provides)"
msgstr ""
-#: lib/depends.c:434
+#: lib/depends.c:438
#, fuzzy
msgid "(rpmlib provides)"
msgstr "datoteka %s ne pripada nijednom paketu\n"
-#: lib/depends.c:463
+#: lib/depends.c:467
#, fuzzy
msgid "(db files)"
msgstr "neuspelo otvaranje %s: %s"
-#: lib/depends.c:476
+#: lib/depends.c:480
msgid "(db provides)"
msgstr ""
-#: lib/depends.c:489
+#: lib/depends.c:493
#, fuzzy
msgid "(db package)"
msgstr "upit nad svim paketima"
-#: lib/depends.c:839
+#: lib/depends.c:851
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:961
+#: lib/depends.c:973
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "gre¹ka uklanjanja sloga %s u %s"
#. Record all relations.
-#: lib/depends.c:1193
+#: lib/depends.c:1207
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1294
+#: lib/depends.c:1308
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1377
+#: lib/depends.c:1391
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1447
+#: lib/depends.c:1461
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1482
+#: lib/depends.c:1496
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1487
+#: lib/depends.c:1501
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1481,7 +1481,7 @@ msgstr "(nije broj)"
#: lib/formats.c:310
#, fuzzy
-msgid "(not a OpenPGP signature"
+msgid "(not an OpenPGP signature)"
msgstr "preskoèi sve PGP potpise"
#: lib/fs.c:77
@@ -1729,11 +1729,16 @@ msgid "malformed rollback time/date stamp argument"
msgstr ""
#: lib/poptI.c:152
+#, fuzzy
+msgid "add suggested packages to transaction"
+msgstr "paket nema imena"
+
+#: lib/poptI.c:156
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:156
+#: lib/poptI.c:160
msgid ""
"remove all packages which match <package> (normally an error is generated if "
"<package> specified multiple packages)"
@@ -1741,201 +1746,201 @@ msgstr ""
"ukloni sve pakete koji odgovaraju <paketu> (normalno, javlja se gre¹ka ako "
"<paket> oznaèava vi¹e paketa)"
-#: lib/poptI.c:162 lib/poptI.c:241 lib/poptI.c:244
+#: lib/poptI.c:166 lib/poptI.c:245 lib/poptI.c:248
#, fuzzy
msgid "do not execute package scriptlet(s)"
msgstr "nemoj izvr¹iti nijedan skript iz paketa"
-#: lib/poptI.c:166
+#: lib/poptI.c:170
#, fuzzy
msgid "relocate files in non-relocateable package"
msgstr "paket %s nije instaliran\n"
-#: lib/poptI.c:169
+#: lib/poptI.c:173
msgid "save erased package files by renaming into sub-directory"
msgstr ""
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "erase (uninstall) package"
msgstr "izbri¹i (deinstaliraj) paket"
-#: lib/poptI.c:172
+#: lib/poptI.c:176
#, fuzzy
msgid "<package>+"
msgstr "upit nad svim paketima"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "do not install documentation"
msgstr "nemoj da instalira¹ dokumentaciju"
-#: lib/poptI.c:177
+#: lib/poptI.c:181
msgid "skip files with leading component <path> "
msgstr ""
-#: lib/poptI.c:178
+#: lib/poptI.c:182
msgid "<path>"
msgstr ""
-#: lib/poptI.c:183 lib/poptI.c:186
+#: lib/poptI.c:187 lib/poptI.c:190
msgid "short hand for --replacepkgs --replacefiles"
msgstr "skraæenica za --replacepkgs --replacefiles"
-#: lib/poptI.c:191
+#: lib/poptI.c:195
#, fuzzy
msgid "upgrade package(s) if already installed"
msgstr "paket %s nije instaliran\n"
-#: lib/poptI.c:192 lib/poptI.c:210 lib/poptI.c:213 lib/poptI.c:320
+#: lib/poptI.c:196 lib/poptI.c:214 lib/poptI.c:217 lib/poptI.c:324
#, fuzzy
msgid "<packagefile>+"
msgstr " -b<faza> <spec>\t "
-#: lib/poptI.c:194
+#: lib/poptI.c:198
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:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr "nemoj proveravati arhitekturu paketa"
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr "nemoj proveravati operativni sistem za paket"
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr ""
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr "instaliraj dokumentaciju"
-#: lib/poptI.c:210 lib/poptI.c:213
+#: lib/poptI.c:214 lib/poptI.c:217
#, fuzzy
msgid "install package(s)"
msgstr "instaliraj paket"
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "update the database, but do not modify the filesystem"
msgstr "a¾uriraj bazu podataka, ali nemoj menjati fajl-sistem"
-#: lib/poptI.c:221 lib/poptI.c:224
+#: lib/poptI.c:225 lib/poptI.c:228
msgid "do not verify package dependencies"
msgstr "nemoj proveravati zavisnosti paketa"
-#: lib/poptI.c:228 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:232 lib/poptQV.c:275 lib/poptQV.c:278
#, fuzzy
msgid "don't verify MD5 digest of files"
msgstr "instaliraj paket"
-#: lib/poptI.c:231
+#: lib/poptI.c:235
msgid "do not reorder package installation to satisfy dependencies"
msgstr ""
"nemoj preurediti redosled instalacije paketa kako bi zadovoljio zavisnosti"
-#: lib/poptI.c:236
+#: lib/poptI.c:240
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:248
+#: lib/poptI.c:252
#, fuzzy, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr "nemoj izvr¹iti nijednu fazu"
-#: lib/poptI.c:251
+#: lib/poptI.c:255
#, fuzzy, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr "nemoj izvr¹iti nijednu fazu"
-#: lib/poptI.c:254
+#: lib/poptI.c:258
#, fuzzy, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr "nemoj izvr¹iti nijednu fazu"
-#: lib/poptI.c:257
+#: lib/poptI.c:261
#, fuzzy, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr "nemoj izvr¹iti nijednu fazu"
-#: lib/poptI.c:276
+#: lib/poptI.c:280
#, fuzzy
msgid "do not execute any scriptlet(s) triggered by this package"
msgstr "upit nad paketom koji ima <datoteku>"
-#: lib/poptI.c:279
+#: lib/poptI.c:283
#, fuzzy, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr "nemoj izvr¹iti nijedan skript iz paketa"
-#: lib/poptI.c:282
+#: lib/poptI.c:286
#, fuzzy, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr "nemoj izvr¹iti nijedan instalacioni skript"
-#: lib/poptI.c:285
+#: lib/poptI.c:289
#, fuzzy, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr "nemoj izvr¹iti nijedan instalacioni skript"
-#: lib/poptI.c:288
+#: lib/poptI.c:292
#, fuzzy, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr "nemoj izvr¹iti nijedan instalacioni skript"
-#: lib/poptI.c:292
+#: lib/poptI.c:296
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:296
+#: lib/poptI.c:300
msgid "print percentages as package installs"
msgstr "pi¹i procente instalacije paketa"
-#: lib/poptI.c:298
+#: lib/poptI.c:302
msgid "relocate the package to <dir>, if relocatable"
msgstr "premesti paket u <dir>, ako se mo¾e premestiti"
-#: lib/poptI.c:299
+#: lib/poptI.c:303
msgid "<dir>"
msgstr ""
-#: lib/poptI.c:301
+#: lib/poptI.c:305
#, fuzzy
msgid "relocate files from path <old> to <new>"
msgstr "premesti datoteke iz <starog-puta> u <novi-put>"
-#: lib/poptI.c:302
+#: lib/poptI.c:306
#, fuzzy
msgid "<old>=<new>"
msgstr "premesti datoteke iz <starog-puta> u <novi-put>"
-#: lib/poptI.c:305
+#: lib/poptI.c:309
msgid "save erased package files by repackaging"
msgstr ""
-#: lib/poptI.c:308
+#: lib/poptI.c:312
msgid "install even if the package replaces installed files"
msgstr "instaliraj èak iako æe paket zameniti instalirane datoteke"
-#: lib/poptI.c:311
+#: lib/poptI.c:315
msgid "reinstall if the package is already present"
msgstr "ponovo instaliraj ako je paket veæ prisutan"
-#: lib/poptI.c:313
+#: lib/poptI.c:317
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr ""
-#: lib/poptI.c:314
+#: lib/poptI.c:318
msgid "<date>"
msgstr ""
-#: lib/poptI.c:316
+#: lib/poptI.c:320
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:319
+#: lib/poptI.c:323
#, fuzzy
msgid "upgrade package(s)"
msgstr "instaliraj paket"
@@ -2226,7 +2231,7 @@ msgstr "neuspelo otvaranje %s: %s"
msgid "%s failed: %s\n"
msgstr "PGP omanuo"
-#: lib/query.c:122 lib/rpmts.c:413
+#: lib/query.c:122 lib/rpmts.c:430
#, fuzzy, c-format
msgid "incorrect format: %s\n"
msgstr "gre¹ka u formatu: %s\n"
@@ -2277,8 +2282,9 @@ msgstr "paket nema imena"
msgid "can't query %s: %s\n"
msgstr "gre¹ka: ne mogu da otvorim %s\n"
-#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:422 lib/rpminstall.c:553
-#: lib/rpminstall.c:956 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:123 lib/rpminstall.c:452
+#: lib/rpminstall.c:583 lib/rpminstall.c:986 lib/rpmts.c:441
+#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "neuspelo otvaranje %s: %s\n"
@@ -2292,7 +2298,7 @@ msgstr "upit nad %s neuspeo\n"
msgid "old format source packages cannot be queried\n"
msgstr "Upit se ne mo¾e izvesti nad izvorni paketima u starom formatu\n"
-#: lib/query.c:609 lib/rpminstall.c:566
+#: lib/query.c:609 lib/rpminstall.c:596
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "nijedan paket ne aktivira %s\n"
@@ -2362,17 +2368,17 @@ msgstr "pogre¹an broj paketa: %s\n"
msgid "record %u could not be read\n"
msgstr "ne mogu da proèitam slog %d\n"
-#: lib/query.c:907 lib/rpminstall.c:733
+#: lib/query.c:907 lib/rpminstall.c:763
#, c-format
msgid "package %s is not installed\n"
msgstr "paket %s nije instaliran\n"
-#: lib/rpmal.c:696
+#: lib/rpmal.c:697
#, fuzzy
msgid "(added files)"
msgstr "neuspelo otvaranje %s: %s"
-#: lib/rpmal.c:773
+#: lib/rpmal.c:774
msgid "(added provide)"
msgstr ""
@@ -2531,110 +2537,115 @@ msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
msgid "relocating directory %s to %s\n"
msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
-#: lib/rpminstall.c:181
+#: lib/rpminstall.c:186
msgid "Preparing..."
msgstr ""
-#: lib/rpminstall.c:183
+#: lib/rpminstall.c:188
#, fuzzy
msgid "Preparing packages for installation..."
msgstr "nedostaje paket za instalaciju"
-#: lib/rpminstall.c:201
+#: lib/rpminstall.c:206
msgid "Repackaging..."
msgstr ""
-#: lib/rpminstall.c:203
+#: lib/rpminstall.c:208
msgid "Repackaging erased files..."
msgstr ""
-#: lib/rpminstall.c:222
+#: lib/rpminstall.c:227
msgid "Upgrading..."
msgstr ""
-#: lib/rpminstall.c:224
+#: lib/rpminstall.c:229
#, fuzzy
msgid "Upgrading packages..."
msgstr "instaliraj paket"
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:384
+#, fuzzy, c-format
+msgid "Adding goal: %s\n"
+msgstr "neuspelo otvaranje %s: %s"
+
+#: lib/rpminstall.c:399
#, c-format
msgid "Retrieving %s\n"
msgstr "Pribavljam %s\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:382
+#: lib/rpminstall.c:412
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:386
+#: lib/rpminstall.c:416
#, fuzzy, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "gre¹ka: preskaèem %s - neuspelo preno¹enje - %s\n"
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:507
#, fuzzy, c-format
msgid "package %s is not relocateable\n"
msgstr "paket %s nije instaliran\n"
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:557
#, fuzzy, c-format
msgid "error reading from file %s\n"
msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:563
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:545 lib/rpminstall.c:812 tools/rpmgraph.c:156
+#: lib/rpminstall.c:575 lib/rpminstall.c:842 tools/rpmgraph.c:156
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "gre¹ka: %s se ne mo¾e instalirati\n"
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:611
#, fuzzy, c-format
msgid "found %d source and %d binary packages\n"
msgstr "grupa %s ne sadr¾i nijedan paket\n"
-#: lib/rpminstall.c:595 lib/rpminstall.c:761 lib/rpminstall.c:1160
+#: lib/rpminstall.c:625 lib/rpminstall.c:791 lib/rpminstall.c:1190
#: tools/rpmgraph.c:202
#, fuzzy
msgid "Failed dependencies:\n"
msgstr "lo¹e meğuzavisnosti:\n"
-#: lib/rpminstall.c:602 tools/rpmgraph.c:208
+#: lib/rpminstall.c:632 tools/rpmgraph.c:208
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:632
+#: lib/rpminstall.c:662
#, fuzzy
msgid "installing binary packages\n"
msgstr "instaliraj paket"
-#: lib/rpminstall.c:656
+#: lib/rpminstall.c:686
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "Ne mogu da otvorim datoteku %s: "
-#: lib/rpminstall.c:736
+#: lib/rpminstall.c:766
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" odreğuje vi¹e paketa\n"
-#: lib/rpminstall.c:796
+#: lib/rpminstall.c:826
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "gre¹ka: ne mogu da otvorim %s\n"
-#: lib/rpminstall.c:802
+#: lib/rpminstall.c:832
#, c-format
msgid "Installing %s\n"
msgstr "Instaliram %s\n"
-#: lib/rpminstall.c:1154
+#: lib/rpminstall.c:1184
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
@@ -2851,13 +2862,23 @@ msgstr "Ne mogu da otvorim %s za èitanje: %s"
msgid "cannot open Packages database in %s\n"
msgstr "gre¹ka: ne mogu da otvorim %s%s/packages.rpm\n"
-#: lib/rpmts.c:319
+#: lib/rpmts.c:320
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "gre¹ka: ne mogu da otvorim %s%s/packages.rpm\n"
+#: lib/rpmts.c:456
+#, fuzzy, c-format
+msgid "Adding: %s\n"
+msgstr "neuspelo otvaranje %s: %s"
+
+#: lib/rpmts.c:467
+#, fuzzy, c-format
+msgid "Suggesting: %s\n"
+msgstr "Pribavljam %s\n"
+
#. Get available space on mounted file systems.
-#: lib/rpmts.c:809
+#: lib/rpmts.c:860
msgid "getting list of mounted filesystems\n"
msgstr ""
diff --git a/po/sv.po b/po/sv.po
index 85b21c3bc..1c0ce120a 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.1\n"
-"POT-Creation-Date: 2002-08-10 13:48-0400\n"
+"POT-Creation-Date: 2002-08-13 12:17-0400\n"
"PO-Revision-Date: 2002-07-11 22:49+0200\n"
"Last-Translator: Göran Uddeborg <goeran@uddeborg.pp.se>\n"
"Language-Team: Swedish <sv@li.org>\n"
@@ -1259,18 +1259,18 @@ msgstr "verifiera inte byggberoenden"
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr "generera pakethuvud(en) kompatibla med (äldre) rpm[23]-paketering"
-#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:261 lib/poptI.c:268
+#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:265 lib/poptI.c:272
#: lib/poptQV.c:329 lib/poptQV.c:338 lib/poptQV.c:377
msgid "don't verify package digest(s)"
msgstr "verifiera inte paketkontrollsummor"
-#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:263 lib/poptI.c:270
+#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:267 lib/poptI.c:274
#: lib/poptQV.c:332 lib/poptQV.c:340 lib/poptQV.c:380
#, fuzzy
msgid "don't verify database header(s) when retrieved"
msgstr "verifiera inte paketarkitektur"
-#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:265 lib/poptI.c:272
+#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:269 lib/poptI.c:276
#: lib/poptQV.c:335 lib/poptQV.c:342 lib/poptQV.c:382
msgid "don't verify package signature(s)"
msgstr "verifiera inte paketsignatur(er)"
@@ -1364,47 +1364,47 @@ msgstr " misslyckades - "
msgid "package %s was already added, replacing with %s\n"
msgstr "paket %s är redan tillagt, ersäetter med %s\n"
-#: lib/depends.c:391
+#: lib/depends.c:394
msgid "(cached)"
msgstr "(cachad)"
-#: lib/depends.c:417
+#: lib/depends.c:421
msgid "(rpmrc provides)"
msgstr "(rpmrc tillhandahåller)"
-#: lib/depends.c:434
+#: lib/depends.c:438
msgid "(rpmlib provides)"
msgstr "(rpmlib tillhandahåller)"
-#: lib/depends.c:463
+#: lib/depends.c:467
msgid "(db files)"
msgstr "(db-filer)"
-#: lib/depends.c:476
+#: lib/depends.c:480
msgid "(db provides)"
msgstr "(db tillhandahåller)"
-#: lib/depends.c:489
+#: lib/depends.c:493
msgid "(db package)"
msgstr "(db-paket)"
-#: lib/depends.c:839
+#: lib/depends.c:851
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr "ignorera paketnamnsrelation(er) [%d]\t%s -> %s\n"
-#: lib/depends.c:961
+#: lib/depends.c:973
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "tar bort %s \"%s\" från tsort-relationer.\n"
#. Record all relations.
-#: lib/depends.c:1193
+#: lib/depends.c:1207
msgid "========== recording tsort relations\n"
msgstr "========== noterar alla relationer\n"
#. T4. Scan for zeroes.
-#: lib/depends.c:1294
+#: lib/depends.c:1308
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
@@ -1412,20 +1412,20 @@ msgstr ""
"========== tsort:erar paket (ordning, #föregångare, #efterföljare, träd, "
"djup)\n"
-#: lib/depends.c:1377
+#: lib/depends.c:1391
msgid "========== successors only (presentation order)\n"
msgstr "========== endast efterföljare (presentationsordning)\n"
-#: lib/depends.c:1447
+#: lib/depends.c:1461
msgid "LOOP:\n"
msgstr "LOOP:\n"
-#: lib/depends.c:1482
+#: lib/depends.c:1496
msgid "========== continuing tsort ...\n"
msgstr "========== fortsätter med tsort ...\n"
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1487
+#: lib/depends.c:1501
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr "rpmtsOrder misslyckades, %d element återstår\n"
@@ -1449,7 +1449,7 @@ msgstr "(inte en klick)"
#: lib/formats.c:310
#, fuzzy
-msgid "(not a OpenPGP signature"
+msgid "(not an OpenPGP signature)"
msgstr "Gammal PGP-signatur\n"
#: lib/fs.c:77
@@ -1695,11 +1695,16 @@ msgid "malformed rollback time/date stamp argument"
msgstr "felformaterat tid-/datumstämpelargument för återställning"
#: lib/poptI.c:152
+#, fuzzy
+msgid "add suggested packages to transaction"
+msgstr "fråga/verifiera paket från installationstransaktion"
+
+#: lib/poptI.c:156
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:156
+#: lib/poptI.c:160
msgid ""
"remove all packages which match <package> (normally an error is generated if "
"<package> specified multiple packages)"
@@ -1707,140 +1712,140 @@ msgstr ""
"ta bort alla paket som matchar <paket> (normalt ger det ett fel om <paket> "
"anger flera paket)"
-#: lib/poptI.c:162 lib/poptI.c:241 lib/poptI.c:244
+#: lib/poptI.c:166 lib/poptI.c:245 lib/poptI.c:248
msgid "do not execute package scriptlet(s)"
msgstr "kör inte paketskript"
-#: lib/poptI.c:166
+#: lib/poptI.c:170
msgid "relocate files in non-relocateable package"
msgstr "relokera filer i ej relokerbart paket"
-#: lib/poptI.c:169
+#: lib/poptI.c:173
msgid "save erased package files by renaming into sub-directory"
msgstr "spara raderade paketfiler genom att spara dem i underkatalog"
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "erase (uninstall) package"
msgstr "radera (avinstallera) paket"
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "<package>+"
msgstr "<paket>+"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "do not install documentation"
msgstr "installera inte dokumentation"
-#: lib/poptI.c:177
+#: lib/poptI.c:181
msgid "skip files with leading component <path> "
msgstr "hoppa över filer med inledande <sökväg>"
-#: lib/poptI.c:178
+#: lib/poptI.c:182
msgid "<path>"
msgstr "<sökväg>"
-#: lib/poptI.c:183 lib/poptI.c:186
+#: lib/poptI.c:187 lib/poptI.c:190
msgid "short hand for --replacepkgs --replacefiles"
msgstr "kortform för --replacepkgs --replacefiles"
-#: lib/poptI.c:191
+#: lib/poptI.c:195
msgid "upgrade package(s) if already installed"
msgstr "uppgradera paket om redan installerat/de"
-#: lib/poptI.c:192 lib/poptI.c:210 lib/poptI.c:213 lib/poptI.c:320
+#: lib/poptI.c:196 lib/poptI.c:214 lib/poptI.c:217 lib/poptI.c:324
msgid "<packagefile>+"
msgstr "<paketfil>+"
-#: lib/poptI.c:194
+#: lib/poptI.c:198
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:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr "verifiera inte paketarkitektur"
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr "verifiera inte paketets operativsystem"
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr "kontrollera inte diskutrymme före installation"
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr "installera dokumentation"
-#: lib/poptI.c:210 lib/poptI.c:213
+#: lib/poptI.c:214 lib/poptI.c:217
msgid "install package(s)"
msgstr "installera paket"
-#: lib/poptI.c:217
+#: lib/poptI.c:221
msgid "update the database, but do not modify the filesystem"
msgstr "uppdatera databasen, men ändra inte filsystemet"
-#: lib/poptI.c:221 lib/poptI.c:224
+#: lib/poptI.c:225 lib/poptI.c:228
msgid "do not verify package dependencies"
msgstr "verifiera inte paketberoenden"
-#: lib/poptI.c:228 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:232 lib/poptQV.c:275 lib/poptQV.c:278
msgid "don't verify MD5 digest of files"
msgstr "verifiera inte MD5-summor för filer"
-#: lib/poptI.c:231
+#: lib/poptI.c:235
msgid "do not reorder package installation to satisfy dependencies"
msgstr "flytta inte om paketinstallationen för att tillfredsställa beroenden"
-#: lib/poptI.c:236
+#: lib/poptI.c:240
msgid "do not suggest missing dependency resolution(s)"
msgstr "föreslå inte lösning(ar) på saknade beroenden"
-#: lib/poptI.c:248
+#: lib/poptI.c:252
#, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr "utför inte (eventuellt) %%pre-skript"
-#: lib/poptI.c:251
+#: lib/poptI.c:255
#, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr "utför inte (eventuellt) %%post-skript"
-#: lib/poptI.c:254
+#: lib/poptI.c:258
#, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr "utför inte (eventuellt) %%preun-skript"
-#: lib/poptI.c:257
+#: lib/poptI.c:261
#, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr "utför inte (eventuellt) %%postun-skript"
-#: lib/poptI.c:276
+#: lib/poptI.c:280
msgid "do not execute any scriptlet(s) triggered by this package"
msgstr "kör inte skript utlösta av detta paket"
-#: lib/poptI.c:279
+#: lib/poptI.c:283
#, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr "kör inte %%triggerprein-skript"
-#: lib/poptI.c:282
+#: lib/poptI.c:286
#, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr "kör inte %%triggerin-skript"
-#: lib/poptI.c:285
+#: lib/poptI.c:289
#, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr "kör inte %%triggerun-skript"
-#: lib/poptI.c:288
+#: lib/poptI.c:292
#, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr "kör inte %%triggerpostun-skript"
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
@@ -1848,51 +1853,51 @@ msgstr ""
"uppgradera till en gammal version av paketet (--force vid uppgraderingar gör "
"detta automatiskt)"
-#: lib/poptI.c:296
+#: lib/poptI.c:300
msgid "print percentages as package installs"
msgstr "skriv procent allt eftersom paketet installeras"
-#: lib/poptI.c:298
+#: lib/poptI.c:302
msgid "relocate the package to <dir>, if relocatable"
msgstr "flytta paketet till <katalog>, om flyttbart"
-#: lib/poptI.c:299
+#: lib/poptI.c:303
msgid "<dir>"
msgstr "<kat>"
-#: lib/poptI.c:301
+#: lib/poptI.c:305
msgid "relocate files from path <old> to <new>"
msgstr "relokera filer från <gammal> till <ny>"
-#: lib/poptI.c:302
+#: lib/poptI.c:306
msgid "<old>=<new>"
msgstr "<gammal>=<ny>"
-#: lib/poptI.c:305
+#: lib/poptI.c:309
msgid "save erased package files by repackaging"
msgstr "spara raderade paketfiler genom ompaketering"
-#: lib/poptI.c:308
+#: lib/poptI.c:312
msgid "install even if the package replaces installed files"
msgstr "installera även om paketet byter ut installerade filer"
-#: lib/poptI.c:311
+#: lib/poptI.c:315
msgid "reinstall if the package is already present"
msgstr "installera om ifall paketet redan är installerat"
-#: lib/poptI.c:313
+#: lib/poptI.c:317
msgid "deinstall new, reinstall old, package(s), back to <date>"
msgstr "avinstallera nya, ominstallera gamla, paket tillbaka till <datum>"
-#: lib/poptI.c:314
+#: lib/poptI.c:318
msgid "<date>"
msgstr "<datum>"
-#: lib/poptI.c:316
+#: lib/poptI.c:320
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:319
+#: lib/poptI.c:323
msgid "upgrade package(s)"
msgstr "uppgradera paket"
@@ -2147,7 +2152,7 @@ msgstr "%s misslyckades på fil %s: %s\n"
msgid "%s failed: %s\n"
msgstr "%s misslyckades: %s\n"
-#: lib/query.c:122 lib/rpmts.c:413
+#: lib/query.c:122 lib/rpmts.c:430
#, c-format
msgid "incorrect format: %s\n"
msgstr "fel format: %s\n"
@@ -2195,8 +2200,9 @@ msgstr "paketet har varken filägare eller id-listor\n"
msgid "can't query %s: %s\n"
msgstr "kan inte fråga %s: %s\n"
-#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:422 lib/rpminstall.c:553
-#: lib/rpminstall.c:956 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:123 lib/rpminstall.c:452
+#: lib/rpminstall.c:583 lib/rpminstall.c:986 lib/rpmts.c:441
+#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "misslyckades med att öppna %s: %s\n"
@@ -2210,7 +2216,7 @@ msgstr "fråga av %s misslyckades\n"
msgid "old format source packages cannot be queried\n"
msgstr "källpaket i gammalt format går inte att fråga om\n"
-#: lib/query.c:609 lib/rpminstall.c:566
+#: lib/query.c:609 lib/rpminstall.c:596
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "%s: inte en paketlastspecifikation: %s\n"
@@ -2279,16 +2285,16 @@ msgstr "paketpost nummer: %u\n"
msgid "record %u could not be read\n"
msgstr "post %u kunde inte läsas\n"
-#: lib/query.c:907 lib/rpminstall.c:733
+#: lib/query.c:907 lib/rpminstall.c:763
#, c-format
msgid "package %s is not installed\n"
msgstr "paket %s är inte installerat\n"
-#: lib/rpmal.c:696
+#: lib/rpmal.c:697
msgid "(added files)"
msgstr "(lade till filer)"
-#: lib/rpmal.c:773
+#: lib/rpmal.c:774
msgid "(added provide)"
msgstr "(lade till tillhandahållande)"
@@ -2447,109 +2453,114 @@ msgstr "flyttar %s till %s\n"
msgid "relocating directory %s to %s\n"
msgstr "flyttar katalogen %s till %s\n"
-#: lib/rpminstall.c:181
+#: lib/rpminstall.c:186
msgid "Preparing..."
msgstr "Förbereder..."
-#: lib/rpminstall.c:183
+#: lib/rpminstall.c:188
msgid "Preparing packages for installation..."
msgstr "Förbereder paket för installation ..."
-#: lib/rpminstall.c:201
+#: lib/rpminstall.c:206
#, fuzzy
msgid "Repackaging..."
msgstr "Förbereder..."
-#: lib/rpminstall.c:203
+#: lib/rpminstall.c:208
msgid "Repackaging erased files..."
msgstr ""
-#: lib/rpminstall.c:222
+#: lib/rpminstall.c:227
#, fuzzy
msgid "Upgrading..."
msgstr "Förbereder..."
-#: lib/rpminstall.c:224
+#: lib/rpminstall.c:229
#, fuzzy
msgid "Upgrading packages..."
msgstr "uppgradera paket"
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:384
+#, fuzzy, c-format
+msgid "Adding goal: %s\n"
+msgstr "Letar upp %s: (använder %s)...\n"
+
+#: lib/rpminstall.c:399
#, 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:382
+#: lib/rpminstall.c:412
#, c-format
msgid " ... as %s\n"
msgstr " ... som %s\n"
-#: lib/rpminstall.c:386
+#: lib/rpminstall.c:416
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "hoppar över %s - överföring misslyckades - %s\n"
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:507
#, c-format
msgid "package %s is not relocateable\n"
msgstr "paket %s är inte relokerbart\n"
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:557
#, c-format
msgid "error reading from file %s\n"
msgstr "fel vid läsning från fil %s\n"
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:563
#, 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:545 lib/rpminstall.c:812 tools/rpmgraph.c:156
+#: lib/rpminstall.c:575 lib/rpminstall.c:842 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s kan inte installeras\n"
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:611
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr "hittade %d käll- och %d binärpaket\n"
-#: lib/rpminstall.c:595 lib/rpminstall.c:761 lib/rpminstall.c:1160
+#: lib/rpminstall.c:625 lib/rpminstall.c:791 lib/rpminstall.c:1190
#: tools/rpmgraph.c:202
msgid "Failed dependencies:\n"
msgstr "Ouppfyllda beroenden:\n"
-#: lib/rpminstall.c:602 tools/rpmgraph.c:208
+#: lib/rpminstall.c:632 tools/rpmgraph.c:208
msgid " Suggested resolutions:\n"
msgstr " Föreslagna lösningar:\n"
-#: lib/rpminstall.c:632
+#: lib/rpminstall.c:662
msgid "installing binary packages\n"
msgstr "installerar binärpaket\n"
-#: lib/rpminstall.c:656
+#: lib/rpminstall.c:686
#, c-format
msgid "cannot open file %s: %s\n"
msgstr "kan inte öppna filen %s: %s\n"
-#: lib/rpminstall.c:736
+#: lib/rpminstall.c:766
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" anger flera paket\n"
-#: lib/rpminstall.c:796
+#: lib/rpminstall.c:826
#, c-format
msgid "cannot open %s: %s\n"
msgstr "kan inte öppna %s: %s\n"
-#: lib/rpminstall.c:802
+#: lib/rpminstall.c:832
#, c-format
msgid "Installing %s\n"
msgstr "Installerar %s\n"
-#: lib/rpminstall.c:1154
+#: lib/rpminstall.c:1184
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
@@ -2765,13 +2776,23 @@ msgstr "Kan inte öppna %s för läsning: %s.\n"
msgid "cannot open Packages database in %s\n"
msgstr "kan inte öppna paketdatabas i %s\n"
-#: lib/rpmts.c:319
+#: lib/rpmts.c:320
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "kan inte öppna paketdatabas i %s\n"
+#: lib/rpmts.c:456
+#, fuzzy, c-format
+msgid "Adding: %s\n"
+msgstr "rad: %s\n"
+
+#: lib/rpmts.c:467
+#, fuzzy, c-format
+msgid "Suggesting: %s\n"
+msgstr "Hämtar %s\n"
+
#. Get available space on mounted file systems.
-#: lib/rpmts.c:809
+#: lib/rpmts.c:860
msgid "getting list of mounted filesystems\n"
msgstr "hämtar lista över monterade filsystem\n"
diff --git a/po/tr.po b/po/tr.po
index f28350ba2..88e9443bb 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-08-10 13:48-0400\n"
+"POT-Creation-Date: 2002-08-13 12:17-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"
@@ -1282,19 +1282,19 @@ msgstr "paket bağımlılıklarını denetlemez"
msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
msgstr "paket başlıklarını (eski) rpm[23] paketleme ile uyumlu üretir"
-#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:261 lib/poptI.c:268
+#: build/poptBT.c:229 lib/poptALL.c:210 lib/poptI.c:265 lib/poptI.c:272
#: lib/poptQV.c:329 lib/poptQV.c:338 lib/poptQV.c:377
#, fuzzy
msgid "don't verify package digest(s)"
msgstr "paket bağımlılıkları doğrulanmaz"
-#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:263 lib/poptI.c:270
+#: build/poptBT.c:231 lib/poptALL.c:212 lib/poptI.c:267 lib/poptI.c:274
#: lib/poptQV.c:332 lib/poptQV.c:340 lib/poptQV.c:380
#, fuzzy
msgid "don't verify database header(s) when retrieved"
msgstr "paket mimarisi denetlenmez"
-#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:265 lib/poptI.c:272
+#: build/poptBT.c:233 lib/poptALL.c:218 lib/poptI.c:269 lib/poptI.c:276
#: lib/poptQV.c:335 lib/poptQV.c:342 lib/poptQV.c:382
#, fuzzy
msgid "don't verify package signature(s)"
@@ -1389,52 +1389,52 @@ msgstr " başarısız - "
msgid "package %s was already added, replacing with %s\n"
msgstr "%s zaten kurulu"
-#: lib/depends.c:391
+#: lib/depends.c:394
msgid "(cached)"
msgstr ""
-#: lib/depends.c:417
+#: lib/depends.c:421
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %-45s EVET (rpmrc sağlar)\n"
-#: lib/depends.c:434
+#: lib/depends.c:438
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %-45s EVET (rpmlib sağlar)\n"
-#: lib/depends.c:463
+#: lib/depends.c:467
#, fuzzy
msgid "(db files)"
msgstr "db dosyası %s hatalı\n"
-#: lib/depends.c:476
+#: lib/depends.c:480
#, fuzzy
msgid "(db provides)"
msgstr "%s: %-45s EVET (db sağlar)\n"
-#: lib/depends.c:489
+#: lib/depends.c:493
#, fuzzy
msgid "(db package)"
msgstr "paket yok\n"
-#: lib/depends.c:839
+#: lib/depends.c:851
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:961
+#: lib/depends.c:973
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "tsort bağıntılarından %s-%s-%s \"%s\" kaldırılıyor\n"
#. Record all relations.
-#: lib/depends.c:1193
+#: lib/depends.c:1207
msgid "========== recording tsort relations\n"
msgstr "========== tsort bağıntıları kaydediliyor\n"
#. T4. Scan for zeroes.
-#: lib/depends.c:1294
+#: lib/depends.c:1308
#, fuzzy
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
@@ -1442,20 +1442,20 @@ msgid ""
msgstr ""
"========== paketler tsort'lanıyor (sıra, #öncüller, #ardıllar, derinlik)\n"
-#: lib/depends.c:1377
+#: lib/depends.c:1391
msgid "========== successors only (presentation order)\n"
msgstr "========== sadece ardıllar (sunum sırası)\n"
-#: lib/depends.c:1447
+#: lib/depends.c:1461
msgid "LOOP:\n"
msgstr "ÇEVRİM:\n"
-#: lib/depends.c:1482
+#: lib/depends.c:1496
msgid "========== continuing tsort ...\n"
msgstr "========== tsort sürüyor ...\n"
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1487
+#: lib/depends.c:1501
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1481,7 +1481,7 @@ msgstr "(bir sayı değil)"
#: lib/formats.c:310
#, fuzzy
-msgid "(not a OpenPGP signature"
+msgid "(not an OpenPGP signature)"
msgstr "tüm PGP imzalarını atlar"
#: lib/fs.c:77
@@ -1732,10 +1732,15 @@ msgid "malformed rollback time/date stamp argument"
msgstr "tekrarlama zamanı bozuk"
#: lib/poptI.c:152
+#, fuzzy
+msgid "add suggested packages to transaction"
+msgstr "gruptaki paketleri sorgular/denetler"
+
+#: lib/poptI.c:156
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:156
+#: lib/poptI.c:160
msgid ""
"remove all packages which match <package> (normally an error is generated if "
"<package> specified multiple packages)"
@@ -1743,142 +1748,142 @@ msgstr ""
"<paket> ile eşlenen tüm paketleri kaldırır(<paket> ile çok sayıda paket "
"belirtilmişse normalde bir hata oluşur)"
-#: lib/poptI.c:162 lib/poptI.c:241 lib/poptI.c:244
+#: lib/poptI.c:166 lib/poptI.c:245 lib/poptI.c:248
msgid "do not execute package scriptlet(s)"
msgstr "paket betikleri çalıştırılmaz"
-#: lib/poptI.c:166
+#: lib/poptI.c:170
msgid "relocate files in non-relocateable package"
msgstr "yeniden konumlanamayan paketin dosyalarını yeniden konumlandırır"
-#: lib/poptI.c:169
+#: lib/poptI.c:173
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:172
+#: lib/poptI.c:176
msgid "erase (uninstall) package"
msgstr "paketi kaldırır"
-#: lib/poptI.c:172
+#: lib/poptI.c:176
msgid "<package>+"
msgstr "<paket>+"
-#: lib/poptI.c:175
+#: lib/poptI.c:179
msgid "do not install documentation"
msgstr "belgeleri kurmaz"
-#: lib/poptI.c:177
+#: lib/poptI.c:181
msgid "skip files with leading component <path> "
msgstr "<dosyayolu> ile başlayan dosyaları atlar "
-#: lib/poptI.c:178
+#: lib/poptI.c:182
msgid "<path>"
msgstr "<dosyaYolu>"
-#: lib/poptI.c:183 lib/poptI.c:186
+#: lib/poptI.c:187 lib/poptI.c:190
msgid "short hand for --replacepkgs --replacefiles"
msgstr "--replacepkgs --replacefiles için kısaltma"
-#: lib/poptI.c:191
+#: lib/poptI.c:195
msgid "upgrade package(s) if already installed"
msgstr "paket(ler) kurulu ise paket(ler)i günceller"
-#: lib/poptI.c:192 lib/poptI.c:210 lib/poptI.c:213 lib/poptI.c:320
+#: lib/poptI.c:196 lib/poptI.c:214 lib/poptI.c:217 lib/poptI.c:324
msgid "<packagefile>+"
msgstr "<paketDosyası>+"
-#: lib/poptI.c:194
+#: lib/poptI.c:198
msgid "print hash marks as package installs (good with -v)"
msgstr "paketin kurulma sürecini gösteren imler basar (-v ile)"
-#: lib/poptI.c:197
+#: lib/poptI.c:201
msgid "don't verify package architecture"
msgstr "paket mimarisi denetlenmez"
-#: lib/poptI.c:200
+#: lib/poptI.c:204
msgid "don't verify package operating system"
msgstr "paketin ait olduğu işletim sistemini doğrulamaz"
-#: lib/poptI.c:203
+#: lib/poptI.c:207
msgid "don't check disk space before installing"
msgstr "yüklemeden önce yeterli disk alanı kontrolu yapmaz"
-#: lib/poptI.c:205
+#: lib/poptI.c:209
msgid "install documentation"
msgstr "paket ile gelen belgeleri kurar"
-#: lib/poptI.c:210 lib/poptI.c:213
+#: lib/poptI.c:214 lib/poptI.c:217
#, fuzzy
msgid "install package(s)"
msgstr "paketi kurar"
-#: lib/poptI.c:217
+#: lib/poptI.c:221
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:221 lib/poptI.c:224
+#: lib/poptI.c:225 lib/poptI.c:228
msgid "do not verify package dependencies"
msgstr "paket bağımlılıklarını denetlemez"
-#: lib/poptI.c:228 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:232 lib/poptQV.c:275 lib/poptQV.c:278
msgid "don't verify MD5 digest of files"
msgstr "dosyaların MD5 özümlemesi doğrulanmaz"
-#: lib/poptI.c:231
+#: lib/poptI.c:235
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:236
+#: lib/poptI.c:240
msgid "do not suggest missing dependency resolution(s)"
msgstr ""
-#: lib/poptI.c:248
+#: lib/poptI.c:252
#, c-format
msgid "do not execute %%pre scriptlet (if any)"
msgstr "%%pre betiği (varsa) çalıştırılmaz"
-#: lib/poptI.c:251
+#: lib/poptI.c:255
#, c-format
msgid "do not execute %%post scriptlet (if any)"
msgstr "%%post betiği (varsa) çalıştırılmaz"
-#: lib/poptI.c:254
+#: lib/poptI.c:258
#, c-format
msgid "do not execute %%preun scriptlet (if any)"
msgstr "%%preun betiği (varsa) çalıştırılmaz"
-#: lib/poptI.c:257
+#: lib/poptI.c:261
#, c-format
msgid "do not execute %%postun scriptlet (if any)"
msgstr "%%postun betiği (varsa) çalıştırılmaz"
-#: lib/poptI.c:276
+#: lib/poptI.c:280
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:279
+#: lib/poptI.c:283
#, c-format
msgid "do not execute any %%triggerprein scriptlet(s)"
msgstr "hiçbir %%triggerprein betiği çalıştırılmaz"
-#: lib/poptI.c:282
+#: lib/poptI.c:286
#, c-format
msgid "do not execute any %%triggerin scriptlet(s)"
msgstr "hiçbir %%triggerin betiği çalıştırılmaz."
-#: lib/poptI.c:285
+#: lib/poptI.c:289
#, c-format
msgid "do not execute any %%triggerun scriptlet(s)"
msgstr "hiçbir %%triggerun betiği çalıştırılmaz."
-#: lib/poptI.c:288
+#: lib/poptI.c:292
#, c-format
msgid "do not execute any %%triggerpostun scriptlet(s)"
msgstr "hiçbir %%triggerpostun betiği çalıştırılmaz."
-#: lib/poptI.c:292
+#: lib/poptI.c:296
msgid ""
"upgrade to an old version of the package (--force on upgrades does this "
"automatically)"
@@ -1886,53 +1891,53 @@ msgstr ""
"paketin eski bir sürüme güncellenmesini sağlar (--force aynı işi otomatik "
"yapar)"
-#: lib/poptI.c:296
+#: lib/poptI.c:300
msgid "print percentages as package installs"
msgstr "kurulumun gelişimi yüzde olarak gösterilir"
-#: lib/poptI.c:298
+#: lib/poptI.c:302
msgid "relocate the package to <dir>, if relocatable"
msgstr "eğer değitirilebiliyorsa paketin yerini <dizin>'e değiştirir"
-#: lib/poptI.c:299
+#: lib/poptI.c:303
msgid "<dir>"
msgstr "<dizin>"
-#: lib/poptI.c:301
+#: lib/poptI.c:305
msgid "relocate files from path <old> to <new>"
msgstr "dosyaları <eski> dizininden kaldırıp <yeni> dizinine yerleştirir"
-#: lib/poptI.c:302
+#: lib/poptI.c:306
msgid "<old>=<new>"
msgstr "<eski>=<yeni>"
-#: lib/poptI.c:305
+#: lib/poptI.c:309
msgid "save erased package files by repackaging"
msgstr "yeniden paketleme sırasında silinen paket dosyalarını kaydeder"
-#: lib/poptI.c:308
+#: lib/poptI.c:312
msgid "install even if the package replaces installed files"
msgstr "paket dosyaları mevcut dosyalarla yer değiştirse bile paketi kurar"
-#: lib/poptI.c:311
+#: lib/poptI.c:315
msgid "reinstall if the package is already present"
msgstr "paketi yeniden kurar"
-#: lib/poptI.c:313
+#: lib/poptI.c:317
#, 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:314
+#: lib/poptI.c:318
msgid "<date>"
msgstr "<tarih>"
-#: lib/poptI.c:316
+#: lib/poptI.c:320
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:319
+#: lib/poptI.c:323
msgid "upgrade package(s)"
msgstr "paket günceller"
@@ -2198,7 +2203,7 @@ msgstr "%s açılamadı: %s\n"
msgid "%s failed: %s\n"
msgstr "%s başarısız\n"
-#: lib/query.c:122 lib/rpmts.c:413
+#: lib/query.c:122 lib/rpmts.c:430
#, c-format
msgid "incorrect format: %s\n"
msgstr "biçem yanlış: %s\n"
@@ -2247,8 +2252,9 @@ msgstr "paket ne dosya sahibi ne de kimlik listesi içeriyor\n"
msgid "can't query %s: %s\n"
msgstr "%s sorgulanamıyor: %s\n"
-#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:422 lib/rpminstall.c:553
-#: lib/rpminstall.c:956 tools/rpmgraph.c:127 tools/rpmgraph.c:164
+#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:123 lib/rpminstall.c:452
+#: lib/rpminstall.c:583 lib/rpminstall.c:986 lib/rpmts.c:441
+#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "%s açılamadı: %s\n"
@@ -2262,7 +2268,7 @@ msgstr "%s 'nin sorgulaması başarısızlıkla sonuçlandı\n"
msgid "old format source packages cannot be queried\n"
msgstr "eski biçem kaynak paketleri sorgulanamaz\n"
-#: lib/query.c:609 lib/rpminstall.c:566
+#: lib/query.c:609 lib/rpminstall.c:596
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "%s tetikleyen paket yok\n"
@@ -2331,17 +2337,17 @@ msgstr "paket kayıt numarası: %u\n"
msgid "record %u could not be read\n"
msgstr "%u. kayıt okunamadı\n"
-#: lib/query.c:907 lib/rpminstall.c:733
+#: lib/query.c:907 lib/rpminstall.c:763
#, c-format
msgid "package %s is not installed\n"
msgstr "%s paketi kurulu değil\n"
-#: lib/rpmal.c:696
+#: lib/rpmal.c:697
#, fuzzy
msgid "(added files)"
msgstr "db dosyası %s hatalı\n"
-#: lib/rpmal.c:773
+#: lib/rpmal.c:774
#, fuzzy
msgid "(added provide)"
msgstr "%s: %-45s EVET (önlem eklendi)\n"
@@ -2501,110 +2507,115 @@ msgstr "%s %s'e konumlanıyor\n"
msgid "relocating directory %s to %s\n"
msgstr "%s dizini %s de yeniden konumlanıyor\n"
-#: lib/rpminstall.c:181
+#: lib/rpminstall.c:186
msgid "Preparing..."
msgstr "Hazırlanıyor..."
-#: lib/rpminstall.c:183
+#: lib/rpminstall.c:188
msgid "Preparing packages for installation..."
msgstr "Kurulacak paketler hazırlanıyor..."
-#: lib/rpminstall.c:201
+#: lib/rpminstall.c:206
#, fuzzy
msgid "Repackaging..."
msgstr "Hazırlanıyor..."
-#: lib/rpminstall.c:203
+#: lib/rpminstall.c:208
msgid "Repackaging erased files..."
msgstr ""
-#: lib/rpminstall.c:222
+#: lib/rpminstall.c:227
#, fuzzy
msgid "Upgrading..."
msgstr "Hazırlanıyor..."
-#: lib/rpminstall.c:224
+#: lib/rpminstall.c:229
#, fuzzy
msgid "Upgrading packages..."
msgstr "paket günceller"
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:384
+#, fuzzy, c-format
+msgid "Adding goal: %s\n"
+msgstr "%s aranıyor: (%s kullanarak)...\n"
+
+#: lib/rpminstall.c:399
#, 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:382
+#: lib/rpminstall.c:412
#, c-format
msgid " ... as %s\n"
msgstr "... %s olarak\n"
-#: lib/rpminstall.c:386
+#: lib/rpminstall.c:416
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "%s atlanıyor - aktarım başarısız - %s\n"
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:507
#, c-format
msgid "package %s is not relocateable\n"
msgstr "%s paketi yeniden konumlandırılamaz\n"
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:557
#, c-format
msgid "error reading from file %s\n"
msgstr "%s dosyasından okuma hatalı\n"
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:563
#, 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:545 lib/rpminstall.c:812 tools/rpmgraph.c:156
+#: lib/rpminstall.c:575 lib/rpminstall.c:842 tools/rpmgraph.c:156
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s yüklenemedi\n"
-#: lib/rpminstall.c:581
+#: lib/rpminstall.c:611
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr "%d kaynak ve %d icra edilebilir paketi bulundu\n"
-#: lib/rpminstall.c:595 lib/rpminstall.c:761 lib/rpminstall.c:1160
+#: lib/rpminstall.c:625 lib/rpminstall.c:791 lib/rpminstall.c:1190
#: tools/rpmgraph.c:202
#, fuzzy
msgid "Failed dependencies:\n"
msgstr "bağımlılıklarda hata; gerekli paketler:\n"
-#: lib/rpminstall.c:602 tools/rpmgraph.c:208
+#: lib/rpminstall.c:632 tools/rpmgraph.c:208
msgid " Suggested resolutions:\n"
msgstr ""
-#: lib/rpminstall.c:632
+#: lib/rpminstall.c:662
msgid "installing binary packages\n"
msgstr "icra edilebilir paketleri kuruluyor\n"
-#: lib/rpminstall.c:656
+#: lib/rpminstall.c:686
#, c-format
msgid "cannot open file %s: %s\n"
msgstr "%s dosyası açılamadı: %s\n"
-#: lib/rpminstall.c:736
+#: lib/rpminstall.c:766
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" birden fazla paketi tanımlıyor\n"
-#: lib/rpminstall.c:796
+#: lib/rpminstall.c:826
#, c-format
msgid "cannot open %s: %s\n"
msgstr "%s açılamadı: %s\n"
-#: lib/rpminstall.c:802
+#: lib/rpminstall.c:832
#, c-format
msgid "Installing %s\n"
msgstr "%s kuruluyor\n"
-#: lib/rpminstall.c:1154
+#: lib/rpminstall.c:1184
#, c-format
msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
msgstr ""
@@ -2821,13 +2832,23 @@ msgstr "%s okuma erişimi için açılamadı: %s.\n"
msgid "cannot open Packages database in %s\n"
msgstr "%s de Paket veritabanı açılamadı\n"
-#: lib/rpmts.c:319
+#: lib/rpmts.c:320
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "%s dizininde rpm veritabanı açılamıyor\n"
+#: lib/rpmts.c:456
+#, fuzzy, c-format
+msgid "Adding: %s\n"
+msgstr "satır: %s\n"
+
+#: lib/rpmts.c:467
+#, fuzzy, c-format
+msgid "Suggesting: %s\n"
+msgstr "%s alınıyor\n"
+
#. Get available space on mounted file systems.
-#: lib/rpmts.c:809
+#: lib/rpmts.c:860
msgid "getting list of mounted filesystems\n"
msgstr "bağlı dosya sistemlerinin listesi alınıyor\n"
diff --git a/python/rpmmodule.c b/python/rpmmodule.c
index 67333871c..c84f9fb58 100644
--- a/python/rpmmodule.c
+++ b/python/rpmmodule.c
@@ -498,8 +498,10 @@ void initrpm(void)
REGISTER_ENUM(RPMTRANS_FLAG_NOPREUN);
REGISTER_ENUM(RPMTRANS_FLAG_NOPOSTUN);
REGISTER_ENUM(RPMTRANS_FLAG_NOTRIGGERPOSTUN);
+ REGISTER_ENUM(RPMTRANS_FLAG_CHAINSAW);
REGISTER_ENUM(RPMTRANS_FLAG_NOMD5);
REGISTER_ENUM(RPMTRANS_FLAG_NOSUGGEST);
+ REGISTER_ENUM(RPMTRANS_FLAG_ADDINDEPS);
REGISTER_ENUM(RPMPROB_FILTER_IGNOREOS);
REGISTER_ENUM(RPMPROB_FILTER_IGNOREARCH);
diff --git a/python/rpmts-py.c b/python/rpmts-py.c
index 14e2e1902..8deac8a59 100644
--- a/python/rpmts-py.c
+++ b/python/rpmts-py.c
@@ -310,7 +310,7 @@ rpmts_SolveCallback(rpmts ts, rpmds ds, void * data)
int res = 1;
if (_rpmts_debug)
-fprintf(stderr, "*** rpmts_SolveCallback(%p,%p,%p) %s\n", ts, ds, data, rpmdsDNEVR(ds));
+fprintf(stderr, "*** rpmts_SolveCallback(%p,%p,%p) \"%s\"\n", ts, ds, data, rpmdsDNEVR(ds));
if (cbInfo->tso == NULL) return res;
if (cbInfo->pythonError) return res;
diff --git a/rpm.spec.in b/rpm.spec.in
index fce012c79..7dd73907b 100644
--- a/rpm.spec.in
+++ b/rpm.spec.in
@@ -17,7 +17,7 @@ Name: rpm
%define version @VERSION@
Version: %{version}
%{expand: %%define rpm_version %{version}}
-Release: 0.77
+Release: 0.78
Group: System Environment/Base
Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/rpm-%{rpm_version}.tar.gz
Copyright: GPL
@@ -517,6 +517,9 @@ fi
%{__prefix}/include/popt.h
%changelog
+* Tue Aug 13 2002 Jeff Johnson <jbj@redhat.com> 4.1-0.78
+- supply transitive closure for CLI packages from rpmdb-redhat database.
+
* Fri Aug 9 2002 Jeff Johnson <jbj@redhat.com> 4.1-0.77
- python: add return codes for rollbacks and fooDB methods.
- avoid generating fingerprints for locale/zoneinfo sub-directories.