summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES2
-rw-r--r--lib/depends.c20
-rw-r--r--lib/psm.c9
-rw-r--r--lib/query.c17
-rw-r--r--lib/rpmlib.h24
-rw-r--r--lib/rpmte.c14
-rw-r--r--lib/rpmte.h11
-rw-r--r--lib/rpmts.c21
-rw-r--r--lib/rpmts.h8
-rw-r--r--lib/transaction.c27
-rw-r--r--po/cs.po130
-rw-r--r--po/da.po130
-rw-r--r--po/de.po130
-rw-r--r--po/fi.po130
-rw-r--r--po/fr.po130
-rw-r--r--po/gl.po130
-rw-r--r--po/is.po130
-rw-r--r--po/ja.po130
-rw-r--r--po/ko.po130
-rw-r--r--po/no.po130
-rw-r--r--po/pl.po130
-rw-r--r--po/pt.po130
-rw-r--r--po/pt_BR.po130
-rw-r--r--po/ro.po130
-rw-r--r--po/rpm.pot130
-rw-r--r--po/ru.po130
-rw-r--r--po/sk.po130
-rw-r--r--po/sl.po132
-rw-r--r--po/sr.po130
-rw-r--r--po/sv.po130
-rw-r--r--po/tr.po130
-rw-r--r--rpm.spec.in6
-rw-r--r--rpmdb/hdrNVR.c32
33 files changed, 1545 insertions, 1378 deletions
diff --git a/CHANGES b/CHANGES
index e56cc9384..2402d0356 100644
--- a/CHANGES
+++ b/CHANGES
@@ -109,6 +109,8 @@
- file: *really* read elf64 notes correctly.
- python: restore thread context on errorCB (#80744).
- teach rpmquery to return "owning" package(s) in spite of alternatives.
+ - duplicate package checks with arch/os checks if colored.
+ - file conflict checks with colors.
4.0.4 -> 4.1:
- loosely wire beecrypt library into rpm.
diff --git a/lib/depends.c b/lib/depends.c
index b4fbdb721..57bd0dfa3 100644
--- a/lib/depends.c
+++ b/lib/depends.c
@@ -132,6 +132,9 @@ int rpmtsAddInstallElement(rpmts ts, Header h,
int isSource;
int duplicate = 0;
rpmtsi pi; rpmte p;
+ HGE_t hge = (HGE_t)headerGetEntryMinMemory;
+ const char * arch;
+ const char * os;
rpmds add;
rpmds obsoletes;
alKey pkgKey; /* addedPackages key */
@@ -141,18 +144,33 @@ int rpmtsAddInstallElement(rpmts ts, Header h,
int oc;
/*
- * Check for previously added versions with the same name.
+ * Check for previously added versions with the same name and arch/os.
* FIXME: only catches previously added, older packages.
*/
add = rpmdsThis(h, RPMTAG_REQUIRENAME, (RPMSENSE_EQUAL|RPMSENSE_LESS));
+ arch = NULL;
+ xx = hge(h, RPMTAG_ARCH, NULL, (void **)&arch, NULL);
+ os = NULL;
+ xx = hge(h, RPMTAG_OS, NULL, (void **)&os, NULL);
pkgKey = RPMAL_NOMATCH;
for (pi = rpmtsiInit(ts), oc = 0; (p = rpmtsiNext(pi, 0)) != NULL; oc++) {
+ const char * parch;
+ const char * pos;
rpmds this;
/* XXX Only added packages need be checked for dupes. */
if (rpmteType(p) == TR_REMOVED)
continue;
+ if (tscolor) {
+ if (arch == NULL || (parch = rpmteA(p)) == NULL)
+ continue;
+ if (os == NULL || (pos = rpmteO(p)) == NULL)
+ continue;
+ if (strcmp(arch, parch) || strcmp(os, pos))
+ continue;
+ }
+
if ((this = rpmteDS(p, RPMTAG_NAME)) == NULL)
continue; /* XXX can't happen */
diff --git a/lib/psm.c b/lib/psm.c
index e9c15381b..3764d7e57 100644
--- a/lib/psm.c
+++ b/lib/psm.c
@@ -1405,6 +1405,7 @@ rpmpsm rpmpsmNew(rpmts ts, rpmte te, rpmfi fi)
rpmRC rpmpsmStage(rpmpsm psm, pkgStage stage)
{
const rpmts ts = psm->ts;
+ uint_32 tscolor = rpmtsColor(ts);
rpmfi fi = psm->fi;
HGE_t hge = fi->hge;
HFD_t hfd = (fi->hfd ? fi->hfd : headerFreeData);
@@ -1445,8 +1446,14 @@ assert(psm->mi == NULL);
rpmteV(psm->te));
xx = rpmdbSetIteratorRE(psm->mi, RPMTAG_RELEASE, RPMMIRE_DEFAULT,
rpmteR(psm->te));
+ if (tscolor) {
+ xx = rpmdbSetIteratorRE(psm->mi, RPMTAG_ARCH, RPMMIRE_DEFAULT,
+ rpmteA(psm->te));
+ xx = rpmdbSetIteratorRE(psm->mi, RPMTAG_OS, RPMMIRE_DEFAULT,
+ rpmteO(psm->te));
+ }
- while ((psm->oh = rpmdbNextIterator(psm->mi))) {
+ while ((psm->oh = rpmdbNextIterator(psm->mi)) != NULL) {
fi->record = rpmdbGetIteratorOffset(psm->mi);
psm->oh = NULL;
/*@loopbreak@*/ break;
diff --git a/lib/query.c b/lib/query.c
index a4007dd32..434990042 100644
--- a/lib/query.c
+++ b/lib/query.c
@@ -123,14 +123,17 @@ static inline /*@null@*/ const char * queryHeader(Header h, const char * qfmt)
return str;
}
-int showQueryPackage(QVA_t qva, /*@unused@*/ rpmts ts, Header h)
+int showQueryPackage(QVA_t qva, rpmts ts, Header h)
{
+ uint_32 tscolor = rpmtsColor(ts);
+ HGE_t hge = (HGE_t)headerGetEntryMinMemory;
int scareMem = 1;
rpmfi fi = NULL;
char * t, * te;
char * prefix = NULL;
int rc = 0; /* XXX FIXME: need real return code */
int nonewline = 0;
+ int xx;
int i;
te = t = xmalloc(BUFSIZ);
@@ -140,12 +143,14 @@ int showQueryPackage(QVA_t qva, /*@unused@*/ rpmts ts, Header h)
if (!(qva->qva_flags & _QUERY_FOR_BITS) && qva->qva_queryFormat == NULL)
{
- const char * name, * version, * release;
- (void) headerNVR(h, &name, &version, &release);
+ const char * n, * v, * r, * a;
+ (void) headerNEVRA(h, &n, NULL, &v, &r, &a);
/*@-boundswrite@*/
- te = stpcpy(te, name);
- te = stpcpy( stpcpy(te, "-"), version);
- te = stpcpy( stpcpy(te, "-"), release);
+ te = stpcpy(te, n);
+ te = stpcpy( stpcpy(te, "-"), v);
+ te = stpcpy( stpcpy(te, "-"), r);
+ if (tscolor)
+ te = stpcpy( stpcpy(te, "."), a);
/*@=boundswrite@*/
goto exit;
}
diff --git a/lib/rpmlib.h b/lib/rpmlib.h
index ad351bdda..3bb204e21 100644
--- a/lib/rpmlib.h
+++ b/lib/rpmlib.h
@@ -112,9 +112,9 @@ typedef /*@abstract@*/ struct _rpmdbMatchIterator * rpmdbMatchIterator;
/** \ingroup header
* Return name, version, release strings from header.
* @param h header
- * @retval np address of name pointer (or NULL)
- * @retval vp address of version pointer (or NULL)
- * @retval rp address of release pointer (or NULL)
+ * @retval *np name pointer (or NULL)
+ * @retval *vp version pointer (or NULL)
+ * @retval *rp release pointer (or NULL)
* @return 0 always
*/
int headerNVR(Header h,
@@ -124,6 +124,24 @@ int headerNVR(Header h,
/*@modifies *np, *vp, *rp @*/;
/** \ingroup header
+ * Return name, epoch, version, release, arch strings from header.
+ * @param h header
+ * @retval *np name pointer (or NULL)
+ * @retval *ep epoch pointer (or NULL)
+ * @retval *vp version pointer (or NULL)
+ * @retval *rp release pointer (or NULL)
+ * @retval *ap arch pointer (or NULL)
+ * @return 0 always
+ */
+int headerNEVRA(Header h,
+ /*@null@*/ /*@out@*/ const char ** np,
+ /*@null@*/ /*@out@*/ /*@unused@*/ const char ** ep,
+ /*@null@*/ /*@out@*/ const char ** vp,
+ /*@null@*/ /*@out@*/ const char ** rp,
+ /*@null@*/ /*@out@*/ const char ** ap)
+ /*@modifies *np, *vp, *rp, *ap @*/;
+
+/** \ingroup header
* Translate and merge legacy signature tags into header.
* @todo Remove headerSort() through headerInitIterator() modifies sig.
* @param h header
diff --git a/lib/rpmte.c b/lib/rpmte.c
index ced6690af..0fb74c756 100644
--- a/lib/rpmte.c
+++ b/lib/rpmte.c
@@ -64,6 +64,7 @@ static void delTE(rpmte p)
p->epoch = _free(p->epoch);
p->name = _free(p->name);
p->NEVR = _free(p->NEVR);
+ p->NEVRA = _free(p->NEVRA);
p->h = headerFree(p->h);
@@ -95,6 +96,8 @@ static void addTE(rpmts ts, rpmte p, Header h,
rpmte savep;
int_32 * ep;
const char * arch, * os;
+ char * t;
+ size_t nb;
int xx;
p->NEVR = hGetNEVR(h, NULL);
@@ -111,6 +114,12 @@ static void addTE(rpmts ts, rpmte p, Header h,
xx = hge(h, RPMTAG_OS, NULL, (void **)&os, NULL);
p->os = (os != NULL ? xstrdup(os) : NULL);
+ nb = strlen(p->NEVR) + 1;
+ if (p->arch)
+ nb += strlen(arch) + 1;
+ p->NEVRA = t = xmalloc(nb);
+ (void) stpcpy( stpcpy( stpcpy(t, p->NEVR), "."), p->arch);
+
ep = NULL;
xx = hge(h, RPMTAG_EPOCH, NULL, (void **)&ep, NULL);
/*@-branchstate@*/
@@ -384,6 +393,11 @@ const char * rpmteNEVR(rpmte te)
return (te != NULL ? te->NEVR : NULL);
}
+const char * rpmteNEVRA(rpmte te)
+{
+ return (te != NULL ? te->NEVRA : NULL);
+}
+
FD_t rpmteFd(rpmte te)
{
/*@-compdef -refcounttrans -retalias -retexpose -usereleased @*/
diff --git a/lib/rpmte.h b/lib/rpmte.h
index b209014ba..7451ee60a 100644
--- a/lib/rpmte.h
+++ b/lib/rpmte.h
@@ -63,6 +63,8 @@ struct rpmte_s {
Header h; /*!< Package header. */
/*@only@*/
const char * NEVR; /*!< Package name-version-release. */
+/*@only@*/
+ const char * NEVRA; /*!< Package name-version-release.arch. */
/*@owned@*/
const char * name; /*!< Name: */
/*@only@*/ /*@null@*/
@@ -409,6 +411,15 @@ extern const char * rpmteNEVR(rpmte te)
/*@*/;
/**
+ * Retrieve name-version-release.arch string from transaction element.
+ * @param te transaction element
+ * @return name-version-release.arch string
+ */
+/*@observer@*/
+extern const char * rpmteNEVRA(rpmte te)
+ /*@*/;
+
+/**
* Retrieve file handle from transaction element.
* @param te transaction element
* @return file handle
diff --git a/lib/rpmts.c b/lib/rpmts.c
index f9fec1c56..29c344143 100644
--- a/lib/rpmts.c
+++ b/lib/rpmts.c
@@ -84,6 +84,27 @@ char * hGetNEVR(Header h, const char ** np)
return NVR;
}
+uint_32 hGetColor(Header h)
+{
+ HGE_t hge = (HGE_t)headerGetEntryMinMemory;
+ uint_32 hcolor = 0;
+ uint_32 * fcolors;
+ int_32 ncolors;
+ int i;
+
+ fcolors = NULL;
+ ncolors = 0;
+ if (hge(h, RPMTAG_FILECOLORS, NULL, (void **)&fcolors, &ncolors)
+ && fcolors != NULL && ncolors > 0)
+ {
+ for (i = 0; i < ncolors; i++)
+ hcolor |= fcolors[i];
+ }
+ hcolor &= 0x0f;
+
+ return hcolor;
+}
+
rpmts XrpmtsUnlink(rpmts ts, const char * msg, const char * fn, unsigned ln)
{
/*@-modfilesys@*/
diff --git a/lib/rpmts.h b/lib/rpmts.h
index 9cc09f6e7..7f82e1e82 100644
--- a/lib/rpmts.h
+++ b/lib/rpmts.h
@@ -894,6 +894,14 @@ int rpmtsGetKeys(rpmts ts,
/*@only@*/ char * hGetNEVR(Header h, /*@null@*/ /*@out@*/ const char ** np )
/*@modifies *np @*/;
+/**
+ * Return header color.
+ * @param h header
+ * @return header color
+ */
+uint_32 hGetColor(Header h)
+ /*@modifies h @*/;
+
#ifdef __cplusplus
}
#endif
diff --git a/lib/transaction.c b/lib/transaction.c
index 48dae67da..a465494fa 100644
--- a/lib/transaction.c
+++ b/lib/transaction.c
@@ -215,6 +215,9 @@ static int handleInstInstalledFiles(const rpmts ts,
/*@globals rpmGlobalMacroContext, fileSystem, internalState @*/
/*@modifies ts, fi, rpmGlobalMacroContext, fileSystem, internalState @*/
{
+ uint_32 tscolor = rpmtsColor(ts);
+ uint_32 otecolor, tecolor;
+ uint_32 oficolor, ficolor;
const char * altNEVR = NULL;
rpmfi otherFi = NULL;
int numReplaced = 0;
@@ -238,6 +241,18 @@ static int handleInstInstalledFiles(const rpmts ts,
if (otherFi == NULL)
return 1;
+ /* Compute package color. */
+ tecolor = rpmteColor(p);
+ tecolor &= tscolor;
+
+ /* Compute other pkg color. */
+ otecolor = 0;
+ otherFi = rpmfiInit(otherFi, 0);
+ if (otherFi != NULL)
+ while (rpmfiNext(otherFi) >= 0)
+ otecolor |= rpmfiFColor(otherFi);
+ otecolor &= tscolor;
+
fi->replaced = xcalloc(sharedCount, sizeof(*fi->replaced));
ps = rpmtsProblems(ts);
@@ -247,9 +262,13 @@ static int handleInstInstalledFiles(const rpmts ts,
otherFileNum = shared->otherFileNum;
(void) rpmfiSetFX(otherFi, otherFileNum);
+ oficolor = rpmfiFColor(otherFi);
+ oficolor &= tscolor;
fileNum = shared->pkgFileNum;
(void) rpmfiSetFX(fi, fileNum);
+ ficolor = rpmfiFColor(fi);
+ ficolor &= tscolor;
isCfgFile = ((rpmfiFFlags(otherFi) | rpmfiFFlags(fi)) & RPMFILE_CONFIG);
@@ -263,6 +282,8 @@ static int handleInstInstalledFiles(const rpmts ts,
continue;
if (filecmp(otherFi, fi)) {
+ /* Report conflicts only for packages/files of same color. */
+ if (tscolor == 0 || (tecolor == otecolor && ficolor == oficolor))
if (reportConflicts) {
rpmpsAppend(ps, RPMPROB_FILE_CONFLICT,
rpmteNEVR(p), rpmteKey(p),
@@ -1086,6 +1107,12 @@ rpmMessage(RPMMESS_DEBUG, _("sanity checking %d elements\n"), rpmtsNElements(ts)
rpmteV(p));
xx = rpmdbSetIteratorRE(mi, RPMTAG_RELEASE, RPMMIRE_DEFAULT,
rpmteR(p));
+ if (tscolor) {
+ xx = rpmdbSetIteratorRE(mi, RPMTAG_ARCH, RPMMIRE_DEFAULT,
+ rpmteA(p));
+ xx = rpmdbSetIteratorRE(mi, RPMTAG_OS, RPMMIRE_DEFAULT,
+ rpmteO(p));
+ }
while (rpmdbNextIterator(mi) != NULL) {
rpmpsAppend(ps, RPMPROB_PKG_INSTALLED,
diff --git a/po/cs.po b/po/cs.po
index c3feafe36..304099f6b 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: 2003-01-13 15:26-0500\n"
+"POT-Creation-Date: 2003-01-17 12:33-0500\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"
@@ -725,7 +725,7 @@ msgstr "Nemohu pøeèíst hlavièku z %s: %s\n"
msgid "Could not open %s: %s\n"
msgstr "Nemohu otevøít %s: %s\n"
-#: build/pack.c:632 lib/psm.c:1650
+#: build/pack.c:632 lib/psm.c:1657
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Nemohu zapsat balíèek: %s\n"
@@ -755,7 +755,7 @@ msgstr "Nemohu pøeèíst payload z %s: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "Nemohu zapsat payload do %s: %s\n"
-#: build/pack.c:725 lib/psm.c:1941
+#: build/pack.c:725 lib/psm.c:1948
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapsáno: %s\n"
@@ -1354,57 +1354,57 @@ msgstr ""
msgid " failed - "
msgstr "selhal - "
-#: lib/depends.c:164
+#: lib/depends.c:182
#, fuzzy, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr "balíèek %s je ji¾ nainstalován"
-#: lib/depends.c:362
+#: lib/depends.c:380
msgid "(cached)"
msgstr ""
-#: lib/depends.c:389
+#: lib/depends.c:407
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %-45s ANO (rpmrc poskytuje)\n"
-#: lib/depends.c:406
+#: lib/depends.c:424
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %-45s ANO (rpmlib poskytuje)\n"
-#: lib/depends.c:435
+#: lib/depends.c:453
#, fuzzy
msgid "(db files)"
msgstr "©patnı soubor: %s: %s\n"
-#: lib/depends.c:448
+#: lib/depends.c:466
#, fuzzy
msgid "(db provides)"
msgstr "%s: %-45s ANO (db poskytuje)\n"
-#: lib/depends.c:461
+#: lib/depends.c:479
#, fuzzy
msgid "(db package)"
msgstr "¾ádné balíèky\n"
-#: lib/depends.c:815
+#: lib/depends.c:833
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:937
+#: lib/depends.c:955
#, 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:1167
+#: lib/depends.c:1185
msgid "========== recording tsort relations\n"
msgstr "========== ukládání tsort relací\n"
#. T4. Scan for zeroes.
-#: lib/depends.c:1267
+#: lib/depends.c:1285
#, fuzzy
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
@@ -1412,20 +1412,20 @@ msgid ""
msgstr ""
"========== tsorting balíèkù (poøadí, #pøedchùdce, #následovník, hloubka)\n"
-#: lib/depends.c:1351
+#: lib/depends.c:1369
msgid "========== successors only (presentation order)\n"
msgstr "========== pouze úspì¹né (poøadí dle prezentace)\n"
-#: lib/depends.c:1421
+#: lib/depends.c:1439
msgid "LOOP:\n"
msgstr "SMYÈKA:\n"
-#: lib/depends.c:1456
+#: lib/depends.c:1474
msgid "========== continuing tsort ...\n"
msgstr "========== pokraèuje tsort ...\n"
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1461
+#: lib/depends.c:1479
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -2204,179 +2204,179 @@ msgstr "%s: scriptlet %s selhal (%d), pøeskakuji %s-%s-%s\n"
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "provedení %s skripletu z %s-%s-%s selhalo, návratovı kód: %d\n"
-#: lib/psm.c:1420
+#: lib/psm.c:1421
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s-%s-%s obsahuje %d souborù, test = %d\n"
-#: lib/psm.c:1553
+#: lib/psm.c:1560
#, fuzzy, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr "%s: scriptlet %s selhal (%d), pøeskakuji %s-%s-%s\n"
-#: lib/psm.c:1662
+#: lib/psm.c:1669
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Nemohu pøeèíst hlavièku z %s: %s\n"
-#: lib/psm.c:1708
+#: lib/psm.c:1715
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "u¾ivatel %s neexistuje - pou¾it u¾ivatel root\n"
-#: lib/psm.c:1717
+#: lib/psm.c:1724
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "skupina %s neexistuje - pou¾ita skupina root\n"
-#: lib/psm.c:1765
+#: lib/psm.c:1772
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "rozbalování archívu selhalo %s%s: %s\n"
-#: lib/psm.c:1766
+#: lib/psm.c:1773
msgid " on file "
msgstr " na souboru "
-#: lib/psm.c:1949
+#: lib/psm.c:1956
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "nemohu otevøít %s: %s\n"
-#: lib/psm.c:1952
+#: lib/psm.c:1959
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s selhalo\n"
-#: lib/query.c:122 lib/rpmts.c:430
+#: lib/query.c:122 lib/rpmts.c:451
#, c-format
msgid "incorrect format: %s\n"
msgstr "nesprávnı formát: %s\n"
#. @-boundswrite@
-#: lib/query.c:181
+#: lib/query.c:186
msgid "(contains no files)"
msgstr "(neobsahuje ¾ádné soubory)"
-#: lib/query.c:246
+#: lib/query.c:251
msgid "normal "
msgstr "normální "
-#: lib/query.c:249
+#: lib/query.c:254
msgid "replaced "
msgstr "nahrazen "
-#: lib/query.c:252
+#: lib/query.c:257
msgid "not installed "
msgstr "neinstalován "
-#: lib/query.c:255
+#: lib/query.c:260
msgid "net shared "
msgstr "sdílen v síti "
-#: lib/query.c:258
+#: lib/query.c:263
msgid "wrong color "
msgstr ""
-#: lib/query.c:261
+#: lib/query.c:266
msgid "(no state) "
msgstr "(chybí stav) "
-#: lib/query.c:264
+#: lib/query.c:269
#, c-format
msgid "(unknown %3d) "
msgstr "(neznámı %3d) "
-#: lib/query.c:282
+#: lib/query.c:287
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "balíèek nemá vlastníka souboru ani seznamy id\n"
-#: lib/query.c:315
+#: lib/query.c:320
msgid "package has neither file owner or id lists\n"
msgstr "balíèek nemá vlastníka souboru ani seznamy id\n"
-#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
+#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "otevøení %s selhalo: %s\n"
-#: lib/query.c:459
+#: lib/query.c:464
#, c-format
msgid "query of %s failed\n"
msgstr "dotaz na %s se nezdaøil\n"
-#: lib/query.c:469
+#: lib/query.c:474
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:502 lib/rpminstall.c:608
+#: lib/query.c:507 lib/rpminstall.c:608
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "¾ádnı balíèek neaktivuje %s\n"
-#: lib/query.c:531
+#: lib/query.c:536
msgid "no packages\n"
msgstr "¾ádné balíèky\n"
-#: lib/query.c:551
+#: lib/query.c:556
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "skupina %s neobsahuje ¾ádné balíèky\n"
-#: lib/query.c:560
+#: lib/query.c:565
#, c-format
msgid "no package triggers %s\n"
msgstr "¾ádnı balíèek neaktivuje %s\n"
-#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
+#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "nemohu zjistit stav %s: %s\n"
-#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
+#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "¾ádnı balíèek neaktivuje %s\n"
-#: lib/query.c:663
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "¾ádnı balíèek nevy¾aduje %s\n"
-#: lib/query.c:674
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "¾ádnı balíèek neposkytuje %s\n"
-#: lib/query.c:709
+#: lib/query.c:714
#, c-format
msgid "file %s: %s\n"
msgstr "soubor %s: %s\n"
-#: lib/query.c:713
+#: lib/query.c:718
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "soubor %s nevlastní ¾ádnı balíèek\n"
-#: lib/query.c:738
+#: lib/query.c:743
#, c-format
msgid "invalid package number: %s\n"
msgstr "neplatné èíslo balíèku: %s\n"
-#: lib/query.c:741
+#: lib/query.c:746
#, c-format
msgid "package record number: %u\n"
msgstr "záznam balíèku èíslo: %u\n"
-#: lib/query.c:746
+#: lib/query.c:751
#, c-format
msgid "record %u could not be read\n"
msgstr "záznam %u nelze pøeèíst\n"
-#: lib/query.c:756 lib/rpminstall.c:779
+#: lib/query.c:761 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "balíèek %s není nainstalován\n"
@@ -2863,28 +2863,28 @@ msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr "Nemohu otevøít %s: %s\n"
-#: lib/rpmts.c:135
+#: lib/rpmts.c:156
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "nemohu otevøít RPM databázi v %s\n"
-#: lib/rpmts.c:320
+#: lib/rpmts.c:341
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "nemohu otevøít RPM databázi v %s\n"
-#: lib/rpmts.c:462
+#: lib/rpmts.c:483
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "øádek: %s\n"
-#: lib/rpmts.c:474
+#: lib/rpmts.c:495
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "RPM verze %s\n"
#. Get available space on mounted file systems.
-#: lib/rpmts.c:906
+#: lib/rpmts.c:927
msgid "getting list of mounted filesystems\n"
msgstr "získávám seznam pøipojenıch systémù souborù\n"
@@ -3062,7 +3062,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:935
+#: lib/transaction.c:956
#, c-format
msgid "excluding directory %s\n"
msgstr ""
@@ -3075,7 +3075,7 @@ msgstr ""
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1047
+#: lib/transaction.c:1068
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3088,7 +3088,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1129
+#: lib/transaction.c:1156
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3096,7 +3096,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1206
+#: lib/transaction.c:1233
msgid "computing file dispositions\n"
msgstr ""
diff --git a/po/da.po b/po/da.po
index 41deebdee..1da1f67d5 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: 2003-01-13 15:26-0500\n"
+"POT-Creation-Date: 2003-01-17 12:33-0500\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"
@@ -722,7 +722,7 @@ msgstr "Kunne ikke læse hoved fra %s: %s\n"
msgid "Could not open %s: %s\n"
msgstr "Kunne ikke åbne %s: %s\n"
-#: build/pack.c:632 lib/psm.c:1650
+#: build/pack.c:632 lib/psm.c:1657
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Kunne ikke skrive pakke: %s\n"
@@ -752,7 +752,7 @@ msgstr "Kunne ikke læse pakkeindhold fra %s: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "Kunne ikke skrive pakkeindhold til %s: %s\n"
-#: build/pack.c:725 lib/psm.c:1941
+#: build/pack.c:725 lib/psm.c:1948
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrev: %s\n"
@@ -1355,76 +1355,76 @@ msgstr ""
msgid " failed - "
msgstr " mislykkedes - "
-#: lib/depends.c:164
+#: lib/depends.c:182
#, fuzzy, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr "pakken %s er allerede installeret"
-#: lib/depends.c:362
+#: lib/depends.c:380
msgid "(cached)"
msgstr ""
-#: lib/depends.c:389
+#: lib/depends.c:407
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %-45s JA (rpmrc tilfører)\n"
-#: lib/depends.c:406
+#: lib/depends.c:424
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %-45s JA (rpmlib tilfører)\n"
-#: lib/depends.c:435
+#: lib/depends.c:453
#, fuzzy
msgid "(db files)"
msgstr "ugyldig db-fil %s\n"
-#: lib/depends.c:448
+#: lib/depends.c:466
#, fuzzy
msgid "(db provides)"
msgstr "%s: %-45s JA (db tilfører)\n"
-#: lib/depends.c:461
+#: lib/depends.c:479
#, fuzzy
msgid "(db package)"
msgstr "ingen pakker\n"
-#: lib/depends.c:815
+#: lib/depends.c:833
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:937
+#: lib/depends.c:955
#, 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:1167
+#: lib/depends.c:1185
msgid "========== recording tsort relations\n"
msgstr "========== gemmer tsort-relationer\n"
#. T4. Scan for zeroes.
-#: lib/depends.c:1267
+#: lib/depends.c:1285
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1351
+#: lib/depends.c:1369
msgid "========== successors only (presentation order)\n"
msgstr "========== kun efterfølgere (præsentationsrækkefølge)\n"
-#: lib/depends.c:1421
+#: lib/depends.c:1439
msgid "LOOP:\n"
msgstr "LØKKE:\n"
-#: lib/depends.c:1456
+#: lib/depends.c:1474
msgid "========== continuing tsort ...\n"
msgstr "========== fortsætter tsort ...\n"
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1461
+#: lib/depends.c:1479
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -2217,179 +2217,179 @@ msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
"kørsel af småskriptet %s fra %s-%s-%s mislykkedes, afslutningsstatus %d\n"
-#: lib/psm.c:1420
+#: lib/psm.c:1421
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "pakke: %s-%s-%s filer test = %d\n"
-#: lib/psm.c:1553
+#: lib/psm.c:1560
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1662
+#: lib/psm.c:1669
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Kunne ikke læse hoved fra %s: %s\n"
-#: lib/psm.c:1708
+#: lib/psm.c:1715
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "bruger %s eksisterer ikke - bruger root\n"
-#: lib/psm.c:1717
+#: lib/psm.c:1724
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "gruppe %s eksisterer ikke - bruger root\n"
-#: lib/psm.c:1765
+#: lib/psm.c:1772
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "udpakning af arkiv mislykkedes%s%s: %s\n"
-#: lib/psm.c:1766
+#: lib/psm.c:1773
msgid " on file "
msgstr " for fil "
-#: lib/psm.c:1949
+#: lib/psm.c:1956
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "kunne ikke åbne %s: %s\n"
-#: lib/psm.c:1952
+#: lib/psm.c:1959
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s mislykkedes\n"
-#: lib/query.c:122 lib/rpmts.c:430
+#: lib/query.c:122 lib/rpmts.c:451
#, c-format
msgid "incorrect format: %s\n"
msgstr "ugyldigt format: %s\n"
#. @-boundswrite@
-#: lib/query.c:181
+#: lib/query.c:186
msgid "(contains no files)"
msgstr "(indeholder ingen filer)"
-#: lib/query.c:246
+#: lib/query.c:251
msgid "normal "
msgstr "normal "
-#: lib/query.c:249
+#: lib/query.c:254
msgid "replaced "
msgstr "erstattet "
-#: lib/query.c:252
+#: lib/query.c:257
msgid "not installed "
msgstr "ej installeret"
-#: lib/query.c:255
+#: lib/query.c:260
msgid "net shared "
msgstr "ej delt "
-#: lib/query.c:258
+#: lib/query.c:263
msgid "wrong color "
msgstr ""
-#: lib/query.c:261
+#: lib/query.c:266
msgid "(no state) "
msgstr "(ingen status)"
-#: lib/query.c:264
+#: lib/query.c:269
#, c-format
msgid "(unknown %3d) "
msgstr "(ukendt %3d) "
-#: lib/query.c:282
+#: lib/query.c:287
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "pakke har hverken filejerskabs- eller id-lister\n"
-#: lib/query.c:315
+#: lib/query.c:320
msgid "package has neither file owner or id lists\n"
msgstr "pakke har hverken filejerskabs- eller id-lister\n"
-#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
+#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "åbning af %s mislykkedes %s\n"
-#: lib/query.c:459
+#: lib/query.c:464
#, c-format
msgid "query of %s failed\n"
msgstr "forespørgsel af %s mislykkedes\n"
-#: lib/query.c:469
+#: lib/query.c:474
msgid "old format source packages cannot be queried\n"
msgstr "pakke med gammelt kildeformat kan ikke forespørges\n"
-#: lib/query.c:502 lib/rpminstall.c:608
+#: lib/query.c:507 lib/rpminstall.c:608
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "ingen pakker udløser %s\n"
-#: lib/query.c:531
+#: lib/query.c:536
msgid "no packages\n"
msgstr "ingen pakker\n"
-#: lib/query.c:551
+#: lib/query.c:556
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "gruppe %s indeholder ingen pakker\n"
-#: lib/query.c:560
+#: lib/query.c:565
#, c-format
msgid "no package triggers %s\n"
msgstr "ingen pakker udløser %s\n"
-#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
+#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "Kunne ikke læse %s: %s.\n"
-#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
+#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "ingen pakker udløser %s\n"
-#: lib/query.c:663
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "ingen pakker kræver %s\n"
-#: lib/query.c:674
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "ingen pakker tilfører %s\n"
-#: lib/query.c:709
+#: lib/query.c:714
#, c-format
msgid "file %s: %s\n"
msgstr "fil %s: %s\n"
-#: lib/query.c:713
+#: lib/query.c:718
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "filen %s tilhører ingen pakke\n"
-#: lib/query.c:738
+#: lib/query.c:743
#, c-format
msgid "invalid package number: %s\n"
msgstr "ugyldigt pakkenummer: %s\n"
-#: lib/query.c:741
+#: lib/query.c:746
#, c-format
msgid "package record number: %u\n"
msgstr "pakkens post-nummer: %u\n"
-#: lib/query.c:746
+#: lib/query.c:751
#, fuzzy, c-format
msgid "record %u could not be read\n"
msgstr "post %d kunne ikke læses\n"
-#: lib/query.c:756 lib/rpminstall.c:779
+#: lib/query.c:761 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "pakken %s er ikke installeret\n"
@@ -2878,22 +2878,22 @@ msgstr "Kunne ikke læse %s, HOME er for stor.\n"
msgid "Unable to open %s for reading: %s.\n"
msgstr "Kunne ikke åbne %s for læsning: %s.\n"
-#: lib/rpmts.c:135
+#: lib/rpmts.c:156
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "kunne ikke åbne Packages-database i %s\n"
-#: lib/rpmts.c:320
+#: lib/rpmts.c:341
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "kan ikke åbne rpm-database i %s\n"
-#: lib/rpmts.c:462
+#: lib/rpmts.c:483
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "linie: %s\n"
-#: lib/rpmts.c:474
+#: lib/rpmts.c:495
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr ""
@@ -2901,7 +2901,7 @@ msgstr ""
"\n"
#. Get available space on mounted file systems.
-#: lib/rpmts.c:906
+#: lib/rpmts.c:927
msgid "getting list of mounted filesystems\n"
msgstr "henter liste over monterede filsystemer\n"
@@ -3074,7 +3074,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr "%s oversprunget grundet manglende ok-flag\n"
#. @innercontinue@
-#: lib/transaction.c:935
+#: lib/transaction.c:956
#, c-format
msgid "excluding directory %s\n"
msgstr "ekskluderer kataloget %s\n"
@@ -3087,7 +3087,7 @@ msgstr "ekskluderer kataloget %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1047
+#: lib/transaction.c:1068
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3100,7 +3100,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1129
+#: lib/transaction.c:1156
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3108,7 +3108,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1206
+#: lib/transaction.c:1233
msgid "computing file dispositions\n"
msgstr ""
diff --git a/po/de.po b/po/de.po
index 2000cd895..7bbcd15a7 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: 2003-01-13 15:26-0500\n"
+"POT-Creation-Date: 2003-01-17 12:33-0500\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"
@@ -807,7 +807,7 @@ msgid "Could not open %s: %s\n"
msgstr "Öffnen von %s fehlgeschlagen\n"
# , c-format
-#: build/pack.c:632 lib/psm.c:1650
+#: build/pack.c:632 lib/psm.c:1657
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "Nicht möglich %s zu schreiben"
@@ -842,7 +842,7 @@ msgstr "Nicht möglich %s zu schreiben"
msgid "Unable to write payload to %s: %s\n"
msgstr "Nicht möglich %s zu schreiben"
-#: build/pack.c:725 lib/psm.c:1941
+#: build/pack.c:725 lib/psm.c:1948
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@@ -1482,76 +1482,76 @@ msgstr ""
msgid " failed - "
msgstr "pgp fehlgeschlagen"
-#: lib/depends.c:164
+#: lib/depends.c:182
#, fuzzy, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr "Paket %s ist nicht installiert\n"
-#: lib/depends.c:362
+#: lib/depends.c:380
msgid "(cached)"
msgstr ""
-#: lib/depends.c:389
+#: lib/depends.c:407
msgid "(rpmrc provides)"
msgstr ""
-#: lib/depends.c:406
+#: lib/depends.c:424
#, fuzzy
msgid "(rpmlib provides)"
msgstr "die Datei »%s« gehört zu keinem Paket\n"
# , c-format
-#: lib/depends.c:435
+#: lib/depends.c:453
#, fuzzy
msgid "(db files)"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: lib/depends.c:448
+#: lib/depends.c:466
msgid "(db provides)"
msgstr ""
-#: lib/depends.c:461
+#: lib/depends.c:479
#, fuzzy
msgid "(db package)"
msgstr "Anfrage an alle Pakete"
-#: lib/depends.c:815
+#: lib/depends.c:833
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
# FIXME
-#: lib/depends.c:937
+#: lib/depends.c:955
#, 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:1167
+#: lib/depends.c:1185
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1267
+#: lib/depends.c:1285
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1351
+#: lib/depends.c:1369
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1421
+#: lib/depends.c:1439
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1456
+#: lib/depends.c:1474
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1461
+#: lib/depends.c:1479
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -2374,187 +2374,187 @@ msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "Ausführung des Skripts fehlgeschlagen"
# FIXME shared, besser: "mit anderen geteilte ..."
-#: lib/psm.c:1420
+#: lib/psm.c:1421
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
-#: lib/psm.c:1553
+#: lib/psm.c:1560
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
# , c-format
-#: lib/psm.c:1662
+#: lib/psm.c:1669
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Nicht möglich %s zu schreiben"
-#: lib/psm.c:1708
+#: lib/psm.c:1715
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1717
+#: lib/psm.c:1724
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
-#: lib/psm.c:1765
+#: lib/psm.c:1772
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "öffnen von %s fehlgeschlagen: %s\n"
-#: lib/psm.c:1766
+#: lib/psm.c:1773
msgid " on file "
msgstr ""
# , c-format
-#: lib/psm.c:1949
+#: lib/psm.c:1956
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: lib/psm.c:1952
+#: lib/psm.c:1959
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "pgp fehlgeschlagen"
-#: lib/query.c:122 lib/rpmts.c:430
+#: lib/query.c:122 lib/rpmts.c:451
#, fuzzy, c-format
msgid "incorrect format: %s\n"
msgstr "Fehler beim Format %s\n"
#. @-boundswrite@
-#: lib/query.c:181
+#: lib/query.c:186
msgid "(contains no files)"
msgstr "(beinhaltet keine Dateien)"
-#: lib/query.c:246
+#: lib/query.c:251
msgid "normal "
msgstr ""
-#: lib/query.c:249
+#: lib/query.c:254
msgid "replaced "
msgstr ""
-#: lib/query.c:252
+#: lib/query.c:257
#, fuzzy
msgid "not installed "
msgstr "Paket %s ist nicht installiert\n"
-#: lib/query.c:255
+#: lib/query.c:260
msgid "net shared "
msgstr ""
-#: lib/query.c:258
+#: lib/query.c:263
msgid "wrong color "
msgstr ""
-#: lib/query.c:261
+#: lib/query.c:266
msgid "(no state) "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:269
#, fuzzy, c-format
msgid "(unknown %3d) "
msgstr "(unbekannter Typ)"
-#: lib/query.c:282
+#: lib/query.c:287
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "Paket hat keinen Namen"
-#: lib/query.c:315
+#: lib/query.c:320
#, fuzzy
msgid "package has neither file owner or id lists\n"
msgstr "Paket hat keinen Namen"
-#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
+#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
#: 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"
-#: lib/query.c:459
+#: lib/query.c:464
#, c-format
msgid "query of %s failed\n"
msgstr "Anfrage von %s fehlgeschlagen\n"
-#: lib/query.c:469
+#: lib/query.c:474
msgid "old format source packages cannot be queried\n"
msgstr "altes Sourceformat-Paket kann nicht angefragt werden\n"
-#: lib/query.c:502 lib/rpminstall.c:608
+#: lib/query.c:507 lib/rpminstall.c:608
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "kein Paket triggert %s\n"
-#: lib/query.c:531
+#: lib/query.c:536
#, fuzzy
msgid "no packages\n"
msgstr "Anfrage an alle Pakete"
-#: lib/query.c:551
+#: lib/query.c:556
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
-#: lib/query.c:560
+#: lib/query.c:565
#, c-format
msgid "no package triggers %s\n"
msgstr "kein Paket triggert %s\n"
# , c-format
-#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
+#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "Lesen von %s fehlgeschlagen: %s."
-#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
+#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "kein Paket triggert %s\n"
-#: lib/query.c:663
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "kein Paket verlangt %s\n"
# oder besser: ... listet %s auf? -ke-
-#: lib/query.c:674
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "kein Paket stellt %s bereit\n"
# , c-format
-#: lib/query.c:709
+#: lib/query.c:714
#, fuzzy, c-format
msgid "file %s: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: lib/query.c:713
+#: lib/query.c:718
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "die Datei »%s« gehört zu keinem Paket\n"
-#: lib/query.c:738
+#: lib/query.c:743
#, c-format
msgid "invalid package number: %s\n"
msgstr "ungültige Paket-Nummer: %s\n"
-#: lib/query.c:741
+#: lib/query.c:746
#, fuzzy, c-format
msgid "package record number: %u\n"
msgstr "ungültige Paket-Nummer: %s\n"
-#: lib/query.c:746
+#: lib/query.c:751
#, fuzzy, c-format
msgid "record %u could not be read\n"
msgstr "Eintrag %d konnte nicht gelesen werden\n"
-#: lib/query.c:756 lib/rpminstall.c:779
+#: lib/query.c:761 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "Paket %s ist nicht installiert\n"
@@ -3050,30 +3050,30 @@ msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr "Datei %s kann nicht zum Lesen geöffnet werden: %s."
-#: lib/rpmts.c:135
+#: lib/rpmts.c:156
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n"
-#: lib/rpmts.c:320
+#: lib/rpmts.c:341
#, 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:462
+#: lib/rpmts.c:483
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
# , c-format
-#: lib/rpmts.c:474
+#: lib/rpmts.c:495
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "Hole %s heraus\n"
#. Get available space on mounted file systems.
-#: lib/rpmts.c:906
+#: lib/rpmts.c:927
msgid "getting list of mounted filesystems\n"
msgstr ""
@@ -3250,7 +3250,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:935
+#: lib/transaction.c:956
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
@@ -3263,7 +3263,7 @@ msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1047
+#: lib/transaction.c:1068
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3276,7 +3276,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1129
+#: lib/transaction.c:1156
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3284,7 +3284,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1206
+#: lib/transaction.c:1233
msgid "computing file dispositions\n"
msgstr ""
diff --git a/po/fi.po b/po/fi.po
index d8e7e256f..2033a62ec 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: 2003-01-13 15:26-0500\n"
+"POT-Creation-Date: 2003-01-17 12:33-0500\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"
@@ -735,7 +735,7 @@ msgstr "%s:n kirjoitus ei onnistu"
msgid "Could not open %s: %s\n"
msgstr "%s:n avaus epäonnistui\n"
-#: build/pack.c:632 lib/psm.c:1650
+#: build/pack.c:632 lib/psm.c:1657
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "%s:n kirjoitus ei onnistu"
@@ -765,7 +765,7 @@ msgstr "%s:n kirjoitus ei onnistu"
msgid "Unable to write payload to %s: %s\n"
msgstr "%s:n kirjoitus ei onnistu"
-#: build/pack.c:725 lib/psm.c:1941
+#: build/pack.c:725 lib/psm.c:1948
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@@ -1379,74 +1379,74 @@ msgstr ""
msgid " failed - "
msgstr "pgp epäonnistui"
-#: lib/depends.c:164
+#: lib/depends.c:182
#, fuzzy, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr "paketti %s ei ole asennettu\n"
-#: lib/depends.c:362
+#: lib/depends.c:380
msgid "(cached)"
msgstr ""
-#: lib/depends.c:389
+#: lib/depends.c:407
msgid "(rpmrc provides)"
msgstr ""
-#: lib/depends.c:406
+#: lib/depends.c:424
#, fuzzy
msgid "(rpmlib provides)"
msgstr "tiedostoa %s ei omista mikään paketti\n"
-#: lib/depends.c:435
+#: lib/depends.c:453
#, fuzzy
msgid "(db files)"
msgstr "en voinut avata %s: %s"
-#: lib/depends.c:448
+#: lib/depends.c:466
msgid "(db provides)"
msgstr ""
-#: lib/depends.c:461
+#: lib/depends.c:479
#, fuzzy
msgid "(db package)"
msgstr "kysele kaikki paketit"
-#: lib/depends.c:815
+#: lib/depends.c:833
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:937
+#: lib/depends.c:955
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "virhe poistettaessa tietuetta %s %s:stä"
#. Record all relations.
-#: lib/depends.c:1167
+#: lib/depends.c:1185
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1267
+#: lib/depends.c:1285
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1351
+#: lib/depends.c:1369
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1421
+#: lib/depends.c:1439
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1456
+#: lib/depends.c:1474
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1461
+#: lib/depends.c:1479
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -2259,182 +2259,182 @@ msgstr "virhe: ohitan %s:n, siirto epäonnistui - %s\n"
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "skriptin ajo epäonnistui"
-#: lib/psm.c:1420
+#: lib/psm.c:1421
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "paketti %s-%s-%s sisältää jaettuja tiedostoja\n"
-#: lib/psm.c:1553
+#: lib/psm.c:1560
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1662
+#: lib/psm.c:1669
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "%s:n kirjoitus ei onnistu"
-#: lib/psm.c:1708
+#: lib/psm.c:1715
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1717
+#: lib/psm.c:1724
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "ryhmässä %s ei ole paketteja\n"
-#: lib/psm.c:1765
+#: lib/psm.c:1772
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "%s:n avaus ei onnistunut: %s\n"
-#: lib/psm.c:1766
+#: lib/psm.c:1773
msgid " on file "
msgstr ""
-#: lib/psm.c:1949
+#: lib/psm.c:1956
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "en voinut avata %s: %s"
-#: lib/psm.c:1952
+#: lib/psm.c:1959
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "pgp epäonnistui"
-#: lib/query.c:122 lib/rpmts.c:430
+#: lib/query.c:122 lib/rpmts.c:451
#, fuzzy, c-format
msgid "incorrect format: %s\n"
msgstr "virhe formaatissa: %s\n"
#. @-boundswrite@
-#: lib/query.c:181
+#: lib/query.c:186
msgid "(contains no files)"
msgstr "(ei tiedostoja)"
-#: lib/query.c:246
+#: lib/query.c:251
msgid "normal "
msgstr ""
-#: lib/query.c:249
+#: lib/query.c:254
msgid "replaced "
msgstr ""
-#: lib/query.c:252
+#: lib/query.c:257
#, fuzzy
msgid "not installed "
msgstr "paketti %s ei ole asennettu\n"
-#: lib/query.c:255
+#: lib/query.c:260
msgid "net shared "
msgstr ""
-#: lib/query.c:258
+#: lib/query.c:263
msgid "wrong color "
msgstr ""
-#: lib/query.c:261
+#: lib/query.c:266
msgid "(no state) "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:269
#, fuzzy, c-format
msgid "(unknown %3d) "
msgstr "(tuntematon tyyppi)"
-#: lib/query.c:282
+#: lib/query.c:287
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "paketilla ei ole nimeä"
-#: lib/query.c:315
+#: lib/query.c:320
#, fuzzy
msgid "package has neither file owner or id lists\n"
msgstr "paketilla ei ole nimeä"
-#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
+#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
#: 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"
-#: lib/query.c:459
+#: lib/query.c:464
#, c-format
msgid "query of %s failed\n"
msgstr "%s:n kysely ei onnistunut\n"
-#: lib/query.c:469
+#: lib/query.c:474
msgid "old format source packages cannot be queried\n"
msgstr "vanhan formaatin lähdekoodipaketteja ei voi kysellä\n"
-#: lib/query.c:502 lib/rpminstall.c:608
+#: lib/query.c:507 lib/rpminstall.c:608
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "mikään paketti ei laukaise %s:a\n"
-#: lib/query.c:531
+#: lib/query.c:536
#, fuzzy
msgid "no packages\n"
msgstr "kysele kaikki paketit"
-#: lib/query.c:551
+#: lib/query.c:556
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "ryhmässä %s ei ole paketteja\n"
-#: lib/query.c:560
+#: lib/query.c:565
#, c-format
msgid "no package triggers %s\n"
msgstr "mikään paketti ei laukaise %s:a\n"
-#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
+#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "En voi lukea %s: %s."
-#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
+#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "mikään paketti ei laukaise %s:a\n"
-#: lib/query.c:663
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "mikään pakettie ei tarvitse %s:a\n"
-#: lib/query.c:674
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "mikään paketti ei tarjoa %s:a\n"
-#: lib/query.c:709
+#: lib/query.c:714
#, fuzzy, c-format
msgid "file %s: %s\n"
msgstr "en voinut avata %s: %s"
-#: lib/query.c:713
+#: lib/query.c:718
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "tiedostoa %s ei omista mikään paketti\n"
-#: lib/query.c:738
+#: lib/query.c:743
#, c-format
msgid "invalid package number: %s\n"
msgstr "virheellinen paketin numero: %s\n"
-#: lib/query.c:741
+#: lib/query.c:746
#, fuzzy, c-format
msgid "package record number: %u\n"
msgstr "virheellinen paketin numero: %s\n"
-#: lib/query.c:746
+#: lib/query.c:751
#, fuzzy, c-format
msgid "record %u could not be read\n"
msgstr "tietuetta %d ei voitu lukea\n"
-#: lib/query.c:756 lib/rpminstall.c:779
+#: lib/query.c:761 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "paketti %s ei ole asennettu\n"
@@ -2918,28 +2918,28 @@ msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr "En voi avata %s luettavaksi: %s."
-#: lib/rpmts.c:135
+#: lib/rpmts.c:156
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "virhe: en voi avata %s%s/packages.rpm\n"
-#: lib/rpmts.c:320
+#: lib/rpmts.c:341
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "virhe: en voi avata %s%s/packages.rpm\n"
-#: lib/rpmts.c:462
+#: lib/rpmts.c:483
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "en voinut avata %s: %s"
-#: lib/rpmts.c:474
+#: lib/rpmts.c:495
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "Haen: %s\n"
#. Get available space on mounted file systems.
-#: lib/rpmts.c:906
+#: lib/rpmts.c:927
msgid "getting list of mounted filesystems\n"
msgstr ""
@@ -3116,7 +3116,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:935
+#: lib/transaction.c:956
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "virhe luotaessa hakemistoa %s: %s"
@@ -3129,7 +3129,7 @@ msgstr "virhe luotaessa hakemistoa %s: %s"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1047
+#: lib/transaction.c:1068
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3142,7 +3142,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1129
+#: lib/transaction.c:1156
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3150,7 +3150,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1206
+#: lib/transaction.c:1233
msgid "computing file dispositions\n"
msgstr ""
diff --git a/po/fr.po b/po/fr.po
index 60353b2a1..f5fdaf5e0 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: 2003-01-13 15:26-0500\n"
+"POT-Creation-Date: 2003-01-17 12:33-0500\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"
@@ -756,7 +756,7 @@ msgstr "impossible d'ouvrir: %s\n"
msgid "Could not open %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: build/pack.c:632 lib/psm.c:1650
+#: build/pack.c:632 lib/psm.c:1657
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "impossible d'ouvrir: %s\n"
@@ -786,7 +786,7 @@ msgstr "impossible d'ouvrir: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: build/pack.c:725 lib/psm.c:1941
+#: build/pack.c:725 lib/psm.c:1948
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@@ -1406,73 +1406,73 @@ msgstr ""
msgid " failed - "
msgstr "La construction a chou.\n"
-#: lib/depends.c:164
+#: lib/depends.c:182
#, fuzzy, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/depends.c:362
+#: lib/depends.c:380
msgid "(cached)"
msgstr ""
-#: lib/depends.c:389
+#: lib/depends.c:407
msgid "(rpmrc provides)"
msgstr ""
-#: lib/depends.c:406
+#: lib/depends.c:424
msgid "(rpmlib provides)"
msgstr ""
-#: lib/depends.c:435
+#: lib/depends.c:453
#, fuzzy
msgid "(db files)"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/depends.c:448
+#: lib/depends.c:466
msgid "(db provides)"
msgstr ""
-#: lib/depends.c:461
+#: lib/depends.c:479
#, fuzzy
msgid "(db package)"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/depends.c:815
+#: lib/depends.c:833
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:937
+#: lib/depends.c:955
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "impossible d'ouvrir: %s\n"
#. Record all relations.
-#: lib/depends.c:1167
+#: lib/depends.c:1185
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1267
+#: lib/depends.c:1285
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1351
+#: lib/depends.c:1369
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1421
+#: lib/depends.c:1439
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1456
+#: lib/depends.c:1474
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1461
+#: lib/depends.c:1479
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -2300,182 +2300,182 @@ msgstr ""
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
-#: lib/psm.c:1420
+#: lib/psm.c:1421
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/psm.c:1553
+#: lib/psm.c:1560
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1662
+#: lib/psm.c:1669
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/psm.c:1708
+#: lib/psm.c:1715
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1717
+#: lib/psm.c:1724
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1765
+#: lib/psm.c:1772
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "La construction a chou.\n"
-#: lib/psm.c:1766
+#: lib/psm.c:1773
msgid " on file "
msgstr ""
-#: lib/psm.c:1949
+#: lib/psm.c:1956
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/psm.c:1952
+#: lib/psm.c:1959
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "La construction a chou.\n"
-#: lib/query.c:122 lib/rpmts.c:430
+#: lib/query.c:122 lib/rpmts.c:451
#, c-format
msgid "incorrect format: %s\n"
msgstr ""
#. @-boundswrite@
-#: lib/query.c:181
+#: lib/query.c:186
msgid "(contains no files)"
msgstr ""
-#: lib/query.c:246
+#: lib/query.c:251
msgid "normal "
msgstr ""
-#: lib/query.c:249
+#: lib/query.c:254
msgid "replaced "
msgstr ""
-#: lib/query.c:252
+#: lib/query.c:257
#, fuzzy
msgid "not installed "
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/query.c:255
+#: lib/query.c:260
msgid "net shared "
msgstr ""
-#: lib/query.c:258
+#: lib/query.c:263
msgid "wrong color "
msgstr ""
-#: lib/query.c:261
+#: lib/query.c:266
msgid "(no state) "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:269
#, c-format
msgid "(unknown %3d) "
msgstr ""
-#: lib/query.c:282
+#: lib/query.c:287
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/query.c:315
+#: lib/query.c:320
#, fuzzy
msgid "package has neither file owner or id lists\n"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
+#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "La construction a chou.\n"
-#: lib/query.c:459
+#: lib/query.c:464
#, c-format
msgid "query of %s failed\n"
msgstr ""
-#: lib/query.c:469
+#: lib/query.c:474
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:502 lib/rpminstall.c:608
+#: lib/query.c:507 lib/rpminstall.c:608
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/query.c:531
+#: lib/query.c:536
#, fuzzy
msgid "no packages\n"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/query.c:551
+#: lib/query.c:556
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
-#: lib/query.c:560
+#: lib/query.c:565
#, fuzzy, c-format
msgid "no package triggers %s\n"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
+#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
+#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/query.c:663
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr ""
-#: lib/query.c:674
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr ""
-#: lib/query.c:709
+#: lib/query.c:714
#, c-format
msgid "file %s: %s\n"
msgstr ""
-#: lib/query.c:713
+#: lib/query.c:718
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
-#: lib/query.c:738
+#: lib/query.c:743
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
-#: lib/query.c:741
+#: lib/query.c:746
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:746
+#: lib/query.c:751
#, c-format
msgid "record %u could not be read\n"
msgstr ""
-#: lib/query.c:756 lib/rpminstall.c:779
+#: lib/query.c:761 lib/rpminstall.c:779
#, fuzzy, c-format
msgid "package %s is not installed\n"
msgstr "aucun package n'a t spcifi pour l'installation"
@@ -2958,28 +2958,28 @@ msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmts.c:135
+#: lib/rpmts.c:156
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmts.c:320
+#: lib/rpmts.c:341
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmts.c:462
+#: lib/rpmts.c:483
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmts.c:474
+#: lib/rpmts.c:495
#, c-format
msgid "Suggesting: %s\n"
msgstr ""
#. Get available space on mounted file systems.
-#: lib/rpmts.c:906
+#: lib/rpmts.c:927
msgid "getting list of mounted filesystems\n"
msgstr ""
@@ -3154,7 +3154,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:935
+#: lib/transaction.c:956
#, c-format
msgid "excluding directory %s\n"
msgstr ""
@@ -3167,7 +3167,7 @@ msgstr ""
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1047
+#: lib/transaction.c:1068
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3180,7 +3180,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1129
+#: lib/transaction.c:1156
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3188,7 +3188,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1206
+#: lib/transaction.c:1233
msgid "computing file dispositions\n"
msgstr ""
diff --git a/po/gl.po b/po/gl.po
index 258085b46..79107a999 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: 2003-01-13 15:26-0500\n"
+"POT-Creation-Date: 2003-01-17 12:33-0500\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"
@@ -701,7 +701,7 @@ msgstr ""
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:632 lib/psm.c:1650
+#: build/pack.c:632 lib/psm.c:1657
#, c-format
msgid "Unable to write package: %s\n"
msgstr ""
@@ -731,7 +731,7 @@ msgstr ""
msgid "Unable to write payload to %s: %s\n"
msgstr ""
-#: build/pack.c:725 lib/psm.c:1941
+#: build/pack.c:725 lib/psm.c:1948
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@@ -1320,71 +1320,71 @@ msgstr ""
msgid " failed - "
msgstr ""
-#: lib/depends.c:164
+#: lib/depends.c:182
#, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr ""
-#: lib/depends.c:362
+#: lib/depends.c:380
msgid "(cached)"
msgstr ""
-#: lib/depends.c:389
+#: lib/depends.c:407
msgid "(rpmrc provides)"
msgstr ""
-#: lib/depends.c:406
+#: lib/depends.c:424
msgid "(rpmlib provides)"
msgstr ""
-#: lib/depends.c:435
+#: lib/depends.c:453
msgid "(db files)"
msgstr ""
-#: lib/depends.c:448
+#: lib/depends.c:466
msgid "(db provides)"
msgstr ""
-#: lib/depends.c:461
+#: lib/depends.c:479
msgid "(db package)"
msgstr ""
-#: lib/depends.c:815
+#: lib/depends.c:833
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:937
+#: lib/depends.c:955
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
-#: lib/depends.c:1167
+#: lib/depends.c:1185
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1267
+#: lib/depends.c:1285
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1351
+#: lib/depends.c:1369
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1421
+#: lib/depends.c:1439
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1456
+#: lib/depends.c:1474
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1461
+#: lib/depends.c:1479
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -2129,177 +2129,177 @@ msgstr ""
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
-#: lib/psm.c:1420
+#: lib/psm.c:1421
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
-#: lib/psm.c:1553
+#: lib/psm.c:1560
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1662
+#: lib/psm.c:1669
msgid "Unable to reload signature header\n"
msgstr ""
-#: lib/psm.c:1708
+#: lib/psm.c:1715
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1717
+#: lib/psm.c:1724
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1765
+#: lib/psm.c:1772
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
-#: lib/psm.c:1766
+#: lib/psm.c:1773
msgid " on file "
msgstr ""
-#: lib/psm.c:1949
+#: lib/psm.c:1956
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
-#: lib/psm.c:1952
+#: lib/psm.c:1959
#, c-format
msgid "%s failed: %s\n"
msgstr ""
-#: lib/query.c:122 lib/rpmts.c:430
+#: lib/query.c:122 lib/rpmts.c:451
#, c-format
msgid "incorrect format: %s\n"
msgstr ""
#. @-boundswrite@
-#: lib/query.c:181
+#: lib/query.c:186
msgid "(contains no files)"
msgstr ""
-#: lib/query.c:246
+#: lib/query.c:251
msgid "normal "
msgstr ""
-#: lib/query.c:249
+#: lib/query.c:254
msgid "replaced "
msgstr ""
-#: lib/query.c:252
+#: lib/query.c:257
msgid "not installed "
msgstr ""
-#: lib/query.c:255
+#: lib/query.c:260
msgid "net shared "
msgstr ""
-#: lib/query.c:258
+#: lib/query.c:263
msgid "wrong color "
msgstr ""
-#: lib/query.c:261
+#: lib/query.c:266
msgid "(no state) "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:269
#, c-format
msgid "(unknown %3d) "
msgstr ""
-#: lib/query.c:282
+#: lib/query.c:287
msgid "package has not file owner/group lists\n"
msgstr ""
-#: lib/query.c:315
+#: lib/query.c:320
msgid "package has neither file owner or id lists\n"
msgstr ""
-#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
+#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
-#: lib/query.c:459
+#: lib/query.c:464
#, c-format
msgid "query of %s failed\n"
msgstr ""
-#: lib/query.c:469
+#: lib/query.c:474
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:502 lib/rpminstall.c:608
+#: lib/query.c:507 lib/rpminstall.c:608
#, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr ""
-#: lib/query.c:531
+#: lib/query.c:536
msgid "no packages\n"
msgstr ""
-#: lib/query.c:551
+#: lib/query.c:556
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
-#: lib/query.c:560
+#: lib/query.c:565
#, c-format
msgid "no package triggers %s\n"
msgstr ""
-#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
+#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
#, c-format
msgid "malformed %s: %s\n"
msgstr ""
-#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
+#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
#, c-format
msgid "no package matches %s: %s\n"
msgstr ""
-#: lib/query.c:663
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr ""
-#: lib/query.c:674
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr ""
-#: lib/query.c:709
+#: lib/query.c:714
#, c-format
msgid "file %s: %s\n"
msgstr ""
-#: lib/query.c:713
+#: lib/query.c:718
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
-#: lib/query.c:738
+#: lib/query.c:743
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
-#: lib/query.c:741
+#: lib/query.c:746
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:746
+#: lib/query.c:751
#, c-format
msgid "record %u could not be read\n"
msgstr ""
-#: lib/query.c:756 lib/rpminstall.c:779
+#: lib/query.c:761 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr ""
@@ -2775,28 +2775,28 @@ msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr ""
-#: lib/rpmts.c:135
+#: lib/rpmts.c:156
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr ""
-#: lib/rpmts.c:320
+#: lib/rpmts.c:341
#, c-format
msgid "cannot open Solve database in %s\n"
msgstr ""
-#: lib/rpmts.c:462
+#: lib/rpmts.c:483
#, c-format
msgid "Adding: %s\n"
msgstr ""
-#: lib/rpmts.c:474
+#: lib/rpmts.c:495
#, c-format
msgid "Suggesting: %s\n"
msgstr ""
#. Get available space on mounted file systems.
-#: lib/rpmts.c:906
+#: lib/rpmts.c:927
msgid "getting list of mounted filesystems\n"
msgstr ""
@@ -2965,7 +2965,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:935
+#: lib/transaction.c:956
#, c-format
msgid "excluding directory %s\n"
msgstr ""
@@ -2978,7 +2978,7 @@ msgstr ""
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1047
+#: lib/transaction.c:1068
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -2991,7 +2991,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1129
+#: lib/transaction.c:1156
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -2999,7 +2999,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1206
+#: lib/transaction.c:1233
msgid "computing file dispositions\n"
msgstr ""
diff --git a/po/is.po b/po/is.po
index aad9a45f0..2f3944ba5 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: 2003-01-13 15:26-0500\n"
+"POT-Creation-Date: 2003-01-17 12:33-0500\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"
@@ -708,7 +708,7 @@ msgstr "Get ekki lesiğ haus úr %s: %s\n"
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:632 lib/psm.c:1650
+#: build/pack.c:632 lib/psm.c:1657
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Get ekki ritağ í pakka: %s\n"
@@ -738,7 +738,7 @@ msgstr "Get ekki lesiğ innihald %s: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "Get ekki ritağ innihald í %s: %s\n"
-#: build/pack.c:725 lib/psm.c:1941
+#: build/pack.c:725 lib/psm.c:1948
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrifaği: %s\n"
@@ -1331,72 +1331,72 @@ msgstr ""
msgid " failed - "
msgstr ""
-#: lib/depends.c:164
+#: lib/depends.c:182
#, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr ""
-#: lib/depends.c:362
+#: lib/depends.c:380
msgid "(cached)"
msgstr ""
-#: lib/depends.c:389
+#: lib/depends.c:407
msgid "(rpmrc provides)"
msgstr ""
-#: lib/depends.c:406
+#: lib/depends.c:424
msgid "(rpmlib provides)"
msgstr ""
-#: lib/depends.c:435
+#: lib/depends.c:453
msgid "(db files)"
msgstr ""
-#: lib/depends.c:448
+#: lib/depends.c:466
msgid "(db provides)"
msgstr ""
-#: lib/depends.c:461
+#: lib/depends.c:479
#, fuzzy
msgid "(db package)"
msgstr "uppfæra pakka"
-#: lib/depends.c:815
+#: lib/depends.c:833
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:937
+#: lib/depends.c:955
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
-#: lib/depends.c:1167
+#: lib/depends.c:1185
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1267
+#: lib/depends.c:1285
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1351
+#: lib/depends.c:1369
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1421
+#: lib/depends.c:1439
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1456
+#: lib/depends.c:1474
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1461
+#: lib/depends.c:1479
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -2156,178 +2156,178 @@ msgstr ""
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
-#: lib/psm.c:1420
+#: lib/psm.c:1421
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
-#: lib/psm.c:1553
+#: lib/psm.c:1560
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1662
+#: lib/psm.c:1669
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Get ekki lesiğ haus úr %s: %s\n"
-#: lib/psm.c:1708
+#: lib/psm.c:1715
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1717
+#: lib/psm.c:1724
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1765
+#: lib/psm.c:1772
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
-#: lib/psm.c:1766
+#: lib/psm.c:1773
msgid " on file "
msgstr ""
-#: lib/psm.c:1949
+#: lib/psm.c:1956
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "gat ekki opnağ %s: %s\n"
-#: lib/psm.c:1952
+#: lib/psm.c:1959
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s brást\n"
-#: lib/query.c:122 lib/rpmts.c:430
+#: lib/query.c:122 lib/rpmts.c:451
#, c-format
msgid "incorrect format: %s\n"
msgstr ""
#. @-boundswrite@
-#: lib/query.c:181
+#: lib/query.c:186
msgid "(contains no files)"
msgstr ""
-#: lib/query.c:246
+#: lib/query.c:251
msgid "normal "
msgstr ""
-#: lib/query.c:249
+#: lib/query.c:254
msgid "replaced "
msgstr ""
-#: lib/query.c:252
+#: lib/query.c:257
msgid "not installed "
msgstr ""
-#: lib/query.c:255
+#: lib/query.c:260
msgid "net shared "
msgstr ""
-#: lib/query.c:258
+#: lib/query.c:263
msgid "wrong color "
msgstr ""
-#: lib/query.c:261
+#: lib/query.c:266
msgid "(no state) "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:269
#, c-format
msgid "(unknown %3d) "
msgstr ""
-#: lib/query.c:282
+#: lib/query.c:287
msgid "package has not file owner/group lists\n"
msgstr ""
-#: lib/query.c:315
+#: lib/query.c:320
msgid "package has neither file owner or id lists\n"
msgstr ""
-#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
+#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
-#: lib/query.c:459
+#: lib/query.c:464
#, c-format
msgid "query of %s failed\n"
msgstr ""
-#: lib/query.c:469
+#: lib/query.c:474
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:502 lib/rpminstall.c:608
+#: lib/query.c:507 lib/rpminstall.c:608
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "get ekki opnağ pakka gagnagrunn í\n"
-#: lib/query.c:531
+#: lib/query.c:536
msgid "no packages\n"
msgstr ""
-#: lib/query.c:551
+#: lib/query.c:556
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
-#: lib/query.c:560
+#: lib/query.c:565
#, c-format
msgid "no package triggers %s\n"
msgstr ""
-#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
+#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "Get ekki lesiğ %s: %s.\n"
-#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
+#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "get ekki opnağ pakka gagnagrunn í\n"
-#: lib/query.c:663
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr ""
-#: lib/query.c:674
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr ""
-#: lib/query.c:709
+#: lib/query.c:714
#, c-format
msgid "file %s: %s\n"
msgstr ""
-#: lib/query.c:713
+#: lib/query.c:718
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
-#: lib/query.c:738
+#: lib/query.c:743
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
-#: lib/query.c:741
+#: lib/query.c:746
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:746
+#: lib/query.c:751
#, c-format
msgid "record %u could not be read\n"
msgstr ""
-#: lib/query.c:756 lib/rpminstall.c:779
+#: lib/query.c:761 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr ""
@@ -2805,28 +2805,28 @@ msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr "Get ekki opnağ %s til lesturs: %s.\n"
-#: lib/rpmts.c:135
+#: lib/rpmts.c:156
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "get ekki opnağ pakka gagnagrunn í %s\n"
-#: lib/rpmts.c:320
+#: lib/rpmts.c:341
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "get ekki opnağ pakka gagnagrunn í %s\n"
-#: lib/rpmts.c:462
+#: lib/rpmts.c:483
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "lína: %s\n"
-#: lib/rpmts.c:474
+#: lib/rpmts.c:495
#, c-format
msgid "Suggesting: %s\n"
msgstr ""
#. Get available space on mounted file systems.
-#: lib/rpmts.c:906
+#: lib/rpmts.c:927
msgid "getting list of mounted filesystems\n"
msgstr ""
@@ -2996,7 +2996,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:935
+#: lib/transaction.c:956
#, c-format
msgid "excluding directory %s\n"
msgstr ""
@@ -3009,7 +3009,7 @@ msgstr ""
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1047
+#: lib/transaction.c:1068
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3022,7 +3022,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1129
+#: lib/transaction.c:1156
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3030,7 +3030,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1206
+#: lib/transaction.c:1233
msgid "computing file dispositions\n"
msgstr ""
diff --git a/po/ja.po b/po/ja.po
index 10c23df36..14d04a087 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: 2003-01-13 15:26-0500\n"
+"POT-Creation-Date: 2003-01-17 12:33-0500\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"
@@ -751,7 +751,7 @@ msgstr "¥¢¥¤¥³¥ó¤òÆɤळ¤È¤¬¤Ç¤­¤Ş¤»¤ó: %s"
msgid "Could not open %s: %s\n"
msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ¤·¤Ş¤·¤¿\n"
-#: build/pack.c:632 lib/psm.c:1650
+#: build/pack.c:632 lib/psm.c:1657
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹ş¤ß¤Ë¼ºÇÔ¤·¤Ş¤·¤¿: %s"
@@ -781,7 +781,7 @@ msgstr "¥¢¥¤¥³¥ó¤òÆɤळ¤È¤¬¤Ç¤­¤Ş¤»¤ó: %s"
msgid "Unable to write payload to %s: %s\n"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹ş¤ß¤Ë¼ºÇÔ¤·¤Ş¤·¤¿: %s"
-#: build/pack.c:725 lib/psm.c:1941
+#: build/pack.c:725 lib/psm.c:1948
#, c-format
msgid "Wrote: %s\n"
msgstr "½ñ¤­¹ş¤ßÃæ: %s\n"
@@ -1400,76 +1400,76 @@ msgstr ""
msgid " failed - "
msgstr "¼ºÇÔ - "
-#: lib/depends.c:164
+#: lib/depends.c:182
#, fuzzy, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Ï¤¹¤Ç¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Ş¤¹"
-#: lib/depends.c:362
+#: lib/depends.c:380
msgid "(cached)"
msgstr ""
-#: lib/depends.c:389
+#: lib/depends.c:407
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %s ¤Ï rpmrc ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËş¤µ¤ì¤Ş¤¹¡£\n"
-#: lib/depends.c:406
+#: lib/depends.c:424
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %s ¤Ï rpmrc ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËş¤µ¤ì¤Ş¤¹¡£\n"
-#: lib/depends.c:435
+#: lib/depends.c:453
#, fuzzy
msgid "(db files)"
msgstr "ÉÔÀµ¤Ê¥Õ¥¡¥¤¥ë¤Î¾õÂÖ: %s"
-#: lib/depends.c:448
+#: lib/depends.c:466
#, fuzzy
msgid "(db provides)"
msgstr "%s: %s ¤Ï db ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËş¤µ¤ì¤Ş¤¹¡£\n"
-#: lib/depends.c:461
+#: lib/depends.c:479
#, fuzzy
msgid "(db package)"
msgstr "%d ¸Ä¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò¸«¤Ä¤±¤Ş¤·¤¿\n"
-#: lib/depends.c:815
+#: lib/depends.c:833
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:937
+#: lib/depends.c:955
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "group ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Ş¤¹\n"
#. Record all relations.
-#: lib/depends.c:1167
+#: lib/depends.c:1185
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1267
+#: lib/depends.c:1285
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1351
+#: lib/depends.c:1369
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1421
+#: lib/depends.c:1439
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1456
+#: lib/depends.c:1474
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1461
+#: lib/depends.c:1479
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -2295,182 +2295,182 @@ msgstr "%s ¤ò¥¹¥­¥Ã¥×¤·¤Ş¤¹ - žÁ÷¼ºÇÔ - %s\n"
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "¥¹¥¯¥ê¥×¥È¤Î¼Â¹Ô¤Ë¼ºÇÔ"
-#: lib/psm.c:1420
+#: lib/psm.c:1421
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "¥Ñ¥Ã¥±¡¼¥¸: %s-%s-%s ¥Õ¥¡¥¤¥ë¥Æ¥¹¥È = %d\n"
-#: lib/psm.c:1553
+#: lib/psm.c:1560
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1662
+#: lib/psm.c:1669
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "¥¢¥¤¥³¥ó¤òÆɤळ¤È¤¬¤Ç¤­¤Ş¤»¤ó: %s"
-#: lib/psm.c:1708
+#: lib/psm.c:1715
#, fuzzy, c-format
msgid "user %s does not exist - using root\n"
msgstr "¥æ¡¼¥¶ %s ¤Ï¸ºß¤·¤Ş¤»¤ó - root ¤ò»ÈÍѤ·¤Ş¤¹"
-#: lib/psm.c:1717
+#: lib/psm.c:1724
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "¥°¥ë¡¼¥× %s ¤Ï¸ºß¤·¤Ş¤»¤ó - root ¤ò»ÈÍѤ·¤Ş¤¹"
-#: lib/psm.c:1765
+#: lib/psm.c:1772
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "¥Õ¥¡¥¤¥ë %s ¤Î¥¢¡¼¥«¥¤¥Ö¤Î¿­Ä¹¤Ë¼ºÇÔ %s%s: %s"
-#: lib/psm.c:1766
+#: lib/psm.c:1773
#, fuzzy
msgid " on file "
msgstr "¥Õ¥¡¥¤¥ë¾å"
-#: lib/psm.c:1949
+#: lib/psm.c:1956
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s"
-#: lib/psm.c:1952
+#: lib/psm.c:1959
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s ¼ºÇÔ"
-#: lib/query.c:122 lib/rpmts.c:430
+#: lib/query.c:122 lib/rpmts.c:451
#, fuzzy, c-format
msgid "incorrect format: %s\n"
msgstr "¥Õ¥©¡¼¥Ş¥Ã¥ÈÃæ¤Î¥¨¥é¡¼: %s\n"
#. @-boundswrite@
-#: lib/query.c:181
+#: lib/query.c:186
msgid "(contains no files)"
msgstr "¥Õ¥¡¥¤¥ë¤ò´Ş¤ó¤Ç¤¤¤Ş¤»¤ó"
-#: lib/query.c:246
+#: lib/query.c:251
msgid "normal "
msgstr "Ä̾ï"
-#: lib/query.c:249
+#: lib/query.c:254
msgid "replaced "
msgstr "ÃÖ¤­´¹¤¨¤é¤ì¤Æ¤¤¤Ş¤¹"
-#: lib/query.c:252
+#: lib/query.c:257
msgid "not installed "
msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Ş¤»¤ó"
-#: lib/query.c:255
+#: lib/query.c:260
msgid "net shared "
msgstr "¥Í¥Ã¥È¶¦Í­"
-#: lib/query.c:258
+#: lib/query.c:263
msgid "wrong color "
msgstr ""
-#: lib/query.c:261
+#: lib/query.c:266
msgid "(no state) "
msgstr "(²¿¤Î¾õÂ֤⤢¤ê¤Ş¤»¤ó)"
-#: lib/query.c:264
+#: lib/query.c:269
#, c-format
msgid "(unknown %3d) "
msgstr "(̤ÃΤΠ%3d)"
-#: lib/query.c:282
+#: lib/query.c:287
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ï¥Õ¥¡¥¤¥ë½êÍ­¼Ô¤ä id ¥ê¥¹¥È¤ò¤É¤Á¤é¤â»ı¤Ã¤Æ¤¤¤Ş¤»¤ó"
-#: lib/query.c:315
+#: lib/query.c:320
#, fuzzy
msgid "package has neither file owner or id lists\n"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ï¥Õ¥¡¥¤¥ë½êÍ­¼Ô¤ä id ¥ê¥¹¥È¤ò¤É¤Á¤é¤â»ı¤Ã¤Æ¤¤¤Ş¤»¤ó"
-#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
+#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s\n"
-#: lib/query.c:459
+#: lib/query.c:464
#, c-format
msgid "query of %s failed\n"
msgstr "%s ¤Ø¤ÎÌ䤤¹ç¤ï¤»¤Ë¼ºÇÔ¤·¤Ş¤·¤¿\n"
-#: lib/query.c:469
+#: lib/query.c:474
msgid "old format source packages cannot be queried\n"
msgstr "µì·Á¼°¤Î¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤òÌ䤤¹ç¤ï¤»¤ë¤³¤È¤Ï¤Ç¤­¤Ş¤»¤ó\n"
-#: lib/query.c:502 lib/rpminstall.c:608
+#: lib/query.c:507 lib/rpminstall.c:608
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "%s ¤ò¥È¥ê¥¬¡¼¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Ş¤»¤ó\n"
-#: lib/query.c:531
+#: lib/query.c:536
#, fuzzy
msgid "no packages\n"
msgstr "%d ¸Ä¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò¸«¤Ä¤±¤Ş¤·¤¿\n"
-#: lib/query.c:551
+#: lib/query.c:556
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "¥°¥ë¡¼¥× %s ¤Ë°¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Ş¤»¤ó\n"
-#: lib/query.c:560
+#: lib/query.c:565
#, c-format
msgid "no package triggers %s\n"
msgstr "%s ¤ò¥È¥ê¥¬¡¼¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Ş¤»¤ó\n"
-#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
+#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "%s ¤òÆɤà¤Î¤Ë¼ºÇÔ: $s¡£"
-#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
+#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "%s ¤ò¥È¥ê¥¬¡¼¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Ş¤»¤ó\n"
-#: lib/query.c:663
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "%s ¤òɬÍפȤ¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Ş¤»¤ó\n"
-#: lib/query.c:674
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "%s ¤òÄ󶡤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Ş¤»¤ó\n"
-#: lib/query.c:709
+#: lib/query.c:714
#, c-format
msgid "file %s: %s\n"
msgstr "¥Õ¥¡¥¤¥ë %s: %s\n"
-#: lib/query.c:713
+#: lib/query.c:718
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "¥Õ¥¡¥¤¥ë %s ¤Ï¤É¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ë¤â°¤·¤Æ¤¤¤Ş¤»¤ó\n"
-#: lib/query.c:738
+#: lib/query.c:743
#, c-format
msgid "invalid package number: %s\n"
msgstr "̵¸ú¤Ê¥Ñ¥Ã¥±¡¼¥¸ÈÖ¹æ: %s\n"
-#: lib/query.c:741
+#: lib/query.c:746
#, fuzzy, c-format
msgid "package record number: %u\n"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¥ì¥³¡¼¥ÉÈÖ¹æ %d\n"
-#: lib/query.c:746
+#: lib/query.c:751
#, fuzzy, c-format
msgid "record %u could not be read\n"
msgstr "¥ì¥³¡¼¥É %d ¤òÆɤळ¤È¤¬¤Ç¤­¤Ş¤»¤ó¤Ç¤·¤¿\n"
-#: lib/query.c:756 lib/rpminstall.c:779
+#: lib/query.c:761 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Ş¤»¤ó\n"
@@ -2966,28 +2966,28 @@ msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr "Æɤ߹ş¤à¤¿¤á¤Ë %s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Ş¤»¤ó: %s¡£"
-#: lib/rpmts.c:135
+#: lib/rpmts.c:156
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "%s/packages.rpm ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Ş¤»¤ó\n"
-#: lib/rpmts.c:320
+#: lib/rpmts.c:341
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "%s/packages.rpm ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Ş¤»¤ó\n"
-#: lib/rpmts.c:462
+#: lib/rpmts.c:483
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "¹ÔÌÜ: %s"
-#: lib/rpmts.c:474
+#: lib/rpmts.c:495
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "¥½¡¼¥¹¤Ï: %s\n"
#. Get available space on mounted file systems.
-#: lib/rpmts.c:906
+#: lib/rpmts.c:927
msgid "getting list of mounted filesystems\n"
msgstr "¥Ş¥¦¥ó¥È¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤Î¥ê¥¹¥È¤ò¼èÆÀ¤·¤Æ¤¤¤Ş¤¹\n"
@@ -3165,7 +3165,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr "%s ¤Ï missingok ¥Õ¥é¥°¤Î¤¿¤á¥¹¥­¥Ã¥×¤·¤Ş¤¹\n"
#. @innercontinue@
-#: lib/transaction.c:935
+#: lib/transaction.c:956
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤Î½ü³°: %s\n"
@@ -3178,7 +3178,7 @@ msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤Î½ü³°: %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1047
+#: lib/transaction.c:1068
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3191,7 +3191,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1129
+#: lib/transaction.c:1156
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3199,7 +3199,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1206
+#: lib/transaction.c:1233
msgid "computing file dispositions\n"
msgstr ""
diff --git a/po/ko.po b/po/ko.po
index a0020e9ec..ba7cc868a 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: 2003-01-13 15:26-0500\n"
+"POT-Creation-Date: 2003-01-17 12:33-0500\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"
@@ -715,7 +715,7 @@ msgstr "¼­¸í(signature) Çì´õ¸¦ ´Ù½Ã Àоî¿Ã ¼ö ¾ø½À´Ï´Ù.\n"
msgid "Could not open %s: %s\n"
msgstr "%s(À»)¸¦ ¿­ ¼ö ¾øÀ½: %s\n"
-#: build/pack.c:632 lib/psm.c:1650
+#: build/pack.c:632 lib/psm.c:1657
#, c-format
msgid "Unable to write package: %s\n"
msgstr "ÆĞÅ°Áö¸¦ ÀÛ¼ºÇÒ ¼ö ¾øÀ½: %s\n"
@@ -745,7 +745,7 @@ msgstr "%sÀÇ payload¸¦ ÀĞÀ» ¼ö ¾øÀ½: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "%s¿¡ payload¸¦ ÀÛ¼ºÇÒ ¼ö ¾øÀ½: %s\n"
-#: build/pack.c:725 lib/psm.c:1941
+#: build/pack.c:725 lib/psm.c:1948
#, c-format
msgid "Wrote: %s\n"
msgstr "ÀÛ¼º: %s\n"
@@ -1341,57 +1341,57 @@ msgstr "Çì´õ¿¡ ¾ÆÄ«À̺ê ÆÄÀÏÀÌ ¾ø½À´Ï´Ù"
msgid " failed - "
msgstr " ½ÇÆĞÇÔ - "
-#: lib/depends.c:164
+#: lib/depends.c:182
#, fuzzy, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr "%s ÆĞÅ°Áö´Â ÀÌ¹Ì ¼³Ä¡µÇ¾î ÀÖ½À´Ï´Ù"
-#: lib/depends.c:362
+#: lib/depends.c:380
msgid "(cached)"
msgstr ""
-#: lib/depends.c:389
+#: lib/depends.c:407
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %-45s ¿¹ (rpmrcÀÌ Á¦°øÇÔ)\n"
-#: lib/depends.c:406
+#: lib/depends.c:424
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %-45s ¿¹ (rpmlibÀÌ Á¦°øÇÔ)\n"
-#: lib/depends.c:435
+#: lib/depends.c:453
#, fuzzy
msgid "(db files)"
msgstr "À߸øµÈ db ÆÄÀÏ %s\n"
-#: lib/depends.c:448
+#: lib/depends.c:466
#, fuzzy
msgid "(db provides)"
msgstr "%s: %-45s ¿¹ (db°¡ Á¦°øÇÔ)\n"
-#: lib/depends.c:461
+#: lib/depends.c:479
#, fuzzy
msgid "(db package)"
msgstr "ÆĞÅ°Áö°¡ ¾ø½À´Ï´Ù\n"
-#: lib/depends.c:815
+#: lib/depends.c:833
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr "´ÙÀ½°ú °ü·ÃµÈ ÆĞÅ°Áö À̸§À» ¹«½ÃÇÕ´Ï´Ù [%d]\t%s -> %s\n"
-#: lib/depends.c:937
+#: lib/depends.c:955
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "tsort °ü°è¿¡¼­ %s-%s-%s \"%s\"(À»)¸¦ »èÁ¦ÇÕ´Ï´Ù.\n"
#. Record all relations.
-#: lib/depends.c:1167
+#: lib/depends.c:1185
msgid "========== recording tsort relations\n"
msgstr "========== tsort °ü°è¸¦ ±â·Ï(record)ÇÕ´Ï´Ù\n"
#. T4. Scan for zeroes.
-#: lib/depends.c:1267
+#: lib/depends.c:1285
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
@@ -1399,20 +1399,20 @@ msgstr ""
"========== ÆĞÅ°Áö¸¦ tsort ÇÕ´Ï´Ù (¼ø¼­, #¼±ÀÓÀÚ, #ÈÄÀÓÀÚ, Æ®¸®, ±íÀÌ"
"[depth])\n"
-#: lib/depends.c:1351
+#: lib/depends.c:1369
msgid "========== successors only (presentation order)\n"
msgstr "========== ÈÄÀÓÀÚ¸¸ [successors only] (Ç¥Çö ¼ø)\n"
-#: lib/depends.c:1421
+#: lib/depends.c:1439
msgid "LOOP:\n"
msgstr "·çÇÁ(LOOP):\n"
-#: lib/depends.c:1456
+#: lib/depends.c:1474
msgid "========== continuing tsort ...\n"
msgstr "========== tsort¸¦ ÁøÇàÇÕ´Ï´Ù...\n"
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1461
+#: lib/depends.c:1479
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -2192,180 +2192,180 @@ msgstr ""
"%2$s-%3$s-%4$sÀÇ %1$s ½ºÅ©¸³Æ²¸´(scriptlet) ½ÇÇà¿¡ ½ÇÆĞÇß½À´Ï´Ù, Á¾·á »óȲ %5"
"$d\n"
-#: lib/psm.c:1420
+#: lib/psm.c:1421
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s-%s-%s¿¡ %dÀÇ ÆÄÀÏÀÌ ÀÖ½À´Ï´Ù, Å×½ºÆ® = %d\n"
-#: lib/psm.c:1553
+#: lib/psm.c:1560
#, fuzzy, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
"%s: %s ½ºÅ©¸³Æ²¸´(scriptlet)ÀÌ ½ÇÆĞÇß½À´Ï´Ù (%d), %s-%s-%s(À»)¸¦ »ı·«ÇÕ´Ï´Ù\n"
-#: lib/psm.c:1662
+#: lib/psm.c:1669
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "¼­¸í(signature) Çì´õ¸¦ ´Ù½Ã Àоî¿Ã ¼ö ¾ø½À´Ï´Ù.\n"
-#: lib/psm.c:1708
+#: lib/psm.c:1715
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "%s »ç¿ëÀÚ°¡ Á¸ÀçÇÏÁö ¾Ê½À´Ï´Ù - root¸¦ ÀÌ¿ëÇÕ´Ï´Ù\n"
-#: lib/psm.c:1717
+#: lib/psm.c:1724
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "%s ±×·ìÀÌ Á¸ÀçÇÏÁö ¾Ê½À´Ï´Ù - root¸¦ ÀÌ¿ëÇÕ´Ï´Ù\n"
-#: lib/psm.c:1765
+#: lib/psm.c:1772
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "¾ÆÄ«À̺긦 Ǫ´Âµ¥ ½ÇÆĞÇÔ%s%s: %s\n"
-#: lib/psm.c:1766
+#: lib/psm.c:1773
msgid " on file "
msgstr " ´ÙÀ½ ÆÄÀÏÀÇ "
-#: lib/psm.c:1949
+#: lib/psm.c:1956
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%2$s ÆÄÀÏÀÇ %1$s(ÀÌ)°¡ ½ÇÆĞÇÔ: %3$s\n"
-#: lib/psm.c:1952
+#: lib/psm.c:1959
#, c-format
msgid "%s failed: %s\n"
msgstr "%s(ÀÌ)°¡ ½ÇÆĞÇÔ: %s\n"
-#: lib/query.c:122 lib/rpmts.c:430
+#: lib/query.c:122 lib/rpmts.c:451
#, c-format
msgid "incorrect format: %s\n"
msgstr "¿Ã¹Ù¸£Áö ¸øÇÑ Çü½Ä: %s\n"
#. @-boundswrite@
-#: lib/query.c:181
+#: lib/query.c:186
msgid "(contains no files)"
msgstr "(ÆÄÀÏÀÌ Æ÷ÇԵǾî ÀÖÁö ¾ÊÀ½)"
-#: lib/query.c:246
+#: lib/query.c:251
msgid "normal "
msgstr "Á¤»ó(normal) "
-#: lib/query.c:249
+#: lib/query.c:254
msgid "replaced "
msgstr "±³Ã¼µÊ(replaced) "
-#: lib/query.c:252
+#: lib/query.c:257
msgid "not installed "
msgstr "¼³Ä¡µÇ¾î ÀÖÁö ¾ÊÀ½ "
-#: lib/query.c:255
+#: lib/query.c:260
msgid "net shared "
msgstr "net °øÀ¯µÊ "
-#: lib/query.c:258
+#: lib/query.c:263
msgid "wrong color "
msgstr ""
-#: lib/query.c:261
+#: lib/query.c:266
msgid "(no state) "
msgstr "(»óŸ¦ ¾Ë ¼ö ¾øÀ½) "
-#: lib/query.c:264
+#: lib/query.c:269
#, c-format
msgid "(unknown %3d) "
msgstr "(¾Ë ¼ö ¾ø´Â %3d) "
-#: lib/query.c:282
+#: lib/query.c:287
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "ÆĞÅ°Áö¿¡ ÆÄÀÏ ¼ÒÀ¯ÀÚ ¶Ç´Â id ¸ñ·ÏÀÌ ¾ø½À´Ï´Ù\n"
-#: lib/query.c:315
+#: lib/query.c:320
msgid "package has neither file owner or id lists\n"
msgstr "ÆĞÅ°Áö¿¡ ÆÄÀÏ ¼ÒÀ¯ÀÚ ¶Ç´Â id ¸ñ·ÏÀÌ ¾ø½À´Ï´Ù\n"
-#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
+#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "%s(À»)¸¦ ¿©´Âµ¥ ½ÇÆĞÇÔ: %s\n"
-#: lib/query.c:459
+#: lib/query.c:464
#, c-format
msgid "query of %s failed\n"
msgstr "%s(À»)¸¦ ÁúÀÇÇϴµ¥ ½ÇÆĞÇß½À´Ï´Ù\n"
-#: lib/query.c:469
+#: lib/query.c:474
msgid "old format source packages cannot be queried\n"
msgstr "ÀÌÀü Çü½ÄÀÇ ¼Ò½º ÆĞÅ°Áö´Â ÁúÀÇÇÒ ¼ö ¾ø½À´Ï´Ù\n"
-#: lib/query.c:502 lib/rpminstall.c:608
+#: lib/query.c:507 lib/rpminstall.c:608
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "%s(¿Í)°ú ÀÏÄ¡ÇÏ´Â ÆĞÅ°Áö°¡ ¾øÀ½: %s\n"
-#: lib/query.c:531
+#: lib/query.c:536
msgid "no packages\n"
msgstr "ÆĞÅ°Áö°¡ ¾ø½À´Ï´Ù\n"
-#: lib/query.c:551
+#: lib/query.c:556
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "%s ±×·ìÀº ¾î¶² ÆĞÅ°Áö¿¡µµ Æ÷ÇԵǾî ÀÖÁö ¾Ê½À´Ï´Ù\n"
-#: lib/query.c:560
+#: lib/query.c:565
#, c-format
msgid "no package triggers %s\n"
msgstr "%s(À»)¸¦ »ı¼ºÇÏ´Â(trigger) ÆĞÅ°Áö°¡ ¾ø½À´Ï´Ù\n"
-#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
+#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
#, c-format
msgid "malformed %s: %s\n"
msgstr "%s(ÀÌ)°¡ À߸øµÊ: %s\n"
-#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
+#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
#, c-format
msgid "no package matches %s: %s\n"
msgstr "%s(¿Í)°ú ÀÏÄ¡ÇÏ´Â ÆĞÅ°Áö°¡ ¾øÀ½: %s\n"
-#: lib/query.c:663
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "%s(À»)¸¦ ÇÊ¿ä·Î ÇÏ´Â ÆĞÅ°Áö°¡ ¾ø½À´Ï´Ù\n"
-#: lib/query.c:674
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "%s(À»)¸¦ Á¦°øÇÏ´Â ÆĞÅ°Áö°¡ ¾ø½À´Ï´Ù\n"
-#: lib/query.c:709
+#: lib/query.c:714
#, c-format
msgid "file %s: %s\n"
msgstr "%s ÆÄÀÏ: %s\n"
-#: lib/query.c:713
+#: lib/query.c:718
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "%s ÆÄÀÏÀº ¾î¶² ÆĞÅ°Áö¿¡µµ µé¾îÀÖÁö ¾Ê½À´Ï´Ù\n"
-#: lib/query.c:738
+#: lib/query.c:743
#, c-format
msgid "invalid package number: %s\n"
msgstr "ºÎÀûÇÕÇÑ ÆĞÅ°Áö ¹øÈ£: %s\n"
-#: lib/query.c:741
+#: lib/query.c:746
#, c-format
msgid "package record number: %u\n"
msgstr "ÆĞÅ°Áö ±â·Ï(record) ¹øÈ£: %u\n"
-#: lib/query.c:746
+#: lib/query.c:751
#, c-format
msgid "record %u could not be read\n"
msgstr "±â·Ï(record) ¹øÈ£ %u(Àº)´Â ÀĞÀ» ¼ö ¾ø½À´Ï´Ù\n"
-#: lib/query.c:756 lib/rpminstall.c:779
+#: lib/query.c:761 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "%s ÆĞÅ°Áö°¡ ¼³Ä¡µÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù\n"
@@ -2856,28 +2856,28 @@ msgstr "%s(À»)¸¦ ÀĞÀ» ¼ö ¾ø½À´Ï´Ù, HOMEÀÌ ³Ê¹« Å®´Ï´Ù.\n"
msgid "Unable to open %s for reading: %s.\n"
msgstr "%s(À»)¸¦ ¿­ ¼ö ¾øÀ½: %s.\n"
-#: lib/rpmts.c:135
+#: lib/rpmts.c:156
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "%s ¾ÈÀÇ ÆĞÅ°Áö µ¥ÀÌÅͺ£À̽º¸¦ ¿­ ¼ö ¾ø½À´Ï´Ù\n"
-#: lib/rpmts.c:320
+#: lib/rpmts.c:341
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "%sÀÇ rpm µ¥ÀÌÅͺ£À̽º¸¦ ¿­ ¼ö ¾ø½À´Ï´Ù\n"
-#: lib/rpmts.c:462
+#: lib/rpmts.c:483
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "Çà: %s\n"
-#: lib/rpmts.c:474
+#: lib/rpmts.c:495
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "%s(À»)¸¦ º¹±¸ÇÕ´Ï´Ù\n"
#. Get available space on mounted file systems.
-#: lib/rpmts.c:906
+#: lib/rpmts.c:927
msgid "getting list of mounted filesystems\n"
msgstr ""
@@ -3050,7 +3050,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr "missingok Ç÷¡±×·Î ÀÎÇØ %s(À»)¸¦ »ı·«ÇÕ´Ï´Ù\n"
#. @innercontinue@
-#: lib/transaction.c:935
+#: lib/transaction.c:956
#, c-format
msgid "excluding directory %s\n"
msgstr "%s µğ·ºÅ丮¸¦ Á¦¿Ü½Ãŵ´Ï´Ù\n"
@@ -3063,7 +3063,7 @@ msgstr "%s µğ·ºÅ丮¸¦ Á¦¿Ü½Ãŵ´Ï´Ù\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1047
+#: lib/transaction.c:1068
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3076,7 +3076,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1129
+#: lib/transaction.c:1156
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3084,7 +3084,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1206
+#: lib/transaction.c:1233
msgid "computing file dispositions\n"
msgstr ""
diff --git a/po/no.po b/po/no.po
index 97d656947..d44daa30a 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: 2003-01-13 15:26-0500\n"
+"POT-Creation-Date: 2003-01-17 12:33-0500\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"
@@ -719,7 +719,7 @@ msgstr "Kunne ikke åpne spec fil %s: %s\n"
msgid "Could not open %s: %s\n"
msgstr "Kunne ikke åpne %s: %s\n"
-#: build/pack.c:632 lib/psm.c:1650
+#: build/pack.c:632 lib/psm.c:1657
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Kunne ikke skrive pakke: %s\n"
@@ -749,7 +749,7 @@ msgstr "Kunne ikke lese \"payload\" fra %s: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "Kunne ikke skrive \"payload\" til %s: %s\n"
-#: build/pack.c:725 lib/psm.c:1941
+#: build/pack.c:725 lib/psm.c:1948
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrev: %s\n"
@@ -1346,72 +1346,72 @@ msgstr ""
msgid " failed - "
msgstr " feilet - "
-#: lib/depends.c:164
+#: lib/depends.c:182
#, fuzzy, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr "pakke %s er allerede installert"
-#: lib/depends.c:362
+#: lib/depends.c:380
msgid "(cached)"
msgstr ""
-#: lib/depends.c:389
+#: lib/depends.c:407
msgid "(rpmrc provides)"
msgstr ""
-#: lib/depends.c:406
+#: lib/depends.c:424
msgid "(rpmlib provides)"
msgstr ""
-#: lib/depends.c:435
+#: lib/depends.c:453
msgid "(db files)"
msgstr ""
-#: lib/depends.c:448
+#: lib/depends.c:466
msgid "(db provides)"
msgstr ""
-#: lib/depends.c:461
+#: lib/depends.c:479
#, fuzzy
msgid "(db package)"
msgstr "ingen pakker\n"
-#: lib/depends.c:815
+#: lib/depends.c:833
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:937
+#: lib/depends.c:955
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
-#: lib/depends.c:1167
+#: lib/depends.c:1185
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1267
+#: lib/depends.c:1285
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1351
+#: lib/depends.c:1369
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1421
+#: lib/depends.c:1439
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1456
+#: lib/depends.c:1474
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1461
+#: lib/depends.c:1479
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -2182,179 +2182,179 @@ msgstr ""
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
-#: lib/psm.c:1420
+#: lib/psm.c:1421
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
-#: lib/psm.c:1553
+#: lib/psm.c:1560
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1662
+#: lib/psm.c:1669
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Kunne ikke åpne spec fil %s: %s\n"
-#: lib/psm.c:1708
+#: lib/psm.c:1715
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1717
+#: lib/psm.c:1724
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1765
+#: lib/psm.c:1772
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
-#: lib/psm.c:1766
+#: lib/psm.c:1773
msgid " on file "
msgstr ""
-#: lib/psm.c:1949
+#: lib/psm.c:1956
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "klarte ikke å åpne %s: %s\n"
-#: lib/psm.c:1952
+#: lib/psm.c:1959
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s feilet\n"
-#: lib/query.c:122 lib/rpmts.c:430
+#: lib/query.c:122 lib/rpmts.c:451
#, c-format
msgid "incorrect format: %s\n"
msgstr "ukorrekt format: %s\n"
#. @-boundswrite@
-#: lib/query.c:181
+#: lib/query.c:186
msgid "(contains no files)"
msgstr "(inneholder ingen filer)"
-#: lib/query.c:246
+#: lib/query.c:251
msgid "normal "
msgstr "normal "
-#: lib/query.c:249
+#: lib/query.c:254
msgid "replaced "
msgstr "erstattet "
-#: lib/query.c:252
+#: lib/query.c:257
msgid "not installed "
msgstr "ikke installert"
-#: lib/query.c:255
+#: lib/query.c:260
msgid "net shared "
msgstr "delt via nett "
-#: lib/query.c:258
+#: lib/query.c:263
msgid "wrong color "
msgstr ""
-#: lib/query.c:261
+#: lib/query.c:266
msgid "(no state) "
msgstr "(ingen tilstand)"
-#: lib/query.c:264
+#: lib/query.c:269
#, c-format
msgid "(unknown %3d) "
msgstr "(ukjent %3d) "
-#: lib/query.c:282
+#: lib/query.c:287
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "pakken har verken fileier eller id-lister\n"
-#: lib/query.c:315
+#: lib/query.c:320
msgid "package has neither file owner or id lists\n"
msgstr "pakken har verken fileier eller id-lister\n"
-#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
+#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
#: 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"
-#: lib/query.c:459
+#: lib/query.c:464
#, c-format
msgid "query of %s failed\n"
msgstr "spørring på %s feilet\n"
-#: lib/query.c:469
+#: lib/query.c:474
msgid "old format source packages cannot be queried\n"
msgstr "kildepakker i gammelt format kan ikke spørres\n"
-#: lib/query.c:502 lib/rpminstall.c:608
+#: lib/query.c:507 lib/rpminstall.c:608
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "ingen pakke utløser %s\n"
-#: lib/query.c:531
+#: lib/query.c:536
msgid "no packages\n"
msgstr "ingen pakker\n"
-#: lib/query.c:551
+#: lib/query.c:556
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "gruppe %s inneholder ingen pakker\n"
-#: lib/query.c:560
+#: lib/query.c:565
#, c-format
msgid "no package triggers %s\n"
msgstr "ingen pakke utløser %s\n"
-#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
+#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "kunne ikke opprette %s: %s\n"
-#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
+#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "ingen pakke utløser %s\n"
-#: lib/query.c:663
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "ingen pakke krever %s\n"
-#: lib/query.c:674
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "ingen pakke gir %s\n"
-#: lib/query.c:709
+#: lib/query.c:714
#, c-format
msgid "file %s: %s\n"
msgstr "fil %s: %s\n"
-#: lib/query.c:713
+#: lib/query.c:718
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "filen %s eies ikke av noen pakke\n"
-#: lib/query.c:738
+#: lib/query.c:743
#, c-format
msgid "invalid package number: %s\n"
msgstr "ugyldig pakkenummer: %s\n"
-#: lib/query.c:741
+#: lib/query.c:746
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:746
+#: lib/query.c:751
#, c-format
msgid "record %u could not be read\n"
msgstr ""
-#: lib/query.c:756 lib/rpminstall.c:779
+#: lib/query.c:761 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "pakke %s er ikke installert\n"
@@ -2835,28 +2835,28 @@ msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr "Kunne ikke åpne spec fil %s: %s\n"
-#: lib/rpmts.c:135
+#: lib/rpmts.c:156
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "kan ikke åpne pakkedatabase i %s\n"
-#: lib/rpmts.c:320
+#: lib/rpmts.c:341
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "kan ikke åpne database i %s\n"
-#: lib/rpmts.c:462
+#: lib/rpmts.c:483
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "Installerer %s\n"
-#: lib/rpmts.c:474
+#: lib/rpmts.c:495
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "Henter %s\n"
#. Get available space on mounted file systems.
-#: lib/rpmts.c:906
+#: lib/rpmts.c:927
msgid "getting list of mounted filesystems\n"
msgstr "henter liste over monterte filsystemer\n"
@@ -3028,7 +3028,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:935
+#: lib/transaction.c:956
#, c-format
msgid "excluding directory %s\n"
msgstr "ekskluderer katalog %s\n"
@@ -3041,7 +3041,7 @@ msgstr "ekskluderer katalog %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1047
+#: lib/transaction.c:1068
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3054,7 +3054,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1129
+#: lib/transaction.c:1156
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3062,7 +3062,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1206
+#: lib/transaction.c:1233
msgid "computing file dispositions\n"
msgstr ""
diff --git a/po/pl.po b/po/pl.po
index 0a8071190..9f1904b43 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: 2003-01-13 15:26-0500\n"
+"POT-Creation-Date: 2003-01-17 12:33-0500\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"
@@ -742,7 +742,7 @@ msgstr "Nie mo¿na odczytaæ ikony: %s"
msgid "Could not open %s: %s\n"
msgstr "Nie mo¿na otworzyæ %s\n"
-#: build/pack.c:632 lib/psm.c:1650
+#: build/pack.c:632 lib/psm.c:1657
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "Nie mo¿na zapisaæ pakietu: %s"
@@ -772,7 +772,7 @@ msgstr "Nie mo¿na odczytaæ ikony: %s"
msgid "Unable to write payload to %s: %s\n"
msgstr "Nie mo¿na zapisaæ pakietu: %s"
-#: build/pack.c:725 lib/psm.c:1941
+#: build/pack.c:725 lib/psm.c:1948
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapisano: %s\n"
@@ -1383,75 +1383,75 @@ msgstr ""
msgid " failed - "
msgstr " nie powiod³o siê -"
-#: lib/depends.c:164
+#: lib/depends.c:182
#, fuzzy, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr "pakiet %s-%s-%s jest ju¿ zainstalowany"
-#: lib/depends.c:362
+#: lib/depends.c:380
msgid "(cached)"
msgstr ""
-#: lib/depends.c:389
+#: lib/depends.c:407
msgid "(rpmrc provides)"
msgstr ""
-#: lib/depends.c:406
+#: lib/depends.c:424
#, fuzzy
msgid "(rpmlib provides)"
msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
-#: lib/depends.c:435
+#: lib/depends.c:453
#, fuzzy
msgid "(db files)"
msgstr "b³êdny status pliku: %s"
-#: lib/depends.c:448
+#: lib/depends.c:466
#, fuzzy
msgid "(db provides)"
msgstr "Udostêpniane zasoby:"
-#: lib/depends.c:461
+#: lib/depends.c:479
#, fuzzy
msgid "(db package)"
msgstr "znaleziono %d pakietów\n"
-#: lib/depends.c:815
+#: lib/depends.c:833
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:937
+#: lib/depends.c:955
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "usuwanie indeksu grupy\n"
#. Record all relations.
-#: lib/depends.c:1167
+#: lib/depends.c:1185
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1267
+#: lib/depends.c:1285
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1351
+#: lib/depends.c:1369
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1421
+#: lib/depends.c:1439
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1456
+#: lib/depends.c:1474
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1461
+#: lib/depends.c:1479
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -2260,181 +2260,181 @@ msgstr "%s pomijany - transmisja %s nie powiod³a siê\n"
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "wykonanie skryptu nie powiod³o siê"
-#: lib/psm.c:1420
+#: lib/psm.c:1421
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "pakiet: %s-%s-%s test plików = %d\n"
-#: lib/psm.c:1553
+#: lib/psm.c:1560
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1662
+#: lib/psm.c:1669
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Nie mo¿na odczytaæ ikony: %s"
-#: lib/psm.c:1708
+#: lib/psm.c:1715
#, fuzzy, c-format
msgid "user %s does not exist - using root\n"
msgstr "u¿ytkownik %s nie istnieje - u¿yto konta root"
-#: lib/psm.c:1717
+#: lib/psm.c:1724
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "grupa %s nie istnieje - u¿yto grupy root"
-#: lib/psm.c:1765
+#: lib/psm.c:1772
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "rozpakowanie archiwum nie powiod³o siê %s%s: %s"
-#: lib/psm.c:1766
+#: lib/psm.c:1773
msgid " on file "
msgstr " na pliku "
-#: lib/psm.c:1949
+#: lib/psm.c:1956
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "nie mo¿na otworzyæ %s: %s"
-#: lib/psm.c:1952
+#: lib/psm.c:1959
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s nie powiod³o siê"
-#: lib/query.c:122 lib/rpmts.c:430
+#: lib/query.c:122 lib/rpmts.c:451
#, fuzzy, c-format
msgid "incorrect format: %s\n"
msgstr "b³±d w formacie: %s\n"
#. @-boundswrite@
-#: lib/query.c:181
+#: lib/query.c:186
msgid "(contains no files)"
msgstr "(nie zawiera plików)"
-#: lib/query.c:246
+#: lib/query.c:251
msgid "normal "
msgstr "normalny "
-#: lib/query.c:249
+#: lib/query.c:254
msgid "replaced "
msgstr "zast±piony "
-#: lib/query.c:252
+#: lib/query.c:257
msgid "not installed "
msgstr "niezainstalowany"
-#: lib/query.c:255
+#: lib/query.c:260
msgid "net shared "
msgstr "udostêpniony w sieci"
-#: lib/query.c:258
+#: lib/query.c:263
msgid "wrong color "
msgstr ""
-#: lib/query.c:261
+#: lib/query.c:266
msgid "(no state) "
msgstr "(brak statusu)"
-#: lib/query.c:264
+#: lib/query.c:269
#, c-format
msgid "(unknown %3d) "
msgstr "(nieznany %3d)"
-#: lib/query.c:282
+#: lib/query.c:287
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "pakiet nie ma ani w³a¶ciciela pliku ani list id"
-#: lib/query.c:315
+#: lib/query.c:320
#, fuzzy
msgid "package has neither file owner or id lists\n"
msgstr "pakiet nie ma ani w³a¶ciciela pliku ani list id"
-#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
+#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
#: 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"
-#: lib/query.c:459
+#: lib/query.c:464
#, c-format
msgid "query of %s failed\n"
msgstr "odpytywanie %s nie powiod³o siê\n"
-#: lib/query.c:469
+#: lib/query.c:474
msgid "old format source packages cannot be queried\n"
msgstr "pakiety w starym formacie nie mog± byæ odpytywane\n"
-#: lib/query.c:502 lib/rpminstall.c:608
+#: lib/query.c:507 lib/rpminstall.c:608
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "¿aden pakiet nie zahacza %s\n"
-#: lib/query.c:531
+#: lib/query.c:536
#, fuzzy
msgid "no packages\n"
msgstr "znaleziono %d pakietów\n"
-#: lib/query.c:551
+#: lib/query.c:556
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "grupa %s nie zawiera ¿adnych pakietów\n"
-#: lib/query.c:560
+#: lib/query.c:565
#, c-format
msgid "no package triggers %s\n"
msgstr "¿aden pakiet nie zahacza %s\n"
-#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
+#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "Odczytanie %s nie powiod³o siê: %s."
-#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
+#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "¿aden pakiet nie zahacza %s\n"
-#: lib/query.c:663
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "¿aden pakiet nie wymaga %s\n"
-#: lib/query.c:674
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "¿aden pakiet nie udostêpnia %s\n"
-#: lib/query.c:709
+#: lib/query.c:714
#, c-format
msgid "file %s: %s\n"
msgstr "plik %s: %s\n"
-#: lib/query.c:713
+#: lib/query.c:718
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
-#: lib/query.c:738
+#: lib/query.c:743
#, c-format
msgid "invalid package number: %s\n"
msgstr "b³êdny numer pakietu: %s\n"
-#: lib/query.c:741
+#: lib/query.c:746
#, fuzzy, c-format
msgid "package record number: %u\n"
msgstr "numer rekordu pakietu: %d\n"
-#: lib/query.c:746
+#: lib/query.c:751
#, fuzzy, c-format
msgid "record %u could not be read\n"
msgstr "nie mo¿na odczytaæ rekordu %d\n"
-#: lib/query.c:756 lib/rpminstall.c:779
+#: lib/query.c:761 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "pakiet %s nie jest zainstalowany\n"
@@ -2920,28 +2920,28 @@ msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr "Nie mo¿na otworzyæ %s do odczytu: %s."
-#: lib/rpmts.c:135
+#: lib/rpmts.c:156
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "nie mo¿na otworzyæ %s/packages.rpm\n"
-#: lib/rpmts.c:320
+#: lib/rpmts.c:341
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "nie mo¿na otworzyæ %s/packages.rpm\n"
-#: lib/rpmts.c:462
+#: lib/rpmts.c:483
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "linia: %s"
-#: lib/rpmts.c:474
+#: lib/rpmts.c:495
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "¼ród³a w: %s\n"
#. Get available space on mounted file systems.
-#: lib/rpmts.c:906
+#: lib/rpmts.c:927
msgid "getting list of mounted filesystems\n"
msgstr ""
@@ -3119,7 +3119,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr "%s pominiêty z powodu flagi missingok\n"
#. @innercontinue@
-#: lib/transaction.c:935
+#: lib/transaction.c:956
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "tworzenie katalogu: %s\n"
@@ -3132,7 +3132,7 @@ msgstr "tworzenie katalogu: %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1047
+#: lib/transaction.c:1068
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3145,7 +3145,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1129
+#: lib/transaction.c:1156
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3153,7 +3153,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1206
+#: lib/transaction.c:1233
msgid "computing file dispositions\n"
msgstr ""
diff --git a/po/pt.po b/po/pt.po
index 833ae5767..7deadb14a 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm\n"
-"POT-Creation-Date: 2003-01-13 15:26-0500\n"
+"POT-Creation-Date: 2003-01-17 12:33-0500\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"
@@ -725,7 +725,7 @@ msgstr "Não consegui reler o cabeçalho do assinatura.\n"
msgid "Could not open %s: %s\n"
msgstr "Não consigo aceder ao %s: %s\n"
-#: build/pack.c:632 lib/psm.c:1650
+#: build/pack.c:632 lib/psm.c:1657
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Não consegui gravar o pacote: %s\n"
@@ -755,7 +755,7 @@ msgstr "Não consegui ler o conteúdo de %s: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "Não consegui escrever o conteúdo de %s: %s\n"
-#: build/pack.c:725 lib/psm.c:1941
+#: build/pack.c:725 lib/psm.c:1948
#, c-format
msgid "Wrote: %s\n"
msgstr "Gravei: %s\n"
@@ -1356,77 +1356,77 @@ msgstr "Ficheiro de arquivo não está no cabeçalho"
msgid " failed - "
msgstr " falhou - "
-#: lib/depends.c:164
+#: lib/depends.c:182
#, fuzzy, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr "o pacote %s já está instalado"
-#: lib/depends.c:362
+#: lib/depends.c:380
msgid "(cached)"
msgstr ""
-#: lib/depends.c:389
+#: lib/depends.c:407
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %-45s SIM (oferecidos pelo rpmrc)\n"
-#: lib/depends.c:406
+#: lib/depends.c:424
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %-45s SIM (oferecidos pela rpmlib)\n"
-#: lib/depends.c:435
+#: lib/depends.c:453
#, fuzzy
msgid "(db files)"
msgstr "ficheiro db inválido %s\n"
-#: lib/depends.c:448
+#: lib/depends.c:466
#, fuzzy
msgid "(db provides)"
msgstr "%s: %-45s SI (oferecidos pelo db)\n"
-#: lib/depends.c:461
+#: lib/depends.c:479
#, fuzzy
msgid "(db package)"
msgstr "nenhum pacote\n"
-#: lib/depends.c:815
+#: lib/depends.c:833
#, 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:937
+#: lib/depends.c:955
#, 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:1167
+#: lib/depends.c:1185
msgid "========== recording tsort relations\n"
msgstr "=========== a guardar as relações do tsort\n"
#. T4. Scan for zeroes.
-#: lib/depends.c:1267
+#: lib/depends.c:1285
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
"========== ordenar pacotes (order, #predecessors, #succesors, tree, depth)\n"
-#: lib/depends.c:1351
+#: lib/depends.c:1369
msgid "========== successors only (presentation order)\n"
msgstr "========== só os sucessores (ordem de apresentação)\n"
-#: lib/depends.c:1421
+#: lib/depends.c:1439
msgid "LOOP:\n"
msgstr "CICLO:\n"
-#: lib/depends.c:1456
+#: lib/depends.c:1474
msgid "========== continuing tsort ...\n"
msgstr "========== a prosseguir o tsort ...\n"
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1461
+#: lib/depends.c:1479
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -2204,180 +2204,180 @@ msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
"a execução do 'scriptlet' %s do %s-%s-%s falhou com código de erro %d\n"
-#: lib/psm.c:1420
+#: lib/psm.c:1421
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s-%s-%s tem %d ficheiros, teste = %d\n"
-#: lib/psm.c:1553
+#: lib/psm.c:1560
#, fuzzy, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr "%s: %s script falhou (%d), a saltar %s-%s-%s\n"
-#: lib/psm.c:1662
+#: lib/psm.c:1669
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Não consegui reler o cabeçalho do assinatura.\n"
-#: lib/psm.c:1708
+#: lib/psm.c:1715
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "o utilizador %s não existe - a usar o root\n"
-#: lib/psm.c:1717
+#: lib/psm.c:1724
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "o grupo %s não existe - a usar o root\n"
-#: lib/psm.c:1765
+#: lib/psm.c:1772
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "a abertura do pacote falhou%s%s: %s\n"
-#: lib/psm.c:1766
+#: lib/psm.c:1773
msgid " on file "
msgstr " no ficheiro "
-#: lib/psm.c:1949
+#: lib/psm.c:1956
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s falhou no ficheiro %s: %s\n"
-#: lib/psm.c:1952
+#: lib/psm.c:1959
#, c-format
msgid "%s failed: %s\n"
msgstr "%s falhou: %s\n"
-#: lib/query.c:122 lib/rpmts.c:430
+#: lib/query.c:122 lib/rpmts.c:451
#, c-format
msgid "incorrect format: %s\n"
msgstr "formato incorrecto: %s\n"
#. @-boundswrite@
-#: lib/query.c:181
+#: lib/query.c:186
msgid "(contains no files)"
msgstr "(não contém ficheiros)"
-#: lib/query.c:246
+#: lib/query.c:251
msgid "normal "
msgstr "normal "
-#: lib/query.c:249
+#: lib/query.c:254
msgid "replaced "
msgstr "substituído "
-#: lib/query.c:252
+#: lib/query.c:257
msgid "not installed "
msgstr "não instalado "
-#: lib/query.c:255
+#: lib/query.c:260
msgid "net shared "
msgstr "partilhado"
-#: lib/query.c:258
+#: lib/query.c:263
msgid "wrong color "
msgstr ""
-#: lib/query.c:261
+#: lib/query.c:266
msgid "(no state) "
msgstr "(sem estado) "
-#: lib/query.c:264
+#: lib/query.c:269
#, c-format
msgid "(unknown %3d) "
msgstr "(desconhecido %3d)"
-#: lib/query.c:282
+#: lib/query.c:287
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "o pacote nem tem um dono do ficheiro ou as listas de IDs\n"
-#: lib/query.c:315
+#: lib/query.c:320
msgid "package has neither file owner or id lists\n"
msgstr "o pacote nem tem um dono do ficheiro ou as listas de IDs\n"
-#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
+#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
#: 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"
-#: lib/query.c:459
+#: lib/query.c:464
#, c-format
msgid "query of %s failed\n"
msgstr "a pesquisa do %s falhou\n"
-#: lib/query.c:469
+#: lib/query.c:474
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:502 lib/rpminstall.c:608
+#: lib/query.c:507 lib/rpminstall.c:608
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "nenhum pacote coincide com %s: %s\n"
-#: lib/query.c:531
+#: lib/query.c:536
msgid "no packages\n"
msgstr "nenhum pacote\n"
-#: lib/query.c:551
+#: lib/query.c:556
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "o grupo %s não contém nenhum pacote\n"
-#: lib/query.c:560
+#: lib/query.c:565
#, c-format
msgid "no package triggers %s\n"
msgstr "nenhum pacote activa o %s\n"
-#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
+#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
#, c-format
msgid "malformed %s: %s\n"
msgstr "malformado %s: %s\n"
-#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
+#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
#, c-format
msgid "no package matches %s: %s\n"
msgstr "nenhum pacote coincide com %s: %s\n"
-#: lib/query.c:663
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "nenhum pacote precisa do %s\n"
-#: lib/query.c:674
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "nenhum pacote oferece o %s\n"
-#: lib/query.c:709
+#: lib/query.c:714
#, c-format
msgid "file %s: %s\n"
msgstr "ficheiro %s: %s\n"
-#: lib/query.c:713
+#: lib/query.c:718
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "o ficheiro %s não pertence a nenhum pacote\n"
-#: lib/query.c:738
+#: lib/query.c:743
#, c-format
msgid "invalid package number: %s\n"
msgstr "número de pacote inválido: %s\n"
-#: lib/query.c:741
+#: lib/query.c:746
#, c-format
msgid "package record number: %u\n"
msgstr "número de registo do pacote: %u\n"
-#: lib/query.c:746
+#: lib/query.c:751
#, c-format
msgid "record %u could not be read\n"
msgstr "o registo %u não pôde ser lido\n"
-#: lib/query.c:756 lib/rpminstall.c:779
+#: lib/query.c:761 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "o pacote %s não está instalado\n"
@@ -2866,28 +2866,28 @@ msgstr "Não consigo ler o %s, a HOME é demasiado grande.\n"
msgid "Unable to open %s for reading: %s.\n"
msgstr "Não consegui abrir o %s para leitura: %s.\n"
-#: lib/rpmts.c:135
+#: lib/rpmts.c:156
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "não consigo abrir a base de dados Packages em %s\n"
-#: lib/rpmts.c:320
+#: lib/rpmts.c:341
#, 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:462
+#: lib/rpmts.c:483
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "linha: %s\n"
-#: lib/rpmts.c:474
+#: lib/rpmts.c:495
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "A obter o %s\n"
#. Get available space on mounted file systems.
-#: lib/rpmts.c:906
+#: lib/rpmts.c:927
msgid "getting list of mounted filesystems\n"
msgstr ""
@@ -3061,7 +3061,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr "%s ignorado devido à opção missingok\n"
#. @innercontinue@
-#: lib/transaction.c:935
+#: lib/transaction.c:956
#, c-format
msgid "excluding directory %s\n"
msgstr "a excluir a directoria %s\n"
@@ -3074,7 +3074,7 @@ msgstr "a excluir a directoria %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1047
+#: lib/transaction.c:1068
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3087,7 +3087,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1129
+#: lib/transaction.c:1156
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3095,7 +3095,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1206
+#: lib/transaction.c:1233
msgid "computing file dispositions\n"
msgstr ""
diff --git a/po/pt_BR.po b/po/pt_BR.po
index d3e3dddb8..782e6b52d 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: 2003-01-13 15:26-0500\n"
+"POT-Creation-Date: 2003-01-17 12:33-0500\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8-bit\n"
@@ -799,7 +799,7 @@ msgid "Could not open %s: %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
-#: build/pack.c:632 lib/psm.c:1650
+#: build/pack.c:632 lib/psm.c:1657
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "No consegui abrir: %s\n"
@@ -834,7 +834,7 @@ msgstr "No consegui abrir: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "No consegui abrir: %s\n"
-#: build/pack.c:725 lib/psm.c:1941
+#: build/pack.c:725 lib/psm.c:1948
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@@ -1494,75 +1494,75 @@ msgstr ""
msgid " failed - "
msgstr "Construo falhou.\n"
-#: lib/depends.c:164
+#: lib/depends.c:182
#, fuzzy, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr "no foi passado pacote para instalao"
-#: lib/depends.c:362
+#: lib/depends.c:380
msgid "(cached)"
msgstr ""
-#: lib/depends.c:389
+#: lib/depends.c:407
msgid "(rpmrc provides)"
msgstr ""
-#: lib/depends.c:406
+#: lib/depends.c:424
msgid "(rpmlib provides)"
msgstr ""
# , c-format
-#: lib/depends.c:435
+#: lib/depends.c:453
#, fuzzy
msgid "(db files)"
msgstr "No consegui abrir: %s\n"
-#: lib/depends.c:448
+#: lib/depends.c:466
msgid "(db provides)"
msgstr ""
-#: lib/depends.c:461
+#: lib/depends.c:479
#, fuzzy
msgid "(db package)"
msgstr "pesquise todos os pacotes"
-#: lib/depends.c:815
+#: lib/depends.c:833
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
# , c-format
-#: lib/depends.c:937
+#: lib/depends.c:955
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "No consegui abrir: %s\n"
#. Record all relations.
-#: lib/depends.c:1167
+#: lib/depends.c:1185
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1267
+#: lib/depends.c:1285
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1351
+#: lib/depends.c:1369
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1421
+#: lib/depends.c:1439
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1456
+#: lib/depends.c:1474
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1461
+#: lib/depends.c:1479
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -2386,185 +2386,185 @@ msgstr ""
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
-#: lib/psm.c:1420
+#: lib/psm.c:1421
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "no foi passado pacote para instalao"
-#: lib/psm.c:1553
+#: lib/psm.c:1560
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
# , c-format
-#: lib/psm.c:1662
+#: lib/psm.c:1669
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "No consegui abrir: %s\n"
-#: lib/psm.c:1708
+#: lib/psm.c:1715
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1717
+#: lib/psm.c:1724
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1765
+#: lib/psm.c:1772
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "Construo falhou.\n"
-#: lib/psm.c:1766
+#: lib/psm.c:1773
msgid " on file "
msgstr ""
# , c-format
-#: lib/psm.c:1949
+#: lib/psm.c:1956
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "No consegui abrir: %s\n"
-#: lib/psm.c:1952
+#: lib/psm.c:1959
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "Construo falhou.\n"
-#: lib/query.c:122 lib/rpmts.c:430
+#: lib/query.c:122 lib/rpmts.c:451
#, c-format
msgid "incorrect format: %s\n"
msgstr ""
#. @-boundswrite@
-#: lib/query.c:181
+#: lib/query.c:186
msgid "(contains no files)"
msgstr ""
-#: lib/query.c:246
+#: lib/query.c:251
msgid "normal "
msgstr ""
-#: lib/query.c:249
+#: lib/query.c:254
msgid "replaced "
msgstr ""
-#: lib/query.c:252
+#: lib/query.c:257
#, fuzzy
msgid "not installed "
msgstr "no foi passado pacote para instalao"
-#: lib/query.c:255
+#: lib/query.c:260
msgid "net shared "
msgstr ""
-#: lib/query.c:258
+#: lib/query.c:263
msgid "wrong color "
msgstr ""
-#: lib/query.c:261
+#: lib/query.c:266
msgid "(no state) "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:269
#, c-format
msgid "(unknown %3d) "
msgstr ""
-#: lib/query.c:282
+#: lib/query.c:287
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "no foi passado pacote para instalao"
-#: lib/query.c:315
+#: lib/query.c:320
#, fuzzy
msgid "package has neither file owner or id lists\n"
msgstr "no foi passado pacote para instalao"
-#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
+#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "Construo falhou.\n"
-#: lib/query.c:459
+#: lib/query.c:464
#, c-format
msgid "query of %s failed\n"
msgstr ""
-#: lib/query.c:469
+#: lib/query.c:474
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:502 lib/rpminstall.c:608
+#: lib/query.c:507 lib/rpminstall.c:608
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "no foram passados pacotes para assinatura"
-#: lib/query.c:531
+#: lib/query.c:536
#, fuzzy
msgid "no packages\n"
msgstr "pesquise todos os pacotes"
-#: lib/query.c:551
+#: lib/query.c:556
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
-#: lib/query.c:560
+#: lib/query.c:565
#, fuzzy, c-format
msgid "no package triggers %s\n"
msgstr "no foram passados pacotes para assinatura"
# , c-format
-#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
+#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "No consegui ler o arquivo spec de %s\n"
-#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
+#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "no foram passados pacotes para assinatura"
-#: lib/query.c:663
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr ""
-#: lib/query.c:674
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr ""
-#: lib/query.c:709
+#: lib/query.c:714
#, c-format
msgid "file %s: %s\n"
msgstr ""
-#: lib/query.c:713
+#: lib/query.c:718
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
-#: lib/query.c:738
+#: lib/query.c:743
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
-#: lib/query.c:741
+#: lib/query.c:746
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:746
+#: lib/query.c:751
#, c-format
msgid "record %u could not be read\n"
msgstr ""
-#: lib/query.c:756 lib/rpminstall.c:779
+#: lib/query.c:761 lib/rpminstall.c:779
#, fuzzy, c-format
msgid "package %s is not installed\n"
msgstr "no foi passado pacote para instalao"
@@ -3093,19 +3093,19 @@ msgid "Unable to open %s for reading: %s.\n"
msgstr "No consegui abrir: %s\n"
# , c-format
-#: lib/rpmts.c:135
+#: lib/rpmts.c:156
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
-#: lib/rpmts.c:320
+#: lib/rpmts.c:341
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
-#: lib/rpmts.c:462
+#: lib/rpmts.c:483
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "No consegui ler o arquivo spec de %s\n"
@@ -3118,13 +3118,13 @@ msgstr "No consegui ler o arquivo spec de %s\n"
# "Content-Type: text/plain; charset=ISO-8859-1\n"
# "Content-Transfer-Encoding: 8-bit\n"
# , c-format
-#: lib/rpmts.c:474
+#: lib/rpmts.c:495
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "RPM verso %s\n"
#. Get available space on mounted file systems.
-#: lib/rpmts.c:906
+#: lib/rpmts.c:927
msgid "getting list of mounted filesystems\n"
msgstr ""
@@ -3310,7 +3310,7 @@ msgstr ""
# "Content-Transfer-Encoding: 8-bit\n"
# , c-format
#. @innercontinue@
-#: lib/transaction.c:935
+#: lib/transaction.c:956
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "RPM verso %s\n"
@@ -3323,7 +3323,7 @@ msgstr "RPM verso %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1047
+#: lib/transaction.c:1068
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3336,7 +3336,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1129
+#: lib/transaction.c:1156
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3344,7 +3344,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1206
+#: lib/transaction.c:1233
msgid "computing file dispositions\n"
msgstr ""
diff --git a/po/ro.po b/po/ro.po
index 40c65bacc..b3aad6d8b 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: 2003-01-13 15:26-0500\n"
+"POT-Creation-Date: 2003-01-17 12:33-0500\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"
@@ -701,7 +701,7 @@ msgstr ""
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:632 lib/psm.c:1650
+#: build/pack.c:632 lib/psm.c:1657
#, c-format
msgid "Unable to write package: %s\n"
msgstr ""
@@ -731,7 +731,7 @@ msgstr ""
msgid "Unable to write payload to %s: %s\n"
msgstr ""
-#: build/pack.c:725 lib/psm.c:1941
+#: build/pack.c:725 lib/psm.c:1948
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@@ -1320,71 +1320,71 @@ msgstr ""
msgid " failed - "
msgstr ""
-#: lib/depends.c:164
+#: lib/depends.c:182
#, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr ""
-#: lib/depends.c:362
+#: lib/depends.c:380
msgid "(cached)"
msgstr ""
-#: lib/depends.c:389
+#: lib/depends.c:407
msgid "(rpmrc provides)"
msgstr ""
-#: lib/depends.c:406
+#: lib/depends.c:424
msgid "(rpmlib provides)"
msgstr ""
-#: lib/depends.c:435
+#: lib/depends.c:453
msgid "(db files)"
msgstr ""
-#: lib/depends.c:448
+#: lib/depends.c:466
msgid "(db provides)"
msgstr ""
-#: lib/depends.c:461
+#: lib/depends.c:479
msgid "(db package)"
msgstr ""
-#: lib/depends.c:815
+#: lib/depends.c:833
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:937
+#: lib/depends.c:955
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
-#: lib/depends.c:1167
+#: lib/depends.c:1185
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1267
+#: lib/depends.c:1285
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1351
+#: lib/depends.c:1369
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1421
+#: lib/depends.c:1439
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1456
+#: lib/depends.c:1474
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1461
+#: lib/depends.c:1479
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -2129,177 +2129,177 @@ msgstr ""
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
-#: lib/psm.c:1420
+#: lib/psm.c:1421
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
-#: lib/psm.c:1553
+#: lib/psm.c:1560
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1662
+#: lib/psm.c:1669
msgid "Unable to reload signature header\n"
msgstr ""
-#: lib/psm.c:1708
+#: lib/psm.c:1715
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1717
+#: lib/psm.c:1724
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1765
+#: lib/psm.c:1772
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
-#: lib/psm.c:1766
+#: lib/psm.c:1773
msgid " on file "
msgstr ""
-#: lib/psm.c:1949
+#: lib/psm.c:1956
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
-#: lib/psm.c:1952
+#: lib/psm.c:1959
#, c-format
msgid "%s failed: %s\n"
msgstr ""
-#: lib/query.c:122 lib/rpmts.c:430
+#: lib/query.c:122 lib/rpmts.c:451
#, c-format
msgid "incorrect format: %s\n"
msgstr ""
#. @-boundswrite@
-#: lib/query.c:181
+#: lib/query.c:186
msgid "(contains no files)"
msgstr ""
-#: lib/query.c:246
+#: lib/query.c:251
msgid "normal "
msgstr ""
-#: lib/query.c:249
+#: lib/query.c:254
msgid "replaced "
msgstr ""
-#: lib/query.c:252
+#: lib/query.c:257
msgid "not installed "
msgstr ""
-#: lib/query.c:255
+#: lib/query.c:260
msgid "net shared "
msgstr ""
-#: lib/query.c:258
+#: lib/query.c:263
msgid "wrong color "
msgstr ""
-#: lib/query.c:261
+#: lib/query.c:266
msgid "(no state) "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:269
#, c-format
msgid "(unknown %3d) "
msgstr ""
-#: lib/query.c:282
+#: lib/query.c:287
msgid "package has not file owner/group lists\n"
msgstr ""
-#: lib/query.c:315
+#: lib/query.c:320
msgid "package has neither file owner or id lists\n"
msgstr ""
-#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
+#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
-#: lib/query.c:459
+#: lib/query.c:464
#, c-format
msgid "query of %s failed\n"
msgstr ""
-#: lib/query.c:469
+#: lib/query.c:474
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:502 lib/rpminstall.c:608
+#: lib/query.c:507 lib/rpminstall.c:608
#, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr ""
-#: lib/query.c:531
+#: lib/query.c:536
msgid "no packages\n"
msgstr ""
-#: lib/query.c:551
+#: lib/query.c:556
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
-#: lib/query.c:560
+#: lib/query.c:565
#, c-format
msgid "no package triggers %s\n"
msgstr ""
-#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
+#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
#, c-format
msgid "malformed %s: %s\n"
msgstr ""
-#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
+#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
#, c-format
msgid "no package matches %s: %s\n"
msgstr ""
-#: lib/query.c:663
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr ""
-#: lib/query.c:674
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr ""
-#: lib/query.c:709
+#: lib/query.c:714
#, c-format
msgid "file %s: %s\n"
msgstr ""
-#: lib/query.c:713
+#: lib/query.c:718
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
-#: lib/query.c:738
+#: lib/query.c:743
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
-#: lib/query.c:741
+#: lib/query.c:746
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:746
+#: lib/query.c:751
#, c-format
msgid "record %u could not be read\n"
msgstr ""
-#: lib/query.c:756 lib/rpminstall.c:779
+#: lib/query.c:761 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr ""
@@ -2775,28 +2775,28 @@ msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr ""
-#: lib/rpmts.c:135
+#: lib/rpmts.c:156
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr ""
-#: lib/rpmts.c:320
+#: lib/rpmts.c:341
#, c-format
msgid "cannot open Solve database in %s\n"
msgstr ""
-#: lib/rpmts.c:462
+#: lib/rpmts.c:483
#, c-format
msgid "Adding: %s\n"
msgstr ""
-#: lib/rpmts.c:474
+#: lib/rpmts.c:495
#, c-format
msgid "Suggesting: %s\n"
msgstr ""
#. Get available space on mounted file systems.
-#: lib/rpmts.c:906
+#: lib/rpmts.c:927
msgid "getting list of mounted filesystems\n"
msgstr ""
@@ -2965,7 +2965,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:935
+#: lib/transaction.c:956
#, c-format
msgid "excluding directory %s\n"
msgstr ""
@@ -2978,7 +2978,7 @@ msgstr ""
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1047
+#: lib/transaction.c:1068
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -2991,7 +2991,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1129
+#: lib/transaction.c:1156
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -2999,7 +2999,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1206
+#: lib/transaction.c:1233
msgid "computing file dispositions\n"
msgstr ""
diff --git a/po/rpm.pot b/po/rpm.pot
index e52fa94a2..45debdf1b 100644
--- a/po/rpm.pot
+++ b/po/rpm.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2003-01-13 15:26-0500\n"
+"POT-Creation-Date: 2003-01-17 12:33-0500\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"
@@ -707,7 +707,7 @@ msgstr ""
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:632 lib/psm.c:1650
+#: build/pack.c:632 lib/psm.c:1657
#, c-format
msgid "Unable to write package: %s\n"
msgstr ""
@@ -737,7 +737,7 @@ msgstr ""
msgid "Unable to write payload to %s: %s\n"
msgstr ""
-#: build/pack.c:725 lib/psm.c:1941
+#: build/pack.c:725 lib/psm.c:1948
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@@ -1326,71 +1326,71 @@ msgstr ""
msgid " failed - "
msgstr ""
-#: lib/depends.c:164
+#: lib/depends.c:182
#, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr ""
-#: lib/depends.c:362
+#: lib/depends.c:380
msgid "(cached)"
msgstr ""
-#: lib/depends.c:389
+#: lib/depends.c:407
msgid "(rpmrc provides)"
msgstr ""
-#: lib/depends.c:406
+#: lib/depends.c:424
msgid "(rpmlib provides)"
msgstr ""
-#: lib/depends.c:435
+#: lib/depends.c:453
msgid "(db files)"
msgstr ""
-#: lib/depends.c:448
+#: lib/depends.c:466
msgid "(db provides)"
msgstr ""
-#: lib/depends.c:461
+#: lib/depends.c:479
msgid "(db package)"
msgstr ""
-#: lib/depends.c:815
+#: lib/depends.c:833
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:937
+#: lib/depends.c:955
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
-#: lib/depends.c:1167
+#: lib/depends.c:1185
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1267
+#: lib/depends.c:1285
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1351
+#: lib/depends.c:1369
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1421
+#: lib/depends.c:1439
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1456
+#: lib/depends.c:1474
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1461
+#: lib/depends.c:1479
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -2135,177 +2135,177 @@ msgstr ""
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
-#: lib/psm.c:1420
+#: lib/psm.c:1421
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
-#: lib/psm.c:1553
+#: lib/psm.c:1560
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1662
+#: lib/psm.c:1669
msgid "Unable to reload signature header\n"
msgstr ""
-#: lib/psm.c:1708
+#: lib/psm.c:1715
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1717
+#: lib/psm.c:1724
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1765
+#: lib/psm.c:1772
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
-#: lib/psm.c:1766
+#: lib/psm.c:1773
msgid " on file "
msgstr ""
-#: lib/psm.c:1949
+#: lib/psm.c:1956
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
-#: lib/psm.c:1952
+#: lib/psm.c:1959
#, c-format
msgid "%s failed: %s\n"
msgstr ""
-#: lib/query.c:122 lib/rpmts.c:430
+#: lib/query.c:122 lib/rpmts.c:451
#, c-format
msgid "incorrect format: %s\n"
msgstr ""
#. @-boundswrite@
-#: lib/query.c:181
+#: lib/query.c:186
msgid "(contains no files)"
msgstr ""
-#: lib/query.c:246
+#: lib/query.c:251
msgid "normal "
msgstr ""
-#: lib/query.c:249
+#: lib/query.c:254
msgid "replaced "
msgstr ""
-#: lib/query.c:252
+#: lib/query.c:257
msgid "not installed "
msgstr ""
-#: lib/query.c:255
+#: lib/query.c:260
msgid "net shared "
msgstr ""
-#: lib/query.c:258
+#: lib/query.c:263
msgid "wrong color "
msgstr ""
-#: lib/query.c:261
+#: lib/query.c:266
msgid "(no state) "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:269
#, c-format
msgid "(unknown %3d) "
msgstr ""
-#: lib/query.c:282
+#: lib/query.c:287
msgid "package has not file owner/group lists\n"
msgstr ""
-#: lib/query.c:315
+#: lib/query.c:320
msgid "package has neither file owner or id lists\n"
msgstr ""
-#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
+#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
-#: lib/query.c:459
+#: lib/query.c:464
#, c-format
msgid "query of %s failed\n"
msgstr ""
-#: lib/query.c:469
+#: lib/query.c:474
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:502 lib/rpminstall.c:608
+#: lib/query.c:507 lib/rpminstall.c:608
#, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr ""
-#: lib/query.c:531
+#: lib/query.c:536
msgid "no packages\n"
msgstr ""
-#: lib/query.c:551
+#: lib/query.c:556
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
-#: lib/query.c:560
+#: lib/query.c:565
#, c-format
msgid "no package triggers %s\n"
msgstr ""
-#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
+#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
#, c-format
msgid "malformed %s: %s\n"
msgstr ""
-#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
+#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
#, c-format
msgid "no package matches %s: %s\n"
msgstr ""
-#: lib/query.c:663
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr ""
-#: lib/query.c:674
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr ""
-#: lib/query.c:709
+#: lib/query.c:714
#, c-format
msgid "file %s: %s\n"
msgstr ""
-#: lib/query.c:713
+#: lib/query.c:718
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
-#: lib/query.c:738
+#: lib/query.c:743
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
-#: lib/query.c:741
+#: lib/query.c:746
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:746
+#: lib/query.c:751
#, c-format
msgid "record %u could not be read\n"
msgstr ""
-#: lib/query.c:756 lib/rpminstall.c:779
+#: lib/query.c:761 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr ""
@@ -2781,28 +2781,28 @@ msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr ""
-#: lib/rpmts.c:135
+#: lib/rpmts.c:156
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr ""
-#: lib/rpmts.c:320
+#: lib/rpmts.c:341
#, c-format
msgid "cannot open Solve database in %s\n"
msgstr ""
-#: lib/rpmts.c:462
+#: lib/rpmts.c:483
#, c-format
msgid "Adding: %s\n"
msgstr ""
-#: lib/rpmts.c:474
+#: lib/rpmts.c:495
#, c-format
msgid "Suggesting: %s\n"
msgstr ""
#. Get available space on mounted file systems.
-#: lib/rpmts.c:906
+#: lib/rpmts.c:927
msgid "getting list of mounted filesystems\n"
msgstr ""
@@ -2971,7 +2971,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:935
+#: lib/transaction.c:956
#, c-format
msgid "excluding directory %s\n"
msgstr ""
@@ -2984,7 +2984,7 @@ msgstr ""
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1047
+#: lib/transaction.c:1068
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -2997,7 +2997,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1129
+#: lib/transaction.c:1156
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3005,7 +3005,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1206
+#: lib/transaction.c:1233
msgid "computing file dispositions\n"
msgstr ""
diff --git a/po/ru.po b/po/ru.po
index 4012b485a..8b3221227 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: 2003-01-13 15:26-0500\n"
+"POT-Creation-Date: 2003-01-17 12:33-0500\n"
"PO-Revision-Date: 2002-08-27 13:36-0400\n"
"Last-Translator: Eugene Kanter, <eugene@blackcatlinux.com>\n"
"Language-Team: Black Cat Linux Team <blackcat-support@blackcatlinux.com>\n"
@@ -724,7 +724,7 @@ msgstr "îÅ×ÏÚÍÏÖÎÏ ĞÅÒÅÚÁÇÒÕÚÉÔØ ÚÁÇÏÌÏ×ÏË ĞÏÄĞÉÓÉ.\n"
msgid "Could not open %s: %s\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
-#: build/pack.c:632 lib/psm.c:1650
+#: build/pack.c:632 lib/psm.c:1657
#, c-format
msgid "Unable to write package: %s\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁĞÉÓÁÔØ ĞÁËÅÔ: %s\n"
@@ -754,7 +754,7 @@ msgstr "îÅ×ÏÚÍÏÖÎÏ ĞÒÏŞÉÔÁÔØ ÓÏÄÅÒÖÉÍÏÅ ÉÚ %s: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁĞÉÓÁÔØ ÓÏÄÅÒÖÉÍÏÅ × %s: %s\n"
-#: build/pack.c:725 lib/psm.c:1941
+#: build/pack.c:725 lib/psm.c:1948
#, c-format
msgid "Wrote: %s\n"
msgstr "úÁĞÉÓÁÎ: %s\n"
@@ -1356,52 +1356,52 @@ msgstr "æÁÊÌ ÁÒÈÉ×Á ÎÅ ÎÁÊÄÅÎ × ÚÁÇÏÌÏ×ËÅ ĞÁËÅÔÁ"
msgid " failed - "
msgstr "ÎÅ ÕÄÁÌÏÓØ - "
-#: lib/depends.c:164
+#: lib/depends.c:182
#, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr "ĞÁËÅÔ %s ÕÖÅ ÂÙÌ ÄÏÂÁ×ÌÅÎ, ÚÁÍÅÎÑÅÔÓÑ %s\n"
-#: lib/depends.c:362
+#: lib/depends.c:380
msgid "(cached)"
msgstr "(ËÜÛÉÒÏ×ÁÎ)"
-#: lib/depends.c:389
+#: lib/depends.c:407
msgid "(rpmrc provides)"
msgstr "(rpmrc provides)"
-#: lib/depends.c:406
+#: lib/depends.c:424
msgid "(rpmlib provides)"
msgstr "(rpmlib provides)"
-#: lib/depends.c:435
+#: lib/depends.c:453
msgid "(db files)"
msgstr "(db files)"
-#: lib/depends.c:448
+#: lib/depends.c:466
msgid "(db provides)"
msgstr "(db provides)"
-#: lib/depends.c:461
+#: lib/depends.c:479
msgid "(db package)"
msgstr "(db package)"
-#: lib/depends.c:815
+#: lib/depends.c:833
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr "ÉÇÎÏÒÉÒÏ×ÁÔØ ÚÁ×ÉÓÉÍÏÓÔ(É) ÉͣΠĞÁËÅÔÁ(Ï×) [%d]\t%s -> %s\n"
-#: lib/depends.c:937
+#: lib/depends.c:955
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "ÕÄÁÌÑÅÔÓÑ %s \"%s\" ÉÚ ÓÏÒÔÉÒÏ×ÁÎÎÙÈ Ó×ÑÚÅÊ.\n"
#. Record all relations.
-#: lib/depends.c:1167
+#: lib/depends.c:1185
msgid "========== recording tsort relations\n"
msgstr "========== ÚÁĞÉÓØ ÕĞÏÒÑÄÏŞÅÎÎÙÈ ÚÁ×ÉÓÉÍÏÓÔÅÊ\n"
#. T4. Scan for zeroes.
-#: lib/depends.c:1267
+#: lib/depends.c:1285
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
@@ -1409,20 +1409,20 @@ msgstr ""
"========== ÓÏÒÔÉÒÏ×ËÁ ĞÁËÅÔÏ× (ÏŞÅÒÅÄÎÏÓÔØ, #predecessors, #succesors, "
"ÄÅÒÅ×Ï, ÇÌÕÂÉÎÁ)\n"
-#: lib/depends.c:1351
+#: lib/depends.c:1369
msgid "========== successors only (presentation order)\n"
msgstr "========== ÔÏÌØËÏ ĞÏÓÌÅÄÏ×ÁÔÅÌÉ (× ĞÏÒÑÄËÅ ĞÒÅÄÓÔÁ×ÌÅÎÉÑ)\n"
-#: lib/depends.c:1421
+#: lib/depends.c:1439
msgid "LOOP:\n"
msgstr "ãéëì:\n"
-#: lib/depends.c:1456
+#: lib/depends.c:1474
msgid "========== continuing tsort ...\n"
msgstr "========== ĞÒÏÄÏÌÖÅÎÉÅ ÕĞÏÒÑÄÏŞÅÎÉÑ ...\n"
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1461
+#: lib/depends.c:1479
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr "ÏÛÉÂËÁ rpmtsOrder, ÏÓÔÁÌÏÓØ %d ÜÌÅÍÅÎÔÏ×\n"
@@ -2177,177 +2177,177 @@ msgstr "%s(%s-%s-%s) ÏÛÉÂËÁ ÓÃÅÎÁÒÉÑ, waitpid(%d) rc %d: %s\n"
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "%s(%s-%s-%s) ÏÛÉÂËÁ ×ÙĞÏÌÎÅÎÉÑ ÓÃÅÎÁÒÉÑ, ËÏÄ ×ÏÚ×ÒÁÔÁ %d\n"
-#: lib/psm.c:1420
+#: lib/psm.c:1421
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s ÓÏÄÅÒÖÉÔ %d ÆÁÊÌÏ×, ÒÅÚÕÌØÔÁÔ ĞÒÏ×ÅÒËÉ: %d\n"
-#: lib/psm.c:1553
+#: lib/psm.c:1560
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr "%s: %s ÏÛÉÂËÁ ÓÃÅÎÁÒÉÑ (%d), ĞÒÏĞÕÓËÁÅÔÓÑ %s\n"
-#: lib/psm.c:1662
+#: lib/psm.c:1669
msgid "Unable to reload signature header\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ĞÅÒÅÚÁÇÒÕÚÉÔØ ÚÁÇÏÌÏ×ÏË ĞÏÄĞÉÓÉ\n"
-#: lib/psm.c:1708
+#: lib/psm.c:1715
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "ĞÏÌØÚÏ×ÁÔÅÌØ %s ÎÅ ÓÕİÅÓÔ×ÕÅÔ - ÉÓĞÏÌØÚÕÅÔÓÑ root\n"
-#: lib/psm.c:1717
+#: lib/psm.c:1724
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "ÇÒÕĞĞÁ %s ÎÅ ÓÕİÅÓÔ×ÕÅÔ - ÉÓĞÏÌØÚÕÅÔÓÑ root\n"
-#: lib/psm.c:1765
+#: lib/psm.c:1772
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "ÒÁÓĞÁËÏ×ËÁ ÁÒÈÉ×Á ÎÅ ÕÄÁÌÁÓØ%s%s: %s\n"
-#: lib/psm.c:1766
+#: lib/psm.c:1773
msgid " on file "
msgstr " ÎÁ ÆÁÊÌÅ "
-#: lib/psm.c:1949
+#: lib/psm.c:1956
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s ÏÛÉÂËÁ ÎÁ ÆÁÊÌÅ %s: %s\n"
-#: lib/psm.c:1952
+#: lib/psm.c:1959
#, c-format
msgid "%s failed: %s\n"
msgstr "%s ÎÅ ÕÄÁÌÏÓØ: %s\n"
-#: lib/query.c:122 lib/rpmts.c:430
+#: lib/query.c:122 lib/rpmts.c:451
#, c-format
msgid "incorrect format: %s\n"
msgstr "ÏÛÉÂËÁ × ÆÏÒÍÁÔÅ: %s\n"
#. @-boundswrite@
-#: lib/query.c:181
+#: lib/query.c:186
msgid "(contains no files)"
msgstr "(ÎÅ ÓÏÄÅÒÖÉÔ ÆÁÊÌÏ×)"
-#: lib/query.c:246
+#: lib/query.c:251
msgid "normal "
msgstr "ÎÏÒÍÁÌØÎÙÊ "
-#: lib/query.c:249
+#: lib/query.c:254
msgid "replaced "
msgstr "ÚÁÍÅÎÅÎÎÙÊ "
-#: lib/query.c:252
+#: lib/query.c:257
msgid "not installed "
msgstr "ÎÅ ÕÓÔÁÎÏ×ÌÅÎ "
-#: lib/query.c:255
+#: lib/query.c:260
msgid "net shared "
msgstr "ÓÅÔÅ×ÏÊ "
-#: lib/query.c:258
+#: lib/query.c:263
msgid "wrong color "
msgstr ""
-#: lib/query.c:261
+#: lib/query.c:266
msgid "(no state) "
msgstr "(ÓÏÓÔ. ÎÅÔ) "
-#: lib/query.c:264
+#: lib/query.c:269
#, c-format
msgid "(unknown %3d) "
msgstr "(ÎÅÉÚ×. %3d) "
-#: lib/query.c:282
+#: lib/query.c:287
msgid "package has not file owner/group lists\n"
msgstr "ĞÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÓĞÉÓËÏ× ×ÌÁÄÅÌØÃÅ×/ÇÒÕĞĞ-×ÌÁÄÅÌØÃÅ× ÆÁÊÌÏ×\n"
-#: lib/query.c:315
+#: lib/query.c:320
msgid "package has neither file owner or id lists\n"
msgstr "ĞÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÓĞÉÓËÏ× ÎÉ ÈÏÚÑÅ× ÆÁÊÌÏ×, ÎÉ ÉÈ ID\n"
-#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
+#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
-#: lib/query.c:459
+#: lib/query.c:464
#, c-format
msgid "query of %s failed\n"
msgstr "ÏÛÉÂËÁ ÚÁĞÒÏÓÁ %s\n"
-#: lib/query.c:469
+#: lib/query.c:474
msgid "old format source packages cannot be queried\n"
msgstr "ÚÁĞÒÏÓÙ Ë ÉÓÈÏÄÎÙÍ ĞÁËÅÔÁÍ × ÓÔÁÒÏÍ ÆÏÒÍÁÔÅ ÎÅ ĞÏÄÄÅÒÖÉ×ÁÀÔÓÑ\n"
-#: lib/query.c:502 lib/rpminstall.c:608
+#: lib/query.c:507 lib/rpminstall.c:608
#, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "%s: ÎÅ ĞÁËÅÔ (ÉÌÉ ÍÁÎÉÆÅÓÔ ĞÁËÅÔÁ) rpm : %s\n"
-#: lib/query.c:531
+#: lib/query.c:536
msgid "no packages\n"
msgstr "ÎÅÔ ĞÁËÅÔÏ×\n"
-#: lib/query.c:551
+#: lib/query.c:556
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "ÇÒÕĞĞÁ %s ÎÅ ÓÏÄÅÒÖÉÔ ÎÉËÁËÉÈ ĞÁËÅÔÏ×\n"
-#: lib/query.c:560
+#: lib/query.c:565
#, c-format
msgid "no package triggers %s\n"
msgstr "ÎÉ ÏÄÉÎ ÉÚ ĞÁËÅÔÏ× ÎÅ ×Ú×ÏÄÉÔ ÔÒÉÇÇÅÒ %s\n"
-#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
+#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
#, c-format
msgid "malformed %s: %s\n"
msgstr "ÏÛÉÂËÁ ÆÏÒÍÁÔÁ %s: %s.\n"
-#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
+#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
#, c-format
msgid "no package matches %s: %s\n"
msgstr "ÎÉ ÏÄÉÎ ĞÁËÅÔ ÎÅ ĞÏÄÈÏÄÉÔ Ë %s: %s\n"
-#: lib/query.c:663
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "ÎÉ ÏÄÉÎ ÉÚ ĞÁËÅÔÏ× ÎÅ ÔÒÅÂÕÅÔ %s\n"
-#: lib/query.c:674
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "ÎÉ ÏÄÉÎ ÉÚ ĞÁËÅÔÏ× ÎÅ ĞÒÅÄÏÓÔÁ×ÌÑÅÔ %s\n"
-#: lib/query.c:709
+#: lib/query.c:714
#, c-format
msgid "file %s: %s\n"
msgstr "ÆÁÊÌ %s: %s\n"
-#: lib/query.c:713
+#: lib/query.c:718
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "ÆÁÊÌ %s ÎÅ ĞÒÉÎÁÄÌÅÖÉÔ ÎÉ ÏÄÎÏÍÕ ÉÚ ĞÁËÅÔÏ×\n"
-#: lib/query.c:738
+#: lib/query.c:743
#, c-format
msgid "invalid package number: %s\n"
msgstr "ÎÅ×ÅÒÎÙÊ ÎÏÍÅÒ ĞÁËÅÔÁ: %s\n"
-#: lib/query.c:741
+#: lib/query.c:746
#, c-format
msgid "package record number: %u\n"
msgstr "ÎÏÍÅÒ ÚÁĞÉÓÉ ĞÁËÅÔÁ: %u\n"
-#: lib/query.c:746
+#: lib/query.c:751
#, c-format
msgid "record %u could not be read\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ĞÒÏŞÉÔÁÔØ ÚÁĞÉÓØ %u\n"
-#: lib/query.c:756 lib/rpminstall.c:779
+#: lib/query.c:761 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "ĞÁËÅÔ %s ÎÅ ÕÓÔÁÎÏ×ÌÅÎ\n"
@@ -2827,28 +2827,28 @@ msgstr "îÅ×ÏÚÍÏÖÎÏ ĞÒÏŞÉÔÁÔØ %s, ÚÎÁŞÅÎÉÅ HOME ÓÌÉÛËÏÍ ×ÅÌÉËÏ.\n"
msgid "Unable to open %s for reading: %s.\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s ÄÌÑ ŞÔÅÎÉÑ: %s.\n"
-#: lib/rpmts.c:135
+#: lib/rpmts.c:156
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ ÂÁÚÕ ÄÁÎÎÙÈ Packages × %s\n"
-#: lib/rpmts.c:320
+#: lib/rpmts.c:341
#, c-format
msgid "cannot open Solve database in %s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÂÁÚÕ ÄÁÎÎÙÈ ÒÁÚÒÅÛÅÎÉÑ ÚÁ×ÉÓÉÍÏÓÔÅÊ × %s\n"
-#: lib/rpmts.c:462
+#: lib/rpmts.c:483
#, c-format
msgid "Adding: %s\n"
msgstr "äÏÂÁ×ÌÑÅÔÓÑ: %s\n"
-#: lib/rpmts.c:474
+#: lib/rpmts.c:495
#, c-format
msgid "Suggesting: %s\n"
msgstr "ğÒÅÄÌÁÇÁÅÔÓÑ: %s\n"
#. Get available space on mounted file systems.
-#: lib/rpmts.c:906
+#: lib/rpmts.c:927
msgid "getting list of mounted filesystems\n"
msgstr "ÓÔÒÏÉÔÓÑ ÓĞÉÓÏË ÓÍÏÎÔÉÒÏ×ÁÎÎÙÈ ÆÁÊÌÏ×ÙÈ ÓÉÓÔÅÍ\n"
@@ -3017,7 +3017,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr "%s ĞÒÏĞÕİÅÎ ÉÚ-ÚÁ ÆÌÁÇÁ missingok\n"
#. @innercontinue@
-#: lib/transaction.c:935
+#: lib/transaction.c:956
#, c-format
msgid "excluding directory %s\n"
msgstr "ÉÓËÌÀŞÁÅÔÓÑ ËÁÔÁÌÏÇ %s\n"
@@ -3030,7 +3030,7 @@ msgstr "ÉÓËÌÀŞÁÅÔÓÑ ËÁÔÁÌÏÇ %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1047
+#: lib/transaction.c:1068
#, fuzzy, c-format
msgid "sanity checking %d elements\n"
msgstr "ĞÒÏ×eÒÑÅÔÓÑ %d ÜÌÅÍÅÎÔÏ×\n"
@@ -3043,7 +3043,7 @@ msgstr "ĞÒÏ×eÒÑÅÔÓÑ %d ÜÌÅÍÅÎÔÏ×\n"
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1129
+#: lib/transaction.c:1156
#, c-format
msgid "computing %d file fingerprints\n"
msgstr "ĞÏÄÓŞÉÔÙ×ÁÅÔÓÑ ÏÔĞÅŞÁÔÏË(ËÉ) %d ÆÁÊÌÁ(Ï×)\n"
@@ -3051,7 +3051,7 @@ msgstr "ĞÏÄÓŞÉÔÙ×ÁÅÔÓÑ ÏÔĞÅŞÁÔÏË(ËÉ) %d ÆÁÊÌÁ(Ï×)\n"
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1206
+#: lib/transaction.c:1233
msgid "computing file dispositions\n"
msgstr "ĞÏÄÓŞÉÔÙ×ÁÅÔÓÑ ÄÉÓĞÏÚÉÃÉÑ ÆÁÊÌÏ×\n"
diff --git a/po/sk.po b/po/sk.po
index 2a14c32c3..831e1d747 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: 2003-01-13 15:26-0500\n"
+"POT-Creation-Date: 2003-01-17 12:33-0500\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"
@@ -739,7 +739,7 @@ msgstr "Nie je mo¾né preèíta» ikonu: %s"
msgid "Could not open %s: %s\n"
msgstr "Otvorenie %s zlyhalo\n"
-#: build/pack.c:632 lib/psm.c:1650
+#: build/pack.c:632 lib/psm.c:1657
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "Nie je mo¾né zapísa» balík: %s"
@@ -769,7 +769,7 @@ msgstr "Nie je mo¾né preèíta» ikonu: %s"
msgid "Unable to write payload to %s: %s\n"
msgstr "Nie je mo¾né zapísa» balík: %s"
-#: build/pack.c:725 lib/psm.c:1941
+#: build/pack.c:725 lib/psm.c:1948
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapísané: %s\n"
@@ -1381,75 +1381,75 @@ msgstr ""
msgid " failed - "
msgstr " zlyhalo - "
-#: lib/depends.c:164
+#: lib/depends.c:182
#, fuzzy, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr "balík %s nie je nain¹talovanı\n"
-#: lib/depends.c:362
+#: lib/depends.c:380
msgid "(cached)"
msgstr ""
-#: lib/depends.c:389
+#: lib/depends.c:407
msgid "(rpmrc provides)"
msgstr ""
-#: lib/depends.c:406
+#: lib/depends.c:424
#, fuzzy
msgid "(rpmlib provides)"
msgstr "súbor %s nie je vlastnenı ¾iadnym balíkom\n"
-#: lib/depends.c:435
+#: lib/depends.c:453
#, fuzzy
msgid "(db files)"
msgstr "chybnı stav súboru: %s"
-#: lib/depends.c:448
+#: lib/depends.c:466
#, fuzzy
msgid "(db provides)"
msgstr "Poskytuje:"
-#: lib/depends.c:461
+#: lib/depends.c:479
#, fuzzy
msgid "(db package)"
msgstr "nájdenıch %d balíkov\n"
-#: lib/depends.c:815
+#: lib/depends.c:833
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:937
+#: lib/depends.c:955
#, 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:1167
+#: lib/depends.c:1185
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1267
+#: lib/depends.c:1285
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1351
+#: lib/depends.c:1369
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1421
+#: lib/depends.c:1439
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1456
+#: lib/depends.c:1474
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1461
+#: lib/depends.c:1479
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -2258,181 +2258,181 @@ msgstr "%s vynechané - prenos zlyhal - %s\n"
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "vykonanie skriptu zlyhalo"
-#: lib/psm.c:1420
+#: lib/psm.c:1421
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "balík: %s-%s-%s test súborov = %d\n"
-#: lib/psm.c:1553
+#: lib/psm.c:1560
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1662
+#: lib/psm.c:1669
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Nie je mo¾né preèíta» ikonu: %s"
-#: lib/psm.c:1708
+#: lib/psm.c:1715
#, fuzzy, c-format
msgid "user %s does not exist - using root\n"
msgstr "pou¾ívateµ %s neexistuje - pou¾ije sa root"
-#: lib/psm.c:1717
+#: lib/psm.c:1724
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "skupina %s neexistuje - pou¾ije sa root"
-#: lib/psm.c:1765
+#: lib/psm.c:1772
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "rozbalenie archívu zlyhalo%s%s: %s"
-#: lib/psm.c:1766
+#: lib/psm.c:1773
msgid " on file "
msgstr " pre súbor "
-#: lib/psm.c:1949
+#: lib/psm.c:1956
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "nepodarilo sa otvori» %s: %s"
-#: lib/psm.c:1952
+#: lib/psm.c:1959
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s zlyhalo"
-#: lib/query.c:122 lib/rpmts.c:430
+#: lib/query.c:122 lib/rpmts.c:451
#, fuzzy, c-format
msgid "incorrect format: %s\n"
msgstr "chyba formátu: %s\n"
#. @-boundswrite@
-#: lib/query.c:181
+#: lib/query.c:186
msgid "(contains no files)"
msgstr "(neobsahuje ¾iadne súbory)"
-#: lib/query.c:246
+#: lib/query.c:251
msgid "normal "
msgstr "normálny "
-#: lib/query.c:249
+#: lib/query.c:254
msgid "replaced "
msgstr "nahradenı "
-#: lib/query.c:252
+#: lib/query.c:257
msgid "not installed "
msgstr "nein¹talovanı "
-#: lib/query.c:255
+#: lib/query.c:260
msgid "net shared "
msgstr "zdieµanı "
-#: lib/query.c:258
+#: lib/query.c:263
msgid "wrong color "
msgstr ""
-#: lib/query.c:261
+#: lib/query.c:266
msgid "(no state) "
msgstr "(¾iadny stav) "
-#: lib/query.c:264
+#: lib/query.c:269
#, c-format
msgid "(unknown %3d) "
msgstr "(neznámy %d) "
-#: lib/query.c:282
+#: lib/query.c:287
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "balík neobsahuje ani vlastníka súboru, ani zoznamy identifikácií"
-#: lib/query.c:315
+#: lib/query.c:320
#, fuzzy
msgid "package has neither file owner or id lists\n"
msgstr "balík neobsahuje ani vlastníka súboru, ani zoznamy identifikácií"
-#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
+#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "otvorenie %s zlyhalo\n"
-#: lib/query.c:459
+#: lib/query.c:464
#, c-format
msgid "query of %s failed\n"
msgstr "otázka na %s zlyhala\n"
-#: lib/query.c:469
+#: lib/query.c:474
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:502 lib/rpminstall.c:608
+#: lib/query.c:507 lib/rpminstall.c:608
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "¾iadny z balíkov nespú¹»a %s\n"
-#: lib/query.c:531
+#: lib/query.c:536
#, fuzzy
msgid "no packages\n"
msgstr "nájdenıch %d balíkov\n"
-#: lib/query.c:551
+#: lib/query.c:556
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "skupina %s neobsahuje ¾iadne balíky\n"
-#: lib/query.c:560
+#: lib/query.c:565
#, c-format
msgid "no package triggers %s\n"
msgstr "¾iadny z balíkov nespú¹»a %s\n"
-#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
+#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "Nie je mo¾né preèíta» %s: %s."
-#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
+#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "¾iadny z balíkov nespú¹»a %s\n"
-#: lib/query.c:663
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "¾iadny z balíkov nevy¾aduje %s\n"
-#: lib/query.c:674
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "¾iadny z balíkov neposkytuje %s\n"
-#: lib/query.c:709
+#: lib/query.c:714
#, c-format
msgid "file %s: %s\n"
msgstr "súbor %s: %s\n"
-#: lib/query.c:713
+#: lib/query.c:718
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "súbor %s nie je vlastnenı ¾iadnym balíkom\n"
-#: lib/query.c:738
+#: lib/query.c:743
#, c-format
msgid "invalid package number: %s\n"
msgstr "chybné èíslo balíku: %s\n"
-#: lib/query.c:741
+#: lib/query.c:746
#, fuzzy, c-format
msgid "package record number: %u\n"
msgstr "po¾aduje sa záznam èíslo %d\n"
-#: lib/query.c:746
+#: lib/query.c:751
#, fuzzy, c-format
msgid "record %u could not be read\n"
msgstr "záznam %d nie je mo¾né preèíta»\n"
-#: lib/query.c:756 lib/rpminstall.c:779
+#: lib/query.c:761 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "balík %s nie je nain¹talovanı\n"
@@ -2916,28 +2916,28 @@ msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr "Nie je mo¾né otvori» %s pre èítanie: %s."
-#: lib/rpmts.c:135
+#: lib/rpmts.c:156
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "nie je mo¾né otvori» %s/packages.rpm\n"
-#: lib/rpmts.c:320
+#: lib/rpmts.c:341
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "nie je mo¾né otvori» %s/packages.rpm\n"
-#: lib/rpmts.c:462
+#: lib/rpmts.c:483
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "riadok: %s"
-#: lib/rpmts.c:474
+#: lib/rpmts.c:495
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "zdroje v: %s\n"
#. Get available space on mounted file systems.
-#: lib/rpmts.c:906
+#: lib/rpmts.c:927
msgid "getting list of mounted filesystems\n"
msgstr ""
@@ -3115,7 +3115,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr "%s vynechané kvôli príznaku missingok\n"
#. @innercontinue@
-#: lib/transaction.c:935
+#: lib/transaction.c:956
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "vytvára sa adresár %s\n"
@@ -3128,7 +3128,7 @@ msgstr "vytvára sa adresár %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1047
+#: lib/transaction.c:1068
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3141,7 +3141,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1129
+#: lib/transaction.c:1156
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3149,7 +3149,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1206
+#: lib/transaction.c:1233
msgid "computing file dispositions\n"
msgstr ""
diff --git a/po/sl.po b/po/sl.po
index 46748ec03..f7f155749 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.364 2003/01/13 20:59:04 jbj Exp $
+# $Id: sl.po,v 1.365 2003/01/17 17:43:32 jbj Exp $
#
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2003-01-13 15:26-0500\n"
+"POT-Creation-Date: 2003-01-17 12:33-0500\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"
@@ -738,7 +738,7 @@ msgstr "Ikone %s ni mo¾no prebrati: %s"
msgid "Could not open %s: %s\n"
msgstr "Ni mo¾no odpreti %s: %s\n"
-#: build/pack.c:632 lib/psm.c:1650
+#: build/pack.c:632 lib/psm.c:1657
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "Ni mo¾no zapisati paketa: %s"
@@ -768,7 +768,7 @@ msgstr "Ikone %s ni mo¾no prebrati: %s"
msgid "Unable to write payload to %s: %s\n"
msgstr "Ni mo¾no zapisati paketa %s: %s"
-#: build/pack.c:725 lib/psm.c:1941
+#: build/pack.c:725 lib/psm.c:1948
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapisano: %s\n"
@@ -1383,76 +1383,76 @@ msgstr ""
msgid " failed - "
msgstr " neuspe¹no - "
-#: lib/depends.c:164
+#: lib/depends.c:182
#, fuzzy, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr "paket %s-%s-%s je ¾e name¹èen"
-#: lib/depends.c:362
+#: lib/depends.c:380
msgid "(cached)"
msgstr ""
-#: lib/depends.c:389
+#: lib/depends.c:407
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %-45s DA (rpmrc ponudbe)\n"
-#: lib/depends.c:406
+#: lib/depends.c:424
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %-45s DA (rpmlib ponudbe)\n"
-#: lib/depends.c:435
+#: lib/depends.c:453
#, fuzzy
msgid "(db files)"
msgstr "po¹kodovana zbirka podatkov %s"
-#: lib/depends.c:448
+#: lib/depends.c:466
#, fuzzy
msgid "(db provides)"
msgstr "%s: %-45s DA (db ponudbe)\n"
-#: lib/depends.c:461
+#: lib/depends.c:479
#, fuzzy
msgid "(db package)"
msgstr "ni paketov\n"
-#: lib/depends.c:815
+#: lib/depends.c:833
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:937
+#: lib/depends.c:955
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "odstranjujemo seznam skupin\n"
#. Record all relations.
-#: lib/depends.c:1167
+#: lib/depends.c:1185
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1267
+#: lib/depends.c:1285
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1351
+#: lib/depends.c:1369
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1421
+#: lib/depends.c:1439
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1456
+#: lib/depends.c:1474
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1461
+#: lib/depends.c:1479
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -2258,181 +2258,181 @@ msgstr "preskoèeno - %s - prenos neuspe¹en - %s\n"
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "skript se ni uspe¹no izvedel"
-#: lib/psm.c:1420
+#: lib/psm.c:1421
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "paket: %s-%s-%s datoteke test = %d\n"
-#: lib/psm.c:1553
+#: lib/psm.c:1560
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1662
+#: lib/psm.c:1669
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Ikone %s ni mo¾no prebrati: %s"
-#: lib/psm.c:1708
+#: lib/psm.c:1715
#, fuzzy, c-format
msgid "user %s does not exist - using root\n"
msgstr "uporabnik %s ne obstaja - uporabljam root"
-#: lib/psm.c:1717
+#: lib/psm.c:1724
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "skupina %s ne obstaja - uporabljam root"
-#: lib/psm.c:1765
+#: lib/psm.c:1772
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "raz¹iritev arhiva je bilo neuspe¹no%s%s: %s"
-#: lib/psm.c:1766
+#: lib/psm.c:1773
msgid " on file "
msgstr " za datoteko "
-#: lib/psm.c:1949
+#: lib/psm.c:1956
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "neuspe¹no odpiranje %s: %s\n"
-#: lib/psm.c:1952
+#: lib/psm.c:1959
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s neuspe¹en"
-#: lib/query.c:122 lib/rpmts.c:430
+#: lib/query.c:122 lib/rpmts.c:451
#, fuzzy, c-format
msgid "incorrect format: %s\n"
msgstr "napaka v obliki: %s\n"
#. @-boundswrite@
-#: lib/query.c:181
+#: lib/query.c:186
msgid "(contains no files)"
msgstr "(ne vsebuje datotek)"
-#: lib/query.c:246
+#: lib/query.c:251
msgid "normal "
msgstr "normalno "
-#: lib/query.c:249
+#: lib/query.c:254
msgid "replaced "
msgstr "nadome¹èeno "
-#: lib/query.c:252
+#: lib/query.c:257
msgid "not installed "
msgstr "ni name¹èeno "
-#: lib/query.c:255
+#: lib/query.c:260
msgid "net shared "
msgstr "omre¾ni "
-#: lib/query.c:258
+#: lib/query.c:263
msgid "wrong color "
msgstr ""
-#: lib/query.c:261
+#: lib/query.c:266
msgid "(no state) "
msgstr "(brez stanja) "
-#: lib/query.c:264
+#: lib/query.c:269
#, c-format
msgid "(unknown %3d) "
msgstr "(neznano %3d) "
-#: lib/query.c:282
+#: lib/query.c:287
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "paket ne vsebuje ne lastnika datotek niti seznamov id"
-#: lib/query.c:315
+#: lib/query.c:320
#, fuzzy
msgid "package has neither file owner or id lists\n"
msgstr "paket ne vsebuje ne lastnika datotek niti seznamov id"
-#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
+#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
#: 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"
-#: lib/query.c:459
+#: lib/query.c:464
#, c-format
msgid "query of %s failed\n"
msgstr "poizvedba po %s je bila neuspe¹na\n"
-#: lib/query.c:469
+#: lib/query.c:474
msgid "old format source packages cannot be queried\n"
msgstr "poizvedba po izvornih paketih v stari obliki ni mo¾na\n"
-#: lib/query.c:502 lib/rpminstall.c:608
+#: lib/query.c:507 lib/rpminstall.c:608
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "noben paket ne pro¾i %s\n"
-#: lib/query.c:531
+#: lib/query.c:536
#, fuzzy
msgid "no packages\n"
msgstr "ni paketov\n"
-#: lib/query.c:551
+#: lib/query.c:556
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "skupina %s ne vsebuje nobenega paketa\n"
-#: lib/query.c:560
+#: lib/query.c:565
#, c-format
msgid "no package triggers %s\n"
msgstr "noben paket ne pro¾i %s\n"
-#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
+#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "Neuspe¹no branje %s: %s."
-#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
+#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "noben paket ne pro¾i %s\n"
-#: lib/query.c:663
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "noben paket ne potrebuje %s\n"
-#: lib/query.c:674
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "noben paket ne nudi %s\n"
-#: lib/query.c:709
+#: lib/query.c:714
#, c-format
msgid "file %s: %s\n"
msgstr "datoteka %s: %s\n"
-#: lib/query.c:713
+#: lib/query.c:718
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "datoteka %s ni del nobenega paketa\n"
-#: lib/query.c:738
+#: lib/query.c:743
#, c-format
msgid "invalid package number: %s\n"
msgstr "neveljavna ¹tevilka paketa: %s\n"
-#: lib/query.c:741
+#: lib/query.c:746
#, fuzzy, c-format
msgid "package record number: %u\n"
msgstr "¹tevilka zapisa paketa: %d\n"
-#: lib/query.c:746
+#: lib/query.c:751
#, fuzzy, c-format
msgid "record %u could not be read\n"
msgstr "zapisa %d ni mo¾no prebrati\n"
-#: lib/query.c:756 lib/rpminstall.c:779
+#: lib/query.c:761 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "paket %s ni name¹èen\n"
@@ -2919,28 +2919,28 @@ msgstr "Ni mo¾no prebrati %s, HOME je prevelik."
msgid "Unable to open %s for reading: %s.\n"
msgstr "%s ni mo¾no odpreti za branje: %s."
-#: lib/rpmts.c:135
+#: lib/rpmts.c:156
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "zbirko podatkov paketov ni mo¾no odpreti v %s\n"
-#: lib/rpmts.c:320
+#: lib/rpmts.c:341
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "datoteke %s/packages.rpm ni mogo¾no odpreti\n"
-#: lib/rpmts.c:462
+#: lib/rpmts.c:483
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "vrstica: %s"
-#: lib/rpmts.c:474
+#: lib/rpmts.c:495
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "izvori v: %s\n"
#. Get available space on mounted file systems.
-#: lib/rpmts.c:906
+#: lib/rpmts.c:927
msgid "getting list of mounted filesystems\n"
msgstr "zbiranje seznama priklopljenih datoteènih sistemov.\n"
@@ -3118,7 +3118,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr "%s preskoèen zaradi manjkajoèe zastavice OK\n"
#. @innercontinue@
-#: lib/transaction.c:935
+#: lib/transaction.c:956
#, c-format
msgid "excluding directory %s\n"
msgstr "izkljuèevanje imenika %s\n"
@@ -3131,7 +3131,7 @@ msgstr "izkljuèevanje imenika %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1047
+#: lib/transaction.c:1068
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3144,7 +3144,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1129
+#: lib/transaction.c:1156
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3152,7 +3152,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1206
+#: lib/transaction.c:1233
msgid "computing file dispositions\n"
msgstr ""
diff --git a/po/sr.po b/po/sr.po
index 2290cfe48..af5e19149 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: 2003-01-13 15:26-0500\n"
+"POT-Creation-Date: 2003-01-17 12:33-0500\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -728,7 +728,7 @@ msgstr "Ne mogu da upi¹em %s"
msgid "Could not open %s: %s\n"
msgstr "neuspelo otvaranje %s\n"
-#: build/pack.c:632 lib/psm.c:1650
+#: build/pack.c:632 lib/psm.c:1657
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "Ne mogu da upi¹em %s"
@@ -758,7 +758,7 @@ msgstr "Ne mogu da upi¹em %s"
msgid "Unable to write payload to %s: %s\n"
msgstr "Ne mogu da upi¹em %s"
-#: build/pack.c:725 lib/psm.c:1941
+#: build/pack.c:725 lib/psm.c:1948
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@@ -1372,74 +1372,74 @@ msgstr ""
msgid " failed - "
msgstr "PGP omanuo"
-#: lib/depends.c:164
+#: lib/depends.c:182
#, fuzzy, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr "paket %s nije instaliran\n"
-#: lib/depends.c:362
+#: lib/depends.c:380
msgid "(cached)"
msgstr ""
-#: lib/depends.c:389
+#: lib/depends.c:407
msgid "(rpmrc provides)"
msgstr ""
-#: lib/depends.c:406
+#: lib/depends.c:424
#, fuzzy
msgid "(rpmlib provides)"
msgstr "datoteka %s ne pripada nijednom paketu\n"
-#: lib/depends.c:435
+#: lib/depends.c:453
#, fuzzy
msgid "(db files)"
msgstr "neuspelo otvaranje %s: %s"
-#: lib/depends.c:448
+#: lib/depends.c:466
msgid "(db provides)"
msgstr ""
-#: lib/depends.c:461
+#: lib/depends.c:479
#, fuzzy
msgid "(db package)"
msgstr "upit nad svim paketima"
-#: lib/depends.c:815
+#: lib/depends.c:833
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:937
+#: lib/depends.c:955
#, 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:1167
+#: lib/depends.c:1185
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1267
+#: lib/depends.c:1285
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1351
+#: lib/depends.c:1369
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1421
+#: lib/depends.c:1439
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1456
+#: lib/depends.c:1474
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1461
+#: lib/depends.c:1479
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -2250,182 +2250,182 @@ msgstr "gre¹ka: preskaèem %s - neuspelo preno¹enje - %s\n"
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "neuspelo izvr¹avanje skripta"
-#: lib/psm.c:1420
+#: lib/psm.c:1421
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
-#: lib/psm.c:1553
+#: lib/psm.c:1560
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1662
+#: lib/psm.c:1669
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Ne mogu da upi¹em %s"
-#: lib/psm.c:1708
+#: lib/psm.c:1715
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1717
+#: lib/psm.c:1724
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "grupa %s ne sadr¾i nijedan paket\n"
-#: lib/psm.c:1765
+#: lib/psm.c:1772
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "neuspelo otvaranje %s: %s\n"
-#: lib/psm.c:1766
+#: lib/psm.c:1773
msgid " on file "
msgstr ""
-#: lib/psm.c:1949
+#: lib/psm.c:1956
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "neuspelo otvaranje %s: %s"
-#: lib/psm.c:1952
+#: lib/psm.c:1959
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "PGP omanuo"
-#: lib/query.c:122 lib/rpmts.c:430
+#: lib/query.c:122 lib/rpmts.c:451
#, fuzzy, c-format
msgid "incorrect format: %s\n"
msgstr "gre¹ka u formatu: %s\n"
#. @-boundswrite@
-#: lib/query.c:181
+#: lib/query.c:186
msgid "(contains no files)"
msgstr "(nema datoteka)"
-#: lib/query.c:246
+#: lib/query.c:251
msgid "normal "
msgstr ""
-#: lib/query.c:249
+#: lib/query.c:254
msgid "replaced "
msgstr ""
-#: lib/query.c:252
+#: lib/query.c:257
#, fuzzy
msgid "not installed "
msgstr "paket %s nije instaliran\n"
-#: lib/query.c:255
+#: lib/query.c:260
msgid "net shared "
msgstr ""
-#: lib/query.c:258
+#: lib/query.c:263
msgid "wrong color "
msgstr ""
-#: lib/query.c:261
+#: lib/query.c:266
msgid "(no state) "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:269
#, fuzzy, c-format
msgid "(unknown %3d) "
msgstr "(nepoznat tip)"
-#: lib/query.c:282
+#: lib/query.c:287
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "paket nema imena"
-#: lib/query.c:315
+#: lib/query.c:320
#, fuzzy
msgid "package has neither file owner or id lists\n"
msgstr "paket nema imena"
-#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
+#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "neuspelo otvaranje %s: %s\n"
-#: lib/query.c:459
+#: lib/query.c:464
#, c-format
msgid "query of %s failed\n"
msgstr "upit nad %s neuspeo\n"
-#: lib/query.c:469
+#: lib/query.c:474
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:502 lib/rpminstall.c:608
+#: lib/query.c:507 lib/rpminstall.c:608
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "nijedan paket ne aktivira %s\n"
-#: lib/query.c:531
+#: lib/query.c:536
#, fuzzy
msgid "no packages\n"
msgstr "upit nad svim paketima"
-#: lib/query.c:551
+#: lib/query.c:556
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "grupa %s ne sadr¾i nijedan paket\n"
-#: lib/query.c:560
+#: lib/query.c:565
#, c-format
msgid "no package triggers %s\n"
msgstr "nijedan paket ne aktivira %s\n"
-#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
+#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "Neuspelo èitanje %s: %s."
-#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
+#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "nijedan paket ne aktivira %s\n"
-#: lib/query.c:663
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "nijedan paket ne zahteva %s\n"
-#: lib/query.c:674
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "nijedan paket ne obezbeğuje %s\n"
-#: lib/query.c:709
+#: lib/query.c:714
#, fuzzy, c-format
msgid "file %s: %s\n"
msgstr "neuspelo otvaranje %s: %s"
-#: lib/query.c:713
+#: lib/query.c:718
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "datoteka %s ne pripada nijednom paketu\n"
-#: lib/query.c:738
+#: lib/query.c:743
#, c-format
msgid "invalid package number: %s\n"
msgstr "pogre¹an broj paketa: %s\n"
-#: lib/query.c:741
+#: lib/query.c:746
#, fuzzy, c-format
msgid "package record number: %u\n"
msgstr "pogre¹an broj paketa: %s\n"
-#: lib/query.c:746
+#: lib/query.c:751
#, fuzzy, c-format
msgid "record %u could not be read\n"
msgstr "ne mogu da proèitam slog %d\n"
-#: lib/query.c:756 lib/rpminstall.c:779
+#: lib/query.c:761 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "paket %s nije instaliran\n"
@@ -2909,28 +2909,28 @@ msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr "Ne mogu da otvorim %s za èitanje: %s"
-#: lib/rpmts.c:135
+#: lib/rpmts.c:156
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "gre¹ka: ne mogu da otvorim %s%s/packages.rpm\n"
-#: lib/rpmts.c:320
+#: lib/rpmts.c:341
#, 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:462
+#: lib/rpmts.c:483
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "neuspelo otvaranje %s: %s"
-#: lib/rpmts.c:474
+#: lib/rpmts.c:495
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "Pribavljam %s\n"
#. Get available space on mounted file systems.
-#: lib/rpmts.c:906
+#: lib/rpmts.c:927
msgid "getting list of mounted filesystems\n"
msgstr ""
@@ -3107,7 +3107,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:935
+#: lib/transaction.c:956
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
@@ -3120,7 +3120,7 @@ msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1047
+#: lib/transaction.c:1068
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3133,7 +3133,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1129
+#: lib/transaction.c:1156
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3141,7 +3141,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1206
+#: lib/transaction.c:1233
msgid "computing file dispositions\n"
msgstr ""
diff --git a/po/sv.po b/po/sv.po
index 27ed5e57e..43f837674 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: 2003-01-13 15:26-0500\n"
+"POT-Creation-Date: 2003-01-17 12:33-0500\n"
"PO-Revision-Date: 2002-08-19 22:26+0200\n"
"Last-Translator: Göran Uddeborg <goeran@uddeborg.pp.se>\n"
"Language-Team: Swedish <sv@li.org>\n"
@@ -716,7 +716,7 @@ msgstr "Kan inte läsa om signaturhuvud.\n"
msgid "Could not open %s: %s\n"
msgstr "Kunde inte öppna %s: %s\n"
-#: build/pack.c:632 lib/psm.c:1650
+#: build/pack.c:632 lib/psm.c:1657
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Kunde inte skriva paket: %s\n"
@@ -746,7 +746,7 @@ msgstr "Kan inte läsa last från %s: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "Kan inte skriva last till %s: %s\n"
-#: build/pack.c:725 lib/psm.c:1941
+#: build/pack.c:725 lib/psm.c:1948
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrev: %s\n"
@@ -1342,52 +1342,52 @@ msgstr "Ingen arkivfilen i huvud"
msgid " failed - "
msgstr " misslyckades - "
-#: lib/depends.c:164
+#: lib/depends.c:182
#, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr "paket %s är redan tillagt, ersäetter med %s\n"
-#: lib/depends.c:362
+#: lib/depends.c:380
msgid "(cached)"
msgstr "(cachad)"
-#: lib/depends.c:389
+#: lib/depends.c:407
msgid "(rpmrc provides)"
msgstr "(rpmrc tillhandahåller)"
-#: lib/depends.c:406
+#: lib/depends.c:424
msgid "(rpmlib provides)"
msgstr "(rpmlib tillhandahåller)"
-#: lib/depends.c:435
+#: lib/depends.c:453
msgid "(db files)"
msgstr "(db-filer)"
-#: lib/depends.c:448
+#: lib/depends.c:466
msgid "(db provides)"
msgstr "(db tillhandahåller)"
-#: lib/depends.c:461
+#: lib/depends.c:479
msgid "(db package)"
msgstr "(db-paket)"
-#: lib/depends.c:815
+#: lib/depends.c:833
#, 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:937
+#: lib/depends.c:955
#, 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:1167
+#: lib/depends.c:1185
msgid "========== recording tsort relations\n"
msgstr "========== noterar alla relationer\n"
#. T4. Scan for zeroes.
-#: lib/depends.c:1267
+#: lib/depends.c:1285
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
@@ -1395,20 +1395,20 @@ msgstr ""
"========== tsort:erar paket (ordning, #föregångare, #efterföljare, träd, "
"djup)\n"
-#: lib/depends.c:1351
+#: lib/depends.c:1369
msgid "========== successors only (presentation order)\n"
msgstr "========== endast efterföljare (presentationsordning)\n"
-#: lib/depends.c:1421
+#: lib/depends.c:1439
msgid "LOOP:\n"
msgstr "LOOP:\n"
-#: lib/depends.c:1456
+#: lib/depends.c:1474
msgid "========== continuing tsort ...\n"
msgstr "========== fortsätter med tsort ...\n"
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1461
+#: lib/depends.c:1479
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr "rpmtsOrder misslyckades, %d element återstår\n"
@@ -2161,177 +2161,177 @@ msgstr "%s: %s-skript misslyckades (%d), hoppar över %s\n"
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "körning av %s-skript från %s-%s-%s misslyckades, slutstatus %d\n"
-#: lib/psm.c:1420
+#: lib/psm.c:1421
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s har %d filer, test = %d\n"
-#: lib/psm.c:1553
+#: lib/psm.c:1560
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr "%s: %s-skript misslyckades (%d), hoppar över %s\n"
-#: lib/psm.c:1662
+#: lib/psm.c:1669
msgid "Unable to reload signature header\n"
msgstr "Kan inte läsa om signaturhuvud\n"
-#: lib/psm.c:1708
+#: lib/psm.c:1715
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "användare %s finns inte - använder root\n"
-#: lib/psm.c:1717
+#: lib/psm.c:1724
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "grupp %s finns inte - använder root\n"
-#: lib/psm.c:1765
+#: lib/psm.c:1772
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "uppackning av arkiv misslyckades%s%s: %s\n"
-#: lib/psm.c:1766
+#: lib/psm.c:1773
msgid " on file "
msgstr " vid fil "
-#: lib/psm.c:1949
+#: lib/psm.c:1956
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s misslyckades på fil %s: %s\n"
-#: lib/psm.c:1952
+#: lib/psm.c:1959
#, c-format
msgid "%s failed: %s\n"
msgstr "%s misslyckades: %s\n"
-#: lib/query.c:122 lib/rpmts.c:430
+#: lib/query.c:122 lib/rpmts.c:451
#, c-format
msgid "incorrect format: %s\n"
msgstr "fel format: %s\n"
#. @-boundswrite@
-#: lib/query.c:181
+#: lib/query.c:186
msgid "(contains no files)"
msgstr "(innehåller inga filer)"
-#: lib/query.c:246
+#: lib/query.c:251
msgid "normal "
msgstr "normal "
-#: lib/query.c:249
+#: lib/query.c:254
msgid "replaced "
msgstr "ersatt "
-#: lib/query.c:252
+#: lib/query.c:257
msgid "not installed "
msgstr "oinstallerat "
-#: lib/query.c:255
+#: lib/query.c:260
msgid "net shared "
msgstr "nätdelad "
-#: lib/query.c:258
+#: lib/query.c:263
msgid "wrong color "
msgstr ""
-#: lib/query.c:261
+#: lib/query.c:266
msgid "(no state) "
msgstr "(ej tillstnd) "
-#: lib/query.c:264
+#: lib/query.c:269
#, c-format
msgid "(unknown %3d) "
msgstr "(okänd %3d) "
-#: lib/query.c:282
+#: lib/query.c:287
msgid "package has not file owner/group lists\n"
msgstr "paketet har inte filägare-/-grupplistor\n"
-#: lib/query.c:315
+#: lib/query.c:320
msgid "package has neither file owner or id lists\n"
msgstr "paketet har varken filägare eller id-listor\n"
-#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
+#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
#: 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"
-#: lib/query.c:459
+#: lib/query.c:464
#, c-format
msgid "query of %s failed\n"
msgstr "fråga av %s misslyckades\n"
-#: lib/query.c:469
+#: lib/query.c:474
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:502 lib/rpminstall.c:608
+#: lib/query.c:507 lib/rpminstall.c:608
#, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "%s: inte ett rpm-paket (eller paketspecifikation): %s\n"
-#: lib/query.c:531
+#: lib/query.c:536
msgid "no packages\n"
msgstr "inga paket\n"
-#: lib/query.c:551
+#: lib/query.c:556
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "grupp %s innehåller inga paket\n"
-#: lib/query.c:560
+#: lib/query.c:565
#, c-format
msgid "no package triggers %s\n"
msgstr "inga paketutlösare %s\n"
-#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
+#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
#, c-format
msgid "malformed %s: %s\n"
msgstr "felformaterad %s: %s\n"
-#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
+#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
#, c-format
msgid "no package matches %s: %s\n"
msgstr "inga paket matchar %s: %s\n"
-#: lib/query.c:663
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "inget paket behöver %s\n"
-#: lib/query.c:674
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "inget paket tillhandahåller %s\n"
-#: lib/query.c:709
+#: lib/query.c:714
#, c-format
msgid "file %s: %s\n"
msgstr "fil %s: %s\n"
-#: lib/query.c:713
+#: lib/query.c:718
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "filen %s tillhör inget paket\n"
-#: lib/query.c:738
+#: lib/query.c:743
#, c-format
msgid "invalid package number: %s\n"
msgstr "felaktigt paketnummer: %s\n"
-#: lib/query.c:741
+#: lib/query.c:746
#, c-format
msgid "package record number: %u\n"
msgstr "paketpost nummer: %u\n"
-#: lib/query.c:746
+#: lib/query.c:751
#, c-format
msgid "record %u could not be read\n"
msgstr "post %u kunde inte läsas\n"
-#: lib/query.c:756 lib/rpminstall.c:779
+#: lib/query.c:761 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "paket %s är inte installerat\n"
@@ -2809,28 +2809,28 @@ msgstr "Kan inte läsa %s, HOME är för stor.\n"
msgid "Unable to open %s for reading: %s.\n"
msgstr "Kan inte öppna %s för läsning: %s.\n"
-#: lib/rpmts.c:135
+#: lib/rpmts.c:156
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "kan inte öppna paketdatabas i %s\n"
-#: lib/rpmts.c:320
+#: lib/rpmts.c:341
#, c-format
msgid "cannot open Solve database in %s\n"
msgstr "kan inte öppna Solve-databas i %s\n"
-#: lib/rpmts.c:462
+#: lib/rpmts.c:483
#, c-format
msgid "Adding: %s\n"
msgstr "Lägger till: %s\n"
-#: lib/rpmts.c:474
+#: lib/rpmts.c:495
#, c-format
msgid "Suggesting: %s\n"
msgstr "Föreslår %s\n"
#. Get available space on mounted file systems.
-#: lib/rpmts.c:906
+#: lib/rpmts.c:927
msgid "getting list of mounted filesystems\n"
msgstr "hämtar lista över monterade filsystem\n"
@@ -3001,7 +3001,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr "%s överhoppad på grund av missingok-flagga\n"
#. @innercontinue@
-#: lib/transaction.c:935
+#: lib/transaction.c:956
#, c-format
msgid "excluding directory %s\n"
msgstr "hoppar över katalogen %s\n"
@@ -3014,7 +3014,7 @@ msgstr "hoppar över katalogen %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1047
+#: lib/transaction.c:1068
#, fuzzy, c-format
msgid "sanity checking %d elements\n"
msgstr "rimlighetskontrollerar %d element\n"
@@ -3027,7 +3027,7 @@ msgstr "rimlighetskontrollerar %d element\n"
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1129
+#: lib/transaction.c:1156
#, c-format
msgid "computing %d file fingerprints\n"
msgstr "beräknar %d filfingeravtryck\n"
@@ -3035,7 +3035,7 @@ msgstr "beräknar %d filfingeravtryck\n"
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1206
+#: lib/transaction.c:1233
msgid "computing file dispositions\n"
msgstr "beräknar filåtgärder\n"
diff --git a/po/tr.po b/po/tr.po
index dd3db921e..d5f9450e6 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: 2003-01-13 15:26-0500\n"
+"POT-Creation-Date: 2003-01-17 12:33-0500\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"
@@ -730,7 +730,7 @@ msgstr "%s'den başlık okunamadı: %s\n"
msgid "Could not open %s: %s\n"
msgstr "%s açılamadı: %s\n"
-#: build/pack.c:632 lib/psm.c:1650
+#: build/pack.c:632 lib/psm.c:1657
#, c-format
msgid "Unable to write package: %s\n"
msgstr "paket yazılamadı: %s\n"
@@ -760,7 +760,7 @@ msgstr "%s'den payload okunamadı: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "%s'e payload yazılamadı: %s\n"
-#: build/pack.c:725 lib/psm.c:1941
+#: build/pack.c:725 lib/psm.c:1948
#, c-format
msgid "Wrote: %s\n"
msgstr "Yazıldı: %s\n"
@@ -1368,57 +1368,57 @@ msgstr ""
msgid " failed - "
msgstr " başarısız - "
-#: lib/depends.c:164
+#: lib/depends.c:182
#, fuzzy, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr "%s zaten kurulu"
-#: lib/depends.c:362
+#: lib/depends.c:380
msgid "(cached)"
msgstr ""
-#: lib/depends.c:389
+#: lib/depends.c:407
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %-45s EVET (rpmrc sağlar)\n"
-#: lib/depends.c:406
+#: lib/depends.c:424
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %-45s EVET (rpmlib sağlar)\n"
-#: lib/depends.c:435
+#: lib/depends.c:453
#, fuzzy
msgid "(db files)"
msgstr "db dosyası %s hatalı\n"
-#: lib/depends.c:448
+#: lib/depends.c:466
#, fuzzy
msgid "(db provides)"
msgstr "%s: %-45s EVET (db sağlar)\n"
-#: lib/depends.c:461
+#: lib/depends.c:479
#, fuzzy
msgid "(db package)"
msgstr "paket yok\n"
-#: lib/depends.c:815
+#: lib/depends.c:833
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:937
+#: lib/depends.c:955
#, 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:1167
+#: lib/depends.c:1185
msgid "========== recording tsort relations\n"
msgstr "========== tsort bağıntıları kaydediliyor\n"
#. T4. Scan for zeroes.
-#: lib/depends.c:1267
+#: lib/depends.c:1285
#, fuzzy
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
@@ -1426,20 +1426,20 @@ msgid ""
msgstr ""
"========== paketler tsort'lanıyor (sıra, #öncüller, #ardıllar, derinlik)\n"
-#: lib/depends.c:1351
+#: lib/depends.c:1369
msgid "========== successors only (presentation order)\n"
msgstr "========== sadece ardıllar (sunum sırası)\n"
-#: lib/depends.c:1421
+#: lib/depends.c:1439
msgid "LOOP:\n"
msgstr "ÇEVRİM:\n"
-#: lib/depends.c:1456
+#: lib/depends.c:1474
msgid "========== continuing tsort ...\n"
msgstr "========== tsort sürüyor ...\n"
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1461
+#: lib/depends.c:1479
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -2222,179 +2222,179 @@ msgstr "%s: %s betiği başarısız (%d), %s-%s-%s atlanıyor\n"
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "%s betiğinin %s-%s-%s'den icrası başarısız, çıkışta durum %d\n"
-#: lib/psm.c:1420
+#: lib/psm.c:1421
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s-%s-%s %d dosya içeriyor, test = %d\n"
-#: lib/psm.c:1553
+#: lib/psm.c:1560
#, fuzzy, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr "%s: %s betiği başarısız (%d), %s-%s-%s atlanıyor\n"
-#: lib/psm.c:1662
+#: lib/psm.c:1669
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "%s'den başlık okunamadı: %s\n"
-#: lib/psm.c:1708
+#: lib/psm.c:1715
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "kullanıcı %s yok - root kullanılacak\n"
-#: lib/psm.c:1717
+#: lib/psm.c:1724
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "grup %s yok - root kullanılacak\n"
-#: lib/psm.c:1765
+#: lib/psm.c:1772
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "arşiv paketi açılırken başarısız%s%s: %s\n"
-#: lib/psm.c:1766
+#: lib/psm.c:1773
msgid " on file "
msgstr " dosyada "
-#: lib/psm.c:1949
+#: lib/psm.c:1956
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s açılamadı: %s\n"
-#: lib/psm.c:1952
+#: lib/psm.c:1959
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s başarısız\n"
-#: lib/query.c:122 lib/rpmts.c:430
+#: lib/query.c:122 lib/rpmts.c:451
#, c-format
msgid "incorrect format: %s\n"
msgstr "biçem yanlış: %s\n"
#. @-boundswrite@
-#: lib/query.c:181
+#: lib/query.c:186
msgid "(contains no files)"
msgstr "(hiç dosya içermiyor)"
-#: lib/query.c:246
+#: lib/query.c:251
msgid "normal "
msgstr "normal "
-#: lib/query.c:249
+#: lib/query.c:254
msgid "replaced "
msgstr "yerine "
-#: lib/query.c:252
+#: lib/query.c:257
msgid "not installed "
msgstr "yüklenmedi "
-#: lib/query.c:255
+#: lib/query.c:260
msgid "net shared "
msgstr "ağ paylaşımlı "
-#: lib/query.c:258
+#: lib/query.c:263
msgid "wrong color "
msgstr ""
-#: lib/query.c:261
+#: lib/query.c:266
msgid "(no state) "
msgstr "(durumsuz) "
-#: lib/query.c:264
+#: lib/query.c:269
#, c-format
msgid "(unknown %3d) "
msgstr "(bilinmeyen %3d)"
-#: lib/query.c:282
+#: lib/query.c:287
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "paket ne dosya sahibi ne de kimlik listesi içeriyor\n"
-#: lib/query.c:315
+#: lib/query.c:320
msgid "package has neither file owner or id lists\n"
msgstr "paket ne dosya sahibi ne de kimlik listesi içeriyor\n"
-#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
-#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
+#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "%s açılamadı: %s\n"
-#: lib/query.c:459
+#: lib/query.c:464
#, c-format
msgid "query of %s failed\n"
msgstr "%s 'nin sorgulaması başarısızlıkla sonuçlandı\n"
-#: lib/query.c:469
+#: lib/query.c:474
msgid "old format source packages cannot be queried\n"
msgstr "eski biçem kaynak paketleri sorgulanamaz\n"
-#: lib/query.c:502 lib/rpminstall.c:608
+#: lib/query.c:507 lib/rpminstall.c:608
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "%s tetikleyen paket yok\n"
-#: lib/query.c:531
+#: lib/query.c:536
msgid "no packages\n"
msgstr "paket yok\n"
-#: lib/query.c:551
+#: lib/query.c:556
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "%s grubu hiç paket içermiyor\n"
-#: lib/query.c:560
+#: lib/query.c:565
#, c-format
msgid "no package triggers %s\n"
msgstr "%s tetikleyen paket yok\n"
-#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
+#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "%s okunamadı: %s.\n"
-#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
+#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "%s tetikleyen paket yok\n"
-#: lib/query.c:663
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "%s gerektiren paket yok\n"
-#: lib/query.c:674
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "%s sağlayan paket yok\n"
-#: lib/query.c:709
+#: lib/query.c:714
#, c-format
msgid "file %s: %s\n"
msgstr "dosya %s: %s\n"
-#: lib/query.c:713
+#: lib/query.c:718
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "%s dosyası, hiç bir pakete ait değil\n"
-#: lib/query.c:738
+#: lib/query.c:743
#, c-format
msgid "invalid package number: %s\n"
msgstr "geçersiz paket numarası: %s\n"
-#: lib/query.c:741
+#: lib/query.c:746
#, c-format
msgid "package record number: %u\n"
msgstr "paket kayıt numarası: %u\n"
-#: lib/query.c:746
+#: lib/query.c:751
#, c-format
msgid "record %u could not be read\n"
msgstr "%u. kayıt okunamadı\n"
-#: lib/query.c:756 lib/rpminstall.c:779
+#: lib/query.c:761 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "%s paketi kurulu değil\n"
@@ -2879,28 +2879,28 @@ msgstr "%s okunamıyor, EV çok büyük\n"
msgid "Unable to open %s for reading: %s.\n"
msgstr "%s okuma erişimi için açılamadı: %s.\n"
-#: lib/rpmts.c:135
+#: lib/rpmts.c:156
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "%s de Paket veritabanı açılamadı\n"
-#: lib/rpmts.c:320
+#: lib/rpmts.c:341
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "%s dizininde rpm veritabanı açılamıyor\n"
-#: lib/rpmts.c:462
+#: lib/rpmts.c:483
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "satır: %s\n"
-#: lib/rpmts.c:474
+#: lib/rpmts.c:495
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "%s alınıyor\n"
#. Get available space on mounted file systems.
-#: lib/rpmts.c:906
+#: lib/rpmts.c:927
msgid "getting list of mounted filesystems\n"
msgstr "bağlı dosya sistemlerinin listesi alınıyor\n"
@@ -3073,7 +3073,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr "missingok flamasından dolayı %s atlandı\n"
#. @innercontinue@
-#: lib/transaction.c:935
+#: lib/transaction.c:956
#, c-format
msgid "excluding directory %s\n"
msgstr "%s dizini dışlanıyor\n"
@@ -3086,7 +3086,7 @@ msgstr "%s dizini dışlanıyor\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1047
+#: lib/transaction.c:1068
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3099,7 +3099,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1129
+#: lib/transaction.c:1156
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3107,7 +3107,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1206
+#: lib/transaction.c:1233
msgid "computing file dispositions\n"
msgstr ""
diff --git a/rpm.spec.in b/rpm.spec.in
index 60663afca..fd19a8a91 100644
--- a/rpm.spec.in
+++ b/rpm.spec.in
@@ -20,7 +20,7 @@ Name: rpm
%define version @VERSION@
Version: %{version}
%{expand: %%define rpm_version %{version}}
-Release: 0.56
+Release: 0.58
Group: System Environment/Base
Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/rpm-%{rpm_version}.tar.gz
Copyright: GPL
@@ -464,6 +464,10 @@ exit 0
%{__includedir}/popt.h
%changelog
+* Fri Jan 17 2003 Jeff Johnson <jbj@redhat.com> 4.2-0.58
+- duplicate package checks with arch/os checks if colored.
+- file conflict checks with colors.
+
* Mon Jan 13 2003 Jeff Johnson <jbj@redhat.com> 4.2-0.57
- teach rpmquery to return "owning" package(s) in spite of alternatives.
diff --git a/rpmdb/hdrNVR.c b/rpmdb/hdrNVR.c
index 18f3e537d..d69978152 100644
--- a/rpmdb/hdrNVR.c
+++ b/rpmdb/hdrNVR.c
@@ -30,3 +30,35 @@ int headerNVR(Header h, const char **np, const char **vp, const char **rp)
/*@=boundswrite@*/
return 0;
}
+
+int headerNEVRA(Header h, const char **np,
+ /*@unused@*/ const char **ep, const char **vp, const char **rp,
+ const char **ap)
+{
+ int type;
+ int count;
+
+/*@-boundswrite@*/
+ if (np) {
+ if (!(headerGetEntry(h, RPMTAG_NAME, &type, (void **) np, &count)
+ && type == RPM_STRING_TYPE && count == 1))
+ *np = NULL;
+ }
+ if (vp) {
+ if (!(headerGetEntry(h, RPMTAG_VERSION, &type, (void **) vp, &count)
+ && type == RPM_STRING_TYPE && count == 1))
+ *vp = NULL;
+ }
+ if (rp) {
+ if (!(headerGetEntry(h, RPMTAG_RELEASE, &type, (void **) rp, &count)
+ && type == RPM_STRING_TYPE && count == 1))
+ *rp = NULL;
+ }
+ if (ap) {
+ if (!(headerGetEntry(h, RPMTAG_ARCH, &type, (void **) ap, &count)
+ && type == RPM_STRING_TYPE && count == 1))
+ *ap = NULL;
+ }
+/*@=boundswrite@*/
+ return 0;
+}