summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjbj <devnull@localhost>2003-01-01 20:33:21 +0000
committerjbj <devnull@localhost>2003-01-01 20:33:21 +0000
commited806144245212853f1bd030981d967bfe77630e (patch)
treeb68408513863b2cb6faad640c94de6c3f1f95206
parenteb93e7599587e462128dc3217e95adf3f1cd361c (diff)
downloadrpm-ed806144245212853f1bd030981d967bfe77630e.tar.gz
rpm-ed806144245212853f1bd030981d967bfe77630e.tar.bz2
rpm-ed806144245212853f1bd030981d967bfe77630e.zip
- fix: dependency helpers now rate limited at 10ms, not 1s.
- add per-arch canonical color, only x86_64 enabled for now. CVS patchset: 5994 CVS date: 2003/01/01 20:33:21
-rw-r--r--CHANGES2
-rw-r--r--build/rpmfc.c15
-rw-r--r--configure.ac35
-rw-r--r--lib/psm.c18
-rw-r--r--lib/rpmlib.h4
-rw-r--r--macros.in9
-rw-r--r--po/cs.po173
-rw-r--r--po/da.po172
-rw-r--r--po/de.po175
-rw-r--r--po/fi.po173
-rw-r--r--po/fr.po169
-rw-r--r--po/gl.po169
-rw-r--r--po/is.po169
-rw-r--r--po/ja.po173
-rw-r--r--po/ko.po172
-rw-r--r--po/no.po172
-rw-r--r--po/pl.po173
-rw-r--r--po/pt.po172
-rw-r--r--po/pt_BR.po189
-rw-r--r--po/ro.po169
-rw-r--r--po/rpm.pot169
-rw-r--r--po/ru.po172
-rw-r--r--po/sk.po173
-rw-r--r--po/sl.po175
-rw-r--r--po/sr.po173
-rw-r--r--po/sv.po172
-rw-r--r--po/tr.po172
-rw-r--r--rpm.spec.in2
28 files changed, 1884 insertions, 1827 deletions
diff --git a/CHANGES b/CHANGES
index cc627da4e..b5e394f4c 100644
--- a/CHANGES
+++ b/CHANGES
@@ -95,6 +95,8 @@
- fix: typo in assertion.
- add rpmts/rpmte/rpmfi/rpmds element colors.
- ignore items not in our rainbow (i.e. colors are functional).
+ - fix: dependency helpers now rate limited at 10ms, not 1s.
+ - add per-arch canonical color, only x86_64 enabled for now.
4.0.4 -> 4.1:
- loosely wire beecrypt library into rpm.
diff --git a/build/rpmfc.c b/build/rpmfc.c
index 9f37b0ec9..4322d06fc 100644
--- a/build/rpmfc.c
+++ b/build/rpmfc.c
@@ -121,7 +121,6 @@ static StringBuf getOutputFrom(/*@null@*/ const char * dir, ARGV_t argv,
done = 0;
top:
- /* XXX the select is mainly a timer since all I/O is non-blocking */
FD_ZERO(&ibits);
FD_ZERO(&obits);
if (fromProg[0] >= 0) {
@@ -130,8 +129,9 @@ top:
if (toProg[1] >= 0) {
FD_SET(toProg[1], &obits);
}
- tv.tv_sec = 1;
- tv.tv_usec = 0;
+ /* XXX values set to limit spinning with perl doing ~100 forks/sec. */
+ tv.tv_sec = 0;
+ tv.tv_usec = 10000;
nfd = ((fromProg[0] > toProg[1]) ? fromProg[0] : toProg[1]);
if ((rc = select(nfd, &ibits, &obits, NULL, &tv)) < 0) {
if (errno == EINTR)
@@ -1469,9 +1469,16 @@ assert(EVR != NULL);
p = (const void **) argiData(fc->fcolor);
c = argiCount(fc->fcolor);
assert(ac == c);
- if (p != NULL && c > 0)
+ if (p != NULL && c > 0) {
+ int_32 * fcolors = (int_32 *)p;
+ int i;
+
+ /* XXX Make sure only primary (i.e. Elf32/Elf64) colors are added. */
+ for (i = 0; i < c; i++)
+ fcolors[i] &= 0x0f;
xx = headerAddEntry(pkg->header, RPMTAG_FILECOLORS, RPM_INT32_TYPE,
p, c);
+ }
/* Add classes(#classes) */
p = (const void **) argvData(fc->cdict);
diff --git a/configure.ac b/configure.ac
index fde2791a3..0f513f400 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1124,23 +1124,23 @@ AC_SUBST(MARK64)
dnl Determine the canonical arch-vendor-os for the build machine
case "${build_cpu}" in
-*86) RPMCANONARCH=i386 ;;
-x86_64*) RPMCANONARCH=x86_64 ;;
-alpha*) RPMCANONARCH=alpha ;;
-sparc*) RPMCANONARCH=sparc ;;
-ia64*) RPMCANONARCH=ia64 ;;
-s390x*) RPMCANONARCH=s390x ;;
-s390*) RPMCANONARCH=s390 ;;
-powerpc64*|ppc64*) RPMCANONARCH=ppc64 ;;
-powerpc*|ppc*) RPMCANONARCH=ppc ;;
-armv3l*) RPMCANONARCH=armv3l ;;
-armv4l*) RPMCANONARCH=armv4l ;;
-armv4b*) RPMCANONARCH=armv4b ;;
-arm*) RPMCANONARCH="${build_cpu}" ;;
-mipsel*) RPMCANONARCH=mipsel ;;
-mips*) RPMCANONARCH=mips ;;
-m68k*) RPMCANONARCH=m68k ;;
-*) RPMCANONARCH=unknown ;;
+*86) RPMCANONCOLOR=0; RPMCANONARCH=i386 ;;
+x86_64*) RPMCANONCOLOR=3; RPMCANONARCH=x86_64 ;;
+alpha*) RPMCANONCOLOR=0; RPMCANONARCH=alpha ;;
+sparc*) RPMCANONCOLOR=0; RPMCANONARCH=sparc ;;
+ia64*) RPMCANONCOLOR=0; RPMCANONARCH=ia64 ;;
+s390x*) RPMCANONCOLOR=0; RPMCANONARCH=s390x ;;
+s390*) RPMCANONCOLOR=0; RPMCANONARCH=s390 ;;
+powerpc64*|ppc64*) RPMCANONCOLOR=0; RPMCANONARCH=ppc64 ;;
+powerpc*|ppc*) RPMCANONCOLOR=0; RPMCANONARCH=ppc ;;
+armv3l*) RPMCANONCOLOR=0; RPMCANONARCH=armv3l ;;
+armv4l*) RPMCANONCOLOR=0; RPMCANONARCH=armv4l ;;
+armv4b*) RPMCANONCOLOR=0; RPMCANONARCH=armv4b ;;
+arm*) RPMCANONCOLOR=0; RPMCANONARCH="${build_cpu}" ;;
+mipsel*) RPMCANONCOLOR=0; RPMCANONARCH=mipsel ;;
+mips*) RPMCANONCOLOR=0; RPMCANONARCH=mips ;;
+m68k*) RPMCANONCOLOR=0; RPMCANONARCH=m68k ;;
+*) RPMCANONCOLOR=0; RPMCANONARCH=unknown ;;
esac
case "${build_os_noversion}" in
mint) RPMCANONARCH=m68kmint ;;
@@ -1157,6 +1157,7 @@ unknown|pc|ibm|redhat|pld|mandrake|conectiva|lvr|yellowdog)
;;
esac
RPMCANONOS="$build_os_noversion"
+AC_SUBST(RPMCANONCOLOR)
AC_SUBST(RPMCANONARCH)
AC_SUBST(RPMCANONVENDOR)
AC_SUBST(RPMCANONOS)
diff --git a/lib/psm.c b/lib/psm.c
index 9595585fd..e9c15381b 100644
--- a/lib/psm.c
+++ b/lib/psm.c
@@ -1526,13 +1526,13 @@ psm->te->h = headerLink(fi->h);
/* XXX insure that trigger index is opened before entering chroot. */
#ifdef NOTYET
-{ static int oneshot = 0;
- dbiIndex dbi;
- if (!oneshot) {
- dbi = dbiOpen(rpmtsGetRdb(ts), RPMTAG_TRIGGERNAME, 0);
- oneshot++;
- }
-}
+ { static int oneshot = 0;
+ dbiIndex dbi;
+ if (!oneshot) {
+ dbi = dbiOpen(rpmtsGetRdb(ts), RPMTAG_TRIGGERNAME, 0);
+ oneshot++;
+ }
+ }
#endif
/* Change root directory if requested and not already done. */
@@ -1845,6 +1845,7 @@ psm->te->h = headerLink(fi->h);
if (psm->goal == PSM_PKGINSTALL) {
int_32 installTime = (int_32) time(NULL);
+ int_32 tscolor = rpmtsColor(ts);
int fc = rpmfiFC(fi);
if (fi->h == NULL) break; /* XXX can't happen */
@@ -1855,6 +1856,9 @@ psm->te->h = headerLink(fi->h);
xx = headerAddEntry(fi->h, RPMTAG_INSTALLTIME, RPM_INT32_TYPE,
&installTime, 1);
+ xx = headerAddEntry(fi->h, RPMTAG_INSTALLCOLOR, RPM_INT32_TYPE,
+ &tscolor, 1);
+
/*
* If this package has already been installed, remove it from
* the database before adding the new one.
diff --git a/lib/rpmlib.h b/lib/rpmlib.h
index b2b7883e3..ad351bdda 100644
--- a/lib/rpmlib.h
+++ b/lib/rpmlib.h
@@ -365,9 +365,7 @@ typedef enum rpmTag_e {
RPMTAG_PAYLOADFORMAT = 1124,
RPMTAG_PAYLOADCOMPRESSOR = 1125,
RPMTAG_PAYLOADFLAGS = 1126,
-/*@-enummemuse@*/
- RPMTAG_MULTILIBMASK = 1127, /*!< internal - obsolete */
-/*@=enummemuse@*/
+ RPMTAG_INSTALLCOLOR = 1127, /*!< transaction color when installed */
RPMTAG_INSTALLTID = 1128,
RPMTAG_REMOVETID = 1129,
/*@-enummemuse@*/
diff --git a/macros.in b/macros.in
index 137e9e27f..8398589ab 100644
--- a/macros.in
+++ b/macros.in
@@ -1,7 +1,7 @@
#/*! \page config_macros Default configuration: @RPMCONFIGDIR@/macros
# \verbatim
#
-# $Id: macros.in,v 1.134 2002/12/21 20:37:37 jbj Exp $
+# $Id: macros.in,v 1.135 2003/01/01 20:33:21 jbj Exp $
#
# This is a global RPM configuration file. All changes made here will
# be lost when the rpm package is upgraded. Any per-system configuration
@@ -569,6 +569,13 @@ package or when debugging this package.\
# XXX Note: escaped %% for use in headerSprintf()
%_build_name_fmt %%{ARCH}/%%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm
+# The default transaction color. This value is a set of bits to
+# determine file and dependency affinity for this arch.
+# 0 uncolored (i.e. use only arch as install hint)
+# 1 Elf32 permitted
+# 2 Elf64 permitted
+%_transaction_color @RPMCANONCOLOR@
+
# The path to the dependency universe database. The default value
# is the rpmdb-redhat location. The macro is usually defined in
# /etc/rpm/macros.solve, installed with the rpmdb-redhat package.
diff --git a/po/cs.po b/po/cs.po
index a8e2051fd..1acefdce4 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-12-30 09:42-0500\n"
+"POT-Creation-Date: 2003-01-01 15:20-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:1841
+#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
+#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapsáno: %s\n"
@@ -1359,52 +1359,52 @@ msgstr "selhal - "
msgid "package %s was already added, replacing with %s\n"
msgstr "balíček %s je již nainstalován"
-#: lib/depends.c:395
+#: lib/depends.c:362
msgid "(cached)"
msgstr ""
-#: lib/depends.c:422
+#: lib/depends.c:389
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %-45s ANO (rpmrc poskytuje)\n"
-#: lib/depends.c:439
+#: lib/depends.c:406
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %-45s ANO (rpmlib poskytuje)\n"
-#: lib/depends.c:468
+#: lib/depends.c:435
#, fuzzy
msgid "(db files)"
msgstr "Špatný soubor: %s: %s\n"
-#: lib/depends.c:481
+#: lib/depends.c:448
#, fuzzy
msgid "(db provides)"
msgstr "%s: %-45s ANO (db poskytuje)\n"
-#: lib/depends.c:494
+#: lib/depends.c:461
#, fuzzy
msgid "(db package)"
msgstr "žádné balíčky\n"
-#: lib/depends.c:852
+#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:974
+#: lib/depends.c:937
#, 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:1208
+#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr "========== ukládání tsort relací\n"
#. T4. Scan for zeroes.
-#: lib/depends.c:1309
+#: lib/depends.c:1267
#, 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:1393
+#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr "========== pouze úspěšné (pořadí dle prezentace)\n"
-#: lib/depends.c:1463
+#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr "SMYČKA:\n"
-#: lib/depends.c:1498
+#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr "========== pokračuje tsort ...\n"
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1503
+#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1489,37 +1489,37 @@ msgstr "========= Adresáře, které nebyly explicitně zařazeny do balíčku:\n"
msgid "%10d %s\n"
msgstr "%9d %s\n"
-#: lib/fsm.c:1245
+#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr "vytvořen adresář %s s právy %04o.\n"
-#: lib/fsm.c:1543
+#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1672 lib/fsm.c:1808
+#: lib/fsm.c:1675 lib/fsm.c:1811
#, c-format
msgid "%s saved as %s\n"
msgstr "%s uloženo jako %s\n"
-#: lib/fsm.c:1834
+#: lib/fsm.c:1837
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s odstranění %s selhalo: Adresář není prázdný\n"
-#: lib/fsm.c:1840
+#: lib/fsm.c:1843
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s rmdir %s selhal: %s\n"
-#: lib/fsm.c:1850
+#: lib/fsm.c:1853
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s unlink %s selhal: %s\n"
-#: lib/fsm.c:1870
+#: lib/fsm.c:1873
#, c-format
msgid "%s created as %s\n"
msgstr "%s vytvořen jako %s\n"
@@ -2166,89 +2166,84 @@ msgstr "podepsat balíček (zahodit aktuální podpis)"
msgid "generate signature"
msgstr "generovat PGP/GPG podpis"
-#: lib/psm.c:254 rpmdb/header_internal.c:164
-#, c-format
-msgid "Data type %d not supported\n"
-msgstr "Datový typ %d není podporován\n"
-
-#: lib/psm.c:465
+#: lib/psm.c:278
msgid "source package expected, binary found\n"
msgstr "očekávám balíček se zdrojovými kódy, nalezen však binární\n"
-#: lib/psm.c:582
+#: lib/psm.c:395
msgid "source package contains no .spec file\n"
msgstr "zdrojový balíček neobsahuje .spec soubor\n"
-#: lib/psm.c:918
+#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:1001
+#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:1009
+#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:1172
+#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1195
+#: lib/psm.c:1008
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "%s: scriptlet %s selhal (%d), přeskakuji %s-%s-%s\n"
-#: lib/psm.c:1201
+#: lib/psm.c:1014
#, fuzzy, c-format
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:1608
+#: lib/psm.c:1420
#, 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:1744
+#: lib/psm.c:1553
#, 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:1853
+#: lib/psm.c:1662
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Nemohu přečíst hlavičku z %s: %s\n"
-#: lib/psm.c:1899
+#: lib/psm.c:1708
#, 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:1908
+#: lib/psm.c:1717
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "skupina %s neexistuje - použita skupina root\n"
-#: lib/psm.c:1956
+#: lib/psm.c:1765
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "rozbalování archívu selhalo %s%s: %s\n"
-#: lib/psm.c:1957
+#: lib/psm.c:1766
msgid " on file "
msgstr " na souboru "
-#: lib/psm.c:2154
+#: lib/psm.c:1949
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "nemohu otevřít %s: %s\n"
-#: lib/psm.c:2157
+#: lib/psm.c:1952
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s selhalo\n"
@@ -2280,114 +2275,118 @@ msgid "net shared "
msgstr "sdílen v síti "
#: lib/query.c:258
+msgid "wrong color "
+msgstr ""
+
+#: lib/query.c:261
msgid "(no state) "
msgstr "(chybí stav) "
-#: lib/query.c:261
+#: lib/query.c:264
#, c-format
msgid "(unknown %3d) "
msgstr "(neznámý %3d) "
-#: lib/query.c:279
+#: lib/query.c:282
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "balíček nemá vlastníka souboru ani seznamy id\n"
-#: lib/query.c:312
+#: lib/query.c:315
msgid "package has neither file owner or id lists\n"
msgstr "balíček nemá vlastníka souboru ani seznamy id\n"
-#: lib/query.c:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "otevření %s selhalo: %s\n"
-#: lib/query.c:455
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "dotaz na %s se nezdařil\n"
-#: lib/query.c:465
+#: lib/query.c:468
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:498 lib/rpminstall.c:608
+#: lib/query.c:501 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:527
+#: lib/query.c:530
msgid "no packages\n"
msgstr "žádné balíčky\n"
-#: lib/query.c:547
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "skupina %s neobsahuje žádné balíčky\n"
-#: lib/query.c:557
+#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr "žádný balíček neaktivuje %s\n"
-#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
+#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "nemohu zjistit stav %s: %s\n"
-#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
+#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "žádný balíček neaktivuje %s\n"
-#: lib/query.c:665
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "žádný balíček nevyžaduje %s\n"
-#: lib/query.c:676
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "žádný balíček neposkytuje %s\n"
-#: lib/query.c:710
+#: lib/query.c:713
#, c-format
msgid "file %s: %s\n"
msgstr "soubor %s: %s\n"
-#: lib/query.c:714
+#: lib/query.c:717
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "soubor %s nevlastní žádný balíček\n"
-#: lib/query.c:741
+#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr "neplatné číslo balíčku: %s\n"
-#: lib/query.c:744
+#: lib/query.c:747
#, c-format
msgid "package record number: %u\n"
msgstr "záznam balíčku číslo: %u\n"
-#: lib/query.c:749
+#: lib/query.c:752
#, c-format
msgid "record %u could not be read\n"
msgstr "záznam %u nelze přečíst\n"
-#: lib/query.c:760 lib/rpminstall.c:779
+#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "balíček %s není nainstalován\n"
-#: lib/rpmal.c:695
+#: lib/rpmal.c:692
#, fuzzy
msgid "(added files)"
msgstr "Špatný soubor: %s: %s\n"
-#: lib/rpmal.c:774
+#: lib/rpmal.c:770
#, fuzzy
msgid "(added provide)"
msgstr "%s: %-45s ANO (přidáno poskytuje)\n"
@@ -2514,37 +2513,32 @@ msgstr " %s A %s\tB %s\n"
msgid "package %s has unsatisfied %s: %s\n"
msgstr "balíček %s-%s-%s má nesplněné požadavky: %s\n"
-#: lib/rpmfi.c:657
+#: lib/rpmfi.c:658
#, fuzzy
msgid "========== relocations\n"
msgstr "========== ukládání tsort relací\n"
-#: lib/rpmfi.c:661
+#: lib/rpmfi.c:662
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "OS je vyřazen: %s\n"
-#: lib/rpmfi.c:664
+#: lib/rpmfi.c:665
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%s vytvořen jako %s\n"
-#: lib/rpmfi.c:734
-#, fuzzy, c-format
-msgid "excluding multilib path %s%s\n"
-msgstr "Provádění(%s): %s\n"
-
-#: lib/rpmfi.c:800
+#: lib/rpmfi.c:788
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "Provádění(%s): %s\n"
-#: lib/rpmfi.c:810
+#: lib/rpmfi.c:798
#, fuzzy, c-format
msgid "relocating %s to %s\n"
msgstr "Provádění(%s): %s\n"
-#: lib/rpmfi.c:889
+#: lib/rpmfi.c:877
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "nemohu provést dotaz %s: %s\n"
@@ -3068,7 +3062,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:925
+#: lib/transaction.c:935
#, c-format
msgid "excluding directory %s\n"
msgstr ""
@@ -3081,7 +3075,7 @@ msgstr ""
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1034
+#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3094,7 +3088,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1117
+#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3102,16 +3096,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1194
+#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:286
+#: lib/verify.c:287
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "chybí { po %"
-#: lib/verify.c:395
+#: lib/verify.c:396
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "chybné závislosti při sestavování:\n"
@@ -3278,6 +3272,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
+#: rpmdb/header_internal.c:164
+#, c-format
+msgid "Data type %d not supported\n"
+msgstr "Datový typ %d není podporován\n"
+
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr ""
@@ -3833,6 +3832,10 @@ msgid "DIRECTORY"
msgstr ""
#, fuzzy
+#~ msgid "excluding multilib path %s%s\n"
+#~ msgstr "Provádění(%s): %s\n"
+
+#, fuzzy
#~ msgid "Finding %s: %s\n"
#~ msgstr "Hledám %s: (použit %s)...\n"
diff --git a/po/da.po b/po/da.po
index ff35cfd7e..9a84c2478 100644
--- a/po/da.po
+++ b/po/da.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-12-30 09:42-0500\n"
+"POT-Creation-Date: 2003-01-01 15:20-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:1841
+#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
+#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrev: %s\n"
@@ -1360,71 +1360,71 @@ msgstr " mislykkedes - "
msgid "package %s was already added, replacing with %s\n"
msgstr "pakken %s er allerede installeret"
-#: lib/depends.c:395
+#: lib/depends.c:362
msgid "(cached)"
msgstr ""
-#: lib/depends.c:422
+#: lib/depends.c:389
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %-45s JA (rpmrc tilfřrer)\n"
-#: lib/depends.c:439
+#: lib/depends.c:406
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %-45s JA (rpmlib tilfřrer)\n"
-#: lib/depends.c:468
+#: lib/depends.c:435
#, fuzzy
msgid "(db files)"
msgstr "ugyldig db-fil %s\n"
-#: lib/depends.c:481
+#: lib/depends.c:448
#, fuzzy
msgid "(db provides)"
msgstr "%s: %-45s JA (db tilfřrer)\n"
-#: lib/depends.c:494
+#: lib/depends.c:461
#, fuzzy
msgid "(db package)"
msgstr "ingen pakker\n"
-#: lib/depends.c:852
+#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:974
+#: lib/depends.c:937
#, 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:1208
+#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr "========== gemmer tsort-relationer\n"
#. T4. Scan for zeroes.
-#: lib/depends.c:1309
+#: lib/depends.c:1267
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1393
+#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr "========== kun efterfřlgere (prćsentationsrćkkefřlge)\n"
-#: lib/depends.c:1463
+#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr "LŘKKE:\n"
-#: lib/depends.c:1498
+#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr "========== fortsćtter tsort ...\n"
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1503
+#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1487,37 +1487,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr "linie %d: %s\n"
-#: lib/fsm.c:1245
+#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
-#: lib/fsm.c:1543
+#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1672 lib/fsm.c:1808
+#: lib/fsm.c:1675 lib/fsm.c:1811
#, c-format
msgid "%s saved as %s\n"
msgstr "%s gemt som %s\n"
-#: lib/fsm.c:1834
+#: lib/fsm.c:1837
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "kan ikke fjerne %s - katalog ikke tomt\n"
-#: lib/fsm.c:1840
+#: lib/fsm.c:1843
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "fjernelse (rmdir) af %s mislykkedes: %s\n"
-#: lib/fsm.c:1850
+#: lib/fsm.c:1853
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "ĺbning af %s mislykkedes %s\n"
-#: lib/fsm.c:1870
+#: lib/fsm.c:1873
#, c-format
msgid "%s created as %s\n"
msgstr "%s oprettet som %s\n"
@@ -2178,90 +2178,85 @@ msgstr "underskriv en pakke (slet nuvćrende signatur)"
msgid "generate signature"
msgstr "generér PGP/GPG-signatur"
-#: lib/psm.c:254 rpmdb/header_internal.c:164
-#, c-format
-msgid "Data type %d not supported\n"
-msgstr "Datatype %d understřttes ikke\n"
-
-#: lib/psm.c:465
+#: lib/psm.c:278
msgid "source package expected, binary found\n"
msgstr "kildepakke forventet, binćr fundet\n"
-#: lib/psm.c:582
+#: lib/psm.c:395
msgid "source package contains no .spec file\n"
msgstr "kildepakke indeholder ingen .spec-fil\n"
-#: lib/psm.c:918
+#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:1001
+#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:1009
+#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:1172
+#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1195
+#: lib/psm.c:1008
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "overspringer installation af %s-%s-%s, %%pre-smĺskript fejlede rc %d\n"
-#: lib/psm.c:1201
+#: lib/psm.c:1014
#, fuzzy, c-format
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:1608
+#: lib/psm.c:1420
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "pakke: %s-%s-%s filer test = %d\n"
-#: lib/psm.c:1744
+#: lib/psm.c:1553
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1853
+#: lib/psm.c:1662
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Kunne ikke lćse hoved fra %s: %s\n"
-#: lib/psm.c:1899
+#: lib/psm.c:1708
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "bruger %s eksisterer ikke - bruger root\n"
-#: lib/psm.c:1908
+#: lib/psm.c:1717
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "gruppe %s eksisterer ikke - bruger root\n"
-#: lib/psm.c:1956
+#: lib/psm.c:1765
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "udpakning af arkiv mislykkedes%s%s: %s\n"
-#: lib/psm.c:1957
+#: lib/psm.c:1766
msgid " on file "
msgstr " for fil "
-#: lib/psm.c:2154
+#: lib/psm.c:1949
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "kunne ikke ĺbne %s: %s\n"
-#: lib/psm.c:2157
+#: lib/psm.c:1952
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s mislykkedes\n"
@@ -2293,114 +2288,118 @@ msgid "net shared "
msgstr "ej delt "
#: lib/query.c:258
+msgid "wrong color "
+msgstr ""
+
+#: lib/query.c:261
msgid "(no state) "
msgstr "(ingen status)"
-#: lib/query.c:261
+#: lib/query.c:264
#, c-format
msgid "(unknown %3d) "
msgstr "(ukendt %3d) "
-#: lib/query.c:279
+#: lib/query.c:282
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "pakke har hverken filejerskabs- eller id-lister\n"
-#: lib/query.c:312
+#: lib/query.c:315
msgid "package has neither file owner or id lists\n"
msgstr "pakke har hverken filejerskabs- eller id-lister\n"
-#: lib/query.c:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "ĺbning af %s mislykkedes %s\n"
-#: lib/query.c:455
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "forespřrgsel af %s mislykkedes\n"
-#: lib/query.c:465
+#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr "pakke med gammelt kildeformat kan ikke forespřrges\n"
-#: lib/query.c:498 lib/rpminstall.c:608
+#: lib/query.c:501 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:527
+#: lib/query.c:530
msgid "no packages\n"
msgstr "ingen pakker\n"
-#: lib/query.c:547
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "gruppe %s indeholder ingen pakker\n"
-#: lib/query.c:557
+#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr "ingen pakker udlřser %s\n"
-#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
+#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "Kunne ikke lćse %s: %s.\n"
-#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
+#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "ingen pakker udlřser %s\n"
-#: lib/query.c:665
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "ingen pakker krćver %s\n"
-#: lib/query.c:676
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "ingen pakker tilfřrer %s\n"
-#: lib/query.c:710
+#: lib/query.c:713
#, c-format
msgid "file %s: %s\n"
msgstr "fil %s: %s\n"
-#: lib/query.c:714
+#: lib/query.c:717
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "filen %s tilhřrer ingen pakke\n"
-#: lib/query.c:741
+#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr "ugyldigt pakkenummer: %s\n"
-#: lib/query.c:744
+#: lib/query.c:747
#, c-format
msgid "package record number: %u\n"
msgstr "pakkens post-nummer: %u\n"
-#: lib/query.c:749
+#: lib/query.c:752
#, fuzzy, c-format
msgid "record %u could not be read\n"
msgstr "post %d kunne ikke lćses\n"
-#: lib/query.c:760 lib/rpminstall.c:779
+#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "pakken %s er ikke installeret\n"
-#: lib/rpmal.c:695
+#: lib/rpmal.c:692
#, fuzzy
msgid "(added files)"
msgstr "ugyldig db-fil %s\n"
-#: lib/rpmal.c:774
+#: lib/rpmal.c:770
#, fuzzy
msgid "(added provide)"
msgstr "%s: %-45s JA (tilfřjede 'provide')\n"
@@ -2527,36 +2526,31 @@ msgstr " %s A %s\tB %s\n"
msgid "package %s has unsatisfied %s: %s\n"
msgstr "pakke %s-%s-%s krav ikke opfyldt: %s\n"
-#: lib/rpmfi.c:657
+#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr "========== gemmer omrokeringer\n"
-#: lib/rpmfi.c:661
+#: lib/rpmfi.c:662
#, c-format
msgid "%5d exclude %s\n"
msgstr "%5d ekskluderer %s\n"
-#: lib/rpmfi.c:664
+#: lib/rpmfi.c:665
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%5d omrokerer %s -> %s\n"
-#: lib/rpmfi.c:734
-#, c-format
-msgid "excluding multilib path %s%s\n"
-msgstr "ekskluderer multilib-sti %s%s\n"
-
-#: lib/rpmfi.c:800
+#: lib/rpmfi.c:788
#, c-format
msgid "excluding %s %s\n"
msgstr "ekskluderer %s %s\n"
-#: lib/rpmfi.c:810
+#: lib/rpmfi.c:798
#, c-format
msgid "relocating %s to %s\n"
msgstr "omrokerer %s til %s\n"
-#: lib/rpmfi.c:889
+#: lib/rpmfi.c:877
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "omrokerer kataloget %s til %s\n"
@@ -3080,7 +3074,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr "%s oversprunget grundet manglende ok-flag\n"
#. @innercontinue@
-#: lib/transaction.c:925
+#: lib/transaction.c:935
#, c-format
msgid "excluding directory %s\n"
msgstr "ekskluderer kataloget %s\n"
@@ -3093,7 +3087,7 @@ msgstr "ekskluderer kataloget %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1034
+#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3106,7 +3100,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1117
+#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3114,16 +3108,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1194
+#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:286
+#: lib/verify.c:287
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "manglende %s"
-#: lib/verify.c:395
+#: lib/verify.c:396
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "Ikke-tilfredsstillede afhćngighedskrav for %s-%s-%s: "
@@ -3289,6 +3283,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
+#: rpmdb/header_internal.c:164
+#, c-format
+msgid "Data type %d not supported\n"
+msgstr "Datatype %d understřttes ikke\n"
+
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr "initialisér database"
@@ -3843,6 +3842,9 @@ msgstr ""
msgid "DIRECTORY"
msgstr ""
+#~ msgid "excluding multilib path %s%s\n"
+#~ msgstr "ekskluderer multilib-sti %s%s\n"
+
#, fuzzy
#~ msgid "Finding %s: %s\n"
#~ msgstr "Finder %s: (benytter %s)...\n"
diff --git a/po/de.po b/po/de.po
index f1fa16da1..3c565ea13 100644
--- a/po/de.po
+++ b/po/de.po
@@ -37,7 +37,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-12-30 09:42-0500\n"
+"POT-Creation-Date: 2003-01-01 15:20-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:1841
+#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
+#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@@ -1487,71 +1487,71 @@ msgstr "pgp fehlgeschlagen"
msgid "package %s was already added, replacing with %s\n"
msgstr "Paket %s ist nicht installiert\n"
-#: lib/depends.c:395
+#: lib/depends.c:362
msgid "(cached)"
msgstr ""
-#: lib/depends.c:422
+#: lib/depends.c:389
msgid "(rpmrc provides)"
msgstr ""
-#: lib/depends.c:439
+#: lib/depends.c:406
#, fuzzy
msgid "(rpmlib provides)"
msgstr "die Datei ť%sŤ gehört zu keinem Paket\n"
# , c-format
-#: lib/depends.c:468
+#: lib/depends.c:435
#, fuzzy
msgid "(db files)"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: lib/depends.c:481
+#: lib/depends.c:448
msgid "(db provides)"
msgstr ""
-#: lib/depends.c:494
+#: lib/depends.c:461
#, fuzzy
msgid "(db package)"
msgstr "Anfrage an alle Pakete"
-#: lib/depends.c:852
+#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
# FIXME
-#: lib/depends.c:974
+#: lib/depends.c:937
#, 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:1208
+#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1309
+#: lib/depends.c:1267
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1393
+#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1463
+#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1498
+#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1503
+#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1618,37 +1618,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: lib/fsm.c:1245
+#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
-#: lib/fsm.c:1543
+#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1672 lib/fsm.c:1808
+#: lib/fsm.c:1675 lib/fsm.c:1811
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "kann Datei %s nicht öffnen: "
-#: lib/fsm.c:1834
+#: lib/fsm.c:1837
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "kann %s nicht entfernen - Verzeichnis ist nicht leer"
-#: lib/fsm.c:1840
+#: lib/fsm.c:1843
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "Entfernen von %s fehlgeschlagen: %s"
-#: lib/fsm.c:1850
+#: lib/fsm.c:1853
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "öffnen von %s fehlgeschlagen: %s\n"
-#: lib/fsm.c:1870
+#: lib/fsm.c:1873
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "kann Datei %s nicht öffnen: "
@@ -2334,93 +2334,88 @@ msgstr "Ein Paket signieren (die aktuelle Signature wird verworfen)"
msgid "generate signature"
msgstr "PGP-Signatur generieren"
-#: lib/psm.c:254 rpmdb/header_internal.c:164
-#, c-format
-msgid "Data type %d not supported\n"
-msgstr ""
-
-#: lib/psm.c:465
+#: lib/psm.c:278
msgid "source package expected, binary found\n"
msgstr ""
-#: lib/psm.c:582
+#: lib/psm.c:395
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
-#: lib/psm.c:918
+#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:1001
+#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:1009
+#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:1172
+#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1195
+#: lib/psm.c:1008
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "Fehler: überspringe %s - Übertragung fehlgeschlagen - %s\n"
-#: lib/psm.c:1201
+#: lib/psm.c:1014
#, fuzzy, c-format
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:1608
+#: lib/psm.c:1420
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
-#: lib/psm.c:1744
+#: lib/psm.c:1553
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
# , c-format
-#: lib/psm.c:1853
+#: lib/psm.c:1662
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Nicht möglich %s zu schreiben"
-#: lib/psm.c:1899
+#: lib/psm.c:1708
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1908
+#: lib/psm.c:1717
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
-#: lib/psm.c:1956
+#: lib/psm.c:1765
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "öffnen von %s fehlgeschlagen: %s\n"
-#: lib/psm.c:1957
+#: lib/psm.c:1766
msgid " on file "
msgstr ""
# , c-format
-#: lib/psm.c:2154
+#: lib/psm.c:1949
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: lib/psm.c:2157
+#: lib/psm.c:1952
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "pgp fehlgeschlagen"
@@ -2453,120 +2448,124 @@ msgid "net shared "
msgstr ""
#: lib/query.c:258
-msgid "(no state) "
+msgid "wrong color "
msgstr ""
#: lib/query.c:261
+msgid "(no state) "
+msgstr ""
+
+#: lib/query.c:264
#, fuzzy, c-format
msgid "(unknown %3d) "
msgstr "(unbekannter Typ)"
-#: lib/query.c:279
+#: lib/query.c:282
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "Paket hat keinen Namen"
-#: lib/query.c:312
+#: lib/query.c:315
#, fuzzy
msgid "package has neither file owner or id lists\n"
msgstr "Paket hat keinen Namen"
-#: lib/query.c:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "öffnen von %s fehlgeschlagen: %s\n"
-#: lib/query.c:455
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "Anfrage von %s fehlgeschlagen\n"
-#: lib/query.c:465
+#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr "altes Sourceformat-Paket kann nicht angefragt werden\n"
-#: lib/query.c:498 lib/rpminstall.c:608
+#: lib/query.c:501 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:527
+#: lib/query.c:530
#, fuzzy
msgid "no packages\n"
msgstr "Anfrage an alle Pakete"
-#: lib/query.c:547
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
-#: lib/query.c:557
+#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr "kein Paket triggert %s\n"
# , c-format
-#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
+#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "Lesen von %s fehlgeschlagen: %s."
-#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
+#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "kein Paket triggert %s\n"
-#: lib/query.c:665
+#: 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:676
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "kein Paket stellt %s bereit\n"
# , c-format
-#: lib/query.c:710
+#: lib/query.c:713
#, fuzzy, c-format
msgid "file %s: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: lib/query.c:714
+#: lib/query.c:717
#, 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:741
+#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr "ungültige Paket-Nummer: %s\n"
-#: lib/query.c:744
+#: lib/query.c:747
#, fuzzy, c-format
msgid "package record number: %u\n"
msgstr "ungültige Paket-Nummer: %s\n"
-#: lib/query.c:749
+#: lib/query.c:752
#, fuzzy, c-format
msgid "record %u could not be read\n"
msgstr "Eintrag %d konnte nicht gelesen werden\n"
-#: lib/query.c:760 lib/rpminstall.c:779
+#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "Paket %s ist nicht installiert\n"
# , c-format
-#: lib/rpmal.c:695
+#: lib/rpmal.c:692
#, fuzzy
msgid "(added files)"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: lib/rpmal.c:774
+#: lib/rpmal.c:770
msgid "(added provide)"
msgstr ""
@@ -2691,39 +2690,33 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr "Paket %s wird nicht in %s aufgeführt"
-#: lib/rpmfi.c:657
+#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr ""
# , c-format
-#: lib/rpmfi.c:661
+#: lib/rpmfi.c:662
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "Hole %s heraus\n"
-#: lib/rpmfi.c:664
+#: lib/rpmfi.c:665
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "kann Datei %s nicht öffnen: "
# , c-format
-#: lib/rpmfi.c:734
-#, fuzzy, c-format
-msgid "excluding multilib path %s%s\n"
-msgstr "Hole %s heraus\n"
-
-# , c-format
-#: lib/rpmfi.c:800
+#: lib/rpmfi.c:788
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "Hole %s heraus\n"
-#: lib/rpmfi.c:810
+#: lib/rpmfi.c:798
#, fuzzy, c-format
msgid "relocating %s to %s\n"
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
-#: lib/rpmfi.c:889
+#: lib/rpmfi.c:877
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
@@ -3257,7 +3250,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:925
+#: lib/transaction.c:935
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
@@ -3270,7 +3263,7 @@ msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1034
+#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3283,7 +3276,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1117
+#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3291,16 +3284,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1194
+#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:286
+#: lib/verify.c:287
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "fehlende { nach %{"
-#: lib/verify.c:395
+#: lib/verify.c:396
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "Nicht erfüllte Abhängigkeiten von %s-%s-%s: "
@@ -3469,6 +3462,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
+#: rpmdb/header_internal.c:164
+#, c-format
+msgid "Data type %d not supported\n"
+msgstr ""
+
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr ""
@@ -4038,6 +4036,11 @@ msgstr ""
# , c-format
#, fuzzy
+#~ msgid "excluding multilib path %s%s\n"
+#~ msgstr "Hole %s heraus\n"
+
+# , c-format
+#, fuzzy
#~ msgid "Finding %s: %s\n"
#~ msgstr "Öffnen von %s fehlgeschlagen: %s"
diff --git a/po/fi.po b/po/fi.po
index 513dc9697..b68466752 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-12-30 09:42-0500\n"
+"POT-Creation-Date: 2003-01-01 15:20-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:1841
+#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
+#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@@ -1384,69 +1384,69 @@ msgstr "pgp epäonnistui"
msgid "package %s was already added, replacing with %s\n"
msgstr "paketti %s ei ole asennettu\n"
-#: lib/depends.c:395
+#: lib/depends.c:362
msgid "(cached)"
msgstr ""
-#: lib/depends.c:422
+#: lib/depends.c:389
msgid "(rpmrc provides)"
msgstr ""
-#: lib/depends.c:439
+#: lib/depends.c:406
#, fuzzy
msgid "(rpmlib provides)"
msgstr "tiedostoa %s ei omista mikään paketti\n"
-#: lib/depends.c:468
+#: lib/depends.c:435
#, fuzzy
msgid "(db files)"
msgstr "en voinut avata %s: %s"
-#: lib/depends.c:481
+#: lib/depends.c:448
msgid "(db provides)"
msgstr ""
-#: lib/depends.c:494
+#: lib/depends.c:461
#, fuzzy
msgid "(db package)"
msgstr "kysele kaikki paketit"
-#: lib/depends.c:852
+#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:974
+#: lib/depends.c:937
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "virhe poistettaessa tietuetta %s %s:stä"
#. Record all relations.
-#: lib/depends.c:1208
+#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1309
+#: lib/depends.c:1267
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1393
+#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1463
+#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1498
+#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1503
+#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1509,37 +1509,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr "en voinut avata %s: %s"
-#: lib/fsm.c:1245
+#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
-#: lib/fsm.c:1543
+#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1672 lib/fsm.c:1808
+#: lib/fsm.c:1675 lib/fsm.c:1811
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "en voinut avata tiedostoa %s: "
-#: lib/fsm.c:1834
+#: lib/fsm.c:1837
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "en voi poistaa %s -hakemisto ei ole tyhjä"
-#: lib/fsm.c:1840
+#: lib/fsm.c:1843
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s:n rmdir epäonnistui: %s"
-#: lib/fsm.c:1850
+#: lib/fsm.c:1853
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s:n avaus ei onnistunut: %s\n"
-#: lib/fsm.c:1870
+#: lib/fsm.c:1873
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "en voinut avata tiedostoa %s: "
@@ -2220,90 +2220,85 @@ msgstr "allekirjoita paketti (hylkää nykyinen allekirjoitus)"
msgid "generate signature"
msgstr "generoi PGP-allekirjoitus"
-#: lib/psm.c:254 rpmdb/header_internal.c:164
-#, c-format
-msgid "Data type %d not supported\n"
-msgstr ""
-
-#: lib/psm.c:465
+#: lib/psm.c:278
msgid "source package expected, binary found\n"
msgstr ""
-#: lib/psm.c:582
+#: lib/psm.c:395
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
-#: lib/psm.c:918
+#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:1001
+#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:1009
+#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:1172
+#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1195
+#: lib/psm.c:1008
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "virhe: ohitan %s:n, siirto epäonnistui - %s\n"
-#: lib/psm.c:1201
+#: lib/psm.c:1014
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "skriptin ajo epäonnistui"
-#: lib/psm.c:1608
+#: lib/psm.c:1420
#, 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:1744
+#: lib/psm.c:1553
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1853
+#: lib/psm.c:1662
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "%s:n kirjoitus ei onnistu"
-#: lib/psm.c:1899
+#: lib/psm.c:1708
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1908
+#: lib/psm.c:1717
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "ryhmässä %s ei ole paketteja\n"
-#: lib/psm.c:1956
+#: lib/psm.c:1765
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "%s:n avaus ei onnistunut: %s\n"
-#: lib/psm.c:1957
+#: lib/psm.c:1766
msgid " on file "
msgstr ""
-#: lib/psm.c:2154
+#: lib/psm.c:1949
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "en voinut avata %s: %s"
-#: lib/psm.c:2157
+#: lib/psm.c:1952
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "pgp epäonnistui"
@@ -2336,116 +2331,120 @@ msgid "net shared "
msgstr ""
#: lib/query.c:258
-msgid "(no state) "
+msgid "wrong color "
msgstr ""
#: lib/query.c:261
+msgid "(no state) "
+msgstr ""
+
+#: lib/query.c:264
#, fuzzy, c-format
msgid "(unknown %3d) "
msgstr "(tuntematon tyyppi)"
-#: lib/query.c:279
+#: lib/query.c:282
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "paketilla ei ole nimeä"
-#: lib/query.c:312
+#: lib/query.c:315
#, fuzzy
msgid "package has neither file owner or id lists\n"
msgstr "paketilla ei ole nimeä"
-#: lib/query.c:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "%s:n avaus ei onnistunut: %s\n"
-#: lib/query.c:455
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "%s:n kysely ei onnistunut\n"
-#: lib/query.c:465
+#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr "vanhan formaatin lähdekoodipaketteja ei voi kysellä\n"
-#: lib/query.c:498 lib/rpminstall.c:608
+#: lib/query.c:501 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:527
+#: lib/query.c:530
#, fuzzy
msgid "no packages\n"
msgstr "kysele kaikki paketit"
-#: lib/query.c:547
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "ryhmässä %s ei ole paketteja\n"
-#: lib/query.c:557
+#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr "mikään paketti ei laukaise %s:a\n"
-#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
+#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "En voi lukea %s: %s."
-#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
+#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "mikään paketti ei laukaise %s:a\n"
-#: lib/query.c:665
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "mikään pakettie ei tarvitse %s:a\n"
-#: lib/query.c:676
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "mikään paketti ei tarjoa %s:a\n"
-#: lib/query.c:710
+#: lib/query.c:713
#, fuzzy, c-format
msgid "file %s: %s\n"
msgstr "en voinut avata %s: %s"
-#: lib/query.c:714
+#: lib/query.c:717
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "tiedostoa %s ei omista mikään paketti\n"
-#: lib/query.c:741
+#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr "virheellinen paketin numero: %s\n"
-#: lib/query.c:744
+#: lib/query.c:747
#, fuzzy, c-format
msgid "package record number: %u\n"
msgstr "virheellinen paketin numero: %s\n"
-#: lib/query.c:749
+#: lib/query.c:752
#, fuzzy, c-format
msgid "record %u could not be read\n"
msgstr "tietuetta %d ei voitu lukea\n"
-#: lib/query.c:760 lib/rpminstall.c:779
+#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "paketti %s ei ole asennettu\n"
-#: lib/rpmal.c:695
+#: lib/rpmal.c:692
#, fuzzy
msgid "(added files)"
msgstr "en voinut avata %s: %s"
-#: lib/rpmal.c:774
+#: lib/rpmal.c:770
msgid "(added provide)"
msgstr ""
@@ -2570,36 +2569,31 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr "paketti %s ei ole %s:ssä"
-#: lib/rpmfi.c:657
+#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr ""
-#: lib/rpmfi.c:661
+#: lib/rpmfi.c:662
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "Haen: %s\n"
-#: lib/rpmfi.c:664
+#: lib/rpmfi.c:665
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "en voinut avata tiedostoa %s: "
-#: lib/rpmfi.c:734
-#, fuzzy, c-format
-msgid "excluding multilib path %s%s\n"
-msgstr "Haen: %s\n"
-
-#: lib/rpmfi.c:800
+#: lib/rpmfi.c:788
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "Haen: %s\n"
-#: lib/rpmfi.c:810
+#: lib/rpmfi.c:798
#, fuzzy, c-format
msgid "relocating %s to %s\n"
msgstr "virhe luotaessa hakemistoa %s: %s"
-#: lib/rpmfi.c:889
+#: lib/rpmfi.c:877
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "virhe luotaessa hakemistoa %s: %s"
@@ -3122,7 +3116,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:925
+#: lib/transaction.c:935
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "virhe luotaessa hakemistoa %s: %s"
@@ -3135,7 +3129,7 @@ msgstr "virhe luotaessa hakemistoa %s: %s"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1034
+#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3148,7 +3142,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1117
+#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3156,16 +3150,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1194
+#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:286
+#: lib/verify.c:287
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "puuttuva '{' '%':n jälkeen"
-#: lib/verify.c:395
+#: lib/verify.c:396
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "%s-%s-%s:n tyydyttämättömät riippuvuudet:"
@@ -3333,6 +3327,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
+#: rpmdb/header_internal.c:164
+#, c-format
+msgid "Data type %d not supported\n"
+msgstr ""
+
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr ""
@@ -3893,6 +3892,10 @@ msgid "DIRECTORY"
msgstr ""
#, fuzzy
+#~ msgid "excluding multilib path %s%s\n"
+#~ msgstr "Haen: %s\n"
+
+#, fuzzy
#~ msgid "Finding %s: %s\n"
#~ msgstr "en voinut avata %s: %s"
diff --git a/po/fr.po b/po/fr.po
index 5f1f902a3..1e2711f15 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-12-30 09:42-0500\n"
+"POT-Creation-Date: 2003-01-01 15:20-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:1841
+#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
+#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@@ -1411,68 +1411,68 @@ msgstr "La construction a chou.\n"
msgid "package %s was already added, replacing with %s\n"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/depends.c:395
+#: lib/depends.c:362
msgid "(cached)"
msgstr ""
-#: lib/depends.c:422
+#: lib/depends.c:389
msgid "(rpmrc provides)"
msgstr ""
-#: lib/depends.c:439
+#: lib/depends.c:406
msgid "(rpmlib provides)"
msgstr ""
-#: lib/depends.c:468
+#: lib/depends.c:435
#, fuzzy
msgid "(db files)"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/depends.c:481
+#: lib/depends.c:448
msgid "(db provides)"
msgstr ""
-#: lib/depends.c:494
+#: lib/depends.c:461
#, fuzzy
msgid "(db package)"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/depends.c:852
+#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:974
+#: lib/depends.c:937
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "impossible d'ouvrir: %s\n"
#. Record all relations.
-#: lib/depends.c:1208
+#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1309
+#: lib/depends.c:1267
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1393
+#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1463
+#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1498
+#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1503
+#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1533,37 +1533,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/fsm.c:1245
+#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
-#: lib/fsm.c:1543
+#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1672 lib/fsm.c:1808
+#: lib/fsm.c:1675 lib/fsm.c:1811
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/fsm.c:1834
+#: lib/fsm.c:1837
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/fsm.c:1840
+#: lib/fsm.c:1843
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "La construction a chou.\n"
-#: lib/fsm.c:1850
+#: lib/fsm.c:1853
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "La construction a chou.\n"
-#: lib/fsm.c:1870
+#: lib/fsm.c:1873
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "impossible d'ouvrir: %s\n"
@@ -2260,91 +2260,86 @@ msgstr "aucun package n'a t spcifi pour la dsinstallation"
msgid "generate signature"
msgstr " --sign - genre une signature PGP"
-#: lib/psm.c:254 rpmdb/header_internal.c:164
-#, c-format
-msgid "Data type %d not supported\n"
-msgstr ""
-
-#: lib/psm.c:465
+#: lib/psm.c:278
msgid "source package expected, binary found\n"
msgstr ""
-#: lib/psm.c:582
+#: lib/psm.c:395
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr ""
" -f <file>+ - interroge le package qui appartient <file>"
-#: lib/psm.c:918
+#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:1001
+#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:1009
+#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:1172
+#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1195
+#: lib/psm.c:1008
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr ""
-#: lib/psm.c:1201
+#: lib/psm.c:1014
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
-#: lib/psm.c:1608
+#: lib/psm.c:1420
#, 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:1744
+#: lib/psm.c:1553
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1853
+#: lib/psm.c:1662
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/psm.c:1899
+#: lib/psm.c:1708
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1908
+#: lib/psm.c:1717
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1956
+#: lib/psm.c:1765
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "La construction a chou.\n"
-#: lib/psm.c:1957
+#: lib/psm.c:1766
msgid " on file "
msgstr ""
-#: lib/psm.c:2154
+#: lib/psm.c:1949
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/psm.c:2157
+#: lib/psm.c:1952
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "La construction a chou.\n"
@@ -2377,116 +2372,120 @@ msgid "net shared "
msgstr ""
#: lib/query.c:258
-msgid "(no state) "
+msgid "wrong color "
msgstr ""
#: lib/query.c:261
+msgid "(no state) "
+msgstr ""
+
+#: lib/query.c:264
#, c-format
msgid "(unknown %3d) "
msgstr ""
-#: lib/query.c:279
+#: lib/query.c:282
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/query.c:312
+#: lib/query.c:315
#, fuzzy
msgid "package has neither file owner or id lists\n"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/query.c:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "La construction a chou.\n"
-#: lib/query.c:455
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr ""
-#: lib/query.c:465
+#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:498 lib/rpminstall.c:608
+#: lib/query.c:501 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:527
+#: lib/query.c:530
#, fuzzy
msgid "no packages\n"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/query.c:547
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
-#: lib/query.c:557
+#: lib/query.c:560
#, fuzzy, c-format
msgid "no package triggers %s\n"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
+#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
+#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/query.c:665
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr ""
-#: lib/query.c:676
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr ""
-#: lib/query.c:710
+#: lib/query.c:713
#, c-format
msgid "file %s: %s\n"
msgstr ""
-#: lib/query.c:714
+#: lib/query.c:717
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
-#: lib/query.c:741
+#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
-#: lib/query.c:744
+#: lib/query.c:747
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:749
+#: lib/query.c:752
#, c-format
msgid "record %u could not be read\n"
msgstr ""
-#: lib/query.c:760 lib/rpminstall.c:779
+#: lib/query.c:763 lib/rpminstall.c:779
#, fuzzy, c-format
msgid "package %s is not installed\n"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/rpmal.c:695
+#: lib/rpmal.c:692
#, fuzzy
msgid "(added files)"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmal.c:774
+#: lib/rpmal.c:770
msgid "(added provide)"
msgstr ""
@@ -2610,36 +2609,31 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: lib/rpmfi.c:657
+#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr ""
-#: lib/rpmfi.c:661
+#: lib/rpmfi.c:662
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmfi.c:664
+#: lib/rpmfi.c:665
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmfi.c:734
-#, c-format
-msgid "excluding multilib path %s%s\n"
-msgstr ""
-
-#: lib/rpmfi.c:800
+#: lib/rpmfi.c:788
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmfi.c:810
+#: lib/rpmfi.c:798
#, fuzzy, c-format
msgid "relocating %s to %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmfi.c:889
+#: lib/rpmfi.c:877
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "impossible d'ouvrir: %s\n"
@@ -3160,7 +3154,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:925
+#: lib/transaction.c:935
#, c-format
msgid "excluding directory %s\n"
msgstr ""
@@ -3173,7 +3167,7 @@ msgstr ""
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1034
+#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3186,7 +3180,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1117
+#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3194,16 +3188,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1194
+#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:286
+#: lib/verify.c:287
#, c-format
msgid "missing %c %s"
msgstr ""
-#: lib/verify.c:395
+#: lib/verify.c:396
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "impossible d'ouvrir: %s\n"
@@ -3371,6 +3365,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
+#: rpmdb/header_internal.c:164
+#, c-format
+msgid "Data type %d not supported\n"
+msgstr ""
+
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr ""
diff --git a/po/gl.po b/po/gl.po
index e7b79c6d8..1e73b1a10 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2002-12-30 09:42-0500\n"
+"POT-Creation-Date: 2003-01-01 15:20-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:1841
+#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
+#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@@ -1325,66 +1325,66 @@ msgstr ""
msgid "package %s was already added, replacing with %s\n"
msgstr ""
-#: lib/depends.c:395
+#: lib/depends.c:362
msgid "(cached)"
msgstr ""
-#: lib/depends.c:422
+#: lib/depends.c:389
msgid "(rpmrc provides)"
msgstr ""
-#: lib/depends.c:439
+#: lib/depends.c:406
msgid "(rpmlib provides)"
msgstr ""
-#: lib/depends.c:468
+#: lib/depends.c:435
msgid "(db files)"
msgstr ""
-#: lib/depends.c:481
+#: lib/depends.c:448
msgid "(db provides)"
msgstr ""
-#: lib/depends.c:494
+#: lib/depends.c:461
msgid "(db package)"
msgstr ""
-#: lib/depends.c:852
+#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:974
+#: lib/depends.c:937
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
-#: lib/depends.c:1208
+#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1309
+#: lib/depends.c:1267
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1393
+#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1463
+#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1498
+#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1503
+#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1444,37 +1444,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr ""
-#: lib/fsm.c:1245
+#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
-#: lib/fsm.c:1543
+#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1672 lib/fsm.c:1808
+#: lib/fsm.c:1675 lib/fsm.c:1811
#, c-format
msgid "%s saved as %s\n"
msgstr ""
-#: lib/fsm.c:1834
+#: lib/fsm.c:1837
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr ""
-#: lib/fsm.c:1840
+#: lib/fsm.c:1843
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr ""
-#: lib/fsm.c:1850
+#: lib/fsm.c:1853
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr ""
-#: lib/fsm.c:1870
+#: lib/fsm.c:1873
#, c-format
msgid "%s created as %s\n"
msgstr ""
@@ -2091,88 +2091,83 @@ msgstr ""
msgid "generate signature"
msgstr ""
-#: lib/psm.c:254 rpmdb/header_internal.c:164
-#, c-format
-msgid "Data type %d not supported\n"
-msgstr ""
-
-#: lib/psm.c:465
+#: lib/psm.c:278
msgid "source package expected, binary found\n"
msgstr ""
-#: lib/psm.c:582
+#: lib/psm.c:395
msgid "source package contains no .spec file\n"
msgstr ""
-#: lib/psm.c:918
+#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:1001
+#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:1009
+#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:1172
+#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1195
+#: lib/psm.c:1008
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr ""
-#: lib/psm.c:1201
+#: lib/psm.c:1014
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
-#: lib/psm.c:1608
+#: lib/psm.c:1420
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
-#: lib/psm.c:1744
+#: lib/psm.c:1553
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1853
+#: lib/psm.c:1662
msgid "Unable to reload signature header\n"
msgstr ""
-#: lib/psm.c:1899
+#: lib/psm.c:1708
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1908
+#: lib/psm.c:1717
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1956
+#: lib/psm.c:1765
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
-#: lib/psm.c:1957
+#: lib/psm.c:1766
msgid " on file "
msgstr ""
-#: lib/psm.c:2154
+#: lib/psm.c:1949
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
-#: lib/psm.c:2157
+#: lib/psm.c:1952
#, c-format
msgid "%s failed: %s\n"
msgstr ""
@@ -2204,112 +2199,116 @@ msgid "net shared "
msgstr ""
#: lib/query.c:258
-msgid "(no state) "
+msgid "wrong color "
msgstr ""
#: lib/query.c:261
+msgid "(no state) "
+msgstr ""
+
+#: lib/query.c:264
#, c-format
msgid "(unknown %3d) "
msgstr ""
-#: lib/query.c:279
+#: lib/query.c:282
msgid "package has not file owner/group lists\n"
msgstr ""
-#: lib/query.c:312
+#: lib/query.c:315
msgid "package has neither file owner or id lists\n"
msgstr ""
-#: lib/query.c:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
-#: lib/query.c:455
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr ""
-#: lib/query.c:465
+#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:498 lib/rpminstall.c:608
+#: lib/query.c:501 lib/rpminstall.c:608
#, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr ""
-#: lib/query.c:527
+#: lib/query.c:530
msgid "no packages\n"
msgstr ""
-#: lib/query.c:547
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
-#: lib/query.c:557
+#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr ""
-#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
+#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, c-format
msgid "malformed %s: %s\n"
msgstr ""
-#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
+#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, c-format
msgid "no package matches %s: %s\n"
msgstr ""
-#: lib/query.c:665
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr ""
-#: lib/query.c:676
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr ""
-#: lib/query.c:710
+#: lib/query.c:713
#, c-format
msgid "file %s: %s\n"
msgstr ""
-#: lib/query.c:714
+#: lib/query.c:717
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
-#: lib/query.c:741
+#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
-#: lib/query.c:744
+#: lib/query.c:747
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:749
+#: lib/query.c:752
#, c-format
msgid "record %u could not be read\n"
msgstr ""
-#: lib/query.c:760 lib/rpminstall.c:779
+#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr ""
-#: lib/rpmal.c:695
+#: lib/rpmal.c:692
msgid "(added files)"
msgstr ""
-#: lib/rpmal.c:774
+#: lib/rpmal.c:770
msgid "(added provide)"
msgstr ""
@@ -2432,36 +2431,31 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr ""
-#: lib/rpmfi.c:657
+#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr ""
-#: lib/rpmfi.c:661
+#: lib/rpmfi.c:662
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
-#: lib/rpmfi.c:664
+#: lib/rpmfi.c:665
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
-#: lib/rpmfi.c:734
-#, c-format
-msgid "excluding multilib path %s%s\n"
-msgstr ""
-
-#: lib/rpmfi.c:800
+#: lib/rpmfi.c:788
#, c-format
msgid "excluding %s %s\n"
msgstr ""
-#: lib/rpmfi.c:810
+#: lib/rpmfi.c:798
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/rpmfi.c:889
+#: lib/rpmfi.c:877
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
@@ -2971,7 +2965,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:925
+#: lib/transaction.c:935
#, c-format
msgid "excluding directory %s\n"
msgstr ""
@@ -2984,7 +2978,7 @@ msgstr ""
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1034
+#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -2997,7 +2991,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1117
+#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3005,16 +2999,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1194
+#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:286
+#: lib/verify.c:287
#, c-format
msgid "missing %c %s"
msgstr ""
-#: lib/verify.c:395
+#: lib/verify.c:396
#, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr ""
@@ -3180,6 +3174,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
+#: rpmdb/header_internal.c:164
+#, c-format
+msgid "Data type %d not supported\n"
+msgstr ""
+
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr ""
diff --git a/po/is.po b/po/is.po
index 6640ab1b9..4f719a430 100644
--- a/po/is.po
+++ b/po/is.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-12-30 09:42-0500\n"
+"POT-Creation-Date: 2003-01-01 15:20-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:1841
+#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
+#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrifađi: %s\n"
@@ -1336,67 +1336,67 @@ msgstr ""
msgid "package %s was already added, replacing with %s\n"
msgstr ""
-#: lib/depends.c:395
+#: lib/depends.c:362
msgid "(cached)"
msgstr ""
-#: lib/depends.c:422
+#: lib/depends.c:389
msgid "(rpmrc provides)"
msgstr ""
-#: lib/depends.c:439
+#: lib/depends.c:406
msgid "(rpmlib provides)"
msgstr ""
-#: lib/depends.c:468
+#: lib/depends.c:435
msgid "(db files)"
msgstr ""
-#: lib/depends.c:481
+#: lib/depends.c:448
msgid "(db provides)"
msgstr ""
-#: lib/depends.c:494
+#: lib/depends.c:461
#, fuzzy
msgid "(db package)"
msgstr "uppfćra pakka"
-#: lib/depends.c:852
+#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:974
+#: lib/depends.c:937
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
-#: lib/depends.c:1208
+#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1309
+#: lib/depends.c:1267
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1393
+#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1463
+#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1498
+#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1503
+#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1457,37 +1457,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr "%9d %s\n"
-#: lib/fsm.c:1245
+#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
-#: lib/fsm.c:1543
+#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1672 lib/fsm.c:1808
+#: lib/fsm.c:1675 lib/fsm.c:1811
#, c-format
msgid "%s saved as %s\n"
msgstr "%s vistađ sem %s\n"
-#: lib/fsm.c:1834
+#: lib/fsm.c:1837
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr ""
-#: lib/fsm.c:1840
+#: lib/fsm.c:1843
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s rmdir %s brást: %s\n"
-#: lib/fsm.c:1850
+#: lib/fsm.c:1853
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s gat ekki eytt %s: %s\n"
-#: lib/fsm.c:1870
+#: lib/fsm.c:1873
#, c-format
msgid "%s created as %s\n"
msgstr "%s búiđ til sem %s\n"
@@ -2118,89 +2118,84 @@ msgstr ""
msgid "generate signature"
msgstr "búa til undirskrift"
-#: lib/psm.c:254 rpmdb/header_internal.c:164
-#, c-format
-msgid "Data type %d not supported\n"
-msgstr ""
-
-#: lib/psm.c:465
+#: lib/psm.c:278
msgid "source package expected, binary found\n"
msgstr ""
-#: lib/psm.c:582
+#: lib/psm.c:395
msgid "source package contains no .spec file\n"
msgstr "pakkinn inniheldur enga .spec skrá\n"
-#: lib/psm.c:918
+#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:1001
+#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:1009
+#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:1172
+#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1195
+#: lib/psm.c:1008
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr ""
-#: lib/psm.c:1201
+#: lib/psm.c:1014
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
-#: lib/psm.c:1608
+#: lib/psm.c:1420
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
-#: lib/psm.c:1744
+#: lib/psm.c:1553
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1853
+#: lib/psm.c:1662
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Get ekki lesiđ haus úr %s: %s\n"
-#: lib/psm.c:1899
+#: lib/psm.c:1708
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1908
+#: lib/psm.c:1717
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1956
+#: lib/psm.c:1765
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
-#: lib/psm.c:1957
+#: lib/psm.c:1766
msgid " on file "
msgstr ""
-#: lib/psm.c:2154
+#: lib/psm.c:1949
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "gat ekki opnađ %s: %s\n"
-#: lib/psm.c:2157
+#: lib/psm.c:1952
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s brást\n"
@@ -2232,112 +2227,116 @@ msgid "net shared "
msgstr ""
#: lib/query.c:258
-msgid "(no state) "
+msgid "wrong color "
msgstr ""
#: lib/query.c:261
+msgid "(no state) "
+msgstr ""
+
+#: lib/query.c:264
#, c-format
msgid "(unknown %3d) "
msgstr ""
-#: lib/query.c:279
+#: lib/query.c:282
msgid "package has not file owner/group lists\n"
msgstr ""
-#: lib/query.c:312
+#: lib/query.c:315
msgid "package has neither file owner or id lists\n"
msgstr ""
-#: lib/query.c:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
-#: lib/query.c:455
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr ""
-#: lib/query.c:465
+#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:498 lib/rpminstall.c:608
+#: lib/query.c:501 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:527
+#: lib/query.c:530
msgid "no packages\n"
msgstr ""
-#: lib/query.c:547
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
-#: lib/query.c:557
+#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr ""
-#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
+#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "Get ekki lesiđ %s: %s.\n"
-#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
+#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "get ekki opnađ pakka gagnagrunn í\n"
-#: lib/query.c:665
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr ""
-#: lib/query.c:676
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr ""
-#: lib/query.c:710
+#: lib/query.c:713
#, c-format
msgid "file %s: %s\n"
msgstr ""
-#: lib/query.c:714
+#: lib/query.c:717
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
-#: lib/query.c:741
+#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
-#: lib/query.c:744
+#: lib/query.c:747
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:749
+#: lib/query.c:752
#, c-format
msgid "record %u could not be read\n"
msgstr ""
-#: lib/query.c:760 lib/rpminstall.c:779
+#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr ""
-#: lib/rpmal.c:695
+#: lib/rpmal.c:692
msgid "(added files)"
msgstr ""
-#: lib/rpmal.c:774
+#: lib/rpmal.c:770
msgid "(added provide)"
msgstr ""
@@ -2460,36 +2459,31 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr "get ekki opnađ pakka gagnagrunn í\n"
-#: lib/rpmfi.c:657
+#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr ""
-#: lib/rpmfi.c:661
+#: lib/rpmfi.c:662
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "%5d fćra %s -> %s\n"
-#: lib/rpmfi.c:664
+#: lib/rpmfi.c:665
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%5d fćra %s -> %s\n"
-#: lib/rpmfi.c:734
-#, c-format
-msgid "excluding multilib path %s%s\n"
-msgstr ""
-
-#: lib/rpmfi.c:800
+#: lib/rpmfi.c:788
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "lína %d: %s\n"
-#: lib/rpmfi.c:810
+#: lib/rpmfi.c:798
#, fuzzy, c-format
msgid "relocating %s to %s\n"
msgstr "%5d fćra %s -> %s\n"
-#: lib/rpmfi.c:889
+#: lib/rpmfi.c:877
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "%5d fćra %s -> %s\n"
@@ -3002,7 +2996,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:925
+#: lib/transaction.c:935
#, c-format
msgid "excluding directory %s\n"
msgstr ""
@@ -3015,7 +3009,7 @@ msgstr ""
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1034
+#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3028,7 +3022,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1117
+#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3036,16 +3030,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1194
+#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:286
+#: lib/verify.c:287
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "vantar %s"
-#: lib/verify.c:395
+#: lib/verify.c:396
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "Óuppfyllt pakkaskilyrđi fyrir %s-%s-%s: "
@@ -3211,6 +3205,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
+#: rpmdb/header_internal.c:164
+#, c-format
+msgid "Data type %d not supported\n"
+msgstr ""
+
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr ""
diff --git a/po/ja.po b/po/ja.po
index 8ec92635e..fd8c03e86 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-12-30 09:42-0500\n"
+"POT-Creation-Date: 2003-01-01 15:20-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:1841
+#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
+#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr "˝ń¤­šţ¤ßĂć: %s\n"
@@ -1405,71 +1405,71 @@ msgstr "źşÇÔ - "
msgid "package %s was already added, replacing with %s\n"
msgstr "ĽŃĽĂĽąĄźĽ¸ %s-%s-%s ¤Ď¤š¤Ç¤ËĽ¤ĽóĽšĽČĄźĽë¤ľ¤ě¤Ć¤¤¤Ţ¤š"
-#: lib/depends.c:395
+#: lib/depends.c:362
msgid "(cached)"
msgstr ""
-#: lib/depends.c:422
+#: lib/depends.c:389
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %s ¤Ď rpmrc ¤ŹÄ󜥤š¤ë¤ł¤Č¤Ë¤č¤Ă¤ĆËţ¤ľ¤ě¤Ţ¤šĄŁ\n"
-#: lib/depends.c:439
+#: lib/depends.c:406
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %s ¤Ď rpmrc ¤ŹÄ󜥤š¤ë¤ł¤Č¤Ë¤č¤Ă¤ĆËţ¤ľ¤ě¤Ţ¤šĄŁ\n"
-#: lib/depends.c:468
+#: lib/depends.c:435
#, fuzzy
msgid "(db files)"
msgstr "ÉÔŔľ¤ĘĽŐĽĄĽ¤Ľë¤ÎžőÂÖ: %s"
-#: lib/depends.c:481
+#: lib/depends.c:448
#, fuzzy
msgid "(db provides)"
msgstr "%s: %s ¤Ď db ¤ŹÄ󜥤š¤ë¤ł¤Č¤Ë¤č¤Ă¤ĆËţ¤ľ¤ě¤Ţ¤šĄŁ\n"
-#: lib/depends.c:494
+#: lib/depends.c:461
#, fuzzy
msgid "(db package)"
msgstr "%d ¸Ä¤ÎĽŃĽĂĽąĄźĽ¸¤ň¸Ť¤Ä¤ą¤Ţ¤ˇ¤ż\n"
-#: lib/depends.c:852
+#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:974
+#: lib/depends.c:937
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "group Ľ¤ĽóĽÇĽĂĽŻĽš¤ňşď˝ü¤ˇ¤Ţ¤š\n"
#. Record all relations.
-#: lib/depends.c:1208
+#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1309
+#: lib/depends.c:1267
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1393
+#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1463
+#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1498
+#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1503
+#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1532,37 +1532,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr "%d šÔĚÜ: %s"
-#: lib/fsm.c:1245
+#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
-#: lib/fsm.c:1543
+#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1672 lib/fsm.c:1808
+#: lib/fsm.c:1675 lib/fsm.c:1811
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "ˇŮšđ: %s ¤Ď %s ¤Č¤ˇ¤ĆĘݸ¤ľ¤ě¤Ţ¤š"
-#: lib/fsm.c:1834
+#: lib/fsm.c:1837
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s ¤ňşď˝ü¤Ç¤­¤Ţ¤ť¤ó - ĽÇĽŁĽěĽŻĽČĽę¤Źśő¤Ç¤˘¤ę¤Ţ¤ť¤ó"
-#: lib/fsm.c:1840
+#: lib/fsm.c:1843
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s ¤Î rmdir ¤ËźşÇÔ: %s"
-#: lib/fsm.c:1850
+#: lib/fsm.c:1853
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s ¤ÎĽŞĄźĽ×Ľó¤ËźşÇÔ: %s\n"
-#: lib/fsm.c:1870
+#: lib/fsm.c:1873
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "ˇŮšđ: %s ¤Ď %s ¤Č¤ˇ¤ĆşîŔŽ¤ľ¤ě¤Ţ¤š"
@@ -2255,92 +2255,87 @@ msgstr "ĽŃĽĂĽąĄźĽ¸¤Ë˝đĚž¤ˇ¤Ţ¤š(¸˝şß¤Î˝đĚž¤ĎźÎ¤Ć¤é¤ě¤Ţ¤š)"
msgid "generate signature"
msgstr "PGP/GPG ˝đĚž¤ňŔ¸ŔŽ¤ˇ¤Ţ¤š"
-#: lib/psm.c:254 rpmdb/header_internal.c:164
-#, c-format
-msgid "Data type %d not supported\n"
-msgstr "ĽÇĄźĽżĽżĽ¤Ľ× %d ¤ĎĽľĽÝĄźĽČ¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó\n"
-
-#: lib/psm.c:465
+#: lib/psm.c:278
#, fuzzy
msgid "source package expected, binary found\n"
msgstr "Ľ˝ĄźĽšĽŃĽĂĽąĄźĽ¸¤Ź´üÂÔ¤ľ¤ě¤Ţ¤šĄ˘ĽĐĽ¤ĽĘĽę¤Ď¸Ť¤Ä¤Ť¤ę¤Ţ¤ˇ¤ż"
-#: lib/psm.c:582
+#: lib/psm.c:395
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "Ľ˝ĄźĽšĽŃĽĂĽąĄźĽ¸¤Ď .spec ĽŐĽĄĽ¤Ľë¤ň´Ţ¤ó¤Ç¤¤¤Ţ¤ť¤ó"
-#: lib/psm.c:918
+#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:1001
+#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:1009
+#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:1172
+#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1195
+#: lib/psm.c:1008
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "%s ¤ňĽšĽ­ĽĂĽ×¤ˇ¤Ţ¤š - ĹžÁ÷źşÇÔ - %s\n"
-#: lib/psm.c:1201
+#: lib/psm.c:1014
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "ĽšĽŻĽęĽ×ĽČ¤ÎźÂšÔ¤ËźşÇÔ"
-#: lib/psm.c:1608
+#: lib/psm.c:1420
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "ĽŃĽĂĽąĄźĽ¸: %s-%s-%s ĽŐĽĄĽ¤ĽëĽĆĽšĽČ = %d\n"
-#: lib/psm.c:1744
+#: lib/psm.c:1553
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1853
+#: lib/psm.c:1662
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Ľ˘Ľ¤ĽłĽó¤ňĆɤळ¤Č¤Ź¤Ç¤­¤Ţ¤ť¤ó: %s"
-#: lib/psm.c:1899
+#: lib/psm.c:1708
#, fuzzy, c-format
msgid "user %s does not exist - using root\n"
msgstr "ĽćĄźĽś %s ¤Ď¸şß¤ˇ¤Ţ¤ť¤ó - root ¤ňťČÍѤˇ¤Ţ¤š"
-#: lib/psm.c:1908
+#: lib/psm.c:1717
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "Ľ°ĽëĄźĽ× %s ¤Ď¸şß¤ˇ¤Ţ¤ť¤ó - root ¤ňťČÍѤˇ¤Ţ¤š"
-#: lib/psm.c:1956
+#: lib/psm.c:1765
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "ĽŐĽĄĽ¤Ľë %s ¤ÎĽ˘ĄźĽŤĽ¤ĽÖ¤Îż­Äš¤ËźşÇÔ %s%s: %s"
-#: lib/psm.c:1957
+#: lib/psm.c:1766
#, fuzzy
msgid " on file "
msgstr "ĽŐĽĄĽ¤Ľëžĺ"
-#: lib/psm.c:2154
+#: lib/psm.c:1949
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s ¤ÎĽŞĄźĽ×Ľó¤ËźşÇÔ: %s"
-#: lib/psm.c:2157
+#: lib/psm.c:1952
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s źşÇÔ"
@@ -2372,116 +2367,120 @@ msgid "net shared "
msgstr "ĽÍĽĂĽČśŚÍ­"
#: lib/query.c:258
+msgid "wrong color "
+msgstr ""
+
+#: lib/query.c:261
msgid "(no state) "
msgstr "(˛ż¤ÎžőÂ֤⤢¤ę¤Ţ¤ť¤ó)"
-#: lib/query.c:261
+#: lib/query.c:264
#, c-format
msgid "(unknown %3d) "
msgstr "(̤ĂΤΠ%3d)"
-#: lib/query.c:279
+#: lib/query.c:282
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "ĽŃĽĂĽąĄźĽ¸¤ĎĽŐĽĄĽ¤Ľë˝ęÍ­źÔ¤ä id ĽęĽšĽČ¤ň¤É¤Á¤é¤âťý¤Ă¤Ć¤¤¤Ţ¤ť¤ó"
-#: lib/query.c:312
+#: lib/query.c:315
#, fuzzy
msgid "package has neither file owner or id lists\n"
msgstr "ĽŃĽĂĽąĄźĽ¸¤ĎĽŐĽĄĽ¤Ľë˝ęÍ­źÔ¤ä id ĽęĽšĽČ¤ň¤É¤Á¤é¤âťý¤Ă¤Ć¤¤¤Ţ¤ť¤ó"
-#: lib/query.c:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "%s ¤ÎĽŞĄźĽ×Ľó¤ËźşÇÔ: %s\n"
-#: lib/query.c:455
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "%s ¤Ř¤ÎĚ䤤šç¤ď¤ť¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤ż\n"
-#: lib/query.c:465
+#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr "ľěˇÁź°¤ÎĽ˝ĄźĽšĽŃĽĂĽąĄźĽ¸¤ňĚ䤤šç¤ď¤ť¤ë¤ł¤Č¤Ď¤Ç¤­¤Ţ¤ť¤ó\n"
-#: lib/query.c:498 lib/rpminstall.c:608
+#: lib/query.c:501 lib/rpminstall.c:608
#, fuzzy, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr "%s ¤ňĽČĽęĽŹĄź¤š¤ëĽŃĽĂĽąĄźĽ¸¤Ď¸şß¤ˇ¤Ţ¤ť¤ó\n"
-#: lib/query.c:527
+#: lib/query.c:530
#, fuzzy
msgid "no packages\n"
msgstr "%d ¸Ä¤ÎĽŃĽĂĽąĄźĽ¸¤ň¸Ť¤Ä¤ą¤Ţ¤ˇ¤ż\n"
-#: lib/query.c:547
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "Ľ°ĽëĄźĽ× %s ¤Ë°¤š¤ëĽŃĽĂĽąĄźĽ¸¤Ď¸şß¤ˇ¤Ţ¤ť¤ó\n"
-#: lib/query.c:557
+#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr "%s ¤ňĽČĽęĽŹĄź¤š¤ëĽŃĽĂĽąĄźĽ¸¤Ď¸şß¤ˇ¤Ţ¤ť¤ó\n"
-#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
+#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "%s ¤ňĆɤŕ¤Î¤ËźşÇÔ: $sĄŁ"
-#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
+#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "%s ¤ňĽČĽęĽŹĄź¤š¤ëĽŃĽĂĽąĄźĽ¸¤Ď¸şß¤ˇ¤Ţ¤ť¤ó\n"
-#: lib/query.c:665
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "%s ¤ňÉŹÍפȤš¤ëĽŃĽĂĽąĄźĽ¸¤Ď¸şß¤ˇ¤Ţ¤ť¤ó\n"
-#: lib/query.c:676
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "%s ¤ňÄ󜥤š¤ëĽŃĽĂĽąĄźĽ¸¤Ď¸şß¤ˇ¤Ţ¤ť¤ó\n"
-#: lib/query.c:710
+#: lib/query.c:713
#, c-format
msgid "file %s: %s\n"
msgstr "ĽŐĽĄĽ¤Ľë %s: %s\n"
-#: lib/query.c:714
+#: lib/query.c:717
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "ĽŐĽĄĽ¤Ľë %s ¤Ď¤É¤ÎĽŃĽĂĽąĄźĽ¸¤Ë¤â°¤ˇ¤Ć¤¤¤Ţ¤ť¤ó\n"
-#: lib/query.c:741
+#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr "Ěľ¸ú¤ĘĽŃĽĂĽąĄźĽ¸ČÖšć: %s\n"
-#: lib/query.c:744
+#: lib/query.c:747
#, fuzzy, c-format
msgid "package record number: %u\n"
msgstr "ĽŃĽĂĽąĄźĽ¸ĽěĽłĄźĽÉČÖšć %d\n"
-#: lib/query.c:749
+#: lib/query.c:752
#, fuzzy, c-format
msgid "record %u could not be read\n"
msgstr "ĽěĽłĄźĽÉ %d ¤ňĆɤळ¤Č¤Ź¤Ç¤­¤Ţ¤ť¤ó¤Ç¤ˇ¤ż\n"
-#: lib/query.c:760 lib/rpminstall.c:779
+#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "ĽŃĽĂĽąĄźĽ¸ %s ¤ĎĽ¤ĽóĽšĽČĄźĽë¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó\n"
-#: lib/rpmal.c:695
+#: lib/rpmal.c:692
#, fuzzy
msgid "(added files)"
msgstr "ÉÔŔľ¤ĘĽŐĽĄĽ¤Ľë¤ÎžőÂÖ: %s"
-#: lib/rpmal.c:774
+#: lib/rpmal.c:770
#, fuzzy
msgid "(added provide)"
msgstr "%s: %s ¤Ď provide ¤Ë˛Ă¤¨¤ë¤ł¤Č¤Ë¤č¤Ă¤ĆËţ¤ľ¤ě¤Ţ¤šĄŁ\n"
@@ -2609,36 +2608,31 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr "ĽŃĽĂĽąĄźĽ¸ %s ¤Ď require ¤ŹËţ¤ż¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó: %s\n"
-#: lib/rpmfi.c:657
+#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr ""
-#: lib/rpmfi.c:661
+#: lib/rpmfi.c:662
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "OS ¤Ď˝üł°¤ľ¤ě¤Ć¤¤¤Ţ¤š: %s"
-#: lib/rpmfi.c:664
+#: lib/rpmfi.c:665
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%s ¤ň %s ¤ËşĆÇŰĂÖ¤ˇ¤Ć¤¤¤Ţ¤š\n"
-#: lib/rpmfi.c:734
-#, fuzzy, c-format
-msgid "excluding multilib path %s%s\n"
-msgstr "ĽŐĽĄĽ¤Ľë¤Î˝üł°: %s%s\n"
-
-#: lib/rpmfi.c:800
+#: lib/rpmfi.c:788
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "ĽŐĽĄĽ¤Ľë¤Î˝üł°: %s%s\n"
-#: lib/rpmfi.c:810
+#: lib/rpmfi.c:798
#, c-format
msgid "relocating %s to %s\n"
msgstr "%s ¤ň %s ¤ËşĆÇŰĂÖ¤ˇ¤Ć¤¤¤Ţ¤š\n"
-#: lib/rpmfi.c:889
+#: lib/rpmfi.c:877
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "ĽÇĽŁĽěĽŻĽČĽę %s ¤ň %s ¤ËşĆÇŰĂÖ¤ˇ¤Ć¤¤¤Ţ¤š\n"
@@ -3171,7 +3165,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr "%s ¤Ď missingok ĽŐĽéĽ°¤Î¤ż¤áĽšĽ­ĽĂĽ×¤ˇ¤Ţ¤š\n"
#. @innercontinue@
-#: lib/transaction.c:925
+#: lib/transaction.c:935
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "ĽÇĽŁĽěĽŻĽČĽę¤Î˝üł°: %s\n"
@@ -3184,7 +3178,7 @@ msgstr "ĽÇĽŁĽěĽŻĽČĽę¤Î˝üł°: %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1034
+#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3197,7 +3191,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1117
+#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3205,16 +3199,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1194
+#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:286
+#: lib/verify.c:287
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "%s ¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤ó\n"
-#: lib/verify.c:395
+#: lib/verify.c:396
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "%s-%s-%s ¤Î¤ż¤á¤Î°Í¸Ŕ­¤ňËţ¤ż¤ˇ¤Ć¤¤¤Ţ¤ť¤ó:"
@@ -3380,6 +3374,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
+#: rpmdb/header_internal.c:164
+#, c-format
+msgid "Data type %d not supported\n"
+msgstr "ĽÇĄźĽżĽżĽ¤Ľ× %d ¤ĎĽľĽÝĄźĽČ¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó\n"
+
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr ""
@@ -3943,6 +3942,10 @@ msgid "DIRECTORY"
msgstr ""
#, fuzzy
+#~ msgid "excluding multilib path %s%s\n"
+#~ msgstr "ĽŐĽĄĽ¤Ľë¤Î˝üł°: %s%s\n"
+
+#, fuzzy
#~ msgid "Finding %s: %s\n"
#~ msgstr "%s ¤ňĂľ¤ˇ¤Ć¤¤¤Ţ¤š: (%s ¤ňťČÍѤˇ¤Ć¤¤¤Ţ¤š)...\n"
diff --git a/po/ko.po b/po/ko.po
index 2cc429ede..fd2c6fa9d 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.4\n"
-"POT-Creation-Date: 2002-12-30 09:42-0500\n"
+"POT-Creation-Date: 2003-01-01 15:20-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:1841
+#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
+#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr "ŔŰźş: %s\n"
@@ -1346,52 +1346,52 @@ msgstr " ˝ÇĆĐÇÔ - "
msgid "package %s was already added, replacing with %s\n"
msgstr "%s ĆĐĹ°Áö´Â ŔĚšĚ źłÄĄľÇžî ŔÖ˝Ŕ´Ď´Ů"
-#: lib/depends.c:395
+#: lib/depends.c:362
msgid "(cached)"
msgstr ""
-#: lib/depends.c:422
+#: lib/depends.c:389
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %-45s żš (rpmrcŔĚ ÁŚ°řÇÔ)\n"
-#: lib/depends.c:439
+#: lib/depends.c:406
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %-45s żš (rpmlibŔĚ ÁŚ°řÇÔ)\n"
-#: lib/depends.c:468
+#: lib/depends.c:435
#, fuzzy
msgid "(db files)"
msgstr "Ŕ߸řľČ db ĆÄŔĎ %s\n"
-#: lib/depends.c:481
+#: lib/depends.c:448
#, fuzzy
msgid "(db provides)"
msgstr "%s: %-45s żš (db°Ą ÁŚ°řÇÔ)\n"
-#: lib/depends.c:494
+#: lib/depends.c:461
#, fuzzy
msgid "(db package)"
msgstr "ĆĐĹ°Áö°Ą žř˝Ŕ´Ď´Ů\n"
-#: lib/depends.c:852
+#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr "´ŮŔ˝°ú °üˇĂľČ ĆĐĹ°Áö Ŕ̸§Ŕť šŤ˝ĂÇŐ´Ď´Ů [%d]\t%s -> %s\n"
-#: lib/depends.c:974
+#: lib/depends.c:937
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "tsort °ü°čżĄź­ %s-%s-%s \"%s\"(Ŕť)¸Ś ťčÁŚÇŐ´Ď´Ů.\n"
#. Record all relations.
-#: lib/depends.c:1208
+#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr "========== tsort °ü°č¸Ś ąâˇĎ(record)ÇŐ´Ď´Ů\n"
#. T4. Scan for zeroes.
-#: lib/depends.c:1309
+#: lib/depends.c:1267
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
@@ -1399,20 +1399,20 @@ msgstr ""
"========== ĆĐĹ°Áö¸Ś tsort ÇŐ´Ď´Ů (źřź­, #źąŔÓŔÚ, #ČÄŔÓŔÚ, ĆŽ¸Ž, ąíŔĚ"
"[depth])\n"
-#: lib/depends.c:1393
+#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr "========== ČÄŔÓŔÚ¸¸ [successors only] (ÇĽÇö źř)\n"
-#: lib/depends.c:1463
+#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr "ˇçÇÁ(LOOP):\n"
-#: lib/depends.c:1498
+#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr "========== tsort¸Ś ÁřÇŕÇŐ´Ď´Ů...\n"
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1503
+#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1474,37 +1474,37 @@ msgstr "========= ĆĐĹ°ÁöżĄ ľđˇşĹ与°Ą Ć÷ÇԾǞî ŔÖÁö žĘŔ˝:\n"
msgid "%10d %s\n"
msgstr "%9d %s\n"
-#: lib/fsm.c:1245
+#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr "%2$04oŔÇ Çă°ĄąÇ(perms)Ŕť °ĄÁř %1$s ľđˇşĹ与°Ą ťýźşľÇžú˝Ŕ´Ď´Ů.\n"
-#: lib/fsm.c:1543
+#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr "Çě´ő ĆÄŔĎ ¸ńˇĎżĄź­ žĆÄŤŔĚşę ĆÄŔĎ %s(Ŕť)¸Ś ĂŁŔť źö žř˝Ŕ´Ď´Ů\n"
-#: lib/fsm.c:1672 lib/fsm.c:1808
+#: lib/fsm.c:1675 lib/fsm.c:1811
#, c-format
msgid "%s saved as %s\n"
msgstr "%s(ŔĚ)°Ą %s(Ŕ¸)ˇÎ ŔúŔĺľÇžú˝Ŕ´Ď´Ů\n"
-#: lib/fsm.c:1834
+#: lib/fsm.c:1837
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s %s ľđˇşĹ与 ťčÁŚżĄ ˝ÇĆĐÇÔ: şó ľđˇşĹ与°Ą žĆ´Ő´Ď´Ů\n"
-#: lib/fsm.c:1840
+#: lib/fsm.c:1843
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s %s ľđˇşĹ与 ťčÁŚżĄ ˝ÇĆĐÇÔ: %s\n"
-#: lib/fsm.c:1850
+#: lib/fsm.c:1853
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s %s ¸ľĹŠ ÇŘÁŚżĄ ˝ÇĆĐÇÔ: %s\n"
-#: lib/fsm.c:1870
+#: lib/fsm.c:1873
#, c-format
msgid "%s created as %s\n"
msgstr "%s(ŔĚ)°Ą %s(Ŕ¸)ˇÎ ťýźşľÇžú˝Ŕ´Ď´Ů\n"
@@ -2151,93 +2151,88 @@ msgstr "ĆĐĹ°ÁöżĄ ź­¸íÇŐ´Ď´Ů (ąâÁ¸ŔÇ ź­¸íŔş ťčÁŚľË´Ď´Ů)"
msgid "generate signature"
msgstr "ź­¸íŔť ŔŰźşÇŐ´Ď´Ů"
-#: lib/psm.c:254 rpmdb/header_internal.c:164
-#, c-format
-msgid "Data type %d not supported\n"
-msgstr "%d ľĽŔĚĹÍ ŔŻÇüŔş ťçżëÇŇ źö žř˝Ŕ´Ď´Ů\n"
-
-#: lib/psm.c:465
+#: lib/psm.c:278
msgid "source package expected, binary found\n"
msgstr "źŇ˝ş ĆĐĹ°Áö°Ą ÇĘżäÇϸç, šŮŔ̳ʸŽ°Ą °ËťöľÇžú˝Ŕ´Ď´Ů\n"
-#: lib/psm.c:582
+#: lib/psm.c:395
msgid "source package contains no .spec file\n"
msgstr "źŇ˝ş ĆĐĹ°ÁöżĄ .spec ĆÄŔĎŔĚ Ć÷ÇԾǞî ŔÖÁö žĘ˝Ŕ´Ď´Ů\n"
-#: lib/psm.c:918
+#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:1001
+#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:1009
+#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:1172
+#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1195
+#: lib/psm.c:1008
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr ""
"%s: %s ˝şĹŠ¸łĆ˛¸´(scriptlet)ŔĚ ˝ÇĆĐÇß˝Ŕ´Ď´Ů (%d), %s-%s-%s(Ŕť)¸Ś ťýˇŤÇŐ´Ď´Ů\n"
-#: lib/psm.c:1201
+#: lib/psm.c:1014
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
"%2$s-%3$s-%4$sŔÇ %1$s ˝şĹŠ¸łĆ˛¸´(scriptlet) ˝ÇÇ࿥ ˝ÇĆĐÇß˝Ŕ´Ď´Ů, Ážˇá ťóȲ %5"
"$d\n"
-#: lib/psm.c:1608
+#: lib/psm.c:1420
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s-%s-%sżĄ %dŔÇ ĆÄŔĎŔĚ ŔÖ˝Ŕ´Ď´Ů, Ĺ×˝şĆŽ = %d\n"
-#: lib/psm.c:1744
+#: lib/psm.c:1553
#, fuzzy, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
"%s: %s ˝şĹŠ¸łĆ˛¸´(scriptlet)ŔĚ ˝ÇĆĐÇß˝Ŕ´Ď´Ů (%d), %s-%s-%s(Ŕť)¸Ś ťýˇŤÇŐ´Ď´Ů\n"
-#: lib/psm.c:1853
+#: lib/psm.c:1662
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "ź­¸í(signature) Çě´ő¸Ś ´Ů˝Ă ŔĐžîżĂ źö žř˝Ŕ´Ď´Ů.\n"
-#: lib/psm.c:1899
+#: lib/psm.c:1708
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "%s ťçżëŔÚ°Ą Á¸ŔçÇĎÁö žĘ˝Ŕ´Ď´Ů - root¸Ś ŔĚżëÇŐ´Ď´Ů\n"
-#: lib/psm.c:1908
+#: lib/psm.c:1717
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "%s ą×ˇěŔĚ Á¸ŔçÇĎÁö žĘ˝Ŕ´Ď´Ů - root¸Ś ŔĚżëÇŐ´Ď´Ů\n"
-#: lib/psm.c:1956
+#: lib/psm.c:1765
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "žĆÄŤŔ̺긌 ÇŞ´ÂľĽ ˝ÇĆĐÇÔ%s%s: %s\n"
-#: lib/psm.c:1957
+#: lib/psm.c:1766
msgid " on file "
msgstr " ´ŮŔ˝ ĆÄŔĎŔÇ "
-#: lib/psm.c:2154
+#: lib/psm.c:1949
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%2$s ĆÄŔĎŔÇ %1$s(ŔĚ)°Ą ˝ÇĆĐÇÔ: %3$s\n"
-#: lib/psm.c:2157
+#: lib/psm.c:1952
#, c-format
msgid "%s failed: %s\n"
msgstr "%s(ŔĚ)°Ą ˝ÇĆĐÇÔ: %s\n"
@@ -2269,114 +2264,118 @@ msgid "net shared "
msgstr "net °řŔŻľĘ "
#: lib/query.c:258
+msgid "wrong color "
+msgstr ""
+
+#: lib/query.c:261
msgid "(no state) "
msgstr "(ťóŸŚ žË źö žřŔ˝) "
-#: lib/query.c:261
+#: lib/query.c:264
#, c-format
msgid "(unknown %3d) "
msgstr "(žË źö žř´Â %3d) "
-#: lib/query.c:279
+#: lib/query.c:282
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "ĆĐĹ°ÁöżĄ ĆÄŔĎ źŇŔŻŔÚ śÇ´Â id ¸ńˇĎŔĚ žř˝Ŕ´Ď´Ů\n"
-#: lib/query.c:312
+#: lib/query.c:315
msgid "package has neither file owner or id lists\n"
msgstr "ĆĐĹ°ÁöżĄ ĆÄŔĎ źŇŔŻŔÚ śÇ´Â id ¸ńˇĎŔĚ žř˝Ŕ´Ď´Ů\n"
-#: lib/query.c:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "%s(Ŕť)¸Ś żŠ´ÂľĽ ˝ÇĆĐÇÔ: %s\n"
-#: lib/query.c:455
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "%s(Ŕť)¸Ś ÁúŔÇÇĎ´ÂľĽ ˝ÇĆĐÇß˝Ŕ´Ď´Ů\n"
-#: lib/query.c:465
+#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr "ŔĚŔü Çü˝ÄŔÇ źŇ˝ş ĆĐĹ°Áö´Â ÁúŔÇÇŇ źö žř˝Ŕ´Ď´Ů\n"
-#: lib/query.c:498 lib/rpminstall.c:608
+#: lib/query.c:501 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:527
+#: lib/query.c:530
msgid "no packages\n"
msgstr "ĆĐĹ°Áö°Ą žř˝Ŕ´Ď´Ů\n"
-#: lib/query.c:547
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "%s ą×ˇěŔş žîś˛ ĆĐĹ°ÁöżĄľľ Ć÷ÇԾǞî ŔÖÁö žĘ˝Ŕ´Ď´Ů\n"
-#: lib/query.c:557
+#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr "%s(Ŕť)¸Ś ťýźşÇĎ´Â(trigger) ĆĐĹ°Áö°Ą žř˝Ŕ´Ď´Ů\n"
-#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
+#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, c-format
msgid "malformed %s: %s\n"
msgstr "%s(ŔĚ)°Ą Ŕ߸řľĘ: %s\n"
-#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
+#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, c-format
msgid "no package matches %s: %s\n"
msgstr "%s(żÍ)°ú ŔĎÄĄÇĎ´Â ĆĐĹ°Áö°Ą žřŔ˝: %s\n"
-#: lib/query.c:665
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "%s(Ŕť)¸Ś ÇĘżäˇÎ ÇĎ´Â ĆĐĹ°Áö°Ą žř˝Ŕ´Ď´Ů\n"
-#: lib/query.c:676
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "%s(Ŕť)¸Ś ÁŚ°řÇĎ´Â ĆĐĹ°Áö°Ą žř˝Ŕ´Ď´Ů\n"
-#: lib/query.c:710
+#: lib/query.c:713
#, c-format
msgid "file %s: %s\n"
msgstr "%s ĆÄŔĎ: %s\n"
-#: lib/query.c:714
+#: lib/query.c:717
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "%s ĆÄŔĎŔş žîś˛ ĆĐĹ°ÁöżĄľľ ľéžîŔÖÁö žĘ˝Ŕ´Ď´Ů\n"
-#: lib/query.c:741
+#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr "şÎŔűÇŐÇŃ ĆĐĹ°Áö šřČŁ: %s\n"
-#: lib/query.c:744
+#: lib/query.c:747
#, c-format
msgid "package record number: %u\n"
msgstr "ĆĐĹ°Áö ąâˇĎ(record) šřČŁ: %u\n"
-#: lib/query.c:749
+#: lib/query.c:752
#, c-format
msgid "record %u could not be read\n"
msgstr "ąâˇĎ(record) šřČŁ %u(Ŕş)´Â ŔĐŔť źö žř˝Ŕ´Ď´Ů\n"
-#: lib/query.c:760 lib/rpminstall.c:779
+#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "%s ĆĐĹ°Áö°Ą źłÄĄľÇžî ŔÖÁö žĘ˝Ŕ´Ď´Ů\n"
-#: lib/rpmal.c:695
+#: lib/rpmal.c:692
#, fuzzy
msgid "(added files)"
msgstr "Ŕ߸řľČ db ĆÄŔĎ %s\n"
-#: lib/rpmal.c:774
+#: lib/rpmal.c:770
#, fuzzy
msgid "(added provide)"
msgstr "%s: %-45s żš (ÁŚ°řŔĚ Ăß°ĄľĘ)\n"
@@ -2502,36 +2501,31 @@ msgstr " %s A %s\tB %s\n"
msgid "package %s has unsatisfied %s: %s\n"
msgstr "%s ĆĐĹ°ÁöŔÇ ÇĘżäťçÇ×(łťżŞ)ŔĚ ¸¸ÁˇÇĎÁö žĘŔ˝: %s\n"
-#: lib/rpmfi.c:657
+#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr "========== ŔçščÄĄ\n"
-#: lib/rpmfi.c:661
+#: lib/rpmfi.c:662
#, c-format
msgid "%5d exclude %s\n"
msgstr "%5d ÁŚżÜ %s\n"
-#: lib/rpmfi.c:664
+#: lib/rpmfi.c:665
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%5d ŔçščÄĄ %s -> %s\n"
-#: lib/rpmfi.c:734
-#, c-format
-msgid "excluding multilib path %s%s\n"
-msgstr "%s%s multilib °ćˇÎ¸Ś ÁŚżÜ˝ĂĹľ´Ď´Ů\n"
-
-#: lib/rpmfi.c:800
+#: lib/rpmfi.c:788
#, c-format
msgid "excluding %s %s\n"
msgstr "%s %s(Ŕť)¸Ś ÁŚżÜ˝ĂĹľ´Ď´Ů\n"
-#: lib/rpmfi.c:810
+#: lib/rpmfi.c:798
#, c-format
msgid "relocating %s to %s\n"
msgstr "%s(Ŕť)¸Ś %s(Ŕ¸)ˇÎ ŔçščÄĄ ÇŐ´Ď´Ů\n"
-#: lib/rpmfi.c:889
+#: lib/rpmfi.c:877
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "%s ľđˇşĹ与¸Ś %s(Ŕ¸)ˇÎ ŔçščÄĄ ÇŐ´Ď´Ů\n"
@@ -3056,7 +3050,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr "missingok Ç᥹סΠŔÎÇŘ %s(Ŕť)¸Ś ťýˇŤÇŐ´Ď´Ů\n"
#. @innercontinue@
-#: lib/transaction.c:925
+#: lib/transaction.c:935
#, c-format
msgid "excluding directory %s\n"
msgstr "%s ľđˇşĹ与¸Ś ÁŚżÜ˝ĂĹľ´Ď´Ů\n"
@@ -3069,7 +3063,7 @@ msgstr "%s ľđˇşĹ与¸Ś ÁŚżÜ˝ĂĹľ´Ď´Ů\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1034
+#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3082,7 +3076,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1117
+#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3090,16 +3084,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1194
+#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:286
+#: lib/verify.c:287
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "´ŮŔ˝Ŕť ĂŁŔť źö žřŔ˝ %s"
-#: lib/verify.c:395
+#: lib/verify.c:396
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "%s-%s-%sżĄ ŔÇÁ¸źş šŽÁŚ šßťý: "
@@ -3265,6 +3259,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
+#: rpmdb/header_internal.c:164
+#, c-format
+msgid "Data type %d not supported\n"
+msgstr "%d ľĽŔĚĹÍ ŔŻÇüŔş ťçżëÇŇ źö žř˝Ŕ´Ď´Ů\n"
+
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr "ľĽŔĚĹÍşŁŔĚ˝ş¸Ś ĂĘąâČ­ ÇŐ´Ď´Ů"
@@ -3821,6 +3820,9 @@ msgstr ""
msgid "DIRECTORY"
msgstr ""
+#~ msgid "excluding multilib path %s%s\n"
+#~ msgstr "%s%s multilib °ćˇÎ¸Ś ÁŚżÜ˝ĂĹľ´Ď´Ů\n"
+
#, fuzzy
#~ msgid "Finding %s: %s\n"
#~ msgstr "%s(Ŕť)¸Ś ĂŁ´Â Áß: (%s ťçżë)...\n"
diff --git a/po/no.po b/po/no.po
index 28e393b6f..2d7f8c41d 100644
--- a/po/no.po
+++ b/po/no.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-12-30 09:42-0500\n"
+"POT-Creation-Date: 2003-01-01 15:20-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:1841
+#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
+#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrev: %s\n"
@@ -1351,67 +1351,67 @@ msgstr " feilet - "
msgid "package %s was already added, replacing with %s\n"
msgstr "pakke %s er allerede installert"
-#: lib/depends.c:395
+#: lib/depends.c:362
msgid "(cached)"
msgstr ""
-#: lib/depends.c:422
+#: lib/depends.c:389
msgid "(rpmrc provides)"
msgstr ""
-#: lib/depends.c:439
+#: lib/depends.c:406
msgid "(rpmlib provides)"
msgstr ""
-#: lib/depends.c:468
+#: lib/depends.c:435
msgid "(db files)"
msgstr ""
-#: lib/depends.c:481
+#: lib/depends.c:448
msgid "(db provides)"
msgstr ""
-#: lib/depends.c:494
+#: lib/depends.c:461
#, fuzzy
msgid "(db package)"
msgstr "ingen pakker\n"
-#: lib/depends.c:852
+#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:974
+#: lib/depends.c:937
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
-#: lib/depends.c:1208
+#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1309
+#: lib/depends.c:1267
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1393
+#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1463
+#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1498
+#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1503
+#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1472,37 +1472,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr "%9d %s\n"
-#: lib/fsm.c:1245
+#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
-#: lib/fsm.c:1543
+#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1672 lib/fsm.c:1808
+#: lib/fsm.c:1675 lib/fsm.c:1811
#, c-format
msgid "%s saved as %s\n"
msgstr "%s lagret som %s\n"
-#: lib/fsm.c:1834
+#: lib/fsm.c:1837
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s rmdir av %s feilet: Katalogen er ikke tom\n"
-#: lib/fsm.c:1840
+#: lib/fsm.c:1843
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s rmdir av %s feilet: %s\n"
-#: lib/fsm.c:1850
+#: lib/fsm.c:1853
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s unlink av %s feilet: %s\n"
-#: lib/fsm.c:1870
+#: lib/fsm.c:1873
#, c-format
msgid "%s created as %s\n"
msgstr "%s opprettet som %s\n"
@@ -2144,89 +2144,84 @@ msgstr "signer en pakke (forkast nĺvćrende signatur)"
msgid "generate signature"
msgstr "generer signatur"
-#: lib/psm.c:254 rpmdb/header_internal.c:164
-#, c-format
-msgid "Data type %d not supported\n"
-msgstr "Datatype %d ikke střttet\n"
-
-#: lib/psm.c:465
+#: lib/psm.c:278
msgid "source package expected, binary found\n"
msgstr "kildepakke forventet, binćr funnet\n"
-#: lib/psm.c:582
+#: lib/psm.c:395
msgid "source package contains no .spec file\n"
msgstr "kildepakke inneholder ikke en .spec-fil\n"
-#: lib/psm.c:918
+#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:1001
+#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:1009
+#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:1172
+#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1195
+#: lib/psm.c:1008
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr ""
-#: lib/psm.c:1201
+#: lib/psm.c:1014
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
-#: lib/psm.c:1608
+#: lib/psm.c:1420
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
-#: lib/psm.c:1744
+#: lib/psm.c:1553
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1853
+#: lib/psm.c:1662
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Kunne ikke ĺpne spec fil %s: %s\n"
-#: lib/psm.c:1899
+#: lib/psm.c:1708
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1908
+#: lib/psm.c:1717
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1956
+#: lib/psm.c:1765
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
-#: lib/psm.c:1957
+#: lib/psm.c:1766
msgid " on file "
msgstr ""
-#: lib/psm.c:2154
+#: lib/psm.c:1949
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "klarte ikke ĺ ĺpne %s: %s\n"
-#: lib/psm.c:2157
+#: lib/psm.c:1952
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s feilet\n"
@@ -2258,113 +2253,117 @@ msgid "net shared "
msgstr "delt via nett "
#: lib/query.c:258
+msgid "wrong color "
+msgstr ""
+
+#: lib/query.c:261
msgid "(no state) "
msgstr "(ingen tilstand)"
-#: lib/query.c:261
+#: lib/query.c:264
#, c-format
msgid "(unknown %3d) "
msgstr "(ukjent %3d) "
-#: lib/query.c:279
+#: lib/query.c:282
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "pakken har verken fileier eller id-lister\n"
-#: lib/query.c:312
+#: lib/query.c:315
msgid "package has neither file owner or id lists\n"
msgstr "pakken har verken fileier eller id-lister\n"
-#: lib/query.c:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "feil under ĺpning av %s: %s\n"
-#: lib/query.c:455
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "spřrring pĺ %s feilet\n"
-#: lib/query.c:465
+#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr "kildepakker i gammelt format kan ikke spřrres\n"
-#: lib/query.c:498 lib/rpminstall.c:608
+#: lib/query.c:501 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:527
+#: lib/query.c:530
msgid "no packages\n"
msgstr "ingen pakker\n"
-#: lib/query.c:547
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "gruppe %s inneholder ingen pakker\n"
-#: lib/query.c:557
+#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr "ingen pakke utlřser %s\n"
-#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
+#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "kunne ikke opprette %s: %s\n"
-#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
+#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "ingen pakke utlřser %s\n"
-#: lib/query.c:665
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "ingen pakke krever %s\n"
-#: lib/query.c:676
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "ingen pakke gir %s\n"
-#: lib/query.c:710
+#: lib/query.c:713
#, c-format
msgid "file %s: %s\n"
msgstr "fil %s: %s\n"
-#: lib/query.c:714
+#: lib/query.c:717
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "filen %s eies ikke av noen pakke\n"
-#: lib/query.c:741
+#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr "ugyldig pakkenummer: %s\n"
-#: lib/query.c:744
+#: lib/query.c:747
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:749
+#: lib/query.c:752
#, c-format
msgid "record %u could not be read\n"
msgstr ""
-#: lib/query.c:760 lib/rpminstall.c:779
+#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "pakke %s er ikke installert\n"
-#: lib/rpmal.c:695
+#: lib/rpmal.c:692
msgid "(added files)"
msgstr ""
-#: lib/rpmal.c:774
+#: lib/rpmal.c:770
msgid "(added provide)"
msgstr ""
@@ -2487,36 +2486,31 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr "pakke %s er i konflikt: %s\n"
-#: lib/rpmfi.c:657
+#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr ""
-#: lib/rpmfi.c:661
+#: lib/rpmfi.c:662
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "eksluderer %s %s\n"
-#: lib/rpmfi.c:664
+#: lib/rpmfi.c:665
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%5d omplasser %s -> %s\n"
-#: lib/rpmfi.c:734
-#, c-format
-msgid "excluding multilib path %s%s\n"
-msgstr "ekskluderer multilib-sti %s%s\n"
-
-#: lib/rpmfi.c:800
+#: lib/rpmfi.c:788
#, c-format
msgid "excluding %s %s\n"
msgstr "eksluderer %s %s\n"
-#: lib/rpmfi.c:810
+#: lib/rpmfi.c:798
#, c-format
msgid "relocating %s to %s\n"
msgstr "relokerer %s til %s\n"
-#: lib/rpmfi.c:889
+#: lib/rpmfi.c:877
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "relokerer katalog %s til %s\n"
@@ -3034,7 +3028,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:925
+#: lib/transaction.c:935
#, c-format
msgid "excluding directory %s\n"
msgstr "ekskluderer katalog %s\n"
@@ -3047,7 +3041,7 @@ msgstr "ekskluderer katalog %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1034
+#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3060,7 +3054,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1117
+#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3068,16 +3062,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1194
+#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:286
+#: lib/verify.c:287
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "mangler %s"
-#: lib/verify.c:395
+#: lib/verify.c:396
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "feilede avhengigheter:\n"
@@ -3243,6 +3237,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
+#: rpmdb/header_internal.c:164
+#, c-format
+msgid "Data type %d not supported\n"
+msgstr "Datatype %d ikke střttet\n"
+
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr "initier database"
@@ -3787,6 +3786,9 @@ msgstr ""
msgid "DIRECTORY"
msgstr ""
+#~ msgid "excluding multilib path %s%s\n"
+#~ msgstr "ekskluderer multilib-sti %s%s\n"
+
#, fuzzy
#~ msgid "Finding %s: %s\n"
#~ msgstr "Fil %s: %s\n"
diff --git a/po/pl.po b/po/pl.po
index 5d4234728..ee758a9c9 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-12-30 09:42-0500\n"
+"POT-Creation-Date: 2003-01-01 15:20-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:1841
+#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
+#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapisano: %s\n"
@@ -1388,70 +1388,70 @@ msgstr " nie powiodło się -"
msgid "package %s was already added, replacing with %s\n"
msgstr "pakiet %s-%s-%s jest już zainstalowany"
-#: lib/depends.c:395
+#: lib/depends.c:362
msgid "(cached)"
msgstr ""
-#: lib/depends.c:422
+#: lib/depends.c:389
msgid "(rpmrc provides)"
msgstr ""
-#: lib/depends.c:439
+#: lib/depends.c:406
#, fuzzy
msgid "(rpmlib provides)"
msgstr "plik %s nie należy do żadnego pakietu\n"
-#: lib/depends.c:468
+#: lib/depends.c:435
#, fuzzy
msgid "(db files)"
msgstr "błędny status pliku: %s"
-#: lib/depends.c:481
+#: lib/depends.c:448
#, fuzzy
msgid "(db provides)"
msgstr "Udostępniane zasoby:"
-#: lib/depends.c:494
+#: lib/depends.c:461
#, fuzzy
msgid "(db package)"
msgstr "znaleziono %d pakietów\n"
-#: lib/depends.c:852
+#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:974
+#: lib/depends.c:937
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "usuwanie indeksu grupy\n"
#. Record all relations.
-#: lib/depends.c:1208
+#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1309
+#: lib/depends.c:1267
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1393
+#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1463
+#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1498
+#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1503
+#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1514,37 +1514,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr "linia %d: %s"
-#: lib/fsm.c:1245
+#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
-#: lib/fsm.c:1543
+#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1672 lib/fsm.c:1808
+#: lib/fsm.c:1675 lib/fsm.c:1811
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "ostrzeżenie: %s zapisany jako %s"
-#: lib/fsm.c:1834
+#: lib/fsm.c:1837
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "nie można usunąć %s - katalog nie jest pusty"
-#: lib/fsm.c:1840
+#: lib/fsm.c:1843
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "skasowanie katalogu %s nie powiodło się"
-#: lib/fsm.c:1850
+#: lib/fsm.c:1853
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "otwarcie %s nie powiodło się\n"
-#: lib/fsm.c:1870
+#: lib/fsm.c:1873
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "ostrzeżenie: %s utworzony jako %s"
@@ -2220,91 +2220,86 @@ msgstr "podpisz pakiet (porzuć bierzącą sygnaturę)"
msgid "generate signature"
msgstr "generuj sygnaturę PGP/GPG"
-#: lib/psm.c:254 rpmdb/header_internal.c:164
-#, c-format
-msgid "Data type %d not supported\n"
-msgstr "Typ danych %d nie jest obsługiwany\n"
-
-#: lib/psm.c:465
+#: lib/psm.c:278
#, fuzzy
msgid "source package expected, binary found\n"
msgstr "spodziewany pakiet źródłowy a nie binarny"
-#: lib/psm.c:582
+#: lib/psm.c:395
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "pakiet źródłowy nie zawiera pliku .spec"
-#: lib/psm.c:918
+#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:1001
+#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:1009
+#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:1172
+#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1195
+#: lib/psm.c:1008
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "%s pomijany - transmisja %s nie powiodła się\n"
-#: lib/psm.c:1201
+#: lib/psm.c:1014
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "wykonanie skryptu nie powiodło się"
-#: lib/psm.c:1608
+#: lib/psm.c:1420
#, 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:1744
+#: lib/psm.c:1553
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1853
+#: lib/psm.c:1662
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Nie można odczytać ikony: %s"
-#: lib/psm.c:1899
+#: lib/psm.c:1708
#, 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:1908
+#: lib/psm.c:1717
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "grupa %s nie istnieje - użyto grupy root"
-#: lib/psm.c:1956
+#: lib/psm.c:1765
#, 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:1957
+#: lib/psm.c:1766
msgid " on file "
msgstr " na pliku "
-#: lib/psm.c:2154
+#: lib/psm.c:1949
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "nie można otworzyć %s: %s"
-#: lib/psm.c:2157
+#: lib/psm.c:1952
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s nie powiodło się"
@@ -2336,116 +2331,120 @@ msgid "net shared "
msgstr "udostępniony w sieci"
#: lib/query.c:258
+msgid "wrong color "
+msgstr ""
+
+#: lib/query.c:261
msgid "(no state) "
msgstr "(brak statusu)"
-#: lib/query.c:261
+#: lib/query.c:264
#, c-format
msgid "(unknown %3d) "
msgstr "(nieznany %3d)"
-#: lib/query.c:279
+#: lib/query.c:282
#, 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:312
+#: lib/query.c:315
#, 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:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "otwarcie %s nie powiodło się: %s\n"
-#: lib/query.c:455
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "odpytywanie %s nie powiodło się\n"
-#: lib/query.c:465
+#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr "pakiety w starym formacie nie mogą być odpytywane\n"
-#: lib/query.c:498 lib/rpminstall.c:608
+#: lib/query.c:501 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:527
+#: lib/query.c:530
#, fuzzy
msgid "no packages\n"
msgstr "znaleziono %d pakietów\n"
-#: lib/query.c:547
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "grupa %s nie zawiera żadnych pakietów\n"
-#: lib/query.c:557
+#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr "żaden pakiet nie zahacza %s\n"
-#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
+#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "Odczytanie %s nie powiodło się: %s."
-#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
+#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "żaden pakiet nie zahacza %s\n"
-#: lib/query.c:665
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "żaden pakiet nie wymaga %s\n"
-#: lib/query.c:676
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "żaden pakiet nie udostępnia %s\n"
-#: lib/query.c:710
+#: lib/query.c:713
#, c-format
msgid "file %s: %s\n"
msgstr "plik %s: %s\n"
-#: lib/query.c:714
+#: lib/query.c:717
#, 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:741
+#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr "błędny numer pakietu: %s\n"
-#: lib/query.c:744
+#: lib/query.c:747
#, fuzzy, c-format
msgid "package record number: %u\n"
msgstr "numer rekordu pakietu: %d\n"
-#: lib/query.c:749
+#: lib/query.c:752
#, fuzzy, c-format
msgid "record %u could not be read\n"
msgstr "nie można odczytać rekordu %d\n"
-#: lib/query.c:760 lib/rpminstall.c:779
+#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "pakiet %s nie jest zainstalowany\n"
-#: lib/rpmal.c:695
+#: lib/rpmal.c:692
#, fuzzy
msgid "(added files)"
msgstr "błędny status pliku: %s"
-#: lib/rpmal.c:774
+#: lib/rpmal.c:770
msgid "(added provide)"
msgstr ""
@@ -2570,36 +2569,31 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr "zależności pakietu %s nie zostały spełnione: %s\n"
-#: lib/rpmfi.c:657
+#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr ""
-#: lib/rpmfi.c:661
+#: lib/rpmfi.c:662
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "Ten OS nie jest wspierany: %s"
-#: lib/rpmfi.c:664
+#: lib/rpmfi.c:665
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "przesuwanie %s do %s\n"
-#: lib/rpmfi.c:734
-#, fuzzy, c-format
-msgid "excluding multilib path %s%s\n"
-msgstr "wyłączanie %s\n"
-
-#: lib/rpmfi.c:800
+#: lib/rpmfi.c:788
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "wyłączanie %s\n"
-#: lib/rpmfi.c:810
+#: lib/rpmfi.c:798
#, c-format
msgid "relocating %s to %s\n"
msgstr "przesuwanie %s do %s\n"
-#: lib/rpmfi.c:889
+#: lib/rpmfi.c:877
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "przesuwanie %s do %s\n"
@@ -3125,7 +3119,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr "%s pominięty z powodu flagi missingok\n"
#. @innercontinue@
-#: lib/transaction.c:925
+#: lib/transaction.c:935
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "tworzenie katalogu: %s\n"
@@ -3138,7 +3132,7 @@ msgstr "tworzenie katalogu: %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1034
+#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3151,7 +3145,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1117
+#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3159,16 +3153,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1194
+#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:286
+#: lib/verify.c:287
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "brak %s\n"
-#: lib/verify.c:395
+#: lib/verify.c:396
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "Niespełnione zależności dla %s-%s-%s: "
@@ -3334,6 +3328,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
+#: rpmdb/header_internal.c:164
+#, c-format
+msgid "Data type %d not supported\n"
+msgstr "Typ danych %d nie jest obsługiwany\n"
+
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr ""
@@ -3888,6 +3887,10 @@ msgid "DIRECTORY"
msgstr ""
#, fuzzy
+#~ msgid "excluding multilib path %s%s\n"
+#~ msgstr "wyłączanie %s\n"
+
+#, fuzzy
#~ msgid "Finding %s: %s\n"
#~ msgstr "Wyszukiwanie wymaganych zasobów...\n"
diff --git a/po/pt.po b/po/pt.po
index 02b89f646..91dcc4305 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm\n"
-"POT-Creation-Date: 2002-12-30 09:42-0500\n"
+"POT-Creation-Date: 2003-01-01 15:20-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:1841
+#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
+#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr "Gravei: %s\n"
@@ -1361,72 +1361,72 @@ msgstr " falhou - "
msgid "package %s was already added, replacing with %s\n"
msgstr "o pacote %s já está instalado"
-#: lib/depends.c:395
+#: lib/depends.c:362
msgid "(cached)"
msgstr ""
-#: lib/depends.c:422
+#: lib/depends.c:389
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %-45s SIM (oferecidos pelo rpmrc)\n"
-#: lib/depends.c:439
+#: lib/depends.c:406
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %-45s SIM (oferecidos pela rpmlib)\n"
-#: lib/depends.c:468
+#: lib/depends.c:435
#, fuzzy
msgid "(db files)"
msgstr "ficheiro db inválido %s\n"
-#: lib/depends.c:481
+#: lib/depends.c:448
#, fuzzy
msgid "(db provides)"
msgstr "%s: %-45s SI (oferecidos pelo db)\n"
-#: lib/depends.c:494
+#: lib/depends.c:461
#, fuzzy
msgid "(db package)"
msgstr "nenhum pacote\n"
-#: lib/depends.c:852
+#: lib/depends.c:815
#, 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:974
+#: lib/depends.c:937
#, 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:1208
+#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr "=========== a guardar as relaçőes do tsort\n"
#. T4. Scan for zeroes.
-#: lib/depends.c:1309
+#: lib/depends.c:1267
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
"========== ordenar pacotes (order, #predecessors, #succesors, tree, depth)\n"
-#: lib/depends.c:1393
+#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr "========== só os sucessores (ordem de apresentaçăo)\n"
-#: lib/depends.c:1463
+#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr "CICLO:\n"
-#: lib/depends.c:1498
+#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr "========== a prosseguir o tsort ...\n"
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1503
+#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1488,39 +1488,39 @@ msgstr "========= Directorias năo incluidas explicitamente no pacote:\n"
msgid "%10d %s\n"
msgstr "%9d %s\n"
-#: lib/fsm.c:1245
+#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr "directoria %s criada com as permissőes %04o.\n"
-#: lib/fsm.c:1543
+#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
"o ficheiro de arquivo %s năo foi encontrado na lista de ficheiros do "
"cabeçalho\n"
-#: lib/fsm.c:1672 lib/fsm.c:1808
+#: lib/fsm.c:1675 lib/fsm.c:1811
#, c-format
msgid "%s saved as %s\n"
msgstr "%s gravado como %s\n"
-#: lib/fsm.c:1834
+#: lib/fsm.c:1837
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s rmdir de %s falhou: Directoria năo está vazia\n"
-#: lib/fsm.c:1840
+#: lib/fsm.c:1843
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s rmdir de %s falhou: %s\n"
-#: lib/fsm.c:1850
+#: lib/fsm.c:1853
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s unlink de %s falhou: %s\n"
-#: lib/fsm.c:1870
+#: lib/fsm.c:1873
#, c-format
msgid "%s created as %s\n"
msgstr "%s criado como %s\n"
@@ -2164,91 +2164,86 @@ msgstr "assinar um pacote (retira a assinatura actual)"
msgid "generate signature"
msgstr "gerar a assinatura"
-#: lib/psm.c:254 rpmdb/header_internal.c:164
-#, c-format
-msgid "Data type %d not supported\n"
-msgstr "O tipo de dados %d năo é suportado\n"
-
-#: lib/psm.c:465
+#: lib/psm.c:278
msgid "source package expected, binary found\n"
msgstr ""
"esperava-se um pacote com código-fonte, foi encontrado um pacote binário\n"
-#: lib/psm.c:582
+#: lib/psm.c:395
msgid "source package contains no .spec file\n"
msgstr "o pacote de código-fonte năo contem um ficheiro .spec\n"
-#: lib/psm.c:918
+#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:1001
+#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:1009
+#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:1172
+#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1195
+#: lib/psm.c:1008
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "%s: %s script falhou (%d), a saltar %s-%s-%s\n"
-#: lib/psm.c:1201
+#: lib/psm.c:1014
#, fuzzy, c-format
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:1608
+#: lib/psm.c:1420
#, 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:1744
+#: lib/psm.c:1553
#, 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:1853
+#: lib/psm.c:1662
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Năo consegui reler o cabeçalho do assinatura.\n"
-#: lib/psm.c:1899
+#: lib/psm.c:1708
#, 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:1908
+#: lib/psm.c:1717
#, 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:1956
+#: lib/psm.c:1765
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "a abertura do pacote falhou%s%s: %s\n"
-#: lib/psm.c:1957
+#: lib/psm.c:1766
msgid " on file "
msgstr " no ficheiro "
-#: lib/psm.c:2154
+#: lib/psm.c:1949
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s falhou no ficheiro %s: %s\n"
-#: lib/psm.c:2157
+#: lib/psm.c:1952
#, c-format
msgid "%s failed: %s\n"
msgstr "%s falhou: %s\n"
@@ -2280,115 +2275,119 @@ msgid "net shared "
msgstr "partilhado"
#: lib/query.c:258
+msgid "wrong color "
+msgstr ""
+
+#: lib/query.c:261
msgid "(no state) "
msgstr "(sem estado) "
-#: lib/query.c:261
+#: lib/query.c:264
#, c-format
msgid "(unknown %3d) "
msgstr "(desconhecido %3d)"
-#: lib/query.c:279
+#: lib/query.c:282
#, 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:312
+#: lib/query.c:315
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:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "o acesso ao %s falhou: %s\n"
-#: lib/query.c:455
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "a pesquisa do %s falhou\n"
-#: lib/query.c:465
+#: lib/query.c:468
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:498 lib/rpminstall.c:608
+#: lib/query.c:501 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:527
+#: lib/query.c:530
msgid "no packages\n"
msgstr "nenhum pacote\n"
-#: lib/query.c:547
+#: lib/query.c:550
#, 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:557
+#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr "nenhum pacote activa o %s\n"
-#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
+#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, c-format
msgid "malformed %s: %s\n"
msgstr "malformado %s: %s\n"
-#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
+#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, c-format
msgid "no package matches %s: %s\n"
msgstr "nenhum pacote coincide com %s: %s\n"
-#: lib/query.c:665
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "nenhum pacote precisa do %s\n"
-#: lib/query.c:676
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "nenhum pacote oferece o %s\n"
-#: lib/query.c:710
+#: lib/query.c:713
#, c-format
msgid "file %s: %s\n"
msgstr "ficheiro %s: %s\n"
-#: lib/query.c:714
+#: lib/query.c:717
#, 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:741
+#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr "número de pacote inválido: %s\n"
-#: lib/query.c:744
+#: lib/query.c:747
#, c-format
msgid "package record number: %u\n"
msgstr "número de registo do pacote: %u\n"
-#: lib/query.c:749
+#: lib/query.c:752
#, c-format
msgid "record %u could not be read\n"
msgstr "o registo %u năo pôde ser lido\n"
-#: lib/query.c:760 lib/rpminstall.c:779
+#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "o pacote %s năo está instalado\n"
-#: lib/rpmal.c:695
+#: lib/rpmal.c:692
#, fuzzy
msgid "(added files)"
msgstr "ficheiro db inválido %s\n"
-#: lib/rpmal.c:774
+#: lib/rpmal.c:770
#, fuzzy
msgid "(added provide)"
msgstr "%s: %-45s SIM (oferecidos para adiçăo)\n"
@@ -2514,36 +2513,31 @@ msgstr " %s A %s\tB %s\n"
msgid "package %s has unsatisfied %s: %s\n"
msgstr "o pacote %s tem requisitos năo satisfeitos: %s\n"
-#: lib/rpmfi.c:657
+#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr "========== mudanças de local\n"
-#: lib/rpmfi.c:661
+#: lib/rpmfi.c:662
#, c-format
msgid "%5d exclude %s\n"
msgstr "%5d excluir o %s\n"
-#: lib/rpmfi.c:664
+#: lib/rpmfi.c:665
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%5d mudar de local %s -> %s\n"
-#: lib/rpmfi.c:734
-#, c-format
-msgid "excluding multilib path %s%s\n"
-msgstr "a exclur a directoria 'multilib' %s%s\n"
-
-#: lib/rpmfi.c:800
+#: lib/rpmfi.c:788
#, c-format
msgid "excluding %s %s\n"
msgstr "a excluir o %s %s\n"
-#: lib/rpmfi.c:810
+#: lib/rpmfi.c:798
#, c-format
msgid "relocating %s to %s\n"
msgstr "a mudar o %s para %s\n"
-#: lib/rpmfi.c:889
+#: lib/rpmfi.c:877
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "a mudar a directoria %s para %s\n"
@@ -3067,7 +3061,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr "%s ignorado devido ŕ opçăo missingok\n"
#. @innercontinue@
-#: lib/transaction.c:925
+#: lib/transaction.c:935
#, c-format
msgid "excluding directory %s\n"
msgstr "a excluir a directoria %s\n"
@@ -3080,7 +3074,7 @@ msgstr "a excluir a directoria %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1034
+#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3093,7 +3087,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1117
+#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3101,16 +3095,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1194
+#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:286
+#: lib/verify.c:287
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "falta %s"
-#: lib/verify.c:395
+#: lib/verify.c:396
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "Dependęncias năo satisfeitas para o %s-%s-%s: "
@@ -3276,6 +3270,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
+#: rpmdb/header_internal.c:164
+#, c-format
+msgid "Data type %d not supported\n"
+msgstr "O tipo de dados %d năo é suportado\n"
+
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr "inicializar a base de dados"
@@ -3826,6 +3825,9 @@ msgstr ""
msgid "DIRECTORY"
msgstr ""
+#~ msgid "excluding multilib path %s%s\n"
+#~ msgstr "a exclur a directoria 'multilib' %s%s\n"
+
#, fuzzy
#~ msgid "Finding %s: %s\n"
#~ msgstr "A procurar o %s: (usando o %s)...\n"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index cfdc629ca..984d689ce 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-12-30 09:42-0500\n"
+"POT-Creation-Date: 2003-01-01 15:20-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:1841
+#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
+#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@@ -1499,70 +1499,70 @@ msgstr "Construo falhou.\n"
msgid "package %s was already added, replacing with %s\n"
msgstr "no foi passado pacote para instalao"
-#: lib/depends.c:395
+#: lib/depends.c:362
msgid "(cached)"
msgstr ""
-#: lib/depends.c:422
+#: lib/depends.c:389
msgid "(rpmrc provides)"
msgstr ""
-#: lib/depends.c:439
+#: lib/depends.c:406
msgid "(rpmlib provides)"
msgstr ""
# , c-format
-#: lib/depends.c:468
+#: lib/depends.c:435
#, fuzzy
msgid "(db files)"
msgstr "No consegui abrir: %s\n"
-#: lib/depends.c:481
+#: lib/depends.c:448
msgid "(db provides)"
msgstr ""
-#: lib/depends.c:494
+#: lib/depends.c:461
#, fuzzy
msgid "(db package)"
msgstr "pesquise todos os pacotes"
-#: lib/depends.c:852
+#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
# , c-format
-#: lib/depends.c:974
+#: lib/depends.c:937
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "No consegui abrir: %s\n"
#. Record all relations.
-#: lib/depends.c:1208
+#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1309
+#: lib/depends.c:1267
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1393
+#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1463
+#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1498
+#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1503
+#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1627,40 +1627,40 @@ msgstr ""
msgid "%10d %s\n"
msgstr "No consegui ler o arquivo spec de %s\n"
-#: lib/fsm.c:1245
+#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
-#: lib/fsm.c:1543
+#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
# , c-format
-#: lib/fsm.c:1672 lib/fsm.c:1808
+#: lib/fsm.c:1675 lib/fsm.c:1811
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
-#: lib/fsm.c:1834
+#: lib/fsm.c:1837
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "No consegui abrir: %s\n"
-#: lib/fsm.c:1840
+#: lib/fsm.c:1843
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "Construo falhou.\n"
-#: lib/fsm.c:1850
+#: lib/fsm.c:1853
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "Construo falhou.\n"
# , c-format
-#: lib/fsm.c:1870
+#: lib/fsm.c:1873
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "No consegui abrir: %s\n"
@@ -2347,92 +2347,87 @@ msgstr "assine um pacote (descarte a assinatura corrente)"
msgid "generate signature"
msgstr "gere assinatura PGP"
-#: lib/psm.c:254 rpmdb/header_internal.c:164
-#, c-format
-msgid "Data type %d not supported\n"
-msgstr ""
-
-#: lib/psm.c:465
+#: lib/psm.c:278
msgid "source package expected, binary found\n"
msgstr ""
-#: lib/psm.c:582
+#: lib/psm.c:395
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "pesquise o pacote ao qual <arquivo> pertence"
-#: lib/psm.c:918
+#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:1001
+#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:1009
+#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:1172
+#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1195
+#: lib/psm.c:1008
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr ""
-#: lib/psm.c:1201
+#: lib/psm.c:1014
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
-#: lib/psm.c:1608
+#: lib/psm.c:1420
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "no foi passado pacote para instalao"
-#: lib/psm.c:1744
+#: lib/psm.c:1553
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
# , c-format
-#: lib/psm.c:1853
+#: lib/psm.c:1662
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "No consegui abrir: %s\n"
-#: lib/psm.c:1899
+#: lib/psm.c:1708
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1908
+#: lib/psm.c:1717
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1956
+#: lib/psm.c:1765
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "Construo falhou.\n"
-#: lib/psm.c:1957
+#: lib/psm.c:1766
msgid " on file "
msgstr ""
# , c-format
-#: lib/psm.c:2154
+#: lib/psm.c:1949
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "No consegui abrir: %s\n"
-#: lib/psm.c:2157
+#: lib/psm.c:1952
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "Construo falhou.\n"
@@ -2465,118 +2460,122 @@ msgid "net shared "
msgstr ""
#: lib/query.c:258
-msgid "(no state) "
+msgid "wrong color "
msgstr ""
#: lib/query.c:261
+msgid "(no state) "
+msgstr ""
+
+#: lib/query.c:264
#, c-format
msgid "(unknown %3d) "
msgstr ""
-#: lib/query.c:279
+#: lib/query.c:282
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "no foi passado pacote para instalao"
-#: lib/query.c:312
+#: lib/query.c:315
#, fuzzy
msgid "package has neither file owner or id lists\n"
msgstr "no foi passado pacote para instalao"
-#: lib/query.c:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "Construo falhou.\n"
-#: lib/query.c:455
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr ""
-#: lib/query.c:465
+#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:498 lib/rpminstall.c:608
+#: lib/query.c:501 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:527
+#: lib/query.c:530
#, fuzzy
msgid "no packages\n"
msgstr "pesquise todos os pacotes"
-#: lib/query.c:547
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
-#: lib/query.c:557
+#: lib/query.c:560
#, fuzzy, c-format
msgid "no package triggers %s\n"
msgstr "no foram passados pacotes para assinatura"
# , c-format
-#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
+#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "No consegui ler o arquivo spec de %s\n"
-#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
+#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "no foram passados pacotes para assinatura"
-#: lib/query.c:665
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr ""
-#: lib/query.c:676
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr ""
-#: lib/query.c:710
+#: lib/query.c:713
#, c-format
msgid "file %s: %s\n"
msgstr ""
-#: lib/query.c:714
+#: lib/query.c:717
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
-#: lib/query.c:741
+#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
-#: lib/query.c:744
+#: lib/query.c:747
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:749
+#: lib/query.c:752
#, c-format
msgid "record %u could not be read\n"
msgstr ""
-#: lib/query.c:760 lib/rpminstall.c:779
+#: lib/query.c:763 lib/rpminstall.c:779
#, fuzzy, c-format
msgid "package %s is not installed\n"
msgstr "no foi passado pacote para instalao"
# , c-format
-#: lib/rpmal.c:695
+#: lib/rpmal.c:692
#, fuzzy
msgid "(added files)"
msgstr "No consegui abrir: %s\n"
-#: lib/rpmal.c:774
+#: lib/rpmal.c:770
msgid "(added provide)"
msgstr ""
@@ -2707,7 +2706,7 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr "no foi passado pacote para instalao"
-#: lib/rpmfi.c:657
+#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr ""
@@ -2719,13 +2718,13 @@ msgstr ""
# "Content-Type: text/plain; charset=ISO-8859-1\n"
# "Content-Transfer-Encoding: 8-bit\n"
# , c-format
-#: lib/rpmfi.c:661
+#: lib/rpmfi.c:662
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "RPM verso %s\n"
# , c-format
-#: lib/rpmfi.c:664
+#: lib/rpmfi.c:665
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "No consegui abrir: %s\n"
@@ -2738,32 +2737,19 @@ msgstr "No consegui abrir: %s\n"
# "Content-Type: text/plain; charset=ISO-8859-1\n"
# "Content-Transfer-Encoding: 8-bit\n"
# , c-format
-#: lib/rpmfi.c:734
-#, fuzzy, c-format
-msgid "excluding multilib path %s%s\n"
-msgstr "RPM verso %s\n"
-
-# "Project-Id-Version: rpm-2.5.3\n"
-# "PO-Revision-Date: 1997-09-11 14:00 MET DST\n"
-# "Last-Translator: Arnaldo Carvalho de Melo <acme@conectiva.com.br>\n"
-# "Language-Team: Portuguese <pt@li.org>\n"
-# "MIME-Version: 1.0\n"
-# "Content-Type: text/plain; charset=ISO-8859-1\n"
-# "Content-Transfer-Encoding: 8-bit\n"
-# , c-format
-#: lib/rpmfi.c:800
+#: lib/rpmfi.c:788
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "RPM verso %s\n"
# , c-format
-#: lib/rpmfi.c:810
+#: lib/rpmfi.c:798
#, fuzzy, c-format
msgid "relocating %s to %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
-#: lib/rpmfi.c:889
+#: lib/rpmfi.c:877
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "No consegui abrir: %s\n"
@@ -3324,7 +3310,7 @@ msgstr ""
# "Content-Transfer-Encoding: 8-bit\n"
# , c-format
#. @innercontinue@
-#: lib/transaction.c:925
+#: lib/transaction.c:935
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "RPM verso %s\n"
@@ -3337,7 +3323,7 @@ msgstr "RPM verso %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1034
+#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3350,7 +3336,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1117
+#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3358,16 +3344,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1194
+#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:286
+#: lib/verify.c:287
#, c-format
msgid "missing %c %s"
msgstr ""
-#: lib/verify.c:395
+#: lib/verify.c:396
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "lista dependncias do pacote"
@@ -3535,6 +3521,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
+#: rpmdb/header_internal.c:164
+#, c-format
+msgid "Data type %d not supported\n"
+msgstr ""
+
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr ""
@@ -4110,6 +4101,18 @@ msgstr ""
msgid "DIRECTORY"
msgstr ""
+# "Project-Id-Version: rpm-2.5.3\n"
+# "PO-Revision-Date: 1997-09-11 14:00 MET DST\n"
+# "Last-Translator: Arnaldo Carvalho de Melo <acme@conectiva.com.br>\n"
+# "Language-Team: Portuguese <pt@li.org>\n"
+# "MIME-Version: 1.0\n"
+# "Content-Type: text/plain; charset=ISO-8859-1\n"
+# "Content-Transfer-Encoding: 8-bit\n"
+# , c-format
+#, fuzzy
+#~ msgid "excluding multilib path %s%s\n"
+#~ msgstr "RPM verso %s\n"
+
# , c-format
#, fuzzy
#~ msgid "Finding %s: %s\n"
diff --git a/po/ro.po b/po/ro.po
index 0ca689979..3589ce950 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-12-30 09:42-0500\n"
+"POT-Creation-Date: 2003-01-01 15:20-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:1841
+#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
+#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@@ -1325,66 +1325,66 @@ msgstr ""
msgid "package %s was already added, replacing with %s\n"
msgstr ""
-#: lib/depends.c:395
+#: lib/depends.c:362
msgid "(cached)"
msgstr ""
-#: lib/depends.c:422
+#: lib/depends.c:389
msgid "(rpmrc provides)"
msgstr ""
-#: lib/depends.c:439
+#: lib/depends.c:406
msgid "(rpmlib provides)"
msgstr ""
-#: lib/depends.c:468
+#: lib/depends.c:435
msgid "(db files)"
msgstr ""
-#: lib/depends.c:481
+#: lib/depends.c:448
msgid "(db provides)"
msgstr ""
-#: lib/depends.c:494
+#: lib/depends.c:461
msgid "(db package)"
msgstr ""
-#: lib/depends.c:852
+#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:974
+#: lib/depends.c:937
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
-#: lib/depends.c:1208
+#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1309
+#: lib/depends.c:1267
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1393
+#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1463
+#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1498
+#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1503
+#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1444,37 +1444,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr ""
-#: lib/fsm.c:1245
+#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
-#: lib/fsm.c:1543
+#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1672 lib/fsm.c:1808
+#: lib/fsm.c:1675 lib/fsm.c:1811
#, c-format
msgid "%s saved as %s\n"
msgstr ""
-#: lib/fsm.c:1834
+#: lib/fsm.c:1837
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr ""
-#: lib/fsm.c:1840
+#: lib/fsm.c:1843
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr ""
-#: lib/fsm.c:1850
+#: lib/fsm.c:1853
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr ""
-#: lib/fsm.c:1870
+#: lib/fsm.c:1873
#, c-format
msgid "%s created as %s\n"
msgstr ""
@@ -2091,88 +2091,83 @@ msgstr ""
msgid "generate signature"
msgstr ""
-#: lib/psm.c:254 rpmdb/header_internal.c:164
-#, c-format
-msgid "Data type %d not supported\n"
-msgstr ""
-
-#: lib/psm.c:465
+#: lib/psm.c:278
msgid "source package expected, binary found\n"
msgstr ""
-#: lib/psm.c:582
+#: lib/psm.c:395
msgid "source package contains no .spec file\n"
msgstr ""
-#: lib/psm.c:918
+#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:1001
+#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:1009
+#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:1172
+#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1195
+#: lib/psm.c:1008
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr ""
-#: lib/psm.c:1201
+#: lib/psm.c:1014
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
-#: lib/psm.c:1608
+#: lib/psm.c:1420
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
-#: lib/psm.c:1744
+#: lib/psm.c:1553
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1853
+#: lib/psm.c:1662
msgid "Unable to reload signature header\n"
msgstr ""
-#: lib/psm.c:1899
+#: lib/psm.c:1708
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1908
+#: lib/psm.c:1717
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1956
+#: lib/psm.c:1765
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
-#: lib/psm.c:1957
+#: lib/psm.c:1766
msgid " on file "
msgstr ""
-#: lib/psm.c:2154
+#: lib/psm.c:1949
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
-#: lib/psm.c:2157
+#: lib/psm.c:1952
#, c-format
msgid "%s failed: %s\n"
msgstr ""
@@ -2204,112 +2199,116 @@ msgid "net shared "
msgstr ""
#: lib/query.c:258
-msgid "(no state) "
+msgid "wrong color "
msgstr ""
#: lib/query.c:261
+msgid "(no state) "
+msgstr ""
+
+#: lib/query.c:264
#, c-format
msgid "(unknown %3d) "
msgstr ""
-#: lib/query.c:279
+#: lib/query.c:282
msgid "package has not file owner/group lists\n"
msgstr ""
-#: lib/query.c:312
+#: lib/query.c:315
msgid "package has neither file owner or id lists\n"
msgstr ""
-#: lib/query.c:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
-#: lib/query.c:455
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr ""
-#: lib/query.c:465
+#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:498 lib/rpminstall.c:608
+#: lib/query.c:501 lib/rpminstall.c:608
#, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr ""
-#: lib/query.c:527
+#: lib/query.c:530
msgid "no packages\n"
msgstr ""
-#: lib/query.c:547
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
-#: lib/query.c:557
+#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr ""
-#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
+#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, c-format
msgid "malformed %s: %s\n"
msgstr ""
-#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
+#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, c-format
msgid "no package matches %s: %s\n"
msgstr ""
-#: lib/query.c:665
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr ""
-#: lib/query.c:676
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr ""
-#: lib/query.c:710
+#: lib/query.c:713
#, c-format
msgid "file %s: %s\n"
msgstr ""
-#: lib/query.c:714
+#: lib/query.c:717
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
-#: lib/query.c:741
+#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
-#: lib/query.c:744
+#: lib/query.c:747
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:749
+#: lib/query.c:752
#, c-format
msgid "record %u could not be read\n"
msgstr ""
-#: lib/query.c:760 lib/rpminstall.c:779
+#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr ""
-#: lib/rpmal.c:695
+#: lib/rpmal.c:692
msgid "(added files)"
msgstr ""
-#: lib/rpmal.c:774
+#: lib/rpmal.c:770
msgid "(added provide)"
msgstr ""
@@ -2432,36 +2431,31 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr ""
-#: lib/rpmfi.c:657
+#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr ""
-#: lib/rpmfi.c:661
+#: lib/rpmfi.c:662
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
-#: lib/rpmfi.c:664
+#: lib/rpmfi.c:665
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
-#: lib/rpmfi.c:734
-#, c-format
-msgid "excluding multilib path %s%s\n"
-msgstr ""
-
-#: lib/rpmfi.c:800
+#: lib/rpmfi.c:788
#, c-format
msgid "excluding %s %s\n"
msgstr ""
-#: lib/rpmfi.c:810
+#: lib/rpmfi.c:798
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/rpmfi.c:889
+#: lib/rpmfi.c:877
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
@@ -2971,7 +2965,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:925
+#: lib/transaction.c:935
#, c-format
msgid "excluding directory %s\n"
msgstr ""
@@ -2984,7 +2978,7 @@ msgstr ""
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1034
+#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -2997,7 +2991,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1117
+#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3005,16 +2999,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1194
+#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:286
+#: lib/verify.c:287
#, c-format
msgid "missing %c %s"
msgstr ""
-#: lib/verify.c:395
+#: lib/verify.c:396
#, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr ""
@@ -3180,6 +3174,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
+#: rpmdb/header_internal.c:164
+#, c-format
+msgid "Data type %d not supported\n"
+msgstr ""
+
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr ""
diff --git a/po/rpm.pot b/po/rpm.pot
index 23492c622..da2f06530 100644
--- a/po/rpm.pot
+++ b/po/rpm.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2002-12-30 09:42-0500\n"
+"POT-Creation-Date: 2003-01-01 15:20-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:1841
+#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
+#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@@ -1331,66 +1331,66 @@ msgstr ""
msgid "package %s was already added, replacing with %s\n"
msgstr ""
-#: lib/depends.c:395
+#: lib/depends.c:362
msgid "(cached)"
msgstr ""
-#: lib/depends.c:422
+#: lib/depends.c:389
msgid "(rpmrc provides)"
msgstr ""
-#: lib/depends.c:439
+#: lib/depends.c:406
msgid "(rpmlib provides)"
msgstr ""
-#: lib/depends.c:468
+#: lib/depends.c:435
msgid "(db files)"
msgstr ""
-#: lib/depends.c:481
+#: lib/depends.c:448
msgid "(db provides)"
msgstr ""
-#: lib/depends.c:494
+#: lib/depends.c:461
msgid "(db package)"
msgstr ""
-#: lib/depends.c:852
+#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:974
+#: lib/depends.c:937
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
-#: lib/depends.c:1208
+#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1309
+#: lib/depends.c:1267
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1393
+#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1463
+#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1498
+#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1503
+#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1450,37 +1450,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr ""
-#: lib/fsm.c:1245
+#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
-#: lib/fsm.c:1543
+#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1672 lib/fsm.c:1808
+#: lib/fsm.c:1675 lib/fsm.c:1811
#, c-format
msgid "%s saved as %s\n"
msgstr ""
-#: lib/fsm.c:1834
+#: lib/fsm.c:1837
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr ""
-#: lib/fsm.c:1840
+#: lib/fsm.c:1843
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr ""
-#: lib/fsm.c:1850
+#: lib/fsm.c:1853
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr ""
-#: lib/fsm.c:1870
+#: lib/fsm.c:1873
#, c-format
msgid "%s created as %s\n"
msgstr ""
@@ -2097,88 +2097,83 @@ msgstr ""
msgid "generate signature"
msgstr ""
-#: lib/psm.c:254 rpmdb/header_internal.c:164
-#, c-format
-msgid "Data type %d not supported\n"
-msgstr ""
-
-#: lib/psm.c:465
+#: lib/psm.c:278
msgid "source package expected, binary found\n"
msgstr ""
-#: lib/psm.c:582
+#: lib/psm.c:395
msgid "source package contains no .spec file\n"
msgstr ""
-#: lib/psm.c:918
+#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:1001
+#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:1009
+#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:1172
+#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1195
+#: lib/psm.c:1008
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr ""
-#: lib/psm.c:1201
+#: lib/psm.c:1014
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
-#: lib/psm.c:1608
+#: lib/psm.c:1420
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
-#: lib/psm.c:1744
+#: lib/psm.c:1553
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1853
+#: lib/psm.c:1662
msgid "Unable to reload signature header\n"
msgstr ""
-#: lib/psm.c:1899
+#: lib/psm.c:1708
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1908
+#: lib/psm.c:1717
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1956
+#: lib/psm.c:1765
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
-#: lib/psm.c:1957
+#: lib/psm.c:1766
msgid " on file "
msgstr ""
-#: lib/psm.c:2154
+#: lib/psm.c:1949
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
-#: lib/psm.c:2157
+#: lib/psm.c:1952
#, c-format
msgid "%s failed: %s\n"
msgstr ""
@@ -2210,112 +2205,116 @@ msgid "net shared "
msgstr ""
#: lib/query.c:258
-msgid "(no state) "
+msgid "wrong color "
msgstr ""
#: lib/query.c:261
+msgid "(no state) "
+msgstr ""
+
+#: lib/query.c:264
#, c-format
msgid "(unknown %3d) "
msgstr ""
-#: lib/query.c:279
+#: lib/query.c:282
msgid "package has not file owner/group lists\n"
msgstr ""
-#: lib/query.c:312
+#: lib/query.c:315
msgid "package has neither file owner or id lists\n"
msgstr ""
-#: lib/query.c:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
-#: lib/query.c:455
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr ""
-#: lib/query.c:465
+#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:498 lib/rpminstall.c:608
+#: lib/query.c:501 lib/rpminstall.c:608
#, c-format
msgid "%s: not an rpm package (or package manifest): %s\n"
msgstr ""
-#: lib/query.c:527
+#: lib/query.c:530
msgid "no packages\n"
msgstr ""
-#: lib/query.c:547
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
-#: lib/query.c:557
+#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr ""
-#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
+#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, c-format
msgid "malformed %s: %s\n"
msgstr ""
-#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
+#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, c-format
msgid "no package matches %s: %s\n"
msgstr ""
-#: lib/query.c:665
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr ""
-#: lib/query.c:676
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr ""
-#: lib/query.c:710
+#: lib/query.c:713
#, c-format
msgid "file %s: %s\n"
msgstr ""
-#: lib/query.c:714
+#: lib/query.c:717
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
-#: lib/query.c:741
+#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
-#: lib/query.c:744
+#: lib/query.c:747
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:749
+#: lib/query.c:752
#, c-format
msgid "record %u could not be read\n"
msgstr ""
-#: lib/query.c:760 lib/rpminstall.c:779
+#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr ""
-#: lib/rpmal.c:695
+#: lib/rpmal.c:692
msgid "(added files)"
msgstr ""
-#: lib/rpmal.c:774
+#: lib/rpmal.c:770
msgid "(added provide)"
msgstr ""
@@ -2438,36 +2437,31 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr ""
-#: lib/rpmfi.c:657
+#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr ""
-#: lib/rpmfi.c:661
+#: lib/rpmfi.c:662
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
-#: lib/rpmfi.c:664
+#: lib/rpmfi.c:665
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
-#: lib/rpmfi.c:734
-#, c-format
-msgid "excluding multilib path %s%s\n"
-msgstr ""
-
-#: lib/rpmfi.c:800
+#: lib/rpmfi.c:788
#, c-format
msgid "excluding %s %s\n"
msgstr ""
-#: lib/rpmfi.c:810
+#: lib/rpmfi.c:798
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/rpmfi.c:889
+#: lib/rpmfi.c:877
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
@@ -2977,7 +2971,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:925
+#: lib/transaction.c:935
#, c-format
msgid "excluding directory %s\n"
msgstr ""
@@ -2990,7 +2984,7 @@ msgstr ""
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1034
+#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3003,7 +2997,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1117
+#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3011,16 +3005,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1194
+#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:286
+#: lib/verify.c:287
#, c-format
msgid "missing %c %s"
msgstr ""
-#: lib/verify.c:395
+#: lib/verify.c:396
#, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr ""
@@ -3186,6 +3180,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
+#: rpmdb/header_internal.c:164
+#, c-format
+msgid "Data type %d not supported\n"
+msgstr ""
+
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr ""
diff --git a/po/ru.po b/po/ru.po
index 57cd1dde9..df0161321 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-12-30 09:42-0500\n"
+"POT-Creation-Date: 2003-01-01 15:20-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:1841
+#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
+#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr "úÁĐÉÓÁÎ: %s\n"
@@ -1361,47 +1361,47 @@ msgstr "ÎĹ ŐÄÁĚĎÓŘ - "
msgid "package %s was already added, replacing with %s\n"
msgstr "ĐÁËĹÔ %s ŐÖĹ ÂŮĚ ÄĎÂÁ×ĚĹÎ, ÚÁÍĹÎŃĹÔÓŃ %s\n"
-#: lib/depends.c:395
+#: lib/depends.c:362
msgid "(cached)"
msgstr "(ËÜŰÉŇĎ×ÁÎ)"
-#: lib/depends.c:422
+#: lib/depends.c:389
msgid "(rpmrc provides)"
msgstr "(rpmrc provides)"
-#: lib/depends.c:439
+#: lib/depends.c:406
msgid "(rpmlib provides)"
msgstr "(rpmlib provides)"
-#: lib/depends.c:468
+#: lib/depends.c:435
msgid "(db files)"
msgstr "(db files)"
-#: lib/depends.c:481
+#: lib/depends.c:448
msgid "(db provides)"
msgstr "(db provides)"
-#: lib/depends.c:494
+#: lib/depends.c:461
msgid "(db package)"
msgstr "(db package)"
-#: lib/depends.c:852
+#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr "ÉÇÎĎŇÉŇĎ×ÁÔŘ ÚÁ×ÉÓÉÍĎÓÔ(É) ÉÍŁÎ ĐÁËĹÔÁ(Ď×) [%d]\t%s -> %s\n"
-#: lib/depends.c:974
+#: lib/depends.c:937
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "ŐÄÁĚŃĹÔÓŃ %s \"%s\" ÉÚ ÓĎŇÔÉŇĎ×ÁÎÎŮČ Ó×ŃÚĹĘ.\n"
#. Record all relations.
-#: lib/depends.c:1208
+#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr "========== ÚÁĐÉÓŘ ŐĐĎŇŃÄĎŢĹÎÎŮČ ÚÁ×ÉÓÉÍĎÓÔĹĘ\n"
#. T4. Scan for zeroes.
-#: lib/depends.c:1309
+#: lib/depends.c:1267
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
@@ -1409,20 +1409,20 @@ msgstr ""
"========== ÓĎŇÔÉŇĎ×ËÁ ĐÁËĹÔĎ× (ĎŢĹŇĹÄÎĎÓÔŘ, #predecessors, #succesors, "
"ÄĹŇĹ×Ď, ÇĚŐÂÉÎÁ)\n"
-#: lib/depends.c:1393
+#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr "========== ÔĎĚŘËĎ ĐĎÓĚĹÄĎ×ÁÔĹĚÉ (× ĐĎŇŃÄËĹ ĐŇĹÄÓÔÁ×ĚĹÎÉŃ)\n"
-#: lib/depends.c:1463
+#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr "ăéëě:\n"
-#: lib/depends.c:1498
+#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr "========== ĐŇĎÄĎĚÖĹÎÉĹ ŐĐĎŇŃÄĎŢĹÎÉŃ ...\n"
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1503
+#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr "ĎŰÉÂËÁ rpmtsOrder, ĎÓÔÁĚĎÓŘ %d ÜĚĹÍĹÎÔĎ×\n"
@@ -1482,37 +1482,37 @@ msgstr "========= ëÁÔÁĚĎÇÉ, ËĎÔĎŇŮĹ ÎĹ ×ËĚŔŢĹÎŮ × ĐÁËĹÔ Ń×ÎĎ:\n"
msgid "%10d %s\n"
msgstr "%10d %s\n"
-#: lib/fsm.c:1245
+#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr "ËÁÔÁĚĎÇ %s ÓĎÚÄÁÎ Ó ĐŇÁ×ÁÍÉ ÄĎÓÔŐĐÁ %04o.\n"
-#: lib/fsm.c:1543
+#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr "ĆÁĘĚ ÁŇČÉ×Á %s ÎĹ ÎÁĘÄĹÎ × ÓĐÉÓËĹ ĆÁĘĚĎ× ÚÁÇĎĚĎ×ËÁ\n"
-#: lib/fsm.c:1672 lib/fsm.c:1808
+#: lib/fsm.c:1675 lib/fsm.c:1811
#, c-format
msgid "%s saved as %s\n"
msgstr "%s ÓĎČŇÁÎĹÎ ËÁË %s\n"
-#: lib/fsm.c:1834
+#: lib/fsm.c:1837
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s ÎĹ×ĎÚÍĎÖÎĎ ŐÄÁĚÉÔŘ %s: ËÁÔÁĚĎÇ ÎĹ ĐŐÓÔ\n"
-#: lib/fsm.c:1840
+#: lib/fsm.c:1843
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s ĎŰÉÂËÁ ŐÄÁĚĹÎÉŃ ËÁÔÁĚĎÇÁ %s: %s\n"
-#: lib/fsm.c:1850
+#: lib/fsm.c:1853
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s ÎĹ×ĎÚÍĎÖÎĎ ŐÄÁĚÉÔŘ %s: %s\n"
-#: lib/fsm.c:1870
+#: lib/fsm.c:1873
#, c-format
msgid "%s created as %s\n"
msgstr "%s ÓĎÚÄÁÎ ËÁË %s\n"
@@ -2139,88 +2139,83 @@ msgstr "ĐĎÄĐÉÓÁÔŘ ĐÁËĹÔ (ÔĎ ÖĹ ÓÁÍĎĹ ŢÔĎ --addsign)"
msgid "generate signature"
msgstr "ÇĹÎĹŇÉŇĎ×ÁÔŘ ĐĎÄĐÉÓŘ"
-#: lib/psm.c:254 rpmdb/header_internal.c:164
-#, c-format
-msgid "Data type %d not supported\n"
-msgstr "ôÉĐ ÄÁÎÎŮČ %d ÎĹ ĐĎÄÄĹŇÖÉ×ÁĹÔÓŃ\n"
-
-#: lib/psm.c:465
+#: lib/psm.c:278
msgid "source package expected, binary found\n"
msgstr "ĎÂÎÁŇŐÖĹÎ Ä×ĎÉŢÎŮĘ ĐÁËĹÔ ×ÍĹÓÔĎ ĎÖÉÄÁĹÍĎÇĎ ÉÓČĎÄÎĎÇĎ\n"
-#: lib/psm.c:582
+#: lib/psm.c:395
msgid "source package contains no .spec file\n"
msgstr "ÉÓČĎÄÎŮĘ ĐÁËĹÔ ÎĹ ÓĎÄĹŇÖÉÔ ĆÁĘĚÁ ÓĐĹĂÉĆÉËÁĂÉÉ\n"
-#: lib/psm.c:918
+#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr "%s: waitpid(%d) rc %d status %x\n"
-#: lib/psm.c:1001
+#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr "%s: %s(%s-%s-%s) ĐŇĎĐŐÓËÁĹÔÓŃ ĚÉŰÎÉĘ \"%s\".\n"
-#: lib/psm.c:1009
+#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr "%s: %s(%s-%s-%s) %sÚÁĐŐÓË ÓÉÎČŇĎÎÎĎÇĎ ÓĂĹÎÁŇÉŃ\n"
-#: lib/psm.c:1172
+#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
-#: lib/psm.c:1195
+#: lib/psm.c:1008
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "%s(%s-%s-%s) ĎŰÉÂËÁ ÓĂĹÎÁŇÉŃ, waitpid(%d) rc %d: %s\n"
-#: lib/psm.c:1201
+#: lib/psm.c:1014
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "%s(%s-%s-%s) ĎŰÉÂËÁ ×ŮĐĎĚÎĹÎÉŃ ÓĂĹÎÁŇÉŃ, ËĎÄ ×ĎÚ×ŇÁÔÁ %d\n"
-#: lib/psm.c:1608
+#: lib/psm.c:1420
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s ÓĎÄĹŇÖÉÔ %d ĆÁĘĚĎ×, ŇĹÚŐĚŘÔÁÔ ĐŇĎ×ĹŇËÉ: %d\n"
-#: lib/psm.c:1744
+#: lib/psm.c:1553
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr "%s: %s ĎŰÉÂËÁ ÓĂĹÎÁŇÉŃ (%d), ĐŇĎĐŐÓËÁĹÔÓŃ %s\n"
-#: lib/psm.c:1853
+#: lib/psm.c:1662
msgid "Unable to reload signature header\n"
msgstr "îĹ×ĎÚÍĎÖÎĎ ĐĹŇĹÚÁÇŇŐÚÉÔŘ ÚÁÇĎĚĎ×ĎË ĐĎÄĐÉÓÉ\n"
-#: lib/psm.c:1899
+#: lib/psm.c:1708
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "ĐĎĚŘÚĎ×ÁÔĹĚŘ %s ÎĹ ÓŐÝĹÓÔ×ŐĹÔ - ÉÓĐĎĚŘÚŐĹÔÓŃ root\n"
-#: lib/psm.c:1908
+#: lib/psm.c:1717
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "ÇŇŐĐĐÁ %s ÎĹ ÓŐÝĹÓÔ×ŐĹÔ - ÉÓĐĎĚŘÚŐĹÔÓŃ root\n"
-#: lib/psm.c:1956
+#: lib/psm.c:1765
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "ŇÁÓĐÁËĎ×ËÁ ÁŇČÉ×Á ÎĹ ŐÄÁĚÁÓŘ%s%s: %s\n"
-#: lib/psm.c:1957
+#: lib/psm.c:1766
msgid " on file "
msgstr " ÎÁ ĆÁĘĚĹ "
-#: lib/psm.c:2154
+#: lib/psm.c:1949
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s ĎŰÉÂËÁ ÎÁ ĆÁĘĚĹ %s: %s\n"
-#: lib/psm.c:2157
+#: lib/psm.c:1952
#, c-format
msgid "%s failed: %s\n"
msgstr "%s ÎĹ ŐÄÁĚĎÓŘ: %s\n"
@@ -2252,112 +2247,116 @@ msgid "net shared "
msgstr "ÓĹÔĹ×ĎĘ "
#: lib/query.c:258
+msgid "wrong color "
+msgstr ""
+
+#: lib/query.c:261
msgid "(no state) "
msgstr "(ÓĎÓÔ. ÎĹÔ) "
-#: lib/query.c:261
+#: lib/query.c:264
#, c-format
msgid "(unknown %3d) "
msgstr "(ÎĹÉÚ×. %3d) "
-#: lib/query.c:279
+#: lib/query.c:282
msgid "package has not file owner/group lists\n"
msgstr "ĐÁËĹÔ ÎĹ ÓĎÄĹŇÖÉÔ ÓĐÉÓËĎ× ×ĚÁÄĹĚŘĂĹ×/ÇŇŐĐĐ-×ĚÁÄĹĚŘĂĹ× ĆÁĘĚĎ×\n"
-#: lib/query.c:312
+#: lib/query.c:315
msgid "package has neither file owner or id lists\n"
msgstr "ĐÁËĹÔ ÎĹ ÓĎÄĹŇÖÉÔ ÓĐÉÓËĎ× ÎÉ ČĎÚŃĹ× ĆÁĘĚĎ×, ÎÉ ÉČ ID\n"
-#: lib/query.c:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "ÎĹ×ĎÚÍĎÖÎĎ ĎÔËŇŮÔŘ %s: %s\n"
-#: lib/query.c:455
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "ĎŰÉÂËÁ ÚÁĐŇĎÓÁ %s\n"
-#: lib/query.c:465
+#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr "ÚÁĐŇĎÓŮ Ë ÉÓČĎÄÎŮÍ ĐÁËĹÔÁÍ × ÓÔÁŇĎÍ ĆĎŇÍÁÔĹ ÎĹ ĐĎÄÄĹŇÖÉ×ÁŔÔÓŃ\n"
-#: lib/query.c:498 lib/rpminstall.c:608
+#: lib/query.c:501 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:527
+#: lib/query.c:530
msgid "no packages\n"
msgstr "ÎĹÔ ĐÁËĹÔĎ×\n"
-#: lib/query.c:547
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "ÇŇŐĐĐÁ %s ÎĹ ÓĎÄĹŇÖÉÔ ÎÉËÁËÉČ ĐÁËĹÔĎ×\n"
-#: lib/query.c:557
+#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr "ÎÉ ĎÄÉÎ ÉÚ ĐÁËĹÔĎ× ÎĹ ×Ú×ĎÄÉÔ ÔŇÉÇÇĹŇ %s\n"
-#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
+#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, c-format
msgid "malformed %s: %s\n"
msgstr "ĎŰÉÂËÁ ĆĎŇÍÁÔÁ %s: %s.\n"
-#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
+#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, c-format
msgid "no package matches %s: %s\n"
msgstr "ÎÉ ĎÄÉÎ ĐÁËĹÔ ÎĹ ĐĎÄČĎÄÉÔ Ë %s: %s\n"
-#: lib/query.c:665
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "ÎÉ ĎÄÉÎ ÉÚ ĐÁËĹÔĎ× ÎĹ ÔŇĹÂŐĹÔ %s\n"
-#: lib/query.c:676
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "ÎÉ ĎÄÉÎ ÉÚ ĐÁËĹÔĎ× ÎĹ ĐŇĹÄĎÓÔÁ×ĚŃĹÔ %s\n"
-#: lib/query.c:710
+#: lib/query.c:713
#, c-format
msgid "file %s: %s\n"
msgstr "ĆÁĘĚ %s: %s\n"
-#: lib/query.c:714
+#: lib/query.c:717
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "ĆÁĘĚ %s ÎĹ ĐŇÉÎÁÄĚĹÖÉÔ ÎÉ ĎÄÎĎÍŐ ÉÚ ĐÁËĹÔĎ×\n"
-#: lib/query.c:741
+#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr "ÎĹ×ĹŇÎŮĘ ÎĎÍĹŇ ĐÁËĹÔÁ: %s\n"
-#: lib/query.c:744
+#: lib/query.c:747
#, c-format
msgid "package record number: %u\n"
msgstr "ÎĎÍĹŇ ÚÁĐÉÓÉ ĐÁËĹÔÁ: %u\n"
-#: lib/query.c:749
+#: lib/query.c:752
#, c-format
msgid "record %u could not be read\n"
msgstr "ÎĹ×ĎÚÍĎÖÎĎ ĐŇĎŢÉÔÁÔŘ ÚÁĐÉÓŘ %u\n"
-#: lib/query.c:760 lib/rpminstall.c:779
+#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "ĐÁËĹÔ %s ÎĹ ŐÓÔÁÎĎ×ĚĹÎ\n"
-#: lib/rpmal.c:695
+#: lib/rpmal.c:692
msgid "(added files)"
msgstr "(ĆÁĘĚŮ ÄĎÂÁ×ĚĹÎŮ)"
-#: lib/rpmal.c:774
+#: lib/rpmal.c:770
msgid "(added provide)"
msgstr "(added provide)"
@@ -2483,36 +2482,31 @@ msgstr " %s A %s\tB %s\n"
msgid "package %s has unsatisfied %s: %s\n"
msgstr "ĐÁËĹÔ %s ÓĎÄĹŇÖÉÔ ÎĹŐÄĎ×ĚĹÔ×ĎŇĹÎÎŮĹ %s: %s\n"
-#: lib/rpmfi.c:657
+#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr "========== ĐĹŇĹÍĹÝĹÎÉĘ\n"
-#: lib/rpmfi.c:661
+#: lib/rpmfi.c:662
#, c-format
msgid "%5d exclude %s\n"
msgstr "%5d ÉÓËĚŔŢĹÎ %s\n"
-#: lib/rpmfi.c:664
+#: lib/rpmfi.c:665
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%5d ĐĹŇĹÍĹÝĹÎÉĹ %s -> %s\n"
-#: lib/rpmfi.c:734
-#, c-format
-msgid "excluding multilib path %s%s\n"
-msgstr "ÉÓËĚŔŢÁĹÔÓŃ ÍÎĎÇĎÂÉÂĚÉĎÔĹŢÎŮĘ ĐŐÔŘ %s%s\n"
-
-#: lib/rpmfi.c:800
+#: lib/rpmfi.c:788
#, c-format
msgid "excluding %s %s\n"
msgstr "ÉÓËĚŔŢÁĹÔÓŃ %s %s\n"
-#: lib/rpmfi.c:810
+#: lib/rpmfi.c:798
#, c-format
msgid "relocating %s to %s\n"
msgstr "ĐĹŇĹÍĹÝÁĹÔÓŃ %s × %s\n"
-#: lib/rpmfi.c:889
+#: lib/rpmfi.c:877
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "ĐĹŇĹÍĹÝÁĹÔÓŃ ËÁÔÁĚĎÇ %s × %s\n"
@@ -3023,7 +3017,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr "%s ĐŇĎĐŐÝĹÎ ÉÚ-ÚÁ ĆĚÁÇÁ missingok\n"
#. @innercontinue@
-#: lib/transaction.c:925
+#: lib/transaction.c:935
#, c-format
msgid "excluding directory %s\n"
msgstr "ÉÓËĚŔŢÁĹÔÓŃ ËÁÔÁĚĎÇ %s\n"
@@ -3036,7 +3030,7 @@ msgstr "ÉÓËĚŔŢÁĹÔÓŃ ËÁÔÁĚĎÇ %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1034
+#: lib/transaction.c:1047
#, fuzzy, c-format
msgid "sanity checking %d elements\n"
msgstr "ĐŇĎ×eŇŃĹÔÓŃ %d ÜĚĹÍĹÎÔĎ×\n"
@@ -3049,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:1117
+#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr "ĐĎÄÓŢÉÔŮ×ÁĹÔÓŃ ĎÔĐĹŢÁÔĎË(ËÉ) %d ĆÁĘĚÁ(Ď×)\n"
@@ -3057,16 +3051,16 @@ msgstr "ĐĎÄÓŢÉÔŮ×ÁĹÔÓŃ ĎÔĐĹŢÁÔĎË(ËÉ) %d ĆÁĘĚÁ(Ď×)\n"
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1194
+#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr "ĐĎÄÓŢÉÔŮ×ÁĹÔÓŃ ÄÉÓĐĎÚÉĂÉŃ ĆÁĘĚĎ×\n"
-#: lib/verify.c:286
+#: lib/verify.c:287
#, c-format
msgid "missing %c %s"
msgstr "ĎÔÓŐÔÓÔ×ŐĹÔ %c %s"
-#: lib/verify.c:395
+#: lib/verify.c:396
#, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "îĹŐÄĎ×ĚĹÔ×ĎŇĹÎÎŮĹ ÚÁ×ÉÓÉÍĎÓÔÉ ÄĚŃ %s: "
@@ -3233,6 +3227,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
+#: rpmdb/header_internal.c:164
+#, c-format
+msgid "Data type %d not supported\n"
+msgstr "ôÉĐ ÄÁÎÎŮČ %d ÎĹ ĐĎÄÄĹŇÖÉ×ÁĹÔÓŃ\n"
+
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr "ÉÎÉĂÉÁĚÉÚÉŇĎ×ÁÔŘ ÂÁÚŐ ÄÁÎÎŮČ"
@@ -3789,6 +3788,9 @@ msgstr "ÉÓĐĎĚŘÚĎ×ÁÔŘ ÂÁÚŐ ÄÁÎÎŮČ × ëáôáěďçĺ"
msgid "DIRECTORY"
msgstr "ëáôáěďç"
+#~ msgid "excluding multilib path %s%s\n"
+#~ msgstr "ÉÓËĚŔŢÁĹÔÓŃ ÍÎĎÇĎÂÉÂĚÉĎÔĹŢÎŮĘ ĐŐÔŘ %s%s\n"
+
#~ msgid "Finding %s: %s\n"
#~ msgstr "éÄĹÔ ĐĎÉÓË %s: %s\n"
diff --git a/po/sk.po b/po/sk.po
index 36181a4e1..c766e7f82 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-12-30 09:42-0500\n"
+"POT-Creation-Date: 2003-01-01 15:20-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:1841
+#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
+#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapísané: %s\n"
@@ -1386,70 +1386,70 @@ msgstr " zlyhalo - "
msgid "package %s was already added, replacing with %s\n"
msgstr "balík %s nie je nainštalovaný\n"
-#: lib/depends.c:395
+#: lib/depends.c:362
msgid "(cached)"
msgstr ""
-#: lib/depends.c:422
+#: lib/depends.c:389
msgid "(rpmrc provides)"
msgstr ""
-#: lib/depends.c:439
+#: lib/depends.c:406
#, fuzzy
msgid "(rpmlib provides)"
msgstr "súbor %s nie je vlastnený žiadnym balíkom\n"
-#: lib/depends.c:468
+#: lib/depends.c:435
#, fuzzy
msgid "(db files)"
msgstr "chybný stav súboru: %s"
-#: lib/depends.c:481
+#: lib/depends.c:448
#, fuzzy
msgid "(db provides)"
msgstr "Poskytuje:"
-#: lib/depends.c:494
+#: lib/depends.c:461
#, fuzzy
msgid "(db package)"
msgstr "nájdených %d balíkov\n"
-#: lib/depends.c:852
+#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:974
+#: lib/depends.c:937
#, 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:1208
+#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1309
+#: lib/depends.c:1267
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1393
+#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1463
+#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1498
+#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1503
+#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1512,37 +1512,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr "riadok %d: %s"
-#: lib/fsm.c:1245
+#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
-#: lib/fsm.c:1543
+#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1672 lib/fsm.c:1808
+#: lib/fsm.c:1675 lib/fsm.c:1811
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "varovanie: %s uchovaný ako %s"
-#: lib/fsm.c:1834
+#: lib/fsm.c:1837
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "nie je možné odstrániť %s - adresár nie je prázdny"
-#: lib/fsm.c:1840
+#: lib/fsm.c:1843
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "rmdir %s zlyhalo: %s"
-#: lib/fsm.c:1850
+#: lib/fsm.c:1853
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "otvorenie %s zlyhalo\n"
-#: lib/fsm.c:1870
+#: lib/fsm.c:1873
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "varovanie: %s vytvorené ako %s"
@@ -2218,91 +2218,86 @@ msgstr "podpísať balík (zničiť aktuálny podpis)"
msgid "generate signature"
msgstr "vytvoriť PGP/GPG podpis"
-#: lib/psm.c:254 rpmdb/header_internal.c:164
-#, c-format
-msgid "Data type %d not supported\n"
-msgstr "Typ údajov %d nie je podorovaný\n"
-
-#: lib/psm.c:465
+#: lib/psm.c:278
#, fuzzy
msgid "source package expected, binary found\n"
msgstr "očakávaný zdrojový balík, nájdený binárny"
-#: lib/psm.c:582
+#: lib/psm.c:395
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "zdrojový balík neobsahuje žiadny .spec súbor"
-#: lib/psm.c:918
+#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:1001
+#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:1009
+#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:1172
+#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1195
+#: lib/psm.c:1008
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "%s vynechané - prenos zlyhal - %s\n"
-#: lib/psm.c:1201
+#: lib/psm.c:1014
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "vykonanie skriptu zlyhalo"
-#: lib/psm.c:1608
+#: lib/psm.c:1420
#, 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:1744
+#: lib/psm.c:1553
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1853
+#: lib/psm.c:1662
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Nie je možné prečítať ikonu: %s"
-#: lib/psm.c:1899
+#: lib/psm.c:1708
#, fuzzy, c-format
msgid "user %s does not exist - using root\n"
msgstr "používateľ %s neexistuje - použije sa root"
-#: lib/psm.c:1908
+#: lib/psm.c:1717
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "skupina %s neexistuje - použije sa root"
-#: lib/psm.c:1956
+#: lib/psm.c:1765
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "rozbalenie archívu zlyhalo%s%s: %s"
-#: lib/psm.c:1957
+#: lib/psm.c:1766
msgid " on file "
msgstr " pre súbor "
-#: lib/psm.c:2154
+#: lib/psm.c:1949
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "nepodarilo sa otvoriť %s: %s"
-#: lib/psm.c:2157
+#: lib/psm.c:1952
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s zlyhalo"
@@ -2334,116 +2329,120 @@ msgid "net shared "
msgstr "zdieľaný "
#: lib/query.c:258
+msgid "wrong color "
+msgstr ""
+
+#: lib/query.c:261
msgid "(no state) "
msgstr "(žiadny stav) "
-#: lib/query.c:261
+#: lib/query.c:264
#, c-format
msgid "(unknown %3d) "
msgstr "(neznámy %d) "
-#: lib/query.c:279
+#: lib/query.c:282
#, 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:312
+#: lib/query.c:315
#, 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:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "otvorenie %s zlyhalo\n"
-#: lib/query.c:455
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "otázka na %s zlyhala\n"
-#: lib/query.c:465
+#: lib/query.c:468
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:498 lib/rpminstall.c:608
+#: lib/query.c:501 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:527
+#: lib/query.c:530
#, fuzzy
msgid "no packages\n"
msgstr "nájdených %d balíkov\n"
-#: lib/query.c:547
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "skupina %s neobsahuje žiadne balíky\n"
-#: lib/query.c:557
+#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr "žiadny z balíkov nespúšťa %s\n"
-#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
+#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "Nie je možné prečítať %s: %s."
-#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
+#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "žiadny z balíkov nespúšťa %s\n"
-#: lib/query.c:665
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "žiadny z balíkov nevyžaduje %s\n"
-#: lib/query.c:676
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "žiadny z balíkov neposkytuje %s\n"
-#: lib/query.c:710
+#: lib/query.c:713
#, c-format
msgid "file %s: %s\n"
msgstr "súbor %s: %s\n"
-#: lib/query.c:714
+#: lib/query.c:717
#, 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:741
+#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr "chybné číslo balíku: %s\n"
-#: lib/query.c:744
+#: lib/query.c:747
#, fuzzy, c-format
msgid "package record number: %u\n"
msgstr "požaduje sa záznam číslo %d\n"
-#: lib/query.c:749
+#: lib/query.c:752
#, 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:760 lib/rpminstall.c:779
+#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "balík %s nie je nainštalovaný\n"
-#: lib/rpmal.c:695
+#: lib/rpmal.c:692
#, fuzzy
msgid "(added files)"
msgstr "chybný stav súboru: %s"
-#: lib/rpmal.c:774
+#: lib/rpmal.c:770
msgid "(added provide)"
msgstr ""
@@ -2568,36 +2567,31 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr "požiadavka balíka %s nie je uspokojená: %s\n"
-#: lib/rpmfi.c:657
+#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr ""
-#: lib/rpmfi.c:661
+#: lib/rpmfi.c:662
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "OS je vynechaný: %s"
-#: lib/rpmfi.c:664
+#: lib/rpmfi.c:665
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "presúva sa %s do %s\n"
-#: lib/rpmfi.c:734
-#, fuzzy, c-format
-msgid "excluding multilib path %s%s\n"
-msgstr "vynecháva sa %s\n"
-
-#: lib/rpmfi.c:800
+#: lib/rpmfi.c:788
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "vynecháva sa %s\n"
-#: lib/rpmfi.c:810
+#: lib/rpmfi.c:798
#, c-format
msgid "relocating %s to %s\n"
msgstr "presúva sa %s do %s\n"
-#: lib/rpmfi.c:889
+#: lib/rpmfi.c:877
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "presúva sa %s do %s\n"
@@ -3121,7 +3115,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr "%s vynechané kvôli príznaku missingok\n"
#. @innercontinue@
-#: lib/transaction.c:925
+#: lib/transaction.c:935
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "vytvára sa adresár %s\n"
@@ -3134,7 +3128,7 @@ msgstr "vytvára sa adresár %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1034
+#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3147,7 +3141,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1117
+#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3155,16 +3149,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1194
+#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:286
+#: lib/verify.c:287
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "chýbajúce %s\n"
-#: lib/verify.c:395
+#: lib/verify.c:396
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "Nevyriešené závislosti pre %s-%s-%s: "
@@ -3330,6 +3324,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
+#: rpmdb/header_internal.c:164
+#, c-format
+msgid "Data type %d not supported\n"
+msgstr "Typ údajov %d nie je podorovaný\n"
+
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr ""
@@ -3884,6 +3883,10 @@ msgid "DIRECTORY"
msgstr ""
#, fuzzy
+#~ msgid "excluding multilib path %s%s\n"
+#~ msgstr "vynecháva sa %s\n"
+
+#, fuzzy
#~ msgid "Finding %s: %s\n"
#~ msgstr "Zisťujú sa požadované vlastnosti...\n"
diff --git a/po/sl.po b/po/sl.po
index 23c592ea2..07d93cbdc 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.358 2002/12/30 14:50:49 jbj Exp $
+# $Id: sl.po,v 1.359 2003/01/01 20:33:32 jbj Exp $
#
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-12-30 09:42-0500\n"
+"POT-Creation-Date: 2003-01-01 15:20-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:1841
+#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
+#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapisano: %s\n"
@@ -1388,71 +1388,71 @@ msgstr " neuspešno - "
msgid "package %s was already added, replacing with %s\n"
msgstr "paket %s-%s-%s je že nameščen"
-#: lib/depends.c:395
+#: lib/depends.c:362
msgid "(cached)"
msgstr ""
-#: lib/depends.c:422
+#: lib/depends.c:389
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %-45s DA (rpmrc ponudbe)\n"
-#: lib/depends.c:439
+#: lib/depends.c:406
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %-45s DA (rpmlib ponudbe)\n"
-#: lib/depends.c:468
+#: lib/depends.c:435
#, fuzzy
msgid "(db files)"
msgstr "poškodovana zbirka podatkov %s"
-#: lib/depends.c:481
+#: lib/depends.c:448
#, fuzzy
msgid "(db provides)"
msgstr "%s: %-45s DA (db ponudbe)\n"
-#: lib/depends.c:494
+#: lib/depends.c:461
#, fuzzy
msgid "(db package)"
msgstr "ni paketov\n"
-#: lib/depends.c:852
+#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:974
+#: lib/depends.c:937
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "odstranjujemo seznam skupin\n"
#. Record all relations.
-#: lib/depends.c:1208
+#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1309
+#: lib/depends.c:1267
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1393
+#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1463
+#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1498
+#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1503
+#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1515,37 +1515,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr "vrstica %d: %s"
-#: lib/fsm.c:1245
+#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
-#: lib/fsm.c:1543
+#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1672 lib/fsm.c:1808
+#: lib/fsm.c:1675 lib/fsm.c:1811
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "opozorilo: %s shranjen kot %s"
-#: lib/fsm.c:1834
+#: lib/fsm.c:1837
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "ni možno odstraniti %s - imenik ni prazen"
-#: lib/fsm.c:1840
+#: lib/fsm.c:1843
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "odstranitev imenika %s je bila neuspešna: %s"
-#: lib/fsm.c:1850
+#: lib/fsm.c:1853
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "odpiranje %s je bilo neuspešno: %s\n"
-#: lib/fsm.c:1870
+#: lib/fsm.c:1873
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "opozorilo: %s ustvarjen kot %s"
@@ -2218,91 +2218,86 @@ msgstr "podpiši paket(e) (trenutni podpis zavrzi)"
msgid "generate signature"
msgstr "izdelava podpisa PGP/GPG"
-#: lib/psm.c:254 rpmdb/header_internal.c:164
-#, c-format
-msgid "Data type %d not supported\n"
-msgstr "Tip podatkov %d ni podprt\n"
-
-#: lib/psm.c:465
+#: lib/psm.c:278
#, fuzzy
msgid "source package expected, binary found\n"
msgstr "pričakovan je bil izvorni paket, najden binarni"
-#: lib/psm.c:582
+#: lib/psm.c:395
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "izvorni paket ne vsebuje datoteke .spec"
-#: lib/psm.c:918
+#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:1001
+#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:1009
+#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:1172
+#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1195
+#: lib/psm.c:1008
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "preskočeno - %s - prenos neuspešen - %s\n"
-#: lib/psm.c:1201
+#: lib/psm.c:1014
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "skript se ni uspešno izvedel"
-#: lib/psm.c:1608
+#: lib/psm.c:1420
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "paket: %s-%s-%s datoteke test = %d\n"
-#: lib/psm.c:1744
+#: lib/psm.c:1553
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1853
+#: lib/psm.c:1662
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Ikone %s ni možno prebrati: %s"
-#: lib/psm.c:1899
+#: lib/psm.c:1708
#, fuzzy, c-format
msgid "user %s does not exist - using root\n"
msgstr "uporabnik %s ne obstaja - uporabljam root"
-#: lib/psm.c:1908
+#: lib/psm.c:1717
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "skupina %s ne obstaja - uporabljam root"
-#: lib/psm.c:1956
+#: lib/psm.c:1765
#, 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:1957
+#: lib/psm.c:1766
msgid " on file "
msgstr " za datoteko "
-#: lib/psm.c:2154
+#: lib/psm.c:1949
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "neuspešno odpiranje %s: %s\n"
-#: lib/psm.c:2157
+#: lib/psm.c:1952
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s neuspešen"
@@ -2334,116 +2329,120 @@ msgid "net shared "
msgstr "omrežni "
#: lib/query.c:258
+msgid "wrong color "
+msgstr ""
+
+#: lib/query.c:261
msgid "(no state) "
msgstr "(brez stanja) "
-#: lib/query.c:261
+#: lib/query.c:264
#, c-format
msgid "(unknown %3d) "
msgstr "(neznano %3d) "
-#: lib/query.c:279
+#: lib/query.c:282
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "paket ne vsebuje ne lastnika datotek niti seznamov id"
-#: lib/query.c:312
+#: lib/query.c:315
#, fuzzy
msgid "package has neither file owner or id lists\n"
msgstr "paket ne vsebuje ne lastnika datotek niti seznamov id"
-#: lib/query.c:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "odpiranje %s je bilo neuspešno: %s\n"
-#: lib/query.c:455
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "poizvedba po %s je bila neuspešna\n"
-#: lib/query.c:465
+#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr "poizvedba po izvornih paketih v stari obliki ni možna\n"
-#: lib/query.c:498 lib/rpminstall.c:608
+#: lib/query.c:501 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:527
+#: lib/query.c:530
#, fuzzy
msgid "no packages\n"
msgstr "ni paketov\n"
-#: lib/query.c:547
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "skupina %s ne vsebuje nobenega paketa\n"
-#: lib/query.c:557
+#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr "noben paket ne proži %s\n"
-#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
+#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "Neuspešno branje %s: %s."
-#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
+#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "noben paket ne proži %s\n"
-#: lib/query.c:665
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "noben paket ne potrebuje %s\n"
-#: lib/query.c:676
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "noben paket ne nudi %s\n"
-#: lib/query.c:710
+#: lib/query.c:713
#, c-format
msgid "file %s: %s\n"
msgstr "datoteka %s: %s\n"
-#: lib/query.c:714
+#: lib/query.c:717
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "datoteka %s ni del nobenega paketa\n"
-#: lib/query.c:741
+#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr "neveljavna številka paketa: %s\n"
-#: lib/query.c:744
+#: lib/query.c:747
#, fuzzy, c-format
msgid "package record number: %u\n"
msgstr "številka zapisa paketa: %d\n"
-#: lib/query.c:749
+#: lib/query.c:752
#, fuzzy, c-format
msgid "record %u could not be read\n"
msgstr "zapisa %d ni možno prebrati\n"
-#: lib/query.c:760 lib/rpminstall.c:779
+#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "paket %s ni nameščen\n"
-#: lib/rpmal.c:695
+#: lib/rpmal.c:692
#, fuzzy
msgid "(added files)"
msgstr "poškodovana zbirka podatkov %s"
-#: lib/rpmal.c:774
+#: lib/rpmal.c:770
#, fuzzy
msgid "(added provide)"
msgstr "%s: %-45s DA (dodane ponudbe)\n"
@@ -2570,36 +2569,31 @@ msgstr " %s A %s\tB %s\n"
msgid "package %s has unsatisfied %s: %s\n"
msgstr "Za paket %s-%s-%s: zahteva %s ni zadovoljena\n"
-#: lib/rpmfi.c:657
+#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr ""
-#: lib/rpmfi.c:661
+#: lib/rpmfi.c:662
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "OS je izključen: %s"
-#: lib/rpmfi.c:664
+#: lib/rpmfi.c:665
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "premikanje %s v %s\n"
-#: lib/rpmfi.c:734
-#, fuzzy, c-format
-msgid "excluding multilib path %s%s\n"
-msgstr "izključevanje datoteke %s%s\n"
-
-#: lib/rpmfi.c:800
+#: lib/rpmfi.c:788
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "izključevanje datoteke %s%s\n"
-#: lib/rpmfi.c:810
+#: lib/rpmfi.c:798
#, c-format
msgid "relocating %s to %s\n"
msgstr "premikanje %s v %s\n"
-#: lib/rpmfi.c:889
+#: lib/rpmfi.c:877
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "premiokanje imenika %s v %s\n"
@@ -3124,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:925
+#: lib/transaction.c:935
#, c-format
msgid "excluding directory %s\n"
msgstr "izključevanje imenika %s\n"
@@ -3137,7 +3131,7 @@ msgstr "izključevanje imenika %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1034
+#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3150,7 +3144,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1117
+#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3158,16 +3152,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1194
+#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:286
+#: lib/verify.c:287
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "manjka %s\n"
-#: lib/verify.c:395
+#: lib/verify.c:396
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "Nezadovoljene soodvisnosti za %s-%s-%s: "
@@ -3335,6 +3329,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
+#: rpmdb/header_internal.c:164
+#, c-format
+msgid "Data type %d not supported\n"
+msgstr "Tip podatkov %d ni podprt\n"
+
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr ""
@@ -3891,6 +3890,10 @@ msgid "DIRECTORY"
msgstr ""
#, fuzzy
+#~ msgid "excluding multilib path %s%s\n"
+#~ msgstr "izključevanje datoteke %s%s\n"
+
+#, fuzzy
#~ msgid "Finding %s: %s\n"
#~ msgstr "Iskanje %s: (z uporabo %s)...\n"
diff --git a/po/sr.po b/po/sr.po
index e90ab94c2..bb4c21a6a 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-12-30 09:42-0500\n"
+"POT-Creation-Date: 2003-01-01 15:20-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:1841
+#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
+#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@@ -1377,69 +1377,69 @@ msgstr "PGP omanuo"
msgid "package %s was already added, replacing with %s\n"
msgstr "paket %s nije instaliran\n"
-#: lib/depends.c:395
+#: lib/depends.c:362
msgid "(cached)"
msgstr ""
-#: lib/depends.c:422
+#: lib/depends.c:389
msgid "(rpmrc provides)"
msgstr ""
-#: lib/depends.c:439
+#: lib/depends.c:406
#, fuzzy
msgid "(rpmlib provides)"
msgstr "datoteka %s ne pripada nijednom paketu\n"
-#: lib/depends.c:468
+#: lib/depends.c:435
#, fuzzy
msgid "(db files)"
msgstr "neuspelo otvaranje %s: %s"
-#: lib/depends.c:481
+#: lib/depends.c:448
msgid "(db provides)"
msgstr ""
-#: lib/depends.c:494
+#: lib/depends.c:461
#, fuzzy
msgid "(db package)"
msgstr "upit nad svim paketima"
-#: lib/depends.c:852
+#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:974
+#: lib/depends.c:937
#, 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:1208
+#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
-#: lib/depends.c:1309
+#: lib/depends.c:1267
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, tree, "
"depth)\n"
msgstr ""
-#: lib/depends.c:1393
+#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr ""
-#: lib/depends.c:1463
+#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr ""
-#: lib/depends.c:1498
+#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1503
+#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1502,37 +1502,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr "neuspelo otvaranje %s: %s"
-#: lib/fsm.c:1245
+#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
-#: lib/fsm.c:1543
+#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1672 lib/fsm.c:1808
+#: lib/fsm.c:1675 lib/fsm.c:1811
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "Ne mogu da otvorim datoteku %s: "
-#: lib/fsm.c:1834
+#: lib/fsm.c:1837
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "ne mogu da uklonim %s - direktorijum nije prazan"
-#: lib/fsm.c:1840
+#: lib/fsm.c:1843
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "neuspela komanda rmdir %s: %s"
-#: lib/fsm.c:1850
+#: lib/fsm.c:1853
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "neuspelo otvaranje %s: %s\n"
-#: lib/fsm.c:1870
+#: lib/fsm.c:1873
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "Ne mogu da otvorim datoteku %s: "
@@ -2211,90 +2211,85 @@ msgstr "potpiši paket (ukloni tekući potpis)"
msgid "generate signature"
msgstr "napravi PGP potpis"
-#: lib/psm.c:254 rpmdb/header_internal.c:164
-#, c-format
-msgid "Data type %d not supported\n"
-msgstr ""
-
-#: lib/psm.c:465
+#: lib/psm.c:278
msgid "source package expected, binary found\n"
msgstr ""
-#: lib/psm.c:582
+#: lib/psm.c:395
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "upit nad paketom koji ima <datoteku>"
-#: lib/psm.c:918
+#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:1001
+#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:1009
+#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:1172
+#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1195
+#: lib/psm.c:1008
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "greška: preskačem %s - neuspelo prenošenje - %s\n"
-#: lib/psm.c:1201
+#: lib/psm.c:1014
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "neuspelo izvršavanje skripta"
-#: lib/psm.c:1608
+#: lib/psm.c:1420
#, 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:1744
+#: lib/psm.c:1553
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1853
+#: lib/psm.c:1662
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Ne mogu da upišem %s"
-#: lib/psm.c:1899
+#: lib/psm.c:1708
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/psm.c:1908
+#: lib/psm.c:1717
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "grupa %s ne sadrži nijedan paket\n"
-#: lib/psm.c:1956
+#: lib/psm.c:1765
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "neuspelo otvaranje %s: %s\n"
-#: lib/psm.c:1957
+#: lib/psm.c:1766
msgid " on file "
msgstr ""
-#: lib/psm.c:2154
+#: lib/psm.c:1949
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "neuspelo otvaranje %s: %s"
-#: lib/psm.c:2157
+#: lib/psm.c:1952
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "PGP omanuo"
@@ -2327,116 +2322,120 @@ msgid "net shared "
msgstr ""
#: lib/query.c:258
-msgid "(no state) "
+msgid "wrong color "
msgstr ""
#: lib/query.c:261
+msgid "(no state) "
+msgstr ""
+
+#: lib/query.c:264
#, fuzzy, c-format
msgid "(unknown %3d) "
msgstr "(nepoznat tip)"
-#: lib/query.c:279
+#: lib/query.c:282
#, fuzzy
msgid "package has not file owner/group lists\n"
msgstr "paket nema imena"
-#: lib/query.c:312
+#: lib/query.c:315
#, fuzzy
msgid "package has neither file owner or id lists\n"
msgstr "paket nema imena"
-#: lib/query.c:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "neuspelo otvaranje %s: %s\n"
-#: lib/query.c:455
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "upit nad %s neuspeo\n"
-#: lib/query.c:465
+#: lib/query.c:468
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:498 lib/rpminstall.c:608
+#: lib/query.c:501 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:527
+#: lib/query.c:530
#, fuzzy
msgid "no packages\n"
msgstr "upit nad svim paketima"
-#: lib/query.c:547
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "grupa %s ne sadrži nijedan paket\n"
-#: lib/query.c:557
+#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr "nijedan paket ne aktivira %s\n"
-#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
+#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "Neuspelo čitanje %s: %s."
-#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
+#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "nijedan paket ne aktivira %s\n"
-#: lib/query.c:665
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "nijedan paket ne zahteva %s\n"
-#: lib/query.c:676
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "nijedan paket ne obezbeđuje %s\n"
-#: lib/query.c:710
+#: lib/query.c:713
#, fuzzy, c-format
msgid "file %s: %s\n"
msgstr "neuspelo otvaranje %s: %s"
-#: lib/query.c:714
+#: lib/query.c:717
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "datoteka %s ne pripada nijednom paketu\n"
-#: lib/query.c:741
+#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr "pogrešan broj paketa: %s\n"
-#: lib/query.c:744
+#: lib/query.c:747
#, fuzzy, c-format
msgid "package record number: %u\n"
msgstr "pogrešan broj paketa: %s\n"
-#: lib/query.c:749
+#: lib/query.c:752
#, fuzzy, c-format
msgid "record %u could not be read\n"
msgstr "ne mogu da pročitam slog %d\n"
-#: lib/query.c:760 lib/rpminstall.c:779
+#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "paket %s nije instaliran\n"
-#: lib/rpmal.c:695
+#: lib/rpmal.c:692
#, fuzzy
msgid "(added files)"
msgstr "neuspelo otvaranje %s: %s"
-#: lib/rpmal.c:774
+#: lib/rpmal.c:770
msgid "(added provide)"
msgstr ""
@@ -2561,36 +2560,31 @@ msgstr ""
msgid "package %s has unsatisfied %s: %s\n"
msgstr "paket %s nije naveden u %s"
-#: lib/rpmfi.c:657
+#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr ""
-#: lib/rpmfi.c:661
+#: lib/rpmfi.c:662
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "Pribavljam %s\n"
-#: lib/rpmfi.c:664
+#: lib/rpmfi.c:665
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "Ne mogu da otvorim datoteku %s: "
-#: lib/rpmfi.c:734
-#, fuzzy, c-format
-msgid "excluding multilib path %s%s\n"
-msgstr "Pribavljam %s\n"
-
-#: lib/rpmfi.c:800
+#: lib/rpmfi.c:788
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "Pribavljam %s\n"
-#: lib/rpmfi.c:810
+#: lib/rpmfi.c:798
#, fuzzy, c-format
msgid "relocating %s to %s\n"
msgstr "greška kod kreiranja direktorijuma %s: %s"
-#: lib/rpmfi.c:889
+#: lib/rpmfi.c:877
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "greška kod kreiranja direktorijuma %s: %s"
@@ -3113,7 +3107,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:925
+#: lib/transaction.c:935
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "greška kod kreiranja direktorijuma %s: %s"
@@ -3126,7 +3120,7 @@ msgstr "greška kod kreiranja direktorijuma %s: %s"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1034
+#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3139,7 +3133,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1117
+#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3147,16 +3141,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1194
+#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:286
+#: lib/verify.c:287
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "nedostaje { posle %"
-#: lib/verify.c:395
+#: lib/verify.c:396
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "Nezadovoljene međuzavisnosti za %s-%s-%s: "
@@ -3324,6 +3318,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
+#: rpmdb/header_internal.c:164
+#, c-format
+msgid "Data type %d not supported\n"
+msgstr ""
+
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr ""
@@ -3884,6 +3883,10 @@ msgid "DIRECTORY"
msgstr ""
#, fuzzy
+#~ msgid "excluding multilib path %s%s\n"
+#~ msgstr "Pribavljam %s\n"
+
+#, fuzzy
#~ msgid "Finding %s: %s\n"
#~ msgstr "neuspelo otvaranje %s: %s"
diff --git a/po/sv.po b/po/sv.po
index 0d1afda98..c8de4870c 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.1\n"
-"POT-Creation-Date: 2002-12-30 09:42-0500\n"
+"POT-Creation-Date: 2003-01-01 15:20-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:1841
+#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
+#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrev: %s\n"
@@ -1347,47 +1347,47 @@ msgstr " misslyckades - "
msgid "package %s was already added, replacing with %s\n"
msgstr "paket %s är redan tillagt, ersäetter med %s\n"
-#: lib/depends.c:395
+#: lib/depends.c:362
msgid "(cached)"
msgstr "(cachad)"
-#: lib/depends.c:422
+#: lib/depends.c:389
msgid "(rpmrc provides)"
msgstr "(rpmrc tillhandahĺller)"
-#: lib/depends.c:439
+#: lib/depends.c:406
msgid "(rpmlib provides)"
msgstr "(rpmlib tillhandahĺller)"
-#: lib/depends.c:468
+#: lib/depends.c:435
msgid "(db files)"
msgstr "(db-filer)"
-#: lib/depends.c:481
+#: lib/depends.c:448
msgid "(db provides)"
msgstr "(db tillhandahĺller)"
-#: lib/depends.c:494
+#: lib/depends.c:461
msgid "(db package)"
msgstr "(db-paket)"
-#: lib/depends.c:852
+#: lib/depends.c:815
#, 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:974
+#: lib/depends.c:937
#, 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:1208
+#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr "========== noterar alla relationer\n"
#. T4. Scan for zeroes.
-#: lib/depends.c:1309
+#: lib/depends.c:1267
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:1393
+#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr "========== endast efterföljare (presentationsordning)\n"
-#: lib/depends.c:1463
+#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr "LOOP:\n"
-#: lib/depends.c:1498
+#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr "========== fortsätter med tsort ...\n"
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1503
+#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr "rpmtsOrder misslyckades, %d element ĺterstĺr\n"
@@ -1468,37 +1468,37 @@ msgstr "========== Kataloger ej uttryckligen inkluderade i paketet:\n"
msgid "%10d %s\n"
msgstr "%10d %s\n"
-#: lib/fsm.c:1245
+#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr "katalog %s skapad med rättigheter %04o.\n"
-#: lib/fsm.c:1543
+#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr "arkivfil %s fanns inte i huvudets fillista\n"
-#: lib/fsm.c:1672 lib/fsm.c:1808
+#: lib/fsm.c:1675 lib/fsm.c:1811
#, c-format
msgid "%s saved as %s\n"
msgstr "%s sparades som %s\n"
-#: lib/fsm.c:1834
+#: lib/fsm.c:1837
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s rmdir av %s misslyckades: Katalogen är inte tom\n"
-#: lib/fsm.c:1840
+#: lib/fsm.c:1843
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s rmdir av %s misslyckades: %s\n"
-#: lib/fsm.c:1850
+#: lib/fsm.c:1853
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s unlink av %s misslyckades: %s\n"
-#: lib/fsm.c:1870
+#: lib/fsm.c:1873
#, c-format
msgid "%s created as %s\n"
msgstr "%s skapades som %s\n"
@@ -2123,88 +2123,83 @@ msgstr "signera paket (detsamma som --addsign)"
msgid "generate signature"
msgstr "generera signatur"
-#: lib/psm.c:254 rpmdb/header_internal.c:164
-#, c-format
-msgid "Data type %d not supported\n"
-msgstr "Datatyp %d stöds inte\n"
-
-#: lib/psm.c:465
+#: lib/psm.c:278
msgid "source package expected, binary found\n"
msgstr "källpaket förväntades, fann binärpaket\n"
-#: lib/psm.c:582
+#: lib/psm.c:395
msgid "source package contains no .spec file\n"
msgstr "källpaket innehĺller ingen .spec-fil\n"
-#: lib/psm.c:918
+#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:1001
+#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:1009
+#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:1172
+#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1195
+#: lib/psm.c:1008
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "%s: %s-skript misslyckades (%d), hoppar över %s\n"
-#: lib/psm.c:1201
+#: lib/psm.c:1014
#, fuzzy, c-format
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:1608
+#: lib/psm.c:1420
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s har %d filer, test = %d\n"
-#: lib/psm.c:1744
+#: lib/psm.c:1553
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr "%s: %s-skript misslyckades (%d), hoppar över %s\n"
-#: lib/psm.c:1853
+#: lib/psm.c:1662
msgid "Unable to reload signature header\n"
msgstr "Kan inte läsa om signaturhuvud\n"
-#: lib/psm.c:1899
+#: lib/psm.c:1708
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "användare %s finns inte - använder root\n"
-#: lib/psm.c:1908
+#: lib/psm.c:1717
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "grupp %s finns inte - använder root\n"
-#: lib/psm.c:1956
+#: lib/psm.c:1765
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "uppackning av arkiv misslyckades%s%s: %s\n"
-#: lib/psm.c:1957
+#: lib/psm.c:1766
msgid " on file "
msgstr " vid fil "
-#: lib/psm.c:2154
+#: lib/psm.c:1949
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s misslyckades pĺ fil %s: %s\n"
-#: lib/psm.c:2157
+#: lib/psm.c:1952
#, c-format
msgid "%s failed: %s\n"
msgstr "%s misslyckades: %s\n"
@@ -2236,112 +2231,116 @@ msgid "net shared "
msgstr "nätdelad "
#: lib/query.c:258
+msgid "wrong color "
+msgstr ""
+
+#: lib/query.c:261
msgid "(no state) "
msgstr "(ej tillstnd) "
-#: lib/query.c:261
+#: lib/query.c:264
#, c-format
msgid "(unknown %3d) "
msgstr "(okänd %3d) "
-#: lib/query.c:279
+#: lib/query.c:282
msgid "package has not file owner/group lists\n"
msgstr "paketet har inte filägare-/-grupplistor\n"
-#: lib/query.c:312
+#: lib/query.c:315
msgid "package has neither file owner or id lists\n"
msgstr "paketet har varken filägare eller id-listor\n"
-#: lib/query.c:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "misslyckades med att öppna %s: %s\n"
-#: lib/query.c:455
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "frĺga av %s misslyckades\n"
-#: lib/query.c:465
+#: lib/query.c:468
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:498 lib/rpminstall.c:608
+#: lib/query.c:501 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:527
+#: lib/query.c:530
msgid "no packages\n"
msgstr "inga paket\n"
-#: lib/query.c:547
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "grupp %s innehĺller inga paket\n"
-#: lib/query.c:557
+#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr "inga paketutlösare %s\n"
-#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
+#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, c-format
msgid "malformed %s: %s\n"
msgstr "felformaterad %s: %s\n"
-#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
+#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, c-format
msgid "no package matches %s: %s\n"
msgstr "inga paket matchar %s: %s\n"
-#: lib/query.c:665
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "inget paket behöver %s\n"
-#: lib/query.c:676
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "inget paket tillhandahĺller %s\n"
-#: lib/query.c:710
+#: lib/query.c:713
#, c-format
msgid "file %s: %s\n"
msgstr "fil %s: %s\n"
-#: lib/query.c:714
+#: lib/query.c:717
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "filen %s tillhör inget paket\n"
-#: lib/query.c:741
+#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr "felaktigt paketnummer: %s\n"
-#: lib/query.c:744
+#: lib/query.c:747
#, c-format
msgid "package record number: %u\n"
msgstr "paketpost nummer: %u\n"
-#: lib/query.c:749
+#: lib/query.c:752
#, c-format
msgid "record %u could not be read\n"
msgstr "post %u kunde inte läsas\n"
-#: lib/query.c:760 lib/rpminstall.c:779
+#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "paket %s är inte installerat\n"
-#: lib/rpmal.c:695
+#: lib/rpmal.c:692
msgid "(added files)"
msgstr "(lade till filer)"
-#: lib/rpmal.c:774
+#: lib/rpmal.c:770
msgid "(added provide)"
msgstr "(lade till tillhandahĺllande)"
@@ -2466,36 +2465,31 @@ msgstr " %s A %s\tB %s\n"
msgid "package %s has unsatisfied %s: %s\n"
msgstr "paket %s har ouppfyllda %s: %s\n"
-#: lib/rpmfi.c:657
+#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr "========== omflyttningar\n"
-#: lib/rpmfi.c:661
+#: lib/rpmfi.c:662
#, c-format
msgid "%5d exclude %s\n"
msgstr "%5d utesluter %s\n"
-#: lib/rpmfi.c:664
+#: lib/rpmfi.c:665
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%5d flyttar om %s -> %s\n"
-#: lib/rpmfi.c:734
-#, c-format
-msgid "excluding multilib path %s%s\n"
-msgstr "hoppar över multilib-sökväg %s%s\n"
-
-#: lib/rpmfi.c:800
+#: lib/rpmfi.c:788
#, c-format
msgid "excluding %s %s\n"
msgstr "hoppar över %s %s\n"
-#: lib/rpmfi.c:810
+#: lib/rpmfi.c:798
#, c-format
msgid "relocating %s to %s\n"
msgstr "flyttar %s till %s\n"
-#: lib/rpmfi.c:889
+#: lib/rpmfi.c:877
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "flyttar katalogen %s till %s\n"
@@ -3007,7 +3001,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr "%s överhoppad pĺ grund av missingok-flagga\n"
#. @innercontinue@
-#: lib/transaction.c:925
+#: lib/transaction.c:935
#, c-format
msgid "excluding directory %s\n"
msgstr "hoppar över katalogen %s\n"
@@ -3020,7 +3014,7 @@ msgstr "hoppar över katalogen %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1034
+#: lib/transaction.c:1047
#, fuzzy, c-format
msgid "sanity checking %d elements\n"
msgstr "rimlighetskontrollerar %d element\n"
@@ -3033,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:1117
+#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr "beräknar %d filfingeravtryck\n"
@@ -3041,16 +3035,16 @@ msgstr "beräknar %d filfingeravtryck\n"
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1194
+#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr "beräknar filĺtgärder\n"
-#: lib/verify.c:286
+#: lib/verify.c:287
#, c-format
msgid "missing %c %s"
msgstr "saknas %c %s"
-#: lib/verify.c:395
+#: lib/verify.c:396
#, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "Ouppfyllda beroenden för %s: "
@@ -3216,6 +3210,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
+#: rpmdb/header_internal.c:164
+#, c-format
+msgid "Data type %d not supported\n"
+msgstr "Datatyp %d stöds inte\n"
+
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr "initiera databas"
@@ -3764,6 +3763,9 @@ msgstr "använd databas i KATALOG"
msgid "DIRECTORY"
msgstr "KATALOG"
+#~ msgid "excluding multilib path %s%s\n"
+#~ msgstr "hoppar över multilib-sökväg %s%s\n"
+
#~ msgid "Finding %s: %s\n"
#~ msgstr "Letar upp %s: %s\n"
diff --git a/po/tr.po b/po/tr.po
index c32c49b66..e2bd8b34e 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-12-30 09:42-0500\n"
+"POT-Creation-Date: 2003-01-01 15:20-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:1841
+#: build/pack.c:632 lib/psm.c:1650
#, 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:2146
+#: build/pack.c:725 lib/psm.c:1941
#, c-format
msgid "Wrote: %s\n"
msgstr "Yazýldý: %s\n"
@@ -1373,52 +1373,52 @@ msgstr " baţarýsýz - "
msgid "package %s was already added, replacing with %s\n"
msgstr "%s zaten kurulu"
-#: lib/depends.c:395
+#: lib/depends.c:362
msgid "(cached)"
msgstr ""
-#: lib/depends.c:422
+#: lib/depends.c:389
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %-45s EVET (rpmrc sađlar)\n"
-#: lib/depends.c:439
+#: lib/depends.c:406
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %-45s EVET (rpmlib sađlar)\n"
-#: lib/depends.c:468
+#: lib/depends.c:435
#, fuzzy
msgid "(db files)"
msgstr "db dosyasý %s hatalý\n"
-#: lib/depends.c:481
+#: lib/depends.c:448
#, fuzzy
msgid "(db provides)"
msgstr "%s: %-45s EVET (db sađlar)\n"
-#: lib/depends.c:494
+#: lib/depends.c:461
#, fuzzy
msgid "(db package)"
msgstr "paket yok\n"
-#: lib/depends.c:852
+#: lib/depends.c:815
#, c-format
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
msgstr ""
-#: lib/depends.c:974
+#: lib/depends.c:937
#, 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:1208
+#: lib/depends.c:1167
msgid "========== recording tsort relations\n"
msgstr "========== tsort bađýntýlarý kaydediliyor\n"
#. T4. Scan for zeroes.
-#: lib/depends.c:1309
+#: lib/depends.c:1267
#, 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:1393
+#: lib/depends.c:1351
msgid "========== successors only (presentation order)\n"
msgstr "========== sadece ardýllar (sunum sýrasý)\n"
-#: lib/depends.c:1463
+#: lib/depends.c:1421
msgid "LOOP:\n"
msgstr "ÇEVRÝM:\n"
-#: lib/depends.c:1498
+#: lib/depends.c:1456
msgid "========== continuing tsort ...\n"
msgstr "========== tsort sürüyor ...\n"
#. Return no. of packages that could not be ordered.
-#: lib/depends.c:1503
+#: lib/depends.c:1461
#, c-format
msgid "rpmtsOrder failed, %d elements remain\n"
msgstr ""
@@ -1503,37 +1503,37 @@ msgstr "========= Pakette bulunmayan dizinler:\n"
msgid "%10d %s\n"
msgstr "%9d %s\n"
-#: lib/fsm.c:1245
+#: lib/fsm.c:1248
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr "%s dizin %04o izinleriyle oluţturuldu.\n"
-#: lib/fsm.c:1543
+#: lib/fsm.c:1546
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1672 lib/fsm.c:1808
+#: lib/fsm.c:1675 lib/fsm.c:1811
#, c-format
msgid "%s saved as %s\n"
msgstr "%s %s olarak kaydedildi\n"
-#: lib/fsm.c:1834
+#: lib/fsm.c:1837
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s / %s dizin silinemedi - Dizin boţ deđil\n"
-#: lib/fsm.c:1840
+#: lib/fsm.c:1843
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s / %s dizinin silinmesi baţarýsýz: %s\n"
-#: lib/fsm.c:1850
+#: lib/fsm.c:1853
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s / %s bađ kaldýrýlamadý: %s\n"
-#: lib/fsm.c:1870
+#: lib/fsm.c:1873
#, c-format
msgid "%s created as %s\n"
msgstr "%s %s olarak oluţturuldu\n"
@@ -2184,89 +2184,84 @@ msgstr "paketi imzalar (mevcut imza kaldýrýlýr)"
msgid "generate signature"
msgstr "imza üretir"
-#: lib/psm.c:254 rpmdb/header_internal.c:164
-#, c-format
-msgid "Data type %d not supported\n"
-msgstr "%d veri türü desteklenmiyor\n"
-
-#: lib/psm.c:465
+#: lib/psm.c:278
msgid "source package expected, binary found\n"
msgstr "kaynak paketi gerekirken çalýţtýrýlabilir paketi bulundu\n"
-#: lib/psm.c:582
+#: lib/psm.c:395
msgid "source package contains no .spec file\n"
msgstr "kaynak paketi .spec dosyasý içermiyor\n"
-#: lib/psm.c:918
+#: lib/psm.c:731
#, c-format
msgid "%s: waitpid(%d) rc %d status %x\n"
msgstr ""
-#: lib/psm.c:1001
+#: lib/psm.c:814
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:1009
+#: lib/psm.c:822
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:1172
+#: lib/psm.c:985
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:1195
+#: lib/psm.c:1008
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "%s: %s betiđi baţarýsýz (%d), %s-%s-%s atlanýyor\n"
-#: lib/psm.c:1201
+#: lib/psm.c:1014
#, fuzzy, c-format
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:1608
+#: lib/psm.c:1420
#, 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:1744
+#: lib/psm.c:1553
#, 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:1853
+#: lib/psm.c:1662
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "%s'den baţlýk okunamadý: %s\n"
-#: lib/psm.c:1899
+#: lib/psm.c:1708
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "kullanýcý %s yok - root kullanýlacak\n"
-#: lib/psm.c:1908
+#: lib/psm.c:1717
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "grup %s yok - root kullanýlacak\n"
-#: lib/psm.c:1956
+#: lib/psm.c:1765
#, 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:1957
+#: lib/psm.c:1766
msgid " on file "
msgstr " dosyada "
-#: lib/psm.c:2154
+#: lib/psm.c:1949
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s açýlamadý: %s\n"
-#: lib/psm.c:2157
+#: lib/psm.c:1952
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s baţarýsýz\n"
@@ -2298,114 +2293,118 @@ msgid "net shared "
msgstr "ađ paylaţýmlý "
#: lib/query.c:258
+msgid "wrong color "
+msgstr ""
+
+#: lib/query.c:261
msgid "(no state) "
msgstr "(durumsuz) "
-#: lib/query.c:261
+#: lib/query.c:264
#, c-format
msgid "(unknown %3d) "
msgstr "(bilinmeyen %3d)"
-#: lib/query.c:279
+#: lib/query.c:282
#, 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:312
+#: lib/query.c:315
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:440 lib/query.c:487 lib/rpminstall.c:127 lib/rpminstall.c:464
+#: lib/query.c:443 lib/query.c:490 lib/rpminstall.c:127 lib/rpminstall.c:464
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
#, c-format
msgid "open of %s failed: %s\n"
msgstr "%s açýlamadý: %s\n"
-#: lib/query.c:455
+#: lib/query.c:458
#, c-format
msgid "query of %s failed\n"
msgstr "%s 'nin sorgulamasý baţarýsýzlýkla sonuçlandý\n"
-#: lib/query.c:465
+#: lib/query.c:468
msgid "old format source packages cannot be queried\n"
msgstr "eski biçem kaynak paketleri sorgulanamaz\n"
-#: lib/query.c:498 lib/rpminstall.c:608
+#: lib/query.c:501 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:527
+#: lib/query.c:530
msgid "no packages\n"
msgstr "paket yok\n"
-#: lib/query.c:547
+#: lib/query.c:550
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "%s grubu hiç paket içermiyor\n"
-#: lib/query.c:557
+#: lib/query.c:560
#, c-format
msgid "no package triggers %s\n"
msgstr "%s tetikleyen paket yok\n"
-#: lib/query.c:571 lib/query.c:593 lib/query.c:614 lib/query.c:649
+#: lib/query.c:574 lib/query.c:596 lib/query.c:617 lib/query.c:652
#, fuzzy, c-format
msgid "malformed %s: %s\n"
msgstr "%s okunamadý: %s.\n"
-#: lib/query.c:581 lib/query.c:599 lib/query.c:624 lib/query.c:654
+#: lib/query.c:584 lib/query.c:602 lib/query.c:627 lib/query.c:657
#, fuzzy, c-format
msgid "no package matches %s: %s\n"
msgstr "%s tetikleyen paket yok\n"
-#: lib/query.c:665
+#: lib/query.c:668
#, c-format
msgid "no package requires %s\n"
msgstr "%s gerektiren paket yok\n"
-#: lib/query.c:676
+#: lib/query.c:679
#, c-format
msgid "no package provides %s\n"
msgstr "%s sađlayan paket yok\n"
-#: lib/query.c:710
+#: lib/query.c:713
#, c-format
msgid "file %s: %s\n"
msgstr "dosya %s: %s\n"
-#: lib/query.c:714
+#: lib/query.c:717
#, 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:741
+#: lib/query.c:744
#, c-format
msgid "invalid package number: %s\n"
msgstr "geçersiz paket numarasý: %s\n"
-#: lib/query.c:744
+#: lib/query.c:747
#, c-format
msgid "package record number: %u\n"
msgstr "paket kayýt numarasý: %u\n"
-#: lib/query.c:749
+#: lib/query.c:752
#, c-format
msgid "record %u could not be read\n"
msgstr "%u. kayýt okunamadý\n"
-#: lib/query.c:760 lib/rpminstall.c:779
+#: lib/query.c:763 lib/rpminstall.c:779
#, c-format
msgid "package %s is not installed\n"
msgstr "%s paketi kurulu deđil\n"
-#: lib/rpmal.c:695
+#: lib/rpmal.c:692
#, fuzzy
msgid "(added files)"
msgstr "db dosyasý %s hatalý\n"
-#: lib/rpmal.c:774
+#: lib/rpmal.c:770
#, fuzzy
msgid "(added provide)"
msgstr "%s: %-45s EVET (önlem eklendi)\n"
@@ -2531,36 +2530,31 @@ msgstr " %s A %s\tB %s\n"
msgid "package %s has unsatisfied %s: %s\n"
msgstr "paket %s-%s-%s gereksinimi tatmin edici deđil: %s\n"
-#: lib/rpmfi.c:657
+#: lib/rpmfi.c:658
msgid "========== relocations\n"
msgstr "========== yeniden konumlama\n"
-#: lib/rpmfi.c:661
+#: lib/rpmfi.c:662
#, c-format
msgid "%5d exclude %s\n"
msgstr "%5d %s'i dýţlýyor\n"
-#: lib/rpmfi.c:664
+#: lib/rpmfi.c:665
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%5d yeniden konumlandýrýlýyor: %s -> %s\n"
-#: lib/rpmfi.c:734
-#, c-format
-msgid "excluding multilib path %s%s\n"
-msgstr "multilib dosya yolu dýţlanýyor %s%s\n"
-
-#: lib/rpmfi.c:800
+#: lib/rpmfi.c:788
#, c-format
msgid "excluding %s %s\n"
msgstr "%s %s dýţlanýyor\n"
-#: lib/rpmfi.c:810
+#: lib/rpmfi.c:798
#, c-format
msgid "relocating %s to %s\n"
msgstr "%s %s'e konumlanýyor\n"
-#: lib/rpmfi.c:889
+#: lib/rpmfi.c:877
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "%s dizini %s de yeniden konumlanýyor\n"
@@ -3079,7 +3073,7 @@ msgid "%s skipped due to missingok flag\n"
msgstr "missingok flamasýndan dolayý %s atlandý\n"
#. @innercontinue@
-#: lib/transaction.c:925
+#: lib/transaction.c:935
#, c-format
msgid "excluding directory %s\n"
msgstr "%s dizini dýţlanýyor\n"
@@ -3092,7 +3086,7 @@ msgstr "%s dizini dýţlanýyor\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1034
+#: lib/transaction.c:1047
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3105,7 +3099,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1117
+#: lib/transaction.c:1129
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3113,16 +3107,16 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1194
+#: lib/transaction.c:1206
msgid "computing file dispositions\n"
msgstr ""
-#: lib/verify.c:286
+#: lib/verify.c:287
#, fuzzy, c-format
msgid "missing %c %s"
msgstr "eksik %s"
-#: lib/verify.c:395
+#: lib/verify.c:396
#, fuzzy, c-format
msgid "Unsatisfied dependencies for %s: "
msgstr "%s-%s-%s için tatmin edici olmayan bađýmlýlýklar: "
@@ -3288,6 +3282,11 @@ msgstr ""
msgid "array iterator used with different sized arrays"
msgstr ""
+#: rpmdb/header_internal.c:164
+#, c-format
+msgid "Data type %d not supported\n"
+msgstr "%d veri türü desteklenmiyor\n"
+
#: rpmdb/poptDB.c:18
msgid "initialize database"
msgstr "veritabanýný baţlangýç durumuna getirir"
@@ -3837,6 +3836,9 @@ msgstr ""
msgid "DIRECTORY"
msgstr ""
+#~ msgid "excluding multilib path %s%s\n"
+#~ msgstr "multilib dosya yolu dýţlanýyor %s%s\n"
+
#, fuzzy
#~ msgid "Finding %s: %s\n"
#~ msgstr "%s aranýyor: (%s kullanarak)...\n"
diff --git a/rpm.spec.in b/rpm.spec.in
index d673cf754..390dc05e3 100644
--- a/rpm.spec.in
+++ b/rpm.spec.in
@@ -462,6 +462,8 @@ exit 0
* Wed Jan 1 2003 Jeff Johnson <jbj@redhat.com> 4.2-0.49
- add rpmts/rpmte/rpmfi/rpmds element colors.
- ignore items not in our rainbow (i.e. colors are functional).
+- fix: dependency helpers now rate limited at 10ms, not 1s.
+- add per-arch canonical color, only x86_64 enabled for now.
* Sun Dec 29 2002 Jeff Johnson <jbj@redhat.com> 4.2-0.46
- don't segfault with packages produced by rpm-2.93 (#80618).