diff options
-rw-r--r-- | CHANGES | 5 | ||||
-rw-r--r-- | Makefile.am | 4 | ||||
-rw-r--r-- | beecrypt/Makefile.am | 8 | ||||
-rw-r--r-- | beecrypt/Makefile.in | 8 | ||||
-rw-r--r-- | configure.in | 27 | ||||
-rw-r--r-- | po/cs.po | 330 | ||||
-rw-r--r-- | po/da.po | 330 | ||||
-rw-r--r-- | po/de.po | 330 | ||||
-rw-r--r-- | po/en_RN.po | 330 | ||||
-rw-r--r-- | po/es.po | 330 | ||||
-rw-r--r-- | po/eu_ES.po | 330 | ||||
-rw-r--r-- | po/fi.po | 330 | ||||
-rw-r--r-- | po/fr.po | 330 | ||||
-rw-r--r-- | po/gl.po | 330 | ||||
-rw-r--r-- | po/hu.po | 330 | ||||
-rw-r--r-- | po/id.po | 330 | ||||
-rw-r--r-- | po/is.po | 330 | ||||
-rw-r--r-- | po/it.po | 330 | ||||
-rw-r--r-- | po/ja.po | 332 | ||||
-rw-r--r-- | po/ko.po | 330 | ||||
-rw-r--r-- | po/no.po | 330 | ||||
-rw-r--r-- | po/pl.po | 330 | ||||
-rw-r--r-- | po/pt.po | 330 | ||||
-rw-r--r-- | po/pt_BR.po | 330 | ||||
-rw-r--r-- | po/ro.po | 330 | ||||
-rw-r--r-- | po/rpm.pot | 2 | ||||
-rw-r--r-- | po/ru.po | 330 | ||||
-rw-r--r-- | po/sk.po | 330 | ||||
-rw-r--r-- | po/sl.po | 332 | ||||
-rw-r--r-- | po/sr.po | 330 | ||||
-rw-r--r-- | po/sv.po | 330 | ||||
-rw-r--r-- | po/tr.po | 330 | ||||
-rw-r--r-- | po/uk.po | 330 | ||||
-rw-r--r-- | po/wa.po | 330 | ||||
-rw-r--r-- | po/zh.po | 330 | ||||
-rw-r--r-- | po/zh_CN.GB2312.po | 330 | ||||
-rwxr-xr-x | popt/configure.in | 2 | ||||
-rw-r--r-- | popt/popt.spec | 2 | ||||
-rw-r--r-- | rpm.spec | 431 | ||||
-rw-r--r-- | rpm.spec.in | 421 | ||||
-rw-r--r-- | rpmio/Makefile.am | 20 | ||||
-rw-r--r-- | rpmio/base64.c | 4 | ||||
-rw-r--r-- | rpmio/base64.h | 4 | ||||
-rw-r--r-- | rpmio/tkey.c | 8 | ||||
-rw-r--r-- | tools/Makefile.am | 2 |
45 files changed, 5053 insertions, 5799 deletions
@@ -1,3 +1,8 @@ +4.0.3 -> 4.1: + - loosely wire beecrypt library into rpm. + +4.0.3 -> 4.0.4: + 4.0.2 -> 4.0.3: - update per-interpreter dependency scripts, add sql/tcl (#20295). - fix: rpmvercmp("1.a", "1.") returned -1, not +1 (#21392). diff --git a/Makefile.am b/Makefile.am index b27aca65b..bb626c89d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -9,7 +9,7 @@ EXTRA_DIST = CHANGES CREDITS Doxyheader GROUPS README.amiga INSTALL \ Perl-RPM po/*.in po/*.po po/rpm.pot \ rpm.magic rpmpopt-$(VERSION) rpmqv.c rpm.c -SUBDIRS = intl po @WITH_DB_SUBDIR@ popt rpmio rpmdb lib build misc @WITH_PYTHON_SUBDIR@ tools scripts tests doc . +SUBDIRS = intl po @WITH_DB_SUBDIR@ popt beecrypt rpmio rpmdb lib build misc @WITH_PYTHON_SUBDIR@ tools scripts tests doc . INCLUDES = \ -I$(top_srcdir)/build \ @@ -19,7 +19,7 @@ INCLUDES = \ -I$(top_srcdir)/popt \ @INCPATH@ -LIBS = +LIBS = -lrt -lpthread myLDFLAGS = # @LDFLAGS_STATIC@ diff --git a/beecrypt/Makefile.am b/beecrypt/Makefile.am index ad9ac6867..93037c45a 100644 --- a/beecrypt/Makefile.am +++ b/beecrypt/Makefile.am @@ -54,10 +54,18 @@ pkginclude_HEADERS = base64.h beecrypt.h blockmode.h blockpad.h blowfish.h blowf EXTRA_DIST = BENCHMARKS BUGS CONTRIBUTORS Doxyfile.in Doxyheader README.DLL README.WIN32 beecrypt.def beecrypt.mcp beecrypt.rc beecrypt.spec config.h config.gas.h config.win.h javaglue.h +.PHONY: sources +sources: + @echo $(libbeecrypt_la_SOURCES:%=beecrypt/%) + .PHONY: lclint lclint: lclint $(DEFS) $(INCLUDES) ${libbeecrypt_la_SOURCES} tests/beetest.c +.PHONY: listobjs +listobjs: + @echo $(BEECRYPT_OBJECTS) > $@ + DOXYGEN = /usr/bin/doxygen .PHONY: doxygen doxygen apidocs: Doxyfile Doxyheader diff --git a/beecrypt/Makefile.in b/beecrypt/Makefile.in index da4a71361..1f928ba19 100644 --- a/beecrypt/Makefile.in +++ b/beecrypt/Makefile.in @@ -554,9 +554,17 @@ installdirs mostlyclean-generic distclean-generic clean-generic \ maintainer-clean-generic clean mostlyclean distclean maintainer-clean +.PHONY: sources +sources: + @echo $(libbeecrypt_la_SOURCES:%=beecrypt/%) + .PHONY: lclint lclint: lclint $(DEFS) $(INCLUDES) ${libbeecrypt_la_SOURCES} tests/beetest.c + +.PHONY: listobjs +listobjs: + @echo $(BEECRYPT_OBJECTS) > $@ .PHONY: doxygen doxygen apidocs: Doxyfile Doxyheader rm -rf $@ diff --git a/configure.in b/configure.in index 5c5520e58..9d431dc93 100644 --- a/configure.in +++ b/configure.in @@ -7,7 +7,7 @@ dnl it, why check it? AC_INIT(rpmqv.c) AC_CANONICAL_SYSTEM -AM_INIT_AUTOMAKE(rpm, 4.0.3) +AM_INIT_AUTOMAKE(rpm, 4.1) AM_CONFIG_HEADER(config.h) AC_PREREQ(2.12) dnl Minimum Autoconf version required. @@ -17,6 +17,28 @@ dnl XXX AM_MAINTAINER_MODE dnl Set of available languages. ALL_LINGUAS="cs da de en_RN es eu_ES fi fr gl hu id is it ja ko no pl pt pt_BR ro ru sk sl sr sv tr uk wa zh zh_CN.GB2312" +echo " + +**************************************************************************** +* * +* *** WARNING WARNING WARNING *** * +* * +* This is source code from the development branch of rpm-4.1. * +* * +* If you want the "production" rpm-4.0.3 code, then you should either use * +* an rpm-4.0.3 src.rpm, or, if using a CVS checkout, do the following: * +* * +* cvs -d :pserver:anonymous@cvs.rpm.org:/cvs/devel login * +* (no password, just carriage return) * +* cvs -d :pserver:anonymous@cvs.rpm.org:/cvs/devel get rpm * +* cd rpm * +* cvs up -r rpm-4_0 * +* * +**************************************************************************** + +" +sleep 10 + LIBOBJS= dnl Checks for programs. @@ -1123,7 +1145,7 @@ dnl XXX this causes popt to depend on zlib et al dnl # XXX Propagate -lucb to popt ... dnl export LIBS INCPATH CONFIG_SITE -AC_CONFIG_SUBDIRS(popt $WITH_DB_SUBDIR) +AC_CONFIG_SUBDIRS(popt beecrypt $WITH_DB_SUBDIR) AC_OUTPUT([ Doxyfile Makefile rpmrc macros platform rpmpopt rpm.spec rpmio/Makefile rpmdb/Makefile lib/Makefile build/Makefile @@ -1134,6 +1156,7 @@ AC_OUTPUT([ Doxyfile Makefile rpmrc macros platform rpmpopt rpm.spec doc/ja/Makefile doc/pl/Makefile doc/ru/Makefile doc/sk/Makefile python/Makefile ], [ echo timestamp > popt/stamp-h.in + echo timestamp > beecrypt/stamp-h.in echo timestamp > stamp-h.in ] ) @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-09-21 11:01-0400\n" +"POT-Creation-Date: 2001-09-24 20:14-0400\n" "PO-Revision-Date: 2001-07-24 10:02+0100\n" "Last-Translator: Milan Kerslager <kerslage@linux.cz>\n" "Language-Team: Czech <cs@li.org>\n" @@ -1095,15 +1095,15 @@ msgstr "--sign může být použit jen při sestavování balíčků" msgid "exec failed\n" msgstr "spuštění selhalo\n" -#: rpm.c:1116 rpmqv.c:1103 +#: rpm.c:1116 rpmqv.c:1104 msgid "unexpected arguments to --querytags " msgstr "neočekávané parametry pro --querytags " -#: rpm.c:1127 rpmqv.c:1112 +#: rpm.c:1127 rpmqv.c:1113 msgid "no packages given for signature check" msgstr "ke kontrole podpisu nezadány žádné balíčky" -#: rpm.c:1138 rpmqv.c:1121 +#: rpm.c:1138 rpmqv.c:1122 msgid "no packages given for signing" msgstr "k podepsání nezadány žádné balíčky" @@ -1115,19 +1115,19 @@ msgstr "nezadány žádné balíčky pro odstranění" msgid "no packages given for install" msgstr "nezadány žádné balíčky pro instalaci" -#: rpm.c:1267 rpmqv.c:1066 +#: rpm.c:1267 rpmqv.c:1067 msgid "extra arguments given for query of all packages" msgstr "k dotazu na všechny balíčky zadány parametry navíc" -#: rpm.c:1272 rpmqv.c:1075 +#: rpm.c:1272 rpmqv.c:1076 msgid "no arguments given for query" msgstr "k dotazu nezadány žádné parametry" -#: rpm.c:1289 rpmqv.c:1091 +#: rpm.c:1289 rpmqv.c:1092 msgid "extra arguments given for verify of all packages" msgstr "pro kontrolu všech balíčků zadány parametry navíc" -#: rpm.c:1293 rpmqv.c:1095 +#: rpm.c:1293 rpmqv.c:1096 msgid "no arguments given for verify" msgstr "pro kontrolu nezadány žádné balíčky" @@ -1746,17 +1746,17 @@ msgstr "žádný popis v %%changelog\n" msgid "line %d: Error parsing %%description: %s\n" msgstr "řádek %d: Chyba při parsování %%description: %s\n" -#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:192 +#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:190 #, c-format msgid "line %d: Bad option %s: %s\n" msgstr "řádek %d: špatná volba %s: %s\n" -#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:204 +#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:202 #, c-format msgid "line %d: Too many names: %s\n" msgstr "řádek %d: Příliš mnoho jmen: %s\n" -#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:213 +#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:211 #, c-format msgid "line %d: Package does not exist: %s\n" msgstr "řádek %d: Balíček neexistuje: %s\n" @@ -1988,22 +1988,22 @@ msgstr "řádek %d: Jméno s verzí není dovoleno: %s\n" msgid "line %d: Version required: %s\n" msgstr "řádek %d: Vyžadována verze: %s\n" -#: build/parseScript.c:158 +#: build/parseScript.c:156 #, c-format msgid "line %d: triggers must have --: %s\n" msgstr "řádek %d: spouště (triggery) musí mít --: %s\n" -#: build/parseScript.c:168 build/parseScript.c:229 +#: build/parseScript.c:166 build/parseScript.c:227 #, c-format msgid "line %d: Error parsing %s: %s\n" msgstr "řádek %d: Chyba při parsování %s: %s\n" -#: build/parseScript.c:179 +#: build/parseScript.c:177 #, c-format msgid "line %d: script program must begin with '/': %s\n" msgstr "řádek %d: jméno skriptu musí začínat na '/': %s\n" -#: build/parseScript.c:221 +#: build/parseScript.c:219 #, c-format msgid "line %d: Second %s\n" msgstr "řádek %d: Druhý %s\n" @@ -2044,11 +2044,11 @@ msgstr "%s:%d: %%endif bez počátečního %%if\n" msgid "malformed %%include statement\n" msgstr "poškozený příkaz %%include\n" -#: build/parseSpec.c:508 +#: build/parseSpec.c:509 msgid "No compatible architectures found for build\n" msgstr "Nenalezeny žádné kompatibilní architektury pro sestavení\n" -#: build/parseSpec.c:563 +#: build/parseSpec.c:564 #, c-format msgid "Package has no %%description: %s\n" msgstr "Balíček nemá žádné %%description: %s\n" @@ -2124,107 +2124,107 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr " %s A %s\tB %s\n" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "YES" msgstr "ANO" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "NO " msgstr "NE " -#: lib/depends.c:1021 +#: lib/depends.c:1015 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "%s: %-45s ANO (přidány soubory)\n" -#: lib/depends.c:1131 +#: lib/depends.c:1126 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "%s: %-45s ANO (přidáno poskytuje)\n" -#: lib/depends.c:1222 +#: lib/depends.c:1217 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "%s: %-45s %-s (kešováno)\n" -#: lib/depends.c:1251 +#: lib/depends.c:1246 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "%s: %-45s ANO (rpmrc poskytuje)\n" -#: lib/depends.c:1268 +#: lib/depends.c:1263 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "%s: %-45s ANO (rpmlib poskytuje)\n" -#: lib/depends.c:1292 +#: lib/depends.c:1287 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "%s: %-45s ANO (db soubory)\n" -#: lib/depends.c:1305 +#: lib/depends.c:1300 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "%s: %-45s ANO (db poskytuje)\n" -#: lib/depends.c:1319 +#: lib/depends.c:1314 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "%s: %-45s ANO (db balíček)\n" -#: lib/depends.c:1335 +#: lib/depends.c:1330 #, c-format msgid "%s: %-45s NO\n" msgstr "%s: %-45s NE\n" -#: lib/depends.c:1356 +#: lib/depends.c:1351 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "%s: (%s, %s) přidáno do keše závislostí.\n" #. requirements are not satisfied. -#: lib/depends.c:1428 +#: lib/depends.c:1423 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "balíček %s-%s-%s má nesplněné požadavky: %s\n" #. conflicts exist. -#: lib/depends.c:1507 +#: lib/depends.c:1502 #, c-format msgid "package %s conflicts: %s\n" msgstr "balíček %s koliduje: %s\n" -#: lib/depends.c:1753 +#: lib/depends.c:1748 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "odstraňuji %s-%s-%s \"%s\" z tsort relací.\n" #. Record all relations. -#: lib/depends.c:1902 +#: lib/depends.c:1897 msgid "========== recording tsort relations\n" msgstr "========== ukládání tsort relací\n" #. T4. Scan for zeroes. -#: lib/depends.c:1960 +#: lib/depends.c:1955 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" "========== tsorting balíčků (pořadí, #předchůdce, #následovník, hloubka)\n" -#: lib/depends.c:2010 +#: lib/depends.c:2005 msgid "========== successors only (presentation order)\n" msgstr "========== pouze úspěšné (pořadí dle prezentace)\n" -#: lib/depends.c:2062 +#: lib/depends.c:2057 msgid "LOOP:\n" msgstr "SMYČKA:\n" -#: lib/depends.c:2091 +#: lib/depends.c:2086 msgid "========== continuing tsort ...\n" msgstr "========== pokračuje tsort ...\n" #: lib/formats.c:28 lib/formats.c:54 lib/formats.c:85 lib/formats.c:128 -#: lib/header.c:2621 lib/header.c:2642 lib/header.c:2664 +#: lib/header.c:2623 lib/header.c:2644 lib/header.c:2666 msgid "(not a number)" msgstr "(není číslo)" @@ -2247,7 +2247,7 @@ msgstr "nemohu zjistit stav %s: %s\n" msgid "getting list of mounted filesystems\n" msgstr "získávám seznam připojených systémů souborů\n" -#: lib/fs.c:153 rpmio/url.c:477 +#: lib/fs.c:153 rpmio/url.c:475 #, c-format msgid "failed to open %s: %s\n" msgstr "nemohu otevřít %s: %s\n" @@ -2257,46 +2257,46 @@ msgstr "nemohu otevřít %s: %s\n" msgid "file %s is on an unknown device\n" msgstr "soubor %s je na neznámém zařízení\n" -#: lib/fsm.c:290 +#: lib/fsm.c:288 msgid "========= Directories not explictly included in package:\n" msgstr "========= Adresáře, které nebyly explicitně zařazeny do balíčku:\n" -#: lib/fsm.c:292 +#: lib/fsm.c:290 #, c-format msgid "%9d %s\n" msgstr "%9d %s\n" -#: lib/fsm.c:1130 +#: lib/fsm.c:1124 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "vytvořen adresář %s s právy %04o.\n" -#: lib/fsm.c:1407 +#: lib/fsm.c:1401 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1526 lib/fsm.c:1651 +#: lib/fsm.c:1520 lib/fsm.c:1645 #, c-format msgid "%s saved as %s\n" msgstr "%s uloženo jako %s\n" -#: lib/fsm.c:1677 +#: lib/fsm.c:1671 #, 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:1683 +#: lib/fsm.c:1677 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s rmdir %s selhal: %s\n" -#: lib/fsm.c:1693 +#: lib/fsm.c:1687 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s unlink %s selhal: %s\n" -#: lib/fsm.c:1712 +#: lib/fsm.c:1706 #, c-format msgid "%s created as %s\n" msgstr "%s vytvořen jako %s\n" @@ -2312,77 +2312,77 @@ msgid "Data type %d not supported\n" msgstr "Datový typ %d není podporován\n" #. @-observertrans -readonlytrans@ -#: lib/header.c:1930 +#: lib/header.c:1932 #, c-format msgid "missing { after %" msgstr "chybí { po %" #. @-observertrans -readonlytrans@ -#: lib/header.c:1960 +#: lib/header.c:1962 msgid "missing } after %{" msgstr "po %{ chybí }" #. @-observertrans -readonlytrans@ -#: lib/header.c:1974 +#: lib/header.c:1976 msgid "empty tag format" msgstr "prázdný formát značky" #. @-observertrans -readonlytrans@ -#: lib/header.c:1988 +#: lib/header.c:1990 msgid "empty tag name" msgstr "prázdné jméno značky" #. @-observertrans -readonlytrans@ -#: lib/header.c:2005 +#: lib/header.c:2007 msgid "unknown tag" msgstr "neznámá značka" #. @-observertrans -readonlytrans@ -#: lib/header.c:2032 +#: lib/header.c:2034 msgid "] expected at end of array" msgstr "na konci pole očekáváno ]" #. @-observertrans -readonlytrans@ -#: lib/header.c:2050 +#: lib/header.c:2052 msgid "unexpected ]" msgstr "neočekávaná ]" #. @-observertrans -readonlytrans@ -#: lib/header.c:2054 +#: lib/header.c:2056 msgid "unexpected }" msgstr "neočekávaná }" #. @-observertrans -readonlytrans@ -#: lib/header.c:2120 +#: lib/header.c:2122 msgid "? expected in expression" msgstr "ve výrazu očekáván ?" #. @-observertrans -readonlytrans@ -#: lib/header.c:2129 +#: lib/header.c:2131 msgid "{ expected after ? in expression" msgstr "ve výrazu je po ? očekávána {" #. @-observertrans -readonlytrans@ -#: lib/header.c:2142 lib/header.c:2184 +#: lib/header.c:2144 lib/header.c:2186 msgid "} expected in expression" msgstr "ve výrazu je očekávána }" #. @-observertrans -readonlytrans@ -#: lib/header.c:2152 +#: lib/header.c:2154 msgid ": expected following ? subexpression" msgstr "v podvýrazu je po ? očekávána :" #. @-observertrans -readonlytrans@ -#: lib/header.c:2169 +#: lib/header.c:2171 msgid "{ expected after : in expression" msgstr "ve výrazu je po : očekávána {" #. @-observertrans -readonlytrans@ -#: lib/header.c:2194 +#: lib/header.c:2196 msgid "| expected at end of expression" msgstr "na konci výrazu je očekáváno |" -#: lib/header.c:2381 +#: lib/header.c:2383 msgid "(unknown type)" msgstr "(neznámý typ)" @@ -2965,7 +2965,7 @@ msgid "can't query %s: %s\n" msgstr "nemohu provést dotaz %s: %s\n" #: lib/query.c:576 lib/query.c:610 lib/rpminstall.c:309 lib/rpminstall.c:453 -#: lib/rpminstall.c:826 +#: lib/rpminstall.c:824 #, c-format msgid "open of %s failed: %s\n" msgstr "otevření %s selhalo: %s\n" @@ -3102,27 +3102,27 @@ msgstr "%s: rpmWriteSignature selhalo: %s\n" msgid "%s: No signature available (v1.0 RPM)\n" msgstr "%s: Není dostupný žádný podpis (RPM v1.0)\n" -#: lib/rpmchecksig.c:437 +#: lib/rpmchecksig.c:431 msgid "NOT OK" msgstr "NENÍ OK" -#: lib/rpmchecksig.c:438 lib/rpmchecksig.c:452 +#: lib/rpmchecksig.c:432 lib/rpmchecksig.c:446 msgid " (MISSING KEYS:" msgstr " (CHYBÍ KLÍČ:" -#: lib/rpmchecksig.c:440 lib/rpmchecksig.c:454 +#: lib/rpmchecksig.c:434 lib/rpmchecksig.c:448 msgid ") " msgstr ") " -#: lib/rpmchecksig.c:441 lib/rpmchecksig.c:455 +#: lib/rpmchecksig.c:435 lib/rpmchecksig.c:449 msgid " (UNTRUSTED KEYS:" msgstr " (NEDŮVĚRYHODNÝ KLÍČ:" -#: lib/rpmchecksig.c:443 lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 lib/rpmchecksig.c:451 msgid ")" msgstr ")" -#: lib/rpmchecksig.c:451 +#: lib/rpmchecksig.c:445 msgid "OK" msgstr "OK" @@ -3171,7 +3171,7 @@ msgstr "chyba při čtení ze souboru %s\n" msgid "file %s requires a newer version of RPM\n" msgstr "soubor %s vyžaduje novější verzi RPM\n" -#: lib/rpminstall.c:445 lib/rpminstall.c:686 +#: lib/rpminstall.c:445 lib/rpminstall.c:684 #, c-format msgid "%s cannot be installed\n" msgstr "%s nemůže být nainstalován\n" @@ -3218,7 +3218,7 @@ msgstr "nemohu otevřít %s: %s\n" msgid "Installing %s\n" msgstr "Instaluji %s\n" -#: lib/rpmlead.c:49 +#: lib/rpmlead.c:47 #, c-format msgid "read failed: %s (%d)\n" msgstr "čtení selhalo: %s (%d)\n" @@ -3233,88 +3233,88 @@ msgstr "chybí druhá ':' u %s:%d\n" msgid "missing architecture name at %s:%d\n" msgstr "chybí název architektury u %s:%d\n" -#: lib/rpmrc.c:325 +#: lib/rpmrc.c:328 #, c-format msgid "Incomplete data line at %s:%d\n" msgstr "Neúplný datový řádek %s:%d\n" -#: lib/rpmrc.c:330 +#: lib/rpmrc.c:333 #, c-format msgid "Too many args in data line at %s:%d\n" msgstr "Příliš mnoho parametrů v datovém řádku %s:%d\n" -#: lib/rpmrc.c:338 +#: lib/rpmrc.c:341 #, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "Chybné číslo architektury nebo OS: %s (%s:%d)\n" -#: lib/rpmrc.c:378 +#: lib/rpmrc.c:384 #, c-format msgid "Incomplete default line at %s:%d\n" msgstr "Neúplný standardní řádek %s:%d\n" -#: lib/rpmrc.c:383 +#: lib/rpmrc.c:389 #, c-format msgid "Too many args in default line at %s:%d\n" msgstr "Příliš mnoho parametrů ve výchozím řádku u %s:%d\n" -#: lib/rpmrc.c:585 +#: lib/rpmrc.c:591 #, c-format msgid "Cannot expand %s\n" msgstr "Nemohu expandovat %s\n" -#: lib/rpmrc.c:590 +#: lib/rpmrc.c:596 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "Nemohu číst %s, HOME je příliš velký.\n" -#: lib/rpmrc.c:607 +#: lib/rpmrc.c:613 #, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "Nemohu otevřít %s pro čtení: %s.\n" #. XXX Feof(fd) -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:660 #, c-format msgid "Failed to read %s: %s.\n" msgstr "Nemohu číst %s: %s.\n" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:697 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "chybí ':' (nalezeno na 0x%02x) v %s:%d\n" -#: lib/rpmrc.c:708 lib/rpmrc.c:782 +#: lib/rpmrc.c:714 lib/rpmrc.c:788 #, c-format msgid "missing argument for %s at %s:%d\n" msgstr "chybí parametr pro %s u %s:%d\n" -#: lib/rpmrc.c:725 lib/rpmrc.c:747 +#: lib/rpmrc.c:731 lib/rpmrc.c:753 #, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "expanze %s selhala na %s:%d \"%s\"\n" -#: lib/rpmrc.c:734 +#: lib/rpmrc.c:740 #, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "nemohu otevřít soubor %s na %s:%d: %s\n" -#: lib/rpmrc.c:774 +#: lib/rpmrc.c:780 #, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "chybí architektura pro %s u %s:%d\n" -#: lib/rpmrc.c:841 +#: lib/rpmrc.c:847 #, c-format msgid "bad option '%s' at %s:%d\n" msgstr "chybná volba '%s' u %s:%d\n" -#: lib/rpmrc.c:1436 +#: lib/rpmrc.c:1442 #, c-format msgid "Unknown system: %s\n" msgstr "Neznámý systém: %s\n" -#: lib/rpmrc.c:1437 +#: lib/rpmrc.c:1443 msgid "Please contact rpm-list@redhat.com\n" msgstr "Zkontaktujte prosím rpm-list@redhat.com\n" @@ -3345,141 +3345,141 @@ msgstr "Starý PGP podpis\n" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Starý (pouze interní) podpis! Jak jste to získali!?\n" -#: lib/signature.c:230 +#: lib/signature.c:228 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "Podpisu: velikost(%d)+vata(%d)\n" -#: lib/signature.c:290 +#: lib/signature.c:288 #, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "Nemohu spustit pgp (%s)\n" -#: lib/signature.c:303 +#: lib/signature.c:301 msgid "pgp failed\n" msgstr "pgp selhalo\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:310 +#: lib/signature.c:308 msgid "pgp failed to write signature\n" msgstr "pgp selhalo při zápisu podpisu\n" -#: lib/signature.c:315 +#: lib/signature.c:313 #, c-format msgid "PGP sig size: %d\n" msgstr "Velikost podpisu PGP: %d\n" -#: lib/signature.c:328 lib/signature.c:410 +#: lib/signature.c:326 lib/signature.c:408 msgid "unable to read the signature\n" msgstr "nemohu číst podpis\n" -#: lib/signature.c:333 +#: lib/signature.c:331 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "Přečteno %d bajtů PGP podpisu\n" -#: lib/signature.c:372 lib/signature.c:760 +#: lib/signature.c:370 lib/signature.c:758 msgid "Couldn't exec gpg\n" msgstr "Nemohu spustit gpg\n" -#: lib/signature.c:385 +#: lib/signature.c:383 msgid "gpg failed\n" msgstr "gpg selhalo\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:392 +#: lib/signature.c:390 msgid "gpg failed to write signature\n" msgstr "gpg selhalo při zápisu podpisu\n" -#: lib/signature.c:397 +#: lib/signature.c:395 #, c-format msgid "GPG sig size: %d\n" msgstr "Velikost GPG podpisu: %d\n" -#: lib/signature.c:415 +#: lib/signature.c:413 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "Přečteno %d bajtů GPG podpisu\n" -#: lib/signature.c:443 +#: lib/signature.c:441 msgid "Generating signature using PGP.\n" msgstr "Generuji PGP podpis.\n" -#: lib/signature.c:449 +#: lib/signature.c:447 msgid "Generating signature using GPG.\n" msgstr "Generuji GPG podpis.\n" -#: lib/signature.c:532 lib/signature.c:607 +#: lib/signature.c:530 lib/signature.c:605 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "Nemohu spustit pgp. Vynechte kontrolu PGP pomocí --nopgp.\n" -#: lib/signature.c:697 +#: lib/signature.c:695 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "Nelze spustit gpg. Vynechte kontrolu GPG pomocí --nogpg.\n" -#: lib/signature.c:789 +#: lib/signature.c:787 msgid "Couldn't exec pgp\n" msgstr "Nemohu spustit pgp\n" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:793 lib/signature.c:846 +#: lib/signature.c:791 lib/signature.c:844 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "Špatná %%_signature spec v souboru maker\n" -#: lib/signature.c:826 +#: lib/signature.c:824 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "Musíte nastavit \"%%_gpg_name\" ve svém makro souboru\n" -#: lib/signature.c:838 +#: lib/signature.c:836 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "Musíte nastavit \"%%_pgp_name\" ve svém makro souboru\n" -#: lib/transaction.c:446 +#: lib/transaction.c:447 msgid "========== relocations\n" msgstr "========== relokace\n" -#: lib/transaction.c:450 +#: lib/transaction.c:451 #, c-format msgid "%5d exclude %s\n" msgstr "%5d vynechávám %s\n" -#: lib/transaction.c:453 +#: lib/transaction.c:454 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "%5d přemísťuji %s -> %s\n" -#: lib/transaction.c:523 +#: lib/transaction.c:524 #, c-format msgid "excluding multilib path %s%s\n" msgstr "vynechávám multilib cestu %s%s\n" -#: lib/transaction.c:586 +#: lib/transaction.c:587 #, c-format msgid "excluding %s %s\n" msgstr "vynechávám %s %s\n" -#: lib/transaction.c:596 +#: lib/transaction.c:597 #, c-format msgid "relocating %s to %s\n" msgstr "přemísťuji %s do %s\n" -#: lib/transaction.c:674 +#: lib/transaction.c:675 #, c-format msgid "relocating directory %s to %s\n" msgstr "přemísťuji adresář %s do %s\n" -#: lib/transaction.c:808 +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s přeskočeno, protože chybí příznak\n" -#: lib/transaction.c:1406 +#: lib/transaction.c:1407 #, c-format msgid "excluding directory %s\n" msgstr "vynechávám adresář %s\n" @@ -3682,11 +3682,11 @@ msgstr "chyba(%d) při ukládání záznamu %s do %s\n" msgid "error(%d) removing record %s from %s\n" msgstr "chyba(%d) při odstraňování záznamu %s z %s\n" -#: rpmdb/rpmdb.c:842 +#: rpmdb/rpmdb.c:846 msgid "no dbpath has been set\n" msgstr "nebyla nastavena dbpath\n" -#: rpmdb/rpmdb.c:973 +#: rpmdb/rpmdb.c:977 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" @@ -3694,115 +3694,115 @@ msgstr "" "databáze je ve starém formátu; použijte --rebuilddb pro převod do nového\n" #. error -#: rpmdb/rpmdb.c:1206 +#: rpmdb/rpmdb.c:1210 #, c-format msgid "error(%d) counting packages\n" msgstr "chyba(%d) při počítání balíčků\n" -#: rpmdb/rpmdb.c:1940 rpmdb/rpmdb.c:3122 +#: rpmdb/rpmdb.c:1944 rpmdb/rpmdb.c:3126 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "záznam číslo %d v databázi je chybný -- vynechávám.\n" -#: rpmdb/rpmdb.c:1991 +#: rpmdb/rpmdb.c:1995 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "rpmdb: porušená položka hlavičky #%u, přeskakuji.\n" -#: rpmdb/rpmdb.c:2256 +#: rpmdb/rpmdb.c:2260 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "%s: nemohu číst hlavičku na adrese 0x%x\n" -#: rpmdb/rpmdb.c:2325 +#: rpmdb/rpmdb.c:2329 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "odstraňuji \"%s\" z indexu %s.\n" -#: rpmdb/rpmdb.c:2334 +#: rpmdb/rpmdb.c:2338 #, c-format msgid "removing %d entries from %s index.\n" msgstr "odstraňuji %d položek z indexu %s.\n" -#: rpmdb/rpmdb.c:2529 +#: rpmdb/rpmdb.c:2533 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "chyba(%d) při alokaci nové instance balíčku\n" -#: rpmdb/rpmdb.c:2607 +#: rpmdb/rpmdb.c:2611 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "přidávám \"%s\" do indexu %s\n" -#: rpmdb/rpmdb.c:2618 +#: rpmdb/rpmdb.c:2622 #, c-format msgid "adding %d entries to %s index.\n" msgstr "přidávám %d položek do indexu %s.\n" -#: rpmdb/rpmdb.c:3011 +#: rpmdb/rpmdb.c:3015 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "odstraňuji %s po úspěšném znovusestavení db3.\n" -#: rpmdb/rpmdb.c:3041 +#: rpmdb/rpmdb.c:3045 msgid "no dbpath has been set" msgstr "nebyla nastavena dbpath" -#: rpmdb/rpmdb.c:3068 +#: rpmdb/rpmdb.c:3072 #, c-format msgid "rebuilding database %s into %s\n" msgstr "databázi %s převádím do %s\n" -#: rpmdb/rpmdb.c:3072 +#: rpmdb/rpmdb.c:3076 #, c-format msgid "temporary database %s already exists\n" msgstr "dočasná databáze %s již existuje\n" -#: rpmdb/rpmdb.c:3078 +#: rpmdb/rpmdb.c:3082 #, c-format msgid "creating directory %s\n" msgstr "vytvářím adresář %s\n" -#: rpmdb/rpmdb.c:3080 +#: rpmdb/rpmdb.c:3084 #, c-format msgid "creating directory %s: %s\n" msgstr "vytvářím adresář %s: %s\n" -#: rpmdb/rpmdb.c:3087 +#: rpmdb/rpmdb.c:3091 #, c-format msgid "opening old database with dbapi %d\n" msgstr "otevírám starou databázi s dbapi %d\n" -#: rpmdb/rpmdb.c:3098 +#: rpmdb/rpmdb.c:3102 #, c-format msgid "opening new database with dbapi %d\n" msgstr "otevírám novou databázi s dbapi %d\n" -#: rpmdb/rpmdb.c:3162 +#: rpmdb/rpmdb.c:3166 #, c-format msgid "cannot add record originally at %u\n" msgstr "nemohu přidat záznam - původně u %d\n" -#: rpmdb/rpmdb.c:3180 +#: rpmdb/rpmdb.c:3184 msgid "failed to rebuild database: original database remains in place\n" msgstr "" "databázi nelze zvovu vytvořit; původní databáze zůstává na svém místě\n" -#: rpmdb/rpmdb.c:3188 +#: rpmdb/rpmdb.c:3192 msgid "failed to replace old database with new database!\n" msgstr "starou databázi nelze nahradit novou databází!\n" -#: rpmdb/rpmdb.c:3190 +#: rpmdb/rpmdb.c:3194 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "pro obnovení nahraďte soubory v %s soubory z %s" -#: rpmdb/rpmdb.c:3200 +#: rpmdb/rpmdb.c:3204 #, c-format msgid "removing directory %s\n" msgstr "mažu adresář %s\n" -#: rpmdb/rpmdb.c:3202 +#: rpmdb/rpmdb.c:3206 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "nemohu odstranit adresář %s: %s\n" @@ -3898,59 +3898,59 @@ msgstr "Soubor %s: %s\n" msgid "File %s is smaller than %u bytes\n" msgstr "Soubor %s je menší, než %d bajtů\n" -#: rpmio/rpmio.c:599 +#: rpmio/rpmio.c:588 msgid "Success" msgstr "Úspěch" -#: rpmio/rpmio.c:602 +#: rpmio/rpmio.c:591 msgid "Bad server response" msgstr "Chybná odezva FTP serveru" -#: rpmio/rpmio.c:605 +#: rpmio/rpmio.c:594 msgid "Server I/O error" msgstr "I/O chyba serveru" -#: rpmio/rpmio.c:608 +#: rpmio/rpmio.c:597 msgid "Server timeout" msgstr "Timeout serveru" -#: rpmio/rpmio.c:611 +#: rpmio/rpmio.c:600 msgid "Unable to lookup server host address" msgstr "Nelze převést jméno na IP adresu počítače" -#: rpmio/rpmio.c:614 +#: rpmio/rpmio.c:603 msgid "Unable to lookup server host name" msgstr "Nelze převést IP na jméno počítače" -#: rpmio/rpmio.c:617 +#: rpmio/rpmio.c:606 msgid "Failed to connect to server" msgstr "Připojení k serveru selhalo" -#: rpmio/rpmio.c:620 +#: rpmio/rpmio.c:609 msgid "Failed to establish data connection to server" msgstr "Selhalo navázání datového spojení se serverem" -#: rpmio/rpmio.c:623 +#: rpmio/rpmio.c:612 msgid "I/O error to local file" msgstr "I/O chyba při lokálním souboru" -#: rpmio/rpmio.c:626 +#: rpmio/rpmio.c:615 msgid "Error setting remote server to passive mode" msgstr "Chyba při nastavení vzdáleného serveru do pasivního režimu" -#: rpmio/rpmio.c:629 +#: rpmio/rpmio.c:618 msgid "File not found on server" msgstr "Soubor nebyl na serveru nalezen" -#: rpmio/rpmio.c:632 +#: rpmio/rpmio.c:621 msgid "Abort in progress" msgstr "Probíhá přerušení" -#: rpmio/rpmio.c:636 +#: rpmio/rpmio.c:625 msgid "Unknown or unexpected error" msgstr "Neznámá nebo neočekávaná chyba" -#: rpmio/rpmio.c:1259 +#: rpmio/rpmio.c:1252 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "přihlašování na %s jako %s, heslo %s\n" @@ -3960,7 +3960,7 @@ msgid "(no error)" msgstr "(žádná chyba)" #. @-readonlytrans@ -#. FIX: double indeirection. +#. FIX: double indirection. #. @observer@ #: rpmio/rpmlog.c:114 rpmio/rpmlog.c:115 rpmio/rpmlog.c:116 msgid "fatal error: " @@ -3981,37 +3981,37 @@ msgstr "varování: " msgid "memory alloc (%u bytes) returned NULL.\n" msgstr "alokace paměti (%u bajtů) vrátila NULL.\n" -#: rpmio/url.c:103 +#: rpmio/url.c:101 #, c-format msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n" msgstr "varování: u %p ctrl %p nrefs != 0 (%s %s)\n" -#: rpmio/url.c:123 +#: rpmio/url.c:121 #, c-format msgid "warning: u %p data %p nrefs != 0 (%s %s)\n" msgstr "varování: u %p data %p nrefs != 0 (%s %s)\n" -#: rpmio/url.c:151 +#: rpmio/url.c:149 #, c-format msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" msgstr "varování: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" -#: rpmio/url.c:244 +#: rpmio/url.c:242 #, c-format msgid "Password for %s@%s: " msgstr "Heslo pro %s@%s: " -#: rpmio/url.c:269 rpmio/url.c:295 +#: rpmio/url.c:267 rpmio/url.c:293 #, c-format msgid "error: %sport must be a number\n" msgstr "chyba: %sport musí být číslo\n" -#: rpmio/url.c:434 +#: rpmio/url.c:432 msgid "url port must be a number\n" msgstr "url port musí být číslo\n" #. XXX Fstrerror -#: rpmio/url.c:497 +#: rpmio/url.c:495 #, c-format msgid "failed to create %s: %s\n" msgstr "nemohu vytvořit %s: %s\n" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-09-21 11:01-0400\n" +"POT-Creation-Date: 2001-09-24 20:14-0400\n" "PO-Revision-Date: 2001-04-05 23:03GMT\n" "Last-Translator: Claus Hindsgaul <claus_h@image.dk>\n" "Language-Team: Danish <dansk@klid.dk>\n" @@ -1096,15 +1096,15 @@ msgstr "--sign kan kun bruges ved pakkeopbygning" msgid "exec failed\n" msgstr "eksekvering mislykkedes\n" -#: rpm.c:1116 rpmqv.c:1103 +#: rpm.c:1116 rpmqv.c:1104 msgid "unexpected arguments to --querytags " msgstr "uventede parametre til --querytags " -#: rpm.c:1127 rpmqv.c:1112 +#: rpm.c:1127 rpmqv.c:1113 msgid "no packages given for signature check" msgstr "ingen pakker angivet ved signatur-tjek" -#: rpm.c:1138 rpmqv.c:1121 +#: rpm.c:1138 rpmqv.c:1122 msgid "no packages given for signing" msgstr "ingen pakker angivet ved signering" @@ -1116,19 +1116,19 @@ msgstr "ingen pakker angivet ved afinstallation" msgid "no packages given for install" msgstr "ingen pakker angivet ved installation" -#: rpm.c:1267 rpmqv.c:1066 +#: rpm.c:1267 rpmqv.c:1067 msgid "extra arguments given for query of all packages" msgstr "ekstra parametre angivet ved forespřrgsel pĺ alle pakker" -#: rpm.c:1272 rpmqv.c:1075 +#: rpm.c:1272 rpmqv.c:1076 msgid "no arguments given for query" msgstr "ingen parametre angivet ved forespřrgsel" -#: rpm.c:1289 rpmqv.c:1091 +#: rpm.c:1289 rpmqv.c:1092 msgid "extra arguments given for verify of all packages" msgstr "ekstra parametre angivet ved verifikation af alle pakker" -#: rpm.c:1293 rpmqv.c:1095 +#: rpm.c:1293 rpmqv.c:1096 msgid "no arguments given for verify" msgstr "ingen parametre angivet ved verifikation" @@ -1747,17 +1747,17 @@ msgstr "ingen beskrivelse i %%changelog\n" msgid "line %d: Error parsing %%description: %s\n" msgstr "linie %d: Fejl ved tolkning af %%description: %s\n" -#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:192 +#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:190 #, c-format msgid "line %d: Bad option %s: %s\n" msgstr "linie %d: Ugyldigt tilvalg %s: %s\n" -#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:204 +#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:202 #, c-format msgid "line %d: Too many names: %s\n" msgstr "line %d: For mange navne: %s\n" -#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:213 +#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:211 #, c-format msgid "line %d: Package does not exist: %s\n" msgstr "line %d: Pakken eksisterer ikke: %s\n" @@ -1989,22 +1989,22 @@ msgstr "linie %d: Filnavn med version ikke tilladt: %s\n" msgid "line %d: Version required: %s\n" msgstr "linie %d: Version krćves %s\n" -#: build/parseScript.c:158 +#: build/parseScript.c:156 #, c-format msgid "line %d: triggers must have --: %s\n" msgstr "linie %d: udlřsere skal have --: %s\n" -#: build/parseScript.c:168 build/parseScript.c:229 +#: build/parseScript.c:166 build/parseScript.c:227 #, c-format msgid "line %d: Error parsing %s: %s\n" msgstr "linie %d: Fejl under tolkning af %s: %s\n" -#: build/parseScript.c:179 +#: build/parseScript.c:177 #, c-format msgid "line %d: script program must begin with '/': %s\n" msgstr "linie %d: skriptprogram skal starte med '/': %s\n" -#: build/parseScript.c:221 +#: build/parseScript.c:219 #, c-format msgid "line %d: Second %s\n" msgstr "linie %d: Anden %s\n" @@ -2047,12 +2047,12 @@ msgstr "%s:%d: Fik et %%endif uden et %%if\n" msgid "malformed %%include statement\n" msgstr "forkert udfřrt '%%include'-kommando\n" -#: build/parseSpec.c:508 +#: build/parseSpec.c:509 #, fuzzy msgid "No compatible architectures found for build\n" msgstr "Ingen arkitekturer, der kan opbygges\n" -#: build/parseSpec.c:563 +#: build/parseSpec.c:564 #, c-format msgid "Package has no %%description: %s\n" msgstr "Pakke har ingen %%description: %s\n" @@ -2129,107 +2129,107 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr " %s A %s\tB %s\n" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "YES" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 #, fuzzy msgid "NO " msgstr "IKKE O.K." -#: lib/depends.c:1021 +#: lib/depends.c:1015 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "%s: %-45s JA (tilfřjede filer)\n" -#: lib/depends.c:1131 +#: lib/depends.c:1126 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "%s: %-45s JA (tilfřjede 'provide')\n" -#: lib/depends.c:1222 +#: lib/depends.c:1217 #, fuzzy, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "%s: %-45s %-3s (husket)\n" -#: lib/depends.c:1251 +#: lib/depends.c:1246 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "%s: %-45s JA (rpmrc tilfřrer)\n" -#: lib/depends.c:1268 +#: lib/depends.c:1263 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "%s: %-45s JA (rpmlib tilfřrer)\n" -#: lib/depends.c:1292 +#: lib/depends.c:1287 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "%s: %-45s JA (db-filer)\n" -#: lib/depends.c:1305 +#: lib/depends.c:1300 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "%s: %-45s JA (db tilfřrer)\n" -#: lib/depends.c:1319 +#: lib/depends.c:1314 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "%s: %-45s JA (db-pakke)\n" -#: lib/depends.c:1335 +#: lib/depends.c:1330 #, c-format msgid "%s: %-45s NO\n" msgstr "%s: %-45s NEJ\n" -#: lib/depends.c:1356 +#: lib/depends.c:1351 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "%s: (%s, %s) tilfřjet til afhćngigheds-buffer.\n" #. requirements are not satisfied. -#: lib/depends.c:1428 +#: lib/depends.c:1423 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "pakke %s-%s-%s krav ikke opfyldt: %s\n" #. conflicts exist. -#: lib/depends.c:1507 +#: lib/depends.c:1502 #, c-format msgid "package %s conflicts: %s\n" msgstr "pakke %s skaber konflikt: %s\n" -#: lib/depends.c:1753 +#: lib/depends.c:1748 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "fjerne %s-%s-%s \"%s\" fra tsort-relationer.\n" #. Record all relations. -#: lib/depends.c:1902 +#: lib/depends.c:1897 msgid "========== recording tsort relations\n" msgstr "========== gemmer tsort-relationer\n" #. T4. Scan for zeroes. -#: lib/depends.c:1960 +#: lib/depends.c:1955 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2010 +#: lib/depends.c:2005 msgid "========== successors only (presentation order)\n" msgstr "========== kun efterfřlgere (prćsentationsrćkkefřlge)\n" -#: lib/depends.c:2062 +#: lib/depends.c:2057 msgid "LOOP:\n" msgstr "LŘKKE:\n" -#: lib/depends.c:2091 +#: lib/depends.c:2086 msgid "========== continuing tsort ...\n" msgstr "========== fortsćtter tsort ...\n" #: lib/formats.c:28 lib/formats.c:54 lib/formats.c:85 lib/formats.c:128 -#: lib/header.c:2621 lib/header.c:2642 lib/header.c:2664 +#: lib/header.c:2623 lib/header.c:2644 lib/header.c:2666 msgid "(not a number)" msgstr "(ikke et tal)" @@ -2252,7 +2252,7 @@ msgstr "kunne ikke finde %s: %s\n" msgid "getting list of mounted filesystems\n" msgstr "henter liste over monterede filsystemer\n" -#: lib/fs.c:153 rpmio/url.c:477 +#: lib/fs.c:153 rpmio/url.c:475 #, c-format msgid "failed to open %s: %s\n" msgstr "kunne ikke ĺbne %s: %s\n" @@ -2262,46 +2262,46 @@ msgstr "kunne ikke ĺbne %s: %s\n" msgid "file %s is on an unknown device\n" msgstr "fil %s er pĺ en ukendt enhed\n" -#: lib/fsm.c:290 +#: lib/fsm.c:288 msgid "========= Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:292 +#: lib/fsm.c:290 #, fuzzy, c-format msgid "%9d %s\n" msgstr "linie %d: %s\n" -#: lib/fsm.c:1130 +#: lib/fsm.c:1124 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1407 +#: lib/fsm.c:1401 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1526 lib/fsm.c:1651 +#: lib/fsm.c:1520 lib/fsm.c:1645 #, c-format msgid "%s saved as %s\n" msgstr "%s gemt som %s\n" -#: lib/fsm.c:1677 +#: lib/fsm.c:1671 #, 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:1683 +#: lib/fsm.c:1677 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "fjernelse (rmdir) af %s mislykkedes: %s\n" -#: lib/fsm.c:1693 +#: lib/fsm.c:1687 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "ĺbning af %s mislykkedes %s\n" -#: lib/fsm.c:1712 +#: lib/fsm.c:1706 #, c-format msgid "%s created as %s\n" msgstr "%s oprettet som %s\n" @@ -2317,77 +2317,77 @@ msgid "Data type %d not supported\n" msgstr "Datatype %d understřttes ikke\n" #. @-observertrans -readonlytrans@ -#: lib/header.c:1930 +#: lib/header.c:1932 #, c-format msgid "missing { after %" msgstr "manglende { efter %" #. @-observertrans -readonlytrans@ -#: lib/header.c:1960 +#: lib/header.c:1962 msgid "missing } after %{" msgstr "manglende } efter %{" #. @-observertrans -readonlytrans@ -#: lib/header.c:1974 +#: lib/header.c:1976 msgid "empty tag format" msgstr "tomt mćrkeformat" #. @-observertrans -readonlytrans@ -#: lib/header.c:1988 +#: lib/header.c:1990 msgid "empty tag name" msgstr "tomt mćrkenavn" #. @-observertrans -readonlytrans@ -#: lib/header.c:2005 +#: lib/header.c:2007 msgid "unknown tag" msgstr "ukendt mćrke" #. @-observertrans -readonlytrans@ -#: lib/header.c:2032 +#: lib/header.c:2034 msgid "] expected at end of array" msgstr "] forventet ved slutningen af tabel" #. @-observertrans -readonlytrans@ -#: lib/header.c:2050 +#: lib/header.c:2052 msgid "unexpected ]" msgstr "uventet ]" #. @-observertrans -readonlytrans@ -#: lib/header.c:2054 +#: lib/header.c:2056 msgid "unexpected }" msgstr "uventet }" #. @-observertrans -readonlytrans@ -#: lib/header.c:2120 +#: lib/header.c:2122 msgid "? expected in expression" msgstr "? forventet i udtryk" #. @-observertrans -readonlytrans@ -#: lib/header.c:2129 +#: lib/header.c:2131 msgid "{ expected after ? in expression" msgstr "{ forventet efter ? i udtryk" #. @-observertrans -readonlytrans@ -#: lib/header.c:2142 lib/header.c:2184 +#: lib/header.c:2144 lib/header.c:2186 msgid "} expected in expression" msgstr "} forventet i udtryk" #. @-observertrans -readonlytrans@ -#: lib/header.c:2152 +#: lib/header.c:2154 msgid ": expected following ? subexpression" msgstr ": forventet efter ?-underudtryk" #. @-observertrans -readonlytrans@ -#: lib/header.c:2169 +#: lib/header.c:2171 msgid "{ expected after : in expression" msgstr "{ forventet efter : i udtryk" #. @-observertrans -readonlytrans@ -#: lib/header.c:2194 +#: lib/header.c:2196 msgid "| expected at end of expression" msgstr "| forventet ved slutningen af udtryk" -#: lib/header.c:2381 +#: lib/header.c:2383 msgid "(unknown type)" msgstr "(ukendt type)" @@ -2991,7 +2991,7 @@ msgid "can't query %s: %s\n" msgstr "kunne ikke forespřrge %s: %s\n" #: lib/query.c:576 lib/query.c:610 lib/rpminstall.c:309 lib/rpminstall.c:453 -#: lib/rpminstall.c:826 +#: lib/rpminstall.c:824 #, c-format msgid "open of %s failed: %s\n" msgstr "ĺbning af %s mislykkedes %s\n" @@ -3128,27 +3128,27 @@ msgstr "%s: rpmWriteSignature mislykkedes: %s\n" msgid "%s: No signature available (v1.0 RPM)\n" msgstr "%s: Ingen tilgćngelig signatur (v1.0 RPM)\n" -#: lib/rpmchecksig.c:437 +#: lib/rpmchecksig.c:431 msgid "NOT OK" msgstr "IKKE O.K." -#: lib/rpmchecksig.c:438 lib/rpmchecksig.c:452 +#: lib/rpmchecksig.c:432 lib/rpmchecksig.c:446 msgid " (MISSING KEYS:" msgstr " (MANGLENDE NŘGLER: " -#: lib/rpmchecksig.c:440 lib/rpmchecksig.c:454 +#: lib/rpmchecksig.c:434 lib/rpmchecksig.c:448 msgid ") " msgstr ") " -#: lib/rpmchecksig.c:441 lib/rpmchecksig.c:455 +#: lib/rpmchecksig.c:435 lib/rpmchecksig.c:449 msgid " (UNTRUSTED KEYS:" msgstr " (IKKE-BETROEDE NŘGLER:" -#: lib/rpmchecksig.c:443 lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 lib/rpmchecksig.c:451 msgid ")" msgstr ")" -#: lib/rpmchecksig.c:451 +#: lib/rpmchecksig.c:445 msgid "OK" msgstr "O.K." @@ -3197,7 +3197,7 @@ msgstr "fejl ved lćsning fra filen %s\n" msgid "file %s requires a newer version of RPM\n" msgstr "filen %s krćver en nyere version af RPM\n" -#: lib/rpminstall.c:445 lib/rpminstall.c:686 +#: lib/rpminstall.c:445 lib/rpminstall.c:684 #, c-format msgid "%s cannot be installed\n" msgstr "%s kunne ikke installeres\n" @@ -3244,7 +3244,7 @@ msgstr "kunne ikke ĺbne %s: %s\n" msgid "Installing %s\n" msgstr "Installerer %s\n" -#: lib/rpmlead.c:49 +#: lib/rpmlead.c:47 #, c-format msgid "read failed: %s (%d)\n" msgstr "lćsning mislykkedes: %s (%d)\n" @@ -3259,90 +3259,90 @@ msgstr "manglende andet ':' ved %s:%d\n" msgid "missing architecture name at %s:%d\n" msgstr "manglende navn pĺ arkitektur ved %s:%d\n" -#: lib/rpmrc.c:325 +#: lib/rpmrc.c:328 #, c-format msgid "Incomplete data line at %s:%d\n" msgstr "Ufćrdig datalinie ved %s:%d\n" -#: lib/rpmrc.c:330 +#: lib/rpmrc.c:333 #, c-format msgid "Too many args in data line at %s:%d\n" msgstr "For mange parametre pĺ datalinie ved %s:%d\n" -#: lib/rpmrc.c:338 +#: lib/rpmrc.c:341 #, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "Ugyldigt arch/os-tal: %s (%s:%d)\n" -#: lib/rpmrc.c:378 +#: lib/rpmrc.c:384 #, c-format msgid "Incomplete default line at %s:%d\n" msgstr "Ufuldstćndig standardlinie ved %s:%d\n" -#: lib/rpmrc.c:383 +#: lib/rpmrc.c:389 #, c-format msgid "Too many args in default line at %s:%d\n" msgstr "For mange parametre i standardlinie ved %s:%d\n" -#: lib/rpmrc.c:585 +#: lib/rpmrc.c:591 #, c-format msgid "Cannot expand %s\n" msgstr "Kan ikke udfolde %s\n" -#: lib/rpmrc.c:590 +#: lib/rpmrc.c:596 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "Kunne ikke lćse %s, HOME er for stor.\n" -#: lib/rpmrc.c:607 +#: lib/rpmrc.c:613 #, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "Kunne ikke ĺbne %s for lćsning: %s.\n" #. XXX Feof(fd) -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:660 #, c-format msgid "Failed to read %s: %s.\n" msgstr "Kunne ikke lćse %s: %s.\n" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:697 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "manglende ':' (fandt 0x%02x) ved %s:%d\n" -#: lib/rpmrc.c:708 lib/rpmrc.c:782 +#: lib/rpmrc.c:714 lib/rpmrc.c:788 #, c-format msgid "missing argument for %s at %s:%d\n" msgstr "manglende parameter til %s ved %s:%d\n" -#: lib/rpmrc.c:725 lib/rpmrc.c:747 +#: lib/rpmrc.c:731 lib/rpmrc.c:753 #, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "%s-udvidelse mislykkedes ved %s:%d \"%s\"\n" -#: lib/rpmrc.c:734 +#: lib/rpmrc.c:740 #, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "kan ikke ĺbne %s ved %s:%d: %s\n" -#: lib/rpmrc.c:774 +#: lib/rpmrc.c:780 #, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "manglende arkitektur for %s ved %s:%d\n" -#: lib/rpmrc.c:841 +#: lib/rpmrc.c:847 #, c-format msgid "bad option '%s' at %s:%d\n" msgstr "ugyldig tilvalg '%s' ved %s:%d\n" -#: lib/rpmrc.c:1436 +#: lib/rpmrc.c:1442 #, c-format msgid "Unknown system: %s\n" msgstr "" "Ukendt system: %s\n" "\n" -#: lib/rpmrc.c:1437 +#: lib/rpmrc.c:1443 msgid "Please contact rpm-list@redhat.com\n" msgstr "Kontakt venligst rpm-list@redhat.com (pĺ engelsk)\n" @@ -3372,141 +3372,141 @@ msgstr "Gammel PGP-signatur\n" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Gammel (internt brug) signatur! Hvordan fik du fingre i den!?\n" -#: lib/signature.c:230 +#: lib/signature.c:228 #, fuzzy, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "Signaturstřrrelse: %d\n" -#: lib/signature.c:290 +#: lib/signature.c:288 #, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "Kunne ikke křre pgp (%s)\n" -#: lib/signature.c:303 +#: lib/signature.c:301 msgid "pgp failed\n" msgstr "pgp fejlede\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:310 +#: lib/signature.c:308 msgid "pgp failed to write signature\n" msgstr "pgp kunne ikke skrive signatur\n" -#: lib/signature.c:315 +#: lib/signature.c:313 #, c-format msgid "PGP sig size: %d\n" msgstr "PGP-signaturstřrrelse: %d\n" -#: lib/signature.c:328 lib/signature.c:410 +#: lib/signature.c:326 lib/signature.c:408 msgid "unable to read the signature\n" msgstr "kunne ikke lćse signaturen\n" -#: lib/signature.c:333 +#: lib/signature.c:331 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "Fik %d byte af PGP-signatur\n" -#: lib/signature.c:372 lib/signature.c:760 +#: lib/signature.c:370 lib/signature.c:758 msgid "Couldn't exec gpg\n" msgstr "Kunne ikke křre gpg\n" -#: lib/signature.c:385 +#: lib/signature.c:383 msgid "gpg failed\n" msgstr "gpg fejlede\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:392 +#: lib/signature.c:390 msgid "gpg failed to write signature\n" msgstr "gpg kunne ikke skrive signaturen\n" -#: lib/signature.c:397 +#: lib/signature.c:395 #, c-format msgid "GPG sig size: %d\n" msgstr "GPG-signaturstřrrelse: %d\n" -#: lib/signature.c:415 +#: lib/signature.c:413 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "Fik %d byte GPG-signatur\n" -#: lib/signature.c:443 +#: lib/signature.c:441 msgid "Generating signature using PGP.\n" msgstr "Genererer signatur med pgp.\n" -#: lib/signature.c:449 +#: lib/signature.c:447 msgid "Generating signature using GPG.\n" msgstr "Genererer signatur med gpg.\n" -#: lib/signature.c:532 lib/signature.c:607 +#: lib/signature.c:530 lib/signature.c:605 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "Kunne ikke křre pgp. Brug --nopgp for at overspringe PGP-tjek.\n" -#: lib/signature.c:697 +#: lib/signature.c:695 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "Kunne ikke křre gpg. Brug --nogpg for at overspringe GPG-tjek.\n" -#: lib/signature.c:789 +#: lib/signature.c:787 msgid "Couldn't exec pgp\n" msgstr "Kunne ikke křre pgp\n" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:793 lib/signature.c:846 +#: lib/signature.c:791 lib/signature.c:844 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "Ugyldig angivelse af '%%_signature'-spec i makrofil.\n" -#: lib/signature.c:826 +#: lib/signature.c:824 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "Du skal angive \"%%_gpg_name\" i din makrofil\n" -#: lib/signature.c:838 +#: lib/signature.c:836 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "Du skal angive \"%%_pgp_name\" i din makrofil\n" -#: lib/transaction.c:446 +#: lib/transaction.c:447 msgid "========== relocations\n" msgstr "========== gemmer omrokeringer\n" -#: lib/transaction.c:450 +#: lib/transaction.c:451 #, c-format msgid "%5d exclude %s\n" msgstr "%5d ekskluderer %s\n" -#: lib/transaction.c:453 +#: lib/transaction.c:454 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "%5d omrokerer %s -> %s\n" -#: lib/transaction.c:523 +#: lib/transaction.c:524 #, c-format msgid "excluding multilib path %s%s\n" msgstr "ekskluderer multilib-sti %s%s\n" -#: lib/transaction.c:586 +#: lib/transaction.c:587 #, c-format msgid "excluding %s %s\n" msgstr "ekskluderer %s %s\n" -#: lib/transaction.c:596 +#: lib/transaction.c:597 #, c-format msgid "relocating %s to %s\n" msgstr "omrokerer %s til %s\n" -#: lib/transaction.c:674 +#: lib/transaction.c:675 #, c-format msgid "relocating directory %s to %s\n" msgstr "omrokerer kataloget %s til %s\n" -#: lib/transaction.c:808 +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s oversprunget grundet manglende ok-flag\n" -#: lib/transaction.c:1406 +#: lib/transaction.c:1407 #, c-format msgid "excluding directory %s\n" msgstr "ekskluderer kataloget %s\n" @@ -3711,11 +3711,11 @@ msgstr "fejl(%d) ved gemning af post %s i %s\n" msgid "error(%d) removing record %s from %s\n" msgstr "fejl(%d) ved fjernelse af post %s fra %s\n" -#: rpmdb/rpmdb.c:842 +#: rpmdb/rpmdb.c:846 msgid "no dbpath has been set\n" msgstr "der er ikke sat nogen dbpath\n" -#: rpmdb/rpmdb.c:973 +#: rpmdb/rpmdb.c:977 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" @@ -3724,118 +3724,118 @@ msgstr "" "database med det nye format\n" #. error -#: rpmdb/rpmdb.c:1206 +#: rpmdb/rpmdb.c:1210 #, c-format msgid "error(%d) counting packages\n" msgstr "fejl(%d) ved optćlling af pakker\n" -#: rpmdb/rpmdb.c:1940 rpmdb/rpmdb.c:3122 +#: rpmdb/rpmdb.c:1944 rpmdb/rpmdb.c:3126 #, fuzzy, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "post nummer %d i databasen er fejlbehćftet -- overspringer.\n" -#: rpmdb/rpmdb.c:1991 +#: rpmdb/rpmdb.c:1995 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2256 +#: rpmdb/rpmdb.c:2260 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "%s: kan ikke lćse hoved ved 0x%x\n" -#: rpmdb/rpmdb.c:2325 +#: rpmdb/rpmdb.c:2329 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "fjerner \"%s\" fra %s-indekset.\n" -#: rpmdb/rpmdb.c:2334 +#: rpmdb/rpmdb.c:2338 #, c-format msgid "removing %d entries from %s index.\n" msgstr "fjerne %d indgange fra %s-indekset.\n" -#: rpmdb/rpmdb.c:2529 +#: rpmdb/rpmdb.c:2533 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "fejl(%d) under allokering af ny pakkeinstans\n" -#: rpmdb/rpmdb.c:2607 +#: rpmdb/rpmdb.c:2611 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" "tilfřjer \"%s\" til '%s'-indekset.\n" "\n" -#: rpmdb/rpmdb.c:2618 +#: rpmdb/rpmdb.c:2622 #, c-format msgid "adding %d entries to %s index.\n" msgstr "tilfřjer %d indgange til '%s'-indekset.\n" -#: rpmdb/rpmdb.c:3011 +#: rpmdb/rpmdb.c:3015 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "fjerner %s efter vellykket genopbygning af db3.\n" -#: rpmdb/rpmdb.c:3041 +#: rpmdb/rpmdb.c:3045 msgid "no dbpath has been set" msgstr "der ikke sat nogen dbpath" -#: rpmdb/rpmdb.c:3068 +#: rpmdb/rpmdb.c:3072 #, c-format msgid "rebuilding database %s into %s\n" msgstr "genopbygger database %s over i %s\n" -#: rpmdb/rpmdb.c:3072 +#: rpmdb/rpmdb.c:3076 #, c-format msgid "temporary database %s already exists\n" msgstr "den midlertidige database %s eksisterer allerede\n" -#: rpmdb/rpmdb.c:3078 +#: rpmdb/rpmdb.c:3082 #, c-format msgid "creating directory %s\n" msgstr "" "opretter kataloget %s\n" "\n" -#: rpmdb/rpmdb.c:3080 +#: rpmdb/rpmdb.c:3084 #, c-format msgid "creating directory %s: %s\n" msgstr "opretter kataloget %s: %s\n" -#: rpmdb/rpmdb.c:3087 +#: rpmdb/rpmdb.c:3091 #, c-format msgid "opening old database with dbapi %d\n" msgstr "ĺbner gammel database med dbapi %d\n" -#: rpmdb/rpmdb.c:3098 +#: rpmdb/rpmdb.c:3102 #, c-format msgid "opening new database with dbapi %d\n" msgstr "ĺbner ny database med dbapi %d\n" -#: rpmdb/rpmdb.c:3162 +#: rpmdb/rpmdb.c:3166 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "kunne ikke tilfřje posten, der tidligere var ved %d\n" -#: rpmdb/rpmdb.c:3180 +#: rpmdb/rpmdb.c:3184 msgid "failed to rebuild database: original database remains in place\n" msgstr "kunne ikke genopbygge database: original-databasen beholdes\n" -#: rpmdb/rpmdb.c:3188 +#: rpmdb/rpmdb.c:3192 msgid "failed to replace old database with new database!\n" msgstr "kunne ikke erstatte gammel database med ny database!\n" -#: rpmdb/rpmdb.c:3190 +#: rpmdb/rpmdb.c:3194 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "erstat filer i %s med filer fra %s for at genoprette" -#: rpmdb/rpmdb.c:3200 +#: rpmdb/rpmdb.c:3204 #, c-format msgid "removing directory %s\n" msgstr "fjerner kataloget %s\n" -#: rpmdb/rpmdb.c:3202 +#: rpmdb/rpmdb.c:3206 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "kunne ikke fjerne katalog %s: %s\n" @@ -3931,59 +3931,59 @@ msgstr "Fil %s: %s\n" msgid "File %s is smaller than %u bytes\n" msgstr "Filen %s er mindre end %u byte\n" -#: rpmio/rpmio.c:599 +#: rpmio/rpmio.c:588 msgid "Success" msgstr "Succes" -#: rpmio/rpmio.c:602 +#: rpmio/rpmio.c:591 msgid "Bad server response" msgstr "Ugyldigt svar fra server" -#: rpmio/rpmio.c:605 +#: rpmio/rpmio.c:594 msgid "Server I/O error" msgstr "I/O-fejl for server" -#: rpmio/rpmio.c:608 +#: rpmio/rpmio.c:597 msgid "Server timeout" msgstr "Tidsudlřb for server" -#: rpmio/rpmio.c:611 +#: rpmio/rpmio.c:600 msgid "Unable to lookup server host address" msgstr "Kunne ikke skaffe serverens IP-addresse" -#: rpmio/rpmio.c:614 +#: rpmio/rpmio.c:603 msgid "Unable to lookup server host name" msgstr "Kunne ikke slĺ serverens navn op" -#: rpmio/rpmio.c:617 +#: rpmio/rpmio.c:606 msgid "Failed to connect to server" msgstr "Kunne ikke etablere en forbindelse til serveren" -#: rpmio/rpmio.c:620 +#: rpmio/rpmio.c:609 msgid "Failed to establish data connection to server" msgstr "Kunne ikke etablere en data-forbindelse til serveren" -#: rpmio/rpmio.c:623 +#: rpmio/rpmio.c:612 msgid "I/O error to local file" msgstr "I/O-fejl i lokal fil" -#: rpmio/rpmio.c:626 +#: rpmio/rpmio.c:615 msgid "Error setting remote server to passive mode" msgstr "Kunne ikke sćtte fjernserveren i passiv tilstand" -#: rpmio/rpmio.c:629 +#: rpmio/rpmio.c:618 msgid "File not found on server" msgstr "Fil ikke fundet pĺ server" -#: rpmio/rpmio.c:632 +#: rpmio/rpmio.c:621 msgid "Abort in progress" msgstr "Afbryder programmet" -#: rpmio/rpmio.c:636 +#: rpmio/rpmio.c:625 msgid "Unknown or unexpected error" msgstr "Ukendt eller uventet fejl" -#: rpmio/rpmio.c:1259 +#: rpmio/rpmio.c:1252 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "logger pĺ %s som %s, adgangskode %s\n" @@ -3993,7 +3993,7 @@ msgid "(no error)" msgstr "(ingen fejl)" #. @-readonlytrans@ -#. FIX: double indeirection. +#. FIX: double indirection. #. @observer@ #: rpmio/rpmlog.c:114 rpmio/rpmlog.c:115 rpmio/rpmlog.c:116 msgid "fatal error: " @@ -4014,37 +4014,37 @@ msgstr "advarsel: " msgid "memory alloc (%u bytes) returned NULL.\n" msgstr "hukommelsesallokering (%u byte) returnerede NULL.\n" -#: rpmio/url.c:103 +#: rpmio/url.c:101 #, c-format msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n" msgstr "advarsel: u %p ctrl %p nrefs != 0 (%s %s)\n" -#: rpmio/url.c:123 +#: rpmio/url.c:121 #, c-format msgid "warning: u %p data %p nrefs != 0 (%s %s)\n" msgstr "advarsel: u %p data %p nrefs != 0 (%s %s)\n" -#: rpmio/url.c:151 +#: rpmio/url.c:149 #, c-format msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" msgstr "advarsel: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" -#: rpmio/url.c:244 +#: rpmio/url.c:242 #, c-format msgid "Password for %s@%s: " msgstr "Adgangskode for %s@%s: " -#: rpmio/url.c:269 rpmio/url.c:295 +#: rpmio/url.c:267 rpmio/url.c:293 #, c-format msgid "error: %sport must be a number\n" msgstr "Fejl: %sport skal vćre et tal\n" -#: rpmio/url.c:434 +#: rpmio/url.c:432 msgid "url port must be a number\n" msgstr "url-port skal vćre et tal\n" #. XXX Fstrerror -#: rpmio/url.c:497 +#: rpmio/url.c:495 #, c-format msgid "failed to create %s: %s\n" msgstr "kunne ikke oprette %s: %s\n" @@ -37,7 +37,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-09-21 11:01-0400\n" +"POT-Creation-Date: 2001-09-24 20:14-0400\n" "PO-Revision-Date: 1998-08-03 18:02+02:00\n" "Last-Translator: Karl Eichwalder <ke@SuSE.DE>\n" "Language-Team: German <de@li.org>\n" @@ -1216,15 +1216,15 @@ msgstr "--sign darf nur während der Paketerstellung benutzt werden" msgid "exec failed\n" msgstr "%s: Öffnen fehlgeschlagen\n" -#: rpm.c:1116 rpmqv.c:1103 +#: rpm.c:1116 rpmqv.c:1104 msgid "unexpected arguments to --querytags " msgstr "Unerwartete Argumente zu --querytags " -#: rpm.c:1127 rpmqv.c:1112 +#: rpm.c:1127 rpmqv.c:1113 msgid "no packages given for signature check" msgstr "Es wurden keine Pakete für die Signaturüberprüfung angegeben" -#: rpm.c:1138 rpmqv.c:1121 +#: rpm.c:1138 rpmqv.c:1122 msgid "no packages given for signing" msgstr "Es wurden keine Pakete für die Signatur angeben" @@ -1236,20 +1236,20 @@ msgstr "Es wurden keine Pakete für die Deinstallation angegeben" msgid "no packages given for install" msgstr "Es wurden keine Pakete für die Installation angegeben" -#: rpm.c:1267 rpmqv.c:1066 +#: rpm.c:1267 rpmqv.c:1067 msgid "extra arguments given for query of all packages" msgstr "Zusätzliche Argumente für die Anfrage an alle Pakete angegeben" -#: rpm.c:1272 rpmqv.c:1075 +#: rpm.c:1272 rpmqv.c:1076 msgid "no arguments given for query" msgstr "Es wurden keine Argumente für die Anfrage angegeben" -#: rpm.c:1289 rpmqv.c:1091 +#: rpm.c:1289 rpmqv.c:1092 #, fuzzy msgid "extra arguments given for verify of all packages" msgstr "Zusätzliche Argumente für die Anfrage an alle Pakete angegeben" -#: rpm.c:1293 rpmqv.c:1095 +#: rpm.c:1293 rpmqv.c:1096 msgid "no arguments given for verify" msgstr "Es wurden keine Argumente für die Überprüfung angegeben" @@ -1907,17 +1907,17 @@ msgid "line %d: Error parsing %%description: %s\n" msgstr "Paket %s wird nicht in %s aufgeführt" # , c-format -#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:192 +#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:190 #, fuzzy, c-format msgid "line %d: Bad option %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:204 +#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:202 #, fuzzy, c-format msgid "line %d: Too many names: %s\n" msgstr "ungültige Paket-Nummer: %s\n" -#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:213 +#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:211 #, fuzzy, c-format msgid "line %d: Package does not exist: %s\n" msgstr "Paket %s wird nicht in %s aufgeführt" @@ -2164,24 +2164,24 @@ msgstr "Paket %s wird nicht in %s aufgeführt" msgid "line %d: Version required: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: build/parseScript.c:158 +#: build/parseScript.c:156 #, fuzzy, c-format msgid "line %d: triggers must have --: %s\n" msgstr "Verschiebungen müssen mit einem ť/Ť beginnen" # , c-format -#: build/parseScript.c:168 build/parseScript.c:229 +#: build/parseScript.c:166 build/parseScript.c:227 #, fuzzy, c-format msgid "line %d: Error parsing %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: build/parseScript.c:179 +#: build/parseScript.c:177 #, fuzzy, c-format msgid "line %d: script program must begin with '/': %s\n" msgstr "Verschiebungen müssen mit einem ť/Ť beginnen" # , c-format -#: build/parseScript.c:221 +#: build/parseScript.c:219 #, fuzzy, c-format msgid "line %d: Second %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" @@ -2224,12 +2224,12 @@ msgstr "" msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:508 +#: build/parseSpec.c:509 #, fuzzy msgid "No compatible architectures found for build\n" msgstr "Paket-Architektur nicht überprüfen" -#: build/parseSpec.c:563 +#: build/parseSpec.c:564 #, fuzzy, c-format msgid "Package has no %%description: %s\n" msgstr "Paket %s wird nicht in %s aufgeführt" @@ -2307,107 +2307,107 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "YES" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "NO " msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1015 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1131 +#: lib/depends.c:1126 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1222 +#: lib/depends.c:1217 #, fuzzy, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "die Datei ť%sŤ gehört zu keinem Paket\n" -#: lib/depends.c:1251 +#: lib/depends.c:1246 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1268 +#: lib/depends.c:1263 #, fuzzy, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "die Datei ť%sŤ gehört zu keinem Paket\n" -#: lib/depends.c:1292 +#: lib/depends.c:1287 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1305 +#: lib/depends.c:1300 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1319 +#: lib/depends.c:1314 #, fuzzy, c-format msgid "%s: %-45s YES (db package)\n" msgstr "die Datei ť%sŤ gehört zu keinem Paket\n" -#: lib/depends.c:1335 +#: lib/depends.c:1330 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1356 +#: lib/depends.c:1351 #, fuzzy, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "die Datei ť%sŤ gehört zu keinem Paket\n" #. requirements are not satisfied. -#: lib/depends.c:1428 +#: lib/depends.c:1423 #, fuzzy, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "Paket %s wird nicht in %s aufgeführt" #. conflicts exist. -#: lib/depends.c:1507 +#: lib/depends.c:1502 #, fuzzy, c-format msgid "package %s conflicts: %s\n" msgstr "Paket %s wird nicht in %s aufgeführt" # FIXME -#: lib/depends.c:1753 +#: lib/depends.c:1748 #, fuzzy, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "Fehler beim Löschen des Eintrags %s nach %s" #. Record all relations. -#: lib/depends.c:1902 +#: lib/depends.c:1897 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1960 +#: lib/depends.c:1955 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2010 +#: lib/depends.c:2005 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2062 +#: lib/depends.c:2057 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2091 +#: lib/depends.c:2086 msgid "========== continuing tsort ...\n" msgstr "" #: lib/formats.c:28 lib/formats.c:54 lib/formats.c:85 lib/formats.c:128 -#: lib/header.c:2621 lib/header.c:2642 lib/header.c:2664 +#: lib/header.c:2623 lib/header.c:2644 lib/header.c:2666 msgid "(not a number)" msgstr "(keine Zahl)" @@ -2433,7 +2433,7 @@ msgid "getting list of mounted filesystems\n" msgstr "" # , c-format -#: lib/fs.c:153 rpmio/url.c:477 +#: lib/fs.c:153 rpmio/url.c:475 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" @@ -2443,47 +2443,47 @@ msgstr "Öffnen von %s fehlgeschlagen: %s" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:290 +#: lib/fsm.c:288 msgid "========= Directories not explictly included in package:\n" msgstr "" # , c-format -#: lib/fsm.c:292 +#: lib/fsm.c:290 #, fuzzy, c-format msgid "%9d %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: lib/fsm.c:1130 +#: lib/fsm.c:1124 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1407 +#: lib/fsm.c:1401 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1526 lib/fsm.c:1651 +#: lib/fsm.c:1520 lib/fsm.c:1645 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "kann Datei %s nicht öffnen: " -#: lib/fsm.c:1677 +#: lib/fsm.c:1671 #, 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:1683 +#: lib/fsm.c:1677 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "Entfernen von %s fehlgeschlagen: %s" -#: lib/fsm.c:1693 +#: lib/fsm.c:1687 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "öffnen von %s fehlgeschlagen: %s\n" -#: lib/fsm.c:1712 +#: lib/fsm.c:1706 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "kann Datei %s nicht öffnen: " @@ -2499,80 +2499,80 @@ msgid "Data type %d not supported\n" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1930 +#: lib/header.c:1932 #, c-format msgid "missing { after %" msgstr "fehlende { nach %{" #. @-observertrans -readonlytrans@ -#: lib/header.c:1960 +#: lib/header.c:1962 msgid "missing } after %{" msgstr "fehlende } nach %{" # ťTagŤ übersetzen??? -ke- #. @-observertrans -readonlytrans@ -#: lib/header.c:1974 +#: lib/header.c:1976 msgid "empty tag format" msgstr "leeres ťTagŤ-Format" #. @-observertrans -readonlytrans@ -#: lib/header.c:1988 +#: lib/header.c:1990 msgid "empty tag name" msgstr "leerer ťTagŤ-Name" #. @-observertrans -readonlytrans@ -#: lib/header.c:2005 +#: lib/header.c:2007 msgid "unknown tag" msgstr "unbekannter ťTagŤ" #. @-observertrans -readonlytrans@ -#: lib/header.c:2032 +#: lib/header.c:2034 msgid "] expected at end of array" msgstr "] am Ende des Arrays erwartet" #. @-observertrans -readonlytrans@ -#: lib/header.c:2050 +#: lib/header.c:2052 msgid "unexpected ]" msgstr "unerwartete ]" #. @-observertrans -readonlytrans@ -#: lib/header.c:2054 +#: lib/header.c:2056 msgid "unexpected }" msgstr "unerwartete }" #. @-observertrans -readonlytrans@ -#: lib/header.c:2120 +#: lib/header.c:2122 msgid "? expected in expression" msgstr "? im Ausdruck erwartet" #. @-observertrans -readonlytrans@ -#: lib/header.c:2129 +#: lib/header.c:2131 #, fuzzy msgid "{ expected after ? in expression" msgstr "{ nach ? im Ausdruck erwartet" #. @-observertrans -readonlytrans@ -#: lib/header.c:2142 lib/header.c:2184 +#: lib/header.c:2144 lib/header.c:2186 msgid "} expected in expression" msgstr "} im Ausdruck erwartet" #. @-observertrans -readonlytrans@ -#: lib/header.c:2152 +#: lib/header.c:2154 msgid ": expected following ? subexpression" msgstr ": nach ? Unterausdruck erwartet" #. @-observertrans -readonlytrans@ -#: lib/header.c:2169 +#: lib/header.c:2171 #, fuzzy msgid "{ expected after : in expression" msgstr "{ nach : im Ausdruck erwartet" #. @-observertrans -readonlytrans@ -#: lib/header.c:2194 +#: lib/header.c:2196 msgid "| expected at end of expression" msgstr "| am Ende des Ausdrucks erwartet" -#: lib/header.c:2381 +#: lib/header.c:2383 msgid "(unknown type)" msgstr "(unbekannter Typ)" @@ -3218,7 +3218,7 @@ msgid "can't query %s: %s\n" msgstr "Fehler: kann %s nicht öffnen\n" #: lib/query.c:576 lib/query.c:610 lib/rpminstall.c:309 lib/rpminstall.c:453 -#: lib/rpminstall.c:826 +#: lib/rpminstall.c:824 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "öffnen von %s fehlgeschlagen: %s\n" @@ -3359,28 +3359,28 @@ msgstr "%s: ťrpmReadSignatureŤ fehlgeschlagen\n" msgid "%s: No signature available (v1.0 RPM)\n" msgstr "%s: Keine Signatur verfügbar (v1.0 RPM)\n" -#: lib/rpmchecksig.c:437 +#: lib/rpmchecksig.c:431 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:438 lib/rpmchecksig.c:452 +#: lib/rpmchecksig.c:432 lib/rpmchecksig.c:446 #, fuzzy msgid " (MISSING KEYS:" msgstr " (FEHLENDE SCHLüSSEL)" -#: lib/rpmchecksig.c:440 lib/rpmchecksig.c:454 +#: lib/rpmchecksig.c:434 lib/rpmchecksig.c:448 msgid ") " msgstr "" -#: lib/rpmchecksig.c:441 lib/rpmchecksig.c:455 +#: lib/rpmchecksig.c:435 lib/rpmchecksig.c:449 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:443 lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 lib/rpmchecksig.c:451 msgid ")" msgstr "" -#: lib/rpmchecksig.c:451 +#: lib/rpmchecksig.c:445 msgid "OK" msgstr "" @@ -3431,7 +3431,7 @@ msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:445 lib/rpminstall.c:686 +#: lib/rpminstall.c:445 lib/rpminstall.c:684 #, fuzzy, c-format msgid "%s cannot be installed\n" msgstr "Fehler: %s kann nicht installiert werden\n" @@ -3480,7 +3480,7 @@ msgstr "Fehler: kann %s nicht öffnen\n" msgid "Installing %s\n" msgstr "Installiere %s\n" -#: lib/rpmlead.c:49 +#: lib/rpmlead.c:47 #, fuzzy, c-format msgid "read failed: %s (%d)\n" msgstr "lesen fehlgeschlagen: %s (%d)" @@ -3495,91 +3495,91 @@ msgstr "fehlendes zweites ':' bei %s:%d" msgid "missing architecture name at %s:%d\n" msgstr "fehlender Name cer Architektur bei %s:%d" -#: lib/rpmrc.c:325 +#: lib/rpmrc.c:328 #, fuzzy, c-format msgid "Incomplete data line at %s:%d\n" msgstr "Unvollständige Datenzeile bei %s:%d" -#: lib/rpmrc.c:330 +#: lib/rpmrc.c:333 #, fuzzy, c-format msgid "Too many args in data line at %s:%d\n" msgstr "Zu viele Argumente in der Datenzeile bei %s:%d" -#: lib/rpmrc.c:338 +#: lib/rpmrc.c:341 #, fuzzy, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "Unzureichende arch/os Zahl: %s (%s:%d)" -#: lib/rpmrc.c:378 +#: lib/rpmrc.c:384 #, fuzzy, c-format msgid "Incomplete default line at %s:%d\n" msgstr "Unvollständige Standardzeile bei %s:%d" -#: lib/rpmrc.c:383 +#: lib/rpmrc.c:389 #, fuzzy, c-format msgid "Too many args in default line at %s:%d\n" msgstr "Zu viele Argumente in der Standardzeile bei %s:%d" -#: lib/rpmrc.c:585 +#: lib/rpmrc.c:591 #, fuzzy, c-format msgid "Cannot expand %s\n" msgstr "Fehler: kann %s nicht öffnen\n" -#: lib/rpmrc.c:590 +#: lib/rpmrc.c:596 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "" # , c-format -#: lib/rpmrc.c:607 +#: lib/rpmrc.c:613 #, fuzzy, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "Datei %s kann nicht zum Lesen geöffnet werden: %s." # , c-format #. XXX Feof(fd) -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:660 #, fuzzy, c-format msgid "Failed to read %s: %s.\n" msgstr "Lesen von %s fehlgeschlagen: %s." -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:697 #, fuzzy, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "fehlender ':' bei %s:%d" -#: lib/rpmrc.c:708 lib/rpmrc.c:782 +#: lib/rpmrc.c:714 lib/rpmrc.c:788 #, fuzzy, c-format msgid "missing argument for %s at %s:%d\n" msgstr "fehlendes Argument für %s bei %s:%d" # , c-format -#: lib/rpmrc.c:725 lib/rpmrc.c:747 +#: lib/rpmrc.c:731 lib/rpmrc.c:753 #, fuzzy, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: lib/rpmrc.c:734 +#: lib/rpmrc.c:740 #, fuzzy, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "kann Datei %s nicht öffnen: " -#: lib/rpmrc.c:774 +#: lib/rpmrc.c:780 #, fuzzy, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "fehlende Architektur für %s bei %s:%d" -#: lib/rpmrc.c:841 +#: lib/rpmrc.c:847 #, fuzzy, c-format msgid "bad option '%s' at %s:%d\n" msgstr "unzureichende Option '%s' bei %s:%d" -#: lib/rpmrc.c:1436 +#: lib/rpmrc.c:1442 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1437 +#: lib/rpmrc.c:1443 msgid "Please contact rpm-list@redhat.com\n" msgstr "" @@ -3612,155 +3612,155 @@ msgstr "PGP-Signatur generieren" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Alte Signatur (nur intern)! Wie bist du daran gekommen!?" -#: lib/signature.c:230 +#: lib/signature.c:228 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:290 +#: lib/signature.c:288 #, fuzzy, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "Konnte pgp nicht durchführen" -#: lib/signature.c:303 +#: lib/signature.c:301 #, fuzzy msgid "pgp failed\n" msgstr "pgp fehlgeschlagen" #. PGP failed to write signature #. Just in case -#: lib/signature.c:310 +#: lib/signature.c:308 #, fuzzy msgid "pgp failed to write signature\n" msgstr "pgp fehlgeschlagen beim Schreiben der Signatur" -#: lib/signature.c:315 +#: lib/signature.c:313 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:328 lib/signature.c:410 +#: lib/signature.c:326 lib/signature.c:408 #, fuzzy msgid "unable to read the signature\n" msgstr "nicht möglich, die Signatur zu lesen" -#: lib/signature.c:333 +#: lib/signature.c:331 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:372 lib/signature.c:760 +#: lib/signature.c:370 lib/signature.c:758 #, fuzzy msgid "Couldn't exec gpg\n" msgstr "Konnte pgp nicht durchführen" -#: lib/signature.c:385 +#: lib/signature.c:383 #, fuzzy msgid "gpg failed\n" msgstr "pgp fehlgeschlagen" #. GPG failed to write signature #. Just in case -#: lib/signature.c:392 +#: lib/signature.c:390 #, fuzzy msgid "gpg failed to write signature\n" msgstr "pgp fehlgeschlagen beim Schreiben der Signatur" -#: lib/signature.c:397 +#: lib/signature.c:395 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:415 +#: lib/signature.c:413 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:443 +#: lib/signature.c:441 #, fuzzy msgid "Generating signature using PGP.\n" msgstr "PGP-Signatur generieren" -#: lib/signature.c:449 +#: lib/signature.c:447 #, fuzzy msgid "Generating signature using GPG.\n" msgstr "PGP-Signatur generieren" -#: lib/signature.c:532 lib/signature.c:607 +#: lib/signature.c:530 lib/signature.c:605 #, fuzzy msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "Konnte pgp nicht aufrufen. Überspring die PGP-Checks mit --nopgp." -#: lib/signature.c:697 +#: lib/signature.c:695 #, fuzzy msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "Konnte pgp nicht aufrufen. Überspring die PGP-Checks mit --nopgp." -#: lib/signature.c:789 +#: lib/signature.c:787 #, fuzzy msgid "Couldn't exec pgp\n" msgstr "Konnte pgp nicht durchführen" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:793 lib/signature.c:846 +#: lib/signature.c:791 lib/signature.c:844 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:826 +#: lib/signature.c:824 #, fuzzy, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "\"pgp_name:\" muss in der rpmrc-Datei gesetzt sein" -#: lib/signature.c:838 +#: lib/signature.c:836 #, fuzzy, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "\"pgp_name:\" muss in der rpmrc-Datei gesetzt sein" -#: lib/transaction.c:446 +#: lib/transaction.c:447 msgid "========== relocations\n" msgstr "" # , c-format -#: lib/transaction.c:450 +#: lib/transaction.c:451 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "Hole %s heraus\n" -#: lib/transaction.c:453 +#: lib/transaction.c:454 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "kann Datei %s nicht öffnen: " # , c-format -#: lib/transaction.c:523 +#: lib/transaction.c:524 #, fuzzy, c-format msgid "excluding multilib path %s%s\n" msgstr "Hole %s heraus\n" # , c-format -#: lib/transaction.c:586 +#: lib/transaction.c:587 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "Hole %s heraus\n" -#: lib/transaction.c:596 +#: lib/transaction.c:597 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:674 +#: lib/transaction.c:675 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" -#: lib/transaction.c:808 +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1406 +#: lib/transaction.c:1407 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" @@ -3958,131 +3958,131 @@ msgstr "Fehler bei Schreiben des Eintrags %s nach %s" msgid "error(%d) removing record %s from %s\n" msgstr "Fehler beim Löschen des Eintrags %s nach %s" -#: rpmdb/rpmdb.c:842 +#: rpmdb/rpmdb.c:846 #, fuzzy msgid "no dbpath has been set\n" msgstr "ťdbpathŤ ist nicht gesetzt" -#: rpmdb/rpmdb.c:973 +#: rpmdb/rpmdb.c:977 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1206 +#: rpmdb/rpmdb.c:1210 #, fuzzy, c-format msgid "error(%d) counting packages\n" msgstr "Fehler beim Suchen nach Paket %s\n" -#: rpmdb/rpmdb.c:1940 rpmdb/rpmdb.c:3122 +#: rpmdb/rpmdb.c:1944 rpmdb/rpmdb.c:3126 #, fuzzy, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" "Eintrag Nummer %d in der Datenback ist nicht in Ordnung -- wird übersprungen" -#: rpmdb/rpmdb.c:1991 +#: rpmdb/rpmdb.c:1995 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2256 +#: rpmdb/rpmdb.c:2260 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "kann Kopfzeilen bei %d nicht lesen, um danach zu suchen" # FIXME -#: rpmdb/rpmdb.c:2325 +#: rpmdb/rpmdb.c:2329 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "Fehler beim Löschen des Eintrags %s nach %s" # FIXME -#: rpmdb/rpmdb.c:2334 +#: rpmdb/rpmdb.c:2338 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "Fehler beim Löschen des Eintrags %s nach %s" -#: rpmdb/rpmdb.c:2529 +#: rpmdb/rpmdb.c:2533 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "Fehler beim Suchen nach Paket %s\n" -#: rpmdb/rpmdb.c:2607 +#: rpmdb/rpmdb.c:2611 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" # FIXME -#: rpmdb/rpmdb.c:2618 +#: rpmdb/rpmdb.c:2622 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "Fehler beim Löschen des Eintrags %s nach %s" -#: rpmdb/rpmdb.c:3011 +#: rpmdb/rpmdb.c:3015 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3041 +#: rpmdb/rpmdb.c:3045 msgid "no dbpath has been set" msgstr "ťdbpathŤ ist nicht gesetzt" -#: rpmdb/rpmdb.c:3068 +#: rpmdb/rpmdb.c:3072 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: rpmdb/rpmdb.c:3072 +#: rpmdb/rpmdb.c:3076 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "die temporäre Datenbank %s existiert schon" -#: rpmdb/rpmdb.c:3078 +#: rpmdb/rpmdb.c:3082 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" -#: rpmdb/rpmdb.c:3080 +#: rpmdb/rpmdb.c:3084 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" -#: rpmdb/rpmdb.c:3087 +#: rpmdb/rpmdb.c:3091 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: rpmdb/rpmdb.c:3098 +#: rpmdb/rpmdb.c:3102 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: rpmdb/rpmdb.c:3162 +#: rpmdb/rpmdb.c:3166 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "kann einen Eintrag hinzufügen, ursprünglich bei %d" -#: rpmdb/rpmdb.c:3180 +#: rpmdb/rpmdb.c:3184 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3188 +#: rpmdb/rpmdb.c:3192 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3190 +#: rpmdb/rpmdb.c:3194 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3200 +#: rpmdb/rpmdb.c:3204 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" # , c-format -#: rpmdb/rpmdb.c:3202 +#: rpmdb/rpmdb.c:3206 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" @@ -4179,68 +4179,68 @@ msgstr "Öffnen von %s fehlgeschlagen: %s" msgid "File %s is smaller than %u bytes\n" msgstr "" -#: rpmio/rpmio.c:599 +#: rpmio/rpmio.c:588 msgid "Success" msgstr "" -#: rpmio/rpmio.c:602 +#: rpmio/rpmio.c:591 #, fuzzy msgid "Bad server response" msgstr "Nicht passende Antwort des FTP-Servers" -#: rpmio/rpmio.c:605 +#: rpmio/rpmio.c:594 #, fuzzy msgid "Server I/O error" msgstr "FTP IO-Fehler" -#: rpmio/rpmio.c:608 +#: rpmio/rpmio.c:597 #, fuzzy msgid "Server timeout" msgstr "Timeout des FTP-Servers" -#: rpmio/rpmio.c:611 +#: rpmio/rpmio.c:600 #, fuzzy msgid "Unable to lookup server host address" msgstr "Unmöglich die Hostadresse des FTP-Servers zu bestimmen" -#: rpmio/rpmio.c:614 +#: rpmio/rpmio.c:603 #, fuzzy msgid "Unable to lookup server host name" msgstr "Unmöglich den Hostnamen des FTP-Servers zu bestimmen" -#: rpmio/rpmio.c:617 +#: rpmio/rpmio.c:606 #, fuzzy msgid "Failed to connect to server" msgstr "Verbindung zum FTP-Server fehlgeschlagen" -#: rpmio/rpmio.c:620 +#: rpmio/rpmio.c:609 #, fuzzy msgid "Failed to establish data connection to server" msgstr "Aufbau einer Datenverbindung zum FTP-Server fehlgeschlagen" -#: rpmio/rpmio.c:623 +#: rpmio/rpmio.c:612 #, fuzzy msgid "I/O error to local file" msgstr "IO-Fehler bei lokaler Datei" -#: rpmio/rpmio.c:626 +#: rpmio/rpmio.c:615 msgid "Error setting remote server to passive mode" msgstr "Fehler beim Setzen des FTP-Servers in den passiven Modus" -#: rpmio/rpmio.c:629 +#: rpmio/rpmio.c:618 msgid "File not found on server" msgstr "Datei auf dem Server nicht gefunden" -#: rpmio/rpmio.c:632 +#: rpmio/rpmio.c:621 msgid "Abort in progress" msgstr "" -#: rpmio/rpmio.c:636 +#: rpmio/rpmio.c:625 #, fuzzy msgid "Unknown or unexpected error" msgstr "FTP Unbekannter oder nicht erwarteter Fehler" -#: rpmio/rpmio.c:1259 +#: rpmio/rpmio.c:1252 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" @@ -4251,7 +4251,7 @@ msgid "(no error)" msgstr "Fehler: " #. @-readonlytrans@ -#. FIX: double indeirection. +#. FIX: double indirection. #. @observer@ #: rpmio/rpmlog.c:114 rpmio/rpmlog.c:115 rpmio/rpmlog.c:116 msgid "fatal error: " @@ -4272,39 +4272,39 @@ msgstr "Warnung: " msgid "memory alloc (%u bytes) returned NULL.\n" msgstr "" -#: rpmio/url.c:103 +#: rpmio/url.c:101 #, c-format msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:123 +#: rpmio/url.c:121 #, c-format msgid "warning: u %p data %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:151 +#: rpmio/url.c:149 #, c-format msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" msgstr "" -#: rpmio/url.c:244 +#: rpmio/url.c:242 #, c-format msgid "Password for %s@%s: " msgstr "Passworf für %s@%s: " -#: rpmio/url.c:269 rpmio/url.c:295 +#: rpmio/url.c:267 rpmio/url.c:293 #, fuzzy, c-format msgid "error: %sport must be a number\n" msgstr "Fehler: der FTP-Port muss eine Zahl sein\n" -#: rpmio/url.c:434 +#: rpmio/url.c:432 #, fuzzy msgid "url port must be a number\n" msgstr "Fehler: der FTP-Port muss eine Zahl sein\n" # , c-format #. XXX Fstrerror -#: rpmio/url.c:497 +#: rpmio/url.c:495 #, fuzzy, c-format msgid "failed to create %s: %s\n" msgstr "anlegen von %s fehlgeschlagen\n" diff --git a/po/en_RN.po b/po/en_RN.po index fb01a5cdf..3f3a0d050 100644 --- a/po/en_RN.po +++ b/po/en_RN.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-09-21 11:01-0400\n" +"POT-Creation-Date: 2001-09-24 20:14-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -1055,15 +1055,15 @@ msgstr "" msgid "exec failed\n" msgstr "" -#: rpm.c:1116 rpmqv.c:1103 +#: rpm.c:1116 rpmqv.c:1104 msgid "unexpected arguments to --querytags " msgstr "" -#: rpm.c:1127 rpmqv.c:1112 +#: rpm.c:1127 rpmqv.c:1113 msgid "no packages given for signature check" msgstr "" -#: rpm.c:1138 rpmqv.c:1121 +#: rpm.c:1138 rpmqv.c:1122 msgid "no packages given for signing" msgstr "" @@ -1075,19 +1075,19 @@ msgstr "" msgid "no packages given for install" msgstr "" -#: rpm.c:1267 rpmqv.c:1066 +#: rpm.c:1267 rpmqv.c:1067 msgid "extra arguments given for query of all packages" msgstr "" -#: rpm.c:1272 rpmqv.c:1075 +#: rpm.c:1272 rpmqv.c:1076 msgid "no arguments given for query" msgstr "" -#: rpm.c:1289 rpmqv.c:1091 +#: rpm.c:1289 rpmqv.c:1092 msgid "extra arguments given for verify of all packages" msgstr "" -#: rpm.c:1293 rpmqv.c:1095 +#: rpm.c:1293 rpmqv.c:1096 msgid "no arguments given for verify" msgstr "" @@ -1696,17 +1696,17 @@ msgstr "" msgid "line %d: Error parsing %%description: %s\n" msgstr "" -#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:192 +#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:190 #, c-format msgid "line %d: Bad option %s: %s\n" msgstr "" -#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:204 +#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:202 #, c-format msgid "line %d: Too many names: %s\n" msgstr "" -#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:213 +#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:211 #, c-format msgid "line %d: Package does not exist: %s\n" msgstr "" @@ -1936,22 +1936,22 @@ msgstr "" msgid "line %d: Version required: %s\n" msgstr "" -#: build/parseScript.c:158 +#: build/parseScript.c:156 #, c-format msgid "line %d: triggers must have --: %s\n" msgstr "" -#: build/parseScript.c:168 build/parseScript.c:229 +#: build/parseScript.c:166 build/parseScript.c:227 #, c-format msgid "line %d: Error parsing %s: %s\n" msgstr "" -#: build/parseScript.c:179 +#: build/parseScript.c:177 #, c-format msgid "line %d: script program must begin with '/': %s\n" msgstr "" -#: build/parseScript.c:221 +#: build/parseScript.c:219 #, c-format msgid "line %d: Second %s\n" msgstr "" @@ -1992,11 +1992,11 @@ msgstr "" msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:508 +#: build/parseSpec.c:509 msgid "No compatible architectures found for build\n" msgstr "" -#: build/parseSpec.c:563 +#: build/parseSpec.c:564 #, c-format msgid "Package has no %%description: %s\n" msgstr "" @@ -2070,106 +2070,106 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "YES" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "NO " msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1015 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1131 +#: lib/depends.c:1126 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1222 +#: lib/depends.c:1217 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "" -#: lib/depends.c:1251 +#: lib/depends.c:1246 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1268 +#: lib/depends.c:1263 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "" -#: lib/depends.c:1292 +#: lib/depends.c:1287 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1305 +#: lib/depends.c:1300 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1319 +#: lib/depends.c:1314 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "" -#: lib/depends.c:1335 +#: lib/depends.c:1330 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1356 +#: lib/depends.c:1351 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1428 +#: lib/depends.c:1423 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1507 +#: lib/depends.c:1502 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:1753 +#: lib/depends.c:1748 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1902 +#: lib/depends.c:1897 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1960 +#: lib/depends.c:1955 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2010 +#: lib/depends.c:2005 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2062 +#: lib/depends.c:2057 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2091 +#: lib/depends.c:2086 msgid "========== continuing tsort ...\n" msgstr "" #: lib/formats.c:28 lib/formats.c:54 lib/formats.c:85 lib/formats.c:128 -#: lib/header.c:2621 lib/header.c:2642 lib/header.c:2664 +#: lib/header.c:2623 lib/header.c:2644 lib/header.c:2666 msgid "(not a number)" msgstr "" @@ -2192,7 +2192,7 @@ msgstr "" msgid "getting list of mounted filesystems\n" msgstr "" -#: lib/fs.c:153 rpmio/url.c:477 +#: lib/fs.c:153 rpmio/url.c:475 #, c-format msgid "failed to open %s: %s\n" msgstr "" @@ -2202,46 +2202,46 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:290 +#: lib/fsm.c:288 msgid "========= Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:292 +#: lib/fsm.c:290 #, c-format msgid "%9d %s\n" msgstr "" -#: lib/fsm.c:1130 +#: lib/fsm.c:1124 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1407 +#: lib/fsm.c:1401 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1526 lib/fsm.c:1651 +#: lib/fsm.c:1520 lib/fsm.c:1645 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1677 +#: lib/fsm.c:1671 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1683 +#: lib/fsm.c:1677 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1693 +#: lib/fsm.c:1687 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1712 +#: lib/fsm.c:1706 #, c-format msgid "%s created as %s\n" msgstr "" @@ -2257,77 +2257,77 @@ msgid "Data type %d not supported\n" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1930 +#: lib/header.c:1932 #, c-format msgid "missing { after %" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1960 +#: lib/header.c:1962 msgid "missing } after %{" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1974 +#: lib/header.c:1976 msgid "empty tag format" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1988 +#: lib/header.c:1990 msgid "empty tag name" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2005 +#: lib/header.c:2007 msgid "unknown tag" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2032 +#: lib/header.c:2034 msgid "] expected at end of array" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2050 +#: lib/header.c:2052 msgid "unexpected ]" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2054 +#: lib/header.c:2056 msgid "unexpected }" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2120 +#: lib/header.c:2122 msgid "? expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2129 +#: lib/header.c:2131 msgid "{ expected after ? in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2142 lib/header.c:2184 +#: lib/header.c:2144 lib/header.c:2186 msgid "} expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2152 +#: lib/header.c:2154 msgid ": expected following ? subexpression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2169 +#: lib/header.c:2171 msgid "{ expected after : in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2194 +#: lib/header.c:2196 msgid "| expected at end of expression" msgstr "" -#: lib/header.c:2381 +#: lib/header.c:2383 msgid "(unknown type)" msgstr "" @@ -2905,7 +2905,7 @@ msgid "can't query %s: %s\n" msgstr "" #: lib/query.c:576 lib/query.c:610 lib/rpminstall.c:309 lib/rpminstall.c:453 -#: lib/rpminstall.c:826 +#: lib/rpminstall.c:824 #, c-format msgid "open of %s failed: %s\n" msgstr "" @@ -3042,27 +3042,27 @@ msgstr "" msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:437 +#: lib/rpmchecksig.c:431 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:438 lib/rpmchecksig.c:452 +#: lib/rpmchecksig.c:432 lib/rpmchecksig.c:446 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:440 lib/rpmchecksig.c:454 +#: lib/rpmchecksig.c:434 lib/rpmchecksig.c:448 msgid ") " msgstr "" -#: lib/rpmchecksig.c:441 lib/rpmchecksig.c:455 +#: lib/rpmchecksig.c:435 lib/rpmchecksig.c:449 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:443 lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 lib/rpmchecksig.c:451 msgid ")" msgstr "" -#: lib/rpmchecksig.c:451 +#: lib/rpmchecksig.c:445 msgid "OK" msgstr "" @@ -3111,7 +3111,7 @@ msgstr "" msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:445 lib/rpminstall.c:686 +#: lib/rpminstall.c:445 lib/rpminstall.c:684 #, c-format msgid "%s cannot be installed\n" msgstr "" @@ -3158,7 +3158,7 @@ msgstr "" msgid "Installing %s\n" msgstr "" -#: lib/rpmlead.c:49 +#: lib/rpmlead.c:47 #, c-format msgid "read failed: %s (%d)\n" msgstr "" @@ -3173,88 +3173,88 @@ msgstr "" msgid "missing architecture name at %s:%d\n" msgstr "" -#: lib/rpmrc.c:325 +#: lib/rpmrc.c:328 #, c-format msgid "Incomplete data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:330 +#: lib/rpmrc.c:333 #, c-format msgid "Too many args in data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:338 +#: lib/rpmrc.c:341 #, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "" -#: lib/rpmrc.c:378 +#: lib/rpmrc.c:384 #, c-format msgid "Incomplete default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:383 +#: lib/rpmrc.c:389 #, c-format msgid "Too many args in default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:585 +#: lib/rpmrc.c:591 #, c-format msgid "Cannot expand %s\n" msgstr "" -#: lib/rpmrc.c:590 +#: lib/rpmrc.c:596 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "" -#: lib/rpmrc.c:607 +#: lib/rpmrc.c:613 #, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "" #. XXX Feof(fd) -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:660 #, c-format msgid "Failed to read %s: %s.\n" msgstr "" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:697 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "" -#: lib/rpmrc.c:708 lib/rpmrc.c:782 +#: lib/rpmrc.c:714 lib/rpmrc.c:788 #, c-format msgid "missing argument for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:725 lib/rpmrc.c:747 +#: lib/rpmrc.c:731 lib/rpmrc.c:753 #, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "" -#: lib/rpmrc.c:734 +#: lib/rpmrc.c:740 #, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "" -#: lib/rpmrc.c:774 +#: lib/rpmrc.c:780 #, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:841 +#: lib/rpmrc.c:847 #, c-format msgid "bad option '%s' at %s:%d\n" msgstr "" -#: lib/rpmrc.c:1436 +#: lib/rpmrc.c:1442 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1437 +#: lib/rpmrc.c:1443 msgid "Please contact rpm-list@redhat.com\n" msgstr "" @@ -3284,141 +3284,141 @@ msgstr "" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:230 +#: lib/signature.c:228 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:290 +#: lib/signature.c:288 #, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "" -#: lib/signature.c:303 +#: lib/signature.c:301 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:310 +#: lib/signature.c:308 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:315 +#: lib/signature.c:313 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:328 lib/signature.c:410 +#: lib/signature.c:326 lib/signature.c:408 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:333 +#: lib/signature.c:331 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:372 lib/signature.c:760 +#: lib/signature.c:370 lib/signature.c:758 msgid "Couldn't exec gpg\n" msgstr "" -#: lib/signature.c:385 +#: lib/signature.c:383 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:392 +#: lib/signature.c:390 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:397 +#: lib/signature.c:395 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:415 +#: lib/signature.c:413 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:443 +#: lib/signature.c:441 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:449 +#: lib/signature.c:447 msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:532 lib/signature.c:607 +#: lib/signature.c:530 lib/signature.c:605 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" -#: lib/signature.c:697 +#: lib/signature.c:695 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" -#: lib/signature.c:789 +#: lib/signature.c:787 msgid "Couldn't exec pgp\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:793 lib/signature.c:846 +#: lib/signature.c:791 lib/signature.c:844 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:826 +#: lib/signature.c:824 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:838 +#: lib/signature.c:836 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/transaction.c:446 +#: lib/transaction.c:447 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:450 +#: lib/transaction.c:451 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/transaction.c:453 +#: lib/transaction.c:454 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/transaction.c:523 +#: lib/transaction.c:524 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/transaction.c:586 +#: lib/transaction.c:587 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/transaction.c:596 +#: lib/transaction.c:597 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:674 +#: lib/transaction.c:675 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:808 +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1406 +#: lib/transaction.c:1407 #, c-format msgid "excluding directory %s\n" msgstr "" @@ -3613,125 +3613,125 @@ msgstr "" msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:842 +#: rpmdb/rpmdb.c:846 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:973 +#: rpmdb/rpmdb.c:977 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1206 +#: rpmdb/rpmdb.c:1210 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:1940 rpmdb/rpmdb.c:3122 +#: rpmdb/rpmdb.c:1944 rpmdb/rpmdb.c:3126 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:1991 +#: rpmdb/rpmdb.c:1995 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2256 +#: rpmdb/rpmdb.c:2260 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2325 +#: rpmdb/rpmdb.c:2329 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2334 +#: rpmdb/rpmdb.c:2338 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2529 +#: rpmdb/rpmdb.c:2533 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2607 +#: rpmdb/rpmdb.c:2611 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2618 +#: rpmdb/rpmdb.c:2622 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3011 +#: rpmdb/rpmdb.c:3015 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3041 +#: rpmdb/rpmdb.c:3045 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3068 +#: rpmdb/rpmdb.c:3072 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3072 +#: rpmdb/rpmdb.c:3076 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3078 +#: rpmdb/rpmdb.c:3082 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3080 +#: rpmdb/rpmdb.c:3084 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3087 +#: rpmdb/rpmdb.c:3091 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3098 +#: rpmdb/rpmdb.c:3102 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3162 +#: rpmdb/rpmdb.c:3166 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3180 +#: rpmdb/rpmdb.c:3184 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3188 +#: rpmdb/rpmdb.c:3192 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3190 +#: rpmdb/rpmdb.c:3194 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3200 +#: rpmdb/rpmdb.c:3204 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3202 +#: rpmdb/rpmdb.c:3206 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" @@ -3827,59 +3827,59 @@ msgstr "" msgid "File %s is smaller than %u bytes\n" msgstr "" -#: rpmio/rpmio.c:599 +#: rpmio/rpmio.c:588 msgid "Success" msgstr "" -#: rpmio/rpmio.c:602 +#: rpmio/rpmio.c:591 msgid "Bad server response" msgstr "" -#: rpmio/rpmio.c:605 +#: rpmio/rpmio.c:594 msgid "Server I/O error" msgstr "" -#: rpmio/rpmio.c:608 +#: rpmio/rpmio.c:597 msgid "Server timeout" msgstr "" -#: rpmio/rpmio.c:611 +#: rpmio/rpmio.c:600 msgid "Unable to lookup server host address" msgstr "" -#: rpmio/rpmio.c:614 +#: rpmio/rpmio.c:603 msgid "Unable to lookup server host name" msgstr "" -#: rpmio/rpmio.c:617 +#: rpmio/rpmio.c:606 msgid "Failed to connect to server" msgstr "" -#: rpmio/rpmio.c:620 +#: rpmio/rpmio.c:609 msgid "Failed to establish data connection to server" msgstr "" -#: rpmio/rpmio.c:623 +#: rpmio/rpmio.c:612 msgid "I/O error to local file" msgstr "" -#: rpmio/rpmio.c:626 +#: rpmio/rpmio.c:615 msgid "Error setting remote server to passive mode" msgstr "" -#: rpmio/rpmio.c:629 +#: rpmio/rpmio.c:618 msgid "File not found on server" msgstr "" -#: rpmio/rpmio.c:632 +#: rpmio/rpmio.c:621 msgid "Abort in progress" msgstr "" -#: rpmio/rpmio.c:636 +#: rpmio/rpmio.c:625 msgid "Unknown or unexpected error" msgstr "" -#: rpmio/rpmio.c:1259 +#: rpmio/rpmio.c:1252 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" @@ -3889,7 +3889,7 @@ msgid "(no error)" msgstr "" #. @-readonlytrans@ -#. FIX: double indeirection. +#. FIX: double indirection. #. @observer@ #: rpmio/rpmlog.c:114 rpmio/rpmlog.c:115 rpmio/rpmlog.c:116 msgid "fatal error: " @@ -3910,37 +3910,37 @@ msgstr "" msgid "memory alloc (%u bytes) returned NULL.\n" msgstr "" -#: rpmio/url.c:103 +#: rpmio/url.c:101 #, c-format msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:123 +#: rpmio/url.c:121 #, c-format msgid "warning: u %p data %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:151 +#: rpmio/url.c:149 #, c-format msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" msgstr "" -#: rpmio/url.c:244 +#: rpmio/url.c:242 #, c-format msgid "Password for %s@%s: " msgstr "" -#: rpmio/url.c:269 rpmio/url.c:295 +#: rpmio/url.c:267 rpmio/url.c:293 #, c-format msgid "error: %sport must be a number\n" msgstr "" -#: rpmio/url.c:434 +#: rpmio/url.c:432 msgid "url port must be a number\n" msgstr "" #. XXX Fstrerror -#: rpmio/url.c:497 +#: rpmio/url.c:495 #, c-format msgid "failed to create %s: %s\n" msgstr "" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-09-21 11:01-0400\n" +"POT-Creation-Date: 2001-09-24 20:14-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -1055,15 +1055,15 @@ msgstr "" msgid "exec failed\n" msgstr "" -#: rpm.c:1116 rpmqv.c:1103 +#: rpm.c:1116 rpmqv.c:1104 msgid "unexpected arguments to --querytags " msgstr "" -#: rpm.c:1127 rpmqv.c:1112 +#: rpm.c:1127 rpmqv.c:1113 msgid "no packages given for signature check" msgstr "" -#: rpm.c:1138 rpmqv.c:1121 +#: rpm.c:1138 rpmqv.c:1122 msgid "no packages given for signing" msgstr "" @@ -1075,19 +1075,19 @@ msgstr "" msgid "no packages given for install" msgstr "" -#: rpm.c:1267 rpmqv.c:1066 +#: rpm.c:1267 rpmqv.c:1067 msgid "extra arguments given for query of all packages" msgstr "" -#: rpm.c:1272 rpmqv.c:1075 +#: rpm.c:1272 rpmqv.c:1076 msgid "no arguments given for query" msgstr "" -#: rpm.c:1289 rpmqv.c:1091 +#: rpm.c:1289 rpmqv.c:1092 msgid "extra arguments given for verify of all packages" msgstr "" -#: rpm.c:1293 rpmqv.c:1095 +#: rpm.c:1293 rpmqv.c:1096 msgid "no arguments given for verify" msgstr "" @@ -1696,17 +1696,17 @@ msgstr "" msgid "line %d: Error parsing %%description: %s\n" msgstr "" -#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:192 +#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:190 #, c-format msgid "line %d: Bad option %s: %s\n" msgstr "" -#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:204 +#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:202 #, c-format msgid "line %d: Too many names: %s\n" msgstr "" -#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:213 +#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:211 #, c-format msgid "line %d: Package does not exist: %s\n" msgstr "" @@ -1936,22 +1936,22 @@ msgstr "" msgid "line %d: Version required: %s\n" msgstr "" -#: build/parseScript.c:158 +#: build/parseScript.c:156 #, c-format msgid "line %d: triggers must have --: %s\n" msgstr "" -#: build/parseScript.c:168 build/parseScript.c:229 +#: build/parseScript.c:166 build/parseScript.c:227 #, c-format msgid "line %d: Error parsing %s: %s\n" msgstr "" -#: build/parseScript.c:179 +#: build/parseScript.c:177 #, c-format msgid "line %d: script program must begin with '/': %s\n" msgstr "" -#: build/parseScript.c:221 +#: build/parseScript.c:219 #, c-format msgid "line %d: Second %s\n" msgstr "" @@ -1992,11 +1992,11 @@ msgstr "" msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:508 +#: build/parseSpec.c:509 msgid "No compatible architectures found for build\n" msgstr "" -#: build/parseSpec.c:563 +#: build/parseSpec.c:564 #, c-format msgid "Package has no %%description: %s\n" msgstr "" @@ -2070,106 +2070,106 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "YES" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "NO " msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1015 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1131 +#: lib/depends.c:1126 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1222 +#: lib/depends.c:1217 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "" -#: lib/depends.c:1251 +#: lib/depends.c:1246 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1268 +#: lib/depends.c:1263 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "" -#: lib/depends.c:1292 +#: lib/depends.c:1287 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1305 +#: lib/depends.c:1300 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1319 +#: lib/depends.c:1314 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "" -#: lib/depends.c:1335 +#: lib/depends.c:1330 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1356 +#: lib/depends.c:1351 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1428 +#: lib/depends.c:1423 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1507 +#: lib/depends.c:1502 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:1753 +#: lib/depends.c:1748 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1902 +#: lib/depends.c:1897 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1960 +#: lib/depends.c:1955 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2010 +#: lib/depends.c:2005 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2062 +#: lib/depends.c:2057 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2091 +#: lib/depends.c:2086 msgid "========== continuing tsort ...\n" msgstr "" #: lib/formats.c:28 lib/formats.c:54 lib/formats.c:85 lib/formats.c:128 -#: lib/header.c:2621 lib/header.c:2642 lib/header.c:2664 +#: lib/header.c:2623 lib/header.c:2644 lib/header.c:2666 msgid "(not a number)" msgstr "" @@ -2192,7 +2192,7 @@ msgstr "" msgid "getting list of mounted filesystems\n" msgstr "" -#: lib/fs.c:153 rpmio/url.c:477 +#: lib/fs.c:153 rpmio/url.c:475 #, c-format msgid "failed to open %s: %s\n" msgstr "" @@ -2202,46 +2202,46 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:290 +#: lib/fsm.c:288 msgid "========= Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:292 +#: lib/fsm.c:290 #, c-format msgid "%9d %s\n" msgstr "" -#: lib/fsm.c:1130 +#: lib/fsm.c:1124 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1407 +#: lib/fsm.c:1401 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1526 lib/fsm.c:1651 +#: lib/fsm.c:1520 lib/fsm.c:1645 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1677 +#: lib/fsm.c:1671 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1683 +#: lib/fsm.c:1677 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1693 +#: lib/fsm.c:1687 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1712 +#: lib/fsm.c:1706 #, c-format msgid "%s created as %s\n" msgstr "" @@ -2257,77 +2257,77 @@ msgid "Data type %d not supported\n" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1930 +#: lib/header.c:1932 #, c-format msgid "missing { after %" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1960 +#: lib/header.c:1962 msgid "missing } after %{" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1974 +#: lib/header.c:1976 msgid "empty tag format" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1988 +#: lib/header.c:1990 msgid "empty tag name" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2005 +#: lib/header.c:2007 msgid "unknown tag" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2032 +#: lib/header.c:2034 msgid "] expected at end of array" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2050 +#: lib/header.c:2052 msgid "unexpected ]" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2054 +#: lib/header.c:2056 msgid "unexpected }" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2120 +#: lib/header.c:2122 msgid "? expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2129 +#: lib/header.c:2131 msgid "{ expected after ? in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2142 lib/header.c:2184 +#: lib/header.c:2144 lib/header.c:2186 msgid "} expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2152 +#: lib/header.c:2154 msgid ": expected following ? subexpression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2169 +#: lib/header.c:2171 msgid "{ expected after : in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2194 +#: lib/header.c:2196 msgid "| expected at end of expression" msgstr "" -#: lib/header.c:2381 +#: lib/header.c:2383 msgid "(unknown type)" msgstr "" @@ -2905,7 +2905,7 @@ msgid "can't query %s: %s\n" msgstr "" #: lib/query.c:576 lib/query.c:610 lib/rpminstall.c:309 lib/rpminstall.c:453 -#: lib/rpminstall.c:826 +#: lib/rpminstall.c:824 #, c-format msgid "open of %s failed: %s\n" msgstr "" @@ -3042,27 +3042,27 @@ msgstr "" msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:437 +#: lib/rpmchecksig.c:431 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:438 lib/rpmchecksig.c:452 +#: lib/rpmchecksig.c:432 lib/rpmchecksig.c:446 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:440 lib/rpmchecksig.c:454 +#: lib/rpmchecksig.c:434 lib/rpmchecksig.c:448 msgid ") " msgstr "" -#: lib/rpmchecksig.c:441 lib/rpmchecksig.c:455 +#: lib/rpmchecksig.c:435 lib/rpmchecksig.c:449 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:443 lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 lib/rpmchecksig.c:451 msgid ")" msgstr "" -#: lib/rpmchecksig.c:451 +#: lib/rpmchecksig.c:445 msgid "OK" msgstr "" @@ -3111,7 +3111,7 @@ msgstr "" msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:445 lib/rpminstall.c:686 +#: lib/rpminstall.c:445 lib/rpminstall.c:684 #, c-format msgid "%s cannot be installed\n" msgstr "" @@ -3158,7 +3158,7 @@ msgstr "" msgid "Installing %s\n" msgstr "" -#: lib/rpmlead.c:49 +#: lib/rpmlead.c:47 #, c-format msgid "read failed: %s (%d)\n" msgstr "" @@ -3173,88 +3173,88 @@ msgstr "" msgid "missing architecture name at %s:%d\n" msgstr "" -#: lib/rpmrc.c:325 +#: lib/rpmrc.c:328 #, c-format msgid "Incomplete data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:330 +#: lib/rpmrc.c:333 #, c-format msgid "Too many args in data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:338 +#: lib/rpmrc.c:341 #, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "" -#: lib/rpmrc.c:378 +#: lib/rpmrc.c:384 #, c-format msgid "Incomplete default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:383 +#: lib/rpmrc.c:389 #, c-format msgid "Too many args in default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:585 +#: lib/rpmrc.c:591 #, c-format msgid "Cannot expand %s\n" msgstr "" -#: lib/rpmrc.c:590 +#: lib/rpmrc.c:596 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "" -#: lib/rpmrc.c:607 +#: lib/rpmrc.c:613 #, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "" #. XXX Feof(fd) -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:660 #, c-format msgid "Failed to read %s: %s.\n" msgstr "" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:697 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "" -#: lib/rpmrc.c:708 lib/rpmrc.c:782 +#: lib/rpmrc.c:714 lib/rpmrc.c:788 #, c-format msgid "missing argument for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:725 lib/rpmrc.c:747 +#: lib/rpmrc.c:731 lib/rpmrc.c:753 #, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "" -#: lib/rpmrc.c:734 +#: lib/rpmrc.c:740 #, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "" -#: lib/rpmrc.c:774 +#: lib/rpmrc.c:780 #, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:841 +#: lib/rpmrc.c:847 #, c-format msgid "bad option '%s' at %s:%d\n" msgstr "" -#: lib/rpmrc.c:1436 +#: lib/rpmrc.c:1442 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1437 +#: lib/rpmrc.c:1443 msgid "Please contact rpm-list@redhat.com\n" msgstr "" @@ -3284,141 +3284,141 @@ msgstr "" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:230 +#: lib/signature.c:228 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:290 +#: lib/signature.c:288 #, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "" -#: lib/signature.c:303 +#: lib/signature.c:301 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:310 +#: lib/signature.c:308 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:315 +#: lib/signature.c:313 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:328 lib/signature.c:410 +#: lib/signature.c:326 lib/signature.c:408 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:333 +#: lib/signature.c:331 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:372 lib/signature.c:760 +#: lib/signature.c:370 lib/signature.c:758 msgid "Couldn't exec gpg\n" msgstr "" -#: lib/signature.c:385 +#: lib/signature.c:383 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:392 +#: lib/signature.c:390 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:397 +#: lib/signature.c:395 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:415 +#: lib/signature.c:413 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:443 +#: lib/signature.c:441 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:449 +#: lib/signature.c:447 msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:532 lib/signature.c:607 +#: lib/signature.c:530 lib/signature.c:605 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" -#: lib/signature.c:697 +#: lib/signature.c:695 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" -#: lib/signature.c:789 +#: lib/signature.c:787 msgid "Couldn't exec pgp\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:793 lib/signature.c:846 +#: lib/signature.c:791 lib/signature.c:844 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:826 +#: lib/signature.c:824 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:838 +#: lib/signature.c:836 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/transaction.c:446 +#: lib/transaction.c:447 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:450 +#: lib/transaction.c:451 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/transaction.c:453 +#: lib/transaction.c:454 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/transaction.c:523 +#: lib/transaction.c:524 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/transaction.c:586 +#: lib/transaction.c:587 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/transaction.c:596 +#: lib/transaction.c:597 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:674 +#: lib/transaction.c:675 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:808 +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1406 +#: lib/transaction.c:1407 #, c-format msgid "excluding directory %s\n" msgstr "" @@ -3613,125 +3613,125 @@ msgstr "" msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:842 +#: rpmdb/rpmdb.c:846 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:973 +#: rpmdb/rpmdb.c:977 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1206 +#: rpmdb/rpmdb.c:1210 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:1940 rpmdb/rpmdb.c:3122 +#: rpmdb/rpmdb.c:1944 rpmdb/rpmdb.c:3126 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:1991 +#: rpmdb/rpmdb.c:1995 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2256 +#: rpmdb/rpmdb.c:2260 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2325 +#: rpmdb/rpmdb.c:2329 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2334 +#: rpmdb/rpmdb.c:2338 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2529 +#: rpmdb/rpmdb.c:2533 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2607 +#: rpmdb/rpmdb.c:2611 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2618 +#: rpmdb/rpmdb.c:2622 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3011 +#: rpmdb/rpmdb.c:3015 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3041 +#: rpmdb/rpmdb.c:3045 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3068 +#: rpmdb/rpmdb.c:3072 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3072 +#: rpmdb/rpmdb.c:3076 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3078 +#: rpmdb/rpmdb.c:3082 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3080 +#: rpmdb/rpmdb.c:3084 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3087 +#: rpmdb/rpmdb.c:3091 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3098 +#: rpmdb/rpmdb.c:3102 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3162 +#: rpmdb/rpmdb.c:3166 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3180 +#: rpmdb/rpmdb.c:3184 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3188 +#: rpmdb/rpmdb.c:3192 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3190 +#: rpmdb/rpmdb.c:3194 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3200 +#: rpmdb/rpmdb.c:3204 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3202 +#: rpmdb/rpmdb.c:3206 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" @@ -3827,59 +3827,59 @@ msgstr "" msgid "File %s is smaller than %u bytes\n" msgstr "" -#: rpmio/rpmio.c:599 +#: rpmio/rpmio.c:588 msgid "Success" msgstr "" -#: rpmio/rpmio.c:602 +#: rpmio/rpmio.c:591 msgid "Bad server response" msgstr "" -#: rpmio/rpmio.c:605 +#: rpmio/rpmio.c:594 msgid "Server I/O error" msgstr "" -#: rpmio/rpmio.c:608 +#: rpmio/rpmio.c:597 msgid "Server timeout" msgstr "" -#: rpmio/rpmio.c:611 +#: rpmio/rpmio.c:600 msgid "Unable to lookup server host address" msgstr "" -#: rpmio/rpmio.c:614 +#: rpmio/rpmio.c:603 msgid "Unable to lookup server host name" msgstr "" -#: rpmio/rpmio.c:617 +#: rpmio/rpmio.c:606 msgid "Failed to connect to server" msgstr "" -#: rpmio/rpmio.c:620 +#: rpmio/rpmio.c:609 msgid "Failed to establish data connection to server" msgstr "" -#: rpmio/rpmio.c:623 +#: rpmio/rpmio.c:612 msgid "I/O error to local file" msgstr "" -#: rpmio/rpmio.c:626 +#: rpmio/rpmio.c:615 msgid "Error setting remote server to passive mode" msgstr "" -#: rpmio/rpmio.c:629 +#: rpmio/rpmio.c:618 msgid "File not found on server" msgstr "" -#: rpmio/rpmio.c:632 +#: rpmio/rpmio.c:621 msgid "Abort in progress" msgstr "" -#: rpmio/rpmio.c:636 +#: rpmio/rpmio.c:625 msgid "Unknown or unexpected error" msgstr "" -#: rpmio/rpmio.c:1259 +#: rpmio/rpmio.c:1252 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" @@ -3889,7 +3889,7 @@ msgid "(no error)" msgstr "" #. @-readonlytrans@ -#. FIX: double indeirection. +#. FIX: double indirection. #. @observer@ #: rpmio/rpmlog.c:114 rpmio/rpmlog.c:115 rpmio/rpmlog.c:116 msgid "fatal error: " @@ -3910,37 +3910,37 @@ msgstr "" msgid "memory alloc (%u bytes) returned NULL.\n" msgstr "" -#: rpmio/url.c:103 +#: rpmio/url.c:101 #, c-format msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:123 +#: rpmio/url.c:121 #, c-format msgid "warning: u %p data %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:151 +#: rpmio/url.c:149 #, c-format msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" msgstr "" -#: rpmio/url.c:244 +#: rpmio/url.c:242 #, c-format msgid "Password for %s@%s: " msgstr "" -#: rpmio/url.c:269 rpmio/url.c:295 +#: rpmio/url.c:267 rpmio/url.c:293 #, c-format msgid "error: %sport must be a number\n" msgstr "" -#: rpmio/url.c:434 +#: rpmio/url.c:432 msgid "url port must be a number\n" msgstr "" #. XXX Fstrerror -#: rpmio/url.c:497 +#: rpmio/url.c:495 #, c-format msgid "failed to create %s: %s\n" msgstr "" diff --git a/po/eu_ES.po b/po/eu_ES.po index fb01a5cdf..3f3a0d050 100644 --- a/po/eu_ES.po +++ b/po/eu_ES.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-09-21 11:01-0400\n" +"POT-Creation-Date: 2001-09-24 20:14-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -1055,15 +1055,15 @@ msgstr "" msgid "exec failed\n" msgstr "" -#: rpm.c:1116 rpmqv.c:1103 +#: rpm.c:1116 rpmqv.c:1104 msgid "unexpected arguments to --querytags " msgstr "" -#: rpm.c:1127 rpmqv.c:1112 +#: rpm.c:1127 rpmqv.c:1113 msgid "no packages given for signature check" msgstr "" -#: rpm.c:1138 rpmqv.c:1121 +#: rpm.c:1138 rpmqv.c:1122 msgid "no packages given for signing" msgstr "" @@ -1075,19 +1075,19 @@ msgstr "" msgid "no packages given for install" msgstr "" -#: rpm.c:1267 rpmqv.c:1066 +#: rpm.c:1267 rpmqv.c:1067 msgid "extra arguments given for query of all packages" msgstr "" -#: rpm.c:1272 rpmqv.c:1075 +#: rpm.c:1272 rpmqv.c:1076 msgid "no arguments given for query" msgstr "" -#: rpm.c:1289 rpmqv.c:1091 +#: rpm.c:1289 rpmqv.c:1092 msgid "extra arguments given for verify of all packages" msgstr "" -#: rpm.c:1293 rpmqv.c:1095 +#: rpm.c:1293 rpmqv.c:1096 msgid "no arguments given for verify" msgstr "" @@ -1696,17 +1696,17 @@ msgstr "" msgid "line %d: Error parsing %%description: %s\n" msgstr "" -#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:192 +#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:190 #, c-format msgid "line %d: Bad option %s: %s\n" msgstr "" -#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:204 +#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:202 #, c-format msgid "line %d: Too many names: %s\n" msgstr "" -#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:213 +#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:211 #, c-format msgid "line %d: Package does not exist: %s\n" msgstr "" @@ -1936,22 +1936,22 @@ msgstr "" msgid "line %d: Version required: %s\n" msgstr "" -#: build/parseScript.c:158 +#: build/parseScript.c:156 #, c-format msgid "line %d: triggers must have --: %s\n" msgstr "" -#: build/parseScript.c:168 build/parseScript.c:229 +#: build/parseScript.c:166 build/parseScript.c:227 #, c-format msgid "line %d: Error parsing %s: %s\n" msgstr "" -#: build/parseScript.c:179 +#: build/parseScript.c:177 #, c-format msgid "line %d: script program must begin with '/': %s\n" msgstr "" -#: build/parseScript.c:221 +#: build/parseScript.c:219 #, c-format msgid "line %d: Second %s\n" msgstr "" @@ -1992,11 +1992,11 @@ msgstr "" msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:508 +#: build/parseSpec.c:509 msgid "No compatible architectures found for build\n" msgstr "" -#: build/parseSpec.c:563 +#: build/parseSpec.c:564 #, c-format msgid "Package has no %%description: %s\n" msgstr "" @@ -2070,106 +2070,106 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "YES" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "NO " msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1015 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1131 +#: lib/depends.c:1126 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1222 +#: lib/depends.c:1217 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "" -#: lib/depends.c:1251 +#: lib/depends.c:1246 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1268 +#: lib/depends.c:1263 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "" -#: lib/depends.c:1292 +#: lib/depends.c:1287 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1305 +#: lib/depends.c:1300 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1319 +#: lib/depends.c:1314 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "" -#: lib/depends.c:1335 +#: lib/depends.c:1330 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1356 +#: lib/depends.c:1351 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1428 +#: lib/depends.c:1423 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1507 +#: lib/depends.c:1502 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:1753 +#: lib/depends.c:1748 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1902 +#: lib/depends.c:1897 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1960 +#: lib/depends.c:1955 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2010 +#: lib/depends.c:2005 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2062 +#: lib/depends.c:2057 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2091 +#: lib/depends.c:2086 msgid "========== continuing tsort ...\n" msgstr "" #: lib/formats.c:28 lib/formats.c:54 lib/formats.c:85 lib/formats.c:128 -#: lib/header.c:2621 lib/header.c:2642 lib/header.c:2664 +#: lib/header.c:2623 lib/header.c:2644 lib/header.c:2666 msgid "(not a number)" msgstr "" @@ -2192,7 +2192,7 @@ msgstr "" msgid "getting list of mounted filesystems\n" msgstr "" -#: lib/fs.c:153 rpmio/url.c:477 +#: lib/fs.c:153 rpmio/url.c:475 #, c-format msgid "failed to open %s: %s\n" msgstr "" @@ -2202,46 +2202,46 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:290 +#: lib/fsm.c:288 msgid "========= Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:292 +#: lib/fsm.c:290 #, c-format msgid "%9d %s\n" msgstr "" -#: lib/fsm.c:1130 +#: lib/fsm.c:1124 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1407 +#: lib/fsm.c:1401 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1526 lib/fsm.c:1651 +#: lib/fsm.c:1520 lib/fsm.c:1645 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1677 +#: lib/fsm.c:1671 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1683 +#: lib/fsm.c:1677 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1693 +#: lib/fsm.c:1687 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1712 +#: lib/fsm.c:1706 #, c-format msgid "%s created as %s\n" msgstr "" @@ -2257,77 +2257,77 @@ msgid "Data type %d not supported\n" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1930 +#: lib/header.c:1932 #, c-format msgid "missing { after %" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1960 +#: lib/header.c:1962 msgid "missing } after %{" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1974 +#: lib/header.c:1976 msgid "empty tag format" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1988 +#: lib/header.c:1990 msgid "empty tag name" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2005 +#: lib/header.c:2007 msgid "unknown tag" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2032 +#: lib/header.c:2034 msgid "] expected at end of array" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2050 +#: lib/header.c:2052 msgid "unexpected ]" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2054 +#: lib/header.c:2056 msgid "unexpected }" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2120 +#: lib/header.c:2122 msgid "? expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2129 +#: lib/header.c:2131 msgid "{ expected after ? in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2142 lib/header.c:2184 +#: lib/header.c:2144 lib/header.c:2186 msgid "} expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2152 +#: lib/header.c:2154 msgid ": expected following ? subexpression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2169 +#: lib/header.c:2171 msgid "{ expected after : in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2194 +#: lib/header.c:2196 msgid "| expected at end of expression" msgstr "" -#: lib/header.c:2381 +#: lib/header.c:2383 msgid "(unknown type)" msgstr "" @@ -2905,7 +2905,7 @@ msgid "can't query %s: %s\n" msgstr "" #: lib/query.c:576 lib/query.c:610 lib/rpminstall.c:309 lib/rpminstall.c:453 -#: lib/rpminstall.c:826 +#: lib/rpminstall.c:824 #, c-format msgid "open of %s failed: %s\n" msgstr "" @@ -3042,27 +3042,27 @@ msgstr "" msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:437 +#: lib/rpmchecksig.c:431 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:438 lib/rpmchecksig.c:452 +#: lib/rpmchecksig.c:432 lib/rpmchecksig.c:446 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:440 lib/rpmchecksig.c:454 +#: lib/rpmchecksig.c:434 lib/rpmchecksig.c:448 msgid ") " msgstr "" -#: lib/rpmchecksig.c:441 lib/rpmchecksig.c:455 +#: lib/rpmchecksig.c:435 lib/rpmchecksig.c:449 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:443 lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 lib/rpmchecksig.c:451 msgid ")" msgstr "" -#: lib/rpmchecksig.c:451 +#: lib/rpmchecksig.c:445 msgid "OK" msgstr "" @@ -3111,7 +3111,7 @@ msgstr "" msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:445 lib/rpminstall.c:686 +#: lib/rpminstall.c:445 lib/rpminstall.c:684 #, c-format msgid "%s cannot be installed\n" msgstr "" @@ -3158,7 +3158,7 @@ msgstr "" msgid "Installing %s\n" msgstr "" -#: lib/rpmlead.c:49 +#: lib/rpmlead.c:47 #, c-format msgid "read failed: %s (%d)\n" msgstr "" @@ -3173,88 +3173,88 @@ msgstr "" msgid "missing architecture name at %s:%d\n" msgstr "" -#: lib/rpmrc.c:325 +#: lib/rpmrc.c:328 #, c-format msgid "Incomplete data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:330 +#: lib/rpmrc.c:333 #, c-format msgid "Too many args in data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:338 +#: lib/rpmrc.c:341 #, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "" -#: lib/rpmrc.c:378 +#: lib/rpmrc.c:384 #, c-format msgid "Incomplete default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:383 +#: lib/rpmrc.c:389 #, c-format msgid "Too many args in default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:585 +#: lib/rpmrc.c:591 #, c-format msgid "Cannot expand %s\n" msgstr "" -#: lib/rpmrc.c:590 +#: lib/rpmrc.c:596 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "" -#: lib/rpmrc.c:607 +#: lib/rpmrc.c:613 #, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "" #. XXX Feof(fd) -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:660 #, c-format msgid "Failed to read %s: %s.\n" msgstr "" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:697 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "" -#: lib/rpmrc.c:708 lib/rpmrc.c:782 +#: lib/rpmrc.c:714 lib/rpmrc.c:788 #, c-format msgid "missing argument for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:725 lib/rpmrc.c:747 +#: lib/rpmrc.c:731 lib/rpmrc.c:753 #, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "" -#: lib/rpmrc.c:734 +#: lib/rpmrc.c:740 #, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "" -#: lib/rpmrc.c:774 +#: lib/rpmrc.c:780 #, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:841 +#: lib/rpmrc.c:847 #, c-format msgid "bad option '%s' at %s:%d\n" msgstr "" -#: lib/rpmrc.c:1436 +#: lib/rpmrc.c:1442 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1437 +#: lib/rpmrc.c:1443 msgid "Please contact rpm-list@redhat.com\n" msgstr "" @@ -3284,141 +3284,141 @@ msgstr "" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:230 +#: lib/signature.c:228 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:290 +#: lib/signature.c:288 #, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "" -#: lib/signature.c:303 +#: lib/signature.c:301 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:310 +#: lib/signature.c:308 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:315 +#: lib/signature.c:313 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:328 lib/signature.c:410 +#: lib/signature.c:326 lib/signature.c:408 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:333 +#: lib/signature.c:331 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:372 lib/signature.c:760 +#: lib/signature.c:370 lib/signature.c:758 msgid "Couldn't exec gpg\n" msgstr "" -#: lib/signature.c:385 +#: lib/signature.c:383 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:392 +#: lib/signature.c:390 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:397 +#: lib/signature.c:395 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:415 +#: lib/signature.c:413 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:443 +#: lib/signature.c:441 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:449 +#: lib/signature.c:447 msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:532 lib/signature.c:607 +#: lib/signature.c:530 lib/signature.c:605 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" -#: lib/signature.c:697 +#: lib/signature.c:695 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" -#: lib/signature.c:789 +#: lib/signature.c:787 msgid "Couldn't exec pgp\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:793 lib/signature.c:846 +#: lib/signature.c:791 lib/signature.c:844 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:826 +#: lib/signature.c:824 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:838 +#: lib/signature.c:836 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/transaction.c:446 +#: lib/transaction.c:447 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:450 +#: lib/transaction.c:451 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/transaction.c:453 +#: lib/transaction.c:454 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/transaction.c:523 +#: lib/transaction.c:524 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/transaction.c:586 +#: lib/transaction.c:587 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/transaction.c:596 +#: lib/transaction.c:597 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:674 +#: lib/transaction.c:675 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:808 +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1406 +#: lib/transaction.c:1407 #, c-format msgid "excluding directory %s\n" msgstr "" @@ -3613,125 +3613,125 @@ msgstr "" msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:842 +#: rpmdb/rpmdb.c:846 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:973 +#: rpmdb/rpmdb.c:977 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1206 +#: rpmdb/rpmdb.c:1210 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:1940 rpmdb/rpmdb.c:3122 +#: rpmdb/rpmdb.c:1944 rpmdb/rpmdb.c:3126 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:1991 +#: rpmdb/rpmdb.c:1995 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2256 +#: rpmdb/rpmdb.c:2260 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2325 +#: rpmdb/rpmdb.c:2329 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2334 +#: rpmdb/rpmdb.c:2338 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2529 +#: rpmdb/rpmdb.c:2533 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2607 +#: rpmdb/rpmdb.c:2611 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2618 +#: rpmdb/rpmdb.c:2622 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3011 +#: rpmdb/rpmdb.c:3015 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3041 +#: rpmdb/rpmdb.c:3045 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3068 +#: rpmdb/rpmdb.c:3072 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3072 +#: rpmdb/rpmdb.c:3076 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3078 +#: rpmdb/rpmdb.c:3082 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3080 +#: rpmdb/rpmdb.c:3084 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3087 +#: rpmdb/rpmdb.c:3091 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3098 +#: rpmdb/rpmdb.c:3102 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3162 +#: rpmdb/rpmdb.c:3166 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3180 +#: rpmdb/rpmdb.c:3184 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3188 +#: rpmdb/rpmdb.c:3192 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3190 +#: rpmdb/rpmdb.c:3194 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3200 +#: rpmdb/rpmdb.c:3204 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3202 +#: rpmdb/rpmdb.c:3206 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" @@ -3827,59 +3827,59 @@ msgstr "" msgid "File %s is smaller than %u bytes\n" msgstr "" -#: rpmio/rpmio.c:599 +#: rpmio/rpmio.c:588 msgid "Success" msgstr "" -#: rpmio/rpmio.c:602 +#: rpmio/rpmio.c:591 msgid "Bad server response" msgstr "" -#: rpmio/rpmio.c:605 +#: rpmio/rpmio.c:594 msgid "Server I/O error" msgstr "" -#: rpmio/rpmio.c:608 +#: rpmio/rpmio.c:597 msgid "Server timeout" msgstr "" -#: rpmio/rpmio.c:611 +#: rpmio/rpmio.c:600 msgid "Unable to lookup server host address" msgstr "" -#: rpmio/rpmio.c:614 +#: rpmio/rpmio.c:603 msgid "Unable to lookup server host name" msgstr "" -#: rpmio/rpmio.c:617 +#: rpmio/rpmio.c:606 msgid "Failed to connect to server" msgstr "" -#: rpmio/rpmio.c:620 +#: rpmio/rpmio.c:609 msgid "Failed to establish data connection to server" msgstr "" -#: rpmio/rpmio.c:623 +#: rpmio/rpmio.c:612 msgid "I/O error to local file" msgstr "" -#: rpmio/rpmio.c:626 +#: rpmio/rpmio.c:615 msgid "Error setting remote server to passive mode" msgstr "" -#: rpmio/rpmio.c:629 +#: rpmio/rpmio.c:618 msgid "File not found on server" msgstr "" -#: rpmio/rpmio.c:632 +#: rpmio/rpmio.c:621 msgid "Abort in progress" msgstr "" -#: rpmio/rpmio.c:636 +#: rpmio/rpmio.c:625 msgid "Unknown or unexpected error" msgstr "" -#: rpmio/rpmio.c:1259 +#: rpmio/rpmio.c:1252 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" @@ -3889,7 +3889,7 @@ msgid "(no error)" msgstr "" #. @-readonlytrans@ -#. FIX: double indeirection. +#. FIX: double indirection. #. @observer@ #: rpmio/rpmlog.c:114 rpmio/rpmlog.c:115 rpmio/rpmlog.c:116 msgid "fatal error: " @@ -3910,37 +3910,37 @@ msgstr "" msgid "memory alloc (%u bytes) returned NULL.\n" msgstr "" -#: rpmio/url.c:103 +#: rpmio/url.c:101 #, c-format msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:123 +#: rpmio/url.c:121 #, c-format msgid "warning: u %p data %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:151 +#: rpmio/url.c:149 #, c-format msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" msgstr "" -#: rpmio/url.c:244 +#: rpmio/url.c:242 #, c-format msgid "Password for %s@%s: " msgstr "" -#: rpmio/url.c:269 rpmio/url.c:295 +#: rpmio/url.c:267 rpmio/url.c:293 #, c-format msgid "error: %sport must be a number\n" msgstr "" -#: rpmio/url.c:434 +#: rpmio/url.c:432 msgid "url port must be a number\n" msgstr "" #. XXX Fstrerror -#: rpmio/url.c:497 +#: rpmio/url.c:495 #, c-format msgid "failed to create %s: %s\n" msgstr "" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-09-21 11:01-0400\n" +"POT-Creation-Date: 2001-09-24 20:14-0400\n" "Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n" "Language-Team: Finnish <linux@sot.com>\n" "Content-Type: text/plain; charset=\n" @@ -1134,15 +1134,15 @@ msgstr "--sign: voidaan käyttää vain paketteja käännettäessä" msgid "exec failed\n" msgstr "%s: avaus ei onnistunut\n" -#: rpm.c:1116 rpmqv.c:1103 +#: rpm.c:1116 rpmqv.c:1104 msgid "unexpected arguments to --querytags " msgstr "--querytags: odottamattomia parametrejä" -#: rpm.c:1127 rpmqv.c:1112 +#: rpm.c:1127 rpmqv.c:1113 msgid "no packages given for signature check" msgstr "allekirjoituksen tarkistukselle ei määritelty paketteja" -#: rpm.c:1138 rpmqv.c:1121 +#: rpm.c:1138 rpmqv.c:1122 msgid "no packages given for signing" msgstr "allekirjoitukselle ei määritelty paketteja" @@ -1154,20 +1154,20 @@ msgstr "poistolle ei määritelty paketteja" msgid "no packages given for install" msgstr "asennukselle ei määritelty paketteja" -#: rpm.c:1267 rpmqv.c:1066 +#: rpm.c:1267 rpmqv.c:1067 msgid "extra arguments given for query of all packages" msgstr "pakettien kyselylle annettiin ylimääräisiä parametrejä" -#: rpm.c:1272 rpmqv.c:1075 +#: rpm.c:1272 rpmqv.c:1076 msgid "no arguments given for query" msgstr "kyselylle ei annettu parametrejä" -#: rpm.c:1289 rpmqv.c:1091 +#: rpm.c:1289 rpmqv.c:1092 #, fuzzy msgid "extra arguments given for verify of all packages" msgstr "pakettien kyselylle annettiin ylimääräisiä parametrejä" -#: rpm.c:1293 rpmqv.c:1095 +#: rpm.c:1293 rpmqv.c:1096 msgid "no arguments given for verify" msgstr "tarkistukselle ei annettu parametrejä" @@ -1790,17 +1790,17 @@ msgstr "" msgid "line %d: Error parsing %%description: %s\n" msgstr "paketti %s ei ole %s:ssä" -#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:192 +#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:190 #, fuzzy, c-format msgid "line %d: Bad option %s: %s\n" msgstr "en voinut avata %s: %s" -#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:204 +#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:202 #, fuzzy, c-format msgid "line %d: Too many names: %s\n" msgstr "virheellinen paketin numero: %s\n" -#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:213 +#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:211 #, fuzzy, c-format msgid "line %d: Package does not exist: %s\n" msgstr "paketti %s ei ole %s:ssä" @@ -2030,22 +2030,22 @@ msgstr "paketti %s ei ole %s:ssä" msgid "line %d: Version required: %s\n" msgstr "en voinut avata %s: %s" -#: build/parseScript.c:158 +#: build/parseScript.c:156 #, fuzzy, c-format msgid "line %d: triggers must have --: %s\n" msgstr "siirtojen pitää alkaa /-merkillä" -#: build/parseScript.c:168 build/parseScript.c:229 +#: build/parseScript.c:166 build/parseScript.c:227 #, fuzzy, c-format msgid "line %d: Error parsing %s: %s\n" msgstr "en voinut avata %s: %s" -#: build/parseScript.c:179 +#: build/parseScript.c:177 #, fuzzy, c-format msgid "line %d: script program must begin with '/': %s\n" msgstr "siirtojen pitää alkaa /-merkillä" -#: build/parseScript.c:221 +#: build/parseScript.c:219 #, fuzzy, c-format msgid "line %d: Second %s\n" msgstr "en voinut avata %s: %s" @@ -2086,12 +2086,12 @@ msgstr "" msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:508 +#: build/parseSpec.c:509 #, fuzzy msgid "No compatible architectures found for build\n" msgstr "älä tarkista paketin arkkitehtuuria" -#: build/parseSpec.c:563 +#: build/parseSpec.c:564 #, fuzzy, c-format msgid "Package has no %%description: %s\n" msgstr "paketti %s ei ole %s:ssä" @@ -2169,106 +2169,106 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "YES" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "NO " msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1015 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1131 +#: lib/depends.c:1126 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1222 +#: lib/depends.c:1217 #, fuzzy, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "tiedostoa %s ei omista mikään paketti\n" -#: lib/depends.c:1251 +#: lib/depends.c:1246 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1268 +#: lib/depends.c:1263 #, fuzzy, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "tiedostoa %s ei omista mikään paketti\n" -#: lib/depends.c:1292 +#: lib/depends.c:1287 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1305 +#: lib/depends.c:1300 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1319 +#: lib/depends.c:1314 #, fuzzy, c-format msgid "%s: %-45s YES (db package)\n" msgstr "tiedostoa %s ei omista mikään paketti\n" -#: lib/depends.c:1335 +#: lib/depends.c:1330 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1356 +#: lib/depends.c:1351 #, fuzzy, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "tiedostoa %s ei omista mikään paketti\n" #. requirements are not satisfied. -#: lib/depends.c:1428 +#: lib/depends.c:1423 #, fuzzy, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "paketti %s ei ole %s:ssä" #. conflicts exist. -#: lib/depends.c:1507 +#: lib/depends.c:1502 #, fuzzy, c-format msgid "package %s conflicts: %s\n" msgstr "paketti %s ei ole %s:ssä" -#: lib/depends.c:1753 +#: lib/depends.c:1748 #, fuzzy, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "virhe poistettaessa tietuetta %s %s:stä" #. Record all relations. -#: lib/depends.c:1902 +#: lib/depends.c:1897 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1960 +#: lib/depends.c:1955 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2010 +#: lib/depends.c:2005 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2062 +#: lib/depends.c:2057 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2091 +#: lib/depends.c:2086 msgid "========== continuing tsort ...\n" msgstr "" #: lib/formats.c:28 lib/formats.c:54 lib/formats.c:85 lib/formats.c:128 -#: lib/header.c:2621 lib/header.c:2642 lib/header.c:2664 +#: lib/header.c:2623 lib/header.c:2644 lib/header.c:2666 msgid "(not a number)" msgstr "(ei ole luku)" @@ -2291,7 +2291,7 @@ msgstr "en voinut avata %s: %s" msgid "getting list of mounted filesystems\n" msgstr "" -#: lib/fs.c:153 rpmio/url.c:477 +#: lib/fs.c:153 rpmio/url.c:475 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "en voinut avata %s: %s" @@ -2301,46 +2301,46 @@ msgstr "en voinut avata %s: %s" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:290 +#: lib/fsm.c:288 msgid "========= Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:292 +#: lib/fsm.c:290 #, fuzzy, c-format msgid "%9d %s\n" msgstr "en voinut avata %s: %s" -#: lib/fsm.c:1130 +#: lib/fsm.c:1124 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1407 +#: lib/fsm.c:1401 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1526 lib/fsm.c:1651 +#: lib/fsm.c:1520 lib/fsm.c:1645 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "en voinut avata tiedostoa %s: " -#: lib/fsm.c:1677 +#: lib/fsm.c:1671 #, 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:1683 +#: lib/fsm.c:1677 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s:n rmdir epäonnistui: %s" -#: lib/fsm.c:1693 +#: lib/fsm.c:1687 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s:n avaus ei onnistunut: %s\n" -#: lib/fsm.c:1712 +#: lib/fsm.c:1706 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "en voinut avata tiedostoa %s: " @@ -2356,79 +2356,79 @@ msgid "Data type %d not supported\n" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1930 +#: lib/header.c:1932 #, c-format msgid "missing { after %" msgstr "puuttuva '{' '%':n jälkeen" #. @-observertrans -readonlytrans@ -#: lib/header.c:1960 +#: lib/header.c:1962 msgid "missing } after %{" msgstr "puuttuva '{' '%{':n jälkeen" #. @-observertrans -readonlytrans@ -#: lib/header.c:1974 +#: lib/header.c:1976 msgid "empty tag format" msgstr "tyhjä nimiön formaatti" #. @-observertrans -readonlytrans@ -#: lib/header.c:1988 +#: lib/header.c:1990 msgid "empty tag name" msgstr "tyhjä nimiön nimi" #. @-observertrans -readonlytrans@ -#: lib/header.c:2005 +#: lib/header.c:2007 msgid "unknown tag" msgstr "tuntematon nimiö" #. @-observertrans -readonlytrans@ -#: lib/header.c:2032 +#: lib/header.c:2034 msgid "] expected at end of array" msgstr "']' puuttuu taulukkomäärittelyn lopusta" #. @-observertrans -readonlytrans@ -#: lib/header.c:2050 +#: lib/header.c:2052 msgid "unexpected ]" msgstr "odottamaton ']'" #. @-observertrans -readonlytrans@ -#: lib/header.c:2054 +#: lib/header.c:2056 msgid "unexpected }" msgstr "odottamaton '}'" #. @-observertrans -readonlytrans@ -#: lib/header.c:2120 +#: lib/header.c:2122 msgid "? expected in expression" msgstr "odotin '?'-merkkiä ilmauksessa" #. @-observertrans -readonlytrans@ -#: lib/header.c:2129 +#: lib/header.c:2131 #, fuzzy msgid "{ expected after ? in expression" msgstr "odotin '{' '?'-merkin jälkeen ilmauksessa " #. @-observertrans -readonlytrans@ -#: lib/header.c:2142 lib/header.c:2184 +#: lib/header.c:2144 lib/header.c:2186 msgid "} expected in expression" msgstr "odotin '}'-merkkiä ilmauksessa" #. @-observertrans -readonlytrans@ -#: lib/header.c:2152 +#: lib/header.c:2154 msgid ": expected following ? subexpression" msgstr "odotin ':' '?'-merkin jälkeen ali-ilmauksessa " #. @-observertrans -readonlytrans@ -#: lib/header.c:2169 +#: lib/header.c:2171 #, fuzzy msgid "{ expected after : in expression" msgstr "odotin '{' ':'-merkin jälkeen ilmauksessa " #. @-observertrans -readonlytrans@ -#: lib/header.c:2194 +#: lib/header.c:2196 msgid "| expected at end of expression" msgstr "odotin '}'-merkkiä ilmauksen lopussa" -#: lib/header.c:2381 +#: lib/header.c:2383 msgid "(unknown type)" msgstr "(tuntematon tyyppi)" @@ -3063,7 +3063,7 @@ msgid "can't query %s: %s\n" msgstr "virhe: en voi avata %s\n" #: lib/query.c:576 lib/query.c:610 lib/rpminstall.c:309 lib/rpminstall.c:453 -#: lib/rpminstall.c:826 +#: lib/rpminstall.c:824 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "%s:n avaus ei onnistunut: %s\n" @@ -3202,28 +3202,28 @@ msgstr "%s: rpmReadSignature epäonnistui\n" msgid "%s: No signature available (v1.0 RPM)\n" msgstr "%s: Ei allekirjoitusta saatavilla (v1.0 RPM)\n" -#: lib/rpmchecksig.c:437 +#: lib/rpmchecksig.c:431 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:438 lib/rpmchecksig.c:452 +#: lib/rpmchecksig.c:432 lib/rpmchecksig.c:446 #, fuzzy msgid " (MISSING KEYS:" msgstr "(PUUTTUVAT AVAIMET)" -#: lib/rpmchecksig.c:440 lib/rpmchecksig.c:454 +#: lib/rpmchecksig.c:434 lib/rpmchecksig.c:448 msgid ") " msgstr "" -#: lib/rpmchecksig.c:441 lib/rpmchecksig.c:455 +#: lib/rpmchecksig.c:435 lib/rpmchecksig.c:449 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:443 lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 lib/rpmchecksig.c:451 msgid ")" msgstr "" -#: lib/rpmchecksig.c:451 +#: lib/rpmchecksig.c:445 msgid "OK" msgstr "" @@ -3273,7 +3273,7 @@ msgstr "virhe luotaessa hakemistoa %s: %s" msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:445 lib/rpminstall.c:686 +#: lib/rpminstall.c:445 lib/rpminstall.c:684 #, fuzzy, c-format msgid "%s cannot be installed\n" msgstr "virhe: %s ei voida asentaa\n" @@ -3321,7 +3321,7 @@ msgstr "virhe: en voi avata %s\n" msgid "Installing %s\n" msgstr "Asennan: %s\n" -#: lib/rpmlead.c:49 +#: lib/rpmlead.c:47 #, fuzzy, c-format msgid "read failed: %s (%d)\n" msgstr "luku epäonnistui: %s (%d)" @@ -3336,88 +3336,88 @@ msgstr "toinen ':' puuttuu, %s:%d" msgid "missing architecture name at %s:%d\n" msgstr "puuttuva arkkitehtuurin nimi, %s:%d" -#: lib/rpmrc.c:325 +#: lib/rpmrc.c:328 #, fuzzy, c-format msgid "Incomplete data line at %s:%d\n" msgstr "Epätäydellinen datarivi, %s:%d" -#: lib/rpmrc.c:330 +#: lib/rpmrc.c:333 #, fuzzy, c-format msgid "Too many args in data line at %s:%d\n" msgstr "liian monta parametriä datarivillä %s:%d" -#: lib/rpmrc.c:338 +#: lib/rpmrc.c:341 #, fuzzy, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "Huono arkkitehtuuri/käyttöjärjestelmä numero: %s (%s:%d)" -#: lib/rpmrc.c:378 +#: lib/rpmrc.c:384 #, fuzzy, c-format msgid "Incomplete default line at %s:%d\n" msgstr "Epätäydellinen oletusrivi, %s:%d" -#: lib/rpmrc.c:383 +#: lib/rpmrc.c:389 #, fuzzy, c-format msgid "Too many args in default line at %s:%d\n" msgstr "liian monta parametriä oletusrivillä %s:%d" -#: lib/rpmrc.c:585 +#: lib/rpmrc.c:591 #, fuzzy, c-format msgid "Cannot expand %s\n" msgstr "virhe: en voi avata %s\n" -#: lib/rpmrc.c:590 +#: lib/rpmrc.c:596 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "" -#: lib/rpmrc.c:607 +#: lib/rpmrc.c:613 #, fuzzy, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "En voi avata %s luettavaksi: %s." #. XXX Feof(fd) -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:660 #, fuzzy, c-format msgid "Failed to read %s: %s.\n" msgstr "En voi lukea %s: %s." -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:697 #, fuzzy, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "puuttuva ':', %s:%d" -#: lib/rpmrc.c:708 lib/rpmrc.c:782 +#: lib/rpmrc.c:714 lib/rpmrc.c:788 #, fuzzy, c-format msgid "missing argument for %s at %s:%d\n" msgstr "%s:n puuttuva parametri %s:%d" -#: lib/rpmrc.c:725 lib/rpmrc.c:747 +#: lib/rpmrc.c:731 lib/rpmrc.c:753 #, fuzzy, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "en voinut avata %s: %s" -#: lib/rpmrc.c:734 +#: lib/rpmrc.c:740 #, fuzzy, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "en voinut avata tiedostoa %s: " -#: lib/rpmrc.c:774 +#: lib/rpmrc.c:780 #, fuzzy, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "%s:n puuttuva arkkitehtuuri %s:%d" -#: lib/rpmrc.c:841 +#: lib/rpmrc.c:847 #, fuzzy, c-format msgid "bad option '%s' at %s:%d\n" msgstr "huono parametri '%s', %s:%d" -#: lib/rpmrc.c:1436 +#: lib/rpmrc.c:1442 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1437 +#: lib/rpmrc.c:1443 msgid "Please contact rpm-list@redhat.com\n" msgstr "" @@ -3450,152 +3450,152 @@ msgstr "generoi PGP-allekirjoitus" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Vanha (sisäisen käytön) allekirjoitus! Mistä sait sen!?" -#: lib/signature.c:230 +#: lib/signature.c:228 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:290 +#: lib/signature.c:288 #, fuzzy, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "En voinut ajaa pgp:tä" -#: lib/signature.c:303 +#: lib/signature.c:301 #, fuzzy msgid "pgp failed\n" msgstr "pgp epäonnistui" #. PGP failed to write signature #. Just in case -#: lib/signature.c:310 +#: lib/signature.c:308 #, fuzzy msgid "pgp failed to write signature\n" msgstr "pgp ei voinut kirjoittaa allekirjoitusta" -#: lib/signature.c:315 +#: lib/signature.c:313 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:328 lib/signature.c:410 +#: lib/signature.c:326 lib/signature.c:408 #, fuzzy msgid "unable to read the signature\n" msgstr "en voinut lukea allekirjoitusta" -#: lib/signature.c:333 +#: lib/signature.c:331 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:372 lib/signature.c:760 +#: lib/signature.c:370 lib/signature.c:758 #, fuzzy msgid "Couldn't exec gpg\n" msgstr "En voinut ajaa pgp:tä" -#: lib/signature.c:385 +#: lib/signature.c:383 #, fuzzy msgid "gpg failed\n" msgstr "pgp epäonnistui" #. GPG failed to write signature #. Just in case -#: lib/signature.c:392 +#: lib/signature.c:390 #, fuzzy msgid "gpg failed to write signature\n" msgstr "pgp ei voinut kirjoittaa allekirjoitusta" -#: lib/signature.c:397 +#: lib/signature.c:395 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:415 +#: lib/signature.c:413 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:443 +#: lib/signature.c:441 #, fuzzy msgid "Generating signature using PGP.\n" msgstr "generoi PGP-allekirjoitus" -#: lib/signature.c:449 +#: lib/signature.c:447 #, fuzzy msgid "Generating signature using GPG.\n" msgstr "generoi PGP-allekirjoitus" -#: lib/signature.c:532 lib/signature.c:607 +#: lib/signature.c:530 lib/signature.c:605 #, fuzzy msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "En voinut ajaa pgp:tä. Käytä --nopgpg ohittaaksesi PGP-tarkistus" -#: lib/signature.c:697 +#: lib/signature.c:695 #, fuzzy msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "En voinut ajaa pgp:tä. Käytä --nopgpg ohittaaksesi PGP-tarkistus" -#: lib/signature.c:789 +#: lib/signature.c:787 #, fuzzy msgid "Couldn't exec pgp\n" msgstr "En voinut ajaa pgp:tä" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:793 lib/signature.c:846 +#: lib/signature.c:791 lib/signature.c:844 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:826 +#: lib/signature.c:824 #, fuzzy, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "Sinun pitää asettaa \"pgp_name:\" rpmrc-tiedostossa" -#: lib/signature.c:838 +#: lib/signature.c:836 #, fuzzy, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "Sinun pitää asettaa \"pgp_name:\" rpmrc-tiedostossa" -#: lib/transaction.c:446 +#: lib/transaction.c:447 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:450 +#: lib/transaction.c:451 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "Haen: %s\n" -#: lib/transaction.c:453 +#: lib/transaction.c:454 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "en voinut avata tiedostoa %s: " -#: lib/transaction.c:523 +#: lib/transaction.c:524 #, fuzzy, c-format msgid "excluding multilib path %s%s\n" msgstr "Haen: %s\n" -#: lib/transaction.c:586 +#: lib/transaction.c:587 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "Haen: %s\n" -#: lib/transaction.c:596 +#: lib/transaction.c:597 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:674 +#: lib/transaction.c:675 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" -#: lib/transaction.c:808 +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1406 +#: lib/transaction.c:1407 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" @@ -3791,126 +3791,126 @@ msgstr "virhe talletettaessa tietuetta %s %s:ään" msgid "error(%d) removing record %s from %s\n" msgstr "virhe poistettaessa tietuetta %s %s:stä" -#: rpmdb/rpmdb.c:842 +#: rpmdb/rpmdb.c:846 #, fuzzy msgid "no dbpath has been set\n" msgstr "dbpath ei ole asetettu" -#: rpmdb/rpmdb.c:973 +#: rpmdb/rpmdb.c:977 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1206 +#: rpmdb/rpmdb.c:1210 #, fuzzy, c-format msgid "error(%d) counting packages\n" msgstr "virhe etsittäessä pakettia %s\n" -#: rpmdb/rpmdb.c:1940 rpmdb/rpmdb.c:3122 +#: rpmdb/rpmdb.c:1944 rpmdb/rpmdb.c:3126 #, fuzzy, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "tietue numero %d tietokannassa viallinen -- ohitan sen" -#: rpmdb/rpmdb.c:1991 +#: rpmdb/rpmdb.c:1995 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2256 +#: rpmdb/rpmdb.c:2260 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "en voi lukea headeria %d:stä päivittäessä" -#: rpmdb/rpmdb.c:2325 +#: rpmdb/rpmdb.c:2329 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "virhe poistettaessa tietuetta %s %s:stä" -#: rpmdb/rpmdb.c:2334 +#: rpmdb/rpmdb.c:2338 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "virhe poistettaessa tietuetta %s %s:stä" -#: rpmdb/rpmdb.c:2529 +#: rpmdb/rpmdb.c:2533 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "virhe etsittäessä pakettia %s\n" -#: rpmdb/rpmdb.c:2607 +#: rpmdb/rpmdb.c:2611 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2618 +#: rpmdb/rpmdb.c:2622 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "virhe poistettaessa tietuetta %s %s:stä" -#: rpmdb/rpmdb.c:3011 +#: rpmdb/rpmdb.c:3015 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3041 +#: rpmdb/rpmdb.c:3045 msgid "no dbpath has been set" msgstr "dbpath ei ole asetettu" -#: rpmdb/rpmdb.c:3068 +#: rpmdb/rpmdb.c:3072 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: rpmdb/rpmdb.c:3072 +#: rpmdb/rpmdb.c:3076 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "väliaikainen tietokanta %s on jo olemassa" -#: rpmdb/rpmdb.c:3078 +#: rpmdb/rpmdb.c:3082 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" -#: rpmdb/rpmdb.c:3080 +#: rpmdb/rpmdb.c:3084 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" -#: rpmdb/rpmdb.c:3087 +#: rpmdb/rpmdb.c:3091 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: rpmdb/rpmdb.c:3098 +#: rpmdb/rpmdb.c:3102 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: rpmdb/rpmdb.c:3162 +#: rpmdb/rpmdb.c:3166 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "en voi lisätä tietuetta %d:stä" -#: rpmdb/rpmdb.c:3180 +#: rpmdb/rpmdb.c:3184 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3188 +#: rpmdb/rpmdb.c:3192 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3190 +#: rpmdb/rpmdb.c:3194 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3200 +#: rpmdb/rpmdb.c:3204 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" -#: rpmdb/rpmdb.c:3202 +#: rpmdb/rpmdb.c:3206 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "en voinut avata %s: %s" @@ -4006,68 +4006,68 @@ msgstr "en voinut avata %s: %s" msgid "File %s is smaller than %u bytes\n" msgstr "" -#: rpmio/rpmio.c:599 +#: rpmio/rpmio.c:588 msgid "Success" msgstr "" -#: rpmio/rpmio.c:602 +#: rpmio/rpmio.c:591 #, fuzzy msgid "Bad server response" msgstr "Virheellinen FTP-palvelijan vastaus" -#: rpmio/rpmio.c:605 +#: rpmio/rpmio.c:594 #, fuzzy msgid "Server I/O error" msgstr "FTP:n IO-virhe" -#: rpmio/rpmio.c:608 +#: rpmio/rpmio.c:597 #, fuzzy msgid "Server timeout" msgstr "FTP-palvelimen timeout" -#: rpmio/rpmio.c:611 +#: rpmio/rpmio.c:600 #, fuzzy msgid "Unable to lookup server host address" msgstr "FTP-palvelimen osoitetta ei löytynyt" -#: rpmio/rpmio.c:614 +#: rpmio/rpmio.c:603 #, fuzzy msgid "Unable to lookup server host name" msgstr "FTP-palvelimen nimeä ei löytynyt" -#: rpmio/rpmio.c:617 +#: rpmio/rpmio.c:606 #, fuzzy msgid "Failed to connect to server" msgstr "En saanut yhteyttä FTP-palvelijaan" -#: rpmio/rpmio.c:620 +#: rpmio/rpmio.c:609 #, fuzzy msgid "Failed to establish data connection to server" msgstr "En saanut data-yhteyttä FTP-palvelijaan" -#: rpmio/rpmio.c:623 +#: rpmio/rpmio.c:612 #, fuzzy msgid "I/O error to local file" msgstr "Paikallisen tiedoston IO-virhe" -#: rpmio/rpmio.c:626 +#: rpmio/rpmio.c:615 msgid "Error setting remote server to passive mode" msgstr "Virhe asetettaessa palvelinta passiiviin moodiin" -#: rpmio/rpmio.c:629 +#: rpmio/rpmio.c:618 msgid "File not found on server" msgstr "Tiedostoa ei löytynyt palvelimelta" -#: rpmio/rpmio.c:632 +#: rpmio/rpmio.c:621 msgid "Abort in progress" msgstr "" -#: rpmio/rpmio.c:636 +#: rpmio/rpmio.c:625 #, fuzzy msgid "Unknown or unexpected error" msgstr "FTP:n tuntematon tai odottamaton virhe" -#: rpmio/rpmio.c:1259 +#: rpmio/rpmio.c:1252 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" @@ -4078,7 +4078,7 @@ msgid "(no error)" msgstr "virhe: " #. @-readonlytrans@ -#. FIX: double indeirection. +#. FIX: double indirection. #. @observer@ #: rpmio/rpmlog.c:114 rpmio/rpmlog.c:115 rpmio/rpmlog.c:116 msgid "fatal error: " @@ -4099,38 +4099,38 @@ msgstr "varoitus: " msgid "memory alloc (%u bytes) returned NULL.\n" msgstr "" -#: rpmio/url.c:103 +#: rpmio/url.c:101 #, c-format msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:123 +#: rpmio/url.c:121 #, c-format msgid "warning: u %p data %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:151 +#: rpmio/url.c:149 #, c-format msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" msgstr "" -#: rpmio/url.c:244 +#: rpmio/url.c:242 #, c-format msgid "Password for %s@%s: " msgstr "%s@%s:n salasana: " -#: rpmio/url.c:269 rpmio/url.c:295 +#: rpmio/url.c:267 rpmio/url.c:293 #, fuzzy, c-format msgid "error: %sport must be a number\n" msgstr "virhe: ftpport pitää olla luku\n" -#: rpmio/url.c:434 +#: rpmio/url.c:432 #, fuzzy msgid "url port must be a number\n" msgstr "virhe: ftpport pitää olla luku\n" #. XXX Fstrerror -#: rpmio/url.c:497 +#: rpmio/url.c:495 #, fuzzy, c-format msgid "failed to create %s: %s\n" msgstr "%s:n luonti epäonnistui\n" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-09-21 11:01-0400\n" +"POT-Creation-Date: 2001-09-24 20:14-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -1202,15 +1202,15 @@ msgstr "--sign ne peut tre spcifi que lors de la construction d'un package" msgid "exec failed\n" msgstr "La construction a chou.\n" -#: rpm.c:1116 rpmqv.c:1103 +#: rpm.c:1116 rpmqv.c:1104 msgid "unexpected arguments to --querytags " msgstr "" -#: rpm.c:1127 rpmqv.c:1112 +#: rpm.c:1127 rpmqv.c:1113 msgid "no packages given for signature check" msgstr "aucun package n'a t spcifi pour la vrification de signature" -#: rpm.c:1138 rpmqv.c:1121 +#: rpm.c:1138 rpmqv.c:1122 #, fuzzy msgid "no packages given for signing" msgstr "aucun package n'a t spcifi pour la dsinstallation" @@ -1223,21 +1223,21 @@ msgstr "aucun package n'a t spcifi pour la dsinstallation" msgid "no packages given for install" msgstr "aucun package n'a t spcifi pour l'installation" -#: rpm.c:1267 rpmqv.c:1066 +#: rpm.c:1267 rpmqv.c:1067 #, fuzzy msgid "extra arguments given for query of all packages" msgstr "aucun argument n'a t fourni pour la requte" -#: rpm.c:1272 rpmqv.c:1075 +#: rpm.c:1272 rpmqv.c:1076 msgid "no arguments given for query" msgstr "aucun argument n'a t fourni pour la requte" -#: rpm.c:1289 rpmqv.c:1091 +#: rpm.c:1289 rpmqv.c:1092 #, fuzzy msgid "extra arguments given for verify of all packages" msgstr "aucun argument n'a t fourni pour la requte" -#: rpm.c:1293 rpmqv.c:1095 +#: rpm.c:1293 rpmqv.c:1096 msgid "no arguments given for verify" msgstr "aucun argument n'a t fourni pour la vrification" @@ -1857,17 +1857,17 @@ msgstr "" msgid "line %d: Error parsing %%description: %s\n" msgstr "aucun package n'a t spcifi pour la dsinstallation" -#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:192 +#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:190 #, fuzzy, c-format msgid "line %d: Bad option %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:204 +#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:202 #, fuzzy, c-format msgid "line %d: Too many names: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:213 +#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:211 #, fuzzy, c-format msgid "line %d: Package does not exist: %s\n" msgstr "impossible d'ouvrir: %s\n" @@ -2097,22 +2097,22 @@ msgstr "impossible d'ouvrir: %s\n" msgid "line %d: Version required: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/parseScript.c:158 +#: build/parseScript.c:156 #, fuzzy, c-format msgid "line %d: triggers must have --: %s\n" msgstr "les arguments de --root (-r) doivent commencer par un /" -#: build/parseScript.c:168 build/parseScript.c:229 +#: build/parseScript.c:166 build/parseScript.c:227 #, fuzzy, c-format msgid "line %d: Error parsing %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/parseScript.c:179 +#: build/parseScript.c:177 #, fuzzy, c-format msgid "line %d: script program must begin with '/': %s\n" msgstr "les arguments de --root (-r) doivent commencer par un /" -#: build/parseScript.c:221 +#: build/parseScript.c:219 #, fuzzy, c-format msgid "line %d: Second %s\n" msgstr "impossible d'ouvrir: %s\n" @@ -2153,12 +2153,12 @@ msgstr "" msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:508 +#: build/parseSpec.c:509 #, fuzzy msgid "No compatible architectures found for build\n" msgstr "%s ne peut tre construit sur cette architecture\n" -#: build/parseSpec.c:563 +#: build/parseSpec.c:564 #, fuzzy, c-format msgid "Package has no %%description: %s\n" msgstr "aucun package n'a t spcifi pour la dsinstallation" @@ -2233,106 +2233,106 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "YES" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "NO " msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1015 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1131 +#: lib/depends.c:1126 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1222 +#: lib/depends.c:1217 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "" -#: lib/depends.c:1251 +#: lib/depends.c:1246 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1268 +#: lib/depends.c:1263 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "" -#: lib/depends.c:1292 +#: lib/depends.c:1287 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1305 +#: lib/depends.c:1300 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1319 +#: lib/depends.c:1314 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "" -#: lib/depends.c:1335 +#: lib/depends.c:1330 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1356 +#: lib/depends.c:1351 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1428 +#: lib/depends.c:1423 #, fuzzy, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "aucun package n'a t spcifi pour l'installation" #. conflicts exist. -#: lib/depends.c:1507 +#: lib/depends.c:1502 #, fuzzy, c-format msgid "package %s conflicts: %s\n" msgstr "aucun package n'a t spcifi pour la dsinstallation" -#: lib/depends.c:1753 +#: lib/depends.c:1748 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1902 +#: lib/depends.c:1897 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1960 +#: lib/depends.c:1955 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2010 +#: lib/depends.c:2005 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2062 +#: lib/depends.c:2057 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2091 +#: lib/depends.c:2086 msgid "========== continuing tsort ...\n" msgstr "" #: lib/formats.c:28 lib/formats.c:54 lib/formats.c:85 lib/formats.c:128 -#: lib/header.c:2621 lib/header.c:2642 lib/header.c:2664 +#: lib/header.c:2623 lib/header.c:2644 lib/header.c:2666 msgid "(not a number)" msgstr "" @@ -2355,7 +2355,7 @@ msgstr "impossible d'ouvrir: %s\n" msgid "getting list of mounted filesystems\n" msgstr "" -#: lib/fs.c:153 rpmio/url.c:477 +#: lib/fs.c:153 rpmio/url.c:475 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "impossible d'ouvrir: %s\n" @@ -2365,46 +2365,46 @@ msgstr "impossible d'ouvrir: %s\n" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:290 +#: lib/fsm.c:288 msgid "========= Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:292 +#: lib/fsm.c:290 #, fuzzy, c-format msgid "%9d %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/fsm.c:1130 +#: lib/fsm.c:1124 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1407 +#: lib/fsm.c:1401 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1526 lib/fsm.c:1651 +#: lib/fsm.c:1520 lib/fsm.c:1645 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/fsm.c:1677 +#: lib/fsm.c:1671 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/fsm.c:1683 +#: lib/fsm.c:1677 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "La construction a chou.\n" -#: lib/fsm.c:1693 +#: lib/fsm.c:1687 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "La construction a chou.\n" -#: lib/fsm.c:1712 +#: lib/fsm.c:1706 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "impossible d'ouvrir: %s\n" @@ -2420,79 +2420,79 @@ msgid "Data type %d not supported\n" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1930 +#: lib/header.c:1932 #, c-format msgid "missing { after %" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1960 +#: lib/header.c:1962 msgid "missing } after %{" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1974 +#: lib/header.c:1976 msgid "empty tag format" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1988 +#: lib/header.c:1990 msgid "empty tag name" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2005 +#: lib/header.c:2007 msgid "unknown tag" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2032 +#: lib/header.c:2034 msgid "] expected at end of array" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2050 +#: lib/header.c:2052 #, fuzzy msgid "unexpected ]" msgstr "source de requte inattendue" #. @-observertrans -readonlytrans@ -#: lib/header.c:2054 +#: lib/header.c:2056 #, fuzzy msgid "unexpected }" msgstr "source de requte inattendue" #. @-observertrans -readonlytrans@ -#: lib/header.c:2120 +#: lib/header.c:2122 msgid "? expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2129 +#: lib/header.c:2131 msgid "{ expected after ? in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2142 lib/header.c:2184 +#: lib/header.c:2144 lib/header.c:2186 msgid "} expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2152 +#: lib/header.c:2154 msgid ": expected following ? subexpression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2169 +#: lib/header.c:2171 msgid "{ expected after : in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2194 +#: lib/header.c:2196 msgid "| expected at end of expression" msgstr "" -#: lib/header.c:2381 +#: lib/header.c:2383 msgid "(unknown type)" msgstr "" @@ -3132,7 +3132,7 @@ msgid "can't query %s: %s\n" msgstr "impossible d'ouvrir: %s\n" #: lib/query.c:576 lib/query.c:610 lib/rpminstall.c:309 lib/rpminstall.c:453 -#: lib/rpminstall.c:826 +#: lib/rpminstall.c:824 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "La construction a chou.\n" @@ -3271,27 +3271,27 @@ msgstr "impossible d'ouvrir: %s\n" msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:437 +#: lib/rpmchecksig.c:431 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:438 lib/rpmchecksig.c:452 +#: lib/rpmchecksig.c:432 lib/rpmchecksig.c:446 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:440 lib/rpmchecksig.c:454 +#: lib/rpmchecksig.c:434 lib/rpmchecksig.c:448 msgid ") " msgstr "" -#: lib/rpmchecksig.c:441 lib/rpmchecksig.c:455 +#: lib/rpmchecksig.c:435 lib/rpmchecksig.c:449 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:443 lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 lib/rpmchecksig.c:451 msgid ")" msgstr "" -#: lib/rpmchecksig.c:451 +#: lib/rpmchecksig.c:445 msgid "OK" msgstr "" @@ -3341,7 +3341,7 @@ msgstr "" msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:445 lib/rpminstall.c:686 +#: lib/rpminstall.c:445 lib/rpminstall.c:684 #, fuzzy, c-format msgid "%s cannot be installed\n" msgstr "aucun package n'a t spcifi pour l'installation" @@ -3388,7 +3388,7 @@ msgstr "impossible d'ouvrir: %s\n" msgid "Installing %s\n" msgstr "" -#: lib/rpmlead.c:49 +#: lib/rpmlead.c:47 #, fuzzy, c-format msgid "read failed: %s (%d)\n" msgstr "impossible d'ouvrir: %s\n" @@ -3403,88 +3403,88 @@ msgstr "" msgid "missing architecture name at %s:%d\n" msgstr "" -#: lib/rpmrc.c:325 +#: lib/rpmrc.c:328 #, c-format msgid "Incomplete data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:330 +#: lib/rpmrc.c:333 #, c-format msgid "Too many args in data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:338 +#: lib/rpmrc.c:341 #, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "" -#: lib/rpmrc.c:378 +#: lib/rpmrc.c:384 #, c-format msgid "Incomplete default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:383 +#: lib/rpmrc.c:389 #, c-format msgid "Too many args in default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:585 +#: lib/rpmrc.c:591 #, fuzzy, c-format msgid "Cannot expand %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpmrc.c:590 +#: lib/rpmrc.c:596 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "" -#: lib/rpmrc.c:607 +#: lib/rpmrc.c:613 #, fuzzy, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "impossible d'ouvrir: %s\n" #. XXX Feof(fd) -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:660 #, fuzzy, c-format msgid "Failed to read %s: %s.\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:697 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "" -#: lib/rpmrc.c:708 lib/rpmrc.c:782 +#: lib/rpmrc.c:714 lib/rpmrc.c:788 #, c-format msgid "missing argument for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:725 lib/rpmrc.c:747 +#: lib/rpmrc.c:731 lib/rpmrc.c:753 #, fuzzy, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpmrc.c:734 +#: lib/rpmrc.c:740 #, fuzzy, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpmrc.c:774 +#: lib/rpmrc.c:780 #, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:841 +#: lib/rpmrc.c:847 #, fuzzy, c-format msgid "bad option '%s' at %s:%d\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpmrc.c:1436 +#: lib/rpmrc.c:1442 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1437 +#: lib/rpmrc.c:1443 msgid "Please contact rpm-list@redhat.com\n" msgstr "" @@ -3515,150 +3515,150 @@ msgstr " --sign - genre une signature PGP" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:230 +#: lib/signature.c:228 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:290 +#: lib/signature.c:288 #, fuzzy, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/signature.c:303 +#: lib/signature.c:301 #, fuzzy msgid "pgp failed\n" msgstr "La construction a chou.\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:310 +#: lib/signature.c:308 #, fuzzy msgid "pgp failed to write signature\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/signature.c:315 +#: lib/signature.c:313 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:328 lib/signature.c:410 +#: lib/signature.c:326 lib/signature.c:408 #, fuzzy msgid "unable to read the signature\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/signature.c:333 +#: lib/signature.c:331 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:372 lib/signature.c:760 +#: lib/signature.c:370 lib/signature.c:758 #, fuzzy msgid "Couldn't exec gpg\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/signature.c:385 +#: lib/signature.c:383 #, fuzzy msgid "gpg failed\n" msgstr "La construction a chou.\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:392 +#: lib/signature.c:390 #, fuzzy msgid "gpg failed to write signature\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/signature.c:397 +#: lib/signature.c:395 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:415 +#: lib/signature.c:413 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:443 +#: lib/signature.c:441 #, fuzzy msgid "Generating signature using PGP.\n" msgstr " --sign - genre une signature PGP" -#: lib/signature.c:449 +#: lib/signature.c:447 #, fuzzy msgid "Generating signature using GPG.\n" msgstr " --sign - genre une signature PGP" -#: lib/signature.c:532 lib/signature.c:607 +#: lib/signature.c:530 lib/signature.c:605 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" -#: lib/signature.c:697 +#: lib/signature.c:695 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" -#: lib/signature.c:789 +#: lib/signature.c:787 #, fuzzy msgid "Couldn't exec pgp\n" msgstr "impossible d'ouvrir: %s\n" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:793 lib/signature.c:846 +#: lib/signature.c:791 lib/signature.c:844 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:826 +#: lib/signature.c:824 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:838 +#: lib/signature.c:836 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/transaction.c:446 +#: lib/transaction.c:447 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:450 +#: lib/transaction.c:451 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/transaction.c:453 +#: lib/transaction.c:454 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/transaction.c:523 +#: lib/transaction.c:524 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/transaction.c:586 +#: lib/transaction.c:587 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/transaction.c:596 +#: lib/transaction.c:597 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:674 +#: lib/transaction.c:675 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/transaction.c:808 +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1406 +#: lib/transaction.c:1407 #, c-format msgid "excluding directory %s\n" msgstr "" @@ -3853,125 +3853,125 @@ msgstr "impossible d'ouvrir: %s\n" msgid "error(%d) removing record %s from %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:842 +#: rpmdb/rpmdb.c:846 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:973 +#: rpmdb/rpmdb.c:977 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1206 +#: rpmdb/rpmdb.c:1210 #, fuzzy, c-format msgid "error(%d) counting packages\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: rpmdb/rpmdb.c:1940 rpmdb/rpmdb.c:3122 +#: rpmdb/rpmdb.c:1944 rpmdb/rpmdb.c:3126 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:1991 +#: rpmdb/rpmdb.c:1995 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2256 +#: rpmdb/rpmdb.c:2260 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "aucun package n'a t spcifi pour la dsinstallation" -#: rpmdb/rpmdb.c:2325 +#: rpmdb/rpmdb.c:2329 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2334 +#: rpmdb/rpmdb.c:2338 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:2529 +#: rpmdb/rpmdb.c:2533 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: rpmdb/rpmdb.c:2607 +#: rpmdb/rpmdb.c:2611 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2618 +#: rpmdb/rpmdb.c:2622 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:3011 +#: rpmdb/rpmdb.c:3015 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3041 +#: rpmdb/rpmdb.c:3045 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3068 +#: rpmdb/rpmdb.c:3072 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:3072 +#: rpmdb/rpmdb.c:3076 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3078 +#: rpmdb/rpmdb.c:3082 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:3080 +#: rpmdb/rpmdb.c:3084 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:3087 +#: rpmdb/rpmdb.c:3091 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3098 +#: rpmdb/rpmdb.c:3102 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3162 +#: rpmdb/rpmdb.c:3166 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3180 +#: rpmdb/rpmdb.c:3184 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3188 +#: rpmdb/rpmdb.c:3192 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3190 +#: rpmdb/rpmdb.c:3194 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3200 +#: rpmdb/rpmdb.c:3204 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:3202 +#: rpmdb/rpmdb.c:3206 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "impossible d'ouvrir: %s\n" @@ -4067,59 +4067,59 @@ msgstr "impossible d'ouvrir: %s\n" msgid "File %s is smaller than %u bytes\n" msgstr "" -#: rpmio/rpmio.c:599 +#: rpmio/rpmio.c:588 msgid "Success" msgstr "" -#: rpmio/rpmio.c:602 +#: rpmio/rpmio.c:591 msgid "Bad server response" msgstr "" -#: rpmio/rpmio.c:605 +#: rpmio/rpmio.c:594 msgid "Server I/O error" msgstr "" -#: rpmio/rpmio.c:608 +#: rpmio/rpmio.c:597 msgid "Server timeout" msgstr "" -#: rpmio/rpmio.c:611 +#: rpmio/rpmio.c:600 msgid "Unable to lookup server host address" msgstr "" -#: rpmio/rpmio.c:614 +#: rpmio/rpmio.c:603 msgid "Unable to lookup server host name" msgstr "" -#: rpmio/rpmio.c:617 +#: rpmio/rpmio.c:606 msgid "Failed to connect to server" msgstr "" -#: rpmio/rpmio.c:620 +#: rpmio/rpmio.c:609 msgid "Failed to establish data connection to server" msgstr "" -#: rpmio/rpmio.c:623 +#: rpmio/rpmio.c:612 msgid "I/O error to local file" msgstr "" -#: rpmio/rpmio.c:626 +#: rpmio/rpmio.c:615 msgid "Error setting remote server to passive mode" msgstr "" -#: rpmio/rpmio.c:629 +#: rpmio/rpmio.c:618 msgid "File not found on server" msgstr "" -#: rpmio/rpmio.c:632 +#: rpmio/rpmio.c:621 msgid "Abort in progress" msgstr "" -#: rpmio/rpmio.c:636 +#: rpmio/rpmio.c:625 msgid "Unknown or unexpected error" msgstr "" -#: rpmio/rpmio.c:1259 +#: rpmio/rpmio.c:1252 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" @@ -4129,7 +4129,7 @@ msgid "(no error)" msgstr "" #. @-readonlytrans@ -#. FIX: double indeirection. +#. FIX: double indirection. #. @observer@ #: rpmio/rpmlog.c:114 rpmio/rpmlog.c:115 rpmio/rpmlog.c:116 msgid "fatal error: " @@ -4150,37 +4150,37 @@ msgstr "" msgid "memory alloc (%u bytes) returned NULL.\n" msgstr "" -#: rpmio/url.c:103 +#: rpmio/url.c:101 #, c-format msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:123 +#: rpmio/url.c:121 #, c-format msgid "warning: u %p data %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:151 +#: rpmio/url.c:149 #, c-format msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" msgstr "" -#: rpmio/url.c:244 +#: rpmio/url.c:242 #, c-format msgid "Password for %s@%s: " msgstr "" -#: rpmio/url.c:269 rpmio/url.c:295 +#: rpmio/url.c:267 rpmio/url.c:293 #, c-format msgid "error: %sport must be a number\n" msgstr "" -#: rpmio/url.c:434 +#: rpmio/url.c:432 msgid "url port must be a number\n" msgstr "" #. XXX Fstrerror -#: rpmio/url.c:497 +#: rpmio/url.c:495 #, fuzzy, c-format msgid "failed to create %s: %s\n" msgstr "impossible d'ouvrir: %s\n" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2001-09-21 11:01-0400\n" +"POT-Creation-Date: 2001-09-24 20:14-0400\n" "PO-Revision-Date: 2001-01-13 22:31+0100\n" "Last-Translator: Jesús Bravo Álvarez <jba@pobox.com>\n" "Language-Team: Galician <trasno@ceu.fi.udc.es>\n" @@ -1050,15 +1050,15 @@ msgstr "" msgid "exec failed\n" msgstr "" -#: rpm.c:1116 rpmqv.c:1103 +#: rpm.c:1116 rpmqv.c:1104 msgid "unexpected arguments to --querytags " msgstr "" -#: rpm.c:1127 rpmqv.c:1112 +#: rpm.c:1127 rpmqv.c:1113 msgid "no packages given for signature check" msgstr "" -#: rpm.c:1138 rpmqv.c:1121 +#: rpm.c:1138 rpmqv.c:1122 msgid "no packages given for signing" msgstr "" @@ -1070,19 +1070,19 @@ msgstr "" msgid "no packages given for install" msgstr "" -#: rpm.c:1267 rpmqv.c:1066 +#: rpm.c:1267 rpmqv.c:1067 msgid "extra arguments given for query of all packages" msgstr "" -#: rpm.c:1272 rpmqv.c:1075 +#: rpm.c:1272 rpmqv.c:1076 msgid "no arguments given for query" msgstr "" -#: rpm.c:1289 rpmqv.c:1091 +#: rpm.c:1289 rpmqv.c:1092 msgid "extra arguments given for verify of all packages" msgstr "" -#: rpm.c:1293 rpmqv.c:1095 +#: rpm.c:1293 rpmqv.c:1096 msgid "no arguments given for verify" msgstr "" @@ -1691,17 +1691,17 @@ msgstr "" msgid "line %d: Error parsing %%description: %s\n" msgstr "" -#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:192 +#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:190 #, c-format msgid "line %d: Bad option %s: %s\n" msgstr "" -#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:204 +#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:202 #, c-format msgid "line %d: Too many names: %s\n" msgstr "" -#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:213 +#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:211 #, c-format msgid "line %d: Package does not exist: %s\n" msgstr "" @@ -1931,22 +1931,22 @@ msgstr "" msgid "line %d: Version required: %s\n" msgstr "" -#: build/parseScript.c:158 +#: build/parseScript.c:156 #, c-format msgid "line %d: triggers must have --: %s\n" msgstr "" -#: build/parseScript.c:168 build/parseScript.c:229 +#: build/parseScript.c:166 build/parseScript.c:227 #, c-format msgid "line %d: Error parsing %s: %s\n" msgstr "" -#: build/parseScript.c:179 +#: build/parseScript.c:177 #, c-format msgid "line %d: script program must begin with '/': %s\n" msgstr "" -#: build/parseScript.c:221 +#: build/parseScript.c:219 #, c-format msgid "line %d: Second %s\n" msgstr "" @@ -1987,11 +1987,11 @@ msgstr "" msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:508 +#: build/parseSpec.c:509 msgid "No compatible architectures found for build\n" msgstr "" -#: build/parseSpec.c:563 +#: build/parseSpec.c:564 #, c-format msgid "Package has no %%description: %s\n" msgstr "" @@ -2065,106 +2065,106 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "YES" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "NO " msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1015 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1131 +#: lib/depends.c:1126 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1222 +#: lib/depends.c:1217 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "" -#: lib/depends.c:1251 +#: lib/depends.c:1246 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1268 +#: lib/depends.c:1263 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "" -#: lib/depends.c:1292 +#: lib/depends.c:1287 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1305 +#: lib/depends.c:1300 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1319 +#: lib/depends.c:1314 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "" -#: lib/depends.c:1335 +#: lib/depends.c:1330 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1356 +#: lib/depends.c:1351 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1428 +#: lib/depends.c:1423 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1507 +#: lib/depends.c:1502 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:1753 +#: lib/depends.c:1748 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1902 +#: lib/depends.c:1897 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1960 +#: lib/depends.c:1955 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2010 +#: lib/depends.c:2005 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2062 +#: lib/depends.c:2057 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2091 +#: lib/depends.c:2086 msgid "========== continuing tsort ...\n" msgstr "" #: lib/formats.c:28 lib/formats.c:54 lib/formats.c:85 lib/formats.c:128 -#: lib/header.c:2621 lib/header.c:2642 lib/header.c:2664 +#: lib/header.c:2623 lib/header.c:2644 lib/header.c:2666 msgid "(not a number)" msgstr "" @@ -2187,7 +2187,7 @@ msgstr "" msgid "getting list of mounted filesystems\n" msgstr "" -#: lib/fs.c:153 rpmio/url.c:477 +#: lib/fs.c:153 rpmio/url.c:475 #, c-format msgid "failed to open %s: %s\n" msgstr "" @@ -2197,46 +2197,46 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:290 +#: lib/fsm.c:288 msgid "========= Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:292 +#: lib/fsm.c:290 #, c-format msgid "%9d %s\n" msgstr "" -#: lib/fsm.c:1130 +#: lib/fsm.c:1124 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1407 +#: lib/fsm.c:1401 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1526 lib/fsm.c:1651 +#: lib/fsm.c:1520 lib/fsm.c:1645 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1677 +#: lib/fsm.c:1671 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1683 +#: lib/fsm.c:1677 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1693 +#: lib/fsm.c:1687 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1712 +#: lib/fsm.c:1706 #, c-format msgid "%s created as %s\n" msgstr "" @@ -2252,77 +2252,77 @@ msgid "Data type %d not supported\n" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1930 +#: lib/header.c:1932 #, c-format msgid "missing { after %" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1960 +#: lib/header.c:1962 msgid "missing } after %{" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1974 +#: lib/header.c:1976 msgid "empty tag format" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1988 +#: lib/header.c:1990 msgid "empty tag name" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2005 +#: lib/header.c:2007 msgid "unknown tag" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2032 +#: lib/header.c:2034 msgid "] expected at end of array" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2050 +#: lib/header.c:2052 msgid "unexpected ]" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2054 +#: lib/header.c:2056 msgid "unexpected }" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2120 +#: lib/header.c:2122 msgid "? expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2129 +#: lib/header.c:2131 msgid "{ expected after ? in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2142 lib/header.c:2184 +#: lib/header.c:2144 lib/header.c:2186 msgid "} expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2152 +#: lib/header.c:2154 msgid ": expected following ? subexpression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2169 +#: lib/header.c:2171 msgid "{ expected after : in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2194 +#: lib/header.c:2196 msgid "| expected at end of expression" msgstr "" -#: lib/header.c:2381 +#: lib/header.c:2383 msgid "(unknown type)" msgstr "" @@ -2900,7 +2900,7 @@ msgid "can't query %s: %s\n" msgstr "" #: lib/query.c:576 lib/query.c:610 lib/rpminstall.c:309 lib/rpminstall.c:453 -#: lib/rpminstall.c:826 +#: lib/rpminstall.c:824 #, c-format msgid "open of %s failed: %s\n" msgstr "" @@ -3037,27 +3037,27 @@ msgstr "" msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:437 +#: lib/rpmchecksig.c:431 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:438 lib/rpmchecksig.c:452 +#: lib/rpmchecksig.c:432 lib/rpmchecksig.c:446 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:440 lib/rpmchecksig.c:454 +#: lib/rpmchecksig.c:434 lib/rpmchecksig.c:448 msgid ") " msgstr "" -#: lib/rpmchecksig.c:441 lib/rpmchecksig.c:455 +#: lib/rpmchecksig.c:435 lib/rpmchecksig.c:449 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:443 lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 lib/rpmchecksig.c:451 msgid ")" msgstr "" -#: lib/rpmchecksig.c:451 +#: lib/rpmchecksig.c:445 msgid "OK" msgstr "" @@ -3106,7 +3106,7 @@ msgstr "" msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:445 lib/rpminstall.c:686 +#: lib/rpminstall.c:445 lib/rpminstall.c:684 #, c-format msgid "%s cannot be installed\n" msgstr "" @@ -3153,7 +3153,7 @@ msgstr "" msgid "Installing %s\n" msgstr "" -#: lib/rpmlead.c:49 +#: lib/rpmlead.c:47 #, c-format msgid "read failed: %s (%d)\n" msgstr "" @@ -3168,88 +3168,88 @@ msgstr "" msgid "missing architecture name at %s:%d\n" msgstr "" -#: lib/rpmrc.c:325 +#: lib/rpmrc.c:328 #, c-format msgid "Incomplete data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:330 +#: lib/rpmrc.c:333 #, c-format msgid "Too many args in data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:338 +#: lib/rpmrc.c:341 #, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "" -#: lib/rpmrc.c:378 +#: lib/rpmrc.c:384 #, c-format msgid "Incomplete default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:383 +#: lib/rpmrc.c:389 #, c-format msgid "Too many args in default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:585 +#: lib/rpmrc.c:591 #, c-format msgid "Cannot expand %s\n" msgstr "" -#: lib/rpmrc.c:590 +#: lib/rpmrc.c:596 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "" -#: lib/rpmrc.c:607 +#: lib/rpmrc.c:613 #, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "" #. XXX Feof(fd) -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:660 #, c-format msgid "Failed to read %s: %s.\n" msgstr "" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:697 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "" -#: lib/rpmrc.c:708 lib/rpmrc.c:782 +#: lib/rpmrc.c:714 lib/rpmrc.c:788 #, c-format msgid "missing argument for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:725 lib/rpmrc.c:747 +#: lib/rpmrc.c:731 lib/rpmrc.c:753 #, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "" -#: lib/rpmrc.c:734 +#: lib/rpmrc.c:740 #, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "" -#: lib/rpmrc.c:774 +#: lib/rpmrc.c:780 #, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:841 +#: lib/rpmrc.c:847 #, c-format msgid "bad option '%s' at %s:%d\n" msgstr "" -#: lib/rpmrc.c:1436 +#: lib/rpmrc.c:1442 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1437 +#: lib/rpmrc.c:1443 msgid "Please contact rpm-list@redhat.com\n" msgstr "" @@ -3279,141 +3279,141 @@ msgstr "" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:230 +#: lib/signature.c:228 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:290 +#: lib/signature.c:288 #, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "" -#: lib/signature.c:303 +#: lib/signature.c:301 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:310 +#: lib/signature.c:308 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:315 +#: lib/signature.c:313 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:328 lib/signature.c:410 +#: lib/signature.c:326 lib/signature.c:408 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:333 +#: lib/signature.c:331 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:372 lib/signature.c:760 +#: lib/signature.c:370 lib/signature.c:758 msgid "Couldn't exec gpg\n" msgstr "" -#: lib/signature.c:385 +#: lib/signature.c:383 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:392 +#: lib/signature.c:390 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:397 +#: lib/signature.c:395 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:415 +#: lib/signature.c:413 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:443 +#: lib/signature.c:441 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:449 +#: lib/signature.c:447 msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:532 lib/signature.c:607 +#: lib/signature.c:530 lib/signature.c:605 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" -#: lib/signature.c:697 +#: lib/signature.c:695 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" -#: lib/signature.c:789 +#: lib/signature.c:787 msgid "Couldn't exec pgp\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:793 lib/signature.c:846 +#: lib/signature.c:791 lib/signature.c:844 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:826 +#: lib/signature.c:824 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:838 +#: lib/signature.c:836 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/transaction.c:446 +#: lib/transaction.c:447 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:450 +#: lib/transaction.c:451 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/transaction.c:453 +#: lib/transaction.c:454 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/transaction.c:523 +#: lib/transaction.c:524 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/transaction.c:586 +#: lib/transaction.c:587 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/transaction.c:596 +#: lib/transaction.c:597 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:674 +#: lib/transaction.c:675 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:808 +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1406 +#: lib/transaction.c:1407 #, c-format msgid "excluding directory %s\n" msgstr "" @@ -3608,125 +3608,125 @@ msgstr "" msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:842 +#: rpmdb/rpmdb.c:846 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:973 +#: rpmdb/rpmdb.c:977 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1206 +#: rpmdb/rpmdb.c:1210 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:1940 rpmdb/rpmdb.c:3122 +#: rpmdb/rpmdb.c:1944 rpmdb/rpmdb.c:3126 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:1991 +#: rpmdb/rpmdb.c:1995 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2256 +#: rpmdb/rpmdb.c:2260 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2325 +#: rpmdb/rpmdb.c:2329 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2334 +#: rpmdb/rpmdb.c:2338 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2529 +#: rpmdb/rpmdb.c:2533 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2607 +#: rpmdb/rpmdb.c:2611 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2618 +#: rpmdb/rpmdb.c:2622 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3011 +#: rpmdb/rpmdb.c:3015 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3041 +#: rpmdb/rpmdb.c:3045 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3068 +#: rpmdb/rpmdb.c:3072 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3072 +#: rpmdb/rpmdb.c:3076 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3078 +#: rpmdb/rpmdb.c:3082 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3080 +#: rpmdb/rpmdb.c:3084 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3087 +#: rpmdb/rpmdb.c:3091 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3098 +#: rpmdb/rpmdb.c:3102 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3162 +#: rpmdb/rpmdb.c:3166 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3180 +#: rpmdb/rpmdb.c:3184 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3188 +#: rpmdb/rpmdb.c:3192 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3190 +#: rpmdb/rpmdb.c:3194 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3200 +#: rpmdb/rpmdb.c:3204 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3202 +#: rpmdb/rpmdb.c:3206 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" @@ -3822,59 +3822,59 @@ msgstr "" msgid "File %s is smaller than %u bytes\n" msgstr "" -#: rpmio/rpmio.c:599 +#: rpmio/rpmio.c:588 msgid "Success" msgstr "" -#: rpmio/rpmio.c:602 +#: rpmio/rpmio.c:591 msgid "Bad server response" msgstr "" -#: rpmio/rpmio.c:605 +#: rpmio/rpmio.c:594 msgid "Server I/O error" msgstr "" -#: rpmio/rpmio.c:608 +#: rpmio/rpmio.c:597 msgid "Server timeout" msgstr "" -#: rpmio/rpmio.c:611 +#: rpmio/rpmio.c:600 msgid "Unable to lookup server host address" msgstr "" -#: rpmio/rpmio.c:614 +#: rpmio/rpmio.c:603 msgid "Unable to lookup server host name" msgstr "" -#: rpmio/rpmio.c:617 +#: rpmio/rpmio.c:606 msgid "Failed to connect to server" msgstr "" -#: rpmio/rpmio.c:620 +#: rpmio/rpmio.c:609 msgid "Failed to establish data connection to server" msgstr "" -#: rpmio/rpmio.c:623 +#: rpmio/rpmio.c:612 msgid "I/O error to local file" msgstr "" -#: rpmio/rpmio.c:626 +#: rpmio/rpmio.c:615 msgid "Error setting remote server to passive mode" msgstr "" -#: rpmio/rpmio.c:629 +#: rpmio/rpmio.c:618 msgid "File not found on server" msgstr "" -#: rpmio/rpmio.c:632 +#: rpmio/rpmio.c:621 msgid "Abort in progress" msgstr "" -#: rpmio/rpmio.c:636 +#: rpmio/rpmio.c:625 msgid "Unknown or unexpected error" msgstr "" -#: rpmio/rpmio.c:1259 +#: rpmio/rpmio.c:1252 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" @@ -3884,7 +3884,7 @@ msgid "(no error)" msgstr "" #. @-readonlytrans@ -#. FIX: double indeirection. +#. FIX: double indirection. #. @observer@ #: rpmio/rpmlog.c:114 rpmio/rpmlog.c:115 rpmio/rpmlog.c:116 msgid "fatal error: " @@ -3905,37 +3905,37 @@ msgstr "" msgid "memory alloc (%u bytes) returned NULL.\n" msgstr "" -#: rpmio/url.c:103 +#: rpmio/url.c:101 #, c-format msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:123 +#: rpmio/url.c:121 #, c-format msgid "warning: u %p data %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:151 +#: rpmio/url.c:149 #, c-format msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" msgstr "" -#: rpmio/url.c:244 +#: rpmio/url.c:242 #, c-format msgid "Password for %s@%s: " msgstr "" -#: rpmio/url.c:269 rpmio/url.c:295 +#: rpmio/url.c:267 rpmio/url.c:293 #, c-format msgid "error: %sport must be a number\n" msgstr "" -#: rpmio/url.c:434 +#: rpmio/url.c:432 msgid "url port must be a number\n" msgstr "" #. XXX Fstrerror -#: rpmio/url.c:497 +#: rpmio/url.c:495 #, c-format msgid "failed to create %s: %s\n" msgstr "" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-09-21 11:01-0400\n" +"POT-Creation-Date: 2001-09-24 20:14-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -1055,15 +1055,15 @@ msgstr "" msgid "exec failed\n" msgstr "" -#: rpm.c:1116 rpmqv.c:1103 +#: rpm.c:1116 rpmqv.c:1104 msgid "unexpected arguments to --querytags " msgstr "" -#: rpm.c:1127 rpmqv.c:1112 +#: rpm.c:1127 rpmqv.c:1113 msgid "no packages given for signature check" msgstr "" -#: rpm.c:1138 rpmqv.c:1121 +#: rpm.c:1138 rpmqv.c:1122 msgid "no packages given for signing" msgstr "" @@ -1075,19 +1075,19 @@ msgstr "" msgid "no packages given for install" msgstr "" -#: rpm.c:1267 rpmqv.c:1066 +#: rpm.c:1267 rpmqv.c:1067 msgid "extra arguments given for query of all packages" msgstr "" -#: rpm.c:1272 rpmqv.c:1075 +#: rpm.c:1272 rpmqv.c:1076 msgid "no arguments given for query" msgstr "" -#: rpm.c:1289 rpmqv.c:1091 +#: rpm.c:1289 rpmqv.c:1092 msgid "extra arguments given for verify of all packages" msgstr "" -#: rpm.c:1293 rpmqv.c:1095 +#: rpm.c:1293 rpmqv.c:1096 msgid "no arguments given for verify" msgstr "" @@ -1696,17 +1696,17 @@ msgstr "" msgid "line %d: Error parsing %%description: %s\n" msgstr "" -#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:192 +#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:190 #, c-format msgid "line %d: Bad option %s: %s\n" msgstr "" -#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:204 +#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:202 #, c-format msgid "line %d: Too many names: %s\n" msgstr "" -#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:213 +#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:211 #, c-format msgid "line %d: Package does not exist: %s\n" msgstr "" @@ -1936,22 +1936,22 @@ msgstr "" msgid "line %d: Version required: %s\n" msgstr "" -#: build/parseScript.c:158 +#: build/parseScript.c:156 #, c-format msgid "line %d: triggers must have --: %s\n" msgstr "" -#: build/parseScript.c:168 build/parseScript.c:229 +#: build/parseScript.c:166 build/parseScript.c:227 #, c-format msgid "line %d: Error parsing %s: %s\n" msgstr "" -#: build/parseScript.c:179 +#: build/parseScript.c:177 #, c-format msgid "line %d: script program must begin with '/': %s\n" msgstr "" -#: build/parseScript.c:221 +#: build/parseScript.c:219 #, c-format msgid "line %d: Second %s\n" msgstr "" @@ -1992,11 +1992,11 @@ msgstr "" msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:508 +#: build/parseSpec.c:509 msgid "No compatible architectures found for build\n" msgstr "" -#: build/parseSpec.c:563 +#: build/parseSpec.c:564 #, c-format msgid "Package has no %%description: %s\n" msgstr "" @@ -2070,106 +2070,106 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "YES" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "NO " msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1015 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1131 +#: lib/depends.c:1126 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1222 +#: lib/depends.c:1217 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "" -#: lib/depends.c:1251 +#: lib/depends.c:1246 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1268 +#: lib/depends.c:1263 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "" -#: lib/depends.c:1292 +#: lib/depends.c:1287 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1305 +#: lib/depends.c:1300 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1319 +#: lib/depends.c:1314 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "" -#: lib/depends.c:1335 +#: lib/depends.c:1330 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1356 +#: lib/depends.c:1351 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1428 +#: lib/depends.c:1423 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1507 +#: lib/depends.c:1502 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:1753 +#: lib/depends.c:1748 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1902 +#: lib/depends.c:1897 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1960 +#: lib/depends.c:1955 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2010 +#: lib/depends.c:2005 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2062 +#: lib/depends.c:2057 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2091 +#: lib/depends.c:2086 msgid "========== continuing tsort ...\n" msgstr "" #: lib/formats.c:28 lib/formats.c:54 lib/formats.c:85 lib/formats.c:128 -#: lib/header.c:2621 lib/header.c:2642 lib/header.c:2664 +#: lib/header.c:2623 lib/header.c:2644 lib/header.c:2666 msgid "(not a number)" msgstr "" @@ -2192,7 +2192,7 @@ msgstr "" msgid "getting list of mounted filesystems\n" msgstr "" -#: lib/fs.c:153 rpmio/url.c:477 +#: lib/fs.c:153 rpmio/url.c:475 #, c-format msgid "failed to open %s: %s\n" msgstr "" @@ -2202,46 +2202,46 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:290 +#: lib/fsm.c:288 msgid "========= Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:292 +#: lib/fsm.c:290 #, c-format msgid "%9d %s\n" msgstr "" -#: lib/fsm.c:1130 +#: lib/fsm.c:1124 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1407 +#: lib/fsm.c:1401 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1526 lib/fsm.c:1651 +#: lib/fsm.c:1520 lib/fsm.c:1645 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1677 +#: lib/fsm.c:1671 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1683 +#: lib/fsm.c:1677 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1693 +#: lib/fsm.c:1687 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1712 +#: lib/fsm.c:1706 #, c-format msgid "%s created as %s\n" msgstr "" @@ -2257,77 +2257,77 @@ msgid "Data type %d not supported\n" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1930 +#: lib/header.c:1932 #, c-format msgid "missing { after %" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1960 +#: lib/header.c:1962 msgid "missing } after %{" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1974 +#: lib/header.c:1976 msgid "empty tag format" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1988 +#: lib/header.c:1990 msgid "empty tag name" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2005 +#: lib/header.c:2007 msgid "unknown tag" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2032 +#: lib/header.c:2034 msgid "] expected at end of array" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2050 +#: lib/header.c:2052 msgid "unexpected ]" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2054 +#: lib/header.c:2056 msgid "unexpected }" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2120 +#: lib/header.c:2122 msgid "? expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2129 +#: lib/header.c:2131 msgid "{ expected after ? in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2142 lib/header.c:2184 +#: lib/header.c:2144 lib/header.c:2186 msgid "} expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2152 +#: lib/header.c:2154 msgid ": expected following ? subexpression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2169 +#: lib/header.c:2171 msgid "{ expected after : in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2194 +#: lib/header.c:2196 msgid "| expected at end of expression" msgstr "" -#: lib/header.c:2381 +#: lib/header.c:2383 msgid "(unknown type)" msgstr "" @@ -2905,7 +2905,7 @@ msgid "can't query %s: %s\n" msgstr "" #: lib/query.c:576 lib/query.c:610 lib/rpminstall.c:309 lib/rpminstall.c:453 -#: lib/rpminstall.c:826 +#: lib/rpminstall.c:824 #, c-format msgid "open of %s failed: %s\n" msgstr "" @@ -3042,27 +3042,27 @@ msgstr "" msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:437 +#: lib/rpmchecksig.c:431 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:438 lib/rpmchecksig.c:452 +#: lib/rpmchecksig.c:432 lib/rpmchecksig.c:446 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:440 lib/rpmchecksig.c:454 +#: lib/rpmchecksig.c:434 lib/rpmchecksig.c:448 msgid ") " msgstr "" -#: lib/rpmchecksig.c:441 lib/rpmchecksig.c:455 +#: lib/rpmchecksig.c:435 lib/rpmchecksig.c:449 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:443 lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 lib/rpmchecksig.c:451 msgid ")" msgstr "" -#: lib/rpmchecksig.c:451 +#: lib/rpmchecksig.c:445 msgid "OK" msgstr "" @@ -3111,7 +3111,7 @@ msgstr "" msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:445 lib/rpminstall.c:686 +#: lib/rpminstall.c:445 lib/rpminstall.c:684 #, c-format msgid "%s cannot be installed\n" msgstr "" @@ -3158,7 +3158,7 @@ msgstr "" msgid "Installing %s\n" msgstr "" -#: lib/rpmlead.c:49 +#: lib/rpmlead.c:47 #, c-format msgid "read failed: %s (%d)\n" msgstr "" @@ -3173,88 +3173,88 @@ msgstr "" msgid "missing architecture name at %s:%d\n" msgstr "" -#: lib/rpmrc.c:325 +#: lib/rpmrc.c:328 #, c-format msgid "Incomplete data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:330 +#: lib/rpmrc.c:333 #, c-format msgid "Too many args in data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:338 +#: lib/rpmrc.c:341 #, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "" -#: lib/rpmrc.c:378 +#: lib/rpmrc.c:384 #, c-format msgid "Incomplete default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:383 +#: lib/rpmrc.c:389 #, c-format msgid "Too many args in default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:585 +#: lib/rpmrc.c:591 #, c-format msgid "Cannot expand %s\n" msgstr "" -#: lib/rpmrc.c:590 +#: lib/rpmrc.c:596 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "" -#: lib/rpmrc.c:607 +#: lib/rpmrc.c:613 #, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "" #. XXX Feof(fd) -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:660 #, c-format msgid "Failed to read %s: %s.\n" msgstr "" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:697 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "" -#: lib/rpmrc.c:708 lib/rpmrc.c:782 +#: lib/rpmrc.c:714 lib/rpmrc.c:788 #, c-format msgid "missing argument for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:725 lib/rpmrc.c:747 +#: lib/rpmrc.c:731 lib/rpmrc.c:753 #, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "" -#: lib/rpmrc.c:734 +#: lib/rpmrc.c:740 #, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "" -#: lib/rpmrc.c:774 +#: lib/rpmrc.c:780 #, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:841 +#: lib/rpmrc.c:847 #, c-format msgid "bad option '%s' at %s:%d\n" msgstr "" -#: lib/rpmrc.c:1436 +#: lib/rpmrc.c:1442 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1437 +#: lib/rpmrc.c:1443 msgid "Please contact rpm-list@redhat.com\n" msgstr "" @@ -3284,141 +3284,141 @@ msgstr "" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:230 +#: lib/signature.c:228 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:290 +#: lib/signature.c:288 #, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "" -#: lib/signature.c:303 +#: lib/signature.c:301 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:310 +#: lib/signature.c:308 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:315 +#: lib/signature.c:313 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:328 lib/signature.c:410 +#: lib/signature.c:326 lib/signature.c:408 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:333 +#: lib/signature.c:331 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:372 lib/signature.c:760 +#: lib/signature.c:370 lib/signature.c:758 msgid "Couldn't exec gpg\n" msgstr "" -#: lib/signature.c:385 +#: lib/signature.c:383 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:392 +#: lib/signature.c:390 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:397 +#: lib/signature.c:395 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:415 +#: lib/signature.c:413 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:443 +#: lib/signature.c:441 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:449 +#: lib/signature.c:447 msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:532 lib/signature.c:607 +#: lib/signature.c:530 lib/signature.c:605 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" -#: lib/signature.c:697 +#: lib/signature.c:695 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" -#: lib/signature.c:789 +#: lib/signature.c:787 msgid "Couldn't exec pgp\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:793 lib/signature.c:846 +#: lib/signature.c:791 lib/signature.c:844 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:826 +#: lib/signature.c:824 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:838 +#: lib/signature.c:836 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/transaction.c:446 +#: lib/transaction.c:447 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:450 +#: lib/transaction.c:451 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/transaction.c:453 +#: lib/transaction.c:454 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/transaction.c:523 +#: lib/transaction.c:524 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/transaction.c:586 +#: lib/transaction.c:587 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/transaction.c:596 +#: lib/transaction.c:597 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:674 +#: lib/transaction.c:675 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:808 +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1406 +#: lib/transaction.c:1407 #, c-format msgid "excluding directory %s\n" msgstr "" @@ -3613,125 +3613,125 @@ msgstr "" msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:842 +#: rpmdb/rpmdb.c:846 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:973 +#: rpmdb/rpmdb.c:977 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1206 +#: rpmdb/rpmdb.c:1210 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:1940 rpmdb/rpmdb.c:3122 +#: rpmdb/rpmdb.c:1944 rpmdb/rpmdb.c:3126 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:1991 +#: rpmdb/rpmdb.c:1995 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2256 +#: rpmdb/rpmdb.c:2260 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2325 +#: rpmdb/rpmdb.c:2329 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2334 +#: rpmdb/rpmdb.c:2338 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2529 +#: rpmdb/rpmdb.c:2533 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2607 +#: rpmdb/rpmdb.c:2611 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2618 +#: rpmdb/rpmdb.c:2622 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3011 +#: rpmdb/rpmdb.c:3015 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3041 +#: rpmdb/rpmdb.c:3045 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3068 +#: rpmdb/rpmdb.c:3072 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3072 +#: rpmdb/rpmdb.c:3076 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3078 +#: rpmdb/rpmdb.c:3082 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3080 +#: rpmdb/rpmdb.c:3084 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3087 +#: rpmdb/rpmdb.c:3091 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3098 +#: rpmdb/rpmdb.c:3102 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3162 +#: rpmdb/rpmdb.c:3166 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3180 +#: rpmdb/rpmdb.c:3184 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3188 +#: rpmdb/rpmdb.c:3192 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3190 +#: rpmdb/rpmdb.c:3194 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3200 +#: rpmdb/rpmdb.c:3204 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3202 +#: rpmdb/rpmdb.c:3206 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" @@ -3827,59 +3827,59 @@ msgstr "" msgid "File %s is smaller than %u bytes\n" msgstr "" -#: rpmio/rpmio.c:599 +#: rpmio/rpmio.c:588 msgid "Success" msgstr "" -#: rpmio/rpmio.c:602 +#: rpmio/rpmio.c:591 msgid "Bad server response" msgstr "" -#: rpmio/rpmio.c:605 +#: rpmio/rpmio.c:594 msgid "Server I/O error" msgstr "" -#: rpmio/rpmio.c:608 +#: rpmio/rpmio.c:597 msgid "Server timeout" msgstr "" -#: rpmio/rpmio.c:611 +#: rpmio/rpmio.c:600 msgid "Unable to lookup server host address" msgstr "" -#: rpmio/rpmio.c:614 +#: rpmio/rpmio.c:603 msgid "Unable to lookup server host name" msgstr "" -#: rpmio/rpmio.c:617 +#: rpmio/rpmio.c:606 msgid "Failed to connect to server" msgstr "" -#: rpmio/rpmio.c:620 +#: rpmio/rpmio.c:609 msgid "Failed to establish data connection to server" msgstr "" -#: rpmio/rpmio.c:623 +#: rpmio/rpmio.c:612 msgid "I/O error to local file" msgstr "" -#: rpmio/rpmio.c:626 +#: rpmio/rpmio.c:615 msgid "Error setting remote server to passive mode" msgstr "" -#: rpmio/rpmio.c:629 +#: rpmio/rpmio.c:618 msgid "File not found on server" msgstr "" -#: rpmio/rpmio.c:632 +#: rpmio/rpmio.c:621 msgid "Abort in progress" msgstr "" -#: rpmio/rpmio.c:636 +#: rpmio/rpmio.c:625 msgid "Unknown or unexpected error" msgstr "" -#: rpmio/rpmio.c:1259 +#: rpmio/rpmio.c:1252 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" @@ -3889,7 +3889,7 @@ msgid "(no error)" msgstr "" #. @-readonlytrans@ -#. FIX: double indeirection. +#. FIX: double indirection. #. @observer@ #: rpmio/rpmlog.c:114 rpmio/rpmlog.c:115 rpmio/rpmlog.c:116 msgid "fatal error: " @@ -3910,37 +3910,37 @@ msgstr "" msgid "memory alloc (%u bytes) returned NULL.\n" msgstr "" -#: rpmio/url.c:103 +#: rpmio/url.c:101 #, c-format msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:123 +#: rpmio/url.c:121 #, c-format msgid "warning: u %p data %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:151 +#: rpmio/url.c:149 #, c-format msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" msgstr "" -#: rpmio/url.c:244 +#: rpmio/url.c:242 #, c-format msgid "Password for %s@%s: " msgstr "" -#: rpmio/url.c:269 rpmio/url.c:295 +#: rpmio/url.c:267 rpmio/url.c:293 #, c-format msgid "error: %sport must be a number\n" msgstr "" -#: rpmio/url.c:434 +#: rpmio/url.c:432 msgid "url port must be a number\n" msgstr "" #. XXX Fstrerror -#: rpmio/url.c:497 +#: rpmio/url.c:495 #, c-format msgid "failed to create %s: %s\n" msgstr "" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-09-21 11:01-0400\n" +"POT-Creation-Date: 2001-09-24 20:14-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -1055,15 +1055,15 @@ msgstr "" msgid "exec failed\n" msgstr "" -#: rpm.c:1116 rpmqv.c:1103 +#: rpm.c:1116 rpmqv.c:1104 msgid "unexpected arguments to --querytags " msgstr "" -#: rpm.c:1127 rpmqv.c:1112 +#: rpm.c:1127 rpmqv.c:1113 msgid "no packages given for signature check" msgstr "" -#: rpm.c:1138 rpmqv.c:1121 +#: rpm.c:1138 rpmqv.c:1122 msgid "no packages given for signing" msgstr "" @@ -1075,19 +1075,19 @@ msgstr "" msgid "no packages given for install" msgstr "" -#: rpm.c:1267 rpmqv.c:1066 +#: rpm.c:1267 rpmqv.c:1067 msgid "extra arguments given for query of all packages" msgstr "" -#: rpm.c:1272 rpmqv.c:1075 +#: rpm.c:1272 rpmqv.c:1076 msgid "no arguments given for query" msgstr "" -#: rpm.c:1289 rpmqv.c:1091 +#: rpm.c:1289 rpmqv.c:1092 msgid "extra arguments given for verify of all packages" msgstr "" -#: rpm.c:1293 rpmqv.c:1095 +#: rpm.c:1293 rpmqv.c:1096 msgid "no arguments given for verify" msgstr "" @@ -1696,17 +1696,17 @@ msgstr "" msgid "line %d: Error parsing %%description: %s\n" msgstr "" -#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:192 +#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:190 #, c-format msgid "line %d: Bad option %s: %s\n" msgstr "" -#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:204 +#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:202 #, c-format msgid "line %d: Too many names: %s\n" msgstr "" -#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:213 +#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:211 #, c-format msgid "line %d: Package does not exist: %s\n" msgstr "" @@ -1936,22 +1936,22 @@ msgstr "" msgid "line %d: Version required: %s\n" msgstr "" -#: build/parseScript.c:158 +#: build/parseScript.c:156 #, c-format msgid "line %d: triggers must have --: %s\n" msgstr "" -#: build/parseScript.c:168 build/parseScript.c:229 +#: build/parseScript.c:166 build/parseScript.c:227 #, c-format msgid "line %d: Error parsing %s: %s\n" msgstr "" -#: build/parseScript.c:179 +#: build/parseScript.c:177 #, c-format msgid "line %d: script program must begin with '/': %s\n" msgstr "" -#: build/parseScript.c:221 +#: build/parseScript.c:219 #, c-format msgid "line %d: Second %s\n" msgstr "" @@ -1992,11 +1992,11 @@ msgstr "" msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:508 +#: build/parseSpec.c:509 msgid "No compatible architectures found for build\n" msgstr "" -#: build/parseSpec.c:563 +#: build/parseSpec.c:564 #, c-format msgid "Package has no %%description: %s\n" msgstr "" @@ -2070,106 +2070,106 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "YES" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "NO " msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1015 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1131 +#: lib/depends.c:1126 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1222 +#: lib/depends.c:1217 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "" -#: lib/depends.c:1251 +#: lib/depends.c:1246 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1268 +#: lib/depends.c:1263 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "" -#: lib/depends.c:1292 +#: lib/depends.c:1287 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1305 +#: lib/depends.c:1300 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1319 +#: lib/depends.c:1314 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "" -#: lib/depends.c:1335 +#: lib/depends.c:1330 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1356 +#: lib/depends.c:1351 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1428 +#: lib/depends.c:1423 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1507 +#: lib/depends.c:1502 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:1753 +#: lib/depends.c:1748 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1902 +#: lib/depends.c:1897 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1960 +#: lib/depends.c:1955 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2010 +#: lib/depends.c:2005 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2062 +#: lib/depends.c:2057 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2091 +#: lib/depends.c:2086 msgid "========== continuing tsort ...\n" msgstr "" #: lib/formats.c:28 lib/formats.c:54 lib/formats.c:85 lib/formats.c:128 -#: lib/header.c:2621 lib/header.c:2642 lib/header.c:2664 +#: lib/header.c:2623 lib/header.c:2644 lib/header.c:2666 msgid "(not a number)" msgstr "" @@ -2192,7 +2192,7 @@ msgstr "" msgid "getting list of mounted filesystems\n" msgstr "" -#: lib/fs.c:153 rpmio/url.c:477 +#: lib/fs.c:153 rpmio/url.c:475 #, c-format msgid "failed to open %s: %s\n" msgstr "" @@ -2202,46 +2202,46 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:290 +#: lib/fsm.c:288 msgid "========= Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:292 +#: lib/fsm.c:290 #, c-format msgid "%9d %s\n" msgstr "" -#: lib/fsm.c:1130 +#: lib/fsm.c:1124 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1407 +#: lib/fsm.c:1401 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1526 lib/fsm.c:1651 +#: lib/fsm.c:1520 lib/fsm.c:1645 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1677 +#: lib/fsm.c:1671 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1683 +#: lib/fsm.c:1677 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1693 +#: lib/fsm.c:1687 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1712 +#: lib/fsm.c:1706 #, c-format msgid "%s created as %s\n" msgstr "" @@ -2257,77 +2257,77 @@ msgid "Data type %d not supported\n" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1930 +#: lib/header.c:1932 #, c-format msgid "missing { after %" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1960 +#: lib/header.c:1962 msgid "missing } after %{" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1974 +#: lib/header.c:1976 msgid "empty tag format" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1988 +#: lib/header.c:1990 msgid "empty tag name" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2005 +#: lib/header.c:2007 msgid "unknown tag" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2032 +#: lib/header.c:2034 msgid "] expected at end of array" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2050 +#: lib/header.c:2052 msgid "unexpected ]" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2054 +#: lib/header.c:2056 msgid "unexpected }" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2120 +#: lib/header.c:2122 msgid "? expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2129 +#: lib/header.c:2131 msgid "{ expected after ? in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2142 lib/header.c:2184 +#: lib/header.c:2144 lib/header.c:2186 msgid "} expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2152 +#: lib/header.c:2154 msgid ": expected following ? subexpression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2169 +#: lib/header.c:2171 msgid "{ expected after : in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2194 +#: lib/header.c:2196 msgid "| expected at end of expression" msgstr "" -#: lib/header.c:2381 +#: lib/header.c:2383 msgid "(unknown type)" msgstr "" @@ -2905,7 +2905,7 @@ msgid "can't query %s: %s\n" msgstr "" #: lib/query.c:576 lib/query.c:610 lib/rpminstall.c:309 lib/rpminstall.c:453 -#: lib/rpminstall.c:826 +#: lib/rpminstall.c:824 #, c-format msgid "open of %s failed: %s\n" msgstr "" @@ -3042,27 +3042,27 @@ msgstr "" msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:437 +#: lib/rpmchecksig.c:431 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:438 lib/rpmchecksig.c:452 +#: lib/rpmchecksig.c:432 lib/rpmchecksig.c:446 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:440 lib/rpmchecksig.c:454 +#: lib/rpmchecksig.c:434 lib/rpmchecksig.c:448 msgid ") " msgstr "" -#: lib/rpmchecksig.c:441 lib/rpmchecksig.c:455 +#: lib/rpmchecksig.c:435 lib/rpmchecksig.c:449 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:443 lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 lib/rpmchecksig.c:451 msgid ")" msgstr "" -#: lib/rpmchecksig.c:451 +#: lib/rpmchecksig.c:445 msgid "OK" msgstr "" @@ -3111,7 +3111,7 @@ msgstr "" msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:445 lib/rpminstall.c:686 +#: lib/rpminstall.c:445 lib/rpminstall.c:684 #, c-format msgid "%s cannot be installed\n" msgstr "" @@ -3158,7 +3158,7 @@ msgstr "" msgid "Installing %s\n" msgstr "" -#: lib/rpmlead.c:49 +#: lib/rpmlead.c:47 #, c-format msgid "read failed: %s (%d)\n" msgstr "" @@ -3173,88 +3173,88 @@ msgstr "" msgid "missing architecture name at %s:%d\n" msgstr "" -#: lib/rpmrc.c:325 +#: lib/rpmrc.c:328 #, c-format msgid "Incomplete data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:330 +#: lib/rpmrc.c:333 #, c-format msgid "Too many args in data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:338 +#: lib/rpmrc.c:341 #, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "" -#: lib/rpmrc.c:378 +#: lib/rpmrc.c:384 #, c-format msgid "Incomplete default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:383 +#: lib/rpmrc.c:389 #, c-format msgid "Too many args in default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:585 +#: lib/rpmrc.c:591 #, c-format msgid "Cannot expand %s\n" msgstr "" -#: lib/rpmrc.c:590 +#: lib/rpmrc.c:596 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "" -#: lib/rpmrc.c:607 +#: lib/rpmrc.c:613 #, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "" #. XXX Feof(fd) -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:660 #, c-format msgid "Failed to read %s: %s.\n" msgstr "" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:697 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "" -#: lib/rpmrc.c:708 lib/rpmrc.c:782 +#: lib/rpmrc.c:714 lib/rpmrc.c:788 #, c-format msgid "missing argument for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:725 lib/rpmrc.c:747 +#: lib/rpmrc.c:731 lib/rpmrc.c:753 #, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "" -#: lib/rpmrc.c:734 +#: lib/rpmrc.c:740 #, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "" -#: lib/rpmrc.c:774 +#: lib/rpmrc.c:780 #, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:841 +#: lib/rpmrc.c:847 #, c-format msgid "bad option '%s' at %s:%d\n" msgstr "" -#: lib/rpmrc.c:1436 +#: lib/rpmrc.c:1442 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1437 +#: lib/rpmrc.c:1443 msgid "Please contact rpm-list@redhat.com\n" msgstr "" @@ -3284,141 +3284,141 @@ msgstr "" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:230 +#: lib/signature.c:228 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:290 +#: lib/signature.c:288 #, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "" -#: lib/signature.c:303 +#: lib/signature.c:301 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:310 +#: lib/signature.c:308 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:315 +#: lib/signature.c:313 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:328 lib/signature.c:410 +#: lib/signature.c:326 lib/signature.c:408 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:333 +#: lib/signature.c:331 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:372 lib/signature.c:760 +#: lib/signature.c:370 lib/signature.c:758 msgid "Couldn't exec gpg\n" msgstr "" -#: lib/signature.c:385 +#: lib/signature.c:383 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:392 +#: lib/signature.c:390 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:397 +#: lib/signature.c:395 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:415 +#: lib/signature.c:413 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:443 +#: lib/signature.c:441 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:449 +#: lib/signature.c:447 msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:532 lib/signature.c:607 +#: lib/signature.c:530 lib/signature.c:605 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" -#: lib/signature.c:697 +#: lib/signature.c:695 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" -#: lib/signature.c:789 +#: lib/signature.c:787 msgid "Couldn't exec pgp\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:793 lib/signature.c:846 +#: lib/signature.c:791 lib/signature.c:844 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:826 +#: lib/signature.c:824 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:838 +#: lib/signature.c:836 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/transaction.c:446 +#: lib/transaction.c:447 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:450 +#: lib/transaction.c:451 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/transaction.c:453 +#: lib/transaction.c:454 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/transaction.c:523 +#: lib/transaction.c:524 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/transaction.c:586 +#: lib/transaction.c:587 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/transaction.c:596 +#: lib/transaction.c:597 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:674 +#: lib/transaction.c:675 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:808 +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1406 +#: lib/transaction.c:1407 #, c-format msgid "excluding directory %s\n" msgstr "" @@ -3613,125 +3613,125 @@ msgstr "" msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:842 +#: rpmdb/rpmdb.c:846 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:973 +#: rpmdb/rpmdb.c:977 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1206 +#: rpmdb/rpmdb.c:1210 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:1940 rpmdb/rpmdb.c:3122 +#: rpmdb/rpmdb.c:1944 rpmdb/rpmdb.c:3126 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:1991 +#: rpmdb/rpmdb.c:1995 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2256 +#: rpmdb/rpmdb.c:2260 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2325 +#: rpmdb/rpmdb.c:2329 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2334 +#: rpmdb/rpmdb.c:2338 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2529 +#: rpmdb/rpmdb.c:2533 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2607 +#: rpmdb/rpmdb.c:2611 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2618 +#: rpmdb/rpmdb.c:2622 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3011 +#: rpmdb/rpmdb.c:3015 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3041 +#: rpmdb/rpmdb.c:3045 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3068 +#: rpmdb/rpmdb.c:3072 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3072 +#: rpmdb/rpmdb.c:3076 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3078 +#: rpmdb/rpmdb.c:3082 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3080 +#: rpmdb/rpmdb.c:3084 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3087 +#: rpmdb/rpmdb.c:3091 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3098 +#: rpmdb/rpmdb.c:3102 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3162 +#: rpmdb/rpmdb.c:3166 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3180 +#: rpmdb/rpmdb.c:3184 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3188 +#: rpmdb/rpmdb.c:3192 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3190 +#: rpmdb/rpmdb.c:3194 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3200 +#: rpmdb/rpmdb.c:3204 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3202 +#: rpmdb/rpmdb.c:3206 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" @@ -3827,59 +3827,59 @@ msgstr "" msgid "File %s is smaller than %u bytes\n" msgstr "" -#: rpmio/rpmio.c:599 +#: rpmio/rpmio.c:588 msgid "Success" msgstr "" -#: rpmio/rpmio.c:602 +#: rpmio/rpmio.c:591 msgid "Bad server response" msgstr "" -#: rpmio/rpmio.c:605 +#: rpmio/rpmio.c:594 msgid "Server I/O error" msgstr "" -#: rpmio/rpmio.c:608 +#: rpmio/rpmio.c:597 msgid "Server timeout" msgstr "" -#: rpmio/rpmio.c:611 +#: rpmio/rpmio.c:600 msgid "Unable to lookup server host address" msgstr "" -#: rpmio/rpmio.c:614 +#: rpmio/rpmio.c:603 msgid "Unable to lookup server host name" msgstr "" -#: rpmio/rpmio.c:617 +#: rpmio/rpmio.c:606 msgid "Failed to connect to server" msgstr "" -#: rpmio/rpmio.c:620 +#: rpmio/rpmio.c:609 msgid "Failed to establish data connection to server" msgstr "" -#: rpmio/rpmio.c:623 +#: rpmio/rpmio.c:612 msgid "I/O error to local file" msgstr "" -#: rpmio/rpmio.c:626 +#: rpmio/rpmio.c:615 msgid "Error setting remote server to passive mode" msgstr "" -#: rpmio/rpmio.c:629 +#: rpmio/rpmio.c:618 msgid "File not found on server" msgstr "" -#: rpmio/rpmio.c:632 +#: rpmio/rpmio.c:621 msgid "Abort in progress" msgstr "" -#: rpmio/rpmio.c:636 +#: rpmio/rpmio.c:625 msgid "Unknown or unexpected error" msgstr "" -#: rpmio/rpmio.c:1259 +#: rpmio/rpmio.c:1252 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" @@ -3889,7 +3889,7 @@ msgid "(no error)" msgstr "" #. @-readonlytrans@ -#. FIX: double indeirection. +#. FIX: double indirection. #. @observer@ #: rpmio/rpmlog.c:114 rpmio/rpmlog.c:115 rpmio/rpmlog.c:116 msgid "fatal error: " @@ -3910,37 +3910,37 @@ msgstr "" msgid "memory alloc (%u bytes) returned NULL.\n" msgstr "" -#: rpmio/url.c:103 +#: rpmio/url.c:101 #, c-format msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:123 +#: rpmio/url.c:121 #, c-format msgid "warning: u %p data %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:151 +#: rpmio/url.c:149 #, c-format msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" msgstr "" -#: rpmio/url.c:244 +#: rpmio/url.c:242 #, c-format msgid "Password for %s@%s: " msgstr "" -#: rpmio/url.c:269 rpmio/url.c:295 +#: rpmio/url.c:267 rpmio/url.c:293 #, c-format msgid "error: %sport must be a number\n" msgstr "" -#: rpmio/url.c:434 +#: rpmio/url.c:432 msgid "url port must be a number\n" msgstr "" #. XXX Fstrerror -#: rpmio/url.c:497 +#: rpmio/url.c:495 #, c-format msgid "failed to create %s: %s\n" msgstr "" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-09-21 11:01-0400\n" +"POT-Creation-Date: 2001-09-24 20:14-0400\n" "PO-Revision-Date: 2001-07-12 13:25+0000\n" "Last-Translator: Richard Allen <ra@hp.is>\n" "Language-Team: is <kde-isl@mmedia.is>\n" @@ -1070,15 +1070,15 @@ msgstr "" msgid "exec failed\n" msgstr "" -#: rpm.c:1116 rpmqv.c:1103 +#: rpm.c:1116 rpmqv.c:1104 msgid "unexpected arguments to --querytags " msgstr "" -#: rpm.c:1127 rpmqv.c:1112 +#: rpm.c:1127 rpmqv.c:1113 msgid "no packages given for signature check" msgstr "" -#: rpm.c:1138 rpmqv.c:1121 +#: rpm.c:1138 rpmqv.c:1122 msgid "no packages given for signing" msgstr "" @@ -1090,19 +1090,19 @@ msgstr "" msgid "no packages given for install" msgstr "" -#: rpm.c:1267 rpmqv.c:1066 +#: rpm.c:1267 rpmqv.c:1067 msgid "extra arguments given for query of all packages" msgstr "" -#: rpm.c:1272 rpmqv.c:1075 +#: rpm.c:1272 rpmqv.c:1076 msgid "no arguments given for query" msgstr "" -#: rpm.c:1289 rpmqv.c:1091 +#: rpm.c:1289 rpmqv.c:1092 msgid "extra arguments given for verify of all packages" msgstr "" -#: rpm.c:1293 rpmqv.c:1095 +#: rpm.c:1293 rpmqv.c:1096 msgid "no arguments given for verify" msgstr "" @@ -1715,17 +1715,17 @@ msgstr "" msgid "line %d: Error parsing %%description: %s\n" msgstr "" -#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:192 +#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:190 #, c-format msgid "line %d: Bad option %s: %s\n" msgstr "lína %d: Óleyfilegur rofi %s: %s\n" -#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:204 +#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:202 #, c-format msgid "line %d: Too many names: %s\n" msgstr "" -#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:213 +#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:211 #, c-format msgid "line %d: Package does not exist: %s\n" msgstr "" @@ -1955,22 +1955,22 @@ msgstr "" msgid "line %d: Version required: %s\n" msgstr "" -#: build/parseScript.c:158 +#: build/parseScript.c:156 #, c-format msgid "line %d: triggers must have --: %s\n" msgstr "" -#: build/parseScript.c:168 build/parseScript.c:229 +#: build/parseScript.c:166 build/parseScript.c:227 #, c-format msgid "line %d: Error parsing %s: %s\n" msgstr "lína %d: Villa viđ ţáttun %s: %s\n" -#: build/parseScript.c:179 +#: build/parseScript.c:177 #, c-format msgid "line %d: script program must begin with '/': %s\n" msgstr "" -#: build/parseScript.c:221 +#: build/parseScript.c:219 #, c-format msgid "line %d: Second %s\n" msgstr "" @@ -2011,11 +2011,11 @@ msgstr "" msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:508 +#: build/parseSpec.c:509 msgid "No compatible architectures found for build\n" msgstr "" -#: build/parseSpec.c:563 +#: build/parseSpec.c:564 #, c-format msgid "Package has no %%description: %s\n" msgstr "" @@ -2089,106 +2089,106 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "YES" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "NO " msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1015 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1131 +#: lib/depends.c:1126 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1222 +#: lib/depends.c:1217 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "" -#: lib/depends.c:1251 +#: lib/depends.c:1246 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1268 +#: lib/depends.c:1263 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "" -#: lib/depends.c:1292 +#: lib/depends.c:1287 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1305 +#: lib/depends.c:1300 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1319 +#: lib/depends.c:1314 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "" -#: lib/depends.c:1335 +#: lib/depends.c:1330 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1356 +#: lib/depends.c:1351 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1428 +#: lib/depends.c:1423 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1507 +#: lib/depends.c:1502 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:1753 +#: lib/depends.c:1748 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1902 +#: lib/depends.c:1897 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1960 +#: lib/depends.c:1955 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2010 +#: lib/depends.c:2005 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2062 +#: lib/depends.c:2057 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2091 +#: lib/depends.c:2086 msgid "========== continuing tsort ...\n" msgstr "" #: lib/formats.c:28 lib/formats.c:54 lib/formats.c:85 lib/formats.c:128 -#: lib/header.c:2621 lib/header.c:2642 lib/header.c:2664 +#: lib/header.c:2623 lib/header.c:2644 lib/header.c:2666 msgid "(not a number)" msgstr "" @@ -2211,7 +2211,7 @@ msgstr "gat ekki skođađ %s: %s\n" msgid "getting list of mounted filesystems\n" msgstr "" -#: lib/fs.c:153 rpmio/url.c:477 +#: lib/fs.c:153 rpmio/url.c:475 #, c-format msgid "failed to open %s: %s\n" msgstr "gat ekki opnađ %s: %s\n" @@ -2221,46 +2221,46 @@ msgstr "gat ekki opnađ %s: %s\n" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:290 +#: lib/fsm.c:288 msgid "========= Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:292 +#: lib/fsm.c:290 #, c-format msgid "%9d %s\n" msgstr "%9d %s\n" -#: lib/fsm.c:1130 +#: lib/fsm.c:1124 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1407 +#: lib/fsm.c:1401 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1526 lib/fsm.c:1651 +#: lib/fsm.c:1520 lib/fsm.c:1645 #, c-format msgid "%s saved as %s\n" msgstr "%s vistađ sem %s\n" -#: lib/fsm.c:1677 +#: lib/fsm.c:1671 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1683 +#: lib/fsm.c:1677 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s rmdir %s brást: %s\n" -#: lib/fsm.c:1693 +#: lib/fsm.c:1687 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s gat ekki eytt %s: %s\n" -#: lib/fsm.c:1712 +#: lib/fsm.c:1706 #, c-format msgid "%s created as %s\n" msgstr "%s búiđ til sem %s\n" @@ -2276,77 +2276,77 @@ msgid "Data type %d not supported\n" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1930 +#: lib/header.c:1932 #, c-format msgid "missing { after %" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1960 +#: lib/header.c:1962 msgid "missing } after %{" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1974 +#: lib/header.c:1976 msgid "empty tag format" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1988 +#: lib/header.c:1990 msgid "empty tag name" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2005 +#: lib/header.c:2007 msgid "unknown tag" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2032 +#: lib/header.c:2034 msgid "] expected at end of array" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2050 +#: lib/header.c:2052 msgid "unexpected ]" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2054 +#: lib/header.c:2056 msgid "unexpected }" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2120 +#: lib/header.c:2122 msgid "? expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2129 +#: lib/header.c:2131 msgid "{ expected after ? in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2142 lib/header.c:2184 +#: lib/header.c:2144 lib/header.c:2186 msgid "} expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2152 +#: lib/header.c:2154 msgid ": expected following ? subexpression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2169 +#: lib/header.c:2171 msgid "{ expected after : in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2194 +#: lib/header.c:2196 msgid "| expected at end of expression" msgstr "" -#: lib/header.c:2381 +#: lib/header.c:2383 msgid "(unknown type)" msgstr "" @@ -2925,7 +2925,7 @@ msgid "can't query %s: %s\n" msgstr "" #: lib/query.c:576 lib/query.c:610 lib/rpminstall.c:309 lib/rpminstall.c:453 -#: lib/rpminstall.c:826 +#: lib/rpminstall.c:824 #, c-format msgid "open of %s failed: %s\n" msgstr "" @@ -3062,27 +3062,27 @@ msgstr "" msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:437 +#: lib/rpmchecksig.c:431 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:438 lib/rpmchecksig.c:452 +#: lib/rpmchecksig.c:432 lib/rpmchecksig.c:446 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:440 lib/rpmchecksig.c:454 +#: lib/rpmchecksig.c:434 lib/rpmchecksig.c:448 msgid ") " msgstr "" -#: lib/rpmchecksig.c:441 lib/rpmchecksig.c:455 +#: lib/rpmchecksig.c:435 lib/rpmchecksig.c:449 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:443 lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 lib/rpmchecksig.c:451 msgid ")" msgstr "" -#: lib/rpmchecksig.c:451 +#: lib/rpmchecksig.c:445 msgid "OK" msgstr "" @@ -3131,7 +3131,7 @@ msgstr "" msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:445 lib/rpminstall.c:686 +#: lib/rpminstall.c:445 lib/rpminstall.c:684 #, c-format msgid "%s cannot be installed\n" msgstr "" @@ -3178,7 +3178,7 @@ msgstr "" msgid "Installing %s\n" msgstr "" -#: lib/rpmlead.c:49 +#: lib/rpmlead.c:47 #, c-format msgid "read failed: %s (%d)\n" msgstr "" @@ -3193,88 +3193,88 @@ msgstr "vantar seinni ':' á %s:%d\n" msgid "missing architecture name at %s:%d\n" msgstr "" -#: lib/rpmrc.c:325 +#: lib/rpmrc.c:328 #, c-format msgid "Incomplete data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:330 +#: lib/rpmrc.c:333 #, c-format msgid "Too many args in data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:338 +#: lib/rpmrc.c:341 #, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "" -#: lib/rpmrc.c:378 +#: lib/rpmrc.c:384 #, c-format msgid "Incomplete default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:383 +#: lib/rpmrc.c:389 #, c-format msgid "Too many args in default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:585 +#: lib/rpmrc.c:591 #, c-format msgid "Cannot expand %s\n" msgstr "" -#: lib/rpmrc.c:590 +#: lib/rpmrc.c:596 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "" -#: lib/rpmrc.c:607 +#: lib/rpmrc.c:613 #, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "Get ekki opnađ %s til lesturs: %s.\n" #. XXX Feof(fd) -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:660 #, c-format msgid "Failed to read %s: %s.\n" msgstr "Get ekki lesiđ %s: %s.\n" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:697 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "" -#: lib/rpmrc.c:708 lib/rpmrc.c:782 +#: lib/rpmrc.c:714 lib/rpmrc.c:788 #, c-format msgid "missing argument for %s at %s:%d\n" msgstr "viđfang vantar fyrir %s á %s:%d\n" -#: lib/rpmrc.c:725 lib/rpmrc.c:747 +#: lib/rpmrc.c:731 lib/rpmrc.c:753 #, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "" -#: lib/rpmrc.c:734 +#: lib/rpmrc.c:740 #, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "get ekki opnađ %s á %s:%d: %s\n" -#: lib/rpmrc.c:774 +#: lib/rpmrc.c:780 #, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:841 +#: lib/rpmrc.c:847 #, c-format msgid "bad option '%s' at %s:%d\n" msgstr "ólöglegur rofi '%s' á %s:%d\n" -#: lib/rpmrc.c:1436 +#: lib/rpmrc.c:1442 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1437 +#: lib/rpmrc.c:1443 msgid "Please contact rpm-list@redhat.com\n" msgstr "" @@ -3304,141 +3304,141 @@ msgstr "" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:230 +#: lib/signature.c:228 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:290 +#: lib/signature.c:288 #, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "Gat ekki keyrt pgp (%s)\n" -#: lib/signature.c:303 +#: lib/signature.c:301 msgid "pgp failed\n" msgstr "pgp brást\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:310 +#: lib/signature.c:308 msgid "pgp failed to write signature\n" msgstr "pgp gat ekki lesiđ undirskriftina\n" -#: lib/signature.c:315 +#: lib/signature.c:313 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:328 lib/signature.c:410 +#: lib/signature.c:326 lib/signature.c:408 msgid "unable to read the signature\n" msgstr "get ekki lesiđ undirskriftina\n" -#: lib/signature.c:333 +#: lib/signature.c:331 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:372 lib/signature.c:760 +#: lib/signature.c:370 lib/signature.c:758 msgid "Couldn't exec gpg\n" msgstr "Gat ekki keyrt gpg\n" -#: lib/signature.c:385 +#: lib/signature.c:383 msgid "gpg failed\n" msgstr "ggp brást\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:392 +#: lib/signature.c:390 msgid "gpg failed to write signature\n" msgstr "gpg get ekki lesiđ undirskriftina\n" -#: lib/signature.c:397 +#: lib/signature.c:395 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:415 +#: lib/signature.c:413 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:443 +#: lib/signature.c:441 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:449 +#: lib/signature.c:447 msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:532 lib/signature.c:607 +#: lib/signature.c:530 lib/signature.c:605 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" -#: lib/signature.c:697 +#: lib/signature.c:695 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" -#: lib/signature.c:789 +#: lib/signature.c:787 msgid "Couldn't exec pgp\n" msgstr "Gat ekki keyrt pgp\n" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:793 lib/signature.c:846 +#: lib/signature.c:791 lib/signature.c:844 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:826 +#: lib/signature.c:824 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:838 +#: lib/signature.c:836 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/transaction.c:446 +#: lib/transaction.c:447 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:450 +#: lib/transaction.c:451 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/transaction.c:453 +#: lib/transaction.c:454 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "%5d fćra %s -> %s\n" -#: lib/transaction.c:523 +#: lib/transaction.c:524 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/transaction.c:586 +#: lib/transaction.c:587 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/transaction.c:596 +#: lib/transaction.c:597 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:674 +#: lib/transaction.c:675 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:808 +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1406 +#: lib/transaction.c:1407 #, c-format msgid "excluding directory %s\n" msgstr "" @@ -3633,125 +3633,125 @@ msgstr "" msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:842 +#: rpmdb/rpmdb.c:846 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:973 +#: rpmdb/rpmdb.c:977 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1206 +#: rpmdb/rpmdb.c:1210 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:1940 rpmdb/rpmdb.c:3122 +#: rpmdb/rpmdb.c:1944 rpmdb/rpmdb.c:3126 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:1991 +#: rpmdb/rpmdb.c:1995 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2256 +#: rpmdb/rpmdb.c:2260 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2325 +#: rpmdb/rpmdb.c:2329 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2334 +#: rpmdb/rpmdb.c:2338 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2529 +#: rpmdb/rpmdb.c:2533 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2607 +#: rpmdb/rpmdb.c:2611 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2618 +#: rpmdb/rpmdb.c:2622 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3011 +#: rpmdb/rpmdb.c:3015 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3041 +#: rpmdb/rpmdb.c:3045 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3068 +#: rpmdb/rpmdb.c:3072 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3072 +#: rpmdb/rpmdb.c:3076 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3078 +#: rpmdb/rpmdb.c:3082 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3080 +#: rpmdb/rpmdb.c:3084 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3087 +#: rpmdb/rpmdb.c:3091 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3098 +#: rpmdb/rpmdb.c:3102 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3162 +#: rpmdb/rpmdb.c:3166 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3180 +#: rpmdb/rpmdb.c:3184 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3188 +#: rpmdb/rpmdb.c:3192 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3190 +#: rpmdb/rpmdb.c:3194 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3200 +#: rpmdb/rpmdb.c:3204 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3202 +#: rpmdb/rpmdb.c:3206 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" @@ -3847,59 +3847,59 @@ msgstr "Skrá %s: %s\n" msgid "File %s is smaller than %u bytes\n" msgstr "Skráin %s er minni en %u bćti\n" -#: rpmio/rpmio.c:599 +#: rpmio/rpmio.c:588 msgid "Success" msgstr "Tókst" -#: rpmio/rpmio.c:602 +#: rpmio/rpmio.c:591 msgid "Bad server response" msgstr "Ţjónninn svarađi rangt" -#: rpmio/rpmio.c:605 +#: rpmio/rpmio.c:594 msgid "Server I/O error" msgstr "Les/ritvilla á ţjóninum" -#: rpmio/rpmio.c:608 +#: rpmio/rpmio.c:597 msgid "Server timeout" msgstr "Ţjónninn tímađi út" -#: rpmio/rpmio.c:611 +#: rpmio/rpmio.c:600 msgid "Unable to lookup server host address" msgstr "Gat ekki flett upp vistfangi ţjónsins" -#: rpmio/rpmio.c:614 +#: rpmio/rpmio.c:603 msgid "Unable to lookup server host name" msgstr "Gat ekki flett upp heiti ţjónsins" -#: rpmio/rpmio.c:617 +#: rpmio/rpmio.c:606 msgid "Failed to connect to server" msgstr "Gat ekki tengst ţjóninum" -#: rpmio/rpmio.c:620 +#: rpmio/rpmio.c:609 msgid "Failed to establish data connection to server" msgstr "Gat ekki opnađ gagnatengingu viđ ţjóninn" -#: rpmio/rpmio.c:623 +#: rpmio/rpmio.c:612 msgid "I/O error to local file" msgstr "Les/ritvilla í skrána" -#: rpmio/rpmio.c:626 +#: rpmio/rpmio.c:615 msgid "Error setting remote server to passive mode" msgstr "Ekki tókst ađ fá ţjóninn í \"passive\" ham" -#: rpmio/rpmio.c:629 +#: rpmio/rpmio.c:618 msgid "File not found on server" msgstr "Skráin fannst ekki á ţjóninum" -#: rpmio/rpmio.c:632 +#: rpmio/rpmio.c:621 msgid "Abort in progress" msgstr "Er ađ hćtta viđ" -#: rpmio/rpmio.c:636 +#: rpmio/rpmio.c:625 msgid "Unknown or unexpected error" msgstr "Óţekkt eđa óvćnt villa" -#: rpmio/rpmio.c:1259 +#: rpmio/rpmio.c:1252 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "tengist %s sem %s međ ađgangsorđi %s\n" @@ -3909,7 +3909,7 @@ msgid "(no error)" msgstr "(engin villa)" #. @-readonlytrans@ -#. FIX: double indeirection. +#. FIX: double indirection. #. @observer@ #: rpmio/rpmlog.c:114 rpmio/rpmlog.c:115 rpmio/rpmlog.c:116 msgid "fatal error: " @@ -3930,37 +3930,37 @@ msgstr "ađvörun: " msgid "memory alloc (%u bytes) returned NULL.\n" msgstr "minnisfrátekt (%u bćta) skilađi NULL.\n" -#: rpmio/url.c:103 +#: rpmio/url.c:101 #, c-format msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n" msgstr "ađvörun: u %p ctrl %p nrefs != 0 (%s %s)\n" -#: rpmio/url.c:123 +#: rpmio/url.c:121 #, c-format msgid "warning: u %p data %p nrefs != 0 (%s %s)\n" msgstr "ađvörun: u %p data %p nrefs != 0 (%s %s)\n" -#: rpmio/url.c:151 +#: rpmio/url.c:149 #, c-format msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" msgstr "ađvörun: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" -#: rpmio/url.c:244 +#: rpmio/url.c:242 #, c-format msgid "Password for %s@%s: " msgstr "Lykilorđ fyrir %s@%s: " -#: rpmio/url.c:269 rpmio/url.c:295 +#: rpmio/url.c:267 rpmio/url.c:293 #, c-format msgid "error: %sport must be a number\n" msgstr "villa: %sport verđur ađ vera tala\n" -#: rpmio/url.c:434 +#: rpmio/url.c:432 msgid "url port must be a number\n" msgstr "gátt slóđar verđur ađ vera tala\n" #. XXX Fstrerror -#: rpmio/url.c:497 +#: rpmio/url.c:495 #, c-format msgid "failed to create %s: %s\n" msgstr "gat ekki búiđ til %s: %s\n" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-09-21 11:01-0400\n" +"POT-Creation-Date: 2001-09-24 20:14-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -1055,15 +1055,15 @@ msgstr "" msgid "exec failed\n" msgstr "" -#: rpm.c:1116 rpmqv.c:1103 +#: rpm.c:1116 rpmqv.c:1104 msgid "unexpected arguments to --querytags " msgstr "" -#: rpm.c:1127 rpmqv.c:1112 +#: rpm.c:1127 rpmqv.c:1113 msgid "no packages given for signature check" msgstr "" -#: rpm.c:1138 rpmqv.c:1121 +#: rpm.c:1138 rpmqv.c:1122 msgid "no packages given for signing" msgstr "" @@ -1075,19 +1075,19 @@ msgstr "" msgid "no packages given for install" msgstr "" -#: rpm.c:1267 rpmqv.c:1066 +#: rpm.c:1267 rpmqv.c:1067 msgid "extra arguments given for query of all packages" msgstr "" -#: rpm.c:1272 rpmqv.c:1075 +#: rpm.c:1272 rpmqv.c:1076 msgid "no arguments given for query" msgstr "" -#: rpm.c:1289 rpmqv.c:1091 +#: rpm.c:1289 rpmqv.c:1092 msgid "extra arguments given for verify of all packages" msgstr "" -#: rpm.c:1293 rpmqv.c:1095 +#: rpm.c:1293 rpmqv.c:1096 msgid "no arguments given for verify" msgstr "" @@ -1696,17 +1696,17 @@ msgstr "" msgid "line %d: Error parsing %%description: %s\n" msgstr "" -#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:192 +#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:190 #, c-format msgid "line %d: Bad option %s: %s\n" msgstr "" -#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:204 +#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:202 #, c-format msgid "line %d: Too many names: %s\n" msgstr "" -#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:213 +#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:211 #, c-format msgid "line %d: Package does not exist: %s\n" msgstr "" @@ -1936,22 +1936,22 @@ msgstr "" msgid "line %d: Version required: %s\n" msgstr "" -#: build/parseScript.c:158 +#: build/parseScript.c:156 #, c-format msgid "line %d: triggers must have --: %s\n" msgstr "" -#: build/parseScript.c:168 build/parseScript.c:229 +#: build/parseScript.c:166 build/parseScript.c:227 #, c-format msgid "line %d: Error parsing %s: %s\n" msgstr "" -#: build/parseScript.c:179 +#: build/parseScript.c:177 #, c-format msgid "line %d: script program must begin with '/': %s\n" msgstr "" -#: build/parseScript.c:221 +#: build/parseScript.c:219 #, c-format msgid "line %d: Second %s\n" msgstr "" @@ -1992,11 +1992,11 @@ msgstr "" msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:508 +#: build/parseSpec.c:509 msgid "No compatible architectures found for build\n" msgstr "" -#: build/parseSpec.c:563 +#: build/parseSpec.c:564 #, c-format msgid "Package has no %%description: %s\n" msgstr "" @@ -2070,106 +2070,106 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "YES" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "NO " msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1015 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1131 +#: lib/depends.c:1126 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1222 +#: lib/depends.c:1217 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "" -#: lib/depends.c:1251 +#: lib/depends.c:1246 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1268 +#: lib/depends.c:1263 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "" -#: lib/depends.c:1292 +#: lib/depends.c:1287 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1305 +#: lib/depends.c:1300 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1319 +#: lib/depends.c:1314 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "" -#: lib/depends.c:1335 +#: lib/depends.c:1330 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1356 +#: lib/depends.c:1351 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1428 +#: lib/depends.c:1423 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1507 +#: lib/depends.c:1502 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:1753 +#: lib/depends.c:1748 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1902 +#: lib/depends.c:1897 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1960 +#: lib/depends.c:1955 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2010 +#: lib/depends.c:2005 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2062 +#: lib/depends.c:2057 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2091 +#: lib/depends.c:2086 msgid "========== continuing tsort ...\n" msgstr "" #: lib/formats.c:28 lib/formats.c:54 lib/formats.c:85 lib/formats.c:128 -#: lib/header.c:2621 lib/header.c:2642 lib/header.c:2664 +#: lib/header.c:2623 lib/header.c:2644 lib/header.c:2666 msgid "(not a number)" msgstr "" @@ -2192,7 +2192,7 @@ msgstr "" msgid "getting list of mounted filesystems\n" msgstr "" -#: lib/fs.c:153 rpmio/url.c:477 +#: lib/fs.c:153 rpmio/url.c:475 #, c-format msgid "failed to open %s: %s\n" msgstr "" @@ -2202,46 +2202,46 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:290 +#: lib/fsm.c:288 msgid "========= Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:292 +#: lib/fsm.c:290 #, c-format msgid "%9d %s\n" msgstr "" -#: lib/fsm.c:1130 +#: lib/fsm.c:1124 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1407 +#: lib/fsm.c:1401 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1526 lib/fsm.c:1651 +#: lib/fsm.c:1520 lib/fsm.c:1645 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1677 +#: lib/fsm.c:1671 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1683 +#: lib/fsm.c:1677 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1693 +#: lib/fsm.c:1687 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1712 +#: lib/fsm.c:1706 #, c-format msgid "%s created as %s\n" msgstr "" @@ -2257,77 +2257,77 @@ msgid "Data type %d not supported\n" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1930 +#: lib/header.c:1932 #, c-format msgid "missing { after %" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1960 +#: lib/header.c:1962 msgid "missing } after %{" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1974 +#: lib/header.c:1976 msgid "empty tag format" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1988 +#: lib/header.c:1990 msgid "empty tag name" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2005 +#: lib/header.c:2007 msgid "unknown tag" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2032 +#: lib/header.c:2034 msgid "] expected at end of array" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2050 +#: lib/header.c:2052 msgid "unexpected ]" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2054 +#: lib/header.c:2056 msgid "unexpected }" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2120 +#: lib/header.c:2122 msgid "? expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2129 +#: lib/header.c:2131 msgid "{ expected after ? in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2142 lib/header.c:2184 +#: lib/header.c:2144 lib/header.c:2186 msgid "} expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2152 +#: lib/header.c:2154 msgid ": expected following ? subexpression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2169 +#: lib/header.c:2171 msgid "{ expected after : in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2194 +#: lib/header.c:2196 msgid "| expected at end of expression" msgstr "" -#: lib/header.c:2381 +#: lib/header.c:2383 msgid "(unknown type)" msgstr "" @@ -2905,7 +2905,7 @@ msgid "can't query %s: %s\n" msgstr "" #: lib/query.c:576 lib/query.c:610 lib/rpminstall.c:309 lib/rpminstall.c:453 -#: lib/rpminstall.c:826 +#: lib/rpminstall.c:824 #, c-format msgid "open of %s failed: %s\n" msgstr "" @@ -3042,27 +3042,27 @@ msgstr "" msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:437 +#: lib/rpmchecksig.c:431 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:438 lib/rpmchecksig.c:452 +#: lib/rpmchecksig.c:432 lib/rpmchecksig.c:446 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:440 lib/rpmchecksig.c:454 +#: lib/rpmchecksig.c:434 lib/rpmchecksig.c:448 msgid ") " msgstr "" -#: lib/rpmchecksig.c:441 lib/rpmchecksig.c:455 +#: lib/rpmchecksig.c:435 lib/rpmchecksig.c:449 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:443 lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 lib/rpmchecksig.c:451 msgid ")" msgstr "" -#: lib/rpmchecksig.c:451 +#: lib/rpmchecksig.c:445 msgid "OK" msgstr "" @@ -3111,7 +3111,7 @@ msgstr "" msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:445 lib/rpminstall.c:686 +#: lib/rpminstall.c:445 lib/rpminstall.c:684 #, c-format msgid "%s cannot be installed\n" msgstr "" @@ -3158,7 +3158,7 @@ msgstr "" msgid "Installing %s\n" msgstr "" -#: lib/rpmlead.c:49 +#: lib/rpmlead.c:47 #, c-format msgid "read failed: %s (%d)\n" msgstr "" @@ -3173,88 +3173,88 @@ msgstr "" msgid "missing architecture name at %s:%d\n" msgstr "" -#: lib/rpmrc.c:325 +#: lib/rpmrc.c:328 #, c-format msgid "Incomplete data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:330 +#: lib/rpmrc.c:333 #, c-format msgid "Too many args in data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:338 +#: lib/rpmrc.c:341 #, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "" -#: lib/rpmrc.c:378 +#: lib/rpmrc.c:384 #, c-format msgid "Incomplete default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:383 +#: lib/rpmrc.c:389 #, c-format msgid "Too many args in default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:585 +#: lib/rpmrc.c:591 #, c-format msgid "Cannot expand %s\n" msgstr "" -#: lib/rpmrc.c:590 +#: lib/rpmrc.c:596 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "" -#: lib/rpmrc.c:607 +#: lib/rpmrc.c:613 #, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "" #. XXX Feof(fd) -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:660 #, c-format msgid "Failed to read %s: %s.\n" msgstr "" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:697 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "" -#: lib/rpmrc.c:708 lib/rpmrc.c:782 +#: lib/rpmrc.c:714 lib/rpmrc.c:788 #, c-format msgid "missing argument for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:725 lib/rpmrc.c:747 +#: lib/rpmrc.c:731 lib/rpmrc.c:753 #, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "" -#: lib/rpmrc.c:734 +#: lib/rpmrc.c:740 #, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "" -#: lib/rpmrc.c:774 +#: lib/rpmrc.c:780 #, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:841 +#: lib/rpmrc.c:847 #, c-format msgid "bad option '%s' at %s:%d\n" msgstr "" -#: lib/rpmrc.c:1436 +#: lib/rpmrc.c:1442 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1437 +#: lib/rpmrc.c:1443 msgid "Please contact rpm-list@redhat.com\n" msgstr "" @@ -3284,141 +3284,141 @@ msgstr "" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:230 +#: lib/signature.c:228 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:290 +#: lib/signature.c:288 #, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "" -#: lib/signature.c:303 +#: lib/signature.c:301 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:310 +#: lib/signature.c:308 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:315 +#: lib/signature.c:313 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:328 lib/signature.c:410 +#: lib/signature.c:326 lib/signature.c:408 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:333 +#: lib/signature.c:331 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:372 lib/signature.c:760 +#: lib/signature.c:370 lib/signature.c:758 msgid "Couldn't exec gpg\n" msgstr "" -#: lib/signature.c:385 +#: lib/signature.c:383 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:392 +#: lib/signature.c:390 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:397 +#: lib/signature.c:395 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:415 +#: lib/signature.c:413 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:443 +#: lib/signature.c:441 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:449 +#: lib/signature.c:447 msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:532 lib/signature.c:607 +#: lib/signature.c:530 lib/signature.c:605 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" -#: lib/signature.c:697 +#: lib/signature.c:695 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" -#: lib/signature.c:789 +#: lib/signature.c:787 msgid "Couldn't exec pgp\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:793 lib/signature.c:846 +#: lib/signature.c:791 lib/signature.c:844 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:826 +#: lib/signature.c:824 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:838 +#: lib/signature.c:836 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/transaction.c:446 +#: lib/transaction.c:447 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:450 +#: lib/transaction.c:451 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/transaction.c:453 +#: lib/transaction.c:454 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/transaction.c:523 +#: lib/transaction.c:524 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/transaction.c:586 +#: lib/transaction.c:587 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/transaction.c:596 +#: lib/transaction.c:597 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:674 +#: lib/transaction.c:675 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:808 +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1406 +#: lib/transaction.c:1407 #, c-format msgid "excluding directory %s\n" msgstr "" @@ -3613,125 +3613,125 @@ msgstr "" msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:842 +#: rpmdb/rpmdb.c:846 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:973 +#: rpmdb/rpmdb.c:977 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1206 +#: rpmdb/rpmdb.c:1210 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:1940 rpmdb/rpmdb.c:3122 +#: rpmdb/rpmdb.c:1944 rpmdb/rpmdb.c:3126 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:1991 +#: rpmdb/rpmdb.c:1995 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2256 +#: rpmdb/rpmdb.c:2260 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2325 +#: rpmdb/rpmdb.c:2329 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2334 +#: rpmdb/rpmdb.c:2338 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2529 +#: rpmdb/rpmdb.c:2533 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2607 +#: rpmdb/rpmdb.c:2611 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2618 +#: rpmdb/rpmdb.c:2622 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3011 +#: rpmdb/rpmdb.c:3015 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3041 +#: rpmdb/rpmdb.c:3045 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3068 +#: rpmdb/rpmdb.c:3072 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3072 +#: rpmdb/rpmdb.c:3076 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3078 +#: rpmdb/rpmdb.c:3082 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3080 +#: rpmdb/rpmdb.c:3084 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3087 +#: rpmdb/rpmdb.c:3091 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3098 +#: rpmdb/rpmdb.c:3102 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3162 +#: rpmdb/rpmdb.c:3166 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3180 +#: rpmdb/rpmdb.c:3184 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3188 +#: rpmdb/rpmdb.c:3192 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3190 +#: rpmdb/rpmdb.c:3194 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3200 +#: rpmdb/rpmdb.c:3204 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3202 +#: rpmdb/rpmdb.c:3206 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" @@ -3827,59 +3827,59 @@ msgstr "" msgid "File %s is smaller than %u bytes\n" msgstr "" -#: rpmio/rpmio.c:599 +#: rpmio/rpmio.c:588 msgid "Success" msgstr "" -#: rpmio/rpmio.c:602 +#: rpmio/rpmio.c:591 msgid "Bad server response" msgstr "" -#: rpmio/rpmio.c:605 +#: rpmio/rpmio.c:594 msgid "Server I/O error" msgstr "" -#: rpmio/rpmio.c:608 +#: rpmio/rpmio.c:597 msgid "Server timeout" msgstr "" -#: rpmio/rpmio.c:611 +#: rpmio/rpmio.c:600 msgid "Unable to lookup server host address" msgstr "" -#: rpmio/rpmio.c:614 +#: rpmio/rpmio.c:603 msgid "Unable to lookup server host name" msgstr "" -#: rpmio/rpmio.c:617 +#: rpmio/rpmio.c:606 msgid "Failed to connect to server" msgstr "" -#: rpmio/rpmio.c:620 +#: rpmio/rpmio.c:609 msgid "Failed to establish data connection to server" msgstr "" -#: rpmio/rpmio.c:623 +#: rpmio/rpmio.c:612 msgid "I/O error to local file" msgstr "" -#: rpmio/rpmio.c:626 +#: rpmio/rpmio.c:615 msgid "Error setting remote server to passive mode" msgstr "" -#: rpmio/rpmio.c:629 +#: rpmio/rpmio.c:618 msgid "File not found on server" msgstr "" -#: rpmio/rpmio.c:632 +#: rpmio/rpmio.c:621 msgid "Abort in progress" msgstr "" -#: rpmio/rpmio.c:636 +#: rpmio/rpmio.c:625 msgid "Unknown or unexpected error" msgstr "" -#: rpmio/rpmio.c:1259 +#: rpmio/rpmio.c:1252 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" @@ -3889,7 +3889,7 @@ msgid "(no error)" msgstr "" #. @-readonlytrans@ -#. FIX: double indeirection. +#. FIX: double indirection. #. @observer@ #: rpmio/rpmlog.c:114 rpmio/rpmlog.c:115 rpmio/rpmlog.c:116 msgid "fatal error: " @@ -3910,37 +3910,37 @@ msgstr "" msgid "memory alloc (%u bytes) returned NULL.\n" msgstr "" -#: rpmio/url.c:103 +#: rpmio/url.c:101 #, c-format msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:123 +#: rpmio/url.c:121 #, c-format msgid "warning: u %p data %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:151 +#: rpmio/url.c:149 #, c-format msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" msgstr "" -#: rpmio/url.c:244 +#: rpmio/url.c:242 #, c-format msgid "Password for %s@%s: " msgstr "" -#: rpmio/url.c:269 rpmio/url.c:295 +#: rpmio/url.c:267 rpmio/url.c:293 #, c-format msgid "error: %sport must be a number\n" msgstr "" -#: rpmio/url.c:434 +#: rpmio/url.c:432 msgid "url port must be a number\n" msgstr "" #. XXX Fstrerror -#: rpmio/url.c:497 +#: rpmio/url.c:495 #, c-format msgid "failed to create %s: %s\n" msgstr "" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-09-21 11:01-0400\n" +"POT-Creation-Date: 2001-09-24 20:14-0400\n" "PO-Revision-Date: 1999-12-01 22:49 +JST\n" "Last-Translator: Kanda Mitsuru <kanda@nn.iij4u.or.jp>\n" "Language-Team: JRPM <jrpm@linux.or.jp>\n" @@ -88,7 +88,7 @@ msgstr "ĽżĄźĽ˛ĽĂĽČ %s ÍѤ˺îŔŽĂć\n" # build root [BuildRoot] # net share [ĽÍĽĂĽČśŚÍ] # reloate [şĆÇŰĂÖ/°ÜĆ°¤š¤ë] -# $Id: ja.po,v 1.166 2001/09/21 15:07:14 jbj Exp $ +# $Id: ja.po,v 1.167 2001/09/25 03:03:26 jbj Exp $ #: rpm.c:227 #, c-format msgid "rpm: %s\n" @@ -1152,15 +1152,15 @@ msgstr "--sign ¤ĎĽŃĽĂĽąĄźĽ¸şîŔŽťţ¤Î¤ßťČÍѤǤ¤Ţ¤š" msgid "exec failed\n" msgstr "źÂšÔźşÇÔ\n" -#: rpm.c:1116 rpmqv.c:1103 +#: rpm.c:1116 rpmqv.c:1104 msgid "unexpected arguments to --querytags " msgstr "--querytags ¤Î°úżô¤Ź´Ö°ă¤Ă¤Ć¤¤¤Ţ¤š" -#: rpm.c:1127 rpmqv.c:1112 +#: rpm.c:1127 rpmqv.c:1113 msgid "no packages given for signature check" msgstr "˝đĚž¸Ąşş¤Î¤ż¤á¤ÎĽŃĽĂĽąĄźĽ¸¤Ź¤˘¤ę¤Ţ¤ť¤ó" -#: rpm.c:1138 rpmqv.c:1121 +#: rpm.c:1138 rpmqv.c:1122 msgid "no packages given for signing" msgstr "˝đĚž¤Î¤ż¤á¤ÎĽŃĽĂĽąĄźĽ¸¤Ź¤˘¤ę¤Ţ¤ť¤ó" @@ -1172,20 +1172,20 @@ msgstr "Ľ˘ĽóĽ¤ĽóĽšĽČĄźĽë¤Î¤ż¤á¤ÎĽŃĽĂĽąĄźĽ¸¤Ź¤˘¤ę¤Ţ¤ť¤ó" msgid "no packages given for install" msgstr "Ľ¤ĽóĽšĽČĄźĽë¤Î¤ż¤á¤ÎĽŃĽĂĽąĄźĽ¸¤Ź¤˘¤ę¤Ţ¤ť¤ó" -#: rpm.c:1267 rpmqv.c:1066 +#: rpm.c:1267 rpmqv.c:1067 msgid "extra arguments given for query of all packages" msgstr "Á´ĽŃĽĂĽąĄźĽ¸¤ÎĚ䤤šç¤ď¤ť¤Î¤ż¤á¤Ë͞ʏ¤Ę°úżô¤Ź¤˘¤ę¤Ţ¤š" -#: rpm.c:1272 rpmqv.c:1075 +#: rpm.c:1272 rpmqv.c:1076 msgid "no arguments given for query" msgstr "Ě䤤šç¤ď¤ť¤Î¤ż¤á¤Î°úżô¤Ź¤˘¤ę¤Ţ¤ť¤ó" -#: rpm.c:1289 rpmqv.c:1091 +#: rpm.c:1289 rpmqv.c:1092 #, fuzzy msgid "extra arguments given for verify of all packages" msgstr "Á´ĽŃĽĂĽąĄźĽ¸¤Î¸ĄžÚ¤Î¤ż¤á¤Ë͞ʏ¤Ę°úżô¤Ź¤˘¤ę¤Ţ¤š" -#: rpm.c:1293 rpmqv.c:1095 +#: rpm.c:1293 rpmqv.c:1096 msgid "no arguments given for verify" msgstr "¸ĄžÚ¤Î¤ż¤á¤Î°úżô¤Ź¤˘¤ę¤Ţ¤ť¤ó" @@ -1818,17 +1818,17 @@ msgstr "%%changelog Ăć¤ËŔâĚŔ¤Ź¤˘¤ę¤Ţ¤ť¤ó" msgid "line %d: Error parsing %%description: %s\n" msgstr "%d šÔĚÜ: %%description ¤Î˛ňŔĎĽ¨ĽéĄź: %s" -#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:192 +#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:190 #, fuzzy, c-format msgid "line %d: Bad option %s: %s\n" msgstr "%d šÔĚÜ: ÉÔŔľ¤ĘĽŞĽ×ĽˇĽçĽó %s:%s" -#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:204 +#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:202 #, fuzzy, c-format msgid "line %d: Too many names: %s\n" msgstr "%d šÔĚÜ: ĚžÁ°¤ŹÂż¤š¤Ž¤Ţ¤š: %s" -#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:213 +#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:211 #, fuzzy, c-format msgid "line %d: Package does not exist: %s\n" msgstr "%d šÔĚÜ: ĽŃĽĂĽąĄźĽ¸¤ŹÂ¸şß¤ˇ¤Ţ¤ť¤ó: %s" @@ -2061,22 +2061,22 @@ msgstr "%d šÔĚÜ: ĽĐĄźĽ¸ĽçĽóÉŐ¤ą¤ľ¤ě¤żĽŐĽĄĽ¤ĽëĚž¤Ďľö˛Ä¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó: %s" msgid "line %d: Version required: %s\n" msgstr "%d šÔĚÜ: ĽĐĄźĽ¸ĽçĽó¤ŹÉŹÍפǤš: %s" -#: build/parseScript.c:158 +#: build/parseScript.c:156 #, fuzzy, c-format msgid "line %d: triggers must have --: %s\n" msgstr "%d šÔĚÜ: ĽČĽęĽŹĄź¤Ď -- ¤Ź¤Ę¤ą¤ě¤Đ¤Ę¤ę¤Ţ¤ť¤ó: %s" -#: build/parseScript.c:168 build/parseScript.c:229 +#: build/parseScript.c:166 build/parseScript.c:227 #, fuzzy, c-format msgid "line %d: Error parsing %s: %s\n" msgstr "%d šÔĚÜ: %s ¤Îš˝Ę¸˛ňŔĎĽ¨ĽéĄź: %s" -#: build/parseScript.c:179 +#: build/parseScript.c:177 #, fuzzy, c-format msgid "line %d: script program must begin with '/': %s\n" msgstr "%d šÔĚÜ: ĽšĽŻĽęĽ×ĽČĽ×ĽíĽ°ĽéĽŕ¤Ď '/' ¤ÇťĎ¤Ţ¤é¤Ę¤ą¤ě¤Đ¤Ę¤ę¤Ţ¤ť¤ó: %s" -#: build/parseScript.c:221 +#: build/parseScript.c:219 #, fuzzy, c-format msgid "line %d: Second %s\n" msgstr "%d šÔĚÜ: 2ČÖĚܤΠ%s" @@ -2117,12 +2117,12 @@ msgstr "%s:%d: if ¤Ź¤Ę¤¤¤Î¤Ë %%endif ¤Ź¤˘¤ę¤Ţ¤š" msgid "malformed %%include statement\n" msgstr "¤Ş¤Ť¤ˇ¤Ę %%include ĽšĽĆĄźĽČĽáĽóĽČ¤Ç¤š" -#: build/parseSpec.c:508 +#: build/parseSpec.c:509 #, fuzzy msgid "No compatible architectures found for build\n" msgstr "şîŔŽ(build)˛ÄÇ˝¤ĘĽ˘ĄźĽĽĆĽŻĽÁĽă¤Ď¤˘¤ę¤Ţ¤ť¤ó" -#: build/parseSpec.c:563 +#: build/parseSpec.c:564 #, fuzzy, c-format msgid "Package has no %%description: %s\n" msgstr "ĽŃĽĂĽąĄźĽ¸¤Ë¤Ď %%description ¤Ź¤˘¤ę¤Ţ¤ť¤ó: %s" @@ -2202,106 +2202,106 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "YES" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "NO " msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1015 #, fuzzy, c-format msgid "%s: %-45s YES (added files)\n" msgstr "%s: %s ¤ĎĽŐĽĄĽ¤ĽëĽęĽšĽČ¤Ë˛Ă¤¨¤ë¤ł¤Č¤Ë¤č¤Ă¤ĆËţ¤ľ¤ě¤Ţ¤šĄŁ\n" -#: lib/depends.c:1131 +#: lib/depends.c:1126 #, fuzzy, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "%s: %s ¤Ď provide ¤Ë˛Ă¤¨¤ë¤ł¤Č¤Ë¤č¤Ă¤ĆËţ¤ľ¤ě¤Ţ¤šĄŁ\n" -#: lib/depends.c:1222 +#: lib/depends.c:1217 #, fuzzy, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "%s: %s ¤Ď db ĽŃĽĂĽąĄźĽ¸¤Ë¤č¤Ă¤ĆËţ¤ľ¤ě¤Ć¤¤¤Ţ¤šĄŁ\n" -#: lib/depends.c:1251 +#: lib/depends.c:1246 #, fuzzy, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "%s: %s ¤Ď rpmrc ¤ŹÄ󜥤š¤ë¤ł¤Č¤Ë¤č¤Ă¤ĆËţ¤ľ¤ě¤Ţ¤šĄŁ\n" -#: lib/depends.c:1268 +#: lib/depends.c:1263 #, fuzzy, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "%s: %s ¤Ď rpmrc ¤ŹÄ󜥤š¤ë¤ł¤Č¤Ë¤č¤Ă¤ĆËţ¤ľ¤ě¤Ţ¤šĄŁ\n" -#: lib/depends.c:1292 +#: lib/depends.c:1287 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1305 +#: lib/depends.c:1300 #, fuzzy, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "%s: %s ¤Ď db ¤ŹÄ󜥤š¤ë¤ł¤Č¤Ë¤č¤Ă¤ĆËţ¤ľ¤ě¤Ţ¤šĄŁ\n" -#: lib/depends.c:1319 +#: lib/depends.c:1314 #, fuzzy, c-format msgid "%s: %-45s YES (db package)\n" msgstr "%s: %s ¤Ď db ĽŃĽĂĽąĄźĽ¸¤Ë¤č¤Ă¤ĆËţ¤ľ¤ě¤Ć¤¤¤Ţ¤šĄŁ\n" -#: lib/depends.c:1335 +#: lib/depends.c:1330 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1356 +#: lib/depends.c:1351 #, fuzzy, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "%s: %s ¤ĎĽŃĽĂĽąĄźĽ¸¤Ë˛Ă¤¨¤ë¤ł¤Č¤Ë¤č¤Ă¤ĆËţ¤ľ¤ě¤Ţ¤šĄŁ\n" #. requirements are not satisfied. -#: lib/depends.c:1428 +#: lib/depends.c:1423 #, fuzzy, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "ĽŃĽĂĽąĄźĽ¸ %s ¤Ď require ¤ŹËţ¤ż¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó: %s\n" #. conflicts exist. -#: lib/depends.c:1507 +#: lib/depends.c:1502 #, c-format msgid "package %s conflicts: %s\n" msgstr "%s ¤ČśĽšç¤š¤ëĽŃĽĂĽąĄźĽ¸¤Ź¤˘¤ę¤Ţ¤š: %s\n" -#: lib/depends.c:1753 +#: lib/depends.c:1748 #, fuzzy, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "group Ľ¤ĽóĽÇĽĂĽŻĽš¤ňşď˝ü¤ˇ¤Ţ¤š\n" #. Record all relations. -#: lib/depends.c:1902 +#: lib/depends.c:1897 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1960 +#: lib/depends.c:1955 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2010 +#: lib/depends.c:2005 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2062 +#: lib/depends.c:2057 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2091 +#: lib/depends.c:2086 msgid "========== continuing tsort ...\n" msgstr "" #: lib/formats.c:28 lib/formats.c:54 lib/formats.c:85 lib/formats.c:128 -#: lib/header.c:2621 lib/header.c:2642 lib/header.c:2664 +#: lib/header.c:2623 lib/header.c:2644 lib/header.c:2666 msgid "(not a number)" msgstr "(żôťú¤Ç¤Ď¤˘¤ę¤Ţ¤ť¤ó)" @@ -2324,7 +2324,7 @@ msgstr "stat %s ¤ËźşÇÔ: %s" msgid "getting list of mounted filesystems\n" msgstr "ĽŢĽŚĽóĽČ¤ľ¤ě¤żĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕ¤ÎĽęĽšĽČ¤ňźčĆŔ¤ˇ¤Ć¤¤¤Ţ¤š\n" -#: lib/fs.c:153 rpmio/url.c:477 +#: lib/fs.c:153 rpmio/url.c:475 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "%s ¤ÎĽŞĄźĽ×Ľó¤ËźşÇÔ: %s" @@ -2334,46 +2334,46 @@ msgstr "%s ¤ÎĽŞĄźĽ×Ľó¤ËźşÇÔ: %s" msgid "file %s is on an unknown device\n" msgstr "ĽŐĽĄĽ¤Ľë %s ¤ĎÉÔĚŔ¤ĘĽÇĽĐĽ¤Ľš¤Ç¤š" -#: lib/fsm.c:290 +#: lib/fsm.c:288 msgid "========= Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:292 +#: lib/fsm.c:290 #, fuzzy, c-format msgid "%9d %s\n" msgstr "%d šÔĚÜ: %s" -#: lib/fsm.c:1130 +#: lib/fsm.c:1124 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1407 +#: lib/fsm.c:1401 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1526 lib/fsm.c:1651 +#: lib/fsm.c:1520 lib/fsm.c:1645 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "ˇŮšđ: %s ¤Ď %s ¤Č¤ˇ¤ĆĘݸ¤ľ¤ě¤Ţ¤š" -#: lib/fsm.c:1677 +#: lib/fsm.c:1671 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "%s ¤ňşď˝ü¤Ç¤¤Ţ¤ť¤ó - ĽÇĽŁĽěĽŻĽČĽę¤Źśő¤Ç¤˘¤ę¤Ţ¤ť¤ó" -#: lib/fsm.c:1683 +#: lib/fsm.c:1677 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s ¤Î rmdir ¤ËźşÇÔ: %s" -#: lib/fsm.c:1693 +#: lib/fsm.c:1687 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s ¤ÎĽŞĄźĽ×Ľó¤ËźşÇÔ: %s\n" -#: lib/fsm.c:1712 +#: lib/fsm.c:1706 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "ˇŮšđ: %s ¤Ď %s ¤Č¤ˇ¤ĆşîŔŽ¤ľ¤ě¤Ţ¤š" @@ -2390,77 +2390,77 @@ msgid "Data type %d not supported\n" msgstr "ĽÇĄźĽżĽżĽ¤Ľ× %d ¤ĎĽľĽÝĄźĽČ¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó\n" #. @-observertrans -readonlytrans@ -#: lib/header.c:1930 +#: lib/header.c:1932 #, c-format msgid "missing { after %" msgstr "% ¤Î¸ĺ¤Ë { ¤Ź¤˘¤ę¤Ţ¤ť¤ó" #. @-observertrans -readonlytrans@ -#: lib/header.c:1960 +#: lib/header.c:1962 msgid "missing } after %{" msgstr "%{ ¤Î¸ĺ¤Ë } ¤Ź¤˘¤ę¤Ţ¤ť¤ó" #. @-observertrans -readonlytrans@ -#: lib/header.c:1974 +#: lib/header.c:1976 msgid "empty tag format" msgstr "śő¤ÎĽżĽ°ĽŐĽŠĄźĽŢĽĂĽČ" #. @-observertrans -readonlytrans@ -#: lib/header.c:1988 +#: lib/header.c:1990 msgid "empty tag name" msgstr "śő¤ÎĽżĽ°Ěž" #. @-observertrans -readonlytrans@ -#: lib/header.c:2005 +#: lib/header.c:2007 msgid "unknown tag" msgstr "ÉÔĚŔ¤ĘĽżĽ°" #. @-observertrans -readonlytrans@ -#: lib/header.c:2032 +#: lib/header.c:2034 msgid "] expected at end of array" msgstr "ÇŰÎó¤Î¸ĺ¤Ë ] ¤Ź´üÂÔ¤ľ¤ě¤Ţ¤š" #. @-observertrans -readonlytrans@ -#: lib/header.c:2050 +#: lib/header.c:2052 msgid "unexpected ]" msgstr "Í˝´ü¤ť¤Ě ]" #. @-observertrans -readonlytrans@ -#: lib/header.c:2054 +#: lib/header.c:2056 msgid "unexpected }" msgstr "Í˝´ü¤ť¤Ě }" #. @-observertrans -readonlytrans@ -#: lib/header.c:2120 +#: lib/header.c:2122 msgid "? expected in expression" msgstr "ź°Ăć¤Ç ? ¤Ź´üÂÔ¤ľ¤ě¤Ţ¤š" #. @-observertrans -readonlytrans@ -#: lib/header.c:2129 +#: lib/header.c:2131 msgid "{ expected after ? in expression" msgstr "ź°Ăć¤Ç ? ¤Î¸ĺ¤Ë { ¤Ź´üÂÔ¤ľ¤ě¤Ţ¤š" #. @-observertrans -readonlytrans@ -#: lib/header.c:2142 lib/header.c:2184 +#: lib/header.c:2144 lib/header.c:2186 msgid "} expected in expression" msgstr "ź°Ăć¤Ë } ¤Ź´üÂÔ¤ľ¤ě¤Ţ¤š" #. @-observertrans -readonlytrans@ -#: lib/header.c:2152 +#: lib/header.c:2154 msgid ": expected following ? subexpression" msgstr "°Ę˛ź¤Î ? ĽľĽÖź°¤Î ¤Ë: ¤Ź´üÂÔ¤ľ¤ě¤Ţ¤š" #. @-observertrans -readonlytrans@ -#: lib/header.c:2169 +#: lib/header.c:2171 msgid "{ expected after : in expression" msgstr "ź°Ăć¤Ç : ¤Î¸ĺ¤Ë { ¤Ź´üÂÔ¤ľ¤ě¤Ţ¤š" #. @-observertrans -readonlytrans@ -#: lib/header.c:2194 +#: lib/header.c:2196 msgid "| expected at end of expression" msgstr "ź°¤Î˝Ş¤ę¤Ë | ¤Ź´üÂÔ¤ľ¤ě¤Ţ¤š" -#: lib/header.c:2381 +#: lib/header.c:2383 msgid "(unknown type)" msgstr "(ÉÔĚŔ¤ĘĽżĽ¤Ľ×)" @@ -3113,7 +3113,7 @@ msgid "can't query %s: %s\n" msgstr "%s ¤ňşď˝ü(unlink)¤Ç¤¤Ţ¤ť¤ó: %s\n" #: lib/query.c:576 lib/query.c:610 lib/rpminstall.c:309 lib/rpminstall.c:453 -#: lib/rpminstall.c:826 +#: lib/rpminstall.c:824 #, c-format msgid "open of %s failed: %s\n" msgstr "%s ¤ÎĽŞĄźĽ×Ľó¤ËźşÇÔ: %s\n" @@ -3252,28 +3252,28 @@ msgstr "%s: rpmWriteSignature ¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤ż\n" msgid "%s: No signature available (v1.0 RPM)\n" msgstr "%s: ͸ú¤Ę˝đĚž¤Ď¤˘¤ę¤Ţ¤ť¤ó(v1.0 RPM)\n" -#: lib/rpmchecksig.c:437 +#: lib/rpmchecksig.c:431 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:438 lib/rpmchecksig.c:452 +#: lib/rpmchecksig.c:432 lib/rpmchecksig.c:446 #, fuzzy msgid " (MISSING KEYS:" msgstr " (ĽĄź¤ÎĘśźş) " -#: lib/rpmchecksig.c:440 lib/rpmchecksig.c:454 +#: lib/rpmchecksig.c:434 lib/rpmchecksig.c:448 msgid ") " msgstr "" -#: lib/rpmchecksig.c:441 lib/rpmchecksig.c:455 +#: lib/rpmchecksig.c:435 lib/rpmchecksig.c:449 msgid " (UNTRUSTED KEYS:" msgstr " (żŽÍę¤Ç¤¤Ę¤¤¸°:" -#: lib/rpmchecksig.c:443 lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 lib/rpmchecksig.c:451 msgid ")" msgstr "" -#: lib/rpmchecksig.c:451 +#: lib/rpmchecksig.c:445 msgid "OK" msgstr "" @@ -3323,7 +3323,7 @@ msgstr "ĽŐĽĄĽ¤Ľë %s ¤Ť¤é¤ÎĆɤߚţ¤ßĽ¨ĽéĄź " msgid "file %s requires a newer version of RPM\n" msgstr "ĽŐĽĄĽ¤Ľë %s ¤Ë¤Ď¤č¤ężˇ¤ˇ¤¤ RPM ¤ÎĽĐĄźĽ¸ĽçĽó¤ŹÉŹÍפǤš\n" -#: lib/rpminstall.c:445 lib/rpminstall.c:686 +#: lib/rpminstall.c:445 lib/rpminstall.c:684 #, fuzzy, c-format msgid "%s cannot be installed\n" msgstr "%s ¤ňĽ¤ĽóĽšĽČĄźĽë¤Ç¤¤Ţ¤ť¤ó\n" @@ -3370,7 +3370,7 @@ msgstr "%s ¤ňĽŞĄźĽ×Ľó¤Ç¤¤Ţ¤ť¤ó\n" msgid "Installing %s\n" msgstr "%s ¤ňĽ¤ĽóĽšĽČĄźĽëĂć\n" -#: lib/rpmlead.c:49 +#: lib/rpmlead.c:47 #, fuzzy, c-format msgid "read failed: %s (%d)\n" msgstr "Ćɤߚţ¤ß¤ÎźşÇÔ: %s (%d)" @@ -3385,88 +3385,88 @@ msgstr "2ČÖĚܤΠ':' ¤Ź¤˘¤ę¤Ţ¤ť¤ó(%s:%d ¤Ç)" msgid "missing architecture name at %s:%d\n" msgstr "%s:%d ¤ËĽ˘ĄźĽĽĆĽŻĽÁĽăĚž¤Ź¤˘¤ę¤Ţ¤ť¤ó" -#: lib/rpmrc.c:325 +#: lib/rpmrc.c:328 #, fuzzy, c-format msgid "Incomplete data line at %s:%d\n" msgstr "%s:%d ¤ÇĽÇĄźĽżšÔ¤ŹÉÔ´°Á´¤Ç¤š" -#: lib/rpmrc.c:330 +#: lib/rpmrc.c:333 #, fuzzy, c-format msgid "Too many args in data line at %s:%d\n" msgstr "%s:%d ¤ÇĽÇĄźĽżšÔ¤Ë°úżô¤ŹÂż¤š¤Ž¤Ţ¤š" -#: lib/rpmrc.c:338 +#: lib/rpmrc.c:341 #, fuzzy, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "ÉÔŔľ¤Ę arch/os ČÖšć: %s (%s:%d)" -#: lib/rpmrc.c:378 +#: lib/rpmrc.c:384 #, fuzzy, c-format msgid "Incomplete default line at %s:%d\n" msgstr "%s:%d ¤ÇÉÔ´°Á´¤ĘĽÇĽŐĽŠĽëĽČšÔ" -#: lib/rpmrc.c:383 +#: lib/rpmrc.c:389 #, fuzzy, c-format msgid "Too many args in default line at %s:%d\n" msgstr "%s:%d ¤ÇĽÇĽŐĽŠĽëĽČšÔ¤Ď°úżô¤ŹÂż¤š¤Ž¤Ţ¤š" -#: lib/rpmrc.c:585 +#: lib/rpmrc.c:591 #, fuzzy, c-format msgid "Cannot expand %s\n" msgstr "żÄĽ¤Ç¤¤Ţ¤ť¤ó %s" -#: lib/rpmrc.c:590 +#: lib/rpmrc.c:596 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "" -#: lib/rpmrc.c:607 +#: lib/rpmrc.c:613 #, fuzzy, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "Ćɤߚţ¤ŕ¤ż¤á¤Ë %s ¤ňĽŞĄźĽ×Ľó¤Ç¤¤Ţ¤ť¤ó: %sĄŁ" #. XXX Feof(fd) -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:660 #, fuzzy, c-format msgid "Failed to read %s: %s.\n" msgstr "%s ¤ňĆɤŕ¤Î¤ËźşÇÔ: $sĄŁ" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:697 #, fuzzy, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "%s:%d ¤Ç ':' ¤Ź¤˘¤ę¤Ţ¤ť¤ó" -#: lib/rpmrc.c:708 lib/rpmrc.c:782 +#: lib/rpmrc.c:714 lib/rpmrc.c:788 #, fuzzy, c-format msgid "missing argument for %s at %s:%d\n" msgstr "%s ¤Î°úżô¤Ź¤˘¤ę¤Ţ¤ť¤ó %s:%d" -#: lib/rpmrc.c:725 lib/rpmrc.c:747 +#: lib/rpmrc.c:731 lib/rpmrc.c:753 #, fuzzy, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "%s ¤ÎżÄĽźşÇÔ %s:%d \"%s\"" -#: lib/rpmrc.c:734 +#: lib/rpmrc.c:740 #, fuzzy, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "%s ¤ňĽŞĄźĽ×Ľó¤Ç¤¤Ţ¤ť¤ó %s:%d" -#: lib/rpmrc.c:774 +#: lib/rpmrc.c:780 #, fuzzy, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "%s ÍѤμ˘ĄźĽĽĆĽŻĽÁĽă¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤ó %s:%d" -#: lib/rpmrc.c:841 +#: lib/rpmrc.c:847 #, fuzzy, c-format msgid "bad option '%s' at %s:%d\n" msgstr "'%s' ¤ÎÉÔŔľ¤ĘĽŞĄźĽ×Ľó %s:%d" -#: lib/rpmrc.c:1436 +#: lib/rpmrc.c:1442 #, c-format msgid "Unknown system: %s\n" msgstr "ÉÔĚŔ¤ĘĽˇĽšĽĆĽŕ: %s\n" -#: lib/rpmrc.c:1437 +#: lib/rpmrc.c:1443 msgid "Please contact rpm-list@redhat.com\n" msgstr "rpm-list@redhat.com ¤ËϢÍí¤ň˛ź¤ľ¤¤\n" @@ -3498,156 +3498,156 @@ msgstr "¸Ĺ¤¤ PGP ˝đĚž\n" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "¸Ĺ¤¤(ĆâÉô¤Ŕ¤ą¤Î)˝đĚž! ¤É¤Ś¤ä¤Ă¤Ć¤˝¤ě¤ňźę¤Ë¤¤¤ě¤Ţ¤ˇ¤ż¤Ť!?" -#: lib/signature.c:230 +#: lib/signature.c:228 #, fuzzy, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "˝đĚžĽľĽ¤Ľş: %d\n" -#: lib/signature.c:290 +#: lib/signature.c:288 #, fuzzy, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "pgp ¤ňźÂšÔ¤Ç¤¤Ţ¤ť¤ó(%s)" -#: lib/signature.c:303 +#: lib/signature.c:301 #, fuzzy msgid "pgp failed\n" msgstr "pgp źşÇÔ" #. PGP failed to write signature #. Just in case -#: lib/signature.c:310 +#: lib/signature.c:308 #, fuzzy msgid "pgp failed to write signature\n" msgstr "pgp ¤Ź˝đĚž¤ň˝ń¤šţ¤ŕ¤Î¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤ż" -#: lib/signature.c:315 +#: lib/signature.c:313 #, c-format msgid "PGP sig size: %d\n" msgstr "PGP ˝đĚžĽľĽ¤Ľş: %s\n" -#: lib/signature.c:328 lib/signature.c:410 +#: lib/signature.c:326 lib/signature.c:408 #, fuzzy msgid "unable to read the signature\n" msgstr "˝đĚž¤ňĆɤळ¤Č¤Ź¤Ç¤¤Ţ¤ť¤ó" -#: lib/signature.c:333 +#: lib/signature.c:331 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "PGP ˝đĚž¤Î %d ĽĐĽ¤ĽČ¤ňźčĆŔ\n" -#: lib/signature.c:372 lib/signature.c:760 +#: lib/signature.c:370 lib/signature.c:758 #, fuzzy msgid "Couldn't exec gpg\n" msgstr "gpg ¤ňźÂšÔ¤Ç¤¤Ţ¤ť¤ó" -#: lib/signature.c:385 +#: lib/signature.c:383 #, fuzzy msgid "gpg failed\n" msgstr "gpg źşÇÔ" #. GPG failed to write signature #. Just in case -#: lib/signature.c:392 +#: lib/signature.c:390 #, fuzzy msgid "gpg failed to write signature\n" msgstr "gpg ¤Ź˝đĚž¤ň˝ń¤šţ¤ŕ¤Î¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤ż" -#: lib/signature.c:397 +#: lib/signature.c:395 #, fuzzy, c-format msgid "GPG sig size: %d\n" msgstr "GPG ˝đĚžĽľĽ¤Ľş: %s\n" -#: lib/signature.c:415 +#: lib/signature.c:413 #, fuzzy, c-format msgid "Got %d bytes of GPG sig\n" msgstr "GPG ˝đĚž¤Î %d ĽĐĽ¤ĽČ¤ňźčĆŔ\n" -#: lib/signature.c:443 +#: lib/signature.c:441 #, fuzzy msgid "Generating signature using PGP.\n" msgstr "PGP ¤ňťČÍѤˇ¤Ć˝đĚž¤ÎŔ¸ŔŽĂć\n" -#: lib/signature.c:449 +#: lib/signature.c:447 #, fuzzy msgid "Generating signature using GPG.\n" msgstr "GPG ¤ňťČÍѤˇ¤Ć˝đĚž¤ÎŔ¸ŔŽĂć\n" -#: lib/signature.c:532 lib/signature.c:607 +#: lib/signature.c:530 lib/signature.c:605 #, fuzzy msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" "pgp ¤ňźÂšÔ¤Ç¤¤Ţ¤ť¤ó¤Ç¤ˇ¤żĄŁ\n" "PGP ĽÁĽ§ĽĂĽŻ¤ňĽšĽĽĂĽ×¤š¤ë¤ż¤á¤Ë --nopgp ¤ňťČÍѤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ" -#: lib/signature.c:697 +#: lib/signature.c:695 #, fuzzy msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" "gpg ¤ňźÂšÔ¤Ç¤¤Ţ¤ť¤ó¤Ç¤ˇ¤żĄŁ\n" "GPG ĽÁĽ§ĽĂĽŻ¤ňĽšĽĽĂĽ×¤š¤ë¤ż¤á¤Ë --nogpg ¤ňťČÍѤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ" -#: lib/signature.c:789 +#: lib/signature.c:787 #, fuzzy msgid "Couldn't exec pgp\n" msgstr "pgp ¤ňźÂšÔ¤Ç¤¤Ţ¤ť¤ó" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:793 lib/signature.c:846 +#: lib/signature.c:791 lib/signature.c:844 #, fuzzy, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "ĽŢĽŻĽíĽŐĽĄĽ¤ĽëĂć¤ÎĚľ¸ú¤Ę %%_signature ĄŁ\n" -#: lib/signature.c:826 +#: lib/signature.c:824 #, fuzzy, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "ĽŢĽŻĽíĽŐĽĄĽ¤Ľë¤Ë \"%%_pgp_name\" ¤ňŔßÄꤡ¤Ę¤ą¤ě¤Đ¤Ę¤ę¤Ţ¤ť¤ó" -#: lib/signature.c:838 +#: lib/signature.c:836 #, fuzzy, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "ĽŢĽŻĽíĽŐĽĄĽ¤Ľë¤Ë \"%%_pgp_name\" ¤ňŔßÄꤡ¤Ę¤ą¤ě¤Đ¤Ę¤ę¤Ţ¤ť¤ó" -#: lib/transaction.c:446 +#: lib/transaction.c:447 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:450 +#: lib/transaction.c:451 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "OS ¤Ď˝üł°¤ľ¤ě¤Ć¤¤¤Ţ¤š: %s" -#: lib/transaction.c:453 +#: lib/transaction.c:454 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "%s ¤ň %s ¤ËşĆÇŰĂÖ¤ˇ¤Ć¤¤¤Ţ¤š\n" -#: lib/transaction.c:523 +#: lib/transaction.c:524 #, fuzzy, c-format msgid "excluding multilib path %s%s\n" msgstr "ĽŐĽĄĽ¤Ľë¤Î˝üł°: %s%s\n" -#: lib/transaction.c:586 +#: lib/transaction.c:587 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "ĽŐĽĄĽ¤Ľë¤Î˝üł°: %s%s\n" -#: lib/transaction.c:596 +#: lib/transaction.c:597 #, c-format msgid "relocating %s to %s\n" msgstr "%s ¤ň %s ¤ËşĆÇŰĂÖ¤ˇ¤Ć¤¤¤Ţ¤š\n" -#: lib/transaction.c:674 +#: lib/transaction.c:675 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "ĽÇĽŁĽěĽŻĽČĽę %s ¤ň %s ¤ËşĆÇŰĂÖ¤ˇ¤Ć¤¤¤Ţ¤š\n" -#: lib/transaction.c:808 +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s ¤Ď missingok ĽŐĽéĽ°¤Î¤ż¤áĽšĽĽĂĽ×¤ˇ¤Ţ¤š\n" -#: lib/transaction.c:1406 +#: lib/transaction.c:1407 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "ĽÇĽŁĽěĽŻĽČĽę¤Î˝üł°: %s\n" @@ -3854,128 +3854,128 @@ msgstr "ĽěĽłĄźĽÉ %s ¤ň %s ¤ËĽšĽČĽ˘¤ÇĽ¨ĽéĄź " msgid "error(%d) removing record %s from %s\n" msgstr "ĽěĽłĄźĽÉ %s ¤ň %s ¤Ëşď˝ü¤ÇĽ¨ĽéĄź" -#: rpmdb/rpmdb.c:842 +#: rpmdb/rpmdb.c:846 #, fuzzy msgid "no dbpath has been set\n" msgstr "dbpath ¤ŹŔßÄꤾ¤ě¤Ć¤¤¤Ţ¤ť¤ó" -#: rpmdb/rpmdb.c:973 +#: rpmdb/rpmdb.c:977 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1206 +#: rpmdb/rpmdb.c:1210 #, fuzzy, c-format msgid "error(%d) counting packages\n" msgstr "ĽŃĽĂĽąĄźĽ¸ %s ¤ÎĂľş÷Ľ¨ĽéĄź\n" -#: rpmdb/rpmdb.c:1940 rpmdb/rpmdb.c:3122 +#: rpmdb/rpmdb.c:1944 rpmdb/rpmdb.c:3126 #, fuzzy, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "ĽÇĄźĽżĽŮĄźĽšĂć¤ÎĽěĽłĄźĽÉČÖšć %d ¤ĎÉÔŔľ¤Ç¤š -- ĽšĽĽĂĽ×¤ˇ¤Ţ¤š" -#: rpmdb/rpmdb.c:1991 +#: rpmdb/rpmdb.c:1995 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2256 +#: rpmdb/rpmdb.c:2260 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "¸Ąş÷¤Î¤ż¤á¤Î %d ¤Ç ĽŘĽĂĽŔ¤ňĆɤळ¤Č¤Ź¤Ç¤¤Ţ¤ť¤ó" -#: rpmdb/rpmdb.c:2325 +#: rpmdb/rpmdb.c:2329 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "group Ľ¤ĽóĽÇĽĂĽŻĽš¤ňşď˝ü¤ˇ¤Ţ¤š\n" -#: rpmdb/rpmdb.c:2334 +#: rpmdb/rpmdb.c:2338 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "name Ľ¤ĽóĽÇĽĂĽŻĽšşď˝ü¤ˇ¤Ţ¤š\n" -#: rpmdb/rpmdb.c:2529 +#: rpmdb/rpmdb.c:2533 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "ĽŃĽĂĽąĄźĽ¸ %s ¤ÎĂľş÷Ľ¨ĽéĄź\n" -#: rpmdb/rpmdb.c:2607 +#: rpmdb/rpmdb.c:2611 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "%s ¤ň %s ¤ŘĚžÁ°¤ňĘŃšš¤ˇ¤Ţ¤š\n" -#: rpmdb/rpmdb.c:2618 +#: rpmdb/rpmdb.c:2622 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "%s ¤ň %s ¤ŘĚžÁ°¤ňĘŃšš¤ˇ¤Ţ¤š\n" -#: rpmdb/rpmdb.c:3011 +#: rpmdb/rpmdb.c:3015 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3041 +#: rpmdb/rpmdb.c:3045 msgid "no dbpath has been set" msgstr "dbpath ¤ŹŔßÄꤾ¤ě¤Ć¤¤¤Ţ¤ť¤ó" -#: rpmdb/rpmdb.c:3068 +#: rpmdb/rpmdb.c:3072 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "rootdir %s Ăć¤ÇĽÇĄźĽżĽŮĄźĽš¤ňşĆš˝Ăۤˇ¤Ţ¤š\n" -#: rpmdb/rpmdb.c:3072 +#: rpmdb/rpmdb.c:3076 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "°ěťţĹŞ¤ĘĽÇĄźĽżĽŮĄźĽš %s ¤Ď¤š¤Ç¤Ë¸şß¤ˇ¤Ć¤¤¤Ţ¤š" -#: rpmdb/rpmdb.c:3078 +#: rpmdb/rpmdb.c:3082 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "ĽÇĽŁĽěĽŻĽČĽę¤ÎşîŔŽ: %s\n" -#: rpmdb/rpmdb.c:3080 +#: rpmdb/rpmdb.c:3084 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "ĽÇĽŁĽěĽŻĽČĽę¤ÎşîŔŽ: %s\n" -#: rpmdb/rpmdb.c:3087 +#: rpmdb/rpmdb.c:3091 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "¸Ĺ¤¤ĽÇĄźĽżĽŮĄźĽš¤ÎĽŞĄźĽ×Ľó\n" -#: rpmdb/rpmdb.c:3098 +#: rpmdb/rpmdb.c:3102 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "żˇ¤ˇ¤¤ĽÇĄźĽżĽŮĄźĽš¤ÎĽŞĄźĽ×Ľó\n" -#: rpmdb/rpmdb.c:3162 +#: rpmdb/rpmdb.c:3166 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "%d ¤Ë ĽŞĽęĽ¸ĽĘĽë¤ÎĽěĽłĄźĽÉ¤ňÉղäǤ¤Ţ¤ť¤ó" -#: rpmdb/rpmdb.c:3180 +#: rpmdb/rpmdb.c:3184 #, fuzzy msgid "failed to rebuild database: original database remains in place\n" msgstr "" "ĽÇĄźĽżĽŮĄźĽš¤ÎşĆš˝Ăۤ˟şÇÔ; ĽŞĽęĽ¸ĽĘĽëĽÇĄźĽżĽŮĄźĽš¤Ź¤Ţ¤Ŕ¤˝¤ł¤ËťÄ¤Ă¤Ć¤¤¤Ţ¤š\n" -#: rpmdb/rpmdb.c:3188 +#: rpmdb/rpmdb.c:3192 msgid "failed to replace old database with new database!\n" msgstr "¸Ĺ¤¤ĽÇĄźĽżĽŮĄźĽš¤ňżˇ¤ˇ¤¤ĽÇĄźĽżĽŮĄźĽš¤ËĂÖ¤´š¤¨¤ë¤Î¤ËźşÇÔ!\n" -#: rpmdb/rpmdb.c:3190 +#: rpmdb/rpmdb.c:3194 #, fuzzy, c-format msgid "replace files in %s with files from %s to recover" msgstr "%s Ăć¤ÎĽŐĽĄĽ¤Ľë¤ňĽęĽŤĽĐĄź¤š¤ë¤ż¤á¤Ë %s ¤Ť¤éĽŐĽĄĽ¤Ľë¤ČĂÖ¤´š¤¨¤Ţ¤š" -#: rpmdb/rpmdb.c:3200 +#: rpmdb/rpmdb.c:3204 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "ĽÇĽŁĽěĽŻĽČĽę¤ÎşîŔŽ: %s\n" -#: rpmdb/rpmdb.c:3202 +#: rpmdb/rpmdb.c:3206 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "ĽÇĽŁĽěĽŻĽČĽę %s ¤Îşď˝üźşÇÔ: %s\n" @@ -4072,68 +4072,68 @@ msgstr "ĽŐĽĄĽ¤Ľë %s: %s" msgid "File %s is smaller than %u bytes\n" msgstr "ĽŐĽĄĽ¤Ľë %s: ¤Ď %d ĽĐĽ¤ĽČ¤č¤ęžŽ¤ľ¤¤¤Ç¤š" -#: rpmio/rpmio.c:599 +#: rpmio/rpmio.c:588 msgid "Success" msgstr "ŔŽ¸ů" -#: rpmio/rpmio.c:602 +#: rpmio/rpmio.c:591 #, fuzzy msgid "Bad server response" msgstr "ĽľĄźĽĐ¤Ť¤éŔľžď¤ĘąţĹú¤Ź¤˘¤ę¤Ţ¤ť¤ó" -#: rpmio/rpmio.c:605 +#: rpmio/rpmio.c:594 #, fuzzy msgid "Server I/O error" msgstr "ĽľĄźĽĐ IO Ľ¨ĽéĄź" -#: rpmio/rpmio.c:608 +#: rpmio/rpmio.c:597 #, fuzzy msgid "Server timeout" msgstr "ĽľĄźĽĐĽżĽ¤ĽŕĽ˘ĽŚĽČ" -#: rpmio/rpmio.c:611 +#: rpmio/rpmio.c:600 #, fuzzy msgid "Unable to lookup server host address" msgstr "ĽľĄźĽĐ¤ÎĽŰĽšĽČĽ˘ĽÉĽěĽš¤ňÄ´¤Ů¤é¤ě¤Ţ¤ť¤ó" -#: rpmio/rpmio.c:614 +#: rpmio/rpmio.c:603 #, fuzzy msgid "Unable to lookup server host name" msgstr "ĽľĄźĽĐ¤ÎĽŰĽšĽČĚž¤ňÄ´¤Ů¤é¤ě¤Ţ¤ť¤ó" -#: rpmio/rpmio.c:617 +#: rpmio/rpmio.c:606 #, fuzzy msgid "Failed to connect to server" msgstr "ĽľĄźĽĐ¤Ř¤ÎŔÜÂł¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤ż" -#: rpmio/rpmio.c:620 +#: rpmio/rpmio.c:609 #, fuzzy msgid "Failed to establish data connection to server" msgstr "ĽľĄźĽĐ¤Č¤ÎĽÇĄźĽżĽłĽÍĽŻĽˇĽçĽó¤ÎłÎΊ¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤ż" -#: rpmio/rpmio.c:623 +#: rpmio/rpmio.c:612 #, fuzzy msgid "I/O error to local file" msgstr "ĽíĄźĽŤĽëĽŐĽĄĽ¤Ľë¤Î IO Ľ¨ĽéĄź" -#: rpmio/rpmio.c:626 +#: rpmio/rpmio.c:615 msgid "Error setting remote server to passive mode" msgstr "ĽęĽâĄźĽČĽľĄźĽĐ¤ÎĽŃĽĂĽˇĽÖĽâĄźĽÉŔßÄ꼨ĽéĄź" -#: rpmio/rpmio.c:629 +#: rpmio/rpmio.c:618 msgid "File not found on server" msgstr "ĽľĄźĽĐžĺ¤ËĽŐĽĄĽ¤Ľë¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤ó" -#: rpmio/rpmio.c:632 +#: rpmio/rpmio.c:621 msgid "Abort in progress" msgstr "˝čÍýĂć¤ÎĽ˘ĽÜĄźĽČ" -#: rpmio/rpmio.c:636 +#: rpmio/rpmio.c:625 #, fuzzy msgid "Unknown or unexpected error" msgstr "ÉÔĚŔ¤â¤ˇ¤Ż¤ĎÍ˝´ü¤ť¤ĚĽ¨ĽéĄź" -#: rpmio/rpmio.c:1259 +#: rpmio/rpmio.c:1252 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "%s ¤Ř %s pw %s ¤Č¤ˇ¤ĆĽíĽ°Ľ¤ĽóĂć\n" @@ -4144,7 +4144,7 @@ msgid "(no error)" msgstr "(Ľ¨ĽéĄź 0x%x)" #. @-readonlytrans@ -#. FIX: double indeirection. +#. FIX: double indirection. #. @observer@ #: rpmio/rpmlog.c:114 rpmio/rpmlog.c:115 rpmio/rpmlog.c:116 msgid "fatal error: " @@ -4165,38 +4165,38 @@ msgstr "ˇŮšđ: " msgid "memory alloc (%u bytes) returned NULL.\n" msgstr "" -#: rpmio/url.c:103 +#: rpmio/url.c:101 #, c-format msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:123 +#: rpmio/url.c:121 #, c-format msgid "warning: u %p data %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:151 +#: rpmio/url.c:149 #, c-format msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" msgstr "" -#: rpmio/url.c:244 +#: rpmio/url.c:242 #, c-format msgid "Password for %s@%s: " msgstr "%s@%s ¤ÎĽŃĽšĽďĄźĽÉ:" -#: rpmio/url.c:269 rpmio/url.c:295 +#: rpmio/url.c:267 rpmio/url.c:293 #, fuzzy, c-format msgid "error: %sport must be a number\n" msgstr "Ľ¨ĽéĄź: %sĽÝĄźĽČ¤Ďżôťú¤Ç¤Ę¤ą¤ě¤Đ¤Ę¤ę¤Ţ¤ť¤ó\n" -#: rpmio/url.c:434 +#: rpmio/url.c:432 #, fuzzy msgid "url port must be a number\n" msgstr "url ĽÝĄźĽČ¤Ďżôťú¤Ç¤Ę¤ą¤ě¤Đ¤Ę¤ę¤Ţ¤ť¤ó\n" #. XXX Fstrerror -#: rpmio/url.c:497 +#: rpmio/url.c:495 #, fuzzy, c-format msgid "failed to create %s: %s\n" msgstr "%s ¤ÎşîŔŽ¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤ż\n" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-09-21 11:01-0400\n" +"POT-Creation-Date: 2001-09-24 20:14-0400\n" "PO-Revision-Date: 2001-09-07 22:03+0900\n" "Last-Translator: Jong-Hoon Ryu <redhat4u@netian.com>\n" "Language-Team: GNU Translation project <ko@li.org>\n" @@ -1097,15 +1097,15 @@ msgstr "--sign żÉźÇŔş ĆĐĹ°Áö ÁŚŔ۽ÿĄ¸¸ ťçżëÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" msgid "exec failed\n" msgstr "˝ÇÇ࿥ ˝ÇĆĐÇß˝Ŕ´Ď´Ů\n" -#: rpm.c:1116 rpmqv.c:1103 +#: rpm.c:1116 rpmqv.c:1104 msgid "unexpected arguments to --querytags " msgstr "--querytags żÉźÇżĄ şÎŔűŔýÇŃ ŔÎźö°Ą ÁöÁ¤ľÇžú˝Ŕ´Ď´Ů " -#: rpm.c:1127 rpmqv.c:1112 +#: rpm.c:1127 rpmqv.c:1113 msgid "no packages given for signature check" msgstr "ź¸í °ËťçÇŇ ĆĐĹ°Áö¸Ś ÁöÁ¤ÇĎÁö žĘŔ¸źĚ˝Ŕ´Ď´Ů" -#: rpm.c:1138 rpmqv.c:1121 +#: rpm.c:1138 rpmqv.c:1122 msgid "no packages given for signing" msgstr "ź¸íÇŇ ĆĐĹ°Áö¸Ś ÁöÁ¤ÇĎÁö žĘŔ¸źĚ˝Ŕ´Ď´Ů" @@ -1117,19 +1117,19 @@ msgstr "ÁŚ°Ĺ(uninstall)ÇŇ ĆĐĹ°Áö¸Ś ÁöÁ¤ÇĎÁö žĘŔ¸źĚ˝Ŕ´Ď´Ů" msgid "no packages given for install" msgstr "źłÄĄÇŇ ĆĐĹ°Áö¸Ś ÁöÁ¤ÇĎÁö žĘŔ¸źĚ˝Ŕ´Ď´Ů" -#: rpm.c:1267 rpmqv.c:1066 +#: rpm.c:1267 rpmqv.c:1067 msgid "extra arguments given for query of all packages" msgstr "¸đľç ĆĐĹ°Áö¸Ś ÁúŔÇÇĎ´ÂľĽ ÇĘżä ŔĚťóŔÇ ŔÎźö°Ą ÁöÁ¤ľÇžú˝Ŕ´Ď´Ů" -#: rpm.c:1272 rpmqv.c:1075 +#: rpm.c:1272 rpmqv.c:1076 msgid "no arguments given for query" msgstr "ÁúŔÇżĄ ÇĘżäÇŃ ŔÎźö°Ą ÁöÁ¤ľÇÁö žĘžŇ˝Ŕ´Ď´Ů" -#: rpm.c:1289 rpmqv.c:1091 +#: rpm.c:1289 rpmqv.c:1092 msgid "extra arguments given for verify of all packages" msgstr "¸đľç ĆĐĹ°Áö¸Ś °ËÁőÇĎ´ÂľĽ ÇĘżä ŔĚťóŔÇ ŔÎźö°Ą ÁöÁ¤ľÇžú˝Ŕ´Ď´Ů" -#: rpm.c:1293 rpmqv.c:1095 +#: rpm.c:1293 rpmqv.c:1096 msgid "no arguments given for verify" msgstr "°ËÁőżĄ ÇĘżäÇŃ ŔÎźö°Ą ÁöÁ¤ľÇÁö žĘžŇ˝Ŕ´Ď´Ů" @@ -1742,17 +1742,17 @@ msgstr "%%changelogżĄ łťżë(description)ŔĚ žř˝Ŕ´Ď´Ů\n" msgid "line %d: Error parsing %%description: %s\n" msgstr "%d šř° ÁŮ: %%descriptionżĄź żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů: %s\n" -#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:192 +#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:190 #, c-format msgid "line %d: Bad option %s: %s\n" msgstr "%d šř° ÁŮ: %s (Ŕş)´Â Ŕ߸řľČ żÉźÇŔÔ´Ď´Ů: %s\n" -#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:204 +#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:202 #, c-format msgid "line %d: Too many names: %s\n" msgstr "%d šř° ÁŮ: Ŕ̸§ŔĚ łĘšŤ ¸š˝Ŕ´Ď´Ů: %s\n" -#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:213 +#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:211 #, c-format msgid "line %d: Package does not exist: %s\n" msgstr "%d šř° ÁŮ: ĆĐĹ°Áö°Ą Á¸ŔçÇĎÁö žĘ˝Ŕ´Ď´Ů: %s\n" @@ -1984,22 +1984,22 @@ msgstr "%d šř° ÁŮ: šöŔüŔĚ ¸í˝ĂľČ ĆÄŔĎ Ŕ̸§ŔĚ Çă°ĄľÇÁö žĘ˝Ŕ´Ď´Ů: %s\n" msgid "line %d: Version required: %s\n" msgstr "%d šř° ÁŮ: šöŔüŔĚ ÇĘżäÇŐ´Ď´Ů: %s\n" -#: build/parseScript.c:158 +#: build/parseScript.c:156 #, c-format msgid "line %d: triggers must have --: %s\n" msgstr "%d šř° ÁŮ: ĆŽ¸Ž°Ĺ´Â šÝľĺ˝Ă '--' ¸Ś Ć÷ÇÔÇŘžß ÇŐ´Ď´Ů: %s\n" -#: build/parseScript.c:168 build/parseScript.c:229 +#: build/parseScript.c:166 build/parseScript.c:227 #, c-format msgid "line %d: Error parsing %s: %s\n" msgstr "%d šř° ÁŮ: %s żĄź żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů: %s\n" -#: build/parseScript.c:179 +#: build/parseScript.c:177 #, c-format msgid "line %d: script program must begin with '/': %s\n" msgstr "%d šř° ÁŮ: ˝şĹŠ¸łĆŽ ÇÁˇÎą×ˇĽŔş šÝľĺ˝Ă '/' ˇÎ ˝ĂŔŰÇŘžß ÇŐ´Ď´Ů: %s\n" -#: build/parseScript.c:221 +#: build/parseScript.c:219 #, c-format msgid "line %d: Second %s\n" msgstr "%d šř° ÁŮ: ľÎšř° %s\n" @@ -2040,11 +2040,11 @@ msgstr "%s:%d: %%endif°Ą %%if žřŔĚ ťçżëľÇžú˝Ŕ´Ď´Ů\n" msgid "malformed %%include statement\n" msgstr "%%include šŽŔĚ żĂšŮ¸ŁÁö žĘ˝Ŕ´Ď´Ů\n" -#: build/parseSpec.c:508 +#: build/parseSpec.c:509 msgid "No compatible architectures found for build\n" msgstr "ĆĐĹ°Áö ÁŚŔŰżĄ ČŁČŻÇĎ´Â žĆĹ°ĹŘĂĸŚ ĂŁŔť źö žř˝Ŕ´Ď´Ů\n" -#: build/parseSpec.c:563 +#: build/parseSpec.c:564 #, c-format msgid "Package has no %%description: %s\n" msgstr "ĆĐĹ°ÁöżĄ %%descriptionŔĚ žřŔ˝: %s\n" @@ -2120,107 +2120,107 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr " %s A %s\tB %s\n" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "YES" msgstr "żš" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "NO " msgstr "žĆ´ĎżŔ" -#: lib/depends.c:1021 +#: lib/depends.c:1015 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "%s: %-45s żš (ĆÄŔĎŔĚ Ăß°ĄľĘ)\n" -#: lib/depends.c:1131 +#: lib/depends.c:1126 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "%s: %-45s żš (ÁŚ°řŔĚ Ăß°ĄľĘ)\n" -#: lib/depends.c:1222 +#: lib/depends.c:1217 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "%s: %-45s %-s (Äł˝ĂľĘ)\n" -#: lib/depends.c:1251 +#: lib/depends.c:1246 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "%s: %-45s żš (rpmrcŔĚ ÁŚ°řÇÔ)\n" -#: lib/depends.c:1268 +#: lib/depends.c:1263 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "%s: %-45s żš (rpmlibŔĚ ÁŚ°řÇÔ)\n" -#: lib/depends.c:1292 +#: lib/depends.c:1287 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "%s: %-45s żš (db ĆÄŔĎ)\n" -#: lib/depends.c:1305 +#: lib/depends.c:1300 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "%s: %-45s żš (db°Ą ÁŚ°řÇÔ)\n" -#: lib/depends.c:1319 +#: lib/depends.c:1314 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "%s: %-45s żš (db ĆĐĹ°Áö)\n" -#: lib/depends.c:1335 +#: lib/depends.c:1330 #, c-format msgid "%s: %-45s NO\n" msgstr "%s: %-45s žĆ´ĎżŔ\n" -#: lib/depends.c:1356 +#: lib/depends.c:1351 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "%s: (%s, %s) ŔÇÁ¸(Depends) Äł˝ĂżĄ Ăß°ĄľÇžú˝Ŕ´Ď´Ů.\n" #. requirements are not satisfied. -#: lib/depends.c:1428 +#: lib/depends.c:1423 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "%s-%s-%s ĆĐĹ°ÁöŔÇ ÇĘżä ťçÇ×ŔĚ ¸¸ÁˇľÇÁö žĘŔ˝: %s\n" #. conflicts exist. -#: lib/depends.c:1507 +#: lib/depends.c:1502 #, c-format msgid "package %s conflicts: %s\n" msgstr "ĆĐĹ°Áö %s (ŔĚ)°Ą ĂćľšÇÔ: %s\n" -#: lib/depends.c:1753 +#: lib/depends.c:1748 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "tsort °ü°čżĄź %s-%s-%s \"%s\" (Ŕť)¸Ś ťčÁŚÇŐ´Ď´Ů.\n" #. Record all relations. -#: lib/depends.c:1902 +#: lib/depends.c:1897 msgid "========== recording tsort relations\n" msgstr "========== tsort °ü°č¸Ś ąâˇĎ(record)ÇŐ´Ď´Ů\n" #. T4. Scan for zeroes. -#: lib/depends.c:1960 +#: lib/depends.c:1955 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" "========== ĆĐĹ°Áö¸Ś tsort ÇŐ´Ď´Ů (źřź, #źąŔÓŔÚ, #ČÄŔÓŔÚ, ąíŔĚ[depth])\n" -#: lib/depends.c:2010 +#: lib/depends.c:2005 msgid "========== successors only (presentation order)\n" msgstr "========== ČÄŔÓŔÚ [successors only] (ÇĽÇö źř)\n" -#: lib/depends.c:2062 +#: lib/depends.c:2057 msgid "LOOP:\n" msgstr "ˇçÇÁ(LOOP):\n" -#: lib/depends.c:2091 +#: lib/depends.c:2086 msgid "========== continuing tsort ...\n" msgstr "========== tsort¸Ś ÁřÇŕÇŐ´Ď´Ů...\n" #: lib/formats.c:28 lib/formats.c:54 lib/formats.c:85 lib/formats.c:128 -#: lib/header.c:2621 lib/header.c:2642 lib/header.c:2664 +#: lib/header.c:2623 lib/header.c:2644 lib/header.c:2666 msgid "(not a number)" msgstr "(źýŔÚ°Ą žĆ´Ő´Ď´Ů)" @@ -2243,7 +2243,7 @@ msgstr "%s ŔÇ ťóĹÂ(stat)¸Ś ÇĽ˝ĂÇĎ´ÂľĽ ˝ÇĆĐÇÔ: %s\n" msgid "getting list of mounted filesystems\n" msgstr "¸śżîĆŽľČ ĆÄŔϽýşĹŰŔÇ ¸ńˇĎŔť źöÁýÇĎ°í ŔÖ˝Ŕ´Ď´Ů\n" -#: lib/fs.c:153 rpmio/url.c:477 +#: lib/fs.c:153 rpmio/url.c:475 #, c-format msgid "failed to open %s: %s\n" msgstr "%s (Ŕť)¸Ś żŠ´ÂľĽ ˝ÇĆĐÇÔ: %s\n" @@ -2253,46 +2253,46 @@ msgstr "%s (Ŕť)¸Ś żŠ´ÂľĽ ˝ÇĆĐÇÔ: %s\n" msgid "file %s is on an unknown device\n" msgstr "%s ĆÄŔĎŔĚ žË źö žř´Â ŔĺÄĄ ťóżĄ Á¸ŔçÇŐ´Ď´Ů\n" -#: lib/fsm.c:290 +#: lib/fsm.c:288 msgid "========= Directories not explictly included in package:\n" msgstr "========= ĆĐĹ°ÁöżĄ ľđˇşĹ与°Ą Ć÷ÇԾǞî ŔÖÁö žĘŔ˝:\n" -#: lib/fsm.c:292 +#: lib/fsm.c:290 #, c-format msgid "%9d %s\n" msgstr "%9d %s\n" -#: lib/fsm.c:1130 +#: lib/fsm.c:1124 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "%04o Çă°ĄąÇ(perms)ŔÇ %s ľđˇşĹ与°Ą ťýźşľÇžú˝Ŕ´Ď´Ů.\n" -#: lib/fsm.c:1407 +#: lib/fsm.c:1401 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "Çě´ő ĆÄŔĎ ¸ńˇĎżĄź žĆÄŤŔĚşę ĆÄŔĎ %s (Ŕť)¸Ś ĂŁŔť źö žř˝Ŕ´Ď´Ů\n" -#: lib/fsm.c:1526 lib/fsm.c:1651 +#: lib/fsm.c:1520 lib/fsm.c:1645 #, c-format msgid "%s saved as %s\n" msgstr "%s (ŔĚ)°Ą %s (Ŕ¸)ˇÎ ŔúŔĺľÇžú˝Ŕ´Ď´Ů\n" -#: lib/fsm.c:1677 +#: lib/fsm.c:1671 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "%s %s ľđˇşĹ与¸Ś ťčÁŚÇĎ´ÂľĽ ˝ÇĆĐÇÔ: şó ľđˇşĹ与°Ą žĆ´Ő´Ď´Ů\n" -#: lib/fsm.c:1683 +#: lib/fsm.c:1677 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s %s ľđˇşĹ与¸Ś ťčÁŚÇĎ´ÂľĽ ˝ÇĆĐÇÔ: %s\n" -#: lib/fsm.c:1693 +#: lib/fsm.c:1687 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s %s ¸ľĹŠ¸Ś ÇŘÁŚÇĎ´ÂľĽ ˝ÇĆĐÇÔ: %s\n" -#: lib/fsm.c:1712 +#: lib/fsm.c:1706 #, c-format msgid "%s created as %s\n" msgstr "%s (ŔĚ)°Ą %s (Ŕ¸)ˇÎ ťýźşľÇžú˝Ŕ´Ď´Ů\n" @@ -2308,77 +2308,77 @@ msgid "Data type %d not supported\n" msgstr "%d ľĽŔĚĹÍ ŔŻÇüŔş ťçżëÇĎ˝Ç źö žř˝Ŕ´Ď´Ů\n" #. @-observertrans -readonlytrans@ -#: lib/header.c:1930 +#: lib/header.c:1932 #, c-format msgid "missing { after %" msgstr "'%' ľÚżĄ '{' ¸Ś ĂŁŔť źö žř˝Ŕ´Ď´Ů" #. @-observertrans -readonlytrans@ -#: lib/header.c:1960 +#: lib/header.c:1962 msgid "missing } after %{" msgstr "'%{' ľÚżĄ '}' ¸Ś ĂŁŔť źö žř˝Ŕ´Ď´Ů" #. @-observertrans -readonlytrans@ -#: lib/header.c:1974 +#: lib/header.c:1976 msgid "empty tag format" msgstr "ĹÂą× Çü˝ÄŔĚ şńžîŔÖ˝Ŕ´Ď´Ů" #. @-observertrans -readonlytrans@ -#: lib/header.c:1988 +#: lib/header.c:1990 msgid "empty tag name" msgstr "ĹÂą× Ŕ̸§ŔĚ şńžîŔÖ˝Ŕ´Ď´Ů" #. @-observertrans -readonlytrans@ -#: lib/header.c:2005 +#: lib/header.c:2007 msgid "unknown tag" msgstr "žË źö žř´Â ĹÂą× ŔÔ´Ď´Ů" #. @-observertrans -readonlytrans@ -#: lib/header.c:2032 +#: lib/header.c:2034 msgid "] expected at end of array" msgstr "ščżŔÇ łĄşÎşĐżĄ ']' °Ą ÇĘżäÇŐ´Ď´Ů" #. @-observertrans -readonlytrans@ -#: lib/header.c:2050 +#: lib/header.c:2052 msgid "unexpected ]" msgstr "şŇÇĘżäÇŃ ']' °Ą ťçżëľÇ°í ŔÖ˝Ŕ´Ď´Ů" #. @-observertrans -readonlytrans@ -#: lib/header.c:2054 +#: lib/header.c:2056 msgid "unexpected }" msgstr "şŇÇĘżäÇŃ '}' °Ą ťçżëľÇ°í ŔÖ˝Ŕ´Ď´Ů" #. @-observertrans -readonlytrans@ -#: lib/header.c:2120 +#: lib/header.c:2122 msgid "? expected in expression" msgstr "ÇĽÇö˝ÄżĄ '?' °Ą ÇĘżäÇŐ´Ď´Ů" #. @-observertrans -readonlytrans@ -#: lib/header.c:2129 +#: lib/header.c:2131 msgid "{ expected after ? in expression" msgstr "ÇĽÇö˝ÄżĄź '?' ľÚżĄ '{' °Ą ÇĘżäÇŐ´Ď´Ů" #. @-observertrans -readonlytrans@ -#: lib/header.c:2142 lib/header.c:2184 +#: lib/header.c:2144 lib/header.c:2186 msgid "} expected in expression" msgstr "ÇĽÇö˝ÄżĄ '}' °Ą ÇĘżäÇŐ´Ď´Ů" #. @-observertrans -readonlytrans@ -#: lib/header.c:2152 +#: lib/header.c:2154 msgid ": expected following ? subexpression" msgstr "ÇϺΠǼÇö˝Ä(subexpression)ŔÇ '?' ´ŮŔ˝żĄ ':' ŔĚ ÇĘżäÇŐ´Ď´Ů" #. @-observertrans -readonlytrans@ -#: lib/header.c:2169 +#: lib/header.c:2171 msgid "{ expected after : in expression" msgstr "ÇĽÇö˝ÄżĄź ':' ľÚżĄ '{' °Ą ÇĘżäÇŐ´Ď´Ů" #. @-observertrans -readonlytrans@ -#: lib/header.c:2194 +#: lib/header.c:2196 msgid "| expected at end of expression" msgstr "ÇĽÇö˝ÄŔÇ łĄşÎşĐżĄ '|' °Ą ÇĘżäÇŐ´Ď´Ů" -#: lib/header.c:2381 +#: lib/header.c:2383 msgid "(unknown type)" msgstr "(žË źö žř´Â ŔŻÇü)" @@ -2974,7 +2974,7 @@ msgid "can't query %s: %s\n" msgstr "%s (Ŕť)¸Ś ÁúŔÇÇŇ źö žřŔ˝: %s\n" #: lib/query.c:576 lib/query.c:610 lib/rpminstall.c:309 lib/rpminstall.c:453 -#: lib/rpminstall.c:826 +#: lib/rpminstall.c:824 #, c-format msgid "open of %s failed: %s\n" msgstr "%s (Ŕť)¸Ś żŠ´ÂľĽ ˝ÇĆĐÇÔ: %s\n" @@ -3111,27 +3111,27 @@ msgstr "%s: rpmWriteSignatureżĄ ˝ÇĆĐÇß˝Ŕ´Ď´Ů: %s\n" msgid "%s: No signature available (v1.0 RPM)\n" msgstr "%s: ŔŻČżÇŃ ź¸íŔĚ žř˝Ŕ´Ď´Ů (v1.0 RPM)\n" -#: lib/rpmchecksig.c:437 +#: lib/rpmchecksig.c:431 msgid "NOT OK" msgstr "żĂšŮ¸ŁÁö žĘŔ˝" -#: lib/rpmchecksig.c:438 lib/rpmchecksig.c:452 +#: lib/rpmchecksig.c:432 lib/rpmchecksig.c:446 msgid " (MISSING KEYS:" msgstr " (Ĺ°¸Ś ĂŁŔť źö žřŔ˝:" -#: lib/rpmchecksig.c:440 lib/rpmchecksig.c:454 +#: lib/rpmchecksig.c:434 lib/rpmchecksig.c:448 msgid ") " msgstr ") " -#: lib/rpmchecksig.c:441 lib/rpmchecksig.c:455 +#: lib/rpmchecksig.c:435 lib/rpmchecksig.c:449 msgid " (UNTRUSTED KEYS:" msgstr " (Ĺ°¸Ś ˝ĹˇÚÇŇ źö žřŔ˝:" -#: lib/rpmchecksig.c:443 lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 lib/rpmchecksig.c:451 msgid ")" msgstr ")" -#: lib/rpmchecksig.c:451 +#: lib/rpmchecksig.c:445 msgid "OK" msgstr "ČŽŔÎ" @@ -3180,7 +3180,7 @@ msgstr "%s ĆÄŔĎŔť ŔĐ´Â ľľÁß żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů\n" msgid "file %s requires a newer version of RPM\n" msgstr "%s ĆÄŔĎŔĚ ĂֽŠšöŔüŔÇ RPMŔť ÇĘżäˇÎ ÇŐ´Ď´Ů\n" -#: lib/rpminstall.c:445 lib/rpminstall.c:686 +#: lib/rpminstall.c:445 lib/rpminstall.c:684 #, c-format msgid "%s cannot be installed\n" msgstr "%s (Ŕş)´Â źłÄĄľÉ źö žř˝Ŕ´Ď´Ů\n" @@ -3227,7 +3227,7 @@ msgstr "%s (Ŕť)¸Ś ż źö žřŔ˝: %s\n" msgid "Installing %s\n" msgstr "%s (Ŕť)¸Ś źłÄĄÇŐ´Ď´Ů\n" -#: lib/rpmlead.c:49 +#: lib/rpmlead.c:47 #, c-format msgid "read failed: %s (%d)\n" msgstr "ŔĐ´ÂľĽ ˝ÇĆĐÇÔ: %s (%d)\n" @@ -3242,88 +3242,88 @@ msgstr "%s żĄź ľÎšř° ':' Ŕť ĂŁŔť źö žřŔ˝:%d\n" msgid "missing architecture name at %s:%d\n" msgstr "%s żĄź žĆĹ°ĹŘĂÄ Ŕ̸§Ŕť ĂŁŔť źö žřŔ˝:%d\n" -#: lib/rpmrc.c:325 +#: lib/rpmrc.c:328 #, c-format msgid "Incomplete data line at %s:%d\n" msgstr "%s ŔÇ ľĽŔĚĹÍ Ç׸ń(line)ŔĚ şŇĂćşĐÇÔ:%d\n" -#: lib/rpmrc.c:330 +#: lib/rpmrc.c:333 #, c-format msgid "Too many args in data line at %s:%d\n" msgstr "%s ŔÇ ľĽŔĚĹÍ Ç׸ń(line)żĄ ŔÎźö°Ą łĘšŤ ¸šŔ˝:%d\n" -#: lib/rpmrc.c:338 +#: lib/rpmrc.c:341 #, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "Ŕ߸řľČ žĆĹ°ĹŘĂÄ/żîżľĂźÁŚ šřČŁ: %s (%s:%d)\n" -#: lib/rpmrc.c:378 +#: lib/rpmrc.c:384 #, c-format msgid "Incomplete default line at %s:%d\n" msgstr "%s ŔÇ ąâşť Ç׸ń(line)ŔĚ şŇĂćşĐÇÔ:%d\n" -#: lib/rpmrc.c:383 +#: lib/rpmrc.c:389 #, c-format msgid "Too many args in default line at %s:%d\n" msgstr "%s ŔÇ ąâşť Ç׸ń(line)żĄ ŔÎźö°Ą łĘšŤ ¸šŔ˝:%d\n" -#: lib/rpmrc.c:585 +#: lib/rpmrc.c:591 #, c-format msgid "Cannot expand %s\n" msgstr "%s (Ŕť)¸Ś ČŽŔĺ(expand)ÇŇ źö žř˝Ŕ´Ď´Ů\n" -#: lib/rpmrc.c:590 +#: lib/rpmrc.c:596 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "%s (Ŕť)¸Ś ŔĐŔť źö žř˝Ŕ´Ď´Ů, HOMEŔĚ łĘšŤ ĹŽ´Ď´Ů.\n" -#: lib/rpmrc.c:607 +#: lib/rpmrc.c:613 #, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "%s (Ŕť)¸Ś ż źö žřŔ˝: %s.\n" #. XXX Feof(fd) -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:660 #, c-format msgid "Failed to read %s: %s.\n" msgstr "%s (Ŕť)¸Ś ŔĐ´ÂľĽ ˝ÇĆĐÇÔ: %s.\n" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:697 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "%2$s żĄź ':' (0x%1$02x ĂŁŔ˝) Ŕť ĂŁŔť źö žřŔ˝:%3$d\n" -#: lib/rpmrc.c:708 lib/rpmrc.c:782 +#: lib/rpmrc.c:714 lib/rpmrc.c:788 #, c-format msgid "missing argument for %s at %s:%d\n" msgstr "%2$s żĄź %1$s (Ŕť)¸Ś Ŕ§ÇŃ ŔÎźö¸Ś ĂŁŔť źö žřŔ˝:%3$d\n" -#: lib/rpmrc.c:725 lib/rpmrc.c:747 +#: lib/rpmrc.c:731 lib/rpmrc.c:753 #, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "%2$s ŔÇ %1$s ČŽŔĺ(expansion)ŔĚ ˝ÇĆĐÇÔ:%3$d \"%4$s\"\n" -#: lib/rpmrc.c:734 +#: lib/rpmrc.c:740 #, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "%2$s ŔÇ %1$s (Ŕť)¸Ś ż źö žřŔ˝:%3$d: %4$s\n" -#: lib/rpmrc.c:774 +#: lib/rpmrc.c:780 #, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "%2$s żĄź %1$s (Ŕť)¸Ś Ŕ§ÇŃ žĆĹ°ĹŘĂĸŚ ĂŁŔť źö žřŔ˝:%3$d\n" -#: lib/rpmrc.c:841 +#: lib/rpmrc.c:847 #, c-format msgid "bad option '%s' at %s:%d\n" msgstr "%2$s żĄ Ŕ߸řľČ żÉźÇ '%1$s':%3$d\n" -#: lib/rpmrc.c:1436 +#: lib/rpmrc.c:1442 #, c-format msgid "Unknown system: %s\n" msgstr "žË źö žř´Â ˝Ă˝şĹŰ: %s\n" -#: lib/rpmrc.c:1437 +#: lib/rpmrc.c:1443 msgid "Please contact rpm-list@redhat.com\n" msgstr "rpm-list@redhat.com Ŕ¸ˇÎ żŹśôÁֽù⠚ٜř´Ď´Ů\n" @@ -3353,145 +3353,145 @@ msgstr "ŔĚŔü PGP ź¸í\n" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "ŔĚŔü (łťşÎ-żë) ź¸í! žîśť°Ô žňŔ¸źĚ˝Ŕ´Ďąî!?\n" -#: lib/signature.c:230 +#: lib/signature.c:228 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "ź¸í: size(%d)+pad(%d)\n" -#: lib/signature.c:290 +#: lib/signature.c:288 #, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "pgp (%s) (Ŕť)¸Ś ˝ÇÇŕÇŇ źö žř˝Ŕ´Ď´Ů\n" -#: lib/signature.c:303 +#: lib/signature.c:301 msgid "pgp failed\n" msgstr "pgpżĄ ˝ÇĆĐÇÔ\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:310 +#: lib/signature.c:308 msgid "pgp failed to write signature\n" msgstr "pgp ź¸íŔť ŔŰźşÇĎ´ÂľĽ ˝ÇĆĐÇß˝Ŕ´Ď´Ů\n" -#: lib/signature.c:315 +#: lib/signature.c:313 #, c-format msgid "PGP sig size: %d\n" msgstr "PGP ź¸í żëˇŽ: %d\n" -#: lib/signature.c:328 lib/signature.c:410 +#: lib/signature.c:326 lib/signature.c:408 msgid "unable to read the signature\n" msgstr "ź¸íŔť ŔĐŔť źö žř˝Ŕ´Ď´Ů\n" -#: lib/signature.c:333 +#: lib/signature.c:331 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "%d šŮŔĚĆŽŔÇ PGP ź¸íŔť žňžú˝Ŕ´Ď´Ů\n" -#: lib/signature.c:372 lib/signature.c:760 +#: lib/signature.c:370 lib/signature.c:758 msgid "Couldn't exec gpg\n" msgstr "gpg¸Ś ˝ÇÇŕÇŇ źö žř˝Ŕ´Ď´Ů\n" -#: lib/signature.c:385 +#: lib/signature.c:383 msgid "gpg failed\n" msgstr "gpgżĄ ˝ÇĆĐÇÔ\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:392 +#: lib/signature.c:390 msgid "gpg failed to write signature\n" msgstr "gpg ź¸íŔť ŔŰźşÇĎ´ÂľĽ ˝ÇĆĐÇß˝Ŕ´Ď´Ů\n" -#: lib/signature.c:397 +#: lib/signature.c:395 #, c-format msgid "GPG sig size: %d\n" msgstr "GPG ź¸í żëˇŽ: %d\n" -#: lib/signature.c:415 +#: lib/signature.c:413 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "%d šŮŔĚĆŽŔÇ GPG ź¸íŔť žňžú˝Ŕ´Ď´Ů\n" -#: lib/signature.c:443 +#: lib/signature.c:441 msgid "Generating signature using PGP.\n" msgstr "PGP¸Ś ťçżëÇĎżŠ ź¸íŔť ťýźşÇŐ´Ď´Ů.\n" -#: lib/signature.c:449 +#: lib/signature.c:447 msgid "Generating signature using GPG.\n" msgstr "GPG¸Ś ťçżëÇĎżŠ ź¸íŔť ťýźşÇŐ´Ď´Ů.\n" -#: lib/signature.c:532 lib/signature.c:607 +#: lib/signature.c:530 lib/signature.c:605 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" "pgp¸Ś ˝ÇÇŕÇŇ źö žř˝Ŕ´Ď´Ů. PGP °Ëťç¸Ś ťýˇŤÇϽáÁ¸é, --nopgp żÉźÇŔť ŔĚżëÇϽʽĂ" "żä.\n" -#: lib/signature.c:697 +#: lib/signature.c:695 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" "gpg¸Ś ˝ÇÇŕÇŇ źö žř˝Ŕ´Ď´Ů. GPG °Ëťç¸Ś ťýˇŤÇϽáÁ¸é, --nogpg żÉźÇŔť ŔĚżëÇϽʽĂ" "żä.\n" -#: lib/signature.c:789 +#: lib/signature.c:787 msgid "Couldn't exec pgp\n" msgstr "pgp¸Ś ˝ÇÇŕÇŇ źö žř˝Ŕ´Ď´Ů\n" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:793 lib/signature.c:846 +#: lib/signature.c:791 lib/signature.c:844 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "¸ĹĹŠˇÎ ĆÄŔĎżĄ şÎŔűÇŐÇŃ %%_signatureŔÇ łťżëŔĚ ŔÖ˝Ŕ´Ď´Ů\n" -#: lib/signature.c:826 +#: lib/signature.c:824 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "¸ĹĹŠˇÎ ĆÄŔĎżĄ \"%%_gpg_name\" Ŕť źłÁ¤ÇŘ ÁÖźĹžß ÇŐ´Ď´Ů\n" -#: lib/signature.c:838 +#: lib/signature.c:836 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "¸ĹĹŠˇÎ ĆÄŔĎżĄ \"%%_pgp_name\" Ŕť źłÁ¤ÇŘ ÁÖźĹžß ÇŐ´Ď´Ů\n" -#: lib/transaction.c:446 +#: lib/transaction.c:447 msgid "========== relocations\n" msgstr "========== ŔçščÄĄ\n" -#: lib/transaction.c:450 +#: lib/transaction.c:451 #, c-format msgid "%5d exclude %s\n" msgstr "%5d ÁŚżÜ(exclude) %s\n" -#: lib/transaction.c:453 +#: lib/transaction.c:454 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "%5d ŔçščÄĄ %s -> %s\n" -#: lib/transaction.c:523 +#: lib/transaction.c:524 #, c-format msgid "excluding multilib path %s%s\n" msgstr "%s%s multilib °ćˇÎ¸Ś ÁŚżÜ˝ĂĹľ´Ď´Ů\n" -#: lib/transaction.c:586 +#: lib/transaction.c:587 #, c-format msgid "excluding %s %s\n" msgstr "%s %s (Ŕť)¸Ś ÁŚżÜ˝ĂĹľ´Ď´Ů\n" -#: lib/transaction.c:596 +#: lib/transaction.c:597 #, c-format msgid "relocating %s to %s\n" msgstr "%s żĄź %s (Ŕ¸)ˇÎ ŔçščÄĄ ÇŐ´Ď´Ů\n" -#: lib/transaction.c:674 +#: lib/transaction.c:675 #, c-format msgid "relocating directory %s to %s\n" msgstr "%s ľđˇşĹ与¸Ś %s (Ŕ¸)ˇÎ ŔçščÄĄ ÇŐ´Ď´Ů\n" -#: lib/transaction.c:808 +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "missingok Ç᥹סΠŔÎÇŘ %s (Ŕť)¸Ś ťýˇŤÇŐ´Ď´Ů\n" -#: lib/transaction.c:1406 +#: lib/transaction.c:1407 #, c-format msgid "excluding directory %s\n" msgstr "%s ľđˇşĹ与¸Ś ÁŚżÜ˝ĂĹľ´Ď´Ů\n" @@ -3700,11 +3700,11 @@ msgstr "%3$s (Ŕ¸)ˇÎ %2$s ˇšÄھ希 ŔúŔĺÇĎ´Â ľľÁß żŔˇů(%1$d)°Ą šßťýÇß˝Ŕ´Ď´Ů\n" msgid "error(%d) removing record %s from %s\n" msgstr "%3$s żĄź %2$s ˇšÄھ希 ťčÁŚÇĎ´Â ľľÁß żŔˇů(%1$d)°Ą šßťýÇß˝Ŕ´Ď´Ů\n" -#: rpmdb/rpmdb.c:842 +#: rpmdb/rpmdb.c:846 msgid "no dbpath has been set\n" msgstr "db°ćˇÎ°Ą źłÁ¤ľÇžî ŔÖÁö žĘ˝Ŕ´Ď´Ů\n" -#: rpmdb/rpmdb.c:973 +#: rpmdb/rpmdb.c:977 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" @@ -3713,115 +3713,115 @@ msgstr "" "ˇÁ¸é --rebuilddb żÉźÇŔť ŔĚżëÇϽʽÿä\n" #. error -#: rpmdb/rpmdb.c:1206 +#: rpmdb/rpmdb.c:1210 #, c-format msgid "error(%d) counting packages\n" msgstr "ĆĐĹ°ÁöŔÇ źö¸Ś źź´Â ľľÁß żŔˇů(%d)°Ą šßťýÇß˝Ŕ´Ď´Ů\n" -#: rpmdb/rpmdb.c:1940 rpmdb/rpmdb.c:3122 +#: rpmdb/rpmdb.c:1944 rpmdb/rpmdb.c:3126 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "ľĽŔĚĹÍşŁŔĚ˝şŔÇ ˇšÄÚľĺ šřČŁ %u (ŔĚ)°Ą Ŕ߸řľÇžú˝Ŕ´Ď´Ů -- ťýˇŤÇŐ´Ď´Ů.\n" -#: rpmdb/rpmdb.c:1991 +#: rpmdb/rpmdb.c:1995 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "rpmdb: źŐťóľČ Çě´ő #%u (ŔĚ)°Ą şšą¸(retrieved)ľÇžú˝Ŕ´Ď´Ů, ťýˇŤÇŐ´Ď´Ů.\n" -#: rpmdb/rpmdb.c:2256 +#: rpmdb/rpmdb.c:2260 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "%s: 0x%x ŔÇ Çě´ő¸Ś ŔĐŔť źö žř˝Ŕ´Ď´Ů\n" -#: rpmdb/rpmdb.c:2325 +#: rpmdb/rpmdb.c:2329 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "%2$s ŔÎľŚ˝şżĄź \"%1$s\" (Ŕť)¸Ś ťčÁŚÇŐ´Ď´Ů.\n" -#: rpmdb/rpmdb.c:2334 +#: rpmdb/rpmdb.c:2338 #, c-format msgid "removing %d entries from %s index.\n" msgstr "%2$s ŔÎľŚ˝şżĄź %1$d Ç׸ńľé(entries)Ŕť ťčÁŚÇŐ´Ď´Ů.\n" -#: rpmdb/rpmdb.c:2529 +#: rpmdb/rpmdb.c:2533 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "ťőˇÎżî ĆĐĹ°Áö¸Ś ščÄĄÇĎ´Â ľľÁß żŔˇů(%d)°Ą šßťýÇß˝Ŕ´Ď´Ů\n" -#: rpmdb/rpmdb.c:2607 +#: rpmdb/rpmdb.c:2611 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "%2$s ŔÎľŚ˝şżĄ \"%1$s\" (Ŕť)¸Ś Ăß°ĄÇŐ´Ď´Ů.\n" -#: rpmdb/rpmdb.c:2618 +#: rpmdb/rpmdb.c:2622 #, c-format msgid "adding %d entries to %s index.\n" msgstr "%2$s ŔÎľŚ˝şżĄ %1$d Ç׸ńľé(entries)Ŕť Ăß°ĄÇŐ´Ď´Ů.\n" -#: rpmdb/rpmdb.c:3011 +#: rpmdb/rpmdb.c:3015 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "db3¸Ś Ŕ繸Ăŕ ÇŃ ČÄżĄ %s (Ŕť)¸Ś ťčÁŚÇŐ´Ď´Ů.\n" -#: rpmdb/rpmdb.c:3041 +#: rpmdb/rpmdb.c:3045 msgid "no dbpath has been set" msgstr "db°ćˇÎ°Ą źłÁ¤ľÇžî ŔÖÁö žĘ˝Ŕ´Ď´Ů" -#: rpmdb/rpmdb.c:3068 +#: rpmdb/rpmdb.c:3072 #, c-format msgid "rebuilding database %s into %s\n" msgstr "%2$s żĄ ľĽŔĚĹÍşŁŔĚ˝ş %1$s (Ŕť)¸Ś Ŕ繸Ăŕ ÇŐ´Ď´Ů\n" -#: rpmdb/rpmdb.c:3072 +#: rpmdb/rpmdb.c:3076 #, c-format msgid "temporary database %s already exists\n" msgstr "Ŕӽà ľĽŔĚĹÍşŁŔĚ˝ş %s (ŔĚ)°Ą ŔĚšĚ Á¸ŔçÇŐ´Ď´Ů\n" -#: rpmdb/rpmdb.c:3078 +#: rpmdb/rpmdb.c:3082 #, c-format msgid "creating directory %s\n" msgstr "%s ľđˇşĹ与¸Ś ťýźşÇŐ´Ď´Ů\n" -#: rpmdb/rpmdb.c:3080 +#: rpmdb/rpmdb.c:3084 #, c-format msgid "creating directory %s: %s\n" msgstr "%s ľđˇşĹ与¸Ś ťýźşÇÔ: %s\n" -#: rpmdb/rpmdb.c:3087 +#: rpmdb/rpmdb.c:3091 #, c-format msgid "opening old database with dbapi %d\n" msgstr "dbapi %d (Ŕť)¸Ś ĹëÇŘ ŔĚŔü ľĽŔĚĹÍşŁŔĚ˝ş¸Ś żą´Ď´Ů\n" -#: rpmdb/rpmdb.c:3098 +#: rpmdb/rpmdb.c:3102 #, c-format msgid "opening new database with dbapi %d\n" msgstr "dbapi %d (Ŕť)¸Ś ĹëÇŘ ťőˇÎżî ľĽŔĚĹÍşŁŔĚ˝ş¸Ś żą´Ď´Ů\n" -#: rpmdb/rpmdb.c:3162 +#: rpmdb/rpmdb.c:3166 #, c-format msgid "cannot add record originally at %u\n" msgstr "%u żĄ ˇšÄھ希 Ăß°ĄÇŇ źö žř˝Ŕ´Ď´Ů\n" -#: rpmdb/rpmdb.c:3180 +#: rpmdb/rpmdb.c:3184 msgid "failed to rebuild database: original database remains in place\n" msgstr "" "ľĽŔĚĹÍşŁŔĚ˝ş¸Ś Ŕ繸ĂŕÇĎ´ÂľĽ ˝ÇĆĐÇÔ: żřşť ľĽŔĚĹÍşŁŔĚ˝ş´Â ą×´ëˇÎ ŔŻÁöľË´Ď´Ů\n" -#: rpmdb/rpmdb.c:3188 +#: rpmdb/rpmdb.c:3192 msgid "failed to replace old database with new database!\n" msgstr "ŔĚŔü ľĽŔĚĹÍşŁŔĚ˝ş¸Ś ťőˇÎżî ľĽŔĚĹÍşŁŔĚ˝şˇÎ ąłĂźÇĎ´ÂľĽ ˝ÇĆĐÇß˝Ŕ´Ď´Ů!\n" -#: rpmdb/rpmdb.c:3190 +#: rpmdb/rpmdb.c:3194 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "şšą¸ÇĎąâ Ŕ§ÇŘ $2$s ŔÇ ĆÄŔĎŔť $1$s ŔÇ ĆÄŔϡΠąłĂźÇŐ´Ď´Ů" -#: rpmdb/rpmdb.c:3200 +#: rpmdb/rpmdb.c:3204 #, c-format msgid "removing directory %s\n" msgstr "%s ľđˇşĹ与¸Ś ťčÁŚÇŐ´Ď´Ů\n" -#: rpmdb/rpmdb.c:3202 +#: rpmdb/rpmdb.c:3206 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "%s ľđˇşĹ与¸Ś ťčÁŚÇĎ´ÂľĽ ˝ÇĆĐÇÔ: %s\n" @@ -3917,60 +3917,60 @@ msgstr "%s ĆÄŔĎ: %s\n" msgid "File %s is smaller than %u bytes\n" msgstr "%s ĆÄŔĎŔĚ %u šŮŔĚĆŽ żëˇŽş¸´Ů Ŕű˝Ŕ´Ď´Ů\n" -#: rpmio/rpmio.c:599 +#: rpmio/rpmio.c:588 msgid "Success" msgstr "źş°ř" -#: rpmio/rpmio.c:602 +#: rpmio/rpmio.c:591 msgid "Bad server response" msgstr "źšö ŔŔ´äŔĚ Ŕ߸řľÇžú˝Ŕ´Ď´Ů" -#: rpmio/rpmio.c:605 +#: rpmio/rpmio.c:594 msgid "Server I/O error" msgstr "źšö ŔÔ/ĂâˇÂ żŔˇůŔÔ´Ď´Ů" -#: rpmio/rpmio.c:608 +#: rpmio/rpmio.c:597 msgid "Server timeout" msgstr "źšö ´ëąâ˝Ă°ŁŔĚ ĂĘ°úľÇžú˝Ŕ´Ď´Ů" -#: rpmio/rpmio.c:611 +#: rpmio/rpmio.c:600 msgid "Unable to lookup server host address" msgstr "źšö ČŁ˝şĆŽ Á֟ҸŚ ĂŁŔť źö žř˝Ŕ´Ď´Ů" -#: rpmio/rpmio.c:614 +#: rpmio/rpmio.c:603 msgid "Unable to lookup server host name" msgstr "źšö ČŁ˝şĆŽ Ŕ̸§Ŕť ĂŁŔť źö žř˝Ŕ´Ď´Ů" -#: rpmio/rpmio.c:617 +#: rpmio/rpmio.c:606 msgid "Failed to connect to server" msgstr "źšöżĄ Á˘źÓÇĎ´ÂľĽ ˝ÇĆĐÇß˝Ŕ´Ď´Ů" -#: rpmio/rpmio.c:620 +#: rpmio/rpmio.c:609 msgid "Failed to establish data connection to server" msgstr "źšöˇÎ ŔÚˇá Á˘źÓŔť ˝ĂľľÇĎ´ÂľĽ ˝ÇĆĐÇß˝Ŕ´Ď´Ů" -#: rpmio/rpmio.c:623 +#: rpmio/rpmio.c:612 msgid "I/O error to local file" msgstr "ˇÎÄĂ ĆÄŔĎżĄ ŔÔ/ĂâˇÂ żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů" -#: rpmio/rpmio.c:626 +#: rpmio/rpmio.c:615 msgid "Error setting remote server to passive mode" msgstr "" "żř°Ý źšö¸Ś źöľż ¸đľĺ(passive mode)ˇÎ źłÁ¤ÇĎ´Â ľľÁß żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů" -#: rpmio/rpmio.c:629 +#: rpmio/rpmio.c:618 msgid "File not found on server" msgstr "źšöżĄź ĆÄŔĎŔť ĂŁŔť źö žř˝Ŕ´Ď´Ů" -#: rpmio/rpmio.c:632 +#: rpmio/rpmio.c:621 msgid "Abort in progress" msgstr "ÁřÇŕŔĚ ÁߴܾǞú˝Ŕ´Ď´Ů" -#: rpmio/rpmio.c:636 +#: rpmio/rpmio.c:625 msgid "Unknown or unexpected error" msgstr "žË źö žř´Â ȤŔş żšťóÄĄ ¸řÇŃ żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů" -#: rpmio/rpmio.c:1259 +#: rpmio/rpmio.c:1252 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "%s żĄ %s (Ŕ¸)ˇÎ ąâˇĎ(logging)ÇŐ´Ď´Ů, pw %s\n" @@ -3980,7 +3980,7 @@ msgid "(no error)" msgstr "(żŔˇů žřŔ˝)" #. @-readonlytrans@ -#. FIX: double indeirection. +#. FIX: double indirection. #. @observer@ #: rpmio/rpmlog.c:114 rpmio/rpmlog.c:115 rpmio/rpmlog.c:116 msgid "fatal error: " @@ -4001,37 +4001,37 @@ msgstr "°ć°í: " msgid "memory alloc (%u bytes) returned NULL.\n" msgstr "(%u šŮŔĚĆŽ)ŔÇ ¸Ţ¸đ¸Ž ÇŇ´ç °ŞŔĚ NULLˇÎ šÝČŻľÇžú˝Ŕ´Ď´Ů.\n" -#: rpmio/url.c:103 +#: rpmio/url.c:101 #, c-format msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n" msgstr "°ć°í: u %p ctrl %p nrefs != 0 (%s %s)\n" -#: rpmio/url.c:123 +#: rpmio/url.c:121 #, c-format msgid "warning: u %p data %p nrefs != 0 (%s %s)\n" msgstr "°ć°í: u %p data %p nrefs != 0 (%s %s)\n" -#: rpmio/url.c:151 +#: rpmio/url.c:149 #, c-format msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" msgstr "°ć°í: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" -#: rpmio/url.c:244 +#: rpmio/url.c:242 #, c-format msgid "Password for %s@%s: " msgstr "%s@%s ŔÇ ĆĐ˝şżöľĺ: " -#: rpmio/url.c:269 rpmio/url.c:295 +#: rpmio/url.c:267 rpmio/url.c:293 #, c-format msgid "error: %sport must be a number\n" msgstr "żŔˇů: %s Ć÷ĆŽ´Â šÝľĺ˝Ă źýŔÚŔĚžîžß ÇŐ´Ď´Ů\n" -#: rpmio/url.c:434 +#: rpmio/url.c:432 msgid "url port must be a number\n" msgstr "URL Ć÷ĆŽ´Â šÝľĺ˝Ă źýŔÚŔĚžîžß ÇŐ´Ď´Ů\n" #. XXX Fstrerror -#: rpmio/url.c:497 +#: rpmio/url.c:495 #, c-format msgid "failed to create %s: %s\n" msgstr "%s (Ŕť)¸Ś ťýźşÇĎ´ÂľĽ ˝ÇĆĐÇÔ: %s\n" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-09-21 11:01-0400\n" +"POT-Creation-Date: 2001-09-24 20:14-0400\n" "PO-Revision-Date: 2001-06-27 12:24+0200\n" "Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n" "Language-Team: Norwegian <no@li.org>\n" @@ -1090,15 +1090,15 @@ msgstr "" msgid "exec failed\n" msgstr "kjřring feilet\n" -#: rpm.c:1116 rpmqv.c:1103 +#: rpm.c:1116 rpmqv.c:1104 msgid "unexpected arguments to --querytags " msgstr "uventede argumenter til --querytags " -#: rpm.c:1127 rpmqv.c:1112 +#: rpm.c:1127 rpmqv.c:1113 msgid "no packages given for signature check" msgstr "ingen pakke oppgitt for signatursjekk" -#: rpm.c:1138 rpmqv.c:1121 +#: rpm.c:1138 rpmqv.c:1122 msgid "no packages given for signing" msgstr "ingen pakker oppgitt for signering" @@ -1110,19 +1110,19 @@ msgstr "ingen pakker oppgitt for avinstallering" msgid "no packages given for install" msgstr "ingen pakker oppgitt for installering" -#: rpm.c:1267 rpmqv.c:1066 +#: rpm.c:1267 rpmqv.c:1067 msgid "extra arguments given for query of all packages" msgstr "ekstra argumenter oppgitt for spřrring pĺ alle pakker" -#: rpm.c:1272 rpmqv.c:1075 +#: rpm.c:1272 rpmqv.c:1076 msgid "no arguments given for query" msgstr "ingen argumenter oppgitt for spřrring" -#: rpm.c:1289 rpmqv.c:1091 +#: rpm.c:1289 rpmqv.c:1092 msgid "extra arguments given for verify of all packages" msgstr "ekstra argumenter oppgitt for verfisering av alle pakker" -#: rpm.c:1293 rpmqv.c:1095 +#: rpm.c:1293 rpmqv.c:1096 msgid "no arguments given for verify" msgstr "ingen argumenter oppgitt for verifisering" @@ -1740,17 +1740,17 @@ msgstr "" msgid "line %d: Error parsing %%description: %s\n" msgstr "" -#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:192 +#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:190 #, c-format msgid "line %d: Bad option %s: %s\n" msgstr "linje %d: Ugyldig flagg %s: %s\n" -#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:204 +#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:202 #, c-format msgid "line %d: Too many names: %s\n" msgstr "" -#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:213 +#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:211 #, c-format msgid "line %d: Package does not exist: %s\n" msgstr "" @@ -1982,22 +1982,22 @@ msgstr "linje %d: Filnavn med versjon ikke tillatt: %s\n" msgid "line %d: Version required: %s\n" msgstr "linje %d: Versjon kreves: %s\n" -#: build/parseScript.c:158 +#: build/parseScript.c:156 #, c-format msgid "line %d: triggers must have --: %s\n" msgstr "linje %d: triggere mĺ ha --: %s\n" -#: build/parseScript.c:168 build/parseScript.c:229 +#: build/parseScript.c:166 build/parseScript.c:227 #, c-format msgid "line %d: Error parsing %s: %s\n" msgstr "linje %d: Feil under lesing av %s: %s\n" -#: build/parseScript.c:179 +#: build/parseScript.c:177 #, c-format msgid "line %d: script program must begin with '/': %s\n" msgstr "linje %d: skriptprogram mĺ begynne med '/': %s\n" -#: build/parseScript.c:221 +#: build/parseScript.c:219 #, c-format msgid "line %d: Second %s\n" msgstr "linje %d: Andre %s\n" @@ -2038,11 +2038,11 @@ msgstr "%s:%d: %%endif uten %%if\n" msgid "malformed %%include statement\n" msgstr "ugyldig %%include utsagn\n" -#: build/parseSpec.c:508 +#: build/parseSpec.c:509 msgid "No compatible architectures found for build\n" msgstr "Ingen kompatible arkitekturer funnet for bygging\n" -#: build/parseSpec.c:563 +#: build/parseSpec.c:564 #, c-format msgid "Package has no %%description: %s\n" msgstr "Pakken har ingen %%description: %s\n" @@ -2116,106 +2116,106 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "YES" msgstr "JA" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "NO " msgstr "NEI" -#: lib/depends.c:1021 +#: lib/depends.c:1015 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1131 +#: lib/depends.c:1126 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1222 +#: lib/depends.c:1217 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "" -#: lib/depends.c:1251 +#: lib/depends.c:1246 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1268 +#: lib/depends.c:1263 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "" -#: lib/depends.c:1292 +#: lib/depends.c:1287 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1305 +#: lib/depends.c:1300 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1319 +#: lib/depends.c:1314 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "" -#: lib/depends.c:1335 +#: lib/depends.c:1330 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1356 +#: lib/depends.c:1351 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1428 +#: lib/depends.c:1423 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1507 +#: lib/depends.c:1502 #, c-format msgid "package %s conflicts: %s\n" msgstr "pakke %s er i konflikt: %s\n" -#: lib/depends.c:1753 +#: lib/depends.c:1748 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1902 +#: lib/depends.c:1897 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1960 +#: lib/depends.c:1955 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2010 +#: lib/depends.c:2005 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2062 +#: lib/depends.c:2057 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2091 +#: lib/depends.c:2086 msgid "========== continuing tsort ...\n" msgstr "" #: lib/formats.c:28 lib/formats.c:54 lib/formats.c:85 lib/formats.c:128 -#: lib/header.c:2621 lib/header.c:2642 lib/header.c:2664 +#: lib/header.c:2623 lib/header.c:2644 lib/header.c:2666 msgid "(not a number)" msgstr "" @@ -2238,7 +2238,7 @@ msgstr "feil under kjřring av stat pĺ %s: %s\n" msgid "getting list of mounted filesystems\n" msgstr "henter liste over monterte filsystemer\n" -#: lib/fs.c:153 rpmio/url.c:477 +#: lib/fs.c:153 rpmio/url.c:475 #, c-format msgid "failed to open %s: %s\n" msgstr "klarte ikke ĺ ĺpne %s: %s\n" @@ -2248,46 +2248,46 @@ msgstr "klarte ikke ĺ ĺpne %s: %s\n" msgid "file %s is on an unknown device\n" msgstr "fil %s er pĺ en ukjent enhet\n" -#: lib/fsm.c:290 +#: lib/fsm.c:288 msgid "========= Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:292 +#: lib/fsm.c:290 #, c-format msgid "%9d %s\n" msgstr "%9d %s\n" -#: lib/fsm.c:1130 +#: lib/fsm.c:1124 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1407 +#: lib/fsm.c:1401 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1526 lib/fsm.c:1651 +#: lib/fsm.c:1520 lib/fsm.c:1645 #, c-format msgid "%s saved as %s\n" msgstr "%s lagret som %s\n" -#: lib/fsm.c:1677 +#: lib/fsm.c:1671 #, 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:1683 +#: lib/fsm.c:1677 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s rmdir av %s feilet: %s\n" -#: lib/fsm.c:1693 +#: lib/fsm.c:1687 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s unlink av %s feilet: %s\n" -#: lib/fsm.c:1712 +#: lib/fsm.c:1706 #, c-format msgid "%s created as %s\n" msgstr "%s opprettet som %s\n" @@ -2303,77 +2303,77 @@ msgid "Data type %d not supported\n" msgstr "Datatype %d ikke střttet\n" #. @-observertrans -readonlytrans@ -#: lib/header.c:1930 +#: lib/header.c:1932 #, c-format msgid "missing { after %" msgstr "mangler { etter %" #. @-observertrans -readonlytrans@ -#: lib/header.c:1960 +#: lib/header.c:1962 msgid "missing } after %{" msgstr "mangler } etter %{" #. @-observertrans -readonlytrans@ -#: lib/header.c:1974 +#: lib/header.c:1976 msgid "empty tag format" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1988 +#: lib/header.c:1990 msgid "empty tag name" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2005 +#: lib/header.c:2007 msgid "unknown tag" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2032 +#: lib/header.c:2034 msgid "] expected at end of array" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2050 +#: lib/header.c:2052 msgid "unexpected ]" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2054 +#: lib/header.c:2056 msgid "unexpected }" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2120 +#: lib/header.c:2122 msgid "? expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2129 +#: lib/header.c:2131 msgid "{ expected after ? in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2142 lib/header.c:2184 +#: lib/header.c:2144 lib/header.c:2186 msgid "} expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2152 +#: lib/header.c:2154 msgid ": expected following ? subexpression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2169 +#: lib/header.c:2171 msgid "{ expected after : in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2194 +#: lib/header.c:2196 msgid "| expected at end of expression" msgstr "" -#: lib/header.c:2381 +#: lib/header.c:2383 msgid "(unknown type)" msgstr "(ukjent type)" @@ -2955,7 +2955,7 @@ msgid "can't query %s: %s\n" msgstr "kan ikke spřrre pĺ %s: %s\n" #: lib/query.c:576 lib/query.c:610 lib/rpminstall.c:309 lib/rpminstall.c:453 -#: lib/rpminstall.c:826 +#: lib/rpminstall.c:824 #, c-format msgid "open of %s failed: %s\n" msgstr "feil under ĺpning av %s: %s\n" @@ -3092,27 +3092,27 @@ msgstr "%s: rpmWriteSignature feilet: %s\n" msgid "%s: No signature available (v1.0 RPM)\n" msgstr "%s: Ingen signatur tilgjengelig (v1.0 RPM)\n" -#: lib/rpmchecksig.c:437 +#: lib/rpmchecksig.c:431 msgid "NOT OK" msgstr "IKKE OK" -#: lib/rpmchecksig.c:438 lib/rpmchecksig.c:452 +#: lib/rpmchecksig.c:432 lib/rpmchecksig.c:446 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:440 lib/rpmchecksig.c:454 +#: lib/rpmchecksig.c:434 lib/rpmchecksig.c:448 msgid ") " msgstr "" -#: lib/rpmchecksig.c:441 lib/rpmchecksig.c:455 +#: lib/rpmchecksig.c:435 lib/rpmchecksig.c:449 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:443 lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 lib/rpmchecksig.c:451 msgid ")" msgstr "" -#: lib/rpmchecksig.c:451 +#: lib/rpmchecksig.c:445 msgid "OK" msgstr "OK" @@ -3161,7 +3161,7 @@ msgstr "feil under lesing fra fil %s\n" msgid "file %s requires a newer version of RPM\n" msgstr "fil %s trenger en nyere versjon av RPM\n" -#: lib/rpminstall.c:445 lib/rpminstall.c:686 +#: lib/rpminstall.c:445 lib/rpminstall.c:684 #, c-format msgid "%s cannot be installed\n" msgstr "" @@ -3208,7 +3208,7 @@ msgstr "kan ikke ĺpne %s: %s\n" msgid "Installing %s\n" msgstr "Installerer %s\n" -#: lib/rpmlead.c:49 +#: lib/rpmlead.c:47 #, c-format msgid "read failed: %s (%d)\n" msgstr "lesing feilet: %s (%d)\n" @@ -3223,88 +3223,88 @@ msgstr "mangler andre ':' ved %s:%d\n" msgid "missing architecture name at %s:%d\n" msgstr "manglende navn pĺ arkitektur ved %s:%d\n" -#: lib/rpmrc.c:325 +#: lib/rpmrc.c:328 #, c-format msgid "Incomplete data line at %s:%d\n" msgstr "Ukomplett datalinje ved %s:%d\n" -#: lib/rpmrc.c:330 +#: lib/rpmrc.c:333 #, c-format msgid "Too many args in data line at %s:%d\n" msgstr "For mange argumenter i datalinje ved %s:%d\n" -#: lib/rpmrc.c:338 +#: lib/rpmrc.c:341 #, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "" -#: lib/rpmrc.c:378 +#: lib/rpmrc.c:384 #, c-format msgid "Incomplete default line at %s:%d\n" msgstr "Ukomplett standardlinje ved %s:%d\n" -#: lib/rpmrc.c:383 +#: lib/rpmrc.c:389 #, c-format msgid "Too many args in default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:585 +#: lib/rpmrc.c:591 #, c-format msgid "Cannot expand %s\n" msgstr "Kan ikke utvide %s\n" -#: lib/rpmrc.c:590 +#: lib/rpmrc.c:596 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "" -#: lib/rpmrc.c:607 +#: lib/rpmrc.c:613 #, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "Kunne ikke ĺpne spec fil %s: %s\n" #. XXX Feof(fd) -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:660 #, c-format msgid "Failed to read %s: %s.\n" msgstr "kunne ikke opprette %s: %s\n" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:697 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "mangler ':' (fant 0x%02X) ved %s:%d\n" -#: lib/rpmrc.c:708 lib/rpmrc.c:782 +#: lib/rpmrc.c:714 lib/rpmrc.c:788 #, c-format msgid "missing argument for %s at %s:%d\n" msgstr "manglende argumentfor %s ved %s:%d\n" -#: lib/rpmrc.c:725 lib/rpmrc.c:747 +#: lib/rpmrc.c:731 lib/rpmrc.c:753 #, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "" -#: lib/rpmrc.c:734 +#: lib/rpmrc.c:740 #, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "kan ikke ĺpne %s ved %s:%d %s\n" -#: lib/rpmrc.c:774 +#: lib/rpmrc.c:780 #, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "manglende arkitektur for %s ved %s:%d\n" -#: lib/rpmrc.c:841 +#: lib/rpmrc.c:847 #, c-format msgid "bad option '%s' at %s:%d\n" msgstr "ugyldig flagg '%s' ved %s:%d\n" -#: lib/rpmrc.c:1436 +#: lib/rpmrc.c:1442 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1437 +#: lib/rpmrc.c:1443 msgid "Please contact rpm-list@redhat.com\n" msgstr "" @@ -3334,141 +3334,141 @@ msgstr "" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:230 +#: lib/signature.c:228 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:290 +#: lib/signature.c:288 #, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "" -#: lib/signature.c:303 +#: lib/signature.c:301 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:310 +#: lib/signature.c:308 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:315 +#: lib/signature.c:313 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:328 lib/signature.c:410 +#: lib/signature.c:326 lib/signature.c:408 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:333 +#: lib/signature.c:331 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:372 lib/signature.c:760 +#: lib/signature.c:370 lib/signature.c:758 msgid "Couldn't exec gpg\n" msgstr "" -#: lib/signature.c:385 +#: lib/signature.c:383 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:392 +#: lib/signature.c:390 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:397 +#: lib/signature.c:395 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:415 +#: lib/signature.c:413 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:443 +#: lib/signature.c:441 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:449 +#: lib/signature.c:447 msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:532 lib/signature.c:607 +#: lib/signature.c:530 lib/signature.c:605 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" -#: lib/signature.c:697 +#: lib/signature.c:695 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" -#: lib/signature.c:789 +#: lib/signature.c:787 msgid "Couldn't exec pgp\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:793 lib/signature.c:846 +#: lib/signature.c:791 lib/signature.c:844 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:826 +#: lib/signature.c:824 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:838 +#: lib/signature.c:836 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/transaction.c:446 +#: lib/transaction.c:447 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:450 +#: lib/transaction.c:451 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/transaction.c:453 +#: lib/transaction.c:454 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "%5d omplasser %s -> %s\n" -#: lib/transaction.c:523 +#: lib/transaction.c:524 #, c-format msgid "excluding multilib path %s%s\n" msgstr "ekskluderer multilib-sti %s%s\n" -#: lib/transaction.c:586 +#: lib/transaction.c:587 #, c-format msgid "excluding %s %s\n" msgstr "eksluderer %s %s\n" -#: lib/transaction.c:596 +#: lib/transaction.c:597 #, c-format msgid "relocating %s to %s\n" msgstr "relokerer %s til %s\n" -#: lib/transaction.c:674 +#: lib/transaction.c:675 #, c-format msgid "relocating directory %s to %s\n" msgstr "relokerer katalog %s til %s\n" -#: lib/transaction.c:808 +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1406 +#: lib/transaction.c:1407 #, c-format msgid "excluding directory %s\n" msgstr "ekskluderer katalog %s\n" @@ -3663,125 +3663,125 @@ msgstr "feil(%d) under lagring av post %s til %s\n" msgid "error(%d) removing record %s from %s\n" msgstr "feil(%d) under fjerning av post %s fra %s\n" -#: rpmdb/rpmdb.c:842 +#: rpmdb/rpmdb.c:846 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:973 +#: rpmdb/rpmdb.c:977 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1206 +#: rpmdb/rpmdb.c:1210 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:1940 rpmdb/rpmdb.c:3122 +#: rpmdb/rpmdb.c:1944 rpmdb/rpmdb.c:3126 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:1991 +#: rpmdb/rpmdb.c:1995 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2256 +#: rpmdb/rpmdb.c:2260 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2325 +#: rpmdb/rpmdb.c:2329 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2334 +#: rpmdb/rpmdb.c:2338 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2529 +#: rpmdb/rpmdb.c:2533 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2607 +#: rpmdb/rpmdb.c:2611 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2618 +#: rpmdb/rpmdb.c:2622 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3011 +#: rpmdb/rpmdb.c:3015 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3041 +#: rpmdb/rpmdb.c:3045 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3068 +#: rpmdb/rpmdb.c:3072 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3072 +#: rpmdb/rpmdb.c:3076 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3078 +#: rpmdb/rpmdb.c:3082 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3080 +#: rpmdb/rpmdb.c:3084 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3087 +#: rpmdb/rpmdb.c:3091 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3098 +#: rpmdb/rpmdb.c:3102 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3162 +#: rpmdb/rpmdb.c:3166 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3180 +#: rpmdb/rpmdb.c:3184 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3188 +#: rpmdb/rpmdb.c:3192 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3190 +#: rpmdb/rpmdb.c:3194 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3200 +#: rpmdb/rpmdb.c:3204 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3202 +#: rpmdb/rpmdb.c:3206 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" @@ -3877,59 +3877,59 @@ msgstr "Fil %s: %s\n" msgid "File %s is smaller than %u bytes\n" msgstr "Fil %s er mindre enn %u bytes\n" -#: rpmio/rpmio.c:599 +#: rpmio/rpmio.c:588 msgid "Success" msgstr "" -#: rpmio/rpmio.c:602 +#: rpmio/rpmio.c:591 msgid "Bad server response" msgstr "" -#: rpmio/rpmio.c:605 +#: rpmio/rpmio.c:594 msgid "Server I/O error" msgstr "" -#: rpmio/rpmio.c:608 +#: rpmio/rpmio.c:597 msgid "Server timeout" msgstr "" -#: rpmio/rpmio.c:611 +#: rpmio/rpmio.c:600 msgid "Unable to lookup server host address" msgstr "" -#: rpmio/rpmio.c:614 +#: rpmio/rpmio.c:603 msgid "Unable to lookup server host name" msgstr "" -#: rpmio/rpmio.c:617 +#: rpmio/rpmio.c:606 msgid "Failed to connect to server" msgstr "" -#: rpmio/rpmio.c:620 +#: rpmio/rpmio.c:609 msgid "Failed to establish data connection to server" msgstr "" -#: rpmio/rpmio.c:623 +#: rpmio/rpmio.c:612 msgid "I/O error to local file" msgstr "" -#: rpmio/rpmio.c:626 +#: rpmio/rpmio.c:615 msgid "Error setting remote server to passive mode" msgstr "" -#: rpmio/rpmio.c:629 +#: rpmio/rpmio.c:618 msgid "File not found on server" msgstr "" -#: rpmio/rpmio.c:632 +#: rpmio/rpmio.c:621 msgid "Abort in progress" msgstr "" -#: rpmio/rpmio.c:636 +#: rpmio/rpmio.c:625 msgid "Unknown or unexpected error" msgstr "" -#: rpmio/rpmio.c:1259 +#: rpmio/rpmio.c:1252 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" @@ -3939,7 +3939,7 @@ msgid "(no error)" msgstr "" #. @-readonlytrans@ -#. FIX: double indeirection. +#. FIX: double indirection. #. @observer@ #: rpmio/rpmlog.c:114 rpmio/rpmlog.c:115 rpmio/rpmlog.c:116 msgid "fatal error: " @@ -3960,37 +3960,37 @@ msgstr "advarsel: " msgid "memory alloc (%u bytes) returned NULL.\n" msgstr "" -#: rpmio/url.c:103 +#: rpmio/url.c:101 #, c-format msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:123 +#: rpmio/url.c:121 #, c-format msgid "warning: u %p data %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:151 +#: rpmio/url.c:149 #, c-format msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" msgstr "advarseo: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" -#: rpmio/url.c:244 +#: rpmio/url.c:242 #, c-format msgid "Password for %s@%s: " msgstr "Passord for %s@%s: " -#: rpmio/url.c:269 rpmio/url.c:295 +#: rpmio/url.c:267 rpmio/url.c:293 #, c-format msgid "error: %sport must be a number\n" msgstr "feil: %s-port mĺ vćre et tall\n" -#: rpmio/url.c:434 +#: rpmio/url.c:432 msgid "url port must be a number\n" msgstr "url-port mĺ vćre et tall\n" #. XXX Fstrerror -#: rpmio/url.c:497 +#: rpmio/url.c:495 #, c-format msgid "failed to create %s: %s\n" msgstr "kunne ikke opprette %s: %s\n" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-09-21 11:01-0400\n" +"POT-Creation-Date: 2001-09-24 20:14-0400\n" "PO-Revision-Date: 1999-05-25 17:00+0100\n" "Last-Translator: Paweł Dziekoński <pdziekonski@mml.ch.pwr.wroc.pl>\n" "Language-Team: Polish <pl@li.org>\n" @@ -1134,15 +1134,15 @@ msgstr "--sign można użyć tylko w trakcie budowania pakietu" msgid "exec failed\n" msgstr "wykonanie nie powiodło się\n" -#: rpm.c:1116 rpmqv.c:1103 +#: rpm.c:1116 rpmqv.c:1104 msgid "unexpected arguments to --querytags " msgstr "nieoczekiwane argumenty dla --querytags " -#: rpm.c:1127 rpmqv.c:1112 +#: rpm.c:1127 rpmqv.c:1113 msgid "no packages given for signature check" msgstr "nie podano nazwy pakietu do sprawdzenia sygnatury" -#: rpm.c:1138 rpmqv.c:1121 +#: rpm.c:1138 rpmqv.c:1122 msgid "no packages given for signing" msgstr "nie podano nazwy pakietu do podpisania" @@ -1154,19 +1154,19 @@ msgstr "nie podano nazw plików do usunięcia" msgid "no packages given for install" msgstr "nie podano nazw plików do zainstalowania" -#: rpm.c:1267 rpmqv.c:1066 +#: rpm.c:1267 rpmqv.c:1067 msgid "extra arguments given for query of all packages" msgstr "zbyt wiele argumentów dla odpytywania wszystkich pakietów" -#: rpm.c:1272 rpmqv.c:1075 +#: rpm.c:1272 rpmqv.c:1076 msgid "no arguments given for query" msgstr "nie podano argumentów dla trybu zapytań" -#: rpm.c:1289 rpmqv.c:1091 +#: rpm.c:1289 rpmqv.c:1092 msgid "extra arguments given for verify of all packages" msgstr "zbyt wiele argumentów dla weryfikacji wszystkich pakietów" -#: rpm.c:1293 rpmqv.c:1095 +#: rpm.c:1293 rpmqv.c:1096 msgid "no arguments given for verify" msgstr "nie podano argumentów dla sprawdzania" @@ -1797,17 +1797,17 @@ msgstr "brak opisu w %%changelog" msgid "line %d: Error parsing %%description: %s\n" msgstr "linia %d: błąd w interpretacji wpisu %%description: %s" -#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:192 +#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:190 #, fuzzy, c-format msgid "line %d: Bad option %s: %s\n" msgstr "linia %d: Błedna opcja %s: %s" -#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:204 +#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:202 #, fuzzy, c-format msgid "line %d: Too many names: %s\n" msgstr "linia %d: Zbyt dużo nazw: %s" -#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:213 +#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:211 #, fuzzy, c-format msgid "line %d: Package does not exist: %s\n" msgstr "linia %d: Pakiet nie istnieje: %s" @@ -2040,22 +2040,22 @@ msgstr "linia %d: Wersja w nazwach plików niedozwolona: %s" msgid "line %d: Version required: %s\n" msgstr "linia %d: Wymagana wersja: %s" -#: build/parseScript.c:158 +#: build/parseScript.c:156 #, fuzzy, c-format msgid "line %d: triggers must have --: %s\n" msgstr "linia %d: triggery muszą mieć --: %s" -#: build/parseScript.c:168 build/parseScript.c:229 +#: build/parseScript.c:166 build/parseScript.c:227 #, fuzzy, c-format msgid "line %d: Error parsing %s: %s\n" msgstr "linia %d: Błąd przetwarzania %s: %s" -#: build/parseScript.c:179 +#: build/parseScript.c:177 #, fuzzy, c-format msgid "line %d: script program must begin with '/': %s\n" msgstr "linia %d: skrypt (tu jako program) musi się zaczynać od '/': %s" -#: build/parseScript.c:221 +#: build/parseScript.c:219 #, fuzzy, c-format msgid "line %d: Second %s\n" msgstr "linia %d: Drugi %s" @@ -2096,12 +2096,12 @@ msgstr "%s:%d: Napotkano %%endif bez if" msgid "malformed %%include statement\n" msgstr "błednie sformatowany wpis %%include" -#: build/parseSpec.c:508 +#: build/parseSpec.c:509 #, fuzzy msgid "No compatible architectures found for build\n" msgstr "Nie można budować na takie architektury" -#: build/parseSpec.c:563 +#: build/parseSpec.c:564 #, fuzzy, c-format msgid "Package has no %%description: %s\n" msgstr "Pakiet nie ma %%description: %s" @@ -2176,107 +2176,107 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "YES" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 #, fuzzy msgid "NO " msgstr "NIE DOBRZE" -#: lib/depends.c:1021 +#: lib/depends.c:1015 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1131 +#: lib/depends.c:1126 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1222 +#: lib/depends.c:1217 #, fuzzy, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "plik %s nie należy do żadnego pakietu\n" -#: lib/depends.c:1251 +#: lib/depends.c:1246 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1268 +#: lib/depends.c:1263 #, fuzzy, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "plik %s nie należy do żadnego pakietu\n" -#: lib/depends.c:1292 +#: lib/depends.c:1287 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1305 +#: lib/depends.c:1300 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1319 +#: lib/depends.c:1314 #, fuzzy, c-format msgid "%s: %-45s YES (db package)\n" msgstr "plik %s nie należy do żadnego pakietu\n" -#: lib/depends.c:1335 +#: lib/depends.c:1330 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1356 +#: lib/depends.c:1351 #, fuzzy, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "plik %s nie należy do żadnego pakietu\n" #. requirements are not satisfied. -#: lib/depends.c:1428 +#: lib/depends.c:1423 #, fuzzy, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "zależności pakietu %s nie zostały spełnione: %s\n" #. conflicts exist. -#: lib/depends.c:1507 +#: lib/depends.c:1502 #, c-format msgid "package %s conflicts: %s\n" msgstr "pakiet %s jest w konflikcie: %s\n" -#: lib/depends.c:1753 +#: lib/depends.c:1748 #, fuzzy, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "usuwanie indeksu grupy\n" #. Record all relations. -#: lib/depends.c:1902 +#: lib/depends.c:1897 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1960 +#: lib/depends.c:1955 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2010 +#: lib/depends.c:2005 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2062 +#: lib/depends.c:2057 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2091 +#: lib/depends.c:2086 msgid "========== continuing tsort ...\n" msgstr "" #: lib/formats.c:28 lib/formats.c:54 lib/formats.c:85 lib/formats.c:128 -#: lib/header.c:2621 lib/header.c:2642 lib/header.c:2664 +#: lib/header.c:2623 lib/header.c:2644 lib/header.c:2666 msgid "(not a number)" msgstr "(nie jest liczbą)" @@ -2299,7 +2299,7 @@ msgstr "stat nie powiodło się %s: %s" msgid "getting list of mounted filesystems\n" msgstr "" -#: lib/fs.c:153 rpmio/url.c:477 +#: lib/fs.c:153 rpmio/url.c:475 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "nie można otworzyć %s: %s" @@ -2309,46 +2309,46 @@ msgstr "nie można otworzyć %s: %s" msgid "file %s is on an unknown device\n" msgstr "plik %s jest na nieznanym urządzeniu" -#: lib/fsm.c:290 +#: lib/fsm.c:288 msgid "========= Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:292 +#: lib/fsm.c:290 #, fuzzy, c-format msgid "%9d %s\n" msgstr "linia %d: %s" -#: lib/fsm.c:1130 +#: lib/fsm.c:1124 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1407 +#: lib/fsm.c:1401 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1526 lib/fsm.c:1651 +#: lib/fsm.c:1520 lib/fsm.c:1645 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "ostrzeżenie: %s zapisany jako %s" -#: lib/fsm.c:1677 +#: lib/fsm.c:1671 #, 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:1683 +#: lib/fsm.c:1677 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "skasowanie katalogu %s nie powiodło się" -#: lib/fsm.c:1693 +#: lib/fsm.c:1687 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "otwarcie %s nie powiodło się\n" -#: lib/fsm.c:1712 +#: lib/fsm.c:1706 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "ostrzeżenie: %s utworzony jako %s" @@ -2365,77 +2365,77 @@ msgid "Data type %d not supported\n" msgstr "Typ danych %d nie jest obsługiwany\n" #. @-observertrans -readonlytrans@ -#: lib/header.c:1930 +#: lib/header.c:1932 #, c-format msgid "missing { after %" msgstr "brak { po %" #. @-observertrans -readonlytrans@ -#: lib/header.c:1960 +#: lib/header.c:1962 msgid "missing } after %{" msgstr "brak } po %{" #. @-observertrans -readonlytrans@ -#: lib/header.c:1974 +#: lib/header.c:1976 msgid "empty tag format" msgstr "pusty format etykiety" #. @-observertrans -readonlytrans@ -#: lib/header.c:1988 +#: lib/header.c:1990 msgid "empty tag name" msgstr "pusta nazwa etykiety" #. @-observertrans -readonlytrans@ -#: lib/header.c:2005 +#: lib/header.c:2007 msgid "unknown tag" msgstr "nieznana etykieta" #. @-observertrans -readonlytrans@ -#: lib/header.c:2032 +#: lib/header.c:2034 msgid "] expected at end of array" msgstr "spodziewany ] na końcu tablicy" #. @-observertrans -readonlytrans@ -#: lib/header.c:2050 +#: lib/header.c:2052 msgid "unexpected ]" msgstr "nie spodziewany ]" #. @-observertrans -readonlytrans@ -#: lib/header.c:2054 +#: lib/header.c:2056 msgid "unexpected }" msgstr "nie spodziewany }" #. @-observertrans -readonlytrans@ -#: lib/header.c:2120 +#: lib/header.c:2122 msgid "? expected in expression" msgstr "spodziewany ? w wyrażeniu" #. @-observertrans -readonlytrans@ -#: lib/header.c:2129 +#: lib/header.c:2131 msgid "{ expected after ? in expression" msgstr "spodziewany { po ? w wyrażeniu" #. @-observertrans -readonlytrans@ -#: lib/header.c:2142 lib/header.c:2184 +#: lib/header.c:2144 lib/header.c:2186 msgid "} expected in expression" msgstr "spodziewany } w wyrażeniu" #. @-observertrans -readonlytrans@ -#: lib/header.c:2152 +#: lib/header.c:2154 msgid ": expected following ? subexpression" msgstr "spodziewany : po podwyrażeniu ?" #. @-observertrans -readonlytrans@ -#: lib/header.c:2169 +#: lib/header.c:2171 msgid "{ expected after : in expression" msgstr "spodziewany { po : w wyrażeniu" #. @-observertrans -readonlytrans@ -#: lib/header.c:2194 +#: lib/header.c:2196 msgid "| expected at end of expression" msgstr "spodziewany | na końcu wyrażenia" -#: lib/header.c:2381 +#: lib/header.c:2383 msgid "(unknown type)" msgstr "(nieznany typ)" @@ -3066,7 +3066,7 @@ msgid "can't query %s: %s\n" msgstr "nie można odwiązać %s: %s\n" #: lib/query.c:576 lib/query.c:610 lib/rpminstall.c:309 lib/rpminstall.c:453 -#: lib/rpminstall.c:826 +#: lib/rpminstall.c:824 #, c-format msgid "open of %s failed: %s\n" msgstr "otwarcie %s nie powiodło się\n" @@ -3205,27 +3205,27 @@ msgstr "%s: rpmReadSignature nie powiodło się\n" msgid "%s: No signature available (v1.0 RPM)\n" msgstr "%s: Sygnatura nie jest dostępna (v1.0 RPM)\n" -#: lib/rpmchecksig.c:437 +#: lib/rpmchecksig.c:431 msgid "NOT OK" msgstr "NIE DOBRZE" -#: lib/rpmchecksig.c:438 lib/rpmchecksig.c:452 +#: lib/rpmchecksig.c:432 lib/rpmchecksig.c:446 msgid " (MISSING KEYS:" msgstr " (BRAK KLUCZY:" -#: lib/rpmchecksig.c:440 lib/rpmchecksig.c:454 +#: lib/rpmchecksig.c:434 lib/rpmchecksig.c:448 msgid ") " msgstr ") " -#: lib/rpmchecksig.c:441 lib/rpmchecksig.c:455 +#: lib/rpmchecksig.c:435 lib/rpmchecksig.c:449 msgid " (UNTRUSTED KEYS:" msgstr "(NIEWIARYGODNE KLUCZE:" -#: lib/rpmchecksig.c:443 lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 lib/rpmchecksig.c:451 msgid ")" msgstr ")" -#: lib/rpmchecksig.c:451 +#: lib/rpmchecksig.c:445 msgid "OK" msgstr "OK" @@ -3275,7 +3275,7 @@ msgstr "błąd czytania z pliku %s\n" msgid "file %s requires a newer version of RPM\n" msgstr "plik %s wymaga nowszej wersji RPM\n" -#: lib/rpminstall.c:445 lib/rpminstall.c:686 +#: lib/rpminstall.c:445 lib/rpminstall.c:684 #, c-format msgid "%s cannot be installed\n" msgstr "%s nie może być zainstalowany\n" @@ -3322,7 +3322,7 @@ msgstr "nie można otworzyć %s\n" msgid "Installing %s\n" msgstr "Instalacja %s\n" -#: lib/rpmlead.c:49 +#: lib/rpmlead.c:47 #, fuzzy, c-format msgid "read failed: %s (%d)\n" msgstr "odczyt nie powiódł się: %s (%d)" @@ -3337,88 +3337,88 @@ msgstr "brak drugiego ':' przy %s:%d" msgid "missing architecture name at %s:%d\n" msgstr "brak nazwy architektury przy %s:%d" -#: lib/rpmrc.c:325 +#: lib/rpmrc.c:328 #, fuzzy, c-format msgid "Incomplete data line at %s:%d\n" msgstr "Niekompletna linia danych przy %s:%d" -#: lib/rpmrc.c:330 +#: lib/rpmrc.c:333 #, fuzzy, c-format msgid "Too many args in data line at %s:%d\n" msgstr "Zbyt wiele argumentów w linii danych przy %s:%d" -#: lib/rpmrc.c:338 +#: lib/rpmrc.c:341 #, fuzzy, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "Błędny numer arch/os: %s (%s:%d)" -#: lib/rpmrc.c:378 +#: lib/rpmrc.c:384 #, fuzzy, c-format msgid "Incomplete default line at %s:%d\n" msgstr "Niekompletna domyślna linia przy %s:%d" -#: lib/rpmrc.c:383 +#: lib/rpmrc.c:389 #, fuzzy, c-format msgid "Too many args in default line at %s:%d\n" msgstr "Zbyt wiele argumentów w linii domyślnej przy %s:%d" -#: lib/rpmrc.c:585 +#: lib/rpmrc.c:591 #, fuzzy, c-format msgid "Cannot expand %s\n" msgstr "Nie można rozszerzyć %s" -#: lib/rpmrc.c:590 +#: lib/rpmrc.c:596 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "" -#: lib/rpmrc.c:607 +#: lib/rpmrc.c:613 #, fuzzy, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "Nie można otworzyć %s do odczytu: %s." #. XXX Feof(fd) -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:660 #, fuzzy, c-format msgid "Failed to read %s: %s.\n" msgstr "Odczytanie %s nie powiodło się: %s." -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:697 #, fuzzy, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "brak ':' przy %s:%d" -#: lib/rpmrc.c:708 lib/rpmrc.c:782 +#: lib/rpmrc.c:714 lib/rpmrc.c:788 #, fuzzy, c-format msgid "missing argument for %s at %s:%d\n" msgstr "brak argumentu dla %s przy %s:%d" -#: lib/rpmrc.c:725 lib/rpmrc.c:747 +#: lib/rpmrc.c:731 lib/rpmrc.c:753 #, fuzzy, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "%s: Open nie powiodło się\n" -#: lib/rpmrc.c:734 +#: lib/rpmrc.c:740 #, fuzzy, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "nie można otworzyć %s przy %s:%d" -#: lib/rpmrc.c:774 +#: lib/rpmrc.c:780 #, fuzzy, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "brak architektury dla %s przy %s:%d" -#: lib/rpmrc.c:841 +#: lib/rpmrc.c:847 #, fuzzy, c-format msgid "bad option '%s' at %s:%d\n" msgstr "błędna opcja '%s' przy %s:%d" -#: lib/rpmrc.c:1436 +#: lib/rpmrc.c:1442 #, c-format msgid "Unknown system: %s\n" msgstr "Nieznany system: %s\n" -#: lib/rpmrc.c:1437 +#: lib/rpmrc.c:1443 msgid "Please contact rpm-list@redhat.com\n" msgstr "Skontaktuj się, proszę, z rpm-list@redhat.com\n" @@ -3449,152 +3449,152 @@ msgstr "Stara sygnatura PGP\n" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Stara (tylko wewnętrzna) sygnatura! Skąd Ty to wziąłeś!?" -#: lib/signature.c:230 +#: lib/signature.c:228 #, fuzzy, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "Rozmiar sygnatury: %d\n" -#: lib/signature.c:290 +#: lib/signature.c:288 #, fuzzy, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "Nie można uruchomić pgp" -#: lib/signature.c:303 +#: lib/signature.c:301 #, fuzzy msgid "pgp failed\n" msgstr "pgp nie powiodło się" #. PGP failed to write signature #. Just in case -#: lib/signature.c:310 +#: lib/signature.c:308 #, fuzzy msgid "pgp failed to write signature\n" msgstr "zapisanie sygnatury przez pgp nie powiodło się" -#: lib/signature.c:315 +#: lib/signature.c:313 #, c-format msgid "PGP sig size: %d\n" msgstr "rozmiar sygnatury PGP: %d\n" -#: lib/signature.c:328 lib/signature.c:410 +#: lib/signature.c:326 lib/signature.c:408 #, fuzzy msgid "unable to read the signature\n" msgstr "nie można odczytać sygnatury" -#: lib/signature.c:333 +#: lib/signature.c:331 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "Mam %d bajtów sygnatury PGP\n" -#: lib/signature.c:372 lib/signature.c:760 +#: lib/signature.c:370 lib/signature.c:758 #, fuzzy msgid "Couldn't exec gpg\n" msgstr "Nie można uruchomić gpg" -#: lib/signature.c:385 +#: lib/signature.c:383 #, fuzzy msgid "gpg failed\n" msgstr "gpg nie powiodło się" #. GPG failed to write signature #. Just in case -#: lib/signature.c:392 +#: lib/signature.c:390 #, fuzzy msgid "gpg failed to write signature\n" msgstr "zapisanie sygnatury przez gpg nie powiodło się" -#: lib/signature.c:397 +#: lib/signature.c:395 #, c-format msgid "GPG sig size: %d\n" msgstr "rozmiar sygnatury GPG: %d\n" -#: lib/signature.c:415 +#: lib/signature.c:413 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "Mam %d bajtów sygnatury GPG\n" -#: lib/signature.c:443 +#: lib/signature.c:441 #, fuzzy msgid "Generating signature using PGP.\n" msgstr "Generowanie sygnatury: %d\n" -#: lib/signature.c:449 +#: lib/signature.c:447 #, fuzzy msgid "Generating signature using GPG.\n" msgstr "Generowanie sygnatury: %d\n" -#: lib/signature.c:532 lib/signature.c:607 +#: lib/signature.c:530 lib/signature.c:605 #, fuzzy msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "Nie można uruchomić pgp. Użyj --nopgp aby pominąć sprawdz. PGP" -#: lib/signature.c:697 +#: lib/signature.c:695 #, fuzzy msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "Nie można uruchomić gpg. Użyj --nopgp aby pominąć sprawdz. GPG" -#: lib/signature.c:789 +#: lib/signature.c:787 #, fuzzy msgid "Couldn't exec pgp\n" msgstr "Nie można uruchomić pgp" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:793 lib/signature.c:846 +#: lib/signature.c:791 lib/signature.c:844 #, fuzzy, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "Błędny %%_signature spec w pliku makra.\n" -#: lib/signature.c:826 +#: lib/signature.c:824 #, fuzzy, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "Musisz ustawić \"%%_gpg_name\" w pliku swego makra" -#: lib/signature.c:838 +#: lib/signature.c:836 #, fuzzy, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "Musisz ustawić \"%%_pgp_name\" w pliku swego makra" -#: lib/transaction.c:446 +#: lib/transaction.c:447 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:450 +#: lib/transaction.c:451 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "Ten OS nie jest wspierany: %s" -#: lib/transaction.c:453 +#: lib/transaction.c:454 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "przesuwanie %s do %s\n" -#: lib/transaction.c:523 +#: lib/transaction.c:524 #, fuzzy, c-format msgid "excluding multilib path %s%s\n" msgstr "wyłączanie %s\n" -#: lib/transaction.c:586 +#: lib/transaction.c:587 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "wyłączanie %s\n" -#: lib/transaction.c:596 +#: lib/transaction.c:597 #, c-format msgid "relocating %s to %s\n" msgstr "przesuwanie %s do %s\n" -#: lib/transaction.c:674 +#: lib/transaction.c:675 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "przesuwanie %s do %s\n" -#: lib/transaction.c:808 +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s pominięty z powodu flagi missingok\n" -#: lib/transaction.c:1406 +#: lib/transaction.c:1407 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "tworzenie katalogu: %s\n" @@ -3796,12 +3796,12 @@ msgstr "błąd zapisywania rekordu %s do %s" msgid "error(%d) removing record %s from %s\n" msgstr "błąd usuwania rekordu %s z %s" -#: rpmdb/rpmdb.c:842 +#: rpmdb/rpmdb.c:846 #, fuzzy msgid "no dbpath has been set\n" msgstr "ścieżka bazy danych nie została podana" -#: rpmdb/rpmdb.c:973 +#: rpmdb/rpmdb.c:977 #, fuzzy msgid "" "old format database is present; use --rebuilddb to generate a new format " @@ -3811,115 +3811,115 @@ msgstr "" "nowym formacie" #. error -#: rpmdb/rpmdb.c:1206 +#: rpmdb/rpmdb.c:1210 #, fuzzy, c-format msgid "error(%d) counting packages\n" msgstr "błąd szukania pakietu %s\n" -#: rpmdb/rpmdb.c:1940 rpmdb/rpmdb.c:3122 +#: rpmdb/rpmdb.c:1944 rpmdb/rpmdb.c:3126 #, fuzzy, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "rekord numer %d w bazie danych jest błędny -- rekord pominięto" -#: rpmdb/rpmdb.c:1991 +#: rpmdb/rpmdb.c:1995 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2256 +#: rpmdb/rpmdb.c:2260 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "nie można odczytać nagłówka przy %d dla poszukiwania" -#: rpmdb/rpmdb.c:2325 +#: rpmdb/rpmdb.c:2329 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "usuwanie indeksu grupy\n" -#: rpmdb/rpmdb.c:2334 +#: rpmdb/rpmdb.c:2338 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "usuwanie indeksu nazw\n" -#: rpmdb/rpmdb.c:2529 +#: rpmdb/rpmdb.c:2533 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "błąd szukania pakietu %s\n" -#: rpmdb/rpmdb.c:2607 +#: rpmdb/rpmdb.c:2611 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "zmiana nazwy %s na %s\n" -#: rpmdb/rpmdb.c:2618 +#: rpmdb/rpmdb.c:2622 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "zmiana nazwy %s na %s\n" -#: rpmdb/rpmdb.c:3011 +#: rpmdb/rpmdb.c:3015 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3041 +#: rpmdb/rpmdb.c:3045 msgid "no dbpath has been set" msgstr "ścieżka bazy danych nie została podana" -#: rpmdb/rpmdb.c:3068 +#: rpmdb/rpmdb.c:3072 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "odbudowywuję bazę danych w rootdir %s\n" -#: rpmdb/rpmdb.c:3072 +#: rpmdb/rpmdb.c:3076 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "tymczasowa baza danych %s już istnieje" -#: rpmdb/rpmdb.c:3078 +#: rpmdb/rpmdb.c:3082 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "tworzenie katalogu: %s\n" -#: rpmdb/rpmdb.c:3080 +#: rpmdb/rpmdb.c:3084 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "tworzenie katalogu: %s\n" -#: rpmdb/rpmdb.c:3087 +#: rpmdb/rpmdb.c:3091 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "otwieranie starej bazy danych\n" -#: rpmdb/rpmdb.c:3098 +#: rpmdb/rpmdb.c:3102 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "otwieranie nowej bazy danych\n" -#: rpmdb/rpmdb.c:3162 +#: rpmdb/rpmdb.c:3166 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "nie można dodać rekordu oryginalnie przy %d" -#: rpmdb/rpmdb.c:3180 +#: rpmdb/rpmdb.c:3184 #, fuzzy msgid "failed to rebuild database: original database remains in place\n" msgstr "przebudowanie bazy nie powiodło się; stara pozostała na miejscu\n" -#: rpmdb/rpmdb.c:3188 +#: rpmdb/rpmdb.c:3192 msgid "failed to replace old database with new database!\n" msgstr "zamiana starej bazy na nową nie powiodła się!\n" -#: rpmdb/rpmdb.c:3190 +#: rpmdb/rpmdb.c:3194 #, fuzzy, c-format msgid "replace files in %s with files from %s to recover" msgstr "naprawcze zastępowanie plików w %s plikami z %s" -#: rpmdb/rpmdb.c:3200 +#: rpmdb/rpmdb.c:3204 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "tworzenie katalogu: %s\n" -#: rpmdb/rpmdb.c:3202 +#: rpmdb/rpmdb.c:3206 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "usunięcie katalogu %s nie powiodło się: %s\n" @@ -4016,61 +4016,61 @@ msgstr "Plik %s: %s" msgid "File %s is smaller than %u bytes\n" msgstr "Plik %s jest mniejszy niż %d bajtów" -#: rpmio/rpmio.c:599 +#: rpmio/rpmio.c:588 msgid "Success" msgstr "Sukces" -#: rpmio/rpmio.c:602 +#: rpmio/rpmio.c:591 msgid "Bad server response" msgstr "Błędna odpowiedź serwera" -#: rpmio/rpmio.c:605 +#: rpmio/rpmio.c:594 #, fuzzy msgid "Server I/O error" msgstr "Błąd WE/WY(IO) serwera" -#: rpmio/rpmio.c:608 +#: rpmio/rpmio.c:597 msgid "Server timeout" msgstr "Przekroczony limit czasu serwera" -#: rpmio/rpmio.c:611 +#: rpmio/rpmio.c:600 msgid "Unable to lookup server host address" msgstr "Nie można znaleźć adresu serwera" -#: rpmio/rpmio.c:614 +#: rpmio/rpmio.c:603 msgid "Unable to lookup server host name" msgstr "Nie można znaleźć nazwy serwera" -#: rpmio/rpmio.c:617 +#: rpmio/rpmio.c:606 msgid "Failed to connect to server" msgstr "Połączenie z serwerem nie powiodło się" -#: rpmio/rpmio.c:620 +#: rpmio/rpmio.c:609 msgid "Failed to establish data connection to server" msgstr "Otwarcie transmisji danych z serwera nie powiodło się" -#: rpmio/rpmio.c:623 +#: rpmio/rpmio.c:612 #, fuzzy msgid "I/O error to local file" msgstr "Błąd WE/WY(IO) na lokalnym pliku" -#: rpmio/rpmio.c:626 +#: rpmio/rpmio.c:615 msgid "Error setting remote server to passive mode" msgstr "Błąd: ustawienie zdalnego serwera w tryb pasywny nie powiodło się" -#: rpmio/rpmio.c:629 +#: rpmio/rpmio.c:618 msgid "File not found on server" msgstr "Plik nie został znaleziony na serwerze" -#: rpmio/rpmio.c:632 +#: rpmio/rpmio.c:621 msgid "Abort in progress" msgstr "Przerywanie ..." -#: rpmio/rpmio.c:636 +#: rpmio/rpmio.c:625 msgid "Unknown or unexpected error" msgstr "Nieznany lub nieoczekiwany błąd" -#: rpmio/rpmio.c:1259 +#: rpmio/rpmio.c:1252 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "logowanie do %s jako %s, hasło %s\n" @@ -4081,7 +4081,7 @@ msgid "(no error)" msgstr "(błąd 0x%x)" #. @-readonlytrans@ -#. FIX: double indeirection. +#. FIX: double indirection. #. @observer@ #: rpmio/rpmlog.c:114 rpmio/rpmlog.c:115 rpmio/rpmlog.c:116 msgid "fatal error: " @@ -4102,37 +4102,37 @@ msgstr "ostrzeżenie: " msgid "memory alloc (%u bytes) returned NULL.\n" msgstr "" -#: rpmio/url.c:103 +#: rpmio/url.c:101 #, c-format msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:123 +#: rpmio/url.c:121 #, c-format msgid "warning: u %p data %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:151 +#: rpmio/url.c:149 #, c-format msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" msgstr "" -#: rpmio/url.c:244 +#: rpmio/url.c:242 #, c-format msgid "Password for %s@%s: " msgstr "Hasło dla %s@%s: " -#: rpmio/url.c:269 rpmio/url.c:295 +#: rpmio/url.c:267 rpmio/url.c:293 #, c-format msgid "error: %sport must be a number\n" msgstr "błąd: %sport musi być liczbą\n" -#: rpmio/url.c:434 +#: rpmio/url.c:432 msgid "url port must be a number\n" msgstr "port musi być liczbą\n" #. XXX Fstrerror -#: rpmio/url.c:497 +#: rpmio/url.c:495 #, fuzzy, c-format msgid "failed to create %s: %s\n" msgstr "utworzenie %s nie powiodło się\n" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-09-21 11:01-0400\n" +"POT-Creation-Date: 2001-09-24 20:14-0400\n" "PO-Revision-Date: 2000-06-22 01:13+01:00\n" "Last-Translator: José Nuno Coelho Sanarra Pires\n" "Language-Team: pt <kde@poli.org>\n" @@ -1077,15 +1077,15 @@ msgstr "o --sign só pode ser usado na criaçăo do pacote" msgid "exec failed\n" msgstr "o exec falhou\n" -#: rpm.c:1116 rpmqv.c:1103 +#: rpm.c:1116 rpmqv.c:1104 msgid "unexpected arguments to --querytags " msgstr "argumentos inesperados no --querytags " -#: rpm.c:1127 rpmqv.c:1112 +#: rpm.c:1127 rpmqv.c:1113 msgid "no packages given for signature check" msgstr "năo foram indicados pacotes para verificar as assinaturas" -#: rpm.c:1138 rpmqv.c:1121 +#: rpm.c:1138 rpmqv.c:1122 msgid "no packages given for signing" msgstr "năo foram indicados pacotes para assinar" @@ -1097,19 +1097,19 @@ msgstr "năo foram indicados pacote para desinstalar" msgid "no packages given for install" msgstr "năo foram indicados pacotes para instalar" -#: rpm.c:1267 rpmqv.c:1066 +#: rpm.c:1267 rpmqv.c:1067 msgid "extra arguments given for query of all packages" msgstr "indicados argumentos extra na pesquisa de todos os pacotes" -#: rpm.c:1272 rpmqv.c:1075 +#: rpm.c:1272 rpmqv.c:1076 msgid "no arguments given for query" msgstr "năo foram indicados argumentos para a pesquisa" -#: rpm.c:1289 rpmqv.c:1091 +#: rpm.c:1289 rpmqv.c:1092 msgid "extra arguments given for verify of all packages" msgstr "indicados argumentos extra para a verificaçăo de todos os pacotes" -#: rpm.c:1293 rpmqv.c:1095 +#: rpm.c:1293 rpmqv.c:1096 msgid "no arguments given for verify" msgstr "năo foram indicados argumentos para a verificaçăo" @@ -1728,17 +1728,17 @@ msgstr "falta a descriçăo no %%changelog\n" msgid "line %d: Error parsing %%description: %s\n" msgstr "linha %d: Erro ao analisar a %%description: %s\n" -#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:192 +#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:190 #, c-format msgid "line %d: Bad option %s: %s\n" msgstr "linha %d: Opçăo inválida %s: %s\n" -#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:204 +#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:202 #, c-format msgid "line %d: Too many names: %s\n" msgstr "linha %d: Demasiados nomes: %s\n" -#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:213 +#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:211 #, c-format msgid "line %d: Package does not exist: %s\n" msgstr "linha %d: O pacote năo existe: %s\n" @@ -1968,22 +1968,22 @@ msgstr "linha %d: Nome do ficheiro com versăo năo permitido: %s\n" msgid "line %d: Version required: %s\n" msgstr "linha %d: Necessária a versăo: %s\n" -#: build/parseScript.c:158 +#: build/parseScript.c:156 #, c-format msgid "line %d: triggers must have --: %s\n" msgstr "linha %d: os 'triggers' (que activam) tęm de ter --: %s\n" -#: build/parseScript.c:168 build/parseScript.c:229 +#: build/parseScript.c:166 build/parseScript.c:227 #, c-format msgid "line %d: Error parsing %s: %s\n" msgstr "linha %d: Erro ao analisar o %s: %s\n" -#: build/parseScript.c:179 +#: build/parseScript.c:177 #, c-format msgid "line %d: script program must begin with '/': %s\n" msgstr "linha %d: o programa de 'script' tem de começar por '/': %s\n" -#: build/parseScript.c:221 +#: build/parseScript.c:219 #, c-format msgid "line %d: Second %s\n" msgstr "linha %d: Segundo %s\n" @@ -2024,12 +2024,12 @@ msgstr "%s:%d: Descobri um %%endif sem um %%if\n" msgid "malformed %%include statement\n" msgstr "instruçăo %%include desorganizada\n" -#: build/parseSpec.c:508 +#: build/parseSpec.c:509 #, fuzzy msgid "No compatible architectures found for build\n" msgstr "Năo foram indicadas arquitecturas para as quais criar\n" -#: build/parseSpec.c:563 +#: build/parseSpec.c:564 #, c-format msgid "Package has no %%description: %s\n" msgstr "O pacote năo tem uma %%description: %s\n" @@ -2106,107 +2106,107 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr " %s A %s\tB %s\n" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "YES" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 #, fuzzy msgid "NO " msgstr "NĂO-OK" -#: lib/depends.c:1021 +#: lib/depends.c:1015 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "%s: %-45s SIM (ficheiros adicionados)\n" -#: lib/depends.c:1131 +#: lib/depends.c:1126 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "%s: %-45s SIM (oferecidos para adiçăo)\n" -#: lib/depends.c:1222 +#: lib/depends.c:1217 #, fuzzy, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "%s: %-45s %-3s (em cache)\n" -#: lib/depends.c:1251 +#: lib/depends.c:1246 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "%s: %-45s SIM (oferecidos pelo rpmrc)\n" -#: lib/depends.c:1268 +#: lib/depends.c:1263 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "%s: %-45s SIM (oferecidos pela rpmlib)\n" -#: lib/depends.c:1292 +#: lib/depends.c:1287 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "%s: %-45s SIM (ficheiros db)\n" -#: lib/depends.c:1305 +#: lib/depends.c:1300 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "%s: %-45s SI (oferecidos pelo db)\n" -#: lib/depends.c:1319 +#: lib/depends.c:1314 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "%s: %-45s SIM (pacote db)\n" -#: lib/depends.c:1335 +#: lib/depends.c:1330 #, c-format msgid "%s: %-45s NO\n" msgstr "%s: %-45s NĂO\n" -#: lib/depends.c:1356 +#: lib/depends.c:1351 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "%s: (%s, %s) adicionado ŕ cache de dependęncias.\n" #. requirements are not satisfied. -#: lib/depends.c:1428 +#: lib/depends.c:1423 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "requisito %s-%s-%s do pacote năo satisfeito: %s\n" #. conflicts exist. -#: lib/depends.c:1507 +#: lib/depends.c:1502 #, c-format msgid "package %s conflicts: %s\n" msgstr "o pacote %s está em conflito: %s\n" -#: lib/depends.c:1753 +#: lib/depends.c:1748 #, c-format msgid "removing %s-%s-%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:1902 +#: lib/depends.c:1897 msgid "========== recording tsort relations\n" msgstr "=========== a guardar as relaçőes do tsort\n" #. T4. Scan for zeroes. -#: lib/depends.c:1960 +#: lib/depends.c:1955 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2010 +#: lib/depends.c:2005 msgid "========== successors only (presentation order)\n" msgstr "========== só os sucessores (ordem de apresentaçăo)\n" -#: lib/depends.c:2062 +#: lib/depends.c:2057 msgid "LOOP:\n" msgstr "CICLO:\n" -#: lib/depends.c:2091 +#: lib/depends.c:2086 msgid "========== continuing tsort ...\n" msgstr "========== a prosseguir o tsort ...\n" #: lib/formats.c:28 lib/formats.c:54 lib/formats.c:85 lib/formats.c:128 -#: lib/header.c:2621 lib/header.c:2642 lib/header.c:2664 +#: lib/header.c:2623 lib/header.c:2644 lib/header.c:2666 msgid "(not a number)" msgstr "(năo é um número)" @@ -2229,7 +2229,7 @@ msgstr "Năo consegui analisar o %s: %s\n" msgid "getting list of mounted filesystems\n" msgstr "a obter a lista dos sistemas de ficheiros montados\n" -#: lib/fs.c:153 rpmio/url.c:477 +#: lib/fs.c:153 rpmio/url.c:475 #, c-format msgid "failed to open %s: %s\n" msgstr "falhei ao aceder ao %s: %s\n" @@ -2239,46 +2239,46 @@ msgstr "falhei ao aceder ao %s: %s\n" msgid "file %s is on an unknown device\n" msgstr "o ficheiro %s está num dispositivo desconhecido\n" -#: lib/fsm.c:290 +#: lib/fsm.c:288 msgid "========= Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:292 +#: lib/fsm.c:290 #, fuzzy, c-format msgid "%9d %s\n" msgstr "linha %d: %s\n" -#: lib/fsm.c:1130 +#: lib/fsm.c:1124 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1407 +#: lib/fsm.c:1401 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1526 lib/fsm.c:1651 +#: lib/fsm.c:1520 lib/fsm.c:1645 #, c-format msgid "%s saved as %s\n" msgstr "%s gravado como %s\n" -#: lib/fsm.c:1677 +#: lib/fsm.c:1671 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "năo consigo remover a %s - a directoria năo está vazia\n" -#: lib/fsm.c:1683 +#: lib/fsm.c:1677 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "o rmdir da %s falhou: %s\n" -#: lib/fsm.c:1693 +#: lib/fsm.c:1687 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "o acesso ao %s falhou: %s\n" -#: lib/fsm.c:1712 +#: lib/fsm.c:1706 #, c-format msgid "%s created as %s\n" msgstr "%s criado como %s\n" @@ -2294,77 +2294,77 @@ msgid "Data type %d not supported\n" msgstr "O tipo de dados %d năo é suportado\n" #. @-observertrans -readonlytrans@ -#: lib/header.c:1930 +#: lib/header.c:1932 #, c-format msgid "missing { after %" msgstr "falta um { depois do %" #. @-observertrans -readonlytrans@ -#: lib/header.c:1960 +#: lib/header.c:1962 msgid "missing } after %{" msgstr "falta um } depois do %{" #. @-observertrans -readonlytrans@ -#: lib/header.c:1974 +#: lib/header.c:1976 msgid "empty tag format" msgstr "formato da opçăo em branco" #. @-observertrans -readonlytrans@ -#: lib/header.c:1988 +#: lib/header.c:1990 msgid "empty tag name" msgstr "nome da opçăo em branco" #. @-observertrans -readonlytrans@ -#: lib/header.c:2005 +#: lib/header.c:2007 msgid "unknown tag" msgstr "opçăo desconhecida" #. @-observertrans -readonlytrans@ -#: lib/header.c:2032 +#: lib/header.c:2034 msgid "] expected at end of array" msgstr "] esperado no fim do vector" #. @-observertrans -readonlytrans@ -#: lib/header.c:2050 +#: lib/header.c:2052 msgid "unexpected ]" msgstr "] inesperado" #. @-observertrans -readonlytrans@ -#: lib/header.c:2054 +#: lib/header.c:2056 msgid "unexpected }" msgstr "} inesperado" #. @-observertrans -readonlytrans@ -#: lib/header.c:2120 +#: lib/header.c:2122 msgid "? expected in expression" msgstr "esperado um ? na expressăo" #. @-observertrans -readonlytrans@ -#: lib/header.c:2129 +#: lib/header.c:2131 msgid "{ expected after ? in expression" msgstr "esperado um { a seguir ao ? na expressăo" #. @-observertrans -readonlytrans@ -#: lib/header.c:2142 lib/header.c:2184 +#: lib/header.c:2144 lib/header.c:2186 msgid "} expected in expression" msgstr "esperado um } na expressăo" #. @-observertrans -readonlytrans@ -#: lib/header.c:2152 +#: lib/header.c:2154 msgid ": expected following ? subexpression" msgstr "esperado um : a seguir ŕ sub-expressăo ?" #. @-observertrans -readonlytrans@ -#: lib/header.c:2169 +#: lib/header.c:2171 msgid "{ expected after : in expression" msgstr "esperado um { a seguir ao : na expressăo" #. @-observertrans -readonlytrans@ -#: lib/header.c:2194 +#: lib/header.c:2196 msgid "| expected at end of expression" msgstr "esperado um | no fim da expressăo" -#: lib/header.c:2381 +#: lib/header.c:2383 msgid "(unknown type)" msgstr "(tipo desconhecido)" @@ -2960,7 +2960,7 @@ msgid "can't query %s: %s\n" msgstr "năo consigo pesquisar o %s: %s\n" #: lib/query.c:576 lib/query.c:610 lib/rpminstall.c:309 lib/rpminstall.c:453 -#: lib/rpminstall.c:826 +#: lib/rpminstall.c:824 #, c-format msgid "open of %s failed: %s\n" msgstr "o acesso ao %s falhou: %s\n" @@ -3097,27 +3097,27 @@ msgstr "%s: o rpmWriteSignature falhou: %s\n" msgid "%s: No signature available (v1.0 RPM)\n" msgstr "%s: Nenhuma assinatura disponível (RPM v1.0)\n" -#: lib/rpmchecksig.c:437 +#: lib/rpmchecksig.c:431 msgid "NOT OK" msgstr "NĂO-OK" -#: lib/rpmchecksig.c:438 lib/rpmchecksig.c:452 +#: lib/rpmchecksig.c:432 lib/rpmchecksig.c:446 msgid " (MISSING KEYS:" msgstr " (FALTAM AS CHAVES:" -#: lib/rpmchecksig.c:440 lib/rpmchecksig.c:454 +#: lib/rpmchecksig.c:434 lib/rpmchecksig.c:448 msgid ") " msgstr ") " -#: lib/rpmchecksig.c:441 lib/rpmchecksig.c:455 +#: lib/rpmchecksig.c:435 lib/rpmchecksig.c:449 msgid " (UNTRUSTED KEYS:" msgstr " (CHAVES SUSPEITAS:" -#: lib/rpmchecksig.c:443 lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 lib/rpmchecksig.c:451 msgid ")" msgstr ")" -#: lib/rpmchecksig.c:451 +#: lib/rpmchecksig.c:445 msgid "OK" msgstr "OK" @@ -3166,7 +3166,7 @@ msgstr "erro ao ler do ficheiros %s\n" msgid "file %s requires a newer version of RPM\n" msgstr "o %s precisa duma versăo mais recente do RPM\n" -#: lib/rpminstall.c:445 lib/rpminstall.c:686 +#: lib/rpminstall.c:445 lib/rpminstall.c:684 #, c-format msgid "%s cannot be installed\n" msgstr "o %s năo pode ser instalado\n" @@ -3213,7 +3213,7 @@ msgstr "năo consigo aceder ao %s: %s\n" msgid "Installing %s\n" msgstr "A instalar o %s\n" -#: lib/rpmlead.c:49 +#: lib/rpmlead.c:47 #, c-format msgid "read failed: %s (%d)\n" msgstr "a leitura falhou: %s (%d)\n" @@ -3228,88 +3228,88 @@ msgstr "falta o segundo ':' em %s:%d\n" msgid "missing architecture name at %s:%d\n" msgstr "falta o nome da arquitectura em %s:%d\n" -#: lib/rpmrc.c:325 +#: lib/rpmrc.c:328 #, c-format msgid "Incomplete data line at %s:%d\n" msgstr "Linha de dados incompleta em %s:%d\n" -#: lib/rpmrc.c:330 +#: lib/rpmrc.c:333 #, c-format msgid "Too many args in data line at %s:%d\n" msgstr "Demasiados argumentos na linha de dados em %s:%d\n" -#: lib/rpmrc.c:338 +#: lib/rpmrc.c:341 #, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "Número de arq./SO errado: %s (%s:%d)\n" -#: lib/rpmrc.c:378 +#: lib/rpmrc.c:384 #, c-format msgid "Incomplete default line at %s:%d\n" msgstr "Linha por omissăo incompleta em %s:%d\n" -#: lib/rpmrc.c:383 +#: lib/rpmrc.c:389 #, c-format msgid "Too many args in default line at %s:%d\n" msgstr "Demasiados argumentos na linha por omissăo em %s:%d\n" -#: lib/rpmrc.c:585 +#: lib/rpmrc.c:591 #, c-format msgid "Cannot expand %s\n" msgstr "Năo consigo expandir o %s\n" -#: lib/rpmrc.c:590 +#: lib/rpmrc.c:596 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "Năo consigo ler o %s, a HOME é demasiado grande.\n" -#: lib/rpmrc.c:607 +#: lib/rpmrc.c:613 #, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "Năo consegui abrir o %s para leitura: %s.\n" #. XXX Feof(fd) -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:660 #, c-format msgid "Failed to read %s: %s.\n" msgstr "Năo consegui ler o %s: %s.\n" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:697 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "falta um ':' (encontrado um 0x%02x) em %s:%d\n" -#: lib/rpmrc.c:708 lib/rpmrc.c:782 +#: lib/rpmrc.c:714 lib/rpmrc.c:788 #, c-format msgid "missing argument for %s at %s:%d\n" msgstr "faltam argumentos para o %s em %s:%d\n" -#: lib/rpmrc.c:725 lib/rpmrc.c:747 +#: lib/rpmrc.c:731 lib/rpmrc.c:753 #, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "a expansăo do %s falhou em %s:%d \"%s\"\n" -#: lib/rpmrc.c:734 +#: lib/rpmrc.c:740 #, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "năo consigo abrir o %s em %s:%d: %s\n" -#: lib/rpmrc.c:774 +#: lib/rpmrc.c:780 #, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "falta a arquitectura para o %s em %s:%d\n" -#: lib/rpmrc.c:841 +#: lib/rpmrc.c:847 #, c-format msgid "bad option '%s' at %s:%d\n" msgstr "má opçăo '%s' em %s:%d\n" -#: lib/rpmrc.c:1436 +#: lib/rpmrc.c:1442 #, c-format msgid "Unknown system: %s\n" msgstr "Sistema desconhecido: %s\n" -#: lib/rpmrc.c:1437 +#: lib/rpmrc.c:1443 msgid "Please contact rpm-list@redhat.com\n" msgstr "Por favor contacte o rpm-list@redhat.com\n" @@ -3339,141 +3339,141 @@ msgstr "Assinatura PGP antiga\n" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Assinatura (só interna) antiga! Como é que obteve isto!?\n" -#: lib/signature.c:230 +#: lib/signature.c:228 #, fuzzy, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "Tamanho da assinatura: %d\n" -#: lib/signature.c:290 +#: lib/signature.c:288 #, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "Năo consigo executar o pgp (%s)\n" -#: lib/signature.c:303 +#: lib/signature.c:301 msgid "pgp failed\n" msgstr "o pgp falhou\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:310 +#: lib/signature.c:308 msgid "pgp failed to write signature\n" msgstr "o pgp năo conseguiu gravar a assinatura\n" -#: lib/signature.c:315 +#: lib/signature.c:313 #, c-format msgid "PGP sig size: %d\n" msgstr "tamanho da assinatura do PGP: %d\n" -#: lib/signature.c:328 lib/signature.c:410 +#: lib/signature.c:326 lib/signature.c:408 msgid "unable to read the signature\n" msgstr "incapaz de ler a assinatura\n" -#: lib/signature.c:333 +#: lib/signature.c:331 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "Obtive %d bytes da assinatura PGP\n" -#: lib/signature.c:372 lib/signature.c:760 +#: lib/signature.c:370 lib/signature.c:758 msgid "Couldn't exec gpg\n" msgstr "Năo consegui executar o gpg\n" -#: lib/signature.c:385 +#: lib/signature.c:383 msgid "gpg failed\n" msgstr "o gpg falhou\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:392 +#: lib/signature.c:390 msgid "gpg failed to write signature\n" msgstr "o gpg năo conseguiu gravar a assinatura\n" -#: lib/signature.c:397 +#: lib/signature.c:395 #, c-format msgid "GPG sig size: %d\n" msgstr "Tamanho da assinatura do GPG: %d\n" -#: lib/signature.c:415 +#: lib/signature.c:413 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "Obtive %d bytes da assinatura do GPG\n" -#: lib/signature.c:443 +#: lib/signature.c:441 msgid "Generating signature using PGP.\n" msgstr "A gerar a assinatura usando o PGP.\n" -#: lib/signature.c:449 +#: lib/signature.c:447 msgid "Generating signature using GPG.\n" msgstr "A gerar a assinatura usando o PGP.\n" -#: lib/signature.c:532 lib/signature.c:607 +#: lib/signature.c:530 lib/signature.c:605 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "Năo consegui correr o pgp. Use o --nopgp para ignorar as verificaçőes de PGP.\n" -#: lib/signature.c:697 +#: lib/signature.c:695 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "Năo consegui correr o gpg. Use o --nogpg para ignorar as verificaçőes de GPG.\n" -#: lib/signature.c:789 +#: lib/signature.c:787 msgid "Couldn't exec pgp\n" msgstr "Năo consegui executar o pgp\n" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:793 lib/signature.c:846 +#: lib/signature.c:791 lib/signature.c:844 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "'Spec' %%_signature inválido no ficheiro de macros\n" -#: lib/signature.c:826 +#: lib/signature.c:824 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "Precisa definir o \"%%_gpg_name\" no seu ficheiro de macros\n" -#: lib/signature.c:838 +#: lib/signature.c:836 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "Precisa definir o \"%%_pgp_name\" no seu ficheiro de macros\n" -#: lib/transaction.c:446 +#: lib/transaction.c:447 msgid "========== relocations\n" msgstr "========== mudanças de local\n" -#: lib/transaction.c:450 +#: lib/transaction.c:451 #, c-format msgid "%5d exclude %s\n" msgstr "%5d excluir o %s\n" -#: lib/transaction.c:453 +#: lib/transaction.c:454 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "%5d mudar de local %s -> %s\n" -#: lib/transaction.c:523 +#: lib/transaction.c:524 #, c-format msgid "excluding multilib path %s%s\n" msgstr "a exclur a directoria 'multilib' %s%s\n" -#: lib/transaction.c:586 +#: lib/transaction.c:587 #, c-format msgid "excluding %s %s\n" msgstr "a excluir o %s %s\n" -#: lib/transaction.c:596 +#: lib/transaction.c:597 #, c-format msgid "relocating %s to %s\n" msgstr "a mudar o %s para %s\n" -#: lib/transaction.c:674 +#: lib/transaction.c:675 #, c-format msgid "relocating directory %s to %s\n" msgstr "a mudar a directoria %s para %s\n" -#: lib/transaction.c:808 +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s ignorado devido ŕ opçăo missingok\n" -#: lib/transaction.c:1406 +#: lib/transaction.c:1407 #, c-format msgid "excluding directory %s\n" msgstr "a excluir a directoria %s\n" @@ -3673,125 +3673,125 @@ msgstr "erro(%d) ao guardar o registo %s em %s\n" msgid "error(%d) removing record %s from %s\n" msgstr "erro(%d) ao remover o registo %s do %s\n" -#: rpmdb/rpmdb.c:842 +#: rpmdb/rpmdb.c:846 msgid "no dbpath has been set\n" msgstr "năo foi definido o dbpath\n" -#: rpmdb/rpmdb.c:973 +#: rpmdb/rpmdb.c:977 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "está presente uma base de dados antiga; use o --rebuildb para gerar uma base de dados no novo formato\n" #. error -#: rpmdb/rpmdb.c:1206 +#: rpmdb/rpmdb.c:1210 #, c-format msgid "error(%d) counting packages\n" msgstr "erro(%d) ao contar os pacotes\n" -#: rpmdb/rpmdb.c:1940 rpmdb/rpmdb.c:3122 +#: rpmdb/rpmdb.c:1944 rpmdb/rpmdb.c:3126 #, fuzzy, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "o número do registo %d na base de dados está errado -- a ignorar.\n" -#: rpmdb/rpmdb.c:1991 +#: rpmdb/rpmdb.c:1995 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2256 +#: rpmdb/rpmdb.c:2260 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "%s: năo consigo ler o cabeçalho em 0x%x\n" -#: rpmdb/rpmdb.c:2325 +#: rpmdb/rpmdb.c:2329 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "a remover o \"%s\" do índice %s.\n" -#: rpmdb/rpmdb.c:2334 +#: rpmdb/rpmdb.c:2338 #, c-format msgid "removing %d entries from %s index.\n" msgstr "a remover %d registos do índice %s.\n" -#: rpmdb/rpmdb.c:2529 +#: rpmdb/rpmdb.c:2533 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "erro(%d) ao criar uma nova instância do pacote\n" -#: rpmdb/rpmdb.c:2607 +#: rpmdb/rpmdb.c:2611 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "a adicionar o \"%s\" ao índice %s.\n" -#: rpmdb/rpmdb.c:2618 +#: rpmdb/rpmdb.c:2622 #, c-format msgid "adding %d entries to %s index.\n" msgstr "a adicionar %d registos ao índice %s.\n" -#: rpmdb/rpmdb.c:3011 +#: rpmdb/rpmdb.c:3015 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "a remover o %s depois duma reconstruçăo bem sucedida do db3.\n" -#: rpmdb/rpmdb.c:3041 +#: rpmdb/rpmdb.c:3045 msgid "no dbpath has been set" msgstr "năo foi definido o dbpath" -#: rpmdb/rpmdb.c:3068 +#: rpmdb/rpmdb.c:3072 #, c-format msgid "rebuilding database %s into %s\n" msgstr "a reconstruir a base de dados %s em %s\n" -#: rpmdb/rpmdb.c:3072 +#: rpmdb/rpmdb.c:3076 #, c-format msgid "temporary database %s already exists\n" msgstr "A base de dados temporária %s já existe\n" -#: rpmdb/rpmdb.c:3078 +#: rpmdb/rpmdb.c:3082 #, c-format msgid "creating directory %s\n" msgstr "a criar a directoria %s\n" -#: rpmdb/rpmdb.c:3080 +#: rpmdb/rpmdb.c:3084 #, c-format msgid "creating directory %s: %s\n" msgstr "a criar a directoria %s: %s\n" -#: rpmdb/rpmdb.c:3087 +#: rpmdb/rpmdb.c:3091 #, c-format msgid "opening old database with dbapi %d\n" msgstr "a abrir a base de dados antiga com a dbapi %d\n" -#: rpmdb/rpmdb.c:3098 +#: rpmdb/rpmdb.c:3102 #, c-format msgid "opening new database with dbapi %d\n" msgstr "a abrir a base de dados nova com a dbapi %d\n" -#: rpmdb/rpmdb.c:3162 +#: rpmdb/rpmdb.c:3166 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "năo consigo adicionar o registo originalmente em %d\n" -#: rpmdb/rpmdb.c:3180 +#: rpmdb/rpmdb.c:3184 msgid "failed to rebuild database: original database remains in place\n" msgstr "falhou a reconstruçăo da base de dados: a base de dados original mantém-se\n" -#: rpmdb/rpmdb.c:3188 +#: rpmdb/rpmdb.c:3192 msgid "failed to replace old database with new database!\n" msgstr "falhou a substituiçăo da base de dados antiga pela nova!\n" -#: rpmdb/rpmdb.c:3190 +#: rpmdb/rpmdb.c:3194 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "substituir os ficheiros em %s por ficheiros de %s a recuperar" -#: rpmdb/rpmdb.c:3200 +#: rpmdb/rpmdb.c:3204 #, c-format msgid "removing directory %s\n" msgstr "a remover a directoria %s\n" -#: rpmdb/rpmdb.c:3202 +#: rpmdb/rpmdb.c:3206 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "falhou a remoçăo da directoria %s: %s\n" @@ -3887,59 +3887,59 @@ msgstr "Ficheiro %s: %s\n" msgid "File %s is smaller than %u bytes\n" msgstr "O ficheiro %s tem menos de %u bytes\n" -#: rpmio/rpmio.c:599 +#: rpmio/rpmio.c:588 msgid "Success" msgstr "Sucesso" -#: rpmio/rpmio.c:602 +#: rpmio/rpmio.c:591 msgid "Bad server response" msgstr "Resposta errada do servidor" -#: rpmio/rpmio.c:605 +#: rpmio/rpmio.c:594 msgid "Server I/O error" msgstr "Erro de E/S do servidor" -#: rpmio/rpmio.c:608 +#: rpmio/rpmio.c:597 msgid "Server timeout" msgstr "Tempo de espera pelo servidor expirado" -#: rpmio/rpmio.c:611 +#: rpmio/rpmio.c:600 msgid "Unable to lookup server host address" msgstr "Incapaz de descobrir o endereço da máquina do servidor" -#: rpmio/rpmio.c:614 +#: rpmio/rpmio.c:603 msgid "Unable to lookup server host name" msgstr "Incapaz de descobrir o nome da máquina do servidor" -#: rpmio/rpmio.c:617 +#: rpmio/rpmio.c:606 msgid "Failed to connect to server" msgstr "Năo consegui ligar ao servidor" -#: rpmio/rpmio.c:620 +#: rpmio/rpmio.c:609 msgid "Failed to establish data connection to server" msgstr "Năo consigo estabelecer uma ligaçăo de dados ao servidor" -#: rpmio/rpmio.c:623 +#: rpmio/rpmio.c:612 msgid "I/O error to local file" msgstr "Erro de E/S no ficheiro local" -#: rpmio/rpmio.c:626 +#: rpmio/rpmio.c:615 msgid "Error setting remote server to passive mode" msgstr "Erro ao configurar o servidor remoto para o modo passivo" -#: rpmio/rpmio.c:629 +#: rpmio/rpmio.c:618 msgid "File not found on server" msgstr "Ficheiro năo encontrado no servidor" -#: rpmio/rpmio.c:632 +#: rpmio/rpmio.c:621 msgid "Abort in progress" msgstr "Interrupçăo em progresso" -#: rpmio/rpmio.c:636 +#: rpmio/rpmio.c:625 msgid "Unknown or unexpected error" msgstr "Erro desconhecido ou inesperado" -#: rpmio/rpmio.c:1259 +#: rpmio/rpmio.c:1252 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "a ligar ao %s como %s com senha %s\n" @@ -3949,7 +3949,7 @@ msgid "(no error)" msgstr "(nenhum erro)" #. @-readonlytrans@ -#. FIX: double indeirection. +#. FIX: double indirection. #. @observer@ #: rpmio/rpmlog.c:114 rpmio/rpmlog.c:115 rpmio/rpmlog.c:116 msgid "fatal error: " @@ -3970,37 +3970,37 @@ msgstr "aviso: " msgid "memory alloc (%u bytes) returned NULL.\n" msgstr "a alocaçăo de memória (%u bytes) devolveu NULL.\n" -#: rpmio/url.c:103 +#: rpmio/url.c:101 #, c-format msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n" msgstr "aviso: u %p ctrl %p nrefs != 0 (%s %s)\n" -#: rpmio/url.c:123 +#: rpmio/url.c:121 #, c-format msgid "warning: u %p data %p nrefs != 0 (%s %s)\n" msgstr "aviso: u %p data %p nrefs != 0 (%s %s)\n" -#: rpmio/url.c:151 +#: rpmio/url.c:149 #, c-format msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" msgstr "aviso: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" -#: rpmio/url.c:244 +#: rpmio/url.c:242 #, c-format msgid "Password for %s@%s: " msgstr "Senha para o %s@%s: " -#: rpmio/url.c:269 rpmio/url.c:295 +#: rpmio/url.c:267 rpmio/url.c:293 #, c-format msgid "error: %sport must be a number\n" msgstr "erro: o %sport tem de ser um número\n" -#: rpmio/url.c:434 +#: rpmio/url.c:432 msgid "url port must be a number\n" msgstr "o porto do URL tem de ser um número\n" #. XXX Fstrerror -#: rpmio/url.c:497 +#: rpmio/url.c:495 #, c-format msgid "failed to create %s: %s\n" msgstr "năo consegui criar o %s: %s\n" diff --git a/po/pt_BR.po b/po/pt_BR.po index 66271ba7d..e20f34a46 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: 2001-09-21 11:01-0400\n" +"POT-Creation-Date: 2001-09-24 20:14-0400\n" # , c-format #: build.c:36 @@ -1205,15 +1205,15 @@ msgstr "--sign somente pode ser usado durante a construo de pacotes" msgid "exec failed\n" msgstr "Construo falhou.\n" -#: rpm.c:1116 rpmqv.c:1103 +#: rpm.c:1116 rpmqv.c:1104 msgid "unexpected arguments to --querytags " msgstr "argumentos no esperados em --querytags" -#: rpm.c:1127 rpmqv.c:1112 +#: rpm.c:1127 rpmqv.c:1113 msgid "no packages given for signature check" msgstr "nenhum pacote informado para checagem de assinatura" -#: rpm.c:1138 rpmqv.c:1121 +#: rpm.c:1138 rpmqv.c:1122 msgid "no packages given for signing" msgstr "no foram passados pacotes para assinatura" @@ -1225,20 +1225,20 @@ msgstr "no foi passado pacote para desinstalao" msgid "no packages given for install" msgstr "no foi passado pacote para instalao" -#: rpm.c:1267 rpmqv.c:1066 +#: rpm.c:1267 rpmqv.c:1067 msgid "extra arguments given for query of all packages" msgstr "foram passados argumentos em excesso para pesquisa em todos os pacotes" -#: rpm.c:1272 rpmqv.c:1075 +#: rpm.c:1272 rpmqv.c:1076 msgid "no arguments given for query" msgstr "no foi passado argumento para pesquisa" -#: rpm.c:1289 rpmqv.c:1091 +#: rpm.c:1289 rpmqv.c:1092 #, fuzzy msgid "extra arguments given for verify of all packages" msgstr "foram passados argumentos em excesso para pesquisa em todos os pacotes" -#: rpm.c:1293 rpmqv.c:1095 +#: rpm.c:1293 rpmqv.c:1096 msgid "no arguments given for verify" msgstr "no foi passado argumento para verificao" @@ -1911,19 +1911,19 @@ msgid "line %d: Error parsing %%description: %s\n" msgstr "no foi passado pacote para desinstalao" # , c-format -#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:192 +#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:190 #, fuzzy, c-format msgid "line %d: Bad option %s: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:204 +#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:202 #, fuzzy, c-format msgid "line %d: Too many names: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:213 +#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:211 #, fuzzy, c-format msgid "line %d: Package does not exist: %s\n" msgstr "No consegui abrir: %s\n" @@ -2187,24 +2187,24 @@ msgstr "No consegui abrir: %s\n" msgid "line %d: Version required: %s\n" msgstr "No consegui abrir: %s\n" -#: build/parseScript.c:158 +#: build/parseScript.c:156 #, fuzzy, c-format msgid "line %d: triggers must have --: %s\n" msgstr "argumentos para o --dbpath devem comear com uma /" # , c-format -#: build/parseScript.c:168 build/parseScript.c:229 +#: build/parseScript.c:166 build/parseScript.c:227 #, fuzzy, c-format msgid "line %d: Error parsing %s: %s\n" msgstr "No consegui abrir: %s\n" -#: build/parseScript.c:179 +#: build/parseScript.c:177 #, fuzzy, c-format msgid "line %d: script program must begin with '/': %s\n" msgstr "argumentos para o --dbpath devem comear com uma /" # , c-format -#: build/parseScript.c:221 +#: build/parseScript.c:219 #, fuzzy, c-format msgid "line %d: Second %s\n" msgstr "No consegui ler o arquivo spec de %s\n" @@ -2248,12 +2248,12 @@ msgid "malformed %%include statement\n" msgstr "" # , c-format -#: build/parseSpec.c:508 +#: build/parseSpec.c:509 #, fuzzy msgid "No compatible architectures found for build\n" msgstr "%s no pode ser construido nesta arquitetura\n" -#: build/parseSpec.c:563 +#: build/parseSpec.c:564 #, fuzzy, c-format msgid "Package has no %%description: %s\n" msgstr "no foi passado pacote para desinstalao" @@ -2330,106 +2330,106 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "YES" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "NO " msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1015 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1131 +#: lib/depends.c:1126 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1222 +#: lib/depends.c:1217 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "" -#: lib/depends.c:1251 +#: lib/depends.c:1246 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1268 +#: lib/depends.c:1263 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "" -#: lib/depends.c:1292 +#: lib/depends.c:1287 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1305 +#: lib/depends.c:1300 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1319 +#: lib/depends.c:1314 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "" -#: lib/depends.c:1335 +#: lib/depends.c:1330 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1356 +#: lib/depends.c:1351 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1428 +#: lib/depends.c:1423 #, fuzzy, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "no foi passado pacote para instalao" #. conflicts exist. -#: lib/depends.c:1507 +#: lib/depends.c:1502 #, fuzzy, c-format msgid "package %s conflicts: %s\n" msgstr "no foi passado pacote para desinstalao" -#: lib/depends.c:1753 +#: lib/depends.c:1748 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1902 +#: lib/depends.c:1897 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1960 +#: lib/depends.c:1955 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2010 +#: lib/depends.c:2005 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2062 +#: lib/depends.c:2057 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2091 +#: lib/depends.c:2086 msgid "========== continuing tsort ...\n" msgstr "" #: lib/formats.c:28 lib/formats.c:54 lib/formats.c:85 lib/formats.c:128 -#: lib/header.c:2621 lib/header.c:2642 lib/header.c:2664 +#: lib/header.c:2623 lib/header.c:2644 lib/header.c:2666 msgid "(not a number)" msgstr "" @@ -2455,7 +2455,7 @@ msgid "getting list of mounted filesystems\n" msgstr "" # , c-format -#: lib/fs.c:153 rpmio/url.c:477 +#: lib/fs.c:153 rpmio/url.c:475 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "No consegui abrir: %s\n" @@ -2465,50 +2465,50 @@ msgstr "No consegui abrir: %s\n" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:290 +#: lib/fsm.c:288 msgid "========= Directories not explictly included in package:\n" msgstr "" # , c-format -#: lib/fsm.c:292 +#: lib/fsm.c:290 #, fuzzy, c-format msgid "%9d %s\n" msgstr "No consegui ler o arquivo spec de %s\n" -#: lib/fsm.c:1130 +#: lib/fsm.c:1124 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1407 +#: lib/fsm.c:1401 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" # , c-format -#: lib/fsm.c:1526 lib/fsm.c:1651 +#: lib/fsm.c:1520 lib/fsm.c:1645 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: lib/fsm.c:1677 +#: lib/fsm.c:1671 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "No consegui abrir: %s\n" -#: lib/fsm.c:1683 +#: lib/fsm.c:1677 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "Construo falhou.\n" -#: lib/fsm.c:1693 +#: lib/fsm.c:1687 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "Construo falhou.\n" # , c-format -#: lib/fsm.c:1712 +#: lib/fsm.c:1706 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "No consegui abrir: %s\n" @@ -2524,79 +2524,79 @@ msgid "Data type %d not supported\n" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1930 +#: lib/header.c:1932 #, c-format msgid "missing { after %" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1960 +#: lib/header.c:1962 msgid "missing } after %{" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1974 +#: lib/header.c:1976 msgid "empty tag format" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1988 +#: lib/header.c:1990 msgid "empty tag name" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2005 +#: lib/header.c:2007 msgid "unknown tag" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2032 +#: lib/header.c:2034 msgid "] expected at end of array" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2050 +#: lib/header.c:2052 #, fuzzy msgid "unexpected ]" msgstr "fonte de pesquisa no esperado" #. @-observertrans -readonlytrans@ -#: lib/header.c:2054 +#: lib/header.c:2056 #, fuzzy msgid "unexpected }" msgstr "fonte de pesquisa no esperado" #. @-observertrans -readonlytrans@ -#: lib/header.c:2120 +#: lib/header.c:2122 msgid "? expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2129 +#: lib/header.c:2131 msgid "{ expected after ? in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2142 lib/header.c:2184 +#: lib/header.c:2144 lib/header.c:2186 msgid "} expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2152 +#: lib/header.c:2154 msgid ": expected following ? subexpression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2169 +#: lib/header.c:2171 msgid "{ expected after : in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2194 +#: lib/header.c:2196 msgid "| expected at end of expression" msgstr "" -#: lib/header.c:2381 +#: lib/header.c:2383 msgid "(unknown type)" msgstr "" @@ -3236,7 +3236,7 @@ msgid "can't query %s: %s\n" msgstr "No consegui abrir: %s\n" #: lib/query.c:576 lib/query.c:610 lib/rpminstall.c:309 lib/rpminstall.c:453 -#: lib/rpminstall.c:826 +#: lib/rpminstall.c:824 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "Construo falhou.\n" @@ -3380,27 +3380,27 @@ msgstr "No consegui abrir: %s\n" msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:437 +#: lib/rpmchecksig.c:431 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:438 lib/rpmchecksig.c:452 +#: lib/rpmchecksig.c:432 lib/rpmchecksig.c:446 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:440 lib/rpmchecksig.c:454 +#: lib/rpmchecksig.c:434 lib/rpmchecksig.c:448 msgid ") " msgstr "" -#: lib/rpmchecksig.c:441 lib/rpmchecksig.c:455 +#: lib/rpmchecksig.c:435 lib/rpmchecksig.c:449 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:443 lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 lib/rpmchecksig.c:451 msgid ")" msgstr "" -#: lib/rpmchecksig.c:451 +#: lib/rpmchecksig.c:445 msgid "OK" msgstr "" @@ -3459,7 +3459,7 @@ msgstr "" msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:445 lib/rpminstall.c:686 +#: lib/rpminstall.c:445 lib/rpminstall.c:684 #, fuzzy, c-format msgid "%s cannot be installed\n" msgstr "no foi passado pacote para instalao" @@ -3512,7 +3512,7 @@ msgid "Installing %s\n" msgstr "" # , c-format -#: lib/rpmlead.c:49 +#: lib/rpmlead.c:47 #, fuzzy, c-format msgid "read failed: %s (%d)\n" msgstr "No consegui abrir: %s\n" @@ -3527,94 +3527,94 @@ msgstr "" msgid "missing architecture name at %s:%d\n" msgstr "" -#: lib/rpmrc.c:325 +#: lib/rpmrc.c:328 #, c-format msgid "Incomplete data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:330 +#: lib/rpmrc.c:333 #, c-format msgid "Too many args in data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:338 +#: lib/rpmrc.c:341 #, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "" -#: lib/rpmrc.c:378 +#: lib/rpmrc.c:384 #, c-format msgid "Incomplete default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:383 +#: lib/rpmrc.c:389 #, c-format msgid "Too many args in default line at %s:%d\n" msgstr "" # , c-format -#: lib/rpmrc.c:585 +#: lib/rpmrc.c:591 #, fuzzy, c-format msgid "Cannot expand %s\n" msgstr "No consegui abrir: %s\n" -#: lib/rpmrc.c:590 +#: lib/rpmrc.c:596 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "" # , c-format -#: lib/rpmrc.c:607 +#: lib/rpmrc.c:613 #, fuzzy, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "No consegui abrir: %s\n" # , c-format #. XXX Feof(fd) -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:660 #, fuzzy, c-format msgid "Failed to read %s: %s.\n" msgstr "No consegui ler o arquivo spec de %s\n" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:697 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "" -#: lib/rpmrc.c:708 lib/rpmrc.c:782 +#: lib/rpmrc.c:714 lib/rpmrc.c:788 #, c-format msgid "missing argument for %s at %s:%d\n" msgstr "" # , c-format -#: lib/rpmrc.c:725 lib/rpmrc.c:747 +#: lib/rpmrc.c:731 lib/rpmrc.c:753 #, fuzzy, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "No consegui abrir: %s\n" # , c-format -#: lib/rpmrc.c:734 +#: lib/rpmrc.c:740 #, fuzzy, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "No consegui abrir: %s\n" -#: lib/rpmrc.c:774 +#: lib/rpmrc.c:780 #, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "" # , c-format -#: lib/rpmrc.c:841 +#: lib/rpmrc.c:847 #, fuzzy, c-format msgid "bad option '%s' at %s:%d\n" msgstr "No consegui abrir: %s\n" -#: lib/rpmrc.c:1436 +#: lib/rpmrc.c:1442 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1437 +#: lib/rpmrc.c:1443 msgid "Please contact rpm-list@redhat.com\n" msgstr "" @@ -3645,114 +3645,114 @@ msgstr "gere assinatura PGP" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:230 +#: lib/signature.c:228 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" # , c-format -#: lib/signature.c:290 +#: lib/signature.c:288 #, fuzzy, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "No consegui ler o arquivo spec de %s\n" -#: lib/signature.c:303 +#: lib/signature.c:301 #, fuzzy msgid "pgp failed\n" msgstr "Construo falhou.\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:310 +#: lib/signature.c:308 #, fuzzy msgid "pgp failed to write signature\n" msgstr "gere assinatura PGP" -#: lib/signature.c:315 +#: lib/signature.c:313 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:328 lib/signature.c:410 +#: lib/signature.c:326 lib/signature.c:408 #, fuzzy msgid "unable to read the signature\n" msgstr "gere assinatura PGP" -#: lib/signature.c:333 +#: lib/signature.c:331 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" # , c-format -#: lib/signature.c:372 lib/signature.c:760 +#: lib/signature.c:370 lib/signature.c:758 #, fuzzy msgid "Couldn't exec gpg\n" msgstr "No consegui ler o arquivo spec de %s\n" -#: lib/signature.c:385 +#: lib/signature.c:383 #, fuzzy msgid "gpg failed\n" msgstr "Construo falhou.\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:392 +#: lib/signature.c:390 #, fuzzy msgid "gpg failed to write signature\n" msgstr "gere assinatura PGP" -#: lib/signature.c:397 +#: lib/signature.c:395 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:415 +#: lib/signature.c:413 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:443 +#: lib/signature.c:441 #, fuzzy msgid "Generating signature using PGP.\n" msgstr "gere assinatura PGP" -#: lib/signature.c:449 +#: lib/signature.c:447 #, fuzzy msgid "Generating signature using GPG.\n" msgstr "gere assinatura PGP" -#: lib/signature.c:532 lib/signature.c:607 +#: lib/signature.c:530 lib/signature.c:605 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" -#: lib/signature.c:697 +#: lib/signature.c:695 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" # , c-format -#: lib/signature.c:789 +#: lib/signature.c:787 #, fuzzy msgid "Couldn't exec pgp\n" msgstr "No consegui ler o arquivo spec de %s\n" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:793 lib/signature.c:846 +#: lib/signature.c:791 lib/signature.c:844 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:826 +#: lib/signature.c:824 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:838 +#: lib/signature.c:836 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/transaction.c:446 +#: lib/transaction.c:447 msgid "========== relocations\n" msgstr "" @@ -3764,13 +3764,13 @@ msgstr "" # "Content-Type: text/plain; charset=ISO-8859-1\n" # "Content-Transfer-Encoding: 8-bit\n" # , c-format -#: lib/transaction.c:450 +#: lib/transaction.c:451 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "RPM verso %s\n" # , c-format -#: lib/transaction.c:453 +#: lib/transaction.c:454 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "No consegui abrir: %s\n" @@ -3783,7 +3783,7 @@ msgstr "No consegui abrir: %s\n" # "Content-Type: text/plain; charset=ISO-8859-1\n" # "Content-Transfer-Encoding: 8-bit\n" # , c-format -#: lib/transaction.c:523 +#: lib/transaction.c:524 #, fuzzy, c-format msgid "excluding multilib path %s%s\n" msgstr "RPM verso %s\n" @@ -3796,23 +3796,23 @@ msgstr "RPM verso %s\n" # "Content-Type: text/plain; charset=ISO-8859-1\n" # "Content-Transfer-Encoding: 8-bit\n" # , c-format -#: lib/transaction.c:586 +#: lib/transaction.c:587 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "RPM verso %s\n" -#: lib/transaction.c:596 +#: lib/transaction.c:597 #, c-format msgid "relocating %s to %s\n" msgstr "" # , c-format -#: lib/transaction.c:674 +#: lib/transaction.c:675 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "No consegui abrir: %s\n" -#: lib/transaction.c:808 +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" @@ -3825,7 +3825,7 @@ msgstr "" # "Content-Type: text/plain; charset=ISO-8859-1\n" # "Content-Transfer-Encoding: 8-bit\n" # , c-format -#: lib/transaction.c:1406 +#: lib/transaction.c:1407 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "RPM verso %s\n" @@ -4027,119 +4027,119 @@ msgstr "No consegui abrir: %s\n" msgid "error(%d) removing record %s from %s\n" msgstr "No consegui abrir: %s\n" -#: rpmdb/rpmdb.c:842 +#: rpmdb/rpmdb.c:846 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:973 +#: rpmdb/rpmdb.c:977 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1206 +#: rpmdb/rpmdb.c:1210 #, fuzzy, c-format msgid "error(%d) counting packages\n" msgstr "no foi passado pacote para instalao" -#: rpmdb/rpmdb.c:1940 rpmdb/rpmdb.c:3122 +#: rpmdb/rpmdb.c:1944 rpmdb/rpmdb.c:3126 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:1991 +#: rpmdb/rpmdb.c:1995 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2256 +#: rpmdb/rpmdb.c:2260 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "no foi passado pacote para desinstalao" -#: rpmdb/rpmdb.c:2325 +#: rpmdb/rpmdb.c:2329 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" # , c-format -#: rpmdb/rpmdb.c:2334 +#: rpmdb/rpmdb.c:2338 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "No consegui abrir: %s\n" -#: rpmdb/rpmdb.c:2529 +#: rpmdb/rpmdb.c:2533 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "no foi passado pacote para instalao" -#: rpmdb/rpmdb.c:2607 +#: rpmdb/rpmdb.c:2611 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" # , c-format -#: rpmdb/rpmdb.c:2618 +#: rpmdb/rpmdb.c:2622 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "No consegui abrir: %s\n" -#: rpmdb/rpmdb.c:3011 +#: rpmdb/rpmdb.c:3015 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3041 +#: rpmdb/rpmdb.c:3045 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3068 +#: rpmdb/rpmdb.c:3072 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "reconstrua o banco de dados a partir de um banco de dados existente" -#: rpmdb/rpmdb.c:3072 +#: rpmdb/rpmdb.c:3076 #, c-format msgid "temporary database %s already exists\n" msgstr "" # , c-format -#: rpmdb/rpmdb.c:3078 +#: rpmdb/rpmdb.c:3082 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: rpmdb/rpmdb.c:3080 +#: rpmdb/rpmdb.c:3084 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "No consegui abrir: %s\n" -#: rpmdb/rpmdb.c:3087 +#: rpmdb/rpmdb.c:3091 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "reconstrua o banco de dados a partir de um banco de dados existente" -#: rpmdb/rpmdb.c:3098 +#: rpmdb/rpmdb.c:3102 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "reconstrua o banco de dados a partir de um banco de dados existente" -#: rpmdb/rpmdb.c:3162 +#: rpmdb/rpmdb.c:3166 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3180 +#: rpmdb/rpmdb.c:3184 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3188 +#: rpmdb/rpmdb.c:3192 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3190 +#: rpmdb/rpmdb.c:3194 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" @@ -4152,13 +4152,13 @@ msgstr "" # "Content-Type: text/plain; charset=ISO-8859-1\n" # "Content-Transfer-Encoding: 8-bit\n" # , c-format -#: rpmdb/rpmdb.c:3200 +#: rpmdb/rpmdb.c:3204 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "RPM verso %s\n" # , c-format -#: rpmdb/rpmdb.c:3202 +#: rpmdb/rpmdb.c:3206 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "No consegui abrir: %s\n" @@ -4256,59 +4256,59 @@ msgstr "No consegui ler o arquivo spec de %s\n" msgid "File %s is smaller than %u bytes\n" msgstr "" -#: rpmio/rpmio.c:599 +#: rpmio/rpmio.c:588 msgid "Success" msgstr "" -#: rpmio/rpmio.c:602 +#: rpmio/rpmio.c:591 msgid "Bad server response" msgstr "" -#: rpmio/rpmio.c:605 +#: rpmio/rpmio.c:594 msgid "Server I/O error" msgstr "" -#: rpmio/rpmio.c:608 +#: rpmio/rpmio.c:597 msgid "Server timeout" msgstr "" -#: rpmio/rpmio.c:611 +#: rpmio/rpmio.c:600 msgid "Unable to lookup server host address" msgstr "" -#: rpmio/rpmio.c:614 +#: rpmio/rpmio.c:603 msgid "Unable to lookup server host name" msgstr "" -#: rpmio/rpmio.c:617 +#: rpmio/rpmio.c:606 msgid "Failed to connect to server" msgstr "" -#: rpmio/rpmio.c:620 +#: rpmio/rpmio.c:609 msgid "Failed to establish data connection to server" msgstr "" -#: rpmio/rpmio.c:623 +#: rpmio/rpmio.c:612 msgid "I/O error to local file" msgstr "" -#: rpmio/rpmio.c:626 +#: rpmio/rpmio.c:615 msgid "Error setting remote server to passive mode" msgstr "" -#: rpmio/rpmio.c:629 +#: rpmio/rpmio.c:618 msgid "File not found on server" msgstr "" -#: rpmio/rpmio.c:632 +#: rpmio/rpmio.c:621 msgid "Abort in progress" msgstr "" -#: rpmio/rpmio.c:636 +#: rpmio/rpmio.c:625 msgid "Unknown or unexpected error" msgstr "" -#: rpmio/rpmio.c:1259 +#: rpmio/rpmio.c:1252 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" @@ -4318,7 +4318,7 @@ msgid "(no error)" msgstr "" #. @-readonlytrans@ -#. FIX: double indeirection. +#. FIX: double indirection. #. @observer@ #: rpmio/rpmlog.c:114 rpmio/rpmlog.c:115 rpmio/rpmlog.c:116 msgid "fatal error: " @@ -4339,38 +4339,38 @@ msgstr "" msgid "memory alloc (%u bytes) returned NULL.\n" msgstr "" -#: rpmio/url.c:103 +#: rpmio/url.c:101 #, c-format msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:123 +#: rpmio/url.c:121 #, c-format msgid "warning: u %p data %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:151 +#: rpmio/url.c:149 #, c-format msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" msgstr "" -#: rpmio/url.c:244 +#: rpmio/url.c:242 #, c-format msgid "Password for %s@%s: " msgstr "" -#: rpmio/url.c:269 rpmio/url.c:295 +#: rpmio/url.c:267 rpmio/url.c:293 #, c-format msgid "error: %sport must be a number\n" msgstr "" -#: rpmio/url.c:434 +#: rpmio/url.c:432 msgid "url port must be a number\n" msgstr "" # , c-format #. XXX Fstrerror -#: rpmio/url.c:497 +#: rpmio/url.c:495 #, fuzzy, c-format msgid "failed to create %s: %s\n" msgstr "No consegui abrir o pipe tar: %s\n" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-09-21 11:01-0400\n" +"POT-Creation-Date: 2001-09-24 20:14-0400\n" "PO-Revision-Date: 1999-04-10 12:00+EST\n" "Last-Translator: Cristian Gafton <gafton@redhat.com>\n" "Language-Team: Romanian <ro@li.org>\n" @@ -1050,15 +1050,15 @@ msgstr "" msgid "exec failed\n" msgstr "" -#: rpm.c:1116 rpmqv.c:1103 +#: rpm.c:1116 rpmqv.c:1104 msgid "unexpected arguments to --querytags " msgstr "" -#: rpm.c:1127 rpmqv.c:1112 +#: rpm.c:1127 rpmqv.c:1113 msgid "no packages given for signature check" msgstr "" -#: rpm.c:1138 rpmqv.c:1121 +#: rpm.c:1138 rpmqv.c:1122 msgid "no packages given for signing" msgstr "" @@ -1070,19 +1070,19 @@ msgstr "" msgid "no packages given for install" msgstr "" -#: rpm.c:1267 rpmqv.c:1066 +#: rpm.c:1267 rpmqv.c:1067 msgid "extra arguments given for query of all packages" msgstr "" -#: rpm.c:1272 rpmqv.c:1075 +#: rpm.c:1272 rpmqv.c:1076 msgid "no arguments given for query" msgstr "" -#: rpm.c:1289 rpmqv.c:1091 +#: rpm.c:1289 rpmqv.c:1092 msgid "extra arguments given for verify of all packages" msgstr "" -#: rpm.c:1293 rpmqv.c:1095 +#: rpm.c:1293 rpmqv.c:1096 msgid "no arguments given for verify" msgstr "" @@ -1691,17 +1691,17 @@ msgstr "" msgid "line %d: Error parsing %%description: %s\n" msgstr "" -#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:192 +#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:190 #, c-format msgid "line %d: Bad option %s: %s\n" msgstr "" -#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:204 +#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:202 #, c-format msgid "line %d: Too many names: %s\n" msgstr "" -#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:213 +#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:211 #, c-format msgid "line %d: Package does not exist: %s\n" msgstr "" @@ -1931,22 +1931,22 @@ msgstr "" msgid "line %d: Version required: %s\n" msgstr "" -#: build/parseScript.c:158 +#: build/parseScript.c:156 #, c-format msgid "line %d: triggers must have --: %s\n" msgstr "" -#: build/parseScript.c:168 build/parseScript.c:229 +#: build/parseScript.c:166 build/parseScript.c:227 #, c-format msgid "line %d: Error parsing %s: %s\n" msgstr "" -#: build/parseScript.c:179 +#: build/parseScript.c:177 #, c-format msgid "line %d: script program must begin with '/': %s\n" msgstr "" -#: build/parseScript.c:221 +#: build/parseScript.c:219 #, c-format msgid "line %d: Second %s\n" msgstr "" @@ -1987,11 +1987,11 @@ msgstr "" msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:508 +#: build/parseSpec.c:509 msgid "No compatible architectures found for build\n" msgstr "" -#: build/parseSpec.c:563 +#: build/parseSpec.c:564 #, c-format msgid "Package has no %%description: %s\n" msgstr "" @@ -2065,106 +2065,106 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "YES" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "NO " msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1015 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1131 +#: lib/depends.c:1126 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1222 +#: lib/depends.c:1217 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "" -#: lib/depends.c:1251 +#: lib/depends.c:1246 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1268 +#: lib/depends.c:1263 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "" -#: lib/depends.c:1292 +#: lib/depends.c:1287 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1305 +#: lib/depends.c:1300 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1319 +#: lib/depends.c:1314 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "" -#: lib/depends.c:1335 +#: lib/depends.c:1330 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1356 +#: lib/depends.c:1351 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1428 +#: lib/depends.c:1423 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1507 +#: lib/depends.c:1502 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:1753 +#: lib/depends.c:1748 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1902 +#: lib/depends.c:1897 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1960 +#: lib/depends.c:1955 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2010 +#: lib/depends.c:2005 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2062 +#: lib/depends.c:2057 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2091 +#: lib/depends.c:2086 msgid "========== continuing tsort ...\n" msgstr "" #: lib/formats.c:28 lib/formats.c:54 lib/formats.c:85 lib/formats.c:128 -#: lib/header.c:2621 lib/header.c:2642 lib/header.c:2664 +#: lib/header.c:2623 lib/header.c:2644 lib/header.c:2666 msgid "(not a number)" msgstr "" @@ -2187,7 +2187,7 @@ msgstr "" msgid "getting list of mounted filesystems\n" msgstr "" -#: lib/fs.c:153 rpmio/url.c:477 +#: lib/fs.c:153 rpmio/url.c:475 #, c-format msgid "failed to open %s: %s\n" msgstr "" @@ -2197,46 +2197,46 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:290 +#: lib/fsm.c:288 msgid "========= Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:292 +#: lib/fsm.c:290 #, c-format msgid "%9d %s\n" msgstr "" -#: lib/fsm.c:1130 +#: lib/fsm.c:1124 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1407 +#: lib/fsm.c:1401 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1526 lib/fsm.c:1651 +#: lib/fsm.c:1520 lib/fsm.c:1645 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1677 +#: lib/fsm.c:1671 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1683 +#: lib/fsm.c:1677 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1693 +#: lib/fsm.c:1687 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1712 +#: lib/fsm.c:1706 #, c-format msgid "%s created as %s\n" msgstr "" @@ -2252,77 +2252,77 @@ msgid "Data type %d not supported\n" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1930 +#: lib/header.c:1932 #, c-format msgid "missing { after %" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1960 +#: lib/header.c:1962 msgid "missing } after %{" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1974 +#: lib/header.c:1976 msgid "empty tag format" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1988 +#: lib/header.c:1990 msgid "empty tag name" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2005 +#: lib/header.c:2007 msgid "unknown tag" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2032 +#: lib/header.c:2034 msgid "] expected at end of array" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2050 +#: lib/header.c:2052 msgid "unexpected ]" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2054 +#: lib/header.c:2056 msgid "unexpected }" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2120 +#: lib/header.c:2122 msgid "? expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2129 +#: lib/header.c:2131 msgid "{ expected after ? in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2142 lib/header.c:2184 +#: lib/header.c:2144 lib/header.c:2186 msgid "} expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2152 +#: lib/header.c:2154 msgid ": expected following ? subexpression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2169 +#: lib/header.c:2171 msgid "{ expected after : in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2194 +#: lib/header.c:2196 msgid "| expected at end of expression" msgstr "" -#: lib/header.c:2381 +#: lib/header.c:2383 msgid "(unknown type)" msgstr "" @@ -2900,7 +2900,7 @@ msgid "can't query %s: %s\n" msgstr "" #: lib/query.c:576 lib/query.c:610 lib/rpminstall.c:309 lib/rpminstall.c:453 -#: lib/rpminstall.c:826 +#: lib/rpminstall.c:824 #, c-format msgid "open of %s failed: %s\n" msgstr "" @@ -3037,27 +3037,27 @@ msgstr "" msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:437 +#: lib/rpmchecksig.c:431 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:438 lib/rpmchecksig.c:452 +#: lib/rpmchecksig.c:432 lib/rpmchecksig.c:446 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:440 lib/rpmchecksig.c:454 +#: lib/rpmchecksig.c:434 lib/rpmchecksig.c:448 msgid ") " msgstr "" -#: lib/rpmchecksig.c:441 lib/rpmchecksig.c:455 +#: lib/rpmchecksig.c:435 lib/rpmchecksig.c:449 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:443 lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 lib/rpmchecksig.c:451 msgid ")" msgstr "" -#: lib/rpmchecksig.c:451 +#: lib/rpmchecksig.c:445 msgid "OK" msgstr "" @@ -3106,7 +3106,7 @@ msgstr "" msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:445 lib/rpminstall.c:686 +#: lib/rpminstall.c:445 lib/rpminstall.c:684 #, c-format msgid "%s cannot be installed\n" msgstr "" @@ -3153,7 +3153,7 @@ msgstr "" msgid "Installing %s\n" msgstr "" -#: lib/rpmlead.c:49 +#: lib/rpmlead.c:47 #, c-format msgid "read failed: %s (%d)\n" msgstr "" @@ -3168,88 +3168,88 @@ msgstr "" msgid "missing architecture name at %s:%d\n" msgstr "" -#: lib/rpmrc.c:325 +#: lib/rpmrc.c:328 #, c-format msgid "Incomplete data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:330 +#: lib/rpmrc.c:333 #, c-format msgid "Too many args in data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:338 +#: lib/rpmrc.c:341 #, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "" -#: lib/rpmrc.c:378 +#: lib/rpmrc.c:384 #, c-format msgid "Incomplete default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:383 +#: lib/rpmrc.c:389 #, c-format msgid "Too many args in default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:585 +#: lib/rpmrc.c:591 #, c-format msgid "Cannot expand %s\n" msgstr "" -#: lib/rpmrc.c:590 +#: lib/rpmrc.c:596 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "" -#: lib/rpmrc.c:607 +#: lib/rpmrc.c:613 #, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "" #. XXX Feof(fd) -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:660 #, c-format msgid "Failed to read %s: %s.\n" msgstr "" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:697 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "" -#: lib/rpmrc.c:708 lib/rpmrc.c:782 +#: lib/rpmrc.c:714 lib/rpmrc.c:788 #, c-format msgid "missing argument for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:725 lib/rpmrc.c:747 +#: lib/rpmrc.c:731 lib/rpmrc.c:753 #, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "" -#: lib/rpmrc.c:734 +#: lib/rpmrc.c:740 #, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "" -#: lib/rpmrc.c:774 +#: lib/rpmrc.c:780 #, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:841 +#: lib/rpmrc.c:847 #, c-format msgid "bad option '%s' at %s:%d\n" msgstr "" -#: lib/rpmrc.c:1436 +#: lib/rpmrc.c:1442 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1437 +#: lib/rpmrc.c:1443 msgid "Please contact rpm-list@redhat.com\n" msgstr "" @@ -3279,141 +3279,141 @@ msgstr "" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:230 +#: lib/signature.c:228 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:290 +#: lib/signature.c:288 #, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "" -#: lib/signature.c:303 +#: lib/signature.c:301 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:310 +#: lib/signature.c:308 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:315 +#: lib/signature.c:313 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:328 lib/signature.c:410 +#: lib/signature.c:326 lib/signature.c:408 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:333 +#: lib/signature.c:331 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:372 lib/signature.c:760 +#: lib/signature.c:370 lib/signature.c:758 msgid "Couldn't exec gpg\n" msgstr "" -#: lib/signature.c:385 +#: lib/signature.c:383 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:392 +#: lib/signature.c:390 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:397 +#: lib/signature.c:395 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:415 +#: lib/signature.c:413 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:443 +#: lib/signature.c:441 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:449 +#: lib/signature.c:447 msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:532 lib/signature.c:607 +#: lib/signature.c:530 lib/signature.c:605 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" -#: lib/signature.c:697 +#: lib/signature.c:695 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" -#: lib/signature.c:789 +#: lib/signature.c:787 msgid "Couldn't exec pgp\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:793 lib/signature.c:846 +#: lib/signature.c:791 lib/signature.c:844 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:826 +#: lib/signature.c:824 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:838 +#: lib/signature.c:836 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/transaction.c:446 +#: lib/transaction.c:447 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:450 +#: lib/transaction.c:451 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/transaction.c:453 +#: lib/transaction.c:454 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/transaction.c:523 +#: lib/transaction.c:524 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/transaction.c:586 +#: lib/transaction.c:587 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/transaction.c:596 +#: lib/transaction.c:597 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:674 +#: lib/transaction.c:675 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:808 +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1406 +#: lib/transaction.c:1407 #, c-format msgid "excluding directory %s\n" msgstr "" @@ -3608,125 +3608,125 @@ msgstr "" msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:842 +#: rpmdb/rpmdb.c:846 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:973 +#: rpmdb/rpmdb.c:977 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1206 +#: rpmdb/rpmdb.c:1210 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:1940 rpmdb/rpmdb.c:3122 +#: rpmdb/rpmdb.c:1944 rpmdb/rpmdb.c:3126 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:1991 +#: rpmdb/rpmdb.c:1995 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2256 +#: rpmdb/rpmdb.c:2260 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2325 +#: rpmdb/rpmdb.c:2329 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2334 +#: rpmdb/rpmdb.c:2338 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2529 +#: rpmdb/rpmdb.c:2533 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2607 +#: rpmdb/rpmdb.c:2611 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2618 +#: rpmdb/rpmdb.c:2622 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3011 +#: rpmdb/rpmdb.c:3015 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3041 +#: rpmdb/rpmdb.c:3045 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3068 +#: rpmdb/rpmdb.c:3072 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3072 +#: rpmdb/rpmdb.c:3076 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3078 +#: rpmdb/rpmdb.c:3082 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3080 +#: rpmdb/rpmdb.c:3084 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3087 +#: rpmdb/rpmdb.c:3091 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3098 +#: rpmdb/rpmdb.c:3102 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3162 +#: rpmdb/rpmdb.c:3166 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3180 +#: rpmdb/rpmdb.c:3184 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3188 +#: rpmdb/rpmdb.c:3192 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3190 +#: rpmdb/rpmdb.c:3194 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3200 +#: rpmdb/rpmdb.c:3204 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3202 +#: rpmdb/rpmdb.c:3206 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" @@ -3822,59 +3822,59 @@ msgstr "" msgid "File %s is smaller than %u bytes\n" msgstr "" -#: rpmio/rpmio.c:599 +#: rpmio/rpmio.c:588 msgid "Success" msgstr "" -#: rpmio/rpmio.c:602 +#: rpmio/rpmio.c:591 msgid "Bad server response" msgstr "" -#: rpmio/rpmio.c:605 +#: rpmio/rpmio.c:594 msgid "Server I/O error" msgstr "" -#: rpmio/rpmio.c:608 +#: rpmio/rpmio.c:597 msgid "Server timeout" msgstr "" -#: rpmio/rpmio.c:611 +#: rpmio/rpmio.c:600 msgid "Unable to lookup server host address" msgstr "" -#: rpmio/rpmio.c:614 +#: rpmio/rpmio.c:603 msgid "Unable to lookup server host name" msgstr "" -#: rpmio/rpmio.c:617 +#: rpmio/rpmio.c:606 msgid "Failed to connect to server" msgstr "" -#: rpmio/rpmio.c:620 +#: rpmio/rpmio.c:609 msgid "Failed to establish data connection to server" msgstr "" -#: rpmio/rpmio.c:623 +#: rpmio/rpmio.c:612 msgid "I/O error to local file" msgstr "" -#: rpmio/rpmio.c:626 +#: rpmio/rpmio.c:615 msgid "Error setting remote server to passive mode" msgstr "" -#: rpmio/rpmio.c:629 +#: rpmio/rpmio.c:618 msgid "File not found on server" msgstr "" -#: rpmio/rpmio.c:632 +#: rpmio/rpmio.c:621 msgid "Abort in progress" msgstr "" -#: rpmio/rpmio.c:636 +#: rpmio/rpmio.c:625 msgid "Unknown or unexpected error" msgstr "" -#: rpmio/rpmio.c:1259 +#: rpmio/rpmio.c:1252 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" @@ -3884,7 +3884,7 @@ msgid "(no error)" msgstr "" #. @-readonlytrans@ -#. FIX: double indeirection. +#. FIX: double indirection. #. @observer@ #: rpmio/rpmlog.c:114 rpmio/rpmlog.c:115 rpmio/rpmlog.c:116 msgid "fatal error: " @@ -3905,37 +3905,37 @@ msgstr "" msgid "memory alloc (%u bytes) returned NULL.\n" msgstr "" -#: rpmio/url.c:103 +#: rpmio/url.c:101 #, c-format msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:123 +#: rpmio/url.c:121 #, c-format msgid "warning: u %p data %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:151 +#: rpmio/url.c:149 #, c-format msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" msgstr "" -#: rpmio/url.c:244 +#: rpmio/url.c:242 #, c-format msgid "Password for %s@%s: " msgstr "" -#: rpmio/url.c:269 rpmio/url.c:295 +#: rpmio/url.c:267 rpmio/url.c:293 #, c-format msgid "error: %sport must be a number\n" msgstr "" -#: rpmio/url.c:434 +#: rpmio/url.c:432 msgid "url port must be a number\n" msgstr "" #. XXX Fstrerror -#: rpmio/url.c:497 +#: rpmio/url.c:495 #, c-format msgid "failed to create %s: %s\n" msgstr "" diff --git a/po/rpm.pot b/po/rpm.pot index 373888f1c..79911ea76 100644 --- a/po/rpm.pot +++ b/po/rpm.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2001-09-22 09:07-0400\n" +"POT-Creation-Date: 2001-09-24 20:14-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-09-21 11:01-0400\n" +"POT-Creation-Date: 2001-09-24 20:14-0400\n" "PO-Revision-Date: 2001-08-29 13:55-0400\n" "Last-Translator: Eugene Kanter <eugene@blackcatlinux.com>\n" "Language-Team: Black Cat Linux Team <blackcat-support@blackcatlinux.com>\n" @@ -1110,15 +1110,15 @@ msgstr "--sign ÍĎÖĹÔ ÂŮÔŘ ÉÓĐĎĚŘÚĎ×ÁÎ ÔĎĚŘËĎ ĐŇÉ ÓÂĎŇËĹ ĐÁËĹÔĎ×" msgid "exec failed\n" msgstr "ÚÁĐŐÓË ÎĹ ŐÄÁĚÓŃ\n" -#: rpm.c:1116 rpmqv.c:1103 +#: rpm.c:1116 rpmqv.c:1104 msgid "unexpected arguments to --querytags " msgstr "ÎĹĎÖÉÄÁÎÎŮĹ ÁŇÇŐÍĹÎÔŮ ÄĚŃ --querytags " -#: rpm.c:1127 rpmqv.c:1112 +#: rpm.c:1127 rpmqv.c:1113 msgid "no packages given for signature check" msgstr "ÎĹ ÚÁÄÁÎŮ ĐÁËĹÔŮ ÄĚŃ ĐŇĎ×ĹŇËÉ ĐĎÄĐÉÓÉ" -#: rpm.c:1138 rpmqv.c:1121 +#: rpm.c:1138 rpmqv.c:1122 msgid "no packages given for signing" msgstr "ÎĹ ÚÁÄÁÎŮ ĐÁËĹÔŮ ÄĚŃ ĐĎÄĐÉÓÉ" @@ -1130,19 +1130,19 @@ msgstr "ÎĹ ÚÁÄÁÎŮ ĐÁËĹÔŮ ÄĚŃ ŐÄÁĚĹÎÉŃ" msgid "no packages given for install" msgstr "ÎĹ ÚÁÄÁÎŮ ĐÁËĹÔŮ ÄĚŃ ŐÓÔÁÎĎ×ËÉ" -#: rpm.c:1267 rpmqv.c:1066 +#: rpm.c:1267 rpmqv.c:1067 msgid "extra arguments given for query of all packages" msgstr "× ÚÁĐŇĎÓĹ ËĎ ×ÓĹÍ ĐÁËĹÔÁÍ ÚÁÄÁÎŮ ĚÉŰÎÉĹ ÁŇÇŐÍĹÎÔŮ" -#: rpm.c:1272 rpmqv.c:1075 +#: rpm.c:1272 rpmqv.c:1076 msgid "no arguments given for query" msgstr "ÎĹ ÚÁÄÁÎŮ ÁŇÇŐÍĹÎÔŮ ÚÁĐŇĎÓÁ" -#: rpm.c:1289 rpmqv.c:1091 +#: rpm.c:1289 rpmqv.c:1092 msgid "extra arguments given for verify of all packages" msgstr "× ÚÁĐŇĎÓĹ ×ĹŇÉĆÉËÁĂÉÉ ×ÓĹČ ĐÁËĹÔĎ× ÚÁÄÁÎŮ ĚÉŰÎÉĹ ÁŇÇŐÍĹÎÔŮ" -#: rpm.c:1293 rpmqv.c:1095 +#: rpm.c:1293 rpmqv.c:1096 msgid "no arguments given for verify" msgstr "ÎĹ ÚÁÄÁÎŮ ÁŇÇŐÍĹÎÔŮ ÄĚŃ ×ĹŇÉĆÉËÁĂÉÉ" @@ -1757,17 +1757,17 @@ msgstr "ÎĹÔ ĎĐÉÓÁÎÉŃ × %%changelog\n" msgid "line %d: Error parsing %%description: %s\n" msgstr "ÓÔŇĎËÁ %d: ďŰÉÂËÁ ÁÎÁĚÉÚÁ %%description: %s\n" -#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:192 +#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:190 #, c-format msgid "line %d: Bad option %s: %s\n" msgstr "ÓÔŇĎËÁ %d: îĹ×ĹŇÎŮĘ ĐÁŇÁÍĹÔŇ %s: %s\n" -#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:204 +#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:202 #, c-format msgid "line %d: Too many names: %s\n" msgstr "ÓÔŇĎËÁ %d: óĚÉŰËĎÍ ÍÎĎÇĎ ÉÍĹÎ: %s\n" -#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:213 +#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:211 #, c-format msgid "line %d: Package does not exist: %s\n" msgstr "ÓÔŇĎËÁ %d: đÁËĹÔ ÎĹ ÓŐÝĹÓÔ×ŐĹÔ: %s\n" @@ -1999,22 +1999,22 @@ msgstr "ÓÔŇĎËÁ %d: ÷ĹŇÓÉÉ × ÉÍĹÎÁČ ĆÁĘĚĎ× ÎĹÄĎĐŐÓÔÉÍŮ: %s\n" msgid "line %d: Version required: %s\n" msgstr "ÓÔŇĎËÁ %d: ôŇĹÂŐĹÔÓŃ ×ĹŇÓÉŃ: %s\n" -#: build/parseScript.c:158 +#: build/parseScript.c:156 #, c-format msgid "line %d: triggers must have --: %s\n" msgstr "ÓÔŇĎËÁ %d: ÔŇÉÇÇĹŇŮ ÄĎĚÖÎŮ ÓĎÄĹŇÖÁÔŘ --: %s\n" -#: build/parseScript.c:168 build/parseScript.c:229 +#: build/parseScript.c:166 build/parseScript.c:227 #, c-format msgid "line %d: Error parsing %s: %s\n" msgstr "ÓÔŇĎËÁ %d: ďŰÉÂËÁ ÁÎÁĚÉÚÁ %s: %s\n" -#: build/parseScript.c:179 +#: build/parseScript.c:177 #, c-format msgid "line %d: script program must begin with '/': %s\n" msgstr "ÓÔŇĎËÁ %d: đŇĎÇŇÁÍÍŮ × ÓĂĹÎÁŇÉŃČ ÄĎĚÖÎŮ ÎÁŢÉÎÁÔŘÓŃ Ó '/': %s\n" -#: build/parseScript.c:221 +#: build/parseScript.c:219 #, c-format msgid "line %d: Second %s\n" msgstr "ÓÔŇĎËÁ %d: ÷ÔĎŇĎĹ %s\n" @@ -2055,11 +2055,11 @@ msgstr "%s:%d: îÁĘÄĹÎ %%endif ÂĹÚ %%if\n" msgid "malformed %%include statement\n" msgstr "ÎĹ×ĹŇÎĎĹ ĎÂßŃ×ĚĹÎÉĹ %%include\n" -#: build/parseSpec.c:508 +#: build/parseSpec.c:509 msgid "No compatible architectures found for build\n" msgstr "îĹ ÎÁĘÄĹÎŮ ÓĎ×ÍĹÓÔÉÍŮĹ ÁŇČÉÔĹËÔŐŇŮ ÄĚŃ ÓÂĎŇËÉ.\n" -#: build/parseSpec.c:563 +#: build/parseSpec.c:564 #, c-format msgid "Package has no %%description: %s\n" msgstr "đÁËĹÔ ÎĹ ÉÍĹĹÔ %%description: %s\n" @@ -2135,108 +2135,108 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr " %s A %s\tB %s\n" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "YES" msgstr "äá" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "NO " msgstr "îĺT" -#: lib/depends.c:1021 +#: lib/depends.c:1015 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "%s: %-45s YES (added files)\n" -#: lib/depends.c:1131 +#: lib/depends.c:1126 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "%s: %-45s YES (added provide)\n" -#: lib/depends.c:1222 +#: lib/depends.c:1217 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "%s: %-45s %-s (cached)\n" -#: lib/depends.c:1251 +#: lib/depends.c:1246 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "%s: %-45s YES (rpmrc provides)\n" -#: lib/depends.c:1268 +#: lib/depends.c:1263 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "%s: %-45s YES (rpmlib provides)\n" -#: lib/depends.c:1292 +#: lib/depends.c:1287 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "%s: %-45s YES (db files)\n" -#: lib/depends.c:1305 +#: lib/depends.c:1300 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "%s: %-45s YES (db provides)\n" -#: lib/depends.c:1319 +#: lib/depends.c:1314 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "%s: %-45s YES (db package)\n" -#: lib/depends.c:1335 +#: lib/depends.c:1330 #, c-format msgid "%s: %-45s NO\n" msgstr "%s: %-45s NO\n" -#: lib/depends.c:1356 +#: lib/depends.c:1351 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "%s: (%s, %s) ÄĎÂÁ×ĚĹÎĎ × ËĹŰ ÚÁ×ÉÓÉÍĎÓÔĹĘ\n" #. requirements are not satisfied. -#: lib/depends.c:1428 +#: lib/depends.c:1423 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "ÔŇĹÂĎ×ÁÎÉŃ ĐÁËĹÔÁ %s-%s-%s ÎĹ ŐÄĎ×ĚĹÔ×ĎŇĹÎŮ: %s\n" #. conflicts exist. -#: lib/depends.c:1507 +#: lib/depends.c:1502 #, c-format msgid "package %s conflicts: %s\n" msgstr "ĐÁËĹÔ %s ËĎÎĆĚÉËÔŐĹÔ Ó: %s\n" -#: lib/depends.c:1753 +#: lib/depends.c:1748 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "ŐÄÁĚŃĹÔÓŃ %s-%s-%s \"%s\" ÉÚ ŐĐĎŇŃÄĎŢĹÎÎŮČ ÚÁ×ÉÓÉÍĎÓÔĹĘ.\n" #. Record all relations. -#: lib/depends.c:1902 +#: lib/depends.c:1897 msgid "========== recording tsort relations\n" msgstr "========== ÚÁĐÉÓŘ ŐĐĎŇŃÄĎŢĹÎÎŮČ ÚÁ×ÉÓÉÍĎÓÔĹĘ\n" #. T4. Scan for zeroes. -#: lib/depends.c:1960 +#: lib/depends.c:1955 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" "========== ÓĎŇÔÉŇĎ×ËÁ ĐÁËĹÔĎ× (ĎŢĹŇĹÄÎĎÓÔŘ, #predecessors, #succesors, " "ÇĚŐÂÉÎÁ)\n" -#: lib/depends.c:2010 +#: lib/depends.c:2005 msgid "========== successors only (presentation order)\n" msgstr "========== ÔĎĚŘËĎ ĐĎÓĚĹÄĎ×ÁÔĹĚÉ (× ĐĎŇŃÄËĹ ĐŇĹÄÓÔÁ×ĚĹÎÉŃ)\n" -#: lib/depends.c:2062 +#: lib/depends.c:2057 msgid "LOOP:\n" msgstr "ăéëě:\n" -#: lib/depends.c:2091 +#: lib/depends.c:2086 msgid "========== continuing tsort ...\n" msgstr "========== ĐŇĎÄĎĚÖĹÎÉĹ ŐĐĎŇŃÄĎŢĹÎÉŃ ...\n" #: lib/formats.c:28 lib/formats.c:54 lib/formats.c:85 lib/formats.c:128 -#: lib/header.c:2621 lib/header.c:2642 lib/header.c:2664 +#: lib/header.c:2623 lib/header.c:2644 lib/header.c:2666 msgid "(not a number)" msgstr "(ÎĹ ŢÉÓĚĎ)" @@ -2259,7 +2259,7 @@ msgstr "ÎĹ×ĎÚÍĎÖÎĎ ĐĎĚŐŢÉÔŘ ÉÎĆĎŇÍÁĂÉŔ Ď %s: %s\n" msgid "getting list of mounted filesystems\n" msgstr "ĐĎĚŐŢĹÎÉĹ ÓĐÉÓËÁ ÓÍĎÎÔÉŇĎ×ÁÎÎŮČ ĆÁĘĚĎ×ŮČ ÓÉÓÔĹÍ\n" -#: lib/fs.c:153 rpmio/url.c:477 +#: lib/fs.c:153 rpmio/url.c:475 #, c-format msgid "failed to open %s: %s\n" msgstr "ÎĹ×ĎÚÍĎÖÎĎ ĎÔËŇŮÔŘ %s: %s\n" @@ -2269,46 +2269,46 @@ msgstr "ÎĹ×ĎÚÍĎÖÎĎ ĎÔËŇŮÔŘ %s: %s\n" msgid "file %s is on an unknown device\n" msgstr "ĆÁĘĚ %s - ÎÁ ÎĹÉÚ×ĹÓÔÎĎÍ ŐÓÔŇĎĘÓÔ×Ĺ\n" -#: lib/fsm.c:290 +#: lib/fsm.c:288 msgid "========= Directories not explictly included in package:\n" msgstr "========= ëÁÔÁĚĎÇÉ, ËĎÔĎŇŮĹ ÎĹ ×ËĚŔŢĹÎŮ × ĐÁËĹÔ Ń×ÎĎ:\n" -#: lib/fsm.c:292 +#: lib/fsm.c:290 #, c-format msgid "%9d %s\n" msgstr "%9d %s\n" -#: lib/fsm.c:1130 +#: lib/fsm.c:1124 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "ËÁÔÁĚĎÇ %s ÓĎÚÄÁÎ Ó ĐŇÁ×ÁÍÉ ÄĎÓÔŐĐÁ %04o.\n" -#: lib/fsm.c:1407 +#: lib/fsm.c:1401 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "ĆÁĘĚ ÁŇČÉ×Á %s ÎĹ ÎÁĘÄĹÎ × ÓĐÉÓËĹ ĆÁĘĚĎ× ÚÁÇĎĚĎ×ËÁ\n" -#: lib/fsm.c:1526 lib/fsm.c:1651 +#: lib/fsm.c:1520 lib/fsm.c:1645 #, c-format msgid "%s saved as %s\n" msgstr "%s ÓĎČŇÁÎĹÎ ËÁË %s\n" -#: lib/fsm.c:1677 +#: lib/fsm.c:1671 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "%s ÎĹ×ĎÚÍĎÖÎĎ ŐÄÁĚÉÔŘ %s: ËÁÔÁĚĎÇ ÎĹ ĐŐÓÔ\n" -#: lib/fsm.c:1683 +#: lib/fsm.c:1677 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s ĎŰÉÂËÁ ŐÄÁĚĹÎÉŃ ËÁÔÁĚĎÇÁ %s: %s\n" -#: lib/fsm.c:1693 +#: lib/fsm.c:1687 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s ÎĹ×ĎÚÍĎÖÎĎ ŐÄÁĚÉÔŘ %s: %s\n" -#: lib/fsm.c:1712 +#: lib/fsm.c:1706 #, c-format msgid "%s created as %s\n" msgstr "%s ÓĎÚÄÁÎ ËÁË %s\n" @@ -2324,77 +2324,77 @@ msgid "Data type %d not supported\n" msgstr "ôÉĐ ÄÁÎÎŮČ %d ÎĹ ĐĎÄÄĹŇÖÉ×ÁĹÔÓŃ\n" #. @-observertrans -readonlytrans@ -#: lib/header.c:1930 +#: lib/header.c:1932 #, c-format msgid "missing { after %" msgstr "ĎÔÓŐÔÓÔ×ŐĹÔ \"{\" ĐĎÓĚĹ \"%\"" #. @-observertrans -readonlytrans@ -#: lib/header.c:1960 +#: lib/header.c:1962 msgid "missing } after %{" msgstr "ĎÔÓŐÔÓÔ×ŐĹÔ \"}\" ĐĎÓĚĹ \"%{\"" #. @-observertrans -readonlytrans@ -#: lib/header.c:1974 +#: lib/header.c:1976 msgid "empty tag format" msgstr "ĐŐÓÔĎĘ ĆĎŇÍÁÔ ÔÜÇÁ" #. @-observertrans -readonlytrans@ -#: lib/header.c:1988 +#: lib/header.c:1990 msgid "empty tag name" msgstr "ĐŐÓÔĎĹ ÉÍŃ ÔÜÇÁ" #. @-observertrans -readonlytrans@ -#: lib/header.c:2005 +#: lib/header.c:2007 msgid "unknown tag" msgstr "ÎĹÉÚ×ĹÓÔÎŮĘ ÔÜÇ" #. @-observertrans -readonlytrans@ -#: lib/header.c:2032 +#: lib/header.c:2034 msgid "] expected at end of array" msgstr "× ËĎÎĂĹ ÍÁÓÓÉ×Á ĎÖÉÄÁĚÁÓŘ \"]\"" #. @-observertrans -readonlytrans@ -#: lib/header.c:2050 +#: lib/header.c:2052 msgid "unexpected ]" msgstr "ÎĹĎÖÉÄÁÎÎÁŃ \"]\"" #. @-observertrans -readonlytrans@ -#: lib/header.c:2054 +#: lib/header.c:2056 msgid "unexpected }" msgstr "ÎĹĎÖÉÄÁÎÎÁŃ \"}\"" #. @-observertrans -readonlytrans@ -#: lib/header.c:2120 +#: lib/header.c:2122 msgid "? expected in expression" msgstr "× ×ŮŇÁÖĹÎÉÉ ĎÖÉÄÁĚĎÓŘ \"?\"" #. @-observertrans -readonlytrans@ -#: lib/header.c:2129 +#: lib/header.c:2131 msgid "{ expected after ? in expression" msgstr "× ×ŮŇÁÖĹÎÉÉ ĐĎÓĚĹ \"?\" ĎÖÉÄÁĚĎÓŘ \"{\"" #. @-observertrans -readonlytrans@ -#: lib/header.c:2142 lib/header.c:2184 +#: lib/header.c:2144 lib/header.c:2186 msgid "} expected in expression" msgstr "× ×ŮŇÁÖĹÎÉÉ ĎÖÉÄÁĚĎÓŘ \"}\"" #. @-observertrans -readonlytrans@ -#: lib/header.c:2152 +#: lib/header.c:2154 msgid ": expected following ? subexpression" msgstr "× ×ŮŇÁÖĹÎÉÉ ĐĎÓĚĹ \"?\" ĎÖÉÄÁĚĎÓŘ \":\"" #. @-observertrans -readonlytrans@ -#: lib/header.c:2169 +#: lib/header.c:2171 msgid "{ expected after : in expression" msgstr "× ×ŮŇÁÖĹÎÉÉ ĐĎÓĚĹ \":\" ĎÖÉÄÁĚĎÓŘ \"{\"" #. @-observertrans -readonlytrans@ -#: lib/header.c:2194 +#: lib/header.c:2196 msgid "| expected at end of expression" msgstr "× ËĎÎĂĹ ×ŮŇÁÖĹÎÉŃ ĎÖÉÄÁĚÓŃ \"|\"" -#: lib/header.c:2381 +#: lib/header.c:2383 msgid "(unknown type)" msgstr "(ÎĹÉÚ×ĹÓÔÎŮĘ ÔÉĐ)" @@ -2985,7 +2985,7 @@ msgid "can't query %s: %s\n" msgstr "ÎĹ×ĎÚÍĎÖÎĎ ÚÁĐŇĎÓÉÔŘ %s: %s\n" #: lib/query.c:576 lib/query.c:610 lib/rpminstall.c:309 lib/rpminstall.c:453 -#: lib/rpminstall.c:826 +#: lib/rpminstall.c:824 #, c-format msgid "open of %s failed: %s\n" msgstr "ÎĹ×ĎÚÍĎÖÎĎ ĎÔËŇŮÔŘ %s: %s\n" @@ -3122,27 +3122,27 @@ msgstr "%s: ĎŰÉÂËÁ rpmWriteSignature: %s\n" msgid "%s: No signature available (v1.0 RPM)\n" msgstr "%s: đĎÄĐÉÓÉ ÎĹÔ (RPM v1.0)\n" -#: lib/rpmchecksig.c:437 +#: lib/rpmchecksig.c:431 msgid "NOT OK" msgstr "îĺ Oë" -#: lib/rpmchecksig.c:438 lib/rpmchecksig.c:452 +#: lib/rpmchecksig.c:432 lib/rpmchecksig.c:446 msgid " (MISSING KEYS:" msgstr " (ďôóőôóô÷őŕô ëěŕţé:" -#: lib/rpmchecksig.c:440 lib/rpmchecksig.c:454 +#: lib/rpmchecksig.c:434 lib/rpmchecksig.c:448 msgid ") " msgstr ") " -#: lib/rpmchecksig.c:441 lib/rpmchecksig.c:455 +#: lib/rpmchecksig.c:435 lib/rpmchecksig.c:449 msgid " (UNTRUSTED KEYS:" msgstr " (îĺô äď÷ĺňéń ë ëěŕţáí:" -#: lib/rpmchecksig.c:443 lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 lib/rpmchecksig.c:451 msgid ")" msgstr ")" -#: lib/rpmchecksig.c:451 +#: lib/rpmchecksig.c:445 msgid "OK" msgstr "Oë" @@ -3191,7 +3191,7 @@ msgstr "ĎŰÉÂËÁ ŢÔĹÎÉŃ ÉÚ ĆÁĘĚÁ %s\n" msgid "file %s requires a newer version of RPM\n" msgstr "ÄĚŃ ĆÁĘĚÁ %s ÎĹĎÂČĎÄÉÍÁ ÂĎĚĹĹ ÎĎ×ÁŃ ×ĹŇÓÉŃ RPM\n" -#: lib/rpminstall.c:445 lib/rpminstall.c:686 +#: lib/rpminstall.c:445 lib/rpminstall.c:684 #, c-format msgid "%s cannot be installed\n" msgstr "%s ÎĹ ÍĎÖĹÔ ÂŮÔŘ ŐÓÔÁÎĎ×ĚĹÎ\n" @@ -3238,7 +3238,7 @@ msgstr "ÎĹ×ĎÚÍĎÖÎĎ ĎÔËŇŮÔŘ %s: %s\n" msgid "Installing %s\n" msgstr "őÓÔÁÎÁ×ĚÉ×ÁĹÔÓŃ %s\n" -#: lib/rpmlead.c:49 +#: lib/rpmlead.c:47 #, c-format msgid "read failed: %s (%d)\n" msgstr "ĎŰÉÂËÁ ŢÔĹÎÉŃ: %s (%d)\n" @@ -3253,88 +3253,88 @@ msgstr "ĎÔÓŐÔÓÔ×ŐĹÔ ×ÔĎŇĎĹ ':' × %s:%d\n" msgid "missing architecture name at %s:%d\n" msgstr "ĎÔÓŐÔÓÔ×ŐĹÔ ÎÁÚ×ÁÎÉĹ ÁŇČÉÔĹËÔŐŇŮ × %s:%d\n" -#: lib/rpmrc.c:325 +#: lib/rpmrc.c:328 #, c-format msgid "Incomplete data line at %s:%d\n" msgstr "îĹĐĎĚÎÁŃ ÓÔŇĎËÁ ÄÁÎÎŮČ × %s:%d\n" -#: lib/rpmrc.c:330 +#: lib/rpmrc.c:333 #, c-format msgid "Too many args in data line at %s:%d\n" msgstr "óĚÉŰËĎÍ ÍÎĎÇĎ ÁŇÇŐÍĹÎÔĎ× × ÓÔŇĎËĹ ÄÁÎÎŮČ × %s:%d\n" -#: lib/rpmrc.c:338 +#: lib/rpmrc.c:341 #, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "îĹ×ĹŇÎŮĘ ÎĎÍĹŇ arch/os: %s (%s:%d)\n" -#: lib/rpmrc.c:378 +#: lib/rpmrc.c:384 #, c-format msgid "Incomplete default line at %s:%d\n" msgstr "îĹĐĎĚÎÁŃ ÓÔŇĎËÁ ĐĎ ŐÍĎĚŢÁÎÉŔ × %s:%d\n" -#: lib/rpmrc.c:383 +#: lib/rpmrc.c:389 #, c-format msgid "Too many args in default line at %s:%d\n" msgstr "óĚÉŰËĎÍ ÍÎĎÇĎ ÁŇÇŐÍĹÎÔĎ× × ÓÔŇĎËĹ ĐĎ ŐÍĎĚŢÁÎÉŔ × %s:%d\n" -#: lib/rpmrc.c:585 +#: lib/rpmrc.c:591 #, c-format msgid "Cannot expand %s\n" msgstr "îĹ×ĎÚÍĎÖÎĎ ŇÁÓËŇŮÔŘ %s\n" -#: lib/rpmrc.c:590 +#: lib/rpmrc.c:596 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "îĹ×ĎÚÍĎÖÎĎ ĐŇĎŢÉÔÁÔŘ %s, ÚÎÁŢĹÎÉĹ HOME ÓĚÉŰËĎÍ ×ĹĚÉËĎ.\n" -#: lib/rpmrc.c:607 +#: lib/rpmrc.c:613 #, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "îĹ×ĎÚÍĎÖÎĎ ĎÔËŇŮÔŘ %s ÄĚŃ ŢÔĹÎÉŃ: %s.\n" #. XXX Feof(fd) -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:660 #, c-format msgid "Failed to read %s: %s.\n" msgstr "îĹ×ĎÚÍĎÖÎĎ ĐŇĎŢĹÓÔŘ %s: %s.\n" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:697 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "ĎÔÓŐÔÓÔ×ŐĹÔ ':' (ÎÁĘÄĹÎ 0x%02x) × %s:%d\n" -#: lib/rpmrc.c:708 lib/rpmrc.c:782 +#: lib/rpmrc.c:714 lib/rpmrc.c:788 #, c-format msgid "missing argument for %s at %s:%d\n" msgstr "ĎÔÓŐÔÓÔ×ŐĹÔ ÁŇÇŐÍĹÎÔ ÄĚŃ %s × %s:%d\n" -#: lib/rpmrc.c:725 lib/rpmrc.c:747 +#: lib/rpmrc.c:731 lib/rpmrc.c:753 #, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "ĎŰÉÂËÁ ŇÁÓËŇŮÔÉŃ %s ÎÁ %s:%d \"%s\"\n" -#: lib/rpmrc.c:734 +#: lib/rpmrc.c:740 #, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "ÎĹ×ĎÚÍĎÖÎĎ ĎÔËŇŮÔŘ %s × %s:%d %s\n" -#: lib/rpmrc.c:774 +#: lib/rpmrc.c:780 #, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "ĎÔÓŐÔÓÔ×ŐĹÔ ÁŇČÉÔĹËÔŐŇÁ ÄĚŃ %s × %s:%d\n" -#: lib/rpmrc.c:841 +#: lib/rpmrc.c:847 #, c-format msgid "bad option '%s' at %s:%d\n" msgstr "ÎĹ×ĹŇÎŮĘ ĐÁŇÁÍĹÔŇ '%s' × %s:%d\n" -#: lib/rpmrc.c:1436 +#: lib/rpmrc.c:1442 #, c-format msgid "Unknown system: %s\n" msgstr "îĹÉÚ×ĹÓÔÎÁŃ ÓÉÓÔĹÍÁ: %s\n" -#: lib/rpmrc.c:1437 +#: lib/rpmrc.c:1443 msgid "Please contact rpm-list@redhat.com\n" msgstr "ó×ŃÖÉÔĹÓŘ Ó rpm-list@redhat.com\n" @@ -3365,145 +3365,145 @@ msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" "óÔÁŇÁŃ (ÔĎĚŘËĎ ÄĚŃ ×ÎŐÔŇĹÎÎĹÇĎ ÉÓĐĎĚŘÚĎ×ÁÎÉŃ) ĐĎÄĐÉÓŘ! çÄĹ ×Ů üôď ×ÚŃĚÉ!?\n" -#: lib/signature.c:230 +#: lib/signature.c:228 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "đĎÄĐÉÓŘ: ŇÁÚÍĹŇ(%d)+ÚÁĐĎĚÎĹÎÉĹ(%d)\n" -#: lib/signature.c:290 +#: lib/signature.c:288 #, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "î×ĎÚÍĎÖÎĎ ÚÁĐŐÓÔÉÔŘ pgp (%s)\n" -#: lib/signature.c:303 +#: lib/signature.c:301 msgid "pgp failed\n" msgstr "ĎŰÉÂËÁ pgp\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:310 +#: lib/signature.c:308 msgid "pgp failed to write signature\n" msgstr "ĎŰÉÂËÁ pgp ĐŇÉ ÚÁĐÉÓÉ ĐĎÄĐÉÓÉ\n" -#: lib/signature.c:315 +#: lib/signature.c:313 #, c-format msgid "PGP sig size: %d\n" msgstr "ňÁÚÍĹŇ ĐĎÄĐÉÓÉ PGP: %d\n" -#: lib/signature.c:328 lib/signature.c:410 +#: lib/signature.c:326 lib/signature.c:408 msgid "unable to read the signature\n" msgstr "ÎĹ×ĎÚÍĎÖÎĎ ĐŇĎŢĹÓÔŘ ĐĎÄĐÉÓŘ\n" -#: lib/signature.c:333 +#: lib/signature.c:331 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "đĎĚŐŢĹÎĎ %d ÂÁĘÔ ĐĎÄĐÉÓÉ PGP\n" -#: lib/signature.c:372 lib/signature.c:760 +#: lib/signature.c:370 lib/signature.c:758 msgid "Couldn't exec gpg\n" msgstr "îĹ×ĎÚÍĎÖÎĎ ÚÁĐŐÓÔÉÔŘ gpg\n" -#: lib/signature.c:385 +#: lib/signature.c:383 msgid "gpg failed\n" msgstr "ĎŰÉÂËÁ gpg\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:392 +#: lib/signature.c:390 msgid "gpg failed to write signature\n" msgstr "ĎŰÉÂËÁ gpg ĐŇÉ ÚÁĐÉÓÉ ĐĎÄĐÉÓÉ\n" -#: lib/signature.c:397 +#: lib/signature.c:395 #, c-format msgid "GPG sig size: %d\n" msgstr "ňÁÚÍĹŇ ĐĎÄĐÉÓÉ GPG: %d\n" -#: lib/signature.c:415 +#: lib/signature.c:413 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "đĎĚŐŢĹÎĎ %d ÂÁĘÔ ĐĎÄĐÉÓÉ GPG\n" -#: lib/signature.c:443 +#: lib/signature.c:441 msgid "Generating signature using PGP.\n" msgstr "çĹÎĹŇÉŇŐĹÔÓŃ ĐĎÄĐÉÓŘ PGP.\n" -#: lib/signature.c:449 +#: lib/signature.c:447 msgid "Generating signature using GPG.\n" msgstr "çĹÎĹŇÉŇŐĹÔÓŃ ĐĎÄĐÉÓŘ GPG.\n" -#: lib/signature.c:532 lib/signature.c:607 +#: lib/signature.c:530 lib/signature.c:605 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" "î×ĎÚÍĎÖÎĎ ÚÁĐŐÓÔÉÔŘ pgp. éÓĐĎĚŘÚŐĘÔĹ --nopgp ŢÔĎÂŮ ĐŇĎĐŐÓÔÉÔŘ ĐŇĎ×ĹŇËŐ PGP " "ĐĎÄĐÉÓĹĘ.\n" -#: lib/signature.c:697 +#: lib/signature.c:695 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" "îĹ×ĎÚÍĎÖÎĎ ÚÁĐŐÓÔÉÔŘ gpg. éÓĐĎĚŘÚŐĘÔĹ --nogpg ŢÔĎÂŮ ĐŇĎĐŐÓÔÉÔŘ ĐŇĎ×ĹŇËŐ GPG " "ĐĎÄĐÉÓĹĘ.\n" -#: lib/signature.c:789 +#: lib/signature.c:787 msgid "Couldn't exec pgp\n" msgstr "îĹ×ĎÚÍĎÖÎĎ ÚÁĐŐÓÔÉÔŘ pgp\n" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:793 lib/signature.c:846 +#: lib/signature.c:791 lib/signature.c:844 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "îĹ×ĹŇÎÁŃ ÓĐĹĂÉĆÉËÁĂÉŃ %%_signature × ÍÁËŇĎĆÁĘĚĹ\n" -#: lib/signature.c:826 +#: lib/signature.c:824 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "÷Ů ÄĎĚÖÎŮ ŐÓÔÁÎĎ×ÉÔŘ \"%%_gpg_name\" × ×ÁŰĹÍ ÍÁËŇĎĆÁĘĚĹ\n" -#: lib/signature.c:838 +#: lib/signature.c:836 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "÷Ů ÄĎĚÖÎŮ ŐÓÔÁÎĎ×ÉÔŘ \"%%_pgp_name\" × ×ÁŰĹÍ ÍÁËŇĎĆÁĘĚĹ\n" -#: lib/transaction.c:446 +#: lib/transaction.c:447 msgid "========== relocations\n" msgstr "========== ĐĹŇĹÍĹÝĹÎÉĘ\n" -#: lib/transaction.c:450 +#: lib/transaction.c:451 #, c-format msgid "%5d exclude %s\n" msgstr "%5d ÉÓËĚŔŢĹÎ %s\n" -#: lib/transaction.c:453 +#: lib/transaction.c:454 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "%5d ĐĹŇĹÍĹÝĹÎÉĹ %s -> %s\n" -#: lib/transaction.c:523 +#: lib/transaction.c:524 #, c-format msgid "excluding multilib path %s%s\n" msgstr "ÉÓËĚŔŢÁĹÔÓŃ ÍÎĎÇĎÂÉÂĚÉĎÔĹŢÎŮĘ ĐŐÔŘ %s%s\n" -#: lib/transaction.c:586 +#: lib/transaction.c:587 #, c-format msgid "excluding %s %s\n" msgstr "ÉÓËĚŔŢÁĹÔÓŃ %s %s\n" -#: lib/transaction.c:596 +#: lib/transaction.c:597 #, c-format msgid "relocating %s to %s\n" msgstr "ĐĹŇĹÍĹÝÁĹÔÓŃ %s × %s\n" -#: lib/transaction.c:674 +#: lib/transaction.c:675 #, c-format msgid "relocating directory %s to %s\n" msgstr "ĐĹŇĹÍĹÝÁĹÔÓŃ ËÁÔÁĚĎÇ %s × %s\n" -#: lib/transaction.c:808 +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s ĐŇĎĐŐÝĹÎ ÉÚ-ÚÁ ĆĚÁÇÁ missingok\n" -#: lib/transaction.c:1406 +#: lib/transaction.c:1407 #, c-format msgid "excluding directory %s\n" msgstr "ÉÓËĚŔŢÁĹÔÓŃ ËÁÔÁĚĎÇ %s\n" @@ -3710,11 +3710,11 @@ msgstr "ĎŰÉÂËÁ(%d) ÚÁĐÉÓÉ ÚÁĐÉÓÉ %s × %s\n" msgid "error(%d) removing record %s from %s\n" msgstr "ĎŰÉÂËÁ(%d) ŐÄÁĚĹÎÉŃ ÚÁĐÉÓÉ %s ÉÚ %s\n" -#: rpmdb/rpmdb.c:842 +#: rpmdb/rpmdb.c:846 msgid "no dbpath has been set\n" msgstr "ĐÁŇÁÍĹÔĹŇ dbpath ÎĹ ŐÓÔÁÎĎ×ĚĹÎ\n" -#: rpmdb/rpmdb.c:973 +#: rpmdb/rpmdb.c:977 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" @@ -3723,115 +3723,115 @@ msgstr "" "ÂÁÚŮ ÄÁÎÎŮČ ÎĎ×ĎÇĎ ĆĎŇÍÁÔÁ\n" #. error -#: rpmdb/rpmdb.c:1206 +#: rpmdb/rpmdb.c:1210 #, c-format msgid "error(%d) counting packages\n" msgstr "ĎŰÉÂËÁ(%d) ĐŇÉ ĐĎÄÓŢŁÔĹ ĐÁËĹÔĎ×\n" -#: rpmdb/rpmdb.c:1940 rpmdb/rpmdb.c:3122 +#: rpmdb/rpmdb.c:1944 rpmdb/rpmdb.c:3126 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "ÚÁĐÉÓŘ ÎĎÍĹŇ %u × ÂÁÚĹ ÄÁÎÎŮČ ÎĹ×ĹŇÎÁ, ĐŇĎĐŐÓËÁĹÔÓŃ.\n" -#: rpmdb/rpmdb.c:1991 +#: rpmdb/rpmdb.c:1995 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "rpmdb: ĐĎĚŐŢĹÎ ĐĎ×ŇĹÖÄĹÎÎŮĘ ÚÁÇĎĚĎ×ĎË #%u, ĐŇĎĐŐÓËÁĹÔÓŃ.\n" -#: rpmdb/rpmdb.c:2256 +#: rpmdb/rpmdb.c:2260 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "%s: ÎĹ×ĎÚÍĎÖÎĎ ĐŇĎŢĹÓÔŘ ÚÁÇĎĚĎ×ĎË × 0x%x\n" -#: rpmdb/rpmdb.c:2325 +#: rpmdb/rpmdb.c:2329 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "ŐÄÁĚŃĹÔÓŃ \"%s\" ÉÚ ÉÎÄĹËÓÁ %s.\n" -#: rpmdb/rpmdb.c:2334 +#: rpmdb/rpmdb.c:2338 #, c-format msgid "removing %d entries from %s index.\n" msgstr "ŐÄÁĚŃĹÔÓŃ %d ÚÁĐÉÓĹĘ ÉÚ ÉÎÄĹËÓÁ %s.\n" -#: rpmdb/rpmdb.c:2529 +#: rpmdb/rpmdb.c:2533 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "ĎŰÉÂËÁ(%d) ŇĹÚĹŇ×ÉŇĎ×ÁÎÉŃ ĐÁÍŃÔÉ ÄĚŃ ĎÂŇÁÚÁ ÎĎ×ĎÇĎ ĐÁËĹÔÁ\n" -#: rpmdb/rpmdb.c:2607 +#: rpmdb/rpmdb.c:2611 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "ÄĎÂÁ×ĚŃĹÔÓŃ \"%s\" × ÉÎÄĹËÓ %s.\n" -#: rpmdb/rpmdb.c:2618 +#: rpmdb/rpmdb.c:2622 #, c-format msgid "adding %d entries to %s index.\n" msgstr "ÄĎÂÁ×ĚŃĹÔÓŃ %d ÚÁĐÉÓĹĘ × ÉÎÄĹËÓ %s\n" -#: rpmdb/rpmdb.c:3011 +#: rpmdb/rpmdb.c:3015 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "ŐÄÁĚŃĹÔÓŃ %s ĐĎÓĚĹ ŐÓĐĹŰÎĎÇĎ ÚÁ×ĹŇŰĹÎÉŃ ĐĹŇĹÉÎÄĹËÁĂÉÉ ÂÁÚŮ × db3.\n" -#: rpmdb/rpmdb.c:3041 +#: rpmdb/rpmdb.c:3045 msgid "no dbpath has been set" msgstr "ĐÁŇÁÍĹÔĹŇ dbpath ÎĹ ŐÓÔÁÎĎ×ĚĹÎ" -#: rpmdb/rpmdb.c:3068 +#: rpmdb/rpmdb.c:3072 #, c-format msgid "rebuilding database %s into %s\n" msgstr "ĐĹŇĹÓÔŇÁÉ×ÁĹÔÓŃ ÂÁÚÁ ÄÁÎÎŮČ %s × %s\n" -#: rpmdb/rpmdb.c:3072 +#: rpmdb/rpmdb.c:3076 #, c-format msgid "temporary database %s already exists\n" msgstr "×ŇĹÍĹÎÎÁŃ ÂÁÚÁ ÄÁÎÎŮČ %s ŐÖĹ ÓŐÝĹÓÔ×ŐĹÔ\n" -#: rpmdb/rpmdb.c:3078 +#: rpmdb/rpmdb.c:3082 #, c-format msgid "creating directory %s\n" msgstr "ÓĎÚÄÁŁÔÓŃ ËÁÔÁĚĎÇ %s\n" -#: rpmdb/rpmdb.c:3080 +#: rpmdb/rpmdb.c:3084 #, c-format msgid "creating directory %s: %s\n" msgstr "ÓĎÚÄÁŁÔÓŃ ËÁÔÁĚĎÇ %s: %s\n" -#: rpmdb/rpmdb.c:3087 +#: rpmdb/rpmdb.c:3091 #, c-format msgid "opening old database with dbapi %d\n" msgstr "ĎÔËŇŮ×ÁĹÔÓŃ ÓÔÁŇÁŃ ÂÁÚÁ ÄÁÎÎŮČ ŢĹŇĹÚ dbapi %d\n" -#: rpmdb/rpmdb.c:3098 +#: rpmdb/rpmdb.c:3102 #, c-format msgid "opening new database with dbapi %d\n" msgstr "ĎÔËŇŮ×ÁĹÔÓŃ ÎĎ×ÁŃ ÂÁÚÁ ÄÁÎÎŮČ ŢĹŇĹÚ dbapi %d\n" -#: rpmdb/rpmdb.c:3162 +#: rpmdb/rpmdb.c:3166 #, c-format msgid "cannot add record originally at %u\n" msgstr "ÎĹ×ĎÚÍĎÖÎĎ ÄĎÂÁ×ÉÔŘ ÚÁĐÉÓŘ (ĐĹŇ×ĎÎÁŢÁĚŘÎĎ × %u)\n" -#: rpmdb/rpmdb.c:3180 +#: rpmdb/rpmdb.c:3184 msgid "failed to rebuild database: original database remains in place\n" msgstr "" "ĐĹŇĹÓÔŇĎĹÎÉĹ ÂÁÚŮ ÄÁÎÎŮČ ÎĹ ŐÄÁĚĎÓŘ, ÓÔÁŇÁŃ ÂÁÚÁ ÄÁÎÎŮČ ĎÓÔÁĹÔÓŃ ÎÁ ÍĹÓÔĹ\n" -#: rpmdb/rpmdb.c:3188 +#: rpmdb/rpmdb.c:3192 msgid "failed to replace old database with new database!\n" msgstr "ÎĹ×ĎÚÍĎÖÎĎ ÚÁÍĹÎÉÔŘ ÓÔÁŇŐŔ ÂÁÚŐ ÄÁÎÎŮČ ÎÁ ÎĎ×ŐŔ!\n" -#: rpmdb/rpmdb.c:3190 +#: rpmdb/rpmdb.c:3194 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "ĆÁĘĚŮ × %s ÚÁÍĹÎŃŔÔÓŃ ĆÁĘĚÁÍÉ ÉÚ %s ÄĚŃ ×ĎÓÓÔÁÎĎ×ĚĹÎÉŃ" -#: rpmdb/rpmdb.c:3200 +#: rpmdb/rpmdb.c:3204 #, c-format msgid "removing directory %s\n" msgstr "ŐÄÁĚŃĹÔÓŃ ËÁÔÁĚĎÇ %s\n" -#: rpmdb/rpmdb.c:3202 +#: rpmdb/rpmdb.c:3206 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "ĎŰÉÂËÁ ŐÄÁĚĹÎÉŃ ËÁÔÁĚĎÇÁ %s: %s\n" @@ -3927,59 +3927,59 @@ msgstr "ćÁĘĚ %s: %s\n" msgid "File %s is smaller than %u bytes\n" msgstr "äĚÉÎÁ ĆÁĘĚÁ %s ÍĹÎŘŰĹ ŢĹÍ %u ÂÁĘÔ\n" -#: rpmio/rpmio.c:599 +#: rpmio/rpmio.c:588 msgid "Success" msgstr "÷ŮĐĎĚÎĹÎĎ" -#: rpmio/rpmio.c:602 +#: rpmio/rpmio.c:591 msgid "Bad server response" msgstr "îĹ×ĹŇÎŮĘ ĎÔ×ĹÔ ÓĹŇ×ĹŇÁ" -#: rpmio/rpmio.c:605 +#: rpmio/rpmio.c:594 msgid "Server I/O error" msgstr "ďŰÉÂËÁ ××ĎÄÁ/×Ů×ĎÄÁ ÓĹŇ×ĹŇÁ" -#: rpmio/rpmio.c:608 +#: rpmio/rpmio.c:597 msgid "Server timeout" msgstr "ôÁĘÍÁŐÔ ÓĹŇ×ĹŇÁ" -#: rpmio/rpmio.c:611 +#: rpmio/rpmio.c:600 msgid "Unable to lookup server host address" msgstr "îĹ ÍĎÇŐ ÎÁĘÔÉ ÁÄŇĹÓ ÓĹŇ×ĹŇÁ" -#: rpmio/rpmio.c:614 +#: rpmio/rpmio.c:603 msgid "Unable to lookup server host name" msgstr "îĹ ÍĎÇŐ ÎÁĘÔÉ ÉÍŃ ÓĹŇ×ĹŇÁ" -#: rpmio/rpmio.c:617 +#: rpmio/rpmio.c:606 msgid "Failed to connect to server" msgstr "îĹ ÍĎÇŐ ÓĎĹÄÉÎÉÔŘÓŃ Ó ÓĹŇ×ĹŇĎÍ" -#: rpmio/rpmio.c:620 +#: rpmio/rpmio.c:609 msgid "Failed to establish data connection to server" msgstr "îĹ ÍĎÇŐ ŐÓÔÁÎĎ×ÉÔŘ ÓĎĹÄÉÎĹÎÉĹ ÄĚŃ ÄÁÎÎŮČ Ó ÓĹŇ×ĹŇĎÍ" -#: rpmio/rpmio.c:623 +#: rpmio/rpmio.c:612 msgid "I/O error to local file" msgstr "ćÁĘĚĎ×ÁŃ ĎŰÉÂËÁ ××ĎÄÁ/×Ů×ĎÄÁ" -#: rpmio/rpmio.c:626 +#: rpmio/rpmio.c:615 msgid "Error setting remote server to passive mode" msgstr "ďŰÉÂËÁ ĐŇÉ ĐĹŇĹ×ĎÄĹ ŐÄÁĚĹÎÎĎÇĎ ÓĹŇ×ĹŇÁ × ĐÁÓÓÉ×ÎŮĘ ŇĹÖÉÍ" -#: rpmio/rpmio.c:629 +#: rpmio/rpmio.c:618 msgid "File not found on server" msgstr "ćÁĘĚ ÎĹ ÎÁĘÄĹÎ ÎÁ ÓĹŇ×ĹŇĹ" -#: rpmio/rpmio.c:632 +#: rpmio/rpmio.c:621 msgid "Abort in progress" msgstr "ďÔÍĹÎÁ × ĐŇĎĂĹÓÓĹ" -#: rpmio/rpmio.c:636 +#: rpmio/rpmio.c:625 msgid "Unknown or unexpected error" msgstr "îĹÉÚ×ĹÓÔÎÁŃ ÉĚÉ ÎĹĎÖÉÄÁÎÎÁŃ ĎŰÉÂËÁ" -#: rpmio/rpmio.c:1259 +#: rpmio/rpmio.c:1252 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "ŇĹÇÉÓÔŇÉŇŐŔÓŘ × %s ËÁË %s, ĐÁŇĎĚŘ %s\n" @@ -3989,7 +3989,7 @@ msgid "(no error)" msgstr "(ÎĹÔ ĎŰÉÂËÉ)" #. @-readonlytrans@ -#. FIX: double indeirection. +#. FIX: double indirection. #. @observer@ #: rpmio/rpmlog.c:114 rpmio/rpmlog.c:115 rpmio/rpmlog.c:116 msgid "fatal error: " @@ -4010,37 +4010,37 @@ msgstr "ĐŇĹÄŐĐŇĹÖÄĹÎÉĹ: " msgid "memory alloc (%u bytes) returned NULL.\n" msgstr "memory alloc (%u bytes) returned NULL.\n" -#: rpmio/url.c:103 +#: rpmio/url.c:101 #, c-format msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n" msgstr "×ÎÉÍÁÎÉĹ: u %p ctrl %p nrefs != 0 (%s %s)\n" -#: rpmio/url.c:123 +#: rpmio/url.c:121 #, c-format msgid "warning: u %p data %p nrefs != 0 (%s %s)\n" msgstr "×ÎÉÍÁÎÉĹ: u %p data %p nrefs != 0 (%s %s)\n" -#: rpmio/url.c:151 +#: rpmio/url.c:149 #, c-format msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" msgstr "×ÎÉÍÁÎÉĹ: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" -#: rpmio/url.c:244 +#: rpmio/url.c:242 #, c-format msgid "Password for %s@%s: " msgstr "đÁŇĎĚŘ ÄĚŃ %s@%s: " -#: rpmio/url.c:269 rpmio/url.c:295 +#: rpmio/url.c:267 rpmio/url.c:293 #, c-format msgid "error: %sport must be a number\n" msgstr "ĎŰÉÂËÁ: %s ĐĎŇÔ ÄĎĚÖĹÎ ÂŮÔŘ ŢÉÓĚĎÍ\n" -#: rpmio/url.c:434 +#: rpmio/url.c:432 msgid "url port must be a number\n" msgstr "url ĐĎŇÔ ÄĎĚÖĹÎ ÂŮÔŘ ŢÉÓĚĎÍ\n" #. XXX Fstrerror -#: rpmio/url.c:497 +#: rpmio/url.c:495 #, c-format msgid "failed to create %s: %s\n" msgstr "ÎĹ×ĎÚÍĎÖÎĎ ÓĎÚÄÁÔŘ %s: %s\n" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-09-21 11:01-0400\n" +"POT-Creation-Date: 2001-09-24 20:14-0400\n" "PO-Revision-Date: 1999-04-08 21:37+02:00\n" "Last-Translator: Stanislav Meduna <stano@eunet.sk>\n" "Language-Team: Slovak <sk-i18n@rak.isternet.sk>\n" @@ -1141,15 +1141,15 @@ msgstr "--sign môže byť použíté iba počas zostavenia balíka" msgid "exec failed\n" msgstr "vykonanie zlyhalo\n" -#: rpm.c:1116 rpmqv.c:1103 +#: rpm.c:1116 rpmqv.c:1104 msgid "unexpected arguments to --querytags " msgstr "neočakávané argumenty pre --querytags" -#: rpm.c:1127 rpmqv.c:1112 +#: rpm.c:1127 rpmqv.c:1113 msgid "no packages given for signature check" msgstr "neboli zadané žiadne balíky pre overenie podpisu" -#: rpm.c:1138 rpmqv.c:1121 +#: rpm.c:1138 rpmqv.c:1122 msgid "no packages given for signing" msgstr "neboli zadané žiadne balíky na podpis" @@ -1161,20 +1161,20 @@ msgstr "neboli zadané žiadne balíky pre odinštalovanie" msgid "no packages given for install" msgstr "neboli zadané žiadne balíky pre inštaláciu" -#: rpm.c:1267 rpmqv.c:1066 +#: rpm.c:1267 rpmqv.c:1067 msgid "extra arguments given for query of all packages" msgstr "boli zadané nadbytočné argumenty otázky pre všetky balíky" -#: rpm.c:1272 rpmqv.c:1075 +#: rpm.c:1272 rpmqv.c:1076 msgid "no arguments given for query" msgstr "neboli zadané žiadne argumenty pre otázku" -#: rpm.c:1289 rpmqv.c:1091 +#: rpm.c:1289 rpmqv.c:1092 #, fuzzy msgid "extra arguments given for verify of all packages" msgstr "boli zadané nadbytočné argumenty otázky pre všetky balíky" -#: rpm.c:1293 rpmqv.c:1095 +#: rpm.c:1293 rpmqv.c:1096 msgid "no arguments given for verify" msgstr "neboli zadané žiadne argumenty pre overenie" @@ -1805,17 +1805,17 @@ msgstr "žiadny popis v %%changelog" msgid "line %d: Error parsing %%description: %s\n" msgstr "riadok %d: Chyba pri analýze %%description: %s" -#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:192 +#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:190 #, fuzzy, c-format msgid "line %d: Bad option %s: %s\n" msgstr "riadok %d: Chybná voľba %s: %s" -#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:204 +#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:202 #, fuzzy, c-format msgid "line %d: Too many names: %s\n" msgstr "riadok %d: Priveľa názvov: %s" -#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:213 +#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:211 #, fuzzy, c-format msgid "line %d: Package does not exist: %s\n" msgstr "riadok %d: Balík neexistuje: %s" @@ -2047,22 +2047,22 @@ msgstr "riadok %d: Názvy súborov v %s neobsahujú verzie: %s" msgid "line %d: Version required: %s\n" msgstr "riadok %d: V %s sú vyžadované verzie: %s" -#: build/parseScript.c:158 +#: build/parseScript.c:156 #, fuzzy, c-format msgid "line %d: triggers must have --: %s\n" msgstr "riadok %d: triggers musia obsahovať --: %s" -#: build/parseScript.c:168 build/parseScript.c:229 +#: build/parseScript.c:166 build/parseScript.c:227 #, fuzzy, c-format msgid "line %d: Error parsing %s: %s\n" msgstr "riadok %d: Chyba pri analýze %s: %s" -#: build/parseScript.c:179 +#: build/parseScript.c:177 #, fuzzy, c-format msgid "line %d: script program must begin with '/': %s\n" msgstr "riadok %d: program skriptu musí začínať '/': %s" -#: build/parseScript.c:221 +#: build/parseScript.c:219 #, fuzzy, c-format msgid "line %d: Second %s\n" msgstr "riadok %d: Druhý %s" @@ -2103,12 +2103,12 @@ msgstr "%s:%d: %%endif bez if" msgid "malformed %%include statement\n" msgstr "znetvorený príkaz %%include" -#: build/parseSpec.c:508 +#: build/parseSpec.c:509 #, fuzzy msgid "No compatible architectures found for build\n" msgstr "Žiadne zostaviteľné architektúry" -#: build/parseSpec.c:563 +#: build/parseSpec.c:564 #, fuzzy, c-format msgid "Package has no %%description: %s\n" msgstr "Balík neobsahuje %%description: %s" @@ -2183,107 +2183,107 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "YES" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 #, fuzzy msgid "NO " msgstr "NIE JE V PORIADKU" -#: lib/depends.c:1021 +#: lib/depends.c:1015 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1131 +#: lib/depends.c:1126 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1222 +#: lib/depends.c:1217 #, fuzzy, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "súbor %s nie je vlastnený žiadnym balíkom\n" -#: lib/depends.c:1251 +#: lib/depends.c:1246 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1268 +#: lib/depends.c:1263 #, fuzzy, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "súbor %s nie je vlastnený žiadnym balíkom\n" -#: lib/depends.c:1292 +#: lib/depends.c:1287 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1305 +#: lib/depends.c:1300 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1319 +#: lib/depends.c:1314 #, fuzzy, c-format msgid "%s: %-45s YES (db package)\n" msgstr "súbor %s nie je vlastnený žiadnym balíkom\n" -#: lib/depends.c:1335 +#: lib/depends.c:1330 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1356 +#: lib/depends.c:1351 #, fuzzy, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "súbor %s nie je vlastnený žiadnym balíkom\n" #. requirements are not satisfied. -#: lib/depends.c:1428 +#: lib/depends.c:1423 #, fuzzy, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "požiadavka balíka %s nie je uspokojená: %s\n" #. conflicts exist. -#: lib/depends.c:1507 +#: lib/depends.c:1502 #, c-format msgid "package %s conflicts: %s\n" msgstr "balík %s koliduje: %s\n" -#: lib/depends.c:1753 +#: lib/depends.c:1748 #, fuzzy, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "odstraňuje sa index skupín\n" #. Record all relations. -#: lib/depends.c:1902 +#: lib/depends.c:1897 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1960 +#: lib/depends.c:1955 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2010 +#: lib/depends.c:2005 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2062 +#: lib/depends.c:2057 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2091 +#: lib/depends.c:2086 msgid "========== continuing tsort ...\n" msgstr "" #: lib/formats.c:28 lib/formats.c:54 lib/formats.c:85 lib/formats.c:128 -#: lib/header.c:2621 lib/header.c:2642 lib/header.c:2664 +#: lib/header.c:2623 lib/header.c:2644 lib/header.c:2666 msgid "(not a number)" msgstr "(nie je číslo)" @@ -2306,7 +2306,7 @@ msgstr "nepodarilo sa zistiť stav %s: %s" msgid "getting list of mounted filesystems\n" msgstr "" -#: lib/fs.c:153 rpmio/url.c:477 +#: lib/fs.c:153 rpmio/url.c:475 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "nepodarilo sa otvoriť %s: %s" @@ -2316,46 +2316,46 @@ msgstr "nepodarilo sa otvoriť %s: %s" msgid "file %s is on an unknown device\n" msgstr "súbor %s sa nachádza na neznámom zariadení" -#: lib/fsm.c:290 +#: lib/fsm.c:288 msgid "========= Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:292 +#: lib/fsm.c:290 #, fuzzy, c-format msgid "%9d %s\n" msgstr "riadok %d: %s" -#: lib/fsm.c:1130 +#: lib/fsm.c:1124 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1407 +#: lib/fsm.c:1401 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1526 lib/fsm.c:1651 +#: lib/fsm.c:1520 lib/fsm.c:1645 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "varovanie: %s uchovaný ako %s" -#: lib/fsm.c:1677 +#: lib/fsm.c:1671 #, 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:1683 +#: lib/fsm.c:1677 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "rmdir %s zlyhalo: %s" -#: lib/fsm.c:1693 +#: lib/fsm.c:1687 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "otvorenie %s zlyhalo\n" -#: lib/fsm.c:1712 +#: lib/fsm.c:1706 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "varovanie: %s vytvorené ako %s" @@ -2372,77 +2372,77 @@ msgid "Data type %d not supported\n" msgstr "Typ údajov %d nie je podorovaný\n" #. @-observertrans -readonlytrans@ -#: lib/header.c:1930 +#: lib/header.c:1932 #, c-format msgid "missing { after %" msgstr "chýbajúce { po %" #. @-observertrans -readonlytrans@ -#: lib/header.c:1960 +#: lib/header.c:1962 msgid "missing } after %{" msgstr "chýbajúce } po %{" #. @-observertrans -readonlytrans@ -#: lib/header.c:1974 +#: lib/header.c:1976 msgid "empty tag format" msgstr "prázdny tag formát" #. @-observertrans -readonlytrans@ -#: lib/header.c:1988 +#: lib/header.c:1990 msgid "empty tag name" msgstr "prázdne meno tagu" #. @-observertrans -readonlytrans@ -#: lib/header.c:2005 +#: lib/header.c:2007 msgid "unknown tag" msgstr "neznámy tag" #. @-observertrans -readonlytrans@ -#: lib/header.c:2032 +#: lib/header.c:2034 msgid "] expected at end of array" msgstr "] očakávané na konci poľa" #. @-observertrans -readonlytrans@ -#: lib/header.c:2050 +#: lib/header.c:2052 msgid "unexpected ]" msgstr "neočakávané ]" #. @-observertrans -readonlytrans@ -#: lib/header.c:2054 +#: lib/header.c:2056 msgid "unexpected }" msgstr "neočakávané }" #. @-observertrans -readonlytrans@ -#: lib/header.c:2120 +#: lib/header.c:2122 msgid "? expected in expression" msgstr "? očakávané vo výraze" #. @-observertrans -readonlytrans@ -#: lib/header.c:2129 +#: lib/header.c:2131 msgid "{ expected after ? in expression" msgstr "{ očakávané po ? vo výraze" #. @-observertrans -readonlytrans@ -#: lib/header.c:2142 lib/header.c:2184 +#: lib/header.c:2144 lib/header.c:2186 msgid "} expected in expression" msgstr "} očakávané vo výraze" #. @-observertrans -readonlytrans@ -#: lib/header.c:2152 +#: lib/header.c:2154 msgid ": expected following ? subexpression" msgstr ": očakávané po ? podvýraze" #. @-observertrans -readonlytrans@ -#: lib/header.c:2169 +#: lib/header.c:2171 msgid "{ expected after : in expression" msgstr "{ očakávané po : vo výraze" #. @-observertrans -readonlytrans@ -#: lib/header.c:2194 +#: lib/header.c:2196 msgid "| expected at end of expression" msgstr "| očakávené na konci výrazu" -#: lib/header.c:2381 +#: lib/header.c:2383 msgid "(unknown type)" msgstr "(neznámy typ)" @@ -3072,7 +3072,7 @@ msgid "can't query %s: %s\n" msgstr "zmazanie %s zlyhalo: %s\n" #: lib/query.c:576 lib/query.c:610 lib/rpminstall.c:309 lib/rpminstall.c:453 -#: lib/rpminstall.c:826 +#: lib/rpminstall.c:824 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "otvorenie %s zlyhalo\n" @@ -3211,27 +3211,27 @@ msgstr "%s: rpmReadSignature zlyhalo\n" msgid "%s: No signature available (v1.0 RPM)\n" msgstr "%s: Podpis nie je k dispozícii (v1.0 RPM)\n" -#: lib/rpmchecksig.c:437 +#: lib/rpmchecksig.c:431 msgid "NOT OK" msgstr "NIE JE V PORIADKU" -#: lib/rpmchecksig.c:438 lib/rpmchecksig.c:452 +#: lib/rpmchecksig.c:432 lib/rpmchecksig.c:446 msgid " (MISSING KEYS:" msgstr " (CHÝBAJÚCE KĽÚČE):" -#: lib/rpmchecksig.c:440 lib/rpmchecksig.c:454 +#: lib/rpmchecksig.c:434 lib/rpmchecksig.c:448 msgid ") " msgstr ") " -#: lib/rpmchecksig.c:441 lib/rpmchecksig.c:455 +#: lib/rpmchecksig.c:435 lib/rpmchecksig.c:449 msgid " (UNTRUSTED KEYS:" msgstr " (NEDÔVERUJE SA KĽÚČOM: " -#: lib/rpmchecksig.c:443 lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 lib/rpmchecksig.c:451 msgid ")" msgstr ")" -#: lib/rpmchecksig.c:451 +#: lib/rpmchecksig.c:445 msgid "OK" msgstr "V PORIADKU" @@ -3281,7 +3281,7 @@ msgstr "chyba pri vytváraní dočasného súboru %s" msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:445 lib/rpminstall.c:686 +#: lib/rpminstall.c:445 lib/rpminstall.c:684 #, c-format msgid "%s cannot be installed\n" msgstr "%s nie je možné nainštalovať\n" @@ -3328,7 +3328,7 @@ msgstr "nie je možné otvoriť %s\n" msgid "Installing %s\n" msgstr "Inštaluje sa %s\n" -#: lib/rpmlead.c:49 +#: lib/rpmlead.c:47 #, fuzzy, c-format msgid "read failed: %s (%d)\n" msgstr "čítanie zlyhalo: %s (%d)" @@ -3343,88 +3343,88 @@ msgstr "chýbajúce druhé ':' na %s:%d" msgid "missing architecture name at %s:%d\n" msgstr "chýba názov architektúry na %s:%d" -#: lib/rpmrc.c:325 +#: lib/rpmrc.c:328 #, fuzzy, c-format msgid "Incomplete data line at %s:%d\n" msgstr "Neúplný riadok údajov na %s:%d" -#: lib/rpmrc.c:330 +#: lib/rpmrc.c:333 #, fuzzy, c-format msgid "Too many args in data line at %s:%d\n" msgstr "Priveľa argumentov v riadku údajov na %s:%d" -#: lib/rpmrc.c:338 +#: lib/rpmrc.c:341 #, fuzzy, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "Chybné číslo arch/os: %s (%s:%d)" -#: lib/rpmrc.c:378 +#: lib/rpmrc.c:384 #, fuzzy, c-format msgid "Incomplete default line at %s:%d\n" msgstr "Neúplný implicitný riadok na %s:%d" -#: lib/rpmrc.c:383 +#: lib/rpmrc.c:389 #, fuzzy, c-format msgid "Too many args in default line at %s:%d\n" msgstr "Priveľa argumentov v implicitnom riadku na %s:%d" -#: lib/rpmrc.c:585 +#: lib/rpmrc.c:591 #, fuzzy, c-format msgid "Cannot expand %s\n" msgstr "Nie je možné expandovať %s" -#: lib/rpmrc.c:590 +#: lib/rpmrc.c:596 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "" -#: lib/rpmrc.c:607 +#: lib/rpmrc.c:613 #, fuzzy, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "Nie je možné otvoriť %s pre čítanie: %s." #. XXX Feof(fd) -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:660 #, fuzzy, c-format msgid "Failed to read %s: %s.\n" msgstr "Nie je možné prečítať %s: %s." -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:697 #, fuzzy, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "chýbajúca ':' na %s:%d" -#: lib/rpmrc.c:708 lib/rpmrc.c:782 +#: lib/rpmrc.c:714 lib/rpmrc.c:788 #, fuzzy, c-format msgid "missing argument for %s at %s:%d\n" msgstr "chýbajúci argument pre %s na %s:%d" -#: lib/rpmrc.c:725 lib/rpmrc.c:747 +#: lib/rpmrc.c:731 lib/rpmrc.c:753 #, fuzzy, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "expanzia %s zlyhala na %s:%d \"%s\"" -#: lib/rpmrc.c:734 +#: lib/rpmrc.c:740 #, fuzzy, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "nie je možné otvoriť %s na %s:%d" -#: lib/rpmrc.c:774 +#: lib/rpmrc.c:780 #, fuzzy, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "chýbajúca architektúra pre %s na %s:%d" -#: lib/rpmrc.c:841 +#: lib/rpmrc.c:847 #, fuzzy, c-format msgid "bad option '%s' at %s:%d\n" msgstr "chybná voľba '%s' na %s:%d" -#: lib/rpmrc.c:1436 +#: lib/rpmrc.c:1442 #, c-format msgid "Unknown system: %s\n" msgstr "Neznámy systém: %s\n" -#: lib/rpmrc.c:1437 +#: lib/rpmrc.c:1443 msgid "Please contact rpm-list@redhat.com\n" msgstr "Kontaktujte prosím rpm-list@redhat.com\n" @@ -3455,152 +3455,152 @@ msgstr "Starý PGP podpis\n" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Starý (iba interný) podpis! Ako ste sa k tomu dostali?!" -#: lib/signature.c:230 +#: lib/signature.c:228 #, fuzzy, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "Veľkosť podpisu: %d\n" -#: lib/signature.c:290 +#: lib/signature.c:288 #, fuzzy, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "Nie je možné spustiť pgp" -#: lib/signature.c:303 +#: lib/signature.c:301 #, fuzzy msgid "pgp failed\n" msgstr "pgp zlyhalo" #. PGP failed to write signature #. Just in case -#: lib/signature.c:310 +#: lib/signature.c:308 #, fuzzy msgid "pgp failed to write signature\n" msgstr "pgp sa nepodarilo zapísať podpis" -#: lib/signature.c:315 +#: lib/signature.c:313 #, c-format msgid "PGP sig size: %d\n" msgstr "Veľkosť PGP podpisu: %d\n" -#: lib/signature.c:328 lib/signature.c:410 +#: lib/signature.c:326 lib/signature.c:408 #, fuzzy msgid "unable to read the signature\n" msgstr "nie je možné prečítať podpis" -#: lib/signature.c:333 +#: lib/signature.c:331 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "Prečítaný PGP podpis obsahuje %d bajtov\n" -#: lib/signature.c:372 lib/signature.c:760 +#: lib/signature.c:370 lib/signature.c:758 #, fuzzy msgid "Couldn't exec gpg\n" msgstr "Nie je možné spustiť gpg" -#: lib/signature.c:385 +#: lib/signature.c:383 #, fuzzy msgid "gpg failed\n" msgstr "gpg zlyhalo" #. GPG failed to write signature #. Just in case -#: lib/signature.c:392 +#: lib/signature.c:390 #, fuzzy msgid "gpg failed to write signature\n" msgstr "gpg sa nepodarilo zapísať podpis" -#: lib/signature.c:397 +#: lib/signature.c:395 #, c-format msgid "GPG sig size: %d\n" msgstr "Veľkosť GPG podpisu: %d\n" -#: lib/signature.c:415 +#: lib/signature.c:413 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "Prečítaný GPG podpis obsahuje %d bajtov\n" -#: lib/signature.c:443 +#: lib/signature.c:441 #, fuzzy msgid "Generating signature using PGP.\n" msgstr "Vytvára sa PGP podpis: %d\n" -#: lib/signature.c:449 +#: lib/signature.c:447 #, fuzzy msgid "Generating signature using GPG.\n" msgstr "Vytvára sa PGP podpis: %d\n" -#: lib/signature.c:532 lib/signature.c:607 +#: lib/signature.c:530 lib/signature.c:605 #, fuzzy msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "Nie je možné spustiť pgp. Použite --nopgp pre vynechanie PGP kontrol." -#: lib/signature.c:697 +#: lib/signature.c:695 #, fuzzy msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "Nie je možné spustiť gpg. Použite --nogpg pre vynechanie GPG kontrol." -#: lib/signature.c:789 +#: lib/signature.c:787 #, fuzzy msgid "Couldn't exec pgp\n" msgstr "Nie je možné spustiť pgp" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:793 lib/signature.c:846 +#: lib/signature.c:791 lib/signature.c:844 #, fuzzy, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "Chybná špecifikácia %%_signature v makro-súbore.\n" -#: lib/signature.c:826 +#: lib/signature.c:824 #, fuzzy, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "Musíte nastaviť \"%%gpg_name\" vo vašom makro-súbore" -#: lib/signature.c:838 +#: lib/signature.c:836 #, fuzzy, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "Musíte nastaviť \"%%pgp_name\" vo vašom makro-súbore" -#: lib/transaction.c:446 +#: lib/transaction.c:447 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:450 +#: lib/transaction.c:451 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "OS je vynechaný: %s" -#: lib/transaction.c:453 +#: lib/transaction.c:454 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "presúva sa %s do %s\n" -#: lib/transaction.c:523 +#: lib/transaction.c:524 #, fuzzy, c-format msgid "excluding multilib path %s%s\n" msgstr "vynecháva sa %s\n" -#: lib/transaction.c:586 +#: lib/transaction.c:587 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "vynecháva sa %s\n" -#: lib/transaction.c:596 +#: lib/transaction.c:597 #, c-format msgid "relocating %s to %s\n" msgstr "presúva sa %s do %s\n" -#: lib/transaction.c:674 +#: lib/transaction.c:675 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "presúva sa %s do %s\n" -#: lib/transaction.c:808 +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s vynechané kvôli príznaku missingok\n" -#: lib/transaction.c:1406 +#: lib/transaction.c:1407 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "vytvára sa adresár %s\n" @@ -3802,12 +3802,12 @@ msgstr "chyba pri zápise záznamu %s do %s" msgid "error(%d) removing record %s from %s\n" msgstr "chyba pri odstraňovaní záznamu %s z %s" -#: rpmdb/rpmdb.c:842 +#: rpmdb/rpmdb.c:846 #, fuzzy msgid "no dbpath has been set\n" msgstr "nebola nastavená žiadna dbpath" -#: rpmdb/rpmdb.c:973 +#: rpmdb/rpmdb.c:977 #, fuzzy msgid "" "old format database is present; use --rebuilddb to generate a new format " @@ -3817,115 +3817,115 @@ msgstr "" "databázy v novom formáte" #. error -#: rpmdb/rpmdb.c:1206 +#: rpmdb/rpmdb.c:1210 #, fuzzy, c-format msgid "error(%d) counting packages\n" msgstr "chyba pri hľadaní balíka %s\n" -#: rpmdb/rpmdb.c:1940 rpmdb/rpmdb.c:3122 +#: rpmdb/rpmdb.c:1944 rpmdb/rpmdb.c:3126 #, fuzzy, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "záznam číslo %d v databáze je chybný -- bol vynechaný" -#: rpmdb/rpmdb.c:1991 +#: rpmdb/rpmdb.c:1995 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2256 +#: rpmdb/rpmdb.c:2260 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "nie je možné prečítať hlavičku na %d pre vyhľadanie" -#: rpmdb/rpmdb.c:2325 +#: rpmdb/rpmdb.c:2329 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "odstraňuje sa index skupín\n" -#: rpmdb/rpmdb.c:2334 +#: rpmdb/rpmdb.c:2338 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "odstraňuje sa index názvov\n" -#: rpmdb/rpmdb.c:2529 +#: rpmdb/rpmdb.c:2533 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "chyba pri hľadaní balíka %s\n" -#: rpmdb/rpmdb.c:2607 +#: rpmdb/rpmdb.c:2611 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "premenováva sa %s na %s\n" -#: rpmdb/rpmdb.c:2618 +#: rpmdb/rpmdb.c:2622 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "premenováva sa %s na %s\n" -#: rpmdb/rpmdb.c:3011 +#: rpmdb/rpmdb.c:3015 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3041 +#: rpmdb/rpmdb.c:3045 msgid "no dbpath has been set" msgstr "nebola nastavená žiadna dbpath" -#: rpmdb/rpmdb.c:3068 +#: rpmdb/rpmdb.c:3072 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "znovu sa vytvára databáza v adresári %s\n" -#: rpmdb/rpmdb.c:3072 +#: rpmdb/rpmdb.c:3076 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "dočasná databáza %s už existuje" -#: rpmdb/rpmdb.c:3078 +#: rpmdb/rpmdb.c:3082 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "vytvára sa adresár %s\n" -#: rpmdb/rpmdb.c:3080 +#: rpmdb/rpmdb.c:3084 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "vytvára sa adresár %s\n" -#: rpmdb/rpmdb.c:3087 +#: rpmdb/rpmdb.c:3091 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "otvára sa stará databáza\n" -#: rpmdb/rpmdb.c:3098 +#: rpmdb/rpmdb.c:3102 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "otvára sa nová databáza\n" -#: rpmdb/rpmdb.c:3162 +#: rpmdb/rpmdb.c:3166 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "nie je možné pridať záznam pôvodne na %d" -#: rpmdb/rpmdb.c:3180 +#: rpmdb/rpmdb.c:3184 #, fuzzy msgid "failed to rebuild database: original database remains in place\n" msgstr "nepodarilo sa znovu vytvoriť databázu; zostáva pôvodná\n" -#: rpmdb/rpmdb.c:3188 +#: rpmdb/rpmdb.c:3192 msgid "failed to replace old database with new database!\n" msgstr "nepodarilo sa nahradiť starú databázu novou!\n" -#: rpmdb/rpmdb.c:3190 +#: rpmdb/rpmdb.c:3194 #, fuzzy, c-format msgid "replace files in %s with files from %s to recover" msgstr "nahradí súbory v %s súbormi z %s kvôli obnove" -#: rpmdb/rpmdb.c:3200 +#: rpmdb/rpmdb.c:3204 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "vytvára sa adresár %s\n" -#: rpmdb/rpmdb.c:3202 +#: rpmdb/rpmdb.c:3206 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "nepodarilo sa odstrániť adresár %s: %s\n" @@ -4022,61 +4022,61 @@ msgstr "Súbor %s: %s" msgid "File %s is smaller than %u bytes\n" msgstr "Súbor %s je menší ako %d bajtov" -#: rpmio/rpmio.c:599 +#: rpmio/rpmio.c:588 msgid "Success" msgstr "Úspech" -#: rpmio/rpmio.c:602 +#: rpmio/rpmio.c:591 msgid "Bad server response" msgstr "Chybná odpoveď servera" -#: rpmio/rpmio.c:605 +#: rpmio/rpmio.c:594 #, fuzzy msgid "Server I/O error" msgstr "Chyba vstupu/výstupu servera" -#: rpmio/rpmio.c:608 +#: rpmio/rpmio.c:597 msgid "Server timeout" msgstr "Prekročenie časového limitu servera" -#: rpmio/rpmio.c:611 +#: rpmio/rpmio.c:600 msgid "Unable to lookup server host address" msgstr "Nie je možné vyhľadať adresu servera" -#: rpmio/rpmio.c:614 +#: rpmio/rpmio.c:603 msgid "Unable to lookup server host name" msgstr "Nie je možné vyhľadať názov servera" -#: rpmio/rpmio.c:617 +#: rpmio/rpmio.c:606 msgid "Failed to connect to server" msgstr "Pripojenie k serveru zlyhalo" -#: rpmio/rpmio.c:620 +#: rpmio/rpmio.c:609 msgid "Failed to establish data connection to server" msgstr "Vytvorenie dátového spojenia k serveru zlyhalo" -#: rpmio/rpmio.c:623 +#: rpmio/rpmio.c:612 #, fuzzy msgid "I/O error to local file" msgstr "Chyba vstupu/výstupu lokálneho súboru" -#: rpmio/rpmio.c:626 +#: rpmio/rpmio.c:615 msgid "Error setting remote server to passive mode" msgstr "Chyba pri nastavení vzdialeného servera do pasívneho režimu" -#: rpmio/rpmio.c:629 +#: rpmio/rpmio.c:618 msgid "File not found on server" msgstr "Súbor sa na serveri nenachádza" -#: rpmio/rpmio.c:632 +#: rpmio/rpmio.c:621 msgid "Abort in progress" msgstr "Zrušenie prebieha" -#: rpmio/rpmio.c:636 +#: rpmio/rpmio.c:625 msgid "Unknown or unexpected error" msgstr "Neznáma alebo neočakávaná chyba" -#: rpmio/rpmio.c:1259 +#: rpmio/rpmio.c:1252 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "prihlasuje sa na %s ako %s, heslo %s\n" @@ -4087,7 +4087,7 @@ msgid "(no error)" msgstr "(chyba 0x%x)" #. @-readonlytrans@ -#. FIX: double indeirection. +#. FIX: double indirection. #. @observer@ #: rpmio/rpmlog.c:114 rpmio/rpmlog.c:115 rpmio/rpmlog.c:116 msgid "fatal error: " @@ -4108,37 +4108,37 @@ msgstr "varovanie: " msgid "memory alloc (%u bytes) returned NULL.\n" msgstr "" -#: rpmio/url.c:103 +#: rpmio/url.c:101 #, c-format msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:123 +#: rpmio/url.c:121 #, c-format msgid "warning: u %p data %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:151 +#: rpmio/url.c:149 #, c-format msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" msgstr "" -#: rpmio/url.c:244 +#: rpmio/url.c:242 #, c-format msgid "Password for %s@%s: " msgstr "Heslo pre %s@%s: " -#: rpmio/url.c:269 rpmio/url.c:295 +#: rpmio/url.c:267 rpmio/url.c:293 #, c-format msgid "error: %sport must be a number\n" msgstr "chyba: %sport musí byť číslo\n" -#: rpmio/url.c:434 +#: rpmio/url.c:432 msgid "url port must be a number\n" msgstr "url port musí byť číslo\n" #. XXX Fstrerror -#: rpmio/url.c:497 +#: rpmio/url.c:495 #, fuzzy, c-format msgid "failed to create %s: %s\n" msgstr "nepodarilo sa vytvoriť %s\n" @@ -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.151 2001/09/21 15:07:33 jbj Exp $ +# $Id: sl.po,v 1.152 2001/09/25 03:03:35 jbj Exp $ # msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-09-21 11:01-0400\n" +"POT-Creation-Date: 2001-09-24 20:14-0400\n" "PO-Revision-Date: 2000-10-08 19:05+0200\n" "Last-Translator: Grega Fajdiga <gregor.fajdiga@telemach.net>\n" "Language-Team: Slovenian <sl@li.org>\n" @@ -1126,15 +1126,15 @@ msgstr "--sign sme biti podan le ob izgradnji paketa" msgid "exec failed\n" msgstr "izvajanje je bilo neuspešno\n" -#: rpm.c:1116 rpmqv.c:1103 +#: rpm.c:1116 rpmqv.c:1104 msgid "unexpected arguments to --querytags " msgstr "nepričakovani argumenti za --querytags " -#: rpm.c:1127 rpmqv.c:1112 +#: rpm.c:1127 rpmqv.c:1113 msgid "no packages given for signature check" msgstr "paketi za katere bi bilo potrebno preveriti podpis niso navedeni" -#: rpm.c:1138 rpmqv.c:1121 +#: rpm.c:1138 rpmqv.c:1122 msgid "no packages given for signing" msgstr "paketi katere bi bilo potrebno podpisati niso navedeni" @@ -1146,19 +1146,19 @@ msgstr "paketi katere bi bilo potrebno odstraniti niso navedeni" msgid "no packages given for install" msgstr "paketi katere bi bilo potrebno namestiti niso navedeni" -#: rpm.c:1267 rpmqv.c:1066 +#: rpm.c:1267 rpmqv.c:1067 msgid "extra arguments given for query of all packages" msgstr "pri poizvedbi paketov so podani odvečni argumenti" -#: rpm.c:1272 rpmqv.c:1075 +#: rpm.c:1272 rpmqv.c:1076 msgid "no arguments given for query" msgstr "argumenti za poizvedbo niso podani" -#: rpm.c:1289 rpmqv.c:1091 +#: rpm.c:1289 rpmqv.c:1092 msgid "extra arguments given for verify of all packages" msgstr "pri preverjanju paketov so podani odvečni argumenti" -#: rpm.c:1293 rpmqv.c:1095 +#: rpm.c:1293 rpmqv.c:1096 msgid "no arguments given for verify" msgstr "argumenti za preverjanje niso podani" @@ -1789,17 +1789,17 @@ msgstr "opis v %%changelog manjka" msgid "line %d: Error parsing %%description: %s\n" msgstr "vrstica %d: Napaka pri razčlembi v razdelku %%description: %s" -#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:192 +#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:190 #, fuzzy, c-format msgid "line %d: Bad option %s: %s\n" msgstr "vrstica %d: Napačna izbira %s: %s" -#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:204 +#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:202 #, fuzzy, c-format msgid "line %d: Too many names: %s\n" msgstr "vrstica %d: Preveč imen: %s" -#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:213 +#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:211 #, fuzzy, c-format msgid "line %d: Package does not exist: %s\n" msgstr "vrstica %d: Paket ne obstaja: %s" @@ -2033,22 +2033,22 @@ msgstr "vrstica %d: Ime datoteke z različico ni dovoljeno: %s" msgid "line %d: Version required: %s\n" msgstr "vrstica %d: Zahtevana različica: %s" -#: build/parseScript.c:158 +#: build/parseScript.c:156 #, fuzzy, c-format msgid "line %d: triggers must have --: %s\n" msgstr "vrstica %d: prožila morajo vsebovati --: %s" -#: build/parseScript.c:168 build/parseScript.c:229 +#: build/parseScript.c:166 build/parseScript.c:227 #, fuzzy, c-format msgid "line %d: Error parsing %s: %s\n" msgstr "vrstica %d: Napaka pri razčlembi %s: %s" -#: build/parseScript.c:179 +#: build/parseScript.c:177 #, fuzzy, c-format msgid "line %d: script program must begin with '/': %s\n" msgstr "vrstica %d: skriptni program se mora začeti z ,/`: %s" -#: build/parseScript.c:221 +#: build/parseScript.c:219 #, fuzzy, c-format msgid "line %d: Second %s\n" msgstr "vrstica %d: Drugi %s" @@ -2089,12 +2089,12 @@ msgstr "%s:%d: Najden je bil %%endif brez pripadajočega if" msgid "malformed %%include statement\n" msgstr "Deformiran stavek %%include" -#: build/parseSpec.c:508 +#: build/parseSpec.c:509 #, fuzzy msgid "No compatible architectures found for build\n" msgstr "Arhitektura za izgradnjo ni prisotna" -#: build/parseSpec.c:563 +#: build/parseSpec.c:564 #, fuzzy, c-format msgid "Package has no %%description: %s\n" msgstr "V paketu manjka %%description: %s" @@ -2171,107 +2171,107 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr " %s A %s\tB %s\n" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "YES" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 #, fuzzy msgid "NO " msgstr "NI DOBRO" -#: lib/depends.c:1021 +#: lib/depends.c:1015 #, fuzzy, c-format msgid "%s: %-45s YES (added files)\n" msgstr "%s: %-45s DA (dodane datoteke)\n" -#: lib/depends.c:1131 +#: lib/depends.c:1126 #, fuzzy, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "%s: %-45s DA (dodane ponudbe)\n" -#: lib/depends.c:1222 +#: lib/depends.c:1217 #, fuzzy, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "%s: %-45s %-3s (predpomnjeno)\n" -#: lib/depends.c:1251 +#: lib/depends.c:1246 #, fuzzy, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "%s: %-45s DA (rpmrc ponudbe)\n" -#: lib/depends.c:1268 +#: lib/depends.c:1263 #, fuzzy, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "%s: %-45s DA (rpmlib ponudbe)\n" -#: lib/depends.c:1292 +#: lib/depends.c:1287 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "%s: %-45s DA (db datoteke)\n" -#: lib/depends.c:1305 +#: lib/depends.c:1300 #, fuzzy, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "%s: %-45s DA (db ponudbe)\n" -#: lib/depends.c:1319 +#: lib/depends.c:1314 #, fuzzy, c-format msgid "%s: %-45s YES (db package)\n" msgstr "%s: %s zadovoljen ob paketih db.\n" -#: lib/depends.c:1335 +#: lib/depends.c:1330 #, c-format msgid "%s: %-45s NO\n" msgstr "%s: %-45s NE\n" -#: lib/depends.c:1356 +#: lib/depends.c:1351 #, fuzzy, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "%s: (%s, %s) dodano v predpomnilnik Depends.\n" #. requirements are not satisfied. -#: lib/depends.c:1428 +#: lib/depends.c:1423 #, fuzzy, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "Za paket %s-%s-%s: zahteva %s ni zadovoljena\n" #. conflicts exist. -#: lib/depends.c:1507 +#: lib/depends.c:1502 #, c-format msgid "package %s conflicts: %s\n" msgstr "paket %s jw v sporu z: %s\n" -#: lib/depends.c:1753 +#: lib/depends.c:1748 #, fuzzy, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "odstranjujemo seznam skupin\n" #. Record all relations. -#: lib/depends.c:1902 +#: lib/depends.c:1897 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1960 +#: lib/depends.c:1955 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2010 +#: lib/depends.c:2005 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2062 +#: lib/depends.c:2057 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2091 +#: lib/depends.c:2086 msgid "========== continuing tsort ...\n" msgstr "" #: lib/formats.c:28 lib/formats.c:54 lib/formats.c:85 lib/formats.c:128 -#: lib/header.c:2621 lib/header.c:2642 lib/header.c:2664 +#: lib/header.c:2623 lib/header.c:2644 lib/header.c:2666 msgid "(not a number)" msgstr "(ni število)" @@ -2294,7 +2294,7 @@ msgstr "status %s ni na voljo: %s" msgid "getting list of mounted filesystems\n" msgstr "zbiranje seznama priklopljenih datotečnih sistemov.\n" -#: lib/fs.c:153 rpmio/url.c:477 +#: lib/fs.c:153 rpmio/url.c:475 #, c-format msgid "failed to open %s: %s\n" msgstr "neuspešno odpiranje %s: %s\n" @@ -2304,46 +2304,46 @@ msgstr "neuspešno odpiranje %s: %s\n" msgid "file %s is on an unknown device\n" msgstr "datoteka %s se nahaja na neznani napravi" -#: lib/fsm.c:290 +#: lib/fsm.c:288 msgid "========= Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:292 +#: lib/fsm.c:290 #, fuzzy, c-format msgid "%9d %s\n" msgstr "vrstica %d: %s" -#: lib/fsm.c:1130 +#: lib/fsm.c:1124 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1407 +#: lib/fsm.c:1401 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1526 lib/fsm.c:1651 +#: lib/fsm.c:1520 lib/fsm.c:1645 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "opozorilo: %s shranjen kot %s" -#: lib/fsm.c:1677 +#: lib/fsm.c:1671 #, 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:1683 +#: lib/fsm.c:1677 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "odstranitev imenika %s je bila neuspešna: %s" -#: lib/fsm.c:1693 +#: lib/fsm.c:1687 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "odpiranje %s je bilo neuspešno: %s\n" -#: lib/fsm.c:1712 +#: lib/fsm.c:1706 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "opozorilo: %s ustvarjen kot %s" @@ -2360,77 +2360,77 @@ msgid "Data type %d not supported\n" msgstr "Tip podatkov %d ni podprt\n" #. @-observertrans -readonlytrans@ -#: lib/header.c:1930 +#: lib/header.c:1932 #, c-format msgid "missing { after %" msgstr "manjkajoči { za %" #. @-observertrans -readonlytrans@ -#: lib/header.c:1960 +#: lib/header.c:1962 msgid "missing } after %{" msgstr "manjkajoči } za %{" #. @-observertrans -readonlytrans@ -#: lib/header.c:1974 +#: lib/header.c:1976 msgid "empty tag format" msgstr "oblika značke manjka" #. @-observertrans -readonlytrans@ -#: lib/header.c:1988 +#: lib/header.c:1990 msgid "empty tag name" msgstr "ime značke manjka" #. @-observertrans -readonlytrans@ -#: lib/header.c:2005 +#: lib/header.c:2007 msgid "unknown tag" msgstr "neznana značka" #. @-observertrans -readonlytrans@ -#: lib/header.c:2032 +#: lib/header.c:2034 msgid "] expected at end of array" msgstr "na koncu polja je pričakovan ]" #. @-observertrans -readonlytrans@ -#: lib/header.c:2050 +#: lib/header.c:2052 msgid "unexpected ]" msgstr "nepričakovan ]" #. @-observertrans -readonlytrans@ -#: lib/header.c:2054 +#: lib/header.c:2056 msgid "unexpected }" msgstr "nepričakovan }" #. @-observertrans -readonlytrans@ -#: lib/header.c:2120 +#: lib/header.c:2122 msgid "? expected in expression" msgstr "v izrazu je pričakovan ?" #. @-observertrans -readonlytrans@ -#: lib/header.c:2129 +#: lib/header.c:2131 msgid "{ expected after ? in expression" msgstr "v izrazu je za { pričakovan ?" #. @-observertrans -readonlytrans@ -#: lib/header.c:2142 lib/header.c:2184 +#: lib/header.c:2144 lib/header.c:2186 msgid "} expected in expression" msgstr "v izrazu je pričakovan }" #. @-observertrans -readonlytrans@ -#: lib/header.c:2152 +#: lib/header.c:2154 msgid ": expected following ? subexpression" msgstr "za podizrazom ? je pričakovano :" #. @-observertrans -readonlytrans@ -#: lib/header.c:2169 +#: lib/header.c:2171 msgid "{ expected after : in expression" msgstr "v izrazu je za : pričakovan {" #. @-observertrans -readonlytrans@ -#: lib/header.c:2194 +#: lib/header.c:2196 msgid "| expected at end of expression" msgstr "na koncu izraza je pričakovan |" -#: lib/header.c:2381 +#: lib/header.c:2383 msgid "(unknown type)" msgstr "(neznan tip)" @@ -3061,7 +3061,7 @@ msgid "can't query %s: %s\n" msgstr "ni možno poizvedeti o %s: %s\n" #: lib/query.c:576 lib/query.c:610 lib/rpminstall.c:309 lib/rpminstall.c:453 -#: lib/rpminstall.c:826 +#: lib/rpminstall.c:824 #, c-format msgid "open of %s failed: %s\n" msgstr "odpiranje %s je bilo neuspešno: %s\n" @@ -3199,27 +3199,27 @@ msgstr "%s: rpmWriteSignature je bilo neuspešno: %s\n" msgid "%s: No signature available (v1.0 RPM)\n" msgstr "%s: Podpis ni na voljo (RPM v1.0)\n" -#: lib/rpmchecksig.c:437 +#: lib/rpmchecksig.c:431 msgid "NOT OK" msgstr "NI DOBRO" -#: lib/rpmchecksig.c:438 lib/rpmchecksig.c:452 +#: lib/rpmchecksig.c:432 lib/rpmchecksig.c:446 msgid " (MISSING KEYS:" msgstr " (MANJKAJOČI KLJUČI:" -#: lib/rpmchecksig.c:440 lib/rpmchecksig.c:454 +#: lib/rpmchecksig.c:434 lib/rpmchecksig.c:448 msgid ") " msgstr ") " -#: lib/rpmchecksig.c:441 lib/rpmchecksig.c:455 +#: lib/rpmchecksig.c:435 lib/rpmchecksig.c:449 msgid " (UNTRUSTED KEYS:" msgstr " (NEPREVERJENI KLJUČI:" -#: lib/rpmchecksig.c:443 lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 lib/rpmchecksig.c:451 msgid ")" msgstr ")" -#: lib/rpmchecksig.c:451 +#: lib/rpmchecksig.c:445 msgid "OK" msgstr "V REDU" @@ -3269,7 +3269,7 @@ msgstr "napaka pri branju iz datoteke %s\n" msgid "file %s requires a newer version of RPM\n" msgstr "datoteka %s zahteva novejšo različico RPM\n" -#: lib/rpminstall.c:445 lib/rpminstall.c:686 +#: lib/rpminstall.c:445 lib/rpminstall.c:684 #, c-format msgid "%s cannot be installed\n" msgstr "%s ni možno namestiti\n" @@ -3316,7 +3316,7 @@ msgstr "ni možno odpreti %s: %s\n" msgid "Installing %s\n" msgstr "Nameščanje %s\n" -#: lib/rpmlead.c:49 +#: lib/rpmlead.c:47 #, fuzzy, c-format msgid "read failed: %s (%d)\n" msgstr "branje je bilo neuspešno: %s (%d)" @@ -3331,88 +3331,88 @@ msgstr "manjka drugi ,:` v %s:%d" msgid "missing architecture name at %s:%d\n" msgstr "manjkajoče ime arhitekture v %s:%d" -#: lib/rpmrc.c:325 +#: lib/rpmrc.c:328 #, fuzzy, c-format msgid "Incomplete data line at %s:%d\n" msgstr "Nepopolna podatkovna vrstica v %s:%d" -#: lib/rpmrc.c:330 +#: lib/rpmrc.c:333 #, fuzzy, c-format msgid "Too many args in data line at %s:%d\n" msgstr "Preveč argumentov v podatkovni vrstici v %s:%d" -#: lib/rpmrc.c:338 +#: lib/rpmrc.c:341 #, fuzzy, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "Okvarjena številka arh./op.sist.: %s (%s:%d)" -#: lib/rpmrc.c:378 +#: lib/rpmrc.c:384 #, fuzzy, c-format msgid "Incomplete default line at %s:%d\n" msgstr "Nepopolna privzeta vrstica v %s:%d" -#: lib/rpmrc.c:383 +#: lib/rpmrc.c:389 #, fuzzy, c-format msgid "Too many args in default line at %s:%d\n" msgstr "Preveč argumentov v privzeti vrstici v %s:%d" -#: lib/rpmrc.c:585 +#: lib/rpmrc.c:591 #, fuzzy, c-format msgid "Cannot expand %s\n" msgstr "Ni možno razširiti %s" -#: lib/rpmrc.c:590 +#: lib/rpmrc.c:596 #, fuzzy, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "Ni možno prebrati %s, HOME je prevelik." -#: lib/rpmrc.c:607 +#: lib/rpmrc.c:613 #, fuzzy, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "%s ni možno odpreti za branje: %s." #. XXX Feof(fd) -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:660 #, fuzzy, c-format msgid "Failed to read %s: %s.\n" msgstr "Neuspešno branje %s: %s." -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:697 #, fuzzy, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "manjkajoči ,:` (najden 0x%02x) v %s:%d" -#: lib/rpmrc.c:708 lib/rpmrc.c:782 +#: lib/rpmrc.c:714 lib/rpmrc.c:788 #, fuzzy, c-format msgid "missing argument for %s at %s:%d\n" msgstr "manjkajoči argument za %s v %s:%d" -#: lib/rpmrc.c:725 lib/rpmrc.c:747 +#: lib/rpmrc.c:731 lib/rpmrc.c:753 #, fuzzy, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "razširitev %s je bila neuspešna v %s:%d \"%s\"" -#: lib/rpmrc.c:734 +#: lib/rpmrc.c:740 #, fuzzy, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "ni možno odpreti %s v %s:%d: %s" -#: lib/rpmrc.c:774 +#: lib/rpmrc.c:780 #, fuzzy, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "manjkajoča arhitektura za %s v %s:%d" -#: lib/rpmrc.c:841 +#: lib/rpmrc.c:847 #, fuzzy, c-format msgid "bad option '%s' at %s:%d\n" msgstr "nepravilna izbira ,%s` v %s:%d" -#: lib/rpmrc.c:1436 +#: lib/rpmrc.c:1442 #, c-format msgid "Unknown system: %s\n" msgstr "Neznan sistem: %s\n" -#: lib/rpmrc.c:1437 +#: lib/rpmrc.c:1443 msgid "Please contact rpm-list@redhat.com\n" msgstr "Prosimo, pišite na rpm-list@redhat.com\n" @@ -3443,150 +3443,150 @@ msgstr "Stari podpis PGP\n" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Podpis v (interni) stari obliki! Kje ste ga dobili?" -#: lib/signature.c:230 +#: lib/signature.c:228 #, fuzzy, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "Dolž. podpisa : %d\n" -#: lib/signature.c:290 +#: lib/signature.c:288 #, fuzzy, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "Ni možno pognati pgp (%s)" -#: lib/signature.c:303 +#: lib/signature.c:301 #, fuzzy msgid "pgp failed\n" msgstr "pgp je bil neuspešen" #. PGP failed to write signature #. Just in case -#: lib/signature.c:310 +#: lib/signature.c:308 #, fuzzy msgid "pgp failed to write signature\n" msgstr "pgp je bil neuspešen pri zapisu podpisa" -#: lib/signature.c:315 +#: lib/signature.c:313 #, c-format msgid "PGP sig size: %d\n" msgstr "Dolž. podpisa PGP: %d\n" -#: lib/signature.c:328 lib/signature.c:410 +#: lib/signature.c:326 lib/signature.c:408 #, fuzzy msgid "unable to read the signature\n" msgstr "branje podpisa je bilo neuspešno" -#: lib/signature.c:333 +#: lib/signature.c:331 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "Prebrano %d bajtov podpisa PGP\n" -#: lib/signature.c:372 lib/signature.c:760 +#: lib/signature.c:370 lib/signature.c:758 #, fuzzy msgid "Couldn't exec gpg\n" msgstr "Ni možno pognati gpg" -#: lib/signature.c:385 +#: lib/signature.c:383 #, fuzzy msgid "gpg failed\n" msgstr "gpg je bil neuspešen" #. GPG failed to write signature #. Just in case -#: lib/signature.c:392 +#: lib/signature.c:390 #, fuzzy msgid "gpg failed to write signature\n" msgstr "gpg je boil neuspešen pri zapisu podpisa" -#: lib/signature.c:397 +#: lib/signature.c:395 #, c-format msgid "GPG sig size: %d\n" msgstr "Dolž. podpisa GnuPG: %d\n" -#: lib/signature.c:415 +#: lib/signature.c:413 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "Prebrano %d bajtov podpisa GnuPG\n" -#: lib/signature.c:443 +#: lib/signature.c:441 msgid "Generating signature using PGP.\n" msgstr "Ustvarjanje podpisa s PGP.\n" -#: lib/signature.c:449 +#: lib/signature.c:447 msgid "Generating signature using GPG.\n" msgstr "Ustvarjanje podpisa z GnuPG.\n" -#: lib/signature.c:532 lib/signature.c:607 +#: lib/signature.c:530 lib/signature.c:605 #, fuzzy msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "Ni možno pognati pgp. Preverjanja PGP lahko preskočite z --nopgp" -#: lib/signature.c:697 +#: lib/signature.c:695 #, fuzzy msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "Ni možno pognati gpg. Preverjanja GnuPG lahko preskočite z --nogpg" -#: lib/signature.c:789 +#: lib/signature.c:787 #, fuzzy msgid "Couldn't exec pgp\n" msgstr "Ni možno pognati pgp" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:793 lib/signature.c:846 +#: lib/signature.c:791 lib/signature.c:844 #, fuzzy, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "Neveljaven %%_signature v makro-datoteki.\n" -#: lib/signature.c:826 +#: lib/signature.c:824 #, fuzzy, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "V makrodatoteki morate nastaviti \"%%_pgp_name\"" -#: lib/signature.c:838 +#: lib/signature.c:836 #, fuzzy, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "V makrodatoteki morate nastaviti \"%%_pgp_name\"" -#: lib/transaction.c:446 +#: lib/transaction.c:447 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:450 +#: lib/transaction.c:451 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "OS je izključen: %s" -#: lib/transaction.c:453 +#: lib/transaction.c:454 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "premikanje %s v %s\n" -#: lib/transaction.c:523 +#: lib/transaction.c:524 #, fuzzy, c-format msgid "excluding multilib path %s%s\n" msgstr "izključevanje datoteke %s%s\n" -#: lib/transaction.c:586 +#: lib/transaction.c:587 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "izključevanje datoteke %s%s\n" -#: lib/transaction.c:596 +#: lib/transaction.c:597 #, c-format msgid "relocating %s to %s\n" msgstr "premikanje %s v %s\n" -#: lib/transaction.c:674 +#: lib/transaction.c:675 #, c-format msgid "relocating directory %s to %s\n" msgstr "premiokanje imenika %s v %s\n" -#: lib/transaction.c:808 +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s preskočen zaradi manjkajoče zastavice OK\n" -#: lib/transaction.c:1406 +#: lib/transaction.c:1407 #, c-format msgid "excluding directory %s\n" msgstr "izključevanje imenika %s\n" @@ -3792,12 +3792,12 @@ msgstr "napaka(%d) pri pisanju zapisa %s v %s" msgid "error(%d) removing record %s from %s\n" msgstr "napaka(%d) pri brisanju zapisa %s iz %s" -#: rpmdb/rpmdb.c:842 +#: rpmdb/rpmdb.c:846 #, fuzzy msgid "no dbpath has been set\n" msgstr "dbpath ni nastavljena" -#: rpmdb/rpmdb.c:973 +#: rpmdb/rpmdb.c:977 #, fuzzy msgid "" "old format database is present; use --rebuilddb to generate a new format " @@ -3806,117 +3806,117 @@ msgstr "" "da bi staro obliko zbirke podatkov pretvorili v novo poženite --rebuilddb" #. error -#: rpmdb/rpmdb.c:1206 +#: rpmdb/rpmdb.c:1210 #, fuzzy, c-format msgid "error(%d) counting packages\n" msgstr "napaka(%d) pri štetju paketov" -#: rpmdb/rpmdb.c:1940 rpmdb/rpmdb.c:3122 +#: rpmdb/rpmdb.c:1944 rpmdb/rpmdb.c:3126 #, fuzzy, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "zapis št. %d v zbirki je poškodovan -- preskočeno." -#: rpmdb/rpmdb.c:1991 +#: rpmdb/rpmdb.c:1995 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2256 +#: rpmdb/rpmdb.c:2260 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "%s: ni možno prebrati glave pri 0x%x" -#: rpmdb/rpmdb.c:2325 +#: rpmdb/rpmdb.c:2329 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "odstranjevanje \"%s\" iz kazala %s.\n" -#: rpmdb/rpmdb.c:2334 +#: rpmdb/rpmdb.c:2338 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "odstranjevanje %d vnosov iz kazala %s\n" -#: rpmdb/rpmdb.c:2529 +#: rpmdb/rpmdb.c:2533 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "napaka(%d) pri iskanju paketa %s\n" -#: rpmdb/rpmdb.c:2607 +#: rpmdb/rpmdb.c:2611 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "dodajanje \"%s\" v kazalo %s.\n" -#: rpmdb/rpmdb.c:2618 +#: rpmdb/rpmdb.c:2622 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "dodajanje %d vnosov v kazalo %s.\n" -#: rpmdb/rpmdb.c:3011 +#: rpmdb/rpmdb.c:3015 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3041 +#: rpmdb/rpmdb.c:3045 msgid "no dbpath has been set" msgstr "dbpath ni nastavljena" -#: rpmdb/rpmdb.c:3068 +#: rpmdb/rpmdb.c:3072 #, c-format msgid "rebuilding database %s into %s\n" msgstr "ponovna izgradnja podatkovne zbirke %s v %s\n" -#: rpmdb/rpmdb.c:3072 +#: rpmdb/rpmdb.c:3076 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "začasna podatkovna zbirka %s že obstaja" -#: rpmdb/rpmdb.c:3078 +#: rpmdb/rpmdb.c:3082 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "ustvarjanje imenika: %s\n" -#: rpmdb/rpmdb.c:3080 +#: rpmdb/rpmdb.c:3084 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "ustvarjanje imenika: %s\n" -#: rpmdb/rpmdb.c:3087 +#: rpmdb/rpmdb.c:3091 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "odpiranje stare podatkovne zbirke\n" -#: rpmdb/rpmdb.c:3098 +#: rpmdb/rpmdb.c:3102 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "odpiramo nove podatkovne zbirke z dbapi %d\n" -#: rpmdb/rpmdb.c:3162 +#: rpmdb/rpmdb.c:3166 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "zapisa ni možno dodati na %d" -#: rpmdb/rpmdb.c:3180 +#: rpmdb/rpmdb.c:3184 #, fuzzy msgid "failed to rebuild database: original database remains in place\n" msgstr "" "ponovna izgradnja podatkovne zbirke je bila neuspešna; stara ostaja na\n" "istem mestu\n" -#: rpmdb/rpmdb.c:3188 +#: rpmdb/rpmdb.c:3192 msgid "failed to replace old database with new database!\n" msgstr "zamenjava stare podatkovne zbirke z novo je bila neuspešna!\n" -#: rpmdb/rpmdb.c:3190 +#: rpmdb/rpmdb.c:3194 #, fuzzy, c-format msgid "replace files in %s with files from %s to recover" msgstr "poskus povrnitve z nadomestitvijo datotek v %s z datotekami v %s" -#: rpmdb/rpmdb.c:3200 +#: rpmdb/rpmdb.c:3204 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "odstranjevanje imenika: %s\n" -#: rpmdb/rpmdb.c:3202 +#: rpmdb/rpmdb.c:3206 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "neuspešna odstranitev imenika %s: %s\n" @@ -4013,61 +4013,61 @@ msgstr "Datoteka %s: %s" msgid "File %s is smaller than %u bytes\n" msgstr "Datoteka %s je krajša od %d bajtov" -#: rpmio/rpmio.c:599 +#: rpmio/rpmio.c:588 msgid "Success" msgstr "Uspeh" -#: rpmio/rpmio.c:602 +#: rpmio/rpmio.c:591 msgid "Bad server response" msgstr "Nepravilen odziv strežnika" -#: rpmio/rpmio.c:605 +#: rpmio/rpmio.c:594 #, fuzzy msgid "Server I/O error" msgstr "V/I napaka na strežniku" -#: rpmio/rpmio.c:608 +#: rpmio/rpmio.c:597 msgid "Server timeout" msgstr "Čas odziva strežnika je potekel" -#: rpmio/rpmio.c:611 +#: rpmio/rpmio.c:600 msgid "Unable to lookup server host address" msgstr "Naslov strežnika ni ugotovljiv" -#: rpmio/rpmio.c:614 +#: rpmio/rpmio.c:603 msgid "Unable to lookup server host name" msgstr "Ime strežnika ni bilo ugotovljivo" -#: rpmio/rpmio.c:617 +#: rpmio/rpmio.c:606 msgid "Failed to connect to server" msgstr "Neuspešen poskus priključitve na strežnik" -#: rpmio/rpmio.c:620 +#: rpmio/rpmio.c:609 msgid "Failed to establish data connection to server" msgstr "Neuspešna vzpostavitev podatkovne povezave s strežnikom" -#: rpmio/rpmio.c:623 +#: rpmio/rpmio.c:612 #, fuzzy msgid "I/O error to local file" msgstr "V/I napaka na lokalni datoteki" -#: rpmio/rpmio.c:626 +#: rpmio/rpmio.c:615 msgid "Error setting remote server to passive mode" msgstr "Napaka pri nastavitvi oddaljenega strežnika v pasivni način" -#: rpmio/rpmio.c:629 +#: rpmio/rpmio.c:618 msgid "File not found on server" msgstr "Datoteke ni možno najti na strežniku" -#: rpmio/rpmio.c:632 +#: rpmio/rpmio.c:621 msgid "Abort in progress" msgstr "Prekinitev v teku" -#: rpmio/rpmio.c:636 +#: rpmio/rpmio.c:625 msgid "Unknown or unexpected error" msgstr "Neznana ali nepričakovana napaka" -#: rpmio/rpmio.c:1259 +#: rpmio/rpmio.c:1252 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "prijava na %s kot %s, geslo %s\n" @@ -4078,7 +4078,7 @@ msgid "(no error)" msgstr "(napaka 0x%x)" #. @-readonlytrans@ -#. FIX: double indeirection. +#. FIX: double indirection. #. @observer@ #: rpmio/rpmlog.c:114 rpmio/rpmlog.c:115 rpmio/rpmlog.c:116 msgid "fatal error: " @@ -4099,37 +4099,37 @@ msgstr "opozorilo: " msgid "memory alloc (%u bytes) returned NULL.\n" msgstr "alokacija pomnilnika (%u bajtov) vrnjeno NIČ.\n" -#: rpmio/url.c:103 +#: rpmio/url.c:101 #, c-format msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n" msgstr "opozorilo: u %p ctrl %p nrefs != 0 (%s %s)\n" -#: rpmio/url.c:123 +#: rpmio/url.c:121 #, c-format msgid "warning: u %p data %p nrefs != 0 (%s %s)\n" msgstr "opozorilo: u %p data %p nrefs != 0 (%s %s)\n" -#: rpmio/url.c:151 +#: rpmio/url.c:149 #, c-format msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" msgstr "opozorilo: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" -#: rpmio/url.c:244 +#: rpmio/url.c:242 #, c-format msgid "Password for %s@%s: " msgstr "Geslo za %s@%s: " -#: rpmio/url.c:269 rpmio/url.c:295 +#: rpmio/url.c:267 rpmio/url.c:293 #, c-format msgid "error: %sport must be a number\n" msgstr "napaka: vrata %s morajo biti številka\n" -#: rpmio/url.c:434 +#: rpmio/url.c:432 msgid "url port must be a number\n" msgstr "vrata URL morajo biti številka\n" #. XXX Fstrerror -#: rpmio/url.c:497 +#: rpmio/url.c:495 #, c-format msgid "failed to create %s: %s\n" msgstr "neuspešno ustvarjanje %s: %s\n" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-09-21 11:01-0400\n" +"POT-Creation-Date: 2001-09-24 20:14-0400\n" "Content-Type: text/plain; charset=\n" "Date: 1998-05-02 21:41:47-0400\n" @@ -1119,15 +1119,15 @@ msgstr "--sign se može koristiti samo kod kreiranja paketa" msgid "exec failed\n" msgstr "%s: Neuspelo otvaranje\n" -#: rpm.c:1116 rpmqv.c:1103 +#: rpm.c:1116 rpmqv.c:1104 msgid "unexpected arguments to --querytags " msgstr "neočekivani argumenti za --querytags" -#: rpm.c:1127 rpmqv.c:1112 +#: rpm.c:1127 rpmqv.c:1113 msgid "no packages given for signature check" msgstr "nedostaje paket za proveru potpisa" -#: rpm.c:1138 rpmqv.c:1121 +#: rpm.c:1138 rpmqv.c:1122 msgid "no packages given for signing" msgstr "nedostaje paket za potpisivanje" @@ -1139,20 +1139,20 @@ msgstr "neodstaje paket za deinstalaciju" msgid "no packages given for install" msgstr "nedostaje paket za instalaciju" -#: rpm.c:1267 rpmqv.c:1066 +#: rpm.c:1267 rpmqv.c:1067 msgid "extra arguments given for query of all packages" msgstr "suvišni argumenti su navedeni za upit nad svim paketima" -#: rpm.c:1272 rpmqv.c:1075 +#: rpm.c:1272 rpmqv.c:1076 msgid "no arguments given for query" msgstr "nedostaju argumenti za upit" -#: rpm.c:1289 rpmqv.c:1091 +#: rpm.c:1289 rpmqv.c:1092 #, fuzzy msgid "extra arguments given for verify of all packages" msgstr "suvišni argumenti su navedeni za upit nad svim paketima" -#: rpm.c:1293 rpmqv.c:1095 +#: rpm.c:1293 rpmqv.c:1096 msgid "no arguments given for verify" msgstr "nedostaju argumenti za proveru" @@ -1775,17 +1775,17 @@ msgstr "" msgid "line %d: Error parsing %%description: %s\n" msgstr "paket %s nije naveden u %s" -#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:192 +#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:190 #, fuzzy, c-format msgid "line %d: Bad option %s: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:204 +#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:202 #, fuzzy, c-format msgid "line %d: Too many names: %s\n" msgstr "pogrešan broj paketa: %s\n" -#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:213 +#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:211 #, fuzzy, c-format msgid "line %d: Package does not exist: %s\n" msgstr "paket %s nije naveden u %s" @@ -2015,22 +2015,22 @@ msgstr "paket %s nije naveden u %s" msgid "line %d: Version required: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: build/parseScript.c:158 +#: build/parseScript.c:156 #, fuzzy, c-format msgid "line %d: triggers must have --: %s\n" msgstr "premeštanja moraju početi znakom '/'" -#: build/parseScript.c:168 build/parseScript.c:229 +#: build/parseScript.c:166 build/parseScript.c:227 #, fuzzy, c-format msgid "line %d: Error parsing %s: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: build/parseScript.c:179 +#: build/parseScript.c:177 #, fuzzy, c-format msgid "line %d: script program must begin with '/': %s\n" msgstr "premeštanja moraju početi znakom '/'" -#: build/parseScript.c:221 +#: build/parseScript.c:219 #, fuzzy, c-format msgid "line %d: Second %s\n" msgstr "neuspelo otvaranje %s: %s" @@ -2071,12 +2071,12 @@ msgstr "" msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:508 +#: build/parseSpec.c:509 #, fuzzy msgid "No compatible architectures found for build\n" msgstr "nemoj proveravati arhitekturu paketa" -#: build/parseSpec.c:563 +#: build/parseSpec.c:564 #, fuzzy, c-format msgid "Package has no %%description: %s\n" msgstr "paket %s nije naveden u %s" @@ -2154,106 +2154,106 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "YES" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "NO " msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1015 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1131 +#: lib/depends.c:1126 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1222 +#: lib/depends.c:1217 #, fuzzy, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "datoteka %s ne pripada nijednom paketu\n" -#: lib/depends.c:1251 +#: lib/depends.c:1246 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1268 +#: lib/depends.c:1263 #, fuzzy, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "datoteka %s ne pripada nijednom paketu\n" -#: lib/depends.c:1292 +#: lib/depends.c:1287 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1305 +#: lib/depends.c:1300 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1319 +#: lib/depends.c:1314 #, fuzzy, c-format msgid "%s: %-45s YES (db package)\n" msgstr "datoteka %s ne pripada nijednom paketu\n" -#: lib/depends.c:1335 +#: lib/depends.c:1330 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1356 +#: lib/depends.c:1351 #, fuzzy, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "datoteka %s ne pripada nijednom paketu\n" #. requirements are not satisfied. -#: lib/depends.c:1428 +#: lib/depends.c:1423 #, fuzzy, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "paket %s nije naveden u %s" #. conflicts exist. -#: lib/depends.c:1507 +#: lib/depends.c:1502 #, fuzzy, c-format msgid "package %s conflicts: %s\n" msgstr "paket %s nije naveden u %s" -#: lib/depends.c:1753 +#: lib/depends.c:1748 #, fuzzy, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "greška uklanjanja sloga %s u %s" #. Record all relations. -#: lib/depends.c:1902 +#: lib/depends.c:1897 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1960 +#: lib/depends.c:1955 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2010 +#: lib/depends.c:2005 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2062 +#: lib/depends.c:2057 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2091 +#: lib/depends.c:2086 msgid "========== continuing tsort ...\n" msgstr "" #: lib/formats.c:28 lib/formats.c:54 lib/formats.c:85 lib/formats.c:128 -#: lib/header.c:2621 lib/header.c:2642 lib/header.c:2664 +#: lib/header.c:2623 lib/header.c:2644 lib/header.c:2666 msgid "(not a number)" msgstr "(nije broj)" @@ -2276,7 +2276,7 @@ msgstr "neuspelo otvaranje %s: %s" msgid "getting list of mounted filesystems\n" msgstr "" -#: lib/fs.c:153 rpmio/url.c:477 +#: lib/fs.c:153 rpmio/url.c:475 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "neuspelo otvaranje %s: %s" @@ -2286,46 +2286,46 @@ msgstr "neuspelo otvaranje %s: %s" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:290 +#: lib/fsm.c:288 msgid "========= Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:292 +#: lib/fsm.c:290 #, fuzzy, c-format msgid "%9d %s\n" msgstr "neuspelo otvaranje %s: %s" -#: lib/fsm.c:1130 +#: lib/fsm.c:1124 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1407 +#: lib/fsm.c:1401 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1526 lib/fsm.c:1651 +#: lib/fsm.c:1520 lib/fsm.c:1645 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "Ne mogu da otvorim datoteku %s: " -#: lib/fsm.c:1677 +#: lib/fsm.c:1671 #, 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:1683 +#: lib/fsm.c:1677 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "neuspela komanda rmdir %s: %s" -#: lib/fsm.c:1693 +#: lib/fsm.c:1687 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "neuspelo otvaranje %s: %s\n" -#: lib/fsm.c:1712 +#: lib/fsm.c:1706 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "Ne mogu da otvorim datoteku %s: " @@ -2341,79 +2341,79 @@ msgid "Data type %d not supported\n" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1930 +#: lib/header.c:1932 #, c-format msgid "missing { after %" msgstr "nedostaje { posle %" #. @-observertrans -readonlytrans@ -#: lib/header.c:1960 +#: lib/header.c:1962 msgid "missing } after %{" msgstr "nedostaje } posle %" #. @-observertrans -readonlytrans@ -#: lib/header.c:1974 +#: lib/header.c:1976 msgid "empty tag format" msgstr "prazan 'tag' format'" #. @-observertrans -readonlytrans@ -#: lib/header.c:1988 +#: lib/header.c:1990 msgid "empty tag name" msgstr "prazno ime tag-a" #. @-observertrans -readonlytrans@ -#: lib/header.c:2005 +#: lib/header.c:2007 msgid "unknown tag" msgstr "nepoznat tag" #. @-observertrans -readonlytrans@ -#: lib/header.c:2032 +#: lib/header.c:2034 msgid "] expected at end of array" msgstr "] očekivano na kraju niza" #. @-observertrans -readonlytrans@ -#: lib/header.c:2050 +#: lib/header.c:2052 msgid "unexpected ]" msgstr "neočekivano ]" #. @-observertrans -readonlytrans@ -#: lib/header.c:2054 +#: lib/header.c:2056 msgid "unexpected }" msgstr "neočekivano }" #. @-observertrans -readonlytrans@ -#: lib/header.c:2120 +#: lib/header.c:2122 msgid "? expected in expression" msgstr "očekivan znak ? u izrazu" #. @-observertrans -readonlytrans@ -#: lib/header.c:2129 +#: lib/header.c:2131 #, fuzzy msgid "{ expected after ? in expression" msgstr "{ očekivano posle ? u izrazu" #. @-observertrans -readonlytrans@ -#: lib/header.c:2142 lib/header.c:2184 +#: lib/header.c:2144 lib/header.c:2186 msgid "} expected in expression" msgstr "} očekivano u izrazu" #. @-observertrans -readonlytrans@ -#: lib/header.c:2152 +#: lib/header.c:2154 msgid ": expected following ? subexpression" msgstr "očekivano : praćeno ? podizrazom" #. @-observertrans -readonlytrans@ -#: lib/header.c:2169 +#: lib/header.c:2171 #, fuzzy msgid "{ expected after : in expression" msgstr "{ očekivano posle : u izrazu" #. @-observertrans -readonlytrans@ -#: lib/header.c:2194 +#: lib/header.c:2196 msgid "| expected at end of expression" msgstr "| očekivano na kraju izraza" -#: lib/header.c:2381 +#: lib/header.c:2383 msgid "(unknown type)" msgstr "(nepoznat tip)" @@ -3048,7 +3048,7 @@ msgid "can't query %s: %s\n" msgstr "greška: ne mogu da otvorim %s\n" #: lib/query.c:576 lib/query.c:610 lib/rpminstall.c:309 lib/rpminstall.c:453 -#: lib/rpminstall.c:826 +#: lib/rpminstall.c:824 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "neuspelo otvaranje %s: %s\n" @@ -3187,28 +3187,28 @@ msgstr "%s: Neuspelo 'rpmReadSignature'\n" msgid "%s: No signature available (v1.0 RPM)\n" msgstr "%s: Potpis nije na raspolaganju (RPM v1.0)\n" -#: lib/rpmchecksig.c:437 +#: lib/rpmchecksig.c:431 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:438 lib/rpmchecksig.c:452 +#: lib/rpmchecksig.c:432 lib/rpmchecksig.c:446 #, fuzzy msgid " (MISSING KEYS:" msgstr " (NEDOSTAJUĆI KLJUČEVI)" -#: lib/rpmchecksig.c:440 lib/rpmchecksig.c:454 +#: lib/rpmchecksig.c:434 lib/rpmchecksig.c:448 msgid ") " msgstr "" -#: lib/rpmchecksig.c:441 lib/rpmchecksig.c:455 +#: lib/rpmchecksig.c:435 lib/rpmchecksig.c:449 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:443 lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 lib/rpmchecksig.c:451 msgid ")" msgstr "" -#: lib/rpmchecksig.c:451 +#: lib/rpmchecksig.c:445 msgid "OK" msgstr "" @@ -3258,7 +3258,7 @@ msgstr "greška kod kreiranja direktorijuma %s: %s" msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:445 lib/rpminstall.c:686 +#: lib/rpminstall.c:445 lib/rpminstall.c:684 #, fuzzy, c-format msgid "%s cannot be installed\n" msgstr "greška: %s se ne može instalirati\n" @@ -3306,7 +3306,7 @@ msgstr "greška: ne mogu da otvorim %s\n" msgid "Installing %s\n" msgstr "Instaliram %s\n" -#: lib/rpmlead.c:49 +#: lib/rpmlead.c:47 #, fuzzy, c-format msgid "read failed: %s (%d)\n" msgstr "neuspelo čitanje: %s (%d)" @@ -3321,88 +3321,88 @@ msgstr "nedostaje drugo ':' na %s:%d" msgid "missing architecture name at %s:%d\n" msgstr "nedostaje ime arhitekture na %s:%d" -#: lib/rpmrc.c:325 +#: lib/rpmrc.c:328 #, fuzzy, c-format msgid "Incomplete data line at %s:%d\n" msgstr "Nepotpuna linija podataka na %s:%d" -#: lib/rpmrc.c:330 +#: lib/rpmrc.c:333 #, fuzzy, c-format msgid "Too many args in data line at %s:%d\n" msgstr "Premnogo argumenata u liniji podataka na %s:%d" -#: lib/rpmrc.c:338 +#: lib/rpmrc.c:341 #, fuzzy, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "Loš broj arhitekture/oper.sist.: %s (%s:%d)" -#: lib/rpmrc.c:378 +#: lib/rpmrc.c:384 #, fuzzy, c-format msgid "Incomplete default line at %s:%d\n" msgstr "Nepotpuna podrazumevana linija na %s:%d" -#: lib/rpmrc.c:383 +#: lib/rpmrc.c:389 #, fuzzy, c-format msgid "Too many args in default line at %s:%d\n" msgstr "Premnogo argumenata u podrazumevanoj liniji na %s:%d" -#: lib/rpmrc.c:585 +#: lib/rpmrc.c:591 #, fuzzy, c-format msgid "Cannot expand %s\n" msgstr "greška: ne mogu da otvorim %s\n" -#: lib/rpmrc.c:590 +#: lib/rpmrc.c:596 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "" -#: lib/rpmrc.c:607 +#: lib/rpmrc.c:613 #, fuzzy, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "Ne mogu da otvorim %s za čitanje: %s" #. XXX Feof(fd) -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:660 #, fuzzy, c-format msgid "Failed to read %s: %s.\n" msgstr "Neuspelo čitanje %s: %s." -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:697 #, fuzzy, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "nedostaje ':' na %s:%d" -#: lib/rpmrc.c:708 lib/rpmrc.c:782 +#: lib/rpmrc.c:714 lib/rpmrc.c:788 #, fuzzy, c-format msgid "missing argument for %s at %s:%d\n" msgstr "nedostaje argument za %s na %s:%d" -#: lib/rpmrc.c:725 lib/rpmrc.c:747 +#: lib/rpmrc.c:731 lib/rpmrc.c:753 #, fuzzy, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "neuspelo otvaranje %s: %s" -#: lib/rpmrc.c:734 +#: lib/rpmrc.c:740 #, fuzzy, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "Ne mogu da otvorim datoteku %s: " -#: lib/rpmrc.c:774 +#: lib/rpmrc.c:780 #, fuzzy, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "nedostaje arhitektura za %s na %s:%d" -#: lib/rpmrc.c:841 +#: lib/rpmrc.c:847 #, fuzzy, c-format msgid "bad option '%s' at %s:%d\n" msgstr "loša opcija '%s' na %s:%d" -#: lib/rpmrc.c:1436 +#: lib/rpmrc.c:1442 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1437 +#: lib/rpmrc.c:1443 msgid "Please contact rpm-list@redhat.com\n" msgstr "" @@ -3435,152 +3435,152 @@ msgstr "napravi PGP potpis" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Stari (interni) potpis! Odakle vam!?" -#: lib/signature.c:230 +#: lib/signature.c:228 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:290 +#: lib/signature.c:288 #, fuzzy, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "Ne mogu da izvršim PGP" -#: lib/signature.c:303 +#: lib/signature.c:301 #, fuzzy msgid "pgp failed\n" msgstr "PGP omanuo" #. PGP failed to write signature #. Just in case -#: lib/signature.c:310 +#: lib/signature.c:308 #, fuzzy msgid "pgp failed to write signature\n" msgstr "PGP nije uspeo da zapiše potpis" -#: lib/signature.c:315 +#: lib/signature.c:313 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:328 lib/signature.c:410 +#: lib/signature.c:326 lib/signature.c:408 #, fuzzy msgid "unable to read the signature\n" msgstr "ne mogu da pročitam potpis" -#: lib/signature.c:333 +#: lib/signature.c:331 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:372 lib/signature.c:760 +#: lib/signature.c:370 lib/signature.c:758 #, fuzzy msgid "Couldn't exec gpg\n" msgstr "Ne mogu da izvršim PGP" -#: lib/signature.c:385 +#: lib/signature.c:383 #, fuzzy msgid "gpg failed\n" msgstr "PGP omanuo" #. GPG failed to write signature #. Just in case -#: lib/signature.c:392 +#: lib/signature.c:390 #, fuzzy msgid "gpg failed to write signature\n" msgstr "PGP nije uspeo da zapiše potpis" -#: lib/signature.c:397 +#: lib/signature.c:395 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:415 +#: lib/signature.c:413 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:443 +#: lib/signature.c:441 #, fuzzy msgid "Generating signature using PGP.\n" msgstr "napravi PGP potpis" -#: lib/signature.c:449 +#: lib/signature.c:447 #, fuzzy msgid "Generating signature using GPG.\n" msgstr "napravi PGP potpis" -#: lib/signature.c:532 lib/signature.c:607 +#: lib/signature.c:530 lib/signature.c:605 #, fuzzy msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "Ne mogu da pokrenem pgp. Koristite --nopgp da preskočite PGP proveru." -#: lib/signature.c:697 +#: lib/signature.c:695 #, fuzzy msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "Ne mogu da pokrenem pgp. Koristite --nopgp da preskočite PGP proveru." -#: lib/signature.c:789 +#: lib/signature.c:787 #, fuzzy msgid "Couldn't exec pgp\n" msgstr "Ne mogu da izvršim PGP" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:793 lib/signature.c:846 +#: lib/signature.c:791 lib/signature.c:844 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:826 +#: lib/signature.c:824 #, fuzzy, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "Morate podesiti \"pgp_name:\" u vašoj rpmrc datoteci" -#: lib/signature.c:838 +#: lib/signature.c:836 #, fuzzy, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "Morate podesiti \"pgp_name:\" u vašoj rpmrc datoteci" -#: lib/transaction.c:446 +#: lib/transaction.c:447 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:450 +#: lib/transaction.c:451 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "Pribavljam %s\n" -#: lib/transaction.c:453 +#: lib/transaction.c:454 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "Ne mogu da otvorim datoteku %s: " -#: lib/transaction.c:523 +#: lib/transaction.c:524 #, fuzzy, c-format msgid "excluding multilib path %s%s\n" msgstr "Pribavljam %s\n" -#: lib/transaction.c:586 +#: lib/transaction.c:587 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "Pribavljam %s\n" -#: lib/transaction.c:596 +#: lib/transaction.c:597 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:674 +#: lib/transaction.c:675 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "greška kod kreiranja direktorijuma %s: %s" -#: lib/transaction.c:808 +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1406 +#: lib/transaction.c:1407 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "greška kod kreiranja direktorijuma %s: %s" @@ -3776,126 +3776,126 @@ msgstr "greška zapisivanja sloga %s u %s" msgid "error(%d) removing record %s from %s\n" msgstr "greška uklanjanja sloga %s u %s" -#: rpmdb/rpmdb.c:842 +#: rpmdb/rpmdb.c:846 #, fuzzy msgid "no dbpath has been set\n" msgstr "dbpath nije određen" -#: rpmdb/rpmdb.c:973 +#: rpmdb/rpmdb.c:977 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1206 +#: rpmdb/rpmdb.c:1210 #, fuzzy, c-format msgid "error(%d) counting packages\n" msgstr "greška kod potrage za paketom %s\n" -#: rpmdb/rpmdb.c:1940 rpmdb/rpmdb.c:3122 +#: rpmdb/rpmdb.c:1944 rpmdb/rpmdb.c:3126 #, fuzzy, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "slog broj %d u bazi podataka je neispravan -- preskačem ga" -#: rpmdb/rpmdb.c:1991 +#: rpmdb/rpmdb.c:1995 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2256 +#: rpmdb/rpmdb.c:2260 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "ne mogu da pročitam zaglavlje na %d za proveru" -#: rpmdb/rpmdb.c:2325 +#: rpmdb/rpmdb.c:2329 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "greška uklanjanja sloga %s u %s" -#: rpmdb/rpmdb.c:2334 +#: rpmdb/rpmdb.c:2338 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "greška uklanjanja sloga %s u %s" -#: rpmdb/rpmdb.c:2529 +#: rpmdb/rpmdb.c:2533 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "greška kod potrage za paketom %s\n" -#: rpmdb/rpmdb.c:2607 +#: rpmdb/rpmdb.c:2611 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2618 +#: rpmdb/rpmdb.c:2622 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "greška uklanjanja sloga %s u %s" -#: rpmdb/rpmdb.c:3011 +#: rpmdb/rpmdb.c:3015 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3041 +#: rpmdb/rpmdb.c:3045 msgid "no dbpath has been set" msgstr "dbpath nije određen" -#: rpmdb/rpmdb.c:3068 +#: rpmdb/rpmdb.c:3072 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "rekreiraj bazu podataka iz postojeće baze" -#: rpmdb/rpmdb.c:3072 +#: rpmdb/rpmdb.c:3076 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "privremena baza podataka %s već postoji" -#: rpmdb/rpmdb.c:3078 +#: rpmdb/rpmdb.c:3082 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "greška kod kreiranja direktorijuma %s: %s" -#: rpmdb/rpmdb.c:3080 +#: rpmdb/rpmdb.c:3084 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "greška kod kreiranja direktorijuma %s: %s" -#: rpmdb/rpmdb.c:3087 +#: rpmdb/rpmdb.c:3091 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "rekreiraj bazu podataka iz postojeće baze" -#: rpmdb/rpmdb.c:3098 +#: rpmdb/rpmdb.c:3102 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "rekreiraj bazu podataka iz postojeće baze" -#: rpmdb/rpmdb.c:3162 +#: rpmdb/rpmdb.c:3166 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "ne mogu da dodam slog originalno na %d" -#: rpmdb/rpmdb.c:3180 +#: rpmdb/rpmdb.c:3184 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3188 +#: rpmdb/rpmdb.c:3192 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3190 +#: rpmdb/rpmdb.c:3194 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3200 +#: rpmdb/rpmdb.c:3204 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "greška kod kreiranja direktorijuma %s: %s" -#: rpmdb/rpmdb.c:3202 +#: rpmdb/rpmdb.c:3206 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "neuspelo otvaranje %s: %s" @@ -3991,68 +3991,68 @@ msgstr "neuspelo otvaranje %s: %s" msgid "File %s is smaller than %u bytes\n" msgstr "" -#: rpmio/rpmio.c:599 +#: rpmio/rpmio.c:588 msgid "Success" msgstr "" -#: rpmio/rpmio.c:602 +#: rpmio/rpmio.c:591 #, fuzzy msgid "Bad server response" msgstr "Loš odgovor FTP servera" -#: rpmio/rpmio.c:605 +#: rpmio/rpmio.c:594 #, fuzzy msgid "Server I/O error" msgstr "Ulazno/izlazna FTP greška" -#: rpmio/rpmio.c:608 +#: rpmio/rpmio.c:597 #, fuzzy msgid "Server timeout" msgstr "Tajm-aut FTP servera" -#: rpmio/rpmio.c:611 +#: rpmio/rpmio.c:600 #, fuzzy msgid "Unable to lookup server host address" msgstr "Ne mogu da odredim host adresu FTP servera" -#: rpmio/rpmio.c:614 +#: rpmio/rpmio.c:603 #, fuzzy msgid "Unable to lookup server host name" msgstr "Ne mogu da odredim ime FTP hosta" -#: rpmio/rpmio.c:617 +#: rpmio/rpmio.c:606 #, fuzzy msgid "Failed to connect to server" msgstr "Ne mogu da se povežem sa FTP serverom" -#: rpmio/rpmio.c:620 +#: rpmio/rpmio.c:609 #, fuzzy msgid "Failed to establish data connection to server" msgstr "Ne mogu da uspostavim vezu podataka sa FTP serverom" -#: rpmio/rpmio.c:623 +#: rpmio/rpmio.c:612 #, fuzzy msgid "I/O error to local file" msgstr "Ulazno/izlazna greška kod lokalne datoteke" -#: rpmio/rpmio.c:626 +#: rpmio/rpmio.c:615 msgid "Error setting remote server to passive mode" msgstr "Greška kod stavljanja udaljenog servera u pasivni režim" -#: rpmio/rpmio.c:629 +#: rpmio/rpmio.c:618 msgid "File not found on server" msgstr "Datoteka nije pronađena na serveru" -#: rpmio/rpmio.c:632 +#: rpmio/rpmio.c:621 msgid "Abort in progress" msgstr "" -#: rpmio/rpmio.c:636 +#: rpmio/rpmio.c:625 #, fuzzy msgid "Unknown or unexpected error" msgstr "Neočekivana ili nepoznata FTP greška" -#: rpmio/rpmio.c:1259 +#: rpmio/rpmio.c:1252 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" @@ -4063,7 +4063,7 @@ msgid "(no error)" msgstr "greška: " #. @-readonlytrans@ -#. FIX: double indeirection. +#. FIX: double indirection. #. @observer@ #: rpmio/rpmlog.c:114 rpmio/rpmlog.c:115 rpmio/rpmlog.c:116 msgid "fatal error: " @@ -4084,38 +4084,38 @@ msgstr "upozorenje: " msgid "memory alloc (%u bytes) returned NULL.\n" msgstr "" -#: rpmio/url.c:103 +#: rpmio/url.c:101 #, c-format msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:123 +#: rpmio/url.c:121 #, c-format msgid "warning: u %p data %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:151 +#: rpmio/url.c:149 #, c-format msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" msgstr "" -#: rpmio/url.c:244 +#: rpmio/url.c:242 #, c-format msgid "Password for %s@%s: " msgstr "Lozinka za %s@%s: " -#: rpmio/url.c:269 rpmio/url.c:295 +#: rpmio/url.c:267 rpmio/url.c:293 #, fuzzy, c-format msgid "error: %sport must be a number\n" msgstr "greška: FTP port mora biti broj\n" -#: rpmio/url.c:434 +#: rpmio/url.c:432 #, fuzzy msgid "url port must be a number\n" msgstr "greška: FTP port mora biti broj\n" #. XXX Fstrerror -#: rpmio/url.c:497 +#: rpmio/url.c:495 #, fuzzy, c-format msgid "failed to create %s: %s\n" msgstr "neuspelo kreiranje %s\n" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-09-21 11:01-0400\n" +"POT-Creation-Date: 2001-09-24 20:14-0400\n" "PO-Revision-Date: 2001-09-12 14:18+0200\n" "Last-Translator: Göran Uddeborg <goeran@uddeborg.pp.se>\n" "Language-Team: Swedish <sv@li.org>\n" @@ -1087,15 +1087,15 @@ msgstr "--sign kan enbart användas vid pakettillverkning" msgid "exec failed\n" msgstr "exec misslyckades\n" -#: rpm.c:1116 rpmqv.c:1103 +#: rpm.c:1116 rpmqv.c:1104 msgid "unexpected arguments to --querytags " msgstr "oväntade argument till --querytags " -#: rpm.c:1127 rpmqv.c:1112 +#: rpm.c:1127 rpmqv.c:1113 msgid "no packages given for signature check" msgstr "inga paket angivna för signaturkontroll" -#: rpm.c:1138 rpmqv.c:1121 +#: rpm.c:1138 rpmqv.c:1122 msgid "no packages given for signing" msgstr "inga paket angivna för signering" @@ -1107,19 +1107,19 @@ msgstr "inga paket angivna för avinstallation" msgid "no packages given for install" msgstr "inga paket angivna för installation" -#: rpm.c:1267 rpmqv.c:1066 +#: rpm.c:1267 rpmqv.c:1067 msgid "extra arguments given for query of all packages" msgstr "extra argument angivna för förfrĺgan om alla paket" -#: rpm.c:1272 rpmqv.c:1075 +#: rpm.c:1272 rpmqv.c:1076 msgid "no arguments given for query" msgstr "inga parametrar angivna för frĺga" -#: rpm.c:1289 rpmqv.c:1091 +#: rpm.c:1289 rpmqv.c:1092 msgid "extra arguments given for verify of all packages" msgstr "extra argument angivna för verifiering av alla paket" -#: rpm.c:1293 rpmqv.c:1095 +#: rpm.c:1293 rpmqv.c:1096 msgid "no arguments given for verify" msgstr "inga parametrar angivna för verifiering" @@ -1733,17 +1733,17 @@ msgstr "ingen beskrivning i %%changelog\n" msgid "line %d: Error parsing %%description: %s\n" msgstr "rad %d: Fel i tolkning av %%description: %s\n" -#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:192 +#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:190 #, c-format msgid "line %d: Bad option %s: %s\n" msgstr "rad %d: otillĺten flagga %s: %s\n" -#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:204 +#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:202 #, c-format msgid "line %d: Too many names: %s\n" msgstr "rad %d: För mĺnga namn: %s\n" -#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:213 +#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:211 #, c-format msgid "line %d: Package does not exist: %s\n" msgstr "rad %d: Paketet existerar inte: %s\n" @@ -1974,22 +1974,22 @@ msgstr "rad %d: Filnamn med version inte tillĺtet: %s\n" msgid "line %d: Version required: %s\n" msgstr "rad %d: Version krävs: %s\n" -#: build/parseScript.c:158 +#: build/parseScript.c:156 #, c-format msgid "line %d: triggers must have --: %s\n" msgstr "rad %d: utlösare mĺste ha --: %s\n" -#: build/parseScript.c:168 build/parseScript.c:229 +#: build/parseScript.c:166 build/parseScript.c:227 #, c-format msgid "line %d: Error parsing %s: %s\n" msgstr "rad %d: Fel vid tolkning av %s: %s\n" -#: build/parseScript.c:179 +#: build/parseScript.c:177 #, c-format msgid "line %d: script program must begin with '/': %s\n" msgstr "rad %d: skriptprogram mĺste börja med \"/\": %s\n" -#: build/parseScript.c:221 +#: build/parseScript.c:219 #, c-format msgid "line %d: Second %s\n" msgstr "rad %d: En andra %s\n" @@ -2030,11 +2030,11 @@ msgstr "%s:%d: Fick ett %%endif utan nĺgot %%if\n" msgid "malformed %%include statement\n" msgstr "felformaterad %%include-sats\n" -#: build/parseSpec.c:508 +#: build/parseSpec.c:509 msgid "No compatible architectures found for build\n" msgstr "Hittade inga kompatibla arkitekturer att bygga\n" -#: build/parseSpec.c:563 +#: build/parseSpec.c:564 #, c-format msgid "Package has no %%description: %s\n" msgstr "Paketet har ingen %%description: %s\n" @@ -2110,107 +2110,107 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr " %s A %s\tB %s\n" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "YES" msgstr "JA" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "NO " msgstr "NEJ " -#: lib/depends.c:1021 +#: lib/depends.c:1015 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "%s: %-45s JA (lade till filer)\n" -#: lib/depends.c:1131 +#: lib/depends.c:1126 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "%s: %-45s JA (lade till tillhandahĺllande)\n" -#: lib/depends.c:1222 +#: lib/depends.c:1217 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "%s: %-45s %-s (cachad)\n" -#: lib/depends.c:1251 +#: lib/depends.c:1246 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "%s: %-45s JA (rpmrc tillhandahĺller)\n" -#: lib/depends.c:1268 +#: lib/depends.c:1263 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "%s: %-45s JA (rpmlib tillhandahĺller)\n" -#: lib/depends.c:1292 +#: lib/depends.c:1287 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "%s: %-45s JA (db-filer)\n" -#: lib/depends.c:1305 +#: lib/depends.c:1300 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "%s: %-45s JA (db-tillhandahĺllande)\n" -#: lib/depends.c:1319 +#: lib/depends.c:1314 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "%s: %-45s JA (db-paket)\n" -#: lib/depends.c:1335 +#: lib/depends.c:1330 #, c-format msgid "%s: %-45s NO\n" msgstr "%s: %-45s NEJ\n" -#: lib/depends.c:1356 +#: lib/depends.c:1351 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "%s: (%s, %s) tillagt till beroendecachen.\n" #. requirements are not satisfied. -#: lib/depends.c:1428 +#: lib/depends.c:1423 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "paket %s-%s-%s behov inte uppfyllda: %s\n" #. conflicts exist. -#: lib/depends.c:1507 +#: lib/depends.c:1502 #, c-format msgid "package %s conflicts: %s\n" msgstr "paket %s stĺr i konflikt: %s\n" -#: lib/depends.c:1753 +#: lib/depends.c:1748 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "tar bort %s-%s-%s \"%s\" frĺn tsort-relationer.\n" #. Record all relations. -#: lib/depends.c:1902 +#: lib/depends.c:1897 msgid "========== recording tsort relations\n" msgstr "========== noterar alla relationer\n" #. T4. Scan for zeroes. -#: lib/depends.c:1960 +#: lib/depends.c:1955 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" "========== tsort:erar paket (ordning, #föregĺngare, #efterföljare, djup)\n" -#: lib/depends.c:2010 +#: lib/depends.c:2005 msgid "========== successors only (presentation order)\n" msgstr "========== endast efterföljare (presentationsordning)\n" -#: lib/depends.c:2062 +#: lib/depends.c:2057 msgid "LOOP:\n" msgstr "LOOP:\n" -#: lib/depends.c:2091 +#: lib/depends.c:2086 msgid "========== continuing tsort ...\n" msgstr "========== fortsätter med tsort ...\n" #: lib/formats.c:28 lib/formats.c:54 lib/formats.c:85 lib/formats.c:128 -#: lib/header.c:2621 lib/header.c:2642 lib/header.c:2664 +#: lib/header.c:2623 lib/header.c:2644 lib/header.c:2666 msgid "(not a number)" msgstr "(inte ett tal)" @@ -2233,7 +2233,7 @@ msgstr "kunde inte ta status pĺ %s: %s\n" msgid "getting list of mounted filesystems\n" msgstr "hämtar lista över monterade filsystem\n" -#: lib/fs.c:153 rpmio/url.c:477 +#: lib/fs.c:153 rpmio/url.c:475 #, c-format msgid "failed to open %s: %s\n" msgstr "kunde inte öppna %s: %s\n" @@ -2243,46 +2243,46 @@ msgstr "kunde inte öppna %s: %s\n" msgid "file %s is on an unknown device\n" msgstr "filen %s är pĺ en okänd enhet\n" -#: lib/fsm.c:290 +#: lib/fsm.c:288 msgid "========= Directories not explictly included in package:\n" msgstr "========= Kataloger ej uttryckligen inkluderade i paketet:\n" -#: lib/fsm.c:292 +#: lib/fsm.c:290 #, c-format msgid "%9d %s\n" msgstr "%9d %s\n" -#: lib/fsm.c:1130 +#: lib/fsm.c:1124 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "katalog %s skapad med rättigheter %04o.\n" -#: lib/fsm.c:1407 +#: lib/fsm.c:1401 #, 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:1526 lib/fsm.c:1651 +#: lib/fsm.c:1520 lib/fsm.c:1645 #, c-format msgid "%s saved as %s\n" msgstr "%s sparades som %s\n" -#: lib/fsm.c:1677 +#: lib/fsm.c:1671 #, 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:1683 +#: lib/fsm.c:1677 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s rmdir av %s misslyckades: %s\n" -#: lib/fsm.c:1693 +#: lib/fsm.c:1687 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s unlink av %s misslyckades: %s\n" -#: lib/fsm.c:1712 +#: lib/fsm.c:1706 #, c-format msgid "%s created as %s\n" msgstr "%s skapades som %s\n" @@ -2298,77 +2298,77 @@ msgid "Data type %d not supported\n" msgstr "Datatyp %d stöds inte\n" #. @-observertrans -readonlytrans@ -#: lib/header.c:1930 +#: lib/header.c:1932 #, c-format msgid "missing { after %" msgstr "{ fattas efter %" #. @-observertrans -readonlytrans@ -#: lib/header.c:1960 +#: lib/header.c:1962 msgid "missing } after %{" msgstr "} fattas efter %{" #. @-observertrans -readonlytrans@ -#: lib/header.c:1974 +#: lib/header.c:1976 msgid "empty tag format" msgstr "tomt taggformat" #. @-observertrans -readonlytrans@ -#: lib/header.c:1988 +#: lib/header.c:1990 msgid "empty tag name" msgstr "tomt taggnamn" #. @-observertrans -readonlytrans@ -#: lib/header.c:2005 +#: lib/header.c:2007 msgid "unknown tag" msgstr "okänd tagg" #. @-observertrans -readonlytrans@ -#: lib/header.c:2032 +#: lib/header.c:2034 msgid "] expected at end of array" msgstr "] förväntades vid slutet pĺ vektor" #. @-observertrans -readonlytrans@ -#: lib/header.c:2050 +#: lib/header.c:2052 msgid "unexpected ]" msgstr "oväntad ]" #. @-observertrans -readonlytrans@ -#: lib/header.c:2054 +#: lib/header.c:2056 msgid "unexpected }" msgstr "oväntad }" #. @-observertrans -readonlytrans@ -#: lib/header.c:2120 +#: lib/header.c:2122 msgid "? expected in expression" msgstr "? förväntades i uttryck" #. @-observertrans -readonlytrans@ -#: lib/header.c:2129 +#: lib/header.c:2131 msgid "{ expected after ? in expression" msgstr "{ förväntades efter ? i uttryck" #. @-observertrans -readonlytrans@ -#: lib/header.c:2142 lib/header.c:2184 +#: lib/header.c:2144 lib/header.c:2186 msgid "} expected in expression" msgstr "} förväntades i uttryck" #. @-observertrans -readonlytrans@ -#: lib/header.c:2152 +#: lib/header.c:2154 msgid ": expected following ? subexpression" msgstr ": förväntades efter ? i deluttryck" #. @-observertrans -readonlytrans@ -#: lib/header.c:2169 +#: lib/header.c:2171 msgid "{ expected after : in expression" msgstr "{ förväntades efter : i uttryck" #. @-observertrans -readonlytrans@ -#: lib/header.c:2194 +#: lib/header.c:2196 msgid "| expected at end of expression" msgstr "| förväntades vid slutet pĺ uttryck" -#: lib/header.c:2381 +#: lib/header.c:2383 msgid "(unknown type)" msgstr "(okänd typ)" @@ -2954,7 +2954,7 @@ msgid "can't query %s: %s\n" msgstr "kan inte frĺga %s: %s\n" #: lib/query.c:576 lib/query.c:610 lib/rpminstall.c:309 lib/rpminstall.c:453 -#: lib/rpminstall.c:826 +#: lib/rpminstall.c:824 #, c-format msgid "open of %s failed: %s\n" msgstr "misslyckades med att öppna %s: %s\n" @@ -3091,27 +3091,27 @@ msgstr "%s: rpmWriteSignature misslyckades: %s\n" msgid "%s: No signature available (v1.0 RPM)\n" msgstr "%s: Ingen signatur tillgänglig (v1.0 RPM)\n" -#: lib/rpmchecksig.c:437 +#: lib/rpmchecksig.c:431 msgid "NOT OK" msgstr "EJ OK" -#: lib/rpmchecksig.c:438 lib/rpmchecksig.c:452 +#: lib/rpmchecksig.c:432 lib/rpmchecksig.c:446 msgid " (MISSING KEYS:" msgstr " (SAKNADE NYCKLAR:" -#: lib/rpmchecksig.c:440 lib/rpmchecksig.c:454 +#: lib/rpmchecksig.c:434 lib/rpmchecksig.c:448 msgid ") " msgstr ") " -#: lib/rpmchecksig.c:441 lib/rpmchecksig.c:455 +#: lib/rpmchecksig.c:435 lib/rpmchecksig.c:449 msgid " (UNTRUSTED KEYS:" msgstr " (EJ BETRODDA NYCKLAR:" -#: lib/rpmchecksig.c:443 lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 lib/rpmchecksig.c:451 msgid ")" msgstr ")" -#: lib/rpmchecksig.c:451 +#: lib/rpmchecksig.c:445 msgid "OK" msgstr "OK" @@ -3160,7 +3160,7 @@ msgstr "fel vid läsning frĺn fil %s\n" msgid "file %s requires a newer version of RPM\n" msgstr "filen %s behöver en nyare version av RPM\n" -#: lib/rpminstall.c:445 lib/rpminstall.c:686 +#: lib/rpminstall.c:445 lib/rpminstall.c:684 #, c-format msgid "%s cannot be installed\n" msgstr "%s kan inte installeras\n" @@ -3207,7 +3207,7 @@ msgstr "kan inte öppna %s: %s\n" msgid "Installing %s\n" msgstr "Installerar %s\n" -#: lib/rpmlead.c:49 +#: lib/rpmlead.c:47 #, c-format msgid "read failed: %s (%d)\n" msgstr "läsning misslyckades: %s (%d)\n" @@ -3222,88 +3222,88 @@ msgstr "andra \":\" saknas vid %s:%d\n" msgid "missing architecture name at %s:%d\n" msgstr "arkitekturnamn saknas vid %s:%d\n" -#: lib/rpmrc.c:325 +#: lib/rpmrc.c:328 #, c-format msgid "Incomplete data line at %s:%d\n" msgstr "Ofullständig datarad vid %s:%d\n" -#: lib/rpmrc.c:330 +#: lib/rpmrc.c:333 #, c-format msgid "Too many args in data line at %s:%d\n" msgstr "För mĺnga argument i datarad vid %s:%d\n" -#: lib/rpmrc.c:338 +#: lib/rpmrc.c:341 #, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "Felaktigt arkitektur-/os-nummer: %s (%s:%d)\n" -#: lib/rpmrc.c:378 +#: lib/rpmrc.c:384 #, c-format msgid "Incomplete default line at %s:%d\n" msgstr "Ofullständig standardvärdesrad vid %s:%d\n" -#: lib/rpmrc.c:383 +#: lib/rpmrc.c:389 #, c-format msgid "Too many args in default line at %s:%d\n" msgstr "För mĺnga argument i standardvärdesrad vid %s:%d\n" -#: lib/rpmrc.c:585 +#: lib/rpmrc.c:591 #, c-format msgid "Cannot expand %s\n" msgstr "Kan inte expandera %s\n" -#: lib/rpmrc.c:590 +#: lib/rpmrc.c:596 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "Kan inte läsa %s, HOME är för stor.\n" -#: lib/rpmrc.c:607 +#: lib/rpmrc.c:613 #, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "Kan inte öppna %s för läsning: %s.\n" #. XXX Feof(fd) -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:660 #, c-format msgid "Failed to read %s: %s.\n" msgstr "Misslyckades med att läsa %s: %s.\n" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:697 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "\":\" saknas (hittade 0x%02x) vid %s:%d\n" -#: lib/rpmrc.c:708 lib/rpmrc.c:782 +#: lib/rpmrc.c:714 lib/rpmrc.c:788 #, c-format msgid "missing argument for %s at %s:%d\n" msgstr "argument till %s saknas vid %s:%d\n" -#: lib/rpmrc.c:725 lib/rpmrc.c:747 +#: lib/rpmrc.c:731 lib/rpmrc.c:753 #, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "%s expansion misslyckades vid %s:%d \"%s\"\n" -#: lib/rpmrc.c:734 +#: lib/rpmrc.c:740 #, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "kan inte öppna %s vid %s:%d: %s\n" -#: lib/rpmrc.c:774 +#: lib/rpmrc.c:780 #, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "arkitektur saknas för %s vid %s:%d\n" -#: lib/rpmrc.c:841 +#: lib/rpmrc.c:847 #, c-format msgid "bad option '%s' at %s:%d\n" msgstr "okänd flagga \"%s\" vid %s:%d\n" -#: lib/rpmrc.c:1436 +#: lib/rpmrc.c:1442 #, c-format msgid "Unknown system: %s\n" msgstr "Okänt system: %s\n" -#: lib/rpmrc.c:1437 +#: lib/rpmrc.c:1443 msgid "Please contact rpm-list@redhat.com\n" msgstr "Var vänlig kontakta rpm-list@redhat.com\n" @@ -3335,143 +3335,143 @@ msgstr "Gammal PGP-signatur\n" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Gammal (endast intern) signatur! Hur fick du tag i den!?\n" -#: lib/signature.c:230 +#: lib/signature.c:228 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "Signatur: storlek(%d)+utfyllnad(%d)\n" -#: lib/signature.c:290 +#: lib/signature.c:288 #, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "Kunde inte köra pgp (%s)\n" -#: lib/signature.c:303 +#: lib/signature.c:301 msgid "pgp failed\n" msgstr "pgp misslyckades\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:310 +#: lib/signature.c:308 msgid "pgp failed to write signature\n" msgstr "pgp misslyckades att skriva en signatur\n" -#: lib/signature.c:315 +#: lib/signature.c:313 #, c-format msgid "PGP sig size: %d\n" msgstr "PGP signaturstorlek: %d\n" -#: lib/signature.c:328 lib/signature.c:410 +#: lib/signature.c:326 lib/signature.c:408 msgid "unable to read the signature\n" msgstr "kan inte läsa signaturen\n" -#: lib/signature.c:333 +#: lib/signature.c:331 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "Fick %d byte PGP-signatur\n" -#: lib/signature.c:372 lib/signature.c:760 +#: lib/signature.c:370 lib/signature.c:758 msgid "Couldn't exec gpg\n" msgstr "Kunde inte köra gpg\n" -#: lib/signature.c:385 +#: lib/signature.c:383 msgid "gpg failed\n" msgstr "gpg misslyckades\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:392 +#: lib/signature.c:390 msgid "gpg failed to write signature\n" msgstr "gpg kunde inte skriva signatur\n" -#: lib/signature.c:397 +#: lib/signature.c:395 #, c-format msgid "GPG sig size: %d\n" msgstr "GPG-signaturstorlek: %d\n" -#: lib/signature.c:415 +#: lib/signature.c:413 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "Fick %d byte GPG-signatur\n" -#: lib/signature.c:443 +#: lib/signature.c:441 msgid "Generating signature using PGP.\n" msgstr "Genererar signatur med PGP.\n" -#: lib/signature.c:449 +#: lib/signature.c:447 msgid "Generating signature using GPG.\n" msgstr "Genererar signatur med GPG.\n" -#: lib/signature.c:532 lib/signature.c:607 +#: lib/signature.c:530 lib/signature.c:605 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" "Kunde inte köra pgp. Använd --nopgp för att hoppa över PGP-kontroll.\n" -#: lib/signature.c:697 +#: lib/signature.c:695 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" "Kunde inte köra gpg. Använd --nogpg för att hoppa över GPG-kontroll.\n" -#: lib/signature.c:789 +#: lib/signature.c:787 msgid "Couldn't exec pgp\n" msgstr "Kunde inte köra pgp\n" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:793 lib/signature.c:846 +#: lib/signature.c:791 lib/signature.c:844 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "Felaktig %%_signature-spec i makrofil\n" -#: lib/signature.c:826 +#: lib/signature.c:824 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "Du mĺste sätta \"%%_gpg_name\" i din makrofil\n" -#: lib/signature.c:838 +#: lib/signature.c:836 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "Du mĺste sätta \"%%_pgp_name\" i din makrofil\n" -#: lib/transaction.c:446 +#: lib/transaction.c:447 msgid "========== relocations\n" msgstr "========== omflyttningar\n" -#: lib/transaction.c:450 +#: lib/transaction.c:451 #, c-format msgid "%5d exclude %s\n" msgstr "%5d utesluter %s\n" -#: lib/transaction.c:453 +#: lib/transaction.c:454 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "%5d flyttar om %s -> %s\n" -#: lib/transaction.c:523 +#: lib/transaction.c:524 #, c-format msgid "excluding multilib path %s%s\n" msgstr "hoppar över multilib-sökväg %s%s\n" -#: lib/transaction.c:586 +#: lib/transaction.c:587 #, c-format msgid "excluding %s %s\n" msgstr "hoppar över %s %s\n" -#: lib/transaction.c:596 +#: lib/transaction.c:597 #, c-format msgid "relocating %s to %s\n" msgstr "flyttar %s till %s\n" -#: lib/transaction.c:674 +#: lib/transaction.c:675 #, c-format msgid "relocating directory %s to %s\n" msgstr "flyttar katalogen %s till %s\n" -#: lib/transaction.c:808 +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s överhoppad pĺ grund av missingok-flagga\n" -#: lib/transaction.c:1406 +#: lib/transaction.c:1407 #, c-format msgid "excluding directory %s\n" msgstr "hoppar över katalogen %s\n" @@ -3674,11 +3674,11 @@ msgstr "fel(%d) när post %s sparades i %s\n" msgid "error(%d) removing record %s from %s\n" msgstr "fel(%d) när post %s togs bort ur %s\n" -#: rpmdb/rpmdb.c:842 +#: rpmdb/rpmdb.c:846 msgid "no dbpath has been set\n" msgstr "ingen dbpath har satts\n" -#: rpmdb/rpmdb.c:973 +#: rpmdb/rpmdb.c:977 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" @@ -3687,114 +3687,114 @@ msgstr "" "i nytt format\n" #. error -#: rpmdb/rpmdb.c:1206 +#: rpmdb/rpmdb.c:1210 #, c-format msgid "error(%d) counting packages\n" msgstr "fel(%d) när paket räknades\n" -#: rpmdb/rpmdb.c:1940 rpmdb/rpmdb.c:3122 +#: rpmdb/rpmdb.c:1944 rpmdb/rpmdb.c:3126 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "post nummer %u i databasen är felaktig -- hoppar över.\n" -#: rpmdb/rpmdb.c:1991 +#: rpmdb/rpmdb.c:1995 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "rpmdb: skadad huvudinstans #%u hämtad, hoppar över.\n" -#: rpmdb/rpmdb.c:2256 +#: rpmdb/rpmdb.c:2260 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "%s: kan inte läsa huvud vid 0x%x\n" -#: rpmdb/rpmdb.c:2325 +#: rpmdb/rpmdb.c:2329 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "tar bort \"%s\" frĺn %s-indexet.\n" -#: rpmdb/rpmdb.c:2334 +#: rpmdb/rpmdb.c:2338 #, c-format msgid "removing %d entries from %s index.\n" msgstr "tar bort %d poster frĺn %s-indexet.\n" -#: rpmdb/rpmdb.c:2529 +#: rpmdb/rpmdb.c:2533 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "fel(%d) vid allokering av ny paketinstans\n" -#: rpmdb/rpmdb.c:2607 +#: rpmdb/rpmdb.c:2611 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "lägger till \"%s\" till %s-indexet.\n" -#: rpmdb/rpmdb.c:2618 +#: rpmdb/rpmdb.c:2622 #, c-format msgid "adding %d entries to %s index.\n" msgstr "lägger till %d poster till %s-indexet.\n" -#: rpmdb/rpmdb.c:3011 +#: rpmdb/rpmdb.c:3015 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "tar bort %s efter lyckad db3-ombyggnad.\n" -#: rpmdb/rpmdb.c:3041 +#: rpmdb/rpmdb.c:3045 msgid "no dbpath has been set" msgstr "ingen dbpath har satts" -#: rpmdb/rpmdb.c:3068 +#: rpmdb/rpmdb.c:3072 #, c-format msgid "rebuilding database %s into %s\n" msgstr "bygger om databas %s till %s\n" -#: rpmdb/rpmdb.c:3072 +#: rpmdb/rpmdb.c:3076 #, c-format msgid "temporary database %s already exists\n" msgstr "tillfällig databas %s existerar redan\n" -#: rpmdb/rpmdb.c:3078 +#: rpmdb/rpmdb.c:3082 #, c-format msgid "creating directory %s\n" msgstr "skapar katalog %s\n" -#: rpmdb/rpmdb.c:3080 +#: rpmdb/rpmdb.c:3084 #, c-format msgid "creating directory %s: %s\n" msgstr "skapar katalog %s: %s\n" -#: rpmdb/rpmdb.c:3087 +#: rpmdb/rpmdb.c:3091 #, c-format msgid "opening old database with dbapi %d\n" msgstr "öppnar gammal databas med dbapi %d\n" -#: rpmdb/rpmdb.c:3098 +#: rpmdb/rpmdb.c:3102 #, c-format msgid "opening new database with dbapi %d\n" msgstr "öppnar ny databas med dbapi %d\n" -#: rpmdb/rpmdb.c:3162 +#: rpmdb/rpmdb.c:3166 #, c-format msgid "cannot add record originally at %u\n" msgstr "kan inte lägga till post ursprungligen vid %u\n" -#: rpmdb/rpmdb.c:3180 +#: rpmdb/rpmdb.c:3184 msgid "failed to rebuild database: original database remains in place\n" msgstr "kunde inte bygga om databasen: orginaldatabasen finns kvar\n" -#: rpmdb/rpmdb.c:3188 +#: rpmdb/rpmdb.c:3192 msgid "failed to replace old database with new database!\n" msgstr "kunde inte ersätta gammal databas med ny databas!\n" -#: rpmdb/rpmdb.c:3190 +#: rpmdb/rpmdb.c:3194 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "byt ut filer i %s med filer frĺn %s för att ĺterställa" -#: rpmdb/rpmdb.c:3200 +#: rpmdb/rpmdb.c:3204 #, c-format msgid "removing directory %s\n" msgstr "tar bort katalog %s\n" -#: rpmdb/rpmdb.c:3202 +#: rpmdb/rpmdb.c:3206 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "kunde inte ta bort katalogen %s: %s\n" @@ -3890,59 +3890,59 @@ msgstr "Fil %s: %s\n" msgid "File %s is smaller than %u bytes\n" msgstr "Filen %s är mindre än %u byte\n" -#: rpmio/rpmio.c:599 +#: rpmio/rpmio.c:588 msgid "Success" msgstr "Lyckades" -#: rpmio/rpmio.c:602 +#: rpmio/rpmio.c:591 msgid "Bad server response" msgstr "Konstigt svar frĺn server" -#: rpmio/rpmio.c:605 +#: rpmio/rpmio.c:594 msgid "Server I/O error" msgstr "IO-fel mot server" -#: rpmio/rpmio.c:608 +#: rpmio/rpmio.c:597 msgid "Server timeout" msgstr "Förbindelsen med servern dog ut (timeout)" -#: rpmio/rpmio.c:611 +#: rpmio/rpmio.c:600 msgid "Unable to lookup server host address" msgstr "Kunde inte slĺ upp serverns adress" -#: rpmio/rpmio.c:614 +#: rpmio/rpmio.c:603 msgid "Unable to lookup server host name" msgstr "Kunde inte slĺ upp serverns namn" -#: rpmio/rpmio.c:617 +#: rpmio/rpmio.c:606 msgid "Failed to connect to server" msgstr "Misslyckades med att kontakta servern" -#: rpmio/rpmio.c:620 +#: rpmio/rpmio.c:609 msgid "Failed to establish data connection to server" msgstr "Misslyckades med att etablera en dataförbindelse till servern" -#: rpmio/rpmio.c:623 +#: rpmio/rpmio.c:612 msgid "I/O error to local file" msgstr "I/O-fel mot lokal fil" -#: rpmio/rpmio.c:626 +#: rpmio/rpmio.c:615 msgid "Error setting remote server to passive mode" msgstr "Fel när fjärrservern sattes i passivt läge" -#: rpmio/rpmio.c:629 +#: rpmio/rpmio.c:618 msgid "File not found on server" msgstr "Filen fanns inte pĺ servern" -#: rpmio/rpmio.c:632 +#: rpmio/rpmio.c:621 msgid "Abort in progress" msgstr "Avbruten under gĺng" -#: rpmio/rpmio.c:636 +#: rpmio/rpmio.c:625 msgid "Unknown or unexpected error" msgstr "Okänt eller oväntat fel" -#: rpmio/rpmio.c:1259 +#: rpmio/rpmio.c:1252 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "loggar in pĺ %s som %s, lösenord %s\n" @@ -3952,7 +3952,7 @@ msgid "(no error)" msgstr "(inget fel)" #. @-readonlytrans@ -#. FIX: double indeirection. +#. FIX: double indirection. #. @observer@ #: rpmio/rpmlog.c:114 rpmio/rpmlog.c:115 rpmio/rpmlog.c:116 msgid "fatal error: " @@ -3973,37 +3973,37 @@ msgstr "varning: " msgid "memory alloc (%u bytes) returned NULL.\n" msgstr "minnesallokering (%u byte) returnerade NULL.\n" -#: rpmio/url.c:103 +#: rpmio/url.c:101 #, c-format msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n" msgstr "varning: u %p ctrl %p nrefs != 0 (%s %s)\n" -#: rpmio/url.c:123 +#: rpmio/url.c:121 #, c-format msgid "warning: u %p data %p nrefs != 0 (%s %s)\n" msgstr "varning: u %p data %p nrefs != 0 (%s %s)\n" -#: rpmio/url.c:151 +#: rpmio/url.c:149 #, c-format msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" msgstr "varning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" -#: rpmio/url.c:244 +#: rpmio/url.c:242 #, c-format msgid "Password for %s@%s: " msgstr "Lösenord för %s@%s: " -#: rpmio/url.c:269 rpmio/url.c:295 +#: rpmio/url.c:267 rpmio/url.c:293 #, c-format msgid "error: %sport must be a number\n" msgstr "fel: %s-port mĺste vara ett tal\n" -#: rpmio/url.c:434 +#: rpmio/url.c:432 msgid "url port must be a number\n" msgstr "url-port mĺste vara ett tal\n" #. XXX Fstrerror -#: rpmio/url.c:497 +#: rpmio/url.c:495 #, c-format msgid "failed to create %s: %s\n" msgstr "kunde inte skapa %s: %s\n" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-09-21 11:01-0400\n" +"POT-Creation-Date: 2001-09-24 20:14-0400\n" "PO-Revision-Date: 2001-07-05 08:02+300\n" "Last-Translator: Nilgun Belma Buguner <nilgun@technologist.com>\n" "Language-Team: Turkish <tr@li.org>\n" @@ -1106,15 +1106,15 @@ msgstr "--sign sadece paket oluţturulurken kullanýlabilir" msgid "exec failed\n" msgstr "icra baţarýsýz\n" -#: rpm.c:1116 rpmqv.c:1103 +#: rpm.c:1116 rpmqv.c:1104 msgid "unexpected arguments to --querytags " msgstr "--querytags ile beklenmeyen girdiler" -#: rpm.c:1127 rpmqv.c:1112 +#: rpm.c:1127 rpmqv.c:1113 msgid "no packages given for signature check" msgstr "imzasý kontrol edilecek paket(ler) belirtilmedi" -#: rpm.c:1138 rpmqv.c:1121 +#: rpm.c:1138 rpmqv.c:1122 msgid "no packages given for signing" msgstr "imzalanacak paket(ler) belirtilmedi" @@ -1126,19 +1126,19 @@ msgstr "sistemden silinecek paket(ler) belirtilmedi" msgid "no packages given for install" msgstr "yüklenecek paket(ler) belirtilmedi" -#: rpm.c:1267 rpmqv.c:1066 +#: rpm.c:1267 rpmqv.c:1067 msgid "extra arguments given for query of all packages" msgstr "tüm paketlerin sorgulanmasý için fazladan argümanlar belirtildi" -#: rpm.c:1272 rpmqv.c:1075 +#: rpm.c:1272 rpmqv.c:1076 msgid "no arguments given for query" msgstr "sorgulama için hiç argüman belirtilmedi" -#: rpm.c:1289 rpmqv.c:1091 +#: rpm.c:1289 rpmqv.c:1092 msgid "extra arguments given for verify of all packages" msgstr "tüm paketlerin denetlenmesi için fazladan argümanlar belirtildi" -#: rpm.c:1293 rpmqv.c:1095 +#: rpm.c:1293 rpmqv.c:1096 msgid "no arguments given for verify" msgstr "denetleme için hiç argüman belirtilmedi" @@ -1757,17 +1757,17 @@ msgstr "%%changelog içinde açýklama yok\n" msgid "line %d: Error parsing %%description: %s\n" msgstr "satýr %d: %%description ayrýţtýrýlýrken hata: %s \n" -#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:192 +#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:190 #, c-format msgid "line %d: Bad option %s: %s\n" msgstr "satýr %d: %s seçeneđi hatalý: %s\n" -#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:204 +#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:202 #, c-format msgid "line %d: Too many names: %s\n" msgstr "satýr %d: Ýsim sayýsý fazla: %s\n" -#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:213 +#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:211 #, c-format msgid "line %d: Package does not exist: %s\n" msgstr "satýr %d: Paket yok: %s\n" @@ -1999,22 +1999,22 @@ msgstr "satýr %d: Sürüm içeren dosya adý uygun deđil: %s\n" msgid "line %d: Version required: %s\n" msgstr "satýr %d: Sürüm gerekli: %s\n" -#: build/parseScript.c:158 +#: build/parseScript.c:156 #, c-format msgid "line %d: triggers must have --: %s\n" msgstr "satýr %d: tetikleyiciler -- içermeli: %s\n" -#: build/parseScript.c:168 build/parseScript.c:229 +#: build/parseScript.c:166 build/parseScript.c:227 #, c-format msgid "line %d: Error parsing %s: %s\n" msgstr "satýr %d: %s çözümlenirken hata oluţtu: %s\n" -#: build/parseScript.c:179 +#: build/parseScript.c:177 #, c-format msgid "line %d: script program must begin with '/': %s\n" msgstr "satýr %d: betik programý '/' ile baţlamalý: %s\n" -#: build/parseScript.c:221 +#: build/parseScript.c:219 #, c-format msgid "line %d: Second %s\n" msgstr "satýr %d: %s saniye\n" @@ -2055,11 +2055,11 @@ msgstr "%s:%d: %%if'siz bir %%endif alýndý\n" msgid "malformed %%include statement\n" msgstr "%%include deyimi bozuk\n" -#: build/parseSpec.c:508 +#: build/parseSpec.c:509 msgid "No compatible architectures found for build\n" msgstr "Kurgulamak için uyumlu mimari yok\n" -#: build/parseSpec.c:563 +#: build/parseSpec.c:564 #, c-format msgid "Package has no %%description: %s\n" msgstr "Paket %%description içermiyor: %s\n" @@ -2135,107 +2135,107 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr " %s A %s\tB %s\n" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "YES" msgstr "EVET" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "NO " msgstr "HAYIR " -#: lib/depends.c:1021 +#: lib/depends.c:1015 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "%s: %-45s EVET (dosyalar eklendi)\n" -#: lib/depends.c:1131 +#: lib/depends.c:1126 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "%s: %-45s EVET (önlem eklendi)\n" -#: lib/depends.c:1222 +#: lib/depends.c:1217 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "%s: %-45s %-s (arabellekli)\n" -#: lib/depends.c:1251 +#: lib/depends.c:1246 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "%s: %-45s EVET (rpmrc sađlar)\n" -#: lib/depends.c:1268 +#: lib/depends.c:1263 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "%s: %-45s EVET (rpmlib sađlar)\n" -#: lib/depends.c:1292 +#: lib/depends.c:1287 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "%s: %-45s EVET (db dosyalarý)\n" -#: lib/depends.c:1305 +#: lib/depends.c:1300 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "%s: %-45s EVET (db sađlar)\n" -#: lib/depends.c:1319 +#: lib/depends.c:1314 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "%s: %-45s EVET (db paketi)\n" -#: lib/depends.c:1335 +#: lib/depends.c:1330 #, c-format msgid "%s: %-45s NO\n" msgstr "%s: %-45s HAYIR\n" -#: lib/depends.c:1356 +#: lib/depends.c:1351 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "%s: (%s, %s) Bađýmlýlar alanýna eklendi.\n" #. requirements are not satisfied. -#: lib/depends.c:1428 +#: lib/depends.c:1423 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "paket %s-%s-%s gereksinimi tatmin edici deđil: %s\n" #. conflicts exist. -#: lib/depends.c:1507 +#: lib/depends.c:1502 #, c-format msgid "package %s conflicts: %s\n" msgstr "%s paketi çeliţiyor: %s\n" -#: lib/depends.c:1753 +#: lib/depends.c:1748 #, c-format msgid "removing %s-%s-%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:1902 +#: lib/depends.c:1897 msgid "========== recording tsort relations\n" msgstr "========== tsort bađýntýlarý kaydediliyor\n" #. T4. Scan for zeroes. -#: lib/depends.c:1960 +#: lib/depends.c:1955 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" "========== paketler tsort'lanýyor (sýra, #öncüller, #ardýllar, derinlik)\n" -#: lib/depends.c:2010 +#: lib/depends.c:2005 msgid "========== successors only (presentation order)\n" msgstr "========== sadece ardýllar (sunum sýrasý)\n" -#: lib/depends.c:2062 +#: lib/depends.c:2057 msgid "LOOP:\n" msgstr "ÇEVRÝM:\n" -#: lib/depends.c:2091 +#: lib/depends.c:2086 msgid "========== continuing tsort ...\n" msgstr "========== tsort sürüyor ...\n" #: lib/formats.c:28 lib/formats.c:54 lib/formats.c:85 lib/formats.c:128 -#: lib/header.c:2621 lib/header.c:2642 lib/header.c:2664 +#: lib/header.c:2623 lib/header.c:2644 lib/header.c:2666 msgid "(not a number)" msgstr "(bir sayý deđil)" @@ -2258,7 +2258,7 @@ msgstr "stat %s baţarýsýz: %s\n" msgid "getting list of mounted filesystems\n" msgstr "bađlý dosya sistemlerinin listesi alýnýyor\n" -#: lib/fs.c:153 rpmio/url.c:477 +#: lib/fs.c:153 rpmio/url.c:475 #, c-format msgid "failed to open %s: %s\n" msgstr "%s açýlamadý: %s\n" @@ -2268,46 +2268,46 @@ msgstr "%s açýlamadý: %s\n" msgid "file %s is on an unknown device\n" msgstr "%s dosyasýnýn bulunduđu aygýt anlaţýlamadý\n" -#: lib/fsm.c:290 +#: lib/fsm.c:288 msgid "========= Directories not explictly included in package:\n" msgstr "========= Pakette bulunmayan dizinler:\n" -#: lib/fsm.c:292 +#: lib/fsm.c:290 #, c-format msgid "%9d %s\n" msgstr "%9d %s\n" -#: lib/fsm.c:1130 +#: lib/fsm.c:1124 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "%s dizin %04o izinleriyle oluţturuldu.\n" -#: lib/fsm.c:1407 +#: lib/fsm.c:1401 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1526 lib/fsm.c:1651 +#: lib/fsm.c:1520 lib/fsm.c:1645 #, c-format msgid "%s saved as %s\n" msgstr "%s %s olarak kaydedildi\n" -#: lib/fsm.c:1677 +#: lib/fsm.c:1671 #, 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:1683 +#: lib/fsm.c:1677 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s / %s dizinin silinmesi baţarýsýz: %s\n" -#: lib/fsm.c:1693 +#: lib/fsm.c:1687 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s / %s bađ kaldýrýlamadý: %s\n" -#: lib/fsm.c:1712 +#: lib/fsm.c:1706 #, c-format msgid "%s created as %s\n" msgstr "%s %s olarak oluţturuldu\n" @@ -2323,77 +2323,77 @@ msgid "Data type %d not supported\n" msgstr "%d veri türü desteklenmiyor\n" #. @-observertrans -readonlytrans@ -#: lib/header.c:1930 +#: lib/header.c:1932 #, c-format msgid "missing { after %" msgstr "%% den sonraki { yok" #. @-observertrans -readonlytrans@ -#: lib/header.c:1960 +#: lib/header.c:1962 msgid "missing } after %{" msgstr "%%{ den sonraki } yok" #. @-observertrans -readonlytrans@ -#: lib/header.c:1974 +#: lib/header.c:1976 msgid "empty tag format" msgstr "etiket biçemi boţ" #. @-observertrans -readonlytrans@ -#: lib/header.c:1988 +#: lib/header.c:1990 msgid "empty tag name" msgstr "etiket ismi boţ" #. @-observertrans -readonlytrans@ -#: lib/header.c:2005 +#: lib/header.c:2007 msgid "unknown tag" msgstr "bilinmeyen etiket" #. @-observertrans -readonlytrans@ -#: lib/header.c:2032 +#: lib/header.c:2034 msgid "] expected at end of array" msgstr "dizinin sonunda ] gerekli" #. @-observertrans -readonlytrans@ -#: lib/header.c:2050 +#: lib/header.c:2052 msgid "unexpected ]" msgstr "beklenmeyen ]" #. @-observertrans -readonlytrans@ -#: lib/header.c:2054 +#: lib/header.c:2056 msgid "unexpected }" msgstr "beklenmeyen }" #. @-observertrans -readonlytrans@ -#: lib/header.c:2120 +#: lib/header.c:2122 msgid "? expected in expression" msgstr "ifade içerisinde ? gerekli" #. @-observertrans -readonlytrans@ -#: lib/header.c:2129 +#: lib/header.c:2131 msgid "{ expected after ? in expression" msgstr "ifade içerisinde ? dan sonra { gerekli" #. @-observertrans -readonlytrans@ -#: lib/header.c:2142 lib/header.c:2184 +#: lib/header.c:2144 lib/header.c:2186 msgid "} expected in expression" msgstr "ifade içinde } gerekli" #. @-observertrans -readonlytrans@ -#: lib/header.c:2152 +#: lib/header.c:2154 msgid ": expected following ? subexpression" msgstr "? alt ifadesinden sonra : gerekli" #. @-observertrans -readonlytrans@ -#: lib/header.c:2169 +#: lib/header.c:2171 msgid "{ expected after : in expression" msgstr "ifade içersinde : den sonra { gerekli" #. @-observertrans -readonlytrans@ -#: lib/header.c:2194 +#: lib/header.c:2196 msgid "| expected at end of expression" msgstr "ifadenin sonunda | gerekli" -#: lib/header.c:2381 +#: lib/header.c:2383 msgid "(unknown type)" msgstr "(bilinmeyen tür)" @@ -2992,7 +2992,7 @@ msgid "can't query %s: %s\n" msgstr "%s sorgulanamýyor: %s\n" #: lib/query.c:576 lib/query.c:610 lib/rpminstall.c:309 lib/rpminstall.c:453 -#: lib/rpminstall.c:826 +#: lib/rpminstall.c:824 #, c-format msgid "open of %s failed: %s\n" msgstr "%s açýlamadý: %s\n" @@ -3129,27 +3129,27 @@ msgstr "%s: rpmWriteSignature baţarýsýz: %s\n" msgid "%s: No signature available (v1.0 RPM)\n" msgstr "%s: Ýmza bulundurmuyor (v1.0 RPM)\n" -#: lib/rpmchecksig.c:437 +#: lib/rpmchecksig.c:431 msgid "NOT OK" msgstr "TAMAM DEĐÝL" -#: lib/rpmchecksig.c:438 lib/rpmchecksig.c:452 +#: lib/rpmchecksig.c:432 lib/rpmchecksig.c:446 msgid " (MISSING KEYS:" msgstr " (EKSÝK ANAHTARLAR:" -#: lib/rpmchecksig.c:440 lib/rpmchecksig.c:454 +#: lib/rpmchecksig.c:434 lib/rpmchecksig.c:448 msgid ") " msgstr ") " -#: lib/rpmchecksig.c:441 lib/rpmchecksig.c:455 +#: lib/rpmchecksig.c:435 lib/rpmchecksig.c:449 msgid " (UNTRUSTED KEYS:" msgstr " (GÜVENCESÝZ ANAHTARLAR:" -#: lib/rpmchecksig.c:443 lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 lib/rpmchecksig.c:451 msgid ")" msgstr ")" -#: lib/rpmchecksig.c:451 +#: lib/rpmchecksig.c:445 msgid "OK" msgstr "Tamam" @@ -3198,7 +3198,7 @@ msgstr "%s dosyasýndan okuma hatalý\n" msgid "file %s requires a newer version of RPM\n" msgstr "%s dosyasý RPM'nin daha yeni bir sürümünü gerektiriyor\n" -#: lib/rpminstall.c:445 lib/rpminstall.c:686 +#: lib/rpminstall.c:445 lib/rpminstall.c:684 #, c-format msgid "%s cannot be installed\n" msgstr "%s yüklenemedi\n" @@ -3245,7 +3245,7 @@ msgstr "%s açýlamadý: %s\n" msgid "Installing %s\n" msgstr "%s kuruluyor\n" -#: lib/rpmlead.c:49 +#: lib/rpmlead.c:47 #, c-format msgid "read failed: %s (%d)\n" msgstr "okuma baţarýsýz: %s (%d)\n" @@ -3260,88 +3260,88 @@ msgstr "%s:%d - ikinci ':' eksik\n" msgid "missing architecture name at %s:%d\n" msgstr "%s:%d - mimari ismi eksik\n" -#: lib/rpmrc.c:325 +#: lib/rpmrc.c:328 #, c-format msgid "Incomplete data line at %s:%d\n" msgstr "%s:%d - veri satýrý tamamlanmamýţ\n" -#: lib/rpmrc.c:330 +#: lib/rpmrc.c:333 #, c-format msgid "Too many args in data line at %s:%d\n" msgstr "%s:%d - veri satýrýnda çok fazla argüman\n" -#: lib/rpmrc.c:338 +#: lib/rpmrc.c:341 #, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "arch/os numarasý hatalý: %s (%s:%d)\n" -#: lib/rpmrc.c:378 +#: lib/rpmrc.c:384 #, c-format msgid "Incomplete default line at %s:%d\n" msgstr "%s:%d - öntanýmlý satýr tamamlanmamýţ\n" -#: lib/rpmrc.c:383 +#: lib/rpmrc.c:389 #, c-format msgid "Too many args in default line at %s:%d\n" msgstr "%s:%d - öntanýmlý satýrda çok fazla argüman\n" -#: lib/rpmrc.c:585 +#: lib/rpmrc.c:591 #, c-format msgid "Cannot expand %s\n" msgstr "%s geniţletilemiyor\n" -#: lib/rpmrc.c:590 +#: lib/rpmrc.c:596 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "%s okunamýyor, EV çok büyük\n" -#: lib/rpmrc.c:607 +#: lib/rpmrc.c:613 #, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "%s okuma eriţimi için açýlamadý: %s.\n" #. XXX Feof(fd) -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:660 #, c-format msgid "Failed to read %s: %s.\n" msgstr "%s okunamadý: %s.\n" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:697 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "(0x%02x bulundu) %s:%d de ':' yok\n" -#: lib/rpmrc.c:708 lib/rpmrc.c:782 +#: lib/rpmrc.c:714 lib/rpmrc.c:788 #, c-format msgid "missing argument for %s at %s:%d\n" msgstr "%s için %s:%d de argüman eksik\n" -#: lib/rpmrc.c:725 lib/rpmrc.c:747 +#: lib/rpmrc.c:731 lib/rpmrc.c:753 #, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "%s geniţletmesi %s:%d \"%s\" de baţarýsýz \n" -#: lib/rpmrc.c:734 +#: lib/rpmrc.c:740 #, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "%s dosyasý açýlamýyor (%s:%d): %s\n" -#: lib/rpmrc.c:774 +#: lib/rpmrc.c:780 #, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "%s için %s:%d'de eksik mimari\n" -#: lib/rpmrc.c:841 +#: lib/rpmrc.c:847 #, c-format msgid "bad option '%s' at %s:%d\n" msgstr "seçenek '%s' (%s:%d) de hatalý\n" -#: lib/rpmrc.c:1436 +#: lib/rpmrc.c:1442 #, c-format msgid "Unknown system: %s\n" msgstr "Bilinmeyen sistem: %s\n" -#: lib/rpmrc.c:1437 +#: lib/rpmrc.c:1443 msgid "Please contact rpm-list@redhat.com\n" msgstr "Lütfen rpm-list@redhat.com listesine üye olun\n" @@ -3371,143 +3371,143 @@ msgstr "Eski PGP imzasý\n" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Eski imza !!! Bunu nasýl aldýn!?\n" -#: lib/signature.c:230 +#: lib/signature.c:228 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "Ýmza: boyut(%d)+iz(%d)\n" -#: lib/signature.c:290 +#: lib/signature.c:288 #, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "pgp çalýţtýrýlamadý (%s)\n" -#: lib/signature.c:303 +#: lib/signature.c:301 msgid "pgp failed\n" msgstr "pgp hata verdi\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:310 +#: lib/signature.c:308 msgid "pgp failed to write signature\n" msgstr "pgp imzasýnýn yazýlmasý baţarýsýz\n" -#: lib/signature.c:315 +#: lib/signature.c:313 #, c-format msgid "PGP sig size: %d\n" msgstr "PGP imza uzunluđu: %d\n" -#: lib/signature.c:328 lib/signature.c:410 +#: lib/signature.c:326 lib/signature.c:408 msgid "unable to read the signature\n" msgstr "imza okunamadý\n" -#: lib/signature.c:333 +#: lib/signature.c:331 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "GPG imzasýnýn %d baytý alýndý\n" -#: lib/signature.c:372 lib/signature.c:760 +#: lib/signature.c:370 lib/signature.c:758 msgid "Couldn't exec gpg\n" msgstr "gpg çalýţtýrýlamadý\n" -#: lib/signature.c:385 +#: lib/signature.c:383 msgid "gpg failed\n" msgstr "gpg hata verdi\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:392 +#: lib/signature.c:390 msgid "gpg failed to write signature\n" msgstr "imzanýn yazýlmasý sýrasýnda gpg hata verdi\n" -#: lib/signature.c:397 +#: lib/signature.c:395 #, c-format msgid "GPG sig size: %d\n" msgstr "GPG imza uzunluđu: %d\n" -#: lib/signature.c:415 +#: lib/signature.c:413 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "GPG imzasýnýn %d baytý alýndý\n" -#: lib/signature.c:443 +#: lib/signature.c:441 msgid "Generating signature using PGP.\n" msgstr "PGP kullanarak imza üretiliyor.\n" -#: lib/signature.c:449 +#: lib/signature.c:447 msgid "Generating signature using GPG.\n" msgstr "GPG kullanýlarak imza üretiliyor.\n" -#: lib/signature.c:532 lib/signature.c:607 +#: lib/signature.c:530 lib/signature.c:605 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" "pgp çalýţtýrýlamadý. PGP kontrollerini atlamak için --nopgp kullanýn.\n" -#: lib/signature.c:697 +#: lib/signature.c:695 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" "gpg çalýţtýrýlamadý. GPG kontrollerini atlamak için --nogpg kullanýn.\n" -#: lib/signature.c:789 +#: lib/signature.c:787 msgid "Couldn't exec pgp\n" msgstr "pgp çalýţtýrýlamadý\n" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:793 lib/signature.c:846 +#: lib/signature.c:791 lib/signature.c:844 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "Makro dosyasýnda %%_signature spec geçersiz\n" -#: lib/signature.c:826 +#: lib/signature.c:824 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "Makro dosyanýzda \"%%_pgp_name\" tanýmlanmýţ olmalý\n" -#: lib/signature.c:838 +#: lib/signature.c:836 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "Makro dosyanýzda \"%%_pgp_name\" belirtmelisiniz\n" -#: lib/transaction.c:446 +#: lib/transaction.c:447 msgid "========== relocations\n" msgstr "========== yeniden konumlama\n" -#: lib/transaction.c:450 +#: lib/transaction.c:451 #, c-format msgid "%5d exclude %s\n" msgstr "%5d %s'i dýţlýyor\n" -#: lib/transaction.c:453 +#: lib/transaction.c:454 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "%5d yeniden konumlandýrýlýyor: %s -> %s\n" -#: lib/transaction.c:523 +#: lib/transaction.c:524 #, c-format msgid "excluding multilib path %s%s\n" msgstr "multilib dosya yolu dýţlanýyor %s%s\n" -#: lib/transaction.c:586 +#: lib/transaction.c:587 #, c-format msgid "excluding %s %s\n" msgstr "%s %s dýţlanýyor\n" -#: lib/transaction.c:596 +#: lib/transaction.c:597 #, c-format msgid "relocating %s to %s\n" msgstr "%s %s'e konumlanýyor\n" -#: lib/transaction.c:674 +#: lib/transaction.c:675 #, c-format msgid "relocating directory %s to %s\n" msgstr "%s dizini %s de yeniden konumlanýyor\n" -#: lib/transaction.c:808 +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "missingok flamasýndan dolayý %s atlandý\n" -#: lib/transaction.c:1406 +#: lib/transaction.c:1407 #, c-format msgid "excluding directory %s\n" msgstr "%s dizini dýţlanýyor\n" @@ -3711,11 +3711,11 @@ msgstr "hata(%d): %s kayýt %s içine yazýlýyor\n" msgid "error(%d) removing record %s from %s\n" msgstr "hata(%d) %s kaydýn %s dosyasýndan silinmesi\n" -#: rpmdb/rpmdb.c:842 +#: rpmdb/rpmdb.c:846 msgid "no dbpath has been set\n" msgstr "belirtilmiţ bir dbpath deđeri yok\n" -#: rpmdb/rpmdb.c:973 +#: rpmdb/rpmdb.c:977 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" @@ -3724,116 +3724,116 @@ msgstr "" "rebuilddb kullanýn\n" #. error -#: rpmdb/rpmdb.c:1206 +#: rpmdb/rpmdb.c:1210 #, c-format msgid "error(%d) counting packages\n" msgstr "paketler taranýrken hata(%d)\n" -#: rpmdb/rpmdb.c:1940 rpmdb/rpmdb.c:3122 +#: rpmdb/rpmdb.c:1944 rpmdb/rpmdb.c:3126 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "veritabanýndaki %u. kayýt hatalý -- atlanýyor\n" -#: rpmdb/rpmdb.c:1991 +#: rpmdb/rpmdb.c:1995 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "rpmdb: bozuk baţlýk örneđi #%u alýndý, atlanýyor.\n" -#: rpmdb/rpmdb.c:2256 +#: rpmdb/rpmdb.c:2260 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "%s: 0x%x de baţlýk okunamadý\n" -#: rpmdb/rpmdb.c:2325 +#: rpmdb/rpmdb.c:2329 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "\"%s\" %s indeksinden siliniyor.\n" -#: rpmdb/rpmdb.c:2334 +#: rpmdb/rpmdb.c:2338 #, c-format msgid "removing %d entries from %s index.\n" msgstr "%d girdi %s indeksinden siliniyor.\n" -#: rpmdb/rpmdb.c:2529 +#: rpmdb/rpmdb.c:2533 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "yeni paket örneđini tutma hatasý(%d)\n" -#: rpmdb/rpmdb.c:2607 +#: rpmdb/rpmdb.c:2611 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "\"%s\" %s indeksine ekleniyor.\n" -#: rpmdb/rpmdb.c:2618 +#: rpmdb/rpmdb.c:2622 #, c-format msgid "adding %d entries to %s index.\n" msgstr "%d girdi %s indeksine ekleniyor.\n" -#: rpmdb/rpmdb.c:3011 +#: rpmdb/rpmdb.c:3015 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "baţarýlý db3 yeniden oluţturma ertesinde %s kaldýrýlýyor\n" -#: rpmdb/rpmdb.c:3041 +#: rpmdb/rpmdb.c:3045 msgid "no dbpath has been set" msgstr "belirtilmiţ bir dbpath yok" -#: rpmdb/rpmdb.c:3068 +#: rpmdb/rpmdb.c:3072 #, c-format msgid "rebuilding database %s into %s\n" msgstr "%s veritabaný %s içinde yeniden oluţturuluyor\n" -#: rpmdb/rpmdb.c:3072 +#: rpmdb/rpmdb.c:3076 #, c-format msgid "temporary database %s already exists\n" msgstr "geçici veritabaný %s zaten mevcut\n" -#: rpmdb/rpmdb.c:3078 +#: rpmdb/rpmdb.c:3082 #, c-format msgid "creating directory %s\n" msgstr "%s dizini oluţturuluyor\n" -#: rpmdb/rpmdb.c:3080 +#: rpmdb/rpmdb.c:3084 #, c-format msgid "creating directory %s: %s\n" msgstr "%s dizini oluţturuluyor: %s\n" -#: rpmdb/rpmdb.c:3087 +#: rpmdb/rpmdb.c:3091 #, c-format msgid "opening old database with dbapi %d\n" msgstr "eski veritabaný dbapi %d ile açýlýyor\n" -#: rpmdb/rpmdb.c:3098 +#: rpmdb/rpmdb.c:3102 #, c-format msgid "opening new database with dbapi %d\n" msgstr "yeni veritabaný dbapi %d ile açýlýyor\n" -#: rpmdb/rpmdb.c:3162 +#: rpmdb/rpmdb.c:3166 #, c-format msgid "cannot add record originally at %u\n" msgstr "kayýt özgün olarak %u e eklenemedi\n" -#: rpmdb/rpmdb.c:3180 +#: rpmdb/rpmdb.c:3184 msgid "failed to rebuild database: original database remains in place\n" msgstr "" "veritabaný yeniden oluţturulamadý: mevcut veritabaný deđiţmeden\n" "yerinde býrakýldý\n" -#: rpmdb/rpmdb.c:3188 +#: rpmdb/rpmdb.c:3192 msgid "failed to replace old database with new database!\n" msgstr "eski veritabanýnýn yenisiyle deđiţtirilirmesi baţarýsýz!\n" -#: rpmdb/rpmdb.c:3190 +#: rpmdb/rpmdb.c:3194 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "kurtarmak için %s içindeki dosyalar %s deki dosyalarla deđiţtiriliyor" -#: rpmdb/rpmdb.c:3200 +#: rpmdb/rpmdb.c:3204 #, c-format msgid "removing directory %s\n" msgstr "%s dizini siliniyor\n" -#: rpmdb/rpmdb.c:3202 +#: rpmdb/rpmdb.c:3206 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "%s dizininin silinmesi baţarýsýz: %s\n" @@ -3929,59 +3929,59 @@ msgstr "%s dosyasý: %s\n" msgid "File %s is smaller than %u bytes\n" msgstr "%s dosyasý %u bayttan küçük\n" -#: rpmio/rpmio.c:599 +#: rpmio/rpmio.c:588 msgid "Success" msgstr "Baţarýlý" -#: rpmio/rpmio.c:602 +#: rpmio/rpmio.c:591 msgid "Bad server response" msgstr "Sunucudan kötü yanýt" -#: rpmio/rpmio.c:605 +#: rpmio/rpmio.c:594 msgid "Server I/O error" msgstr "Sunucu G/Ç hatasý" -#: rpmio/rpmio.c:608 +#: rpmio/rpmio.c:597 msgid "Server timeout" msgstr "Sunucu zaman aţýmý" -#: rpmio/rpmio.c:611 +#: rpmio/rpmio.c:600 msgid "Unable to lookup server host address" msgstr "Sunucu makina adresi bulunamadý" -#: rpmio/rpmio.c:614 +#: rpmio/rpmio.c:603 msgid "Unable to lookup server host name" msgstr "Sunucu makina ismi bulunamadý" -#: rpmio/rpmio.c:617 +#: rpmio/rpmio.c:606 msgid "Failed to connect to server" msgstr "Sunucuya bađlanýlamadý" -#: rpmio/rpmio.c:620 +#: rpmio/rpmio.c:609 msgid "Failed to establish data connection to server" msgstr "Sunucuya veri bađlantýsý kurulamadý" -#: rpmio/rpmio.c:623 +#: rpmio/rpmio.c:612 msgid "I/O error to local file" msgstr "Yerel dosyaya G/Ç hatasý" -#: rpmio/rpmio.c:626 +#: rpmio/rpmio.c:615 msgid "Error setting remote server to passive mode" msgstr "Karţý sunucuyu pasif kipe sokma ayarlarýnda hata" -#: rpmio/rpmio.c:629 +#: rpmio/rpmio.c:618 msgid "File not found on server" msgstr "Dosya sunucuda bulunamadý" -#: rpmio/rpmio.c:632 +#: rpmio/rpmio.c:621 msgid "Abort in progress" msgstr "Kesme iţlemi sürüyor" -#: rpmio/rpmio.c:636 +#: rpmio/rpmio.c:625 msgid "Unknown or unexpected error" msgstr "Bilinmeyen ya da beklenmeyen hata" -#: rpmio/rpmio.c:1259 +#: rpmio/rpmio.c:1252 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "%s sunucusuna %s olarak giriliyor, parola %s\n" @@ -3991,7 +3991,7 @@ msgid "(no error)" msgstr "(hata yok)" #. @-readonlytrans@ -#. FIX: double indeirection. +#. FIX: double indirection. #. @observer@ #: rpmio/rpmlog.c:114 rpmio/rpmlog.c:115 rpmio/rpmlog.c:116 msgid "fatal error: " @@ -4012,37 +4012,37 @@ msgstr "uyarý: " msgid "memory alloc (%u bytes) returned NULL.\n" msgstr "bellek ayrýlýrken (%u bayt) NULL döndü.\n" -#: rpmio/url.c:103 +#: rpmio/url.c:101 #, c-format msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n" msgstr "uyarý: u %p ctrl %p nrefs != 0 (%s %s)\n" -#: rpmio/url.c:123 +#: rpmio/url.c:121 #, c-format msgid "warning: u %p data %p nrefs != 0 (%s %s)\n" msgstr "uyarý: u %p veri %p nrefs != 0 (%s %s)\n" -#: rpmio/url.c:151 +#: rpmio/url.c:149 #, c-format msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" msgstr "uyarý: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" -#: rpmio/url.c:244 +#: rpmio/url.c:242 #, c-format msgid "Password for %s@%s: " msgstr "%s@%s için parola: " -#: rpmio/url.c:269 rpmio/url.c:295 +#: rpmio/url.c:267 rpmio/url.c:293 #, c-format msgid "error: %sport must be a number\n" msgstr "hata: %sport bir sayý olmalý\n" -#: rpmio/url.c:434 +#: rpmio/url.c:432 msgid "url port must be a number\n" msgstr "url portu bir sayý olmalý\n" #. XXX Fstrerror -#: rpmio/url.c:497 +#: rpmio/url.c:495 #, c-format msgid "failed to create %s: %s\n" msgstr "%s oluţturulamadý: %s\n" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-09-21 11:01-0400\n" +"POT-Creation-Date: 2001-09-24 20:14-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -1055,15 +1055,15 @@ msgstr "" msgid "exec failed\n" msgstr "" -#: rpm.c:1116 rpmqv.c:1103 +#: rpm.c:1116 rpmqv.c:1104 msgid "unexpected arguments to --querytags " msgstr "" -#: rpm.c:1127 rpmqv.c:1112 +#: rpm.c:1127 rpmqv.c:1113 msgid "no packages given for signature check" msgstr "" -#: rpm.c:1138 rpmqv.c:1121 +#: rpm.c:1138 rpmqv.c:1122 msgid "no packages given for signing" msgstr "" @@ -1075,19 +1075,19 @@ msgstr "" msgid "no packages given for install" msgstr "" -#: rpm.c:1267 rpmqv.c:1066 +#: rpm.c:1267 rpmqv.c:1067 msgid "extra arguments given for query of all packages" msgstr "" -#: rpm.c:1272 rpmqv.c:1075 +#: rpm.c:1272 rpmqv.c:1076 msgid "no arguments given for query" msgstr "" -#: rpm.c:1289 rpmqv.c:1091 +#: rpm.c:1289 rpmqv.c:1092 msgid "extra arguments given for verify of all packages" msgstr "" -#: rpm.c:1293 rpmqv.c:1095 +#: rpm.c:1293 rpmqv.c:1096 msgid "no arguments given for verify" msgstr "" @@ -1696,17 +1696,17 @@ msgstr "" msgid "line %d: Error parsing %%description: %s\n" msgstr "" -#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:192 +#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:190 #, c-format msgid "line %d: Bad option %s: %s\n" msgstr "" -#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:204 +#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:202 #, c-format msgid "line %d: Too many names: %s\n" msgstr "" -#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:213 +#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:211 #, c-format msgid "line %d: Package does not exist: %s\n" msgstr "" @@ -1936,22 +1936,22 @@ msgstr "" msgid "line %d: Version required: %s\n" msgstr "" -#: build/parseScript.c:158 +#: build/parseScript.c:156 #, c-format msgid "line %d: triggers must have --: %s\n" msgstr "" -#: build/parseScript.c:168 build/parseScript.c:229 +#: build/parseScript.c:166 build/parseScript.c:227 #, c-format msgid "line %d: Error parsing %s: %s\n" msgstr "" -#: build/parseScript.c:179 +#: build/parseScript.c:177 #, c-format msgid "line %d: script program must begin with '/': %s\n" msgstr "" -#: build/parseScript.c:221 +#: build/parseScript.c:219 #, c-format msgid "line %d: Second %s\n" msgstr "" @@ -1992,11 +1992,11 @@ msgstr "" msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:508 +#: build/parseSpec.c:509 msgid "No compatible architectures found for build\n" msgstr "" -#: build/parseSpec.c:563 +#: build/parseSpec.c:564 #, c-format msgid "Package has no %%description: %s\n" msgstr "" @@ -2070,106 +2070,106 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "YES" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "NO " msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1015 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1131 +#: lib/depends.c:1126 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1222 +#: lib/depends.c:1217 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "" -#: lib/depends.c:1251 +#: lib/depends.c:1246 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1268 +#: lib/depends.c:1263 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "" -#: lib/depends.c:1292 +#: lib/depends.c:1287 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1305 +#: lib/depends.c:1300 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1319 +#: lib/depends.c:1314 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "" -#: lib/depends.c:1335 +#: lib/depends.c:1330 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1356 +#: lib/depends.c:1351 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1428 +#: lib/depends.c:1423 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1507 +#: lib/depends.c:1502 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:1753 +#: lib/depends.c:1748 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1902 +#: lib/depends.c:1897 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1960 +#: lib/depends.c:1955 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2010 +#: lib/depends.c:2005 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2062 +#: lib/depends.c:2057 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2091 +#: lib/depends.c:2086 msgid "========== continuing tsort ...\n" msgstr "" #: lib/formats.c:28 lib/formats.c:54 lib/formats.c:85 lib/formats.c:128 -#: lib/header.c:2621 lib/header.c:2642 lib/header.c:2664 +#: lib/header.c:2623 lib/header.c:2644 lib/header.c:2666 msgid "(not a number)" msgstr "" @@ -2192,7 +2192,7 @@ msgstr "" msgid "getting list of mounted filesystems\n" msgstr "" -#: lib/fs.c:153 rpmio/url.c:477 +#: lib/fs.c:153 rpmio/url.c:475 #, c-format msgid "failed to open %s: %s\n" msgstr "" @@ -2202,46 +2202,46 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:290 +#: lib/fsm.c:288 msgid "========= Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:292 +#: lib/fsm.c:290 #, c-format msgid "%9d %s\n" msgstr "" -#: lib/fsm.c:1130 +#: lib/fsm.c:1124 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1407 +#: lib/fsm.c:1401 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1526 lib/fsm.c:1651 +#: lib/fsm.c:1520 lib/fsm.c:1645 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1677 +#: lib/fsm.c:1671 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1683 +#: lib/fsm.c:1677 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1693 +#: lib/fsm.c:1687 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1712 +#: lib/fsm.c:1706 #, c-format msgid "%s created as %s\n" msgstr "" @@ -2257,77 +2257,77 @@ msgid "Data type %d not supported\n" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1930 +#: lib/header.c:1932 #, c-format msgid "missing { after %" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1960 +#: lib/header.c:1962 msgid "missing } after %{" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1974 +#: lib/header.c:1976 msgid "empty tag format" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1988 +#: lib/header.c:1990 msgid "empty tag name" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2005 +#: lib/header.c:2007 msgid "unknown tag" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2032 +#: lib/header.c:2034 msgid "] expected at end of array" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2050 +#: lib/header.c:2052 msgid "unexpected ]" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2054 +#: lib/header.c:2056 msgid "unexpected }" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2120 +#: lib/header.c:2122 msgid "? expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2129 +#: lib/header.c:2131 msgid "{ expected after ? in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2142 lib/header.c:2184 +#: lib/header.c:2144 lib/header.c:2186 msgid "} expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2152 +#: lib/header.c:2154 msgid ": expected following ? subexpression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2169 +#: lib/header.c:2171 msgid "{ expected after : in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2194 +#: lib/header.c:2196 msgid "| expected at end of expression" msgstr "" -#: lib/header.c:2381 +#: lib/header.c:2383 msgid "(unknown type)" msgstr "" @@ -2905,7 +2905,7 @@ msgid "can't query %s: %s\n" msgstr "" #: lib/query.c:576 lib/query.c:610 lib/rpminstall.c:309 lib/rpminstall.c:453 -#: lib/rpminstall.c:826 +#: lib/rpminstall.c:824 #, c-format msgid "open of %s failed: %s\n" msgstr "" @@ -3042,27 +3042,27 @@ msgstr "" msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:437 +#: lib/rpmchecksig.c:431 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:438 lib/rpmchecksig.c:452 +#: lib/rpmchecksig.c:432 lib/rpmchecksig.c:446 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:440 lib/rpmchecksig.c:454 +#: lib/rpmchecksig.c:434 lib/rpmchecksig.c:448 msgid ") " msgstr "" -#: lib/rpmchecksig.c:441 lib/rpmchecksig.c:455 +#: lib/rpmchecksig.c:435 lib/rpmchecksig.c:449 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:443 lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 lib/rpmchecksig.c:451 msgid ")" msgstr "" -#: lib/rpmchecksig.c:451 +#: lib/rpmchecksig.c:445 msgid "OK" msgstr "" @@ -3111,7 +3111,7 @@ msgstr "" msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:445 lib/rpminstall.c:686 +#: lib/rpminstall.c:445 lib/rpminstall.c:684 #, c-format msgid "%s cannot be installed\n" msgstr "" @@ -3158,7 +3158,7 @@ msgstr "" msgid "Installing %s\n" msgstr "" -#: lib/rpmlead.c:49 +#: lib/rpmlead.c:47 #, c-format msgid "read failed: %s (%d)\n" msgstr "" @@ -3173,88 +3173,88 @@ msgstr "" msgid "missing architecture name at %s:%d\n" msgstr "" -#: lib/rpmrc.c:325 +#: lib/rpmrc.c:328 #, c-format msgid "Incomplete data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:330 +#: lib/rpmrc.c:333 #, c-format msgid "Too many args in data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:338 +#: lib/rpmrc.c:341 #, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "" -#: lib/rpmrc.c:378 +#: lib/rpmrc.c:384 #, c-format msgid "Incomplete default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:383 +#: lib/rpmrc.c:389 #, c-format msgid "Too many args in default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:585 +#: lib/rpmrc.c:591 #, c-format msgid "Cannot expand %s\n" msgstr "" -#: lib/rpmrc.c:590 +#: lib/rpmrc.c:596 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "" -#: lib/rpmrc.c:607 +#: lib/rpmrc.c:613 #, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "" #. XXX Feof(fd) -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:660 #, c-format msgid "Failed to read %s: %s.\n" msgstr "" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:697 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "" -#: lib/rpmrc.c:708 lib/rpmrc.c:782 +#: lib/rpmrc.c:714 lib/rpmrc.c:788 #, c-format msgid "missing argument for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:725 lib/rpmrc.c:747 +#: lib/rpmrc.c:731 lib/rpmrc.c:753 #, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "" -#: lib/rpmrc.c:734 +#: lib/rpmrc.c:740 #, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "" -#: lib/rpmrc.c:774 +#: lib/rpmrc.c:780 #, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:841 +#: lib/rpmrc.c:847 #, c-format msgid "bad option '%s' at %s:%d\n" msgstr "" -#: lib/rpmrc.c:1436 +#: lib/rpmrc.c:1442 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1437 +#: lib/rpmrc.c:1443 msgid "Please contact rpm-list@redhat.com\n" msgstr "" @@ -3284,141 +3284,141 @@ msgstr "" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:230 +#: lib/signature.c:228 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:290 +#: lib/signature.c:288 #, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "" -#: lib/signature.c:303 +#: lib/signature.c:301 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:310 +#: lib/signature.c:308 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:315 +#: lib/signature.c:313 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:328 lib/signature.c:410 +#: lib/signature.c:326 lib/signature.c:408 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:333 +#: lib/signature.c:331 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:372 lib/signature.c:760 +#: lib/signature.c:370 lib/signature.c:758 msgid "Couldn't exec gpg\n" msgstr "" -#: lib/signature.c:385 +#: lib/signature.c:383 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:392 +#: lib/signature.c:390 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:397 +#: lib/signature.c:395 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:415 +#: lib/signature.c:413 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:443 +#: lib/signature.c:441 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:449 +#: lib/signature.c:447 msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:532 lib/signature.c:607 +#: lib/signature.c:530 lib/signature.c:605 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" -#: lib/signature.c:697 +#: lib/signature.c:695 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" -#: lib/signature.c:789 +#: lib/signature.c:787 msgid "Couldn't exec pgp\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:793 lib/signature.c:846 +#: lib/signature.c:791 lib/signature.c:844 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:826 +#: lib/signature.c:824 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:838 +#: lib/signature.c:836 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/transaction.c:446 +#: lib/transaction.c:447 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:450 +#: lib/transaction.c:451 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/transaction.c:453 +#: lib/transaction.c:454 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/transaction.c:523 +#: lib/transaction.c:524 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/transaction.c:586 +#: lib/transaction.c:587 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/transaction.c:596 +#: lib/transaction.c:597 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:674 +#: lib/transaction.c:675 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:808 +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1406 +#: lib/transaction.c:1407 #, c-format msgid "excluding directory %s\n" msgstr "" @@ -3613,125 +3613,125 @@ msgstr "" msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:842 +#: rpmdb/rpmdb.c:846 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:973 +#: rpmdb/rpmdb.c:977 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1206 +#: rpmdb/rpmdb.c:1210 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:1940 rpmdb/rpmdb.c:3122 +#: rpmdb/rpmdb.c:1944 rpmdb/rpmdb.c:3126 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:1991 +#: rpmdb/rpmdb.c:1995 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2256 +#: rpmdb/rpmdb.c:2260 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2325 +#: rpmdb/rpmdb.c:2329 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2334 +#: rpmdb/rpmdb.c:2338 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2529 +#: rpmdb/rpmdb.c:2533 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2607 +#: rpmdb/rpmdb.c:2611 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2618 +#: rpmdb/rpmdb.c:2622 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3011 +#: rpmdb/rpmdb.c:3015 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3041 +#: rpmdb/rpmdb.c:3045 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3068 +#: rpmdb/rpmdb.c:3072 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3072 +#: rpmdb/rpmdb.c:3076 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3078 +#: rpmdb/rpmdb.c:3082 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3080 +#: rpmdb/rpmdb.c:3084 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3087 +#: rpmdb/rpmdb.c:3091 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3098 +#: rpmdb/rpmdb.c:3102 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3162 +#: rpmdb/rpmdb.c:3166 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3180 +#: rpmdb/rpmdb.c:3184 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3188 +#: rpmdb/rpmdb.c:3192 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3190 +#: rpmdb/rpmdb.c:3194 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3200 +#: rpmdb/rpmdb.c:3204 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3202 +#: rpmdb/rpmdb.c:3206 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" @@ -3827,59 +3827,59 @@ msgstr "" msgid "File %s is smaller than %u bytes\n" msgstr "" -#: rpmio/rpmio.c:599 +#: rpmio/rpmio.c:588 msgid "Success" msgstr "" -#: rpmio/rpmio.c:602 +#: rpmio/rpmio.c:591 msgid "Bad server response" msgstr "" -#: rpmio/rpmio.c:605 +#: rpmio/rpmio.c:594 msgid "Server I/O error" msgstr "" -#: rpmio/rpmio.c:608 +#: rpmio/rpmio.c:597 msgid "Server timeout" msgstr "" -#: rpmio/rpmio.c:611 +#: rpmio/rpmio.c:600 msgid "Unable to lookup server host address" msgstr "" -#: rpmio/rpmio.c:614 +#: rpmio/rpmio.c:603 msgid "Unable to lookup server host name" msgstr "" -#: rpmio/rpmio.c:617 +#: rpmio/rpmio.c:606 msgid "Failed to connect to server" msgstr "" -#: rpmio/rpmio.c:620 +#: rpmio/rpmio.c:609 msgid "Failed to establish data connection to server" msgstr "" -#: rpmio/rpmio.c:623 +#: rpmio/rpmio.c:612 msgid "I/O error to local file" msgstr "" -#: rpmio/rpmio.c:626 +#: rpmio/rpmio.c:615 msgid "Error setting remote server to passive mode" msgstr "" -#: rpmio/rpmio.c:629 +#: rpmio/rpmio.c:618 msgid "File not found on server" msgstr "" -#: rpmio/rpmio.c:632 +#: rpmio/rpmio.c:621 msgid "Abort in progress" msgstr "" -#: rpmio/rpmio.c:636 +#: rpmio/rpmio.c:625 msgid "Unknown or unexpected error" msgstr "" -#: rpmio/rpmio.c:1259 +#: rpmio/rpmio.c:1252 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" @@ -3889,7 +3889,7 @@ msgid "(no error)" msgstr "" #. @-readonlytrans@ -#. FIX: double indeirection. +#. FIX: double indirection. #. @observer@ #: rpmio/rpmlog.c:114 rpmio/rpmlog.c:115 rpmio/rpmlog.c:116 msgid "fatal error: " @@ -3910,37 +3910,37 @@ msgstr "" msgid "memory alloc (%u bytes) returned NULL.\n" msgstr "" -#: rpmio/url.c:103 +#: rpmio/url.c:101 #, c-format msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:123 +#: rpmio/url.c:121 #, c-format msgid "warning: u %p data %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:151 +#: rpmio/url.c:149 #, c-format msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" msgstr "" -#: rpmio/url.c:244 +#: rpmio/url.c:242 #, c-format msgid "Password for %s@%s: " msgstr "" -#: rpmio/url.c:269 rpmio/url.c:295 +#: rpmio/url.c:267 rpmio/url.c:293 #, c-format msgid "error: %sport must be a number\n" msgstr "" -#: rpmio/url.c:434 +#: rpmio/url.c:432 msgid "url port must be a number\n" msgstr "" #. XXX Fstrerror -#: rpmio/url.c:497 +#: rpmio/url.c:495 #, c-format msgid "failed to create %s: %s\n" msgstr "" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-09-21 11:01-0400\n" +"POT-Creation-Date: 2001-09-24 20:14-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -1055,15 +1055,15 @@ msgstr "" msgid "exec failed\n" msgstr "" -#: rpm.c:1116 rpmqv.c:1103 +#: rpm.c:1116 rpmqv.c:1104 msgid "unexpected arguments to --querytags " msgstr "" -#: rpm.c:1127 rpmqv.c:1112 +#: rpm.c:1127 rpmqv.c:1113 msgid "no packages given for signature check" msgstr "" -#: rpm.c:1138 rpmqv.c:1121 +#: rpm.c:1138 rpmqv.c:1122 msgid "no packages given for signing" msgstr "" @@ -1075,19 +1075,19 @@ msgstr "" msgid "no packages given for install" msgstr "" -#: rpm.c:1267 rpmqv.c:1066 +#: rpm.c:1267 rpmqv.c:1067 msgid "extra arguments given for query of all packages" msgstr "" -#: rpm.c:1272 rpmqv.c:1075 +#: rpm.c:1272 rpmqv.c:1076 msgid "no arguments given for query" msgstr "" -#: rpm.c:1289 rpmqv.c:1091 +#: rpm.c:1289 rpmqv.c:1092 msgid "extra arguments given for verify of all packages" msgstr "" -#: rpm.c:1293 rpmqv.c:1095 +#: rpm.c:1293 rpmqv.c:1096 msgid "no arguments given for verify" msgstr "" @@ -1696,17 +1696,17 @@ msgstr "" msgid "line %d: Error parsing %%description: %s\n" msgstr "" -#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:192 +#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:190 #, c-format msgid "line %d: Bad option %s: %s\n" msgstr "" -#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:204 +#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:202 #, c-format msgid "line %d: Too many names: %s\n" msgstr "" -#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:213 +#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:211 #, c-format msgid "line %d: Package does not exist: %s\n" msgstr "" @@ -1936,22 +1936,22 @@ msgstr "" msgid "line %d: Version required: %s\n" msgstr "" -#: build/parseScript.c:158 +#: build/parseScript.c:156 #, c-format msgid "line %d: triggers must have --: %s\n" msgstr "" -#: build/parseScript.c:168 build/parseScript.c:229 +#: build/parseScript.c:166 build/parseScript.c:227 #, c-format msgid "line %d: Error parsing %s: %s\n" msgstr "" -#: build/parseScript.c:179 +#: build/parseScript.c:177 #, c-format msgid "line %d: script program must begin with '/': %s\n" msgstr "" -#: build/parseScript.c:221 +#: build/parseScript.c:219 #, c-format msgid "line %d: Second %s\n" msgstr "" @@ -1992,11 +1992,11 @@ msgstr "" msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:508 +#: build/parseSpec.c:509 msgid "No compatible architectures found for build\n" msgstr "" -#: build/parseSpec.c:563 +#: build/parseSpec.c:564 #, c-format msgid "Package has no %%description: %s\n" msgstr "" @@ -2070,106 +2070,106 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "YES" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "NO " msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1015 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1131 +#: lib/depends.c:1126 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1222 +#: lib/depends.c:1217 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "" -#: lib/depends.c:1251 +#: lib/depends.c:1246 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1268 +#: lib/depends.c:1263 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "" -#: lib/depends.c:1292 +#: lib/depends.c:1287 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1305 +#: lib/depends.c:1300 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1319 +#: lib/depends.c:1314 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "" -#: lib/depends.c:1335 +#: lib/depends.c:1330 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1356 +#: lib/depends.c:1351 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1428 +#: lib/depends.c:1423 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1507 +#: lib/depends.c:1502 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:1753 +#: lib/depends.c:1748 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1902 +#: lib/depends.c:1897 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1960 +#: lib/depends.c:1955 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2010 +#: lib/depends.c:2005 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2062 +#: lib/depends.c:2057 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2091 +#: lib/depends.c:2086 msgid "========== continuing tsort ...\n" msgstr "" #: lib/formats.c:28 lib/formats.c:54 lib/formats.c:85 lib/formats.c:128 -#: lib/header.c:2621 lib/header.c:2642 lib/header.c:2664 +#: lib/header.c:2623 lib/header.c:2644 lib/header.c:2666 msgid "(not a number)" msgstr "" @@ -2192,7 +2192,7 @@ msgstr "" msgid "getting list of mounted filesystems\n" msgstr "" -#: lib/fs.c:153 rpmio/url.c:477 +#: lib/fs.c:153 rpmio/url.c:475 #, c-format msgid "failed to open %s: %s\n" msgstr "" @@ -2202,46 +2202,46 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:290 +#: lib/fsm.c:288 msgid "========= Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:292 +#: lib/fsm.c:290 #, c-format msgid "%9d %s\n" msgstr "" -#: lib/fsm.c:1130 +#: lib/fsm.c:1124 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1407 +#: lib/fsm.c:1401 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1526 lib/fsm.c:1651 +#: lib/fsm.c:1520 lib/fsm.c:1645 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1677 +#: lib/fsm.c:1671 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1683 +#: lib/fsm.c:1677 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1693 +#: lib/fsm.c:1687 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1712 +#: lib/fsm.c:1706 #, c-format msgid "%s created as %s\n" msgstr "" @@ -2257,77 +2257,77 @@ msgid "Data type %d not supported\n" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1930 +#: lib/header.c:1932 #, c-format msgid "missing { after %" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1960 +#: lib/header.c:1962 msgid "missing } after %{" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1974 +#: lib/header.c:1976 msgid "empty tag format" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1988 +#: lib/header.c:1990 msgid "empty tag name" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2005 +#: lib/header.c:2007 msgid "unknown tag" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2032 +#: lib/header.c:2034 msgid "] expected at end of array" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2050 +#: lib/header.c:2052 msgid "unexpected ]" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2054 +#: lib/header.c:2056 msgid "unexpected }" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2120 +#: lib/header.c:2122 msgid "? expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2129 +#: lib/header.c:2131 msgid "{ expected after ? in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2142 lib/header.c:2184 +#: lib/header.c:2144 lib/header.c:2186 msgid "} expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2152 +#: lib/header.c:2154 msgid ": expected following ? subexpression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2169 +#: lib/header.c:2171 msgid "{ expected after : in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2194 +#: lib/header.c:2196 msgid "| expected at end of expression" msgstr "" -#: lib/header.c:2381 +#: lib/header.c:2383 msgid "(unknown type)" msgstr "" @@ -2905,7 +2905,7 @@ msgid "can't query %s: %s\n" msgstr "" #: lib/query.c:576 lib/query.c:610 lib/rpminstall.c:309 lib/rpminstall.c:453 -#: lib/rpminstall.c:826 +#: lib/rpminstall.c:824 #, c-format msgid "open of %s failed: %s\n" msgstr "" @@ -3042,27 +3042,27 @@ msgstr "" msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:437 +#: lib/rpmchecksig.c:431 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:438 lib/rpmchecksig.c:452 +#: lib/rpmchecksig.c:432 lib/rpmchecksig.c:446 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:440 lib/rpmchecksig.c:454 +#: lib/rpmchecksig.c:434 lib/rpmchecksig.c:448 msgid ") " msgstr "" -#: lib/rpmchecksig.c:441 lib/rpmchecksig.c:455 +#: lib/rpmchecksig.c:435 lib/rpmchecksig.c:449 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:443 lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 lib/rpmchecksig.c:451 msgid ")" msgstr "" -#: lib/rpmchecksig.c:451 +#: lib/rpmchecksig.c:445 msgid "OK" msgstr "" @@ -3111,7 +3111,7 @@ msgstr "" msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:445 lib/rpminstall.c:686 +#: lib/rpminstall.c:445 lib/rpminstall.c:684 #, c-format msgid "%s cannot be installed\n" msgstr "" @@ -3158,7 +3158,7 @@ msgstr "" msgid "Installing %s\n" msgstr "" -#: lib/rpmlead.c:49 +#: lib/rpmlead.c:47 #, c-format msgid "read failed: %s (%d)\n" msgstr "" @@ -3173,88 +3173,88 @@ msgstr "" msgid "missing architecture name at %s:%d\n" msgstr "" -#: lib/rpmrc.c:325 +#: lib/rpmrc.c:328 #, c-format msgid "Incomplete data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:330 +#: lib/rpmrc.c:333 #, c-format msgid "Too many args in data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:338 +#: lib/rpmrc.c:341 #, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "" -#: lib/rpmrc.c:378 +#: lib/rpmrc.c:384 #, c-format msgid "Incomplete default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:383 +#: lib/rpmrc.c:389 #, c-format msgid "Too many args in default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:585 +#: lib/rpmrc.c:591 #, c-format msgid "Cannot expand %s\n" msgstr "" -#: lib/rpmrc.c:590 +#: lib/rpmrc.c:596 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "" -#: lib/rpmrc.c:607 +#: lib/rpmrc.c:613 #, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "" #. XXX Feof(fd) -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:660 #, c-format msgid "Failed to read %s: %s.\n" msgstr "" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:697 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "" -#: lib/rpmrc.c:708 lib/rpmrc.c:782 +#: lib/rpmrc.c:714 lib/rpmrc.c:788 #, c-format msgid "missing argument for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:725 lib/rpmrc.c:747 +#: lib/rpmrc.c:731 lib/rpmrc.c:753 #, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "" -#: lib/rpmrc.c:734 +#: lib/rpmrc.c:740 #, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "" -#: lib/rpmrc.c:774 +#: lib/rpmrc.c:780 #, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:841 +#: lib/rpmrc.c:847 #, c-format msgid "bad option '%s' at %s:%d\n" msgstr "" -#: lib/rpmrc.c:1436 +#: lib/rpmrc.c:1442 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1437 +#: lib/rpmrc.c:1443 msgid "Please contact rpm-list@redhat.com\n" msgstr "" @@ -3284,141 +3284,141 @@ msgstr "" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:230 +#: lib/signature.c:228 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:290 +#: lib/signature.c:288 #, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "" -#: lib/signature.c:303 +#: lib/signature.c:301 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:310 +#: lib/signature.c:308 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:315 +#: lib/signature.c:313 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:328 lib/signature.c:410 +#: lib/signature.c:326 lib/signature.c:408 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:333 +#: lib/signature.c:331 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:372 lib/signature.c:760 +#: lib/signature.c:370 lib/signature.c:758 msgid "Couldn't exec gpg\n" msgstr "" -#: lib/signature.c:385 +#: lib/signature.c:383 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:392 +#: lib/signature.c:390 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:397 +#: lib/signature.c:395 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:415 +#: lib/signature.c:413 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:443 +#: lib/signature.c:441 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:449 +#: lib/signature.c:447 msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:532 lib/signature.c:607 +#: lib/signature.c:530 lib/signature.c:605 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" -#: lib/signature.c:697 +#: lib/signature.c:695 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" -#: lib/signature.c:789 +#: lib/signature.c:787 msgid "Couldn't exec pgp\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:793 lib/signature.c:846 +#: lib/signature.c:791 lib/signature.c:844 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:826 +#: lib/signature.c:824 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:838 +#: lib/signature.c:836 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/transaction.c:446 +#: lib/transaction.c:447 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:450 +#: lib/transaction.c:451 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/transaction.c:453 +#: lib/transaction.c:454 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/transaction.c:523 +#: lib/transaction.c:524 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/transaction.c:586 +#: lib/transaction.c:587 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/transaction.c:596 +#: lib/transaction.c:597 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:674 +#: lib/transaction.c:675 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:808 +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1406 +#: lib/transaction.c:1407 #, c-format msgid "excluding directory %s\n" msgstr "" @@ -3613,125 +3613,125 @@ msgstr "" msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:842 +#: rpmdb/rpmdb.c:846 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:973 +#: rpmdb/rpmdb.c:977 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1206 +#: rpmdb/rpmdb.c:1210 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:1940 rpmdb/rpmdb.c:3122 +#: rpmdb/rpmdb.c:1944 rpmdb/rpmdb.c:3126 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:1991 +#: rpmdb/rpmdb.c:1995 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2256 +#: rpmdb/rpmdb.c:2260 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2325 +#: rpmdb/rpmdb.c:2329 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2334 +#: rpmdb/rpmdb.c:2338 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2529 +#: rpmdb/rpmdb.c:2533 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2607 +#: rpmdb/rpmdb.c:2611 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2618 +#: rpmdb/rpmdb.c:2622 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3011 +#: rpmdb/rpmdb.c:3015 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3041 +#: rpmdb/rpmdb.c:3045 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3068 +#: rpmdb/rpmdb.c:3072 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3072 +#: rpmdb/rpmdb.c:3076 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3078 +#: rpmdb/rpmdb.c:3082 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3080 +#: rpmdb/rpmdb.c:3084 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3087 +#: rpmdb/rpmdb.c:3091 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3098 +#: rpmdb/rpmdb.c:3102 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3162 +#: rpmdb/rpmdb.c:3166 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3180 +#: rpmdb/rpmdb.c:3184 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3188 +#: rpmdb/rpmdb.c:3192 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3190 +#: rpmdb/rpmdb.c:3194 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3200 +#: rpmdb/rpmdb.c:3204 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3202 +#: rpmdb/rpmdb.c:3206 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" @@ -3827,59 +3827,59 @@ msgstr "" msgid "File %s is smaller than %u bytes\n" msgstr "" -#: rpmio/rpmio.c:599 +#: rpmio/rpmio.c:588 msgid "Success" msgstr "" -#: rpmio/rpmio.c:602 +#: rpmio/rpmio.c:591 msgid "Bad server response" msgstr "" -#: rpmio/rpmio.c:605 +#: rpmio/rpmio.c:594 msgid "Server I/O error" msgstr "" -#: rpmio/rpmio.c:608 +#: rpmio/rpmio.c:597 msgid "Server timeout" msgstr "" -#: rpmio/rpmio.c:611 +#: rpmio/rpmio.c:600 msgid "Unable to lookup server host address" msgstr "" -#: rpmio/rpmio.c:614 +#: rpmio/rpmio.c:603 msgid "Unable to lookup server host name" msgstr "" -#: rpmio/rpmio.c:617 +#: rpmio/rpmio.c:606 msgid "Failed to connect to server" msgstr "" -#: rpmio/rpmio.c:620 +#: rpmio/rpmio.c:609 msgid "Failed to establish data connection to server" msgstr "" -#: rpmio/rpmio.c:623 +#: rpmio/rpmio.c:612 msgid "I/O error to local file" msgstr "" -#: rpmio/rpmio.c:626 +#: rpmio/rpmio.c:615 msgid "Error setting remote server to passive mode" msgstr "" -#: rpmio/rpmio.c:629 +#: rpmio/rpmio.c:618 msgid "File not found on server" msgstr "" -#: rpmio/rpmio.c:632 +#: rpmio/rpmio.c:621 msgid "Abort in progress" msgstr "" -#: rpmio/rpmio.c:636 +#: rpmio/rpmio.c:625 msgid "Unknown or unexpected error" msgstr "" -#: rpmio/rpmio.c:1259 +#: rpmio/rpmio.c:1252 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" @@ -3889,7 +3889,7 @@ msgid "(no error)" msgstr "" #. @-readonlytrans@ -#. FIX: double indeirection. +#. FIX: double indirection. #. @observer@ #: rpmio/rpmlog.c:114 rpmio/rpmlog.c:115 rpmio/rpmlog.c:116 msgid "fatal error: " @@ -3910,37 +3910,37 @@ msgstr "" msgid "memory alloc (%u bytes) returned NULL.\n" msgstr "" -#: rpmio/url.c:103 +#: rpmio/url.c:101 #, c-format msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:123 +#: rpmio/url.c:121 #, c-format msgid "warning: u %p data %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:151 +#: rpmio/url.c:149 #, c-format msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" msgstr "" -#: rpmio/url.c:244 +#: rpmio/url.c:242 #, c-format msgid "Password for %s@%s: " msgstr "" -#: rpmio/url.c:269 rpmio/url.c:295 +#: rpmio/url.c:267 rpmio/url.c:293 #, c-format msgid "error: %sport must be a number\n" msgstr "" -#: rpmio/url.c:434 +#: rpmio/url.c:432 msgid "url port must be a number\n" msgstr "" #. XXX Fstrerror -#: rpmio/url.c:497 +#: rpmio/url.c:495 #, c-format msgid "failed to create %s: %s\n" msgstr "" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-09-21 11:01-0400\n" +"POT-Creation-Date: 2001-09-24 20:14-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -1055,15 +1055,15 @@ msgstr "" msgid "exec failed\n" msgstr "" -#: rpm.c:1116 rpmqv.c:1103 +#: rpm.c:1116 rpmqv.c:1104 msgid "unexpected arguments to --querytags " msgstr "" -#: rpm.c:1127 rpmqv.c:1112 +#: rpm.c:1127 rpmqv.c:1113 msgid "no packages given for signature check" msgstr "" -#: rpm.c:1138 rpmqv.c:1121 +#: rpm.c:1138 rpmqv.c:1122 msgid "no packages given for signing" msgstr "" @@ -1075,19 +1075,19 @@ msgstr "" msgid "no packages given for install" msgstr "" -#: rpm.c:1267 rpmqv.c:1066 +#: rpm.c:1267 rpmqv.c:1067 msgid "extra arguments given for query of all packages" msgstr "" -#: rpm.c:1272 rpmqv.c:1075 +#: rpm.c:1272 rpmqv.c:1076 msgid "no arguments given for query" msgstr "" -#: rpm.c:1289 rpmqv.c:1091 +#: rpm.c:1289 rpmqv.c:1092 msgid "extra arguments given for verify of all packages" msgstr "" -#: rpm.c:1293 rpmqv.c:1095 +#: rpm.c:1293 rpmqv.c:1096 msgid "no arguments given for verify" msgstr "" @@ -1696,17 +1696,17 @@ msgstr "" msgid "line %d: Error parsing %%description: %s\n" msgstr "" -#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:192 +#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:190 #, c-format msgid "line %d: Bad option %s: %s\n" msgstr "" -#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:204 +#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:202 #, c-format msgid "line %d: Too many names: %s\n" msgstr "" -#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:213 +#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:211 #, c-format msgid "line %d: Package does not exist: %s\n" msgstr "" @@ -1936,22 +1936,22 @@ msgstr "" msgid "line %d: Version required: %s\n" msgstr "" -#: build/parseScript.c:158 +#: build/parseScript.c:156 #, c-format msgid "line %d: triggers must have --: %s\n" msgstr "" -#: build/parseScript.c:168 build/parseScript.c:229 +#: build/parseScript.c:166 build/parseScript.c:227 #, c-format msgid "line %d: Error parsing %s: %s\n" msgstr "" -#: build/parseScript.c:179 +#: build/parseScript.c:177 #, c-format msgid "line %d: script program must begin with '/': %s\n" msgstr "" -#: build/parseScript.c:221 +#: build/parseScript.c:219 #, c-format msgid "line %d: Second %s\n" msgstr "" @@ -1992,11 +1992,11 @@ msgstr "" msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:508 +#: build/parseSpec.c:509 msgid "No compatible architectures found for build\n" msgstr "" -#: build/parseSpec.c:563 +#: build/parseSpec.c:564 #, c-format msgid "Package has no %%description: %s\n" msgstr "" @@ -2070,106 +2070,106 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "YES" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "NO " msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1015 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1131 +#: lib/depends.c:1126 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1222 +#: lib/depends.c:1217 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "" -#: lib/depends.c:1251 +#: lib/depends.c:1246 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1268 +#: lib/depends.c:1263 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "" -#: lib/depends.c:1292 +#: lib/depends.c:1287 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1305 +#: lib/depends.c:1300 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1319 +#: lib/depends.c:1314 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "" -#: lib/depends.c:1335 +#: lib/depends.c:1330 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1356 +#: lib/depends.c:1351 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1428 +#: lib/depends.c:1423 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1507 +#: lib/depends.c:1502 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:1753 +#: lib/depends.c:1748 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1902 +#: lib/depends.c:1897 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1960 +#: lib/depends.c:1955 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2010 +#: lib/depends.c:2005 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2062 +#: lib/depends.c:2057 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2091 +#: lib/depends.c:2086 msgid "========== continuing tsort ...\n" msgstr "" #: lib/formats.c:28 lib/formats.c:54 lib/formats.c:85 lib/formats.c:128 -#: lib/header.c:2621 lib/header.c:2642 lib/header.c:2664 +#: lib/header.c:2623 lib/header.c:2644 lib/header.c:2666 msgid "(not a number)" msgstr "" @@ -2192,7 +2192,7 @@ msgstr "" msgid "getting list of mounted filesystems\n" msgstr "" -#: lib/fs.c:153 rpmio/url.c:477 +#: lib/fs.c:153 rpmio/url.c:475 #, c-format msgid "failed to open %s: %s\n" msgstr "" @@ -2202,46 +2202,46 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:290 +#: lib/fsm.c:288 msgid "========= Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:292 +#: lib/fsm.c:290 #, c-format msgid "%9d %s\n" msgstr "" -#: lib/fsm.c:1130 +#: lib/fsm.c:1124 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1407 +#: lib/fsm.c:1401 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1526 lib/fsm.c:1651 +#: lib/fsm.c:1520 lib/fsm.c:1645 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1677 +#: lib/fsm.c:1671 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1683 +#: lib/fsm.c:1677 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1693 +#: lib/fsm.c:1687 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1712 +#: lib/fsm.c:1706 #, c-format msgid "%s created as %s\n" msgstr "" @@ -2257,77 +2257,77 @@ msgid "Data type %d not supported\n" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1930 +#: lib/header.c:1932 #, c-format msgid "missing { after %" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1960 +#: lib/header.c:1962 msgid "missing } after %{" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1974 +#: lib/header.c:1976 msgid "empty tag format" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1988 +#: lib/header.c:1990 msgid "empty tag name" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2005 +#: lib/header.c:2007 msgid "unknown tag" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2032 +#: lib/header.c:2034 msgid "] expected at end of array" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2050 +#: lib/header.c:2052 msgid "unexpected ]" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2054 +#: lib/header.c:2056 msgid "unexpected }" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2120 +#: lib/header.c:2122 msgid "? expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2129 +#: lib/header.c:2131 msgid "{ expected after ? in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2142 lib/header.c:2184 +#: lib/header.c:2144 lib/header.c:2186 msgid "} expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2152 +#: lib/header.c:2154 msgid ": expected following ? subexpression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2169 +#: lib/header.c:2171 msgid "{ expected after : in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2194 +#: lib/header.c:2196 msgid "| expected at end of expression" msgstr "" -#: lib/header.c:2381 +#: lib/header.c:2383 msgid "(unknown type)" msgstr "" @@ -2905,7 +2905,7 @@ msgid "can't query %s: %s\n" msgstr "" #: lib/query.c:576 lib/query.c:610 lib/rpminstall.c:309 lib/rpminstall.c:453 -#: lib/rpminstall.c:826 +#: lib/rpminstall.c:824 #, c-format msgid "open of %s failed: %s\n" msgstr "" @@ -3042,27 +3042,27 @@ msgstr "" msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:437 +#: lib/rpmchecksig.c:431 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:438 lib/rpmchecksig.c:452 +#: lib/rpmchecksig.c:432 lib/rpmchecksig.c:446 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:440 lib/rpmchecksig.c:454 +#: lib/rpmchecksig.c:434 lib/rpmchecksig.c:448 msgid ") " msgstr "" -#: lib/rpmchecksig.c:441 lib/rpmchecksig.c:455 +#: lib/rpmchecksig.c:435 lib/rpmchecksig.c:449 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:443 lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 lib/rpmchecksig.c:451 msgid ")" msgstr "" -#: lib/rpmchecksig.c:451 +#: lib/rpmchecksig.c:445 msgid "OK" msgstr "" @@ -3111,7 +3111,7 @@ msgstr "" msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:445 lib/rpminstall.c:686 +#: lib/rpminstall.c:445 lib/rpminstall.c:684 #, c-format msgid "%s cannot be installed\n" msgstr "" @@ -3158,7 +3158,7 @@ msgstr "" msgid "Installing %s\n" msgstr "" -#: lib/rpmlead.c:49 +#: lib/rpmlead.c:47 #, c-format msgid "read failed: %s (%d)\n" msgstr "" @@ -3173,88 +3173,88 @@ msgstr "" msgid "missing architecture name at %s:%d\n" msgstr "" -#: lib/rpmrc.c:325 +#: lib/rpmrc.c:328 #, c-format msgid "Incomplete data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:330 +#: lib/rpmrc.c:333 #, c-format msgid "Too many args in data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:338 +#: lib/rpmrc.c:341 #, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "" -#: lib/rpmrc.c:378 +#: lib/rpmrc.c:384 #, c-format msgid "Incomplete default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:383 +#: lib/rpmrc.c:389 #, c-format msgid "Too many args in default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:585 +#: lib/rpmrc.c:591 #, c-format msgid "Cannot expand %s\n" msgstr "" -#: lib/rpmrc.c:590 +#: lib/rpmrc.c:596 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "" -#: lib/rpmrc.c:607 +#: lib/rpmrc.c:613 #, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "" #. XXX Feof(fd) -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:660 #, c-format msgid "Failed to read %s: %s.\n" msgstr "" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:697 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "" -#: lib/rpmrc.c:708 lib/rpmrc.c:782 +#: lib/rpmrc.c:714 lib/rpmrc.c:788 #, c-format msgid "missing argument for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:725 lib/rpmrc.c:747 +#: lib/rpmrc.c:731 lib/rpmrc.c:753 #, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "" -#: lib/rpmrc.c:734 +#: lib/rpmrc.c:740 #, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "" -#: lib/rpmrc.c:774 +#: lib/rpmrc.c:780 #, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:841 +#: lib/rpmrc.c:847 #, c-format msgid "bad option '%s' at %s:%d\n" msgstr "" -#: lib/rpmrc.c:1436 +#: lib/rpmrc.c:1442 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1437 +#: lib/rpmrc.c:1443 msgid "Please contact rpm-list@redhat.com\n" msgstr "" @@ -3284,141 +3284,141 @@ msgstr "" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:230 +#: lib/signature.c:228 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:290 +#: lib/signature.c:288 #, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "" -#: lib/signature.c:303 +#: lib/signature.c:301 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:310 +#: lib/signature.c:308 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:315 +#: lib/signature.c:313 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:328 lib/signature.c:410 +#: lib/signature.c:326 lib/signature.c:408 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:333 +#: lib/signature.c:331 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:372 lib/signature.c:760 +#: lib/signature.c:370 lib/signature.c:758 msgid "Couldn't exec gpg\n" msgstr "" -#: lib/signature.c:385 +#: lib/signature.c:383 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:392 +#: lib/signature.c:390 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:397 +#: lib/signature.c:395 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:415 +#: lib/signature.c:413 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:443 +#: lib/signature.c:441 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:449 +#: lib/signature.c:447 msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:532 lib/signature.c:607 +#: lib/signature.c:530 lib/signature.c:605 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" -#: lib/signature.c:697 +#: lib/signature.c:695 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" -#: lib/signature.c:789 +#: lib/signature.c:787 msgid "Couldn't exec pgp\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:793 lib/signature.c:846 +#: lib/signature.c:791 lib/signature.c:844 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:826 +#: lib/signature.c:824 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:838 +#: lib/signature.c:836 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/transaction.c:446 +#: lib/transaction.c:447 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:450 +#: lib/transaction.c:451 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/transaction.c:453 +#: lib/transaction.c:454 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/transaction.c:523 +#: lib/transaction.c:524 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/transaction.c:586 +#: lib/transaction.c:587 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/transaction.c:596 +#: lib/transaction.c:597 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:674 +#: lib/transaction.c:675 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:808 +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1406 +#: lib/transaction.c:1407 #, c-format msgid "excluding directory %s\n" msgstr "" @@ -3613,125 +3613,125 @@ msgstr "" msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:842 +#: rpmdb/rpmdb.c:846 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:973 +#: rpmdb/rpmdb.c:977 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1206 +#: rpmdb/rpmdb.c:1210 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:1940 rpmdb/rpmdb.c:3122 +#: rpmdb/rpmdb.c:1944 rpmdb/rpmdb.c:3126 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:1991 +#: rpmdb/rpmdb.c:1995 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2256 +#: rpmdb/rpmdb.c:2260 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2325 +#: rpmdb/rpmdb.c:2329 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2334 +#: rpmdb/rpmdb.c:2338 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2529 +#: rpmdb/rpmdb.c:2533 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2607 +#: rpmdb/rpmdb.c:2611 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2618 +#: rpmdb/rpmdb.c:2622 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3011 +#: rpmdb/rpmdb.c:3015 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3041 +#: rpmdb/rpmdb.c:3045 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3068 +#: rpmdb/rpmdb.c:3072 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3072 +#: rpmdb/rpmdb.c:3076 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3078 +#: rpmdb/rpmdb.c:3082 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3080 +#: rpmdb/rpmdb.c:3084 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3087 +#: rpmdb/rpmdb.c:3091 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3098 +#: rpmdb/rpmdb.c:3102 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3162 +#: rpmdb/rpmdb.c:3166 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3180 +#: rpmdb/rpmdb.c:3184 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3188 +#: rpmdb/rpmdb.c:3192 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3190 +#: rpmdb/rpmdb.c:3194 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3200 +#: rpmdb/rpmdb.c:3204 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3202 +#: rpmdb/rpmdb.c:3206 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" @@ -3827,59 +3827,59 @@ msgstr "" msgid "File %s is smaller than %u bytes\n" msgstr "" -#: rpmio/rpmio.c:599 +#: rpmio/rpmio.c:588 msgid "Success" msgstr "" -#: rpmio/rpmio.c:602 +#: rpmio/rpmio.c:591 msgid "Bad server response" msgstr "" -#: rpmio/rpmio.c:605 +#: rpmio/rpmio.c:594 msgid "Server I/O error" msgstr "" -#: rpmio/rpmio.c:608 +#: rpmio/rpmio.c:597 msgid "Server timeout" msgstr "" -#: rpmio/rpmio.c:611 +#: rpmio/rpmio.c:600 msgid "Unable to lookup server host address" msgstr "" -#: rpmio/rpmio.c:614 +#: rpmio/rpmio.c:603 msgid "Unable to lookup server host name" msgstr "" -#: rpmio/rpmio.c:617 +#: rpmio/rpmio.c:606 msgid "Failed to connect to server" msgstr "" -#: rpmio/rpmio.c:620 +#: rpmio/rpmio.c:609 msgid "Failed to establish data connection to server" msgstr "" -#: rpmio/rpmio.c:623 +#: rpmio/rpmio.c:612 msgid "I/O error to local file" msgstr "" -#: rpmio/rpmio.c:626 +#: rpmio/rpmio.c:615 msgid "Error setting remote server to passive mode" msgstr "" -#: rpmio/rpmio.c:629 +#: rpmio/rpmio.c:618 msgid "File not found on server" msgstr "" -#: rpmio/rpmio.c:632 +#: rpmio/rpmio.c:621 msgid "Abort in progress" msgstr "" -#: rpmio/rpmio.c:636 +#: rpmio/rpmio.c:625 msgid "Unknown or unexpected error" msgstr "" -#: rpmio/rpmio.c:1259 +#: rpmio/rpmio.c:1252 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" @@ -3889,7 +3889,7 @@ msgid "(no error)" msgstr "" #. @-readonlytrans@ -#. FIX: double indeirection. +#. FIX: double indirection. #. @observer@ #: rpmio/rpmlog.c:114 rpmio/rpmlog.c:115 rpmio/rpmlog.c:116 msgid "fatal error: " @@ -3910,37 +3910,37 @@ msgstr "" msgid "memory alloc (%u bytes) returned NULL.\n" msgstr "" -#: rpmio/url.c:103 +#: rpmio/url.c:101 #, c-format msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:123 +#: rpmio/url.c:121 #, c-format msgid "warning: u %p data %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:151 +#: rpmio/url.c:149 #, c-format msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" msgstr "" -#: rpmio/url.c:244 +#: rpmio/url.c:242 #, c-format msgid "Password for %s@%s: " msgstr "" -#: rpmio/url.c:269 rpmio/url.c:295 +#: rpmio/url.c:267 rpmio/url.c:293 #, c-format msgid "error: %sport must be a number\n" msgstr "" -#: rpmio/url.c:434 +#: rpmio/url.c:432 msgid "url port must be a number\n" msgstr "" #. XXX Fstrerror -#: rpmio/url.c:497 +#: rpmio/url.c:495 #, c-format msgid "failed to create %s: %s\n" msgstr "" diff --git a/po/zh_CN.GB2312.po b/po/zh_CN.GB2312.po index fb01a5cdf..3f3a0d050 100644 --- a/po/zh_CN.GB2312.po +++ b/po/zh_CN.GB2312.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-09-21 11:01-0400\n" +"POT-Creation-Date: 2001-09-24 20:14-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -1055,15 +1055,15 @@ msgstr "" msgid "exec failed\n" msgstr "" -#: rpm.c:1116 rpmqv.c:1103 +#: rpm.c:1116 rpmqv.c:1104 msgid "unexpected arguments to --querytags " msgstr "" -#: rpm.c:1127 rpmqv.c:1112 +#: rpm.c:1127 rpmqv.c:1113 msgid "no packages given for signature check" msgstr "" -#: rpm.c:1138 rpmqv.c:1121 +#: rpm.c:1138 rpmqv.c:1122 msgid "no packages given for signing" msgstr "" @@ -1075,19 +1075,19 @@ msgstr "" msgid "no packages given for install" msgstr "" -#: rpm.c:1267 rpmqv.c:1066 +#: rpm.c:1267 rpmqv.c:1067 msgid "extra arguments given for query of all packages" msgstr "" -#: rpm.c:1272 rpmqv.c:1075 +#: rpm.c:1272 rpmqv.c:1076 msgid "no arguments given for query" msgstr "" -#: rpm.c:1289 rpmqv.c:1091 +#: rpm.c:1289 rpmqv.c:1092 msgid "extra arguments given for verify of all packages" msgstr "" -#: rpm.c:1293 rpmqv.c:1095 +#: rpm.c:1293 rpmqv.c:1096 msgid "no arguments given for verify" msgstr "" @@ -1696,17 +1696,17 @@ msgstr "" msgid "line %d: Error parsing %%description: %s\n" msgstr "" -#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:192 +#: build/parseDescription.c:54 build/parseFiles.c:50 build/parseScript.c:190 #, c-format msgid "line %d: Bad option %s: %s\n" msgstr "" -#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:204 +#: build/parseDescription.c:67 build/parseFiles.c:62 build/parseScript.c:202 #, c-format msgid "line %d: Too many names: %s\n" msgstr "" -#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:213 +#: build/parseDescription.c:77 build/parseFiles.c:71 build/parseScript.c:211 #, c-format msgid "line %d: Package does not exist: %s\n" msgstr "" @@ -1936,22 +1936,22 @@ msgstr "" msgid "line %d: Version required: %s\n" msgstr "" -#: build/parseScript.c:158 +#: build/parseScript.c:156 #, c-format msgid "line %d: triggers must have --: %s\n" msgstr "" -#: build/parseScript.c:168 build/parseScript.c:229 +#: build/parseScript.c:166 build/parseScript.c:227 #, c-format msgid "line %d: Error parsing %s: %s\n" msgstr "" -#: build/parseScript.c:179 +#: build/parseScript.c:177 #, c-format msgid "line %d: script program must begin with '/': %s\n" msgstr "" -#: build/parseScript.c:221 +#: build/parseScript.c:219 #, c-format msgid "line %d: Second %s\n" msgstr "" @@ -1992,11 +1992,11 @@ msgstr "" msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:508 +#: build/parseSpec.c:509 msgid "No compatible architectures found for build\n" msgstr "" -#: build/parseSpec.c:563 +#: build/parseSpec.c:564 #, c-format msgid "Package has no %%description: %s\n" msgstr "" @@ -2070,106 +2070,106 @@ msgstr "" msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "YES" msgstr "" -#: lib/depends.c:597 lib/depends.c:1223 lib/depends.c:1356 +#: lib/depends.c:597 lib/depends.c:1218 lib/depends.c:1351 msgid "NO " msgstr "" -#: lib/depends.c:1021 +#: lib/depends.c:1015 #, c-format msgid "%s: %-45s YES (added files)\n" msgstr "" -#: lib/depends.c:1131 +#: lib/depends.c:1126 #, c-format msgid "%s: %-45s YES (added provide)\n" msgstr "" -#: lib/depends.c:1222 +#: lib/depends.c:1217 #, c-format msgid "%s: %-45s %-s (cached)\n" msgstr "" -#: lib/depends.c:1251 +#: lib/depends.c:1246 #, c-format msgid "%s: %-45s YES (rpmrc provides)\n" msgstr "" -#: lib/depends.c:1268 +#: lib/depends.c:1263 #, c-format msgid "%s: %-45s YES (rpmlib provides)\n" msgstr "" -#: lib/depends.c:1292 +#: lib/depends.c:1287 #, c-format msgid "%s: %-45s YES (db files)\n" msgstr "" -#: lib/depends.c:1305 +#: lib/depends.c:1300 #, c-format msgid "%s: %-45s YES (db provides)\n" msgstr "" -#: lib/depends.c:1319 +#: lib/depends.c:1314 #, c-format msgid "%s: %-45s YES (db package)\n" msgstr "" -#: lib/depends.c:1335 +#: lib/depends.c:1330 #, c-format msgid "%s: %-45s NO\n" msgstr "" -#: lib/depends.c:1356 +#: lib/depends.c:1351 #, c-format msgid "%s: (%s, %s) added to Depends cache.\n" msgstr "" #. requirements are not satisfied. -#: lib/depends.c:1428 +#: lib/depends.c:1423 #, c-format msgid "package %s-%s-%s require not satisfied: %s\n" msgstr "" #. conflicts exist. -#: lib/depends.c:1507 +#: lib/depends.c:1502 #, c-format msgid "package %s conflicts: %s\n" msgstr "" -#: lib/depends.c:1753 +#: lib/depends.c:1748 #, c-format msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1902 +#: lib/depends.c:1897 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1960 +#: lib/depends.c:1955 msgid "" "========== tsorting packages (order, #predecessors, #succesors, depth)\n" msgstr "" -#: lib/depends.c:2010 +#: lib/depends.c:2005 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:2062 +#: lib/depends.c:2057 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:2091 +#: lib/depends.c:2086 msgid "========== continuing tsort ...\n" msgstr "" #: lib/formats.c:28 lib/formats.c:54 lib/formats.c:85 lib/formats.c:128 -#: lib/header.c:2621 lib/header.c:2642 lib/header.c:2664 +#: lib/header.c:2623 lib/header.c:2644 lib/header.c:2666 msgid "(not a number)" msgstr "" @@ -2192,7 +2192,7 @@ msgstr "" msgid "getting list of mounted filesystems\n" msgstr "" -#: lib/fs.c:153 rpmio/url.c:477 +#: lib/fs.c:153 rpmio/url.c:475 #, c-format msgid "failed to open %s: %s\n" msgstr "" @@ -2202,46 +2202,46 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:290 +#: lib/fsm.c:288 msgid "========= Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:292 +#: lib/fsm.c:290 #, c-format msgid "%9d %s\n" msgstr "" -#: lib/fsm.c:1130 +#: lib/fsm.c:1124 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1407 +#: lib/fsm.c:1401 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1526 lib/fsm.c:1651 +#: lib/fsm.c:1520 lib/fsm.c:1645 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1677 +#: lib/fsm.c:1671 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1683 +#: lib/fsm.c:1677 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1693 +#: lib/fsm.c:1687 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1712 +#: lib/fsm.c:1706 #, c-format msgid "%s created as %s\n" msgstr "" @@ -2257,77 +2257,77 @@ msgid "Data type %d not supported\n" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1930 +#: lib/header.c:1932 #, c-format msgid "missing { after %" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1960 +#: lib/header.c:1962 msgid "missing } after %{" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1974 +#: lib/header.c:1976 msgid "empty tag format" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:1988 +#: lib/header.c:1990 msgid "empty tag name" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2005 +#: lib/header.c:2007 msgid "unknown tag" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2032 +#: lib/header.c:2034 msgid "] expected at end of array" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2050 +#: lib/header.c:2052 msgid "unexpected ]" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2054 +#: lib/header.c:2056 msgid "unexpected }" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2120 +#: lib/header.c:2122 msgid "? expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2129 +#: lib/header.c:2131 msgid "{ expected after ? in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2142 lib/header.c:2184 +#: lib/header.c:2144 lib/header.c:2186 msgid "} expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2152 +#: lib/header.c:2154 msgid ": expected following ? subexpression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2169 +#: lib/header.c:2171 msgid "{ expected after : in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: lib/header.c:2194 +#: lib/header.c:2196 msgid "| expected at end of expression" msgstr "" -#: lib/header.c:2381 +#: lib/header.c:2383 msgid "(unknown type)" msgstr "" @@ -2905,7 +2905,7 @@ msgid "can't query %s: %s\n" msgstr "" #: lib/query.c:576 lib/query.c:610 lib/rpminstall.c:309 lib/rpminstall.c:453 -#: lib/rpminstall.c:826 +#: lib/rpminstall.c:824 #, c-format msgid "open of %s failed: %s\n" msgstr "" @@ -3042,27 +3042,27 @@ msgstr "" msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:437 +#: lib/rpmchecksig.c:431 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:438 lib/rpmchecksig.c:452 +#: lib/rpmchecksig.c:432 lib/rpmchecksig.c:446 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:440 lib/rpmchecksig.c:454 +#: lib/rpmchecksig.c:434 lib/rpmchecksig.c:448 msgid ") " msgstr "" -#: lib/rpmchecksig.c:441 lib/rpmchecksig.c:455 +#: lib/rpmchecksig.c:435 lib/rpmchecksig.c:449 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:443 lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 lib/rpmchecksig.c:451 msgid ")" msgstr "" -#: lib/rpmchecksig.c:451 +#: lib/rpmchecksig.c:445 msgid "OK" msgstr "" @@ -3111,7 +3111,7 @@ msgstr "" msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:445 lib/rpminstall.c:686 +#: lib/rpminstall.c:445 lib/rpminstall.c:684 #, c-format msgid "%s cannot be installed\n" msgstr "" @@ -3158,7 +3158,7 @@ msgstr "" msgid "Installing %s\n" msgstr "" -#: lib/rpmlead.c:49 +#: lib/rpmlead.c:47 #, c-format msgid "read failed: %s (%d)\n" msgstr "" @@ -3173,88 +3173,88 @@ msgstr "" msgid "missing architecture name at %s:%d\n" msgstr "" -#: lib/rpmrc.c:325 +#: lib/rpmrc.c:328 #, c-format msgid "Incomplete data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:330 +#: lib/rpmrc.c:333 #, c-format msgid "Too many args in data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:338 +#: lib/rpmrc.c:341 #, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "" -#: lib/rpmrc.c:378 +#: lib/rpmrc.c:384 #, c-format msgid "Incomplete default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:383 +#: lib/rpmrc.c:389 #, c-format msgid "Too many args in default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:585 +#: lib/rpmrc.c:591 #, c-format msgid "Cannot expand %s\n" msgstr "" -#: lib/rpmrc.c:590 +#: lib/rpmrc.c:596 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "" -#: lib/rpmrc.c:607 +#: lib/rpmrc.c:613 #, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "" #. XXX Feof(fd) -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:660 #, c-format msgid "Failed to read %s: %s.\n" msgstr "" -#: lib/rpmrc.c:691 +#: lib/rpmrc.c:697 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "" -#: lib/rpmrc.c:708 lib/rpmrc.c:782 +#: lib/rpmrc.c:714 lib/rpmrc.c:788 #, c-format msgid "missing argument for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:725 lib/rpmrc.c:747 +#: lib/rpmrc.c:731 lib/rpmrc.c:753 #, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "" -#: lib/rpmrc.c:734 +#: lib/rpmrc.c:740 #, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "" -#: lib/rpmrc.c:774 +#: lib/rpmrc.c:780 #, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:841 +#: lib/rpmrc.c:847 #, c-format msgid "bad option '%s' at %s:%d\n" msgstr "" -#: lib/rpmrc.c:1436 +#: lib/rpmrc.c:1442 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1437 +#: lib/rpmrc.c:1443 msgid "Please contact rpm-list@redhat.com\n" msgstr "" @@ -3284,141 +3284,141 @@ msgstr "" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:230 +#: lib/signature.c:228 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:290 +#: lib/signature.c:288 #, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "" -#: lib/signature.c:303 +#: lib/signature.c:301 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:310 +#: lib/signature.c:308 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:315 +#: lib/signature.c:313 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:328 lib/signature.c:410 +#: lib/signature.c:326 lib/signature.c:408 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:333 +#: lib/signature.c:331 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:372 lib/signature.c:760 +#: lib/signature.c:370 lib/signature.c:758 msgid "Couldn't exec gpg\n" msgstr "" -#: lib/signature.c:385 +#: lib/signature.c:383 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:392 +#: lib/signature.c:390 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:397 +#: lib/signature.c:395 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:415 +#: lib/signature.c:413 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:443 +#: lib/signature.c:441 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:449 +#: lib/signature.c:447 msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:532 lib/signature.c:607 +#: lib/signature.c:530 lib/signature.c:605 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" -#: lib/signature.c:697 +#: lib/signature.c:695 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" -#: lib/signature.c:789 +#: lib/signature.c:787 msgid "Couldn't exec pgp\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:793 lib/signature.c:846 +#: lib/signature.c:791 lib/signature.c:844 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:826 +#: lib/signature.c:824 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:838 +#: lib/signature.c:836 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/transaction.c:446 +#: lib/transaction.c:447 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:450 +#: lib/transaction.c:451 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/transaction.c:453 +#: lib/transaction.c:454 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/transaction.c:523 +#: lib/transaction.c:524 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/transaction.c:586 +#: lib/transaction.c:587 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/transaction.c:596 +#: lib/transaction.c:597 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:674 +#: lib/transaction.c:675 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:808 +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/transaction.c:1406 +#: lib/transaction.c:1407 #, c-format msgid "excluding directory %s\n" msgstr "" @@ -3613,125 +3613,125 @@ msgstr "" msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:842 +#: rpmdb/rpmdb.c:846 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:973 +#: rpmdb/rpmdb.c:977 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1206 +#: rpmdb/rpmdb.c:1210 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:1940 rpmdb/rpmdb.c:3122 +#: rpmdb/rpmdb.c:1944 rpmdb/rpmdb.c:3126 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:1991 +#: rpmdb/rpmdb.c:1995 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2256 +#: rpmdb/rpmdb.c:2260 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2325 +#: rpmdb/rpmdb.c:2329 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2334 +#: rpmdb/rpmdb.c:2338 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2529 +#: rpmdb/rpmdb.c:2533 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2607 +#: rpmdb/rpmdb.c:2611 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2618 +#: rpmdb/rpmdb.c:2622 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3011 +#: rpmdb/rpmdb.c:3015 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3041 +#: rpmdb/rpmdb.c:3045 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3068 +#: rpmdb/rpmdb.c:3072 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3072 +#: rpmdb/rpmdb.c:3076 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3078 +#: rpmdb/rpmdb.c:3082 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3080 +#: rpmdb/rpmdb.c:3084 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3087 +#: rpmdb/rpmdb.c:3091 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3098 +#: rpmdb/rpmdb.c:3102 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3162 +#: rpmdb/rpmdb.c:3166 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3180 +#: rpmdb/rpmdb.c:3184 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3188 +#: rpmdb/rpmdb.c:3192 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3190 +#: rpmdb/rpmdb.c:3194 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3200 +#: rpmdb/rpmdb.c:3204 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3202 +#: rpmdb/rpmdb.c:3206 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" @@ -3827,59 +3827,59 @@ msgstr "" msgid "File %s is smaller than %u bytes\n" msgstr "" -#: rpmio/rpmio.c:599 +#: rpmio/rpmio.c:588 msgid "Success" msgstr "" -#: rpmio/rpmio.c:602 +#: rpmio/rpmio.c:591 msgid "Bad server response" msgstr "" -#: rpmio/rpmio.c:605 +#: rpmio/rpmio.c:594 msgid "Server I/O error" msgstr "" -#: rpmio/rpmio.c:608 +#: rpmio/rpmio.c:597 msgid "Server timeout" msgstr "" -#: rpmio/rpmio.c:611 +#: rpmio/rpmio.c:600 msgid "Unable to lookup server host address" msgstr "" -#: rpmio/rpmio.c:614 +#: rpmio/rpmio.c:603 msgid "Unable to lookup server host name" msgstr "" -#: rpmio/rpmio.c:617 +#: rpmio/rpmio.c:606 msgid "Failed to connect to server" msgstr "" -#: rpmio/rpmio.c:620 +#: rpmio/rpmio.c:609 msgid "Failed to establish data connection to server" msgstr "" -#: rpmio/rpmio.c:623 +#: rpmio/rpmio.c:612 msgid "I/O error to local file" msgstr "" -#: rpmio/rpmio.c:626 +#: rpmio/rpmio.c:615 msgid "Error setting remote server to passive mode" msgstr "" -#: rpmio/rpmio.c:629 +#: rpmio/rpmio.c:618 msgid "File not found on server" msgstr "" -#: rpmio/rpmio.c:632 +#: rpmio/rpmio.c:621 msgid "Abort in progress" msgstr "" -#: rpmio/rpmio.c:636 +#: rpmio/rpmio.c:625 msgid "Unknown or unexpected error" msgstr "" -#: rpmio/rpmio.c:1259 +#: rpmio/rpmio.c:1252 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" @@ -3889,7 +3889,7 @@ msgid "(no error)" msgstr "" #. @-readonlytrans@ -#. FIX: double indeirection. +#. FIX: double indirection. #. @observer@ #: rpmio/rpmlog.c:114 rpmio/rpmlog.c:115 rpmio/rpmlog.c:116 msgid "fatal error: " @@ -3910,37 +3910,37 @@ msgstr "" msgid "memory alloc (%u bytes) returned NULL.\n" msgstr "" -#: rpmio/url.c:103 +#: rpmio/url.c:101 #, c-format msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:123 +#: rpmio/url.c:121 #, c-format msgid "warning: u %p data %p nrefs != 0 (%s %s)\n" msgstr "" -#: rpmio/url.c:151 +#: rpmio/url.c:149 #, c-format msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" msgstr "" -#: rpmio/url.c:244 +#: rpmio/url.c:242 #, c-format msgid "Password for %s@%s: " msgstr "" -#: rpmio/url.c:269 rpmio/url.c:295 +#: rpmio/url.c:267 rpmio/url.c:293 #, c-format msgid "error: %sport must be a number\n" msgstr "" -#: rpmio/url.c:434 +#: rpmio/url.c:432 msgid "url port must be a number\n" msgstr "" #. XXX Fstrerror -#: rpmio/url.c:497 +#: rpmio/url.c:495 #, c-format msgid "failed to create %s: %s\n" msgstr "" diff --git a/popt/configure.in b/popt/configure.in index cce8afd0b..bb7fbfd82 100755 --- a/popt/configure.in +++ b/popt/configure.in @@ -2,7 +2,7 @@ AC_INIT(popt.h) AM_CONFIG_HEADER(config.h) AC_PREREQ(2.12) AC_CANONICAL_SYSTEM -AM_INIT_AUTOMAKE(popt, 1.6.3) +AM_INIT_AUTOMAKE(popt, 1.7) ALL_LINGUAS="cs da de es eu_ES fi fr gl hu id is it ja ko no pl pt pt_BR ro ru sk sl sr sv tr uk wa zh zh_CN.GB2312" AC_ISC_POSIX diff --git a/popt/popt.spec b/popt/popt.spec index 6816d5c06..93dd393d3 100644 --- a/popt/popt.spec +++ b/popt/popt.spec @@ -4,7 +4,7 @@ # Summary: A C library for parsing command line parameters. Name: popt -Version: 1.6.3 +Version: 1.7 Release: 0.1 Copyright: X Consortium Group: System Environment/Libraries @@ -16,10 +16,10 @@ Summary: The Red Hat package management system. Name: rpm -%define version 4.0.3 +%define version 4.1 Version: %{version} %{expand: %%define rpm_version %{version}} -Release: 1.06 +Release: 0.01 Group: System Environment/Base Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/rpm-%{rpm_version}.tar.gz Copyright: GPL @@ -27,7 +27,7 @@ Conflicts: patch < 2.5 %ifos linux Prereq: gawk fileutils textutils mktemp shadow-utils %endif -Requires: popt = 1.6.3 +Requires: popt = 1.7 %if !%{with_internal_db} BuildRequires: db3-devel @@ -63,7 +63,7 @@ the package like its version, a description, etc. %package devel Summary: Development files for applications which will manipulate RPM packages. Group: Development/Libraries -Requires: rpm = %{rpm_version}, popt = 1.6.3 +Requires: rpm = %{rpm_version}, popt = 1.7 %description devel This package contains the RPM C library and header files. These @@ -91,7 +91,7 @@ Summary: Python bindings for apps which will manipulate RPM packages. Group: Development/Libraries Requires: rpm = %{rpm_version} Requires: python >= 1.5.2 -Requires: popt = 1.6.3 +Requires: popt = 1.7 %description python The rpm-python package contains a module which permits applications @@ -111,7 +111,7 @@ Provides: perl(RPM::Database) = %{rpm_version} Provides: perl(RPM::Header) = %{rpm_version} Requires: rpm = %{rpm_version} Requires: perl >= 0:5.00503 -Requires: popt = 1.6.3 +Requires: popt = 1.7 Obsoletes: perl-Perl-RPM %description perl @@ -137,7 +137,7 @@ also available. %package -n popt Summary: A C library for parsing command line parameters. Group: Development/Libraries -Version: 1.6.3 +Version: 1.7 %description -n popt Popt is a C library for parsing command line parameters. Popt was @@ -332,10 +332,10 @@ fi %rpmattr %{__prefix}/bin/rpmquery %rpmattr %{__prefix}/bin/rpmverify -%{__prefix}/lib/librpm-4.0.3.so -%{__prefix}/lib/librpmdb-4.0.3.so -%{__prefix}/lib/librpmio-4.0.3.so -%{__prefix}/lib/librpmbuild-4.0.3.so +%{__prefix}/lib/librpm-4.1.so +%{__prefix}/lib/librpmdb-4.1.so +%{__prefix}/lib/librpmio-4.1.so +%{__prefix}/lib/librpmbuild-4.1.so %attr(0755, rpm, rpm) %dir %{__prefix}/lib/rpm %rpmattr %{__prefix}/lib/rpm/config.guess @@ -509,409 +509,6 @@ fi %{__prefix}/include/popt.h %changelog -* Fri Sep 21 2001 Jeff Johnson <jbj@redhat.com> -- lclint-3.0.0.15 fiddles. - -* Sat Sep 15 2001 Jeff Johnson <jbj@redhat.com> -- close/discard Depends index after rpmdepCheck() use. - -* Thu Sep 13 2001 Jeff Johnson <jbj@redhat.com> -- fix: initialize "verify" transaction stepName with -vv (#53582). -- fix: ftp remote globs broken (#46892). -- popt: clarify X consortium license in popt.3 man page. - -* Thu Sep 6 2001 Jeff Johnson <jbj@redhat.com> -- fix: hash page nelem failure to verify. - -* Fri Aug 31 2001 Jeff Johnson <jbj@redhat.com> -- fix: Provides: /path did not work with added packages (#52183). -- fix: progress bar scaling did not include source rpm count. - -* Tue Aug 28 2001 Jeff Johnson <jbj@redhat.com> -- python: teach rhnLoad about RPMTAG_SHA1RHN as well. -- dependency whiteout for libgnomeprint -> gnome-print (ordering only). -- dependency whiteout for nautilus -> nautilus-mozilla (ordering only). - -* Mon Aug 27 2001 Jeff Johnson <jbj@redhat.com> -- fix: error message on failed package installs resurrected. -- python: memory leaks in headerLoad/headerunload bindings. -- python: retrofit sha1 digest using RPMTAG_SHA1RHN. -- python: change rhnUnload bindings. - -* Fri Aug 24 2001 Jeff Johnson <jbj@redhat.com> -- headers without RPMTAG_NAME are skipped when retrieved. -- within a region, entries sort by address; added drips sort by tag. - -* Thu Aug 23 2001 Jeff Johnson <jbj@redhat.com> -- workaround alpha sha1 digest miscompilation. - -* Fri Aug 17 2001 Jeff Johnson <jbj@redhat.com> -- verify perms (but not mode) on %ghost files. - -* Thu Aug 16 2001 Jeff Johnson <jbj@redhat.com> -- python: add exception to detect bad data in hdrUnload. -- change dir creation message from warning to debug for now. - -* Wed Aug 15 2001 Jeff Johnson <jbj@redhat.com> -- always use dl size in regionSwab() return. -- ppc: revert ppcmac to ppc. -- ppc: autoconf test for va_copy. - -* Mon Aug 13 2001 Jeff Johnson <jbj@redhat.com> -- fix: segfault on headerFree given malicious data. -- fix: don't verify hash page nelem. -- better error messages for verification failures. -- include directory /usr/lib/rpm in rpm package. - -* Wed Aug 8 2001 Jeff Johnson <jbj@redhat.com> -- add legacy (compile only) wrappers for fdFileno et al. -- add -D_REENTRANT (note rpmlib is still not thread safe). - -* Mon Aug 6 2001 Jeff Johnson <jbj@redhat.com> -- python: add hiesenbug patch. - -* Sun Aug 5 2001 Jeff Johnson <jbj@redhat.com> -- portability: some compilers squawk at return ((void) foo()) (#50419). -- remove fdFileno() from librpmio, use inline version instead (#50420). -- fix: linux find-requires needs quotes around [:blank:]. -- remove /var/lib/rpm/__db* cache files if %%__dbi_cdb is not configured. - -* Sat Aug 4 2001 Jeff Johnson <jbj@redhat.com> -- fix: i18n tags not terminated correctly with NUL (#50304). -- add explicit casts to work around a s390 compiler problem. -- fix: autoconf glob tests (#50845). - -* Tue Jul 31 2001 Jeff Johnson <jbj@redhat.com> -- detailed build package error messages. - -* Mon Jul 30 2001 Tim Powers <timp@redhat.com> -- added all of the perl modules to the files list for the rpm-perl package. - -* Sat Jul 28 2001 Jeff Johnson <jbj@redhat.com> -- add support for mips (#49283). -- add __as, _build_arch, and __cxx macros (#36662, #36663, #49280). - -* Fri Jul 27 2001 Jeff Johnson <jbj@redhat.com> -- fix: --noscripts is another multimode option. -- add tmpdir to configure db3 tmpdir into chroot tree. -- permit lazy db opens within chroot. -- fix: diddle dbenv path to accomodate backing store reopen in chroot. - -* Tue Jul 24 2001 Jeff Johnson <jbj@redhat.com> -- fix: don't segfault when presented with rpm-2.4.10 packaging (#49688). - -* Mon Jul 23 2001 Jeff Johnson <jbj@redhat.com> -- add pmac/ppciseries/ppcpseries varieties to ppc arch family. -- include tdigest.c tkey.c and trpmio.c to "make dist". -- re-enable dependency resolution source from package NVR. -- rename pmac to ppcmac. -- ia64: revert -O0 compilation. -- upgrade to db-3.3.11 final. - -* Sun Jul 22 2001 Jeff Johnson <jbj@redhat.com> -- use %%{rpm_version} to avoid other package versions. - -* Sat Jul 21 2001 Jeff Johnson <jbj@redhat.com> -- add sha1 test vectors, verify on ix86/alpha/sparc. -- add rpm-perl subpackage from Perl-RPM. -- python: parameterize with PYVER to handle 1.5 and/or 2.1 builds. -- add build dependency on zlib-devel (#49575). - -* Fri Jul 20 2001 Jeff Johnson <jbj@redhat.com> -- fix: yet another segfault from bad metadata prevented. - -* Thu Jul 19 2001 Jeff Johnson <jbj@redhat.com> -- fix: 4 memory leaks eliminated. - -* Wed Jul 18 2001 Jeff Johnson <jbj@redhat.com> -- fix: %%dev(...) needs to map rdev and mtime from metadata. -- resurrect --specedit for i18n. - -* Tue Jul 17 2001 Jeff Johnson <jbj@redhat.com> -- python: "seal" immutable region for legacy headers in rhnUnload(). -- python: add poptmodule.so bindings. - -* Mon Jul 16 2001 Jeff Johnson <jbj@redhat.com> -- fix: don't total hard linked file size multiple times (#46286). -- add %dev(type,major,minor) directive to permit non-root dev build. -- fix: _smp_flags macro broken. -- python: bind rhnUnload differently. -- fix: rescusitate --querytags. -- fix: short aliases broken (#49213). - -* Fri Jul 13 2001 Jeff Johnson <jbj@redhat.com> -- isolate cdb access configuration (experimental, use at your own risk). -- fix: hard fail on locked dbopen if CDB locking not in use. -- fix: dbconfig with mp_mmapsize=16Mb/mp_size=1Mb for - "everything ENOSPC" failure check. - -* Thu Jul 12 2001 Jeff Johnson <jbj@redhat.com> -- fix: scope multi-mode options like --nodeps correctly (#48825). - -* Wed Jul 11 2001 Jeff Johnson <jbj@redhat.com> -- fix: adjust arg count for --POPTdesc/--POPTargs deletion. -- add linux per-platform macro %_smp_mflags <sopwith@redhat.com>. -- document more popt aliases for --help usage. -- remove --tarbuild from man page(s), use -t[abpcils] instead (#48666). -- add explicit version to Requires: popt - -* Tue Jul 10 2001 Jeff Johnson <jbj@redhat.com> -- fix: -i CLI context broken Yet Again. -- fix: --rebuild broken. -- unlink all _db.nnn files before 1st db open. -- python bindings should not segfault when fed bad data. - -* Mon Jul 9 2001 Jeff Johnson <jbj@redhat.com> -- package version now configureable, default v3. -- rename rpm libraries to have version with libtool -release. -- revert rpmqv.c change for now. - -* Sun Jul 8 2001 Jeff Johnson <jbj@redhat.com> -- python: rhnLoad/rhnUnload to check header digest. - -* Sat Jul 7 2001 Jeff Johnson <jbj@redhat.com> -- expose rpmShowProgress() and rpmVerifyDigest() in rpmcli.h. -- portability: avoid st_mtime, gendiff uses basename, etc (#47497). -- glibc-2.0.x has not __va_copy(). -- popthelp.c: don't use stpcpy to avoid portability grief (#47500). -- permit alias/exec description/arg text to be set from popt config. -- use rpmqv.c, not rpm.c, as rpm's main() routine. - -* Wed Jul 4 2001 Jeff Johnson <jbj@redhat.com> -- add removetid to header during --repackage. - -* Tue Jul 3 2001 Jeff Johnson <jbj@redhat.com> -- fix: redundant entries in file manifests handled correctly (#46914). -- map uid/gid from metadata into payload headers. - -* Sat Jun 30 2001 Jeff Johnson <jbj@redhat.com> -- update intl dirs to gettext-0.10.38. -- fix: sanity check for header size added in headerCopyLoad() (#46469). - -* Thu Jun 28 2001 Jeff Johnson <jbj@redhat.com> -- fix: sanity checks on #tags (<65K) and offset (<16Mb) in header. -- fix: add -r to useradd to prevent /etc/skel glop (#46215). -- fix: disambiguate typedef and struct name(s) for kpackage. - -* Mon Jun 25 2001 Jeff Johnson <jbj@redhat.com> -- fix: remove executable bit on perl.req, not find-req.pl. -- fix: permit partially enumerated hardlink file sets during build. -- fix: resurrect rpm signature modes. - -* Fri Jun 22 2001 Jeff Johnson <jbj@redhat.com> -- remove executable bit to disable autogenerated perl requires until - perl provides can be vetted. -- disable per-platform %%configure use of %%_gnu until libtool package - stabilizes. - -* Thu Jun 21 2001 Jeff Johnson <jbj@redhat.com> -- propagate %%{_gnu} to per-platform configuration. -- fix: parameterized macros with massive mumber of options need - "optind = 1" "Dmitry V. Levin" <ldv@alt-linux.org>. -- add athlon per-platform configuration. - -* Wed Jun 20 2001 Jeff Johnson <jbj@redhat.com> -- fix: partial sets of hardlinked files permitted in payload. -- fix: mark rpmdb files with %config to prevent erasure on downgrade. -- work around a (possible) compiler problem on ia64. -- fix: rpm -qlv link count for directories dinna include '..'. -- fix: rpm -qlv size for directories should be zero. -- add --noghost to filter non-payload files from rpm -qlv output. -- add %%{_gnu} macro to append "-gnu" to %%{_target_platform} to - support --target/--host flavored %%configure. Legacy behavior - available by undefining %%{_gnu}. - -* Tue Jun 19 2001 Jeff Johnson <jbj@redhat.com> -- finalize per-header methods, accessing headerFoo through vector. -- make package ordering loop messages debug, not warning. - -* Mon Jun 18 2001 Jeff Johnson <jbj@redhat.com> -- preliminary abstraction to support per-header methods. - -* Sun Jun 17 2001 Jeff Johnson <jbj@redhat.com> -- alpha: don't add "()(64bit)" dependency markers. -- ia64/sparc: <arch>.{req,prov} identical to linux.{req,prov}. -- add "rpmlib(ScriptletInterpreterArgs)" to track - %%post -p "/sbin/ldconfig -n /usr/lib" - incompatibilities. -- linux.req needs exit 0 -- popt: add POPT_ARGFLAG_SHOW_DEFAULT to display initial values (#32558). -- popt: add POPT_CONTEXT_ARG_OPTS for all opts to return 1 (#30912). -- fix: fsm reads/writes now return error on partial I/O. -- fix: Ferror returned spurious error for gzdio/bzdio. -- check for API/ABI creep, diddle up some compatibility. - -* Thu Jun 14 2001 Jeff Johnson <jbj@redhat.com> -- fix: db1 end-of-file not detected in legacy compatible way. -- fix: remove (harmless) chown error message from %post. -- add --target/--host to %%configure, add example cross-build/config.site - scripts to /usr/lib/rpm <arjanv@redhat.com> (#44581). -- rpmdb iterator selectors permit default/strcmp/regex/glob matching. -- rpmdb iterator selectors permit negative matches. - -* Wed Jun 13 2001 Jeff Johnson <jbj@redhat.com> -- add rpmdbSetIteratorRE() for regex matching in database iterators. -- permit rpm -qa to take RE args applied to name tag. -- permit dbiFindMatches() to use version/release patterns. -- eliminate all uses of rpmdbSetIterator{Version,Release}. - -* Tue Jun 12 2001 Jeff Johnson <jbj@redhat.com> -- remove rpmrc Provides: Yet Again, use virtual packages. -- dump cursor debugging wrappers. -- rpm --verify can disable rpmFileAttr checks. - -* Mon Jun 11 2001 Jeff Johnson <jbj@redhat.com> -- remove dead code frpm popt table reorg. -- more CLI typedefs/prototypes moved from rpmlib.h to rpmcli.h. -- rpm --verify skips files in non-installed states. -- rpm --verify skips content checks for %ghost files. -- rpm --verify displays config/doc/gnost/license/readme atrrs for files. -- rpm --verify checks immutable header region digest if available. -- rpmbuild adds header region digest (SHA1 as string). -- use rpmTag* typedefs in new hge/hae/hme/hre header vectors. - -* Fri Jun 8 2001 Jeff Johnson <jbj@redhat.com> -- fix: QUERY_FOR_LIST file count clobbered. -- create top level rpmcli API, factor top level modes into popt tables. -- popt: add POPT_BIT_SET/POPT_BIT_CLR to API. -- autogen.sh checks for latest libtool-1.4 and automake-1.4-p2. -- rpm --verify reports failure(s) if corresponding tag is not in header. -- rpm --verify honors %config(missingok), add -v for legacy behavior. - -* Wed Jun 6 2001 Jeff Johnson <jbj@redhat.com> -- fix typos in linux.{req,prov}. -- always use db cursors. -- permit duplicates for btree indices. -- document build modes in rpmbuild.8, rpmbuild is born. -- default to dbenv with mpool, --rebuilddb with nofsync is much faster. - -* Fri Jun 1 2001 Jeff Johnson <jbj@redhat.com> -- merge sparc64/ia64 fiddles back into linux.{req,prov}. -- automagically generate perl module dependencies always. -- fix: lclint fiddles broke uCache initialization (#43139). - -* Thu May 31 2001 Jeff Johnson <jbj@redhat.com> -- return multiple suggested packages (Pawel Kolodziej <pawelk@pld.org.pl>). -- fix: return suggested packages when using Depends cache. - -* Wed May 30 2001 Jeff Johnson <jbj@redhat.com> -- fix: for busted db1, attempt chain reconnection to following record. - -* Tue May 29 2001 Jeff Johnson <jbj@redhat.com> -- eliminate db-1.85 and db-2.x configuration. -- fix: popt arg sanity checks broken, optarg != optArg. -- fix: popt range checks on floats/doubles broken. -- popt: return POPT_ERROR_ERRNO on config open/read/close failure. -- fix: popt exec doesn't add '--', --target et al no longer need '='. -- fix: popt consume-next-arg "!#:+" w/o side effect (#41956). - -* Fri May 25 2001 Jeff Johnson <jbj@redhat.com> -- perform db->verify when closing db files. - -* Wed May 23 2001 Jeff Johnson <jbj@redhat.com> -- headerFree() returns NULL, _free is C++ safe. -- remove all header region assertion failures, return NULL instead. - -* Mon May 21 2001 Jeff Johnson <jbj@redhat.com> -- fix: skip %ghost files when building packages (#38218). -- refuse to install on systems using db1. - -* Sun May 20 2001 Jeff Johnson <jbj@redhat.com> -- fix: i18n strings need 1 on sucess return code (#41313). - -* Wed May 16 2001 Jeff Johnson <jbj@redhat.com> -- fix: filter duplicate package removals (#35828). -- add armv3l arch. - -* Mon May 14 2001 Jeff Johnson <jbj@redhat.com> -- upgrade to db-3.3.4. - -* Sun May 13 2001 Jeff Johnson <jbj@redhat.com> -- add cron/logrotate scripts to save installed package filenames. - -* Thu May 10 2001 Jeff Johnson <jbj@redhat.com> -- rpm database has rpm.rpm g+w permissions to share db3 mutexes. -- expose more db3 macro configuration tokens. -- move fprint.[ch] and hash.[ch] to rpmdb directory. -- detect and fiddle incompatible mixtures of db3 env/open flags. -- add DBI_WRITECURSOR to map to db3 flags with CDB database model. -- add rpmdbSetIteratorRewrite to warn of pending lazy (re-)writes. -- harden rpmdb iterators from damaged header instance segfaults. - -* Mon May 7 2001 Jeff Johnson <jbj@redhat.com> -- use internal db-3.2.9 sources to build by default. -- don't build db1 support by default. -- create rpmdb.la so that linkage against rpm's db-3.2.9 is possible. - -* Sun May 6 2001 Jeff Johnson <jbj@redhat.com> -- fix: specfile queries with BuildArch: (#27589). - -* Sat May 5 2001 Jeff Johnson <jbj@redhat.com> -- enough lclint annotations and fiddles already. - -* Thu May 3 2001 Jeff Johnson <jbj@redhat.com> -- still more boring lclint annotations and fiddles. - -* Sun Apr 29 2001 Jeff Johnson <jbj@redhat.com> -- transaction iterator(s) need to run in reverse order on pure erasures. -- erasures not yet strict, warn & chug on unlink(2)/rmdir(2) failure. -- more boring lclint annotations and fiddles. - -* Sat Apr 28 2001 Jeff Johnson <jbj@redhat.com> -- globalize _free(3) wrapper in rpmlib.h, consistent usage throughout. -- internalize locale insensitive ctype(3) in rpmio.h -- boring lclint annotations and fiddles. - -* Thu Apr 26 2001 Jeff Johnson <jbj@redhat.com> -- fix: ineeded count wrong for overlapped, created files. - -* Wed Apr 25 2001 Jeff Johnson <jbj@redhat.com> -- fix: readlink return value clobbered by header write. - -* Mon Apr 23 2001 Jeff Johnson <jbj@redhat.com> -- regenerate rpm.8 man page from docbook glop (in max-rpm). -- lib/depends.c: diddle debugging messages. - -* Sat Apr 21 2001 Jeff Johnson <jbj@redhat.com> -- fix: s390 (and ppc?) could return CPIOERR_BAD_HEADER (#28645). -- fix: Fwrite's are optimized out by aggressive compiler(irix) (#34711). -- portability: vsnprintf/snprintf wrappers for those without (#34657). -- more info provided by rpmdepOrder() debugging messages. -- merge (compatible) changes from top-of-stack into rpmlib.h. -- cpio mappings carry dirname/basename, not absolute path. -- fix: check waitpid return code. -- remove support for v1 src rpm's. -- re-position callbacks with ts/fi in cpio payload layer. -- state machines for packages (psm.c) and payloads (fsm.c) -- add --repackage option to put erased bits back into a package. - -* Tue Apr 17 2001 Jeff Johnson <jbj@redhat.com> -- fix: s390 (and ppc?) could return CPIOERR_BAD_HEADER (#28645). -- fix: Fwrite's are optimized out by aggressive compiler(irix) (#34711). -- portability: vsnprintf/snprintf wrappers for those without (#34657). -- don't build with db1 support, don't install with packages.rpm present. - -* Wed Apr 4 2001 Jeff Johnson <jbj@redhat.com> -- fix: parameterized macro segfault (Jakub Bogusz <qboosh@pld.org.pl>) -- fix: i18n tags in rpm-2.5.x had wrong offset/length (#33478). -- fix: AIX has sizeof(uint_16) != sizeof(mode_t) verify cast needed. -- fix: zero length hard links unpacked incorrectly (#34211). -- fix: --relocate missing trailing slash (#28874,#25876). -- fix: --excludedoc shouldn't create empty doc dir (#14531). -- fix: %_netsharedpath needs to look at basenames (#26561). -- fix: --excludepath was broken (#24434). - -* Thu Mar 22 2001 Jeff Johnson <jbj@redhat.com> -- update per-interpreter dependency scripts, add sql/tcl (#20295). -- fix: rpmvercmp("1.a", "1.") returned -1, not +1 (#21392). -- add %exclude support (i.e. "everything but") to %files. - (Michael (Micksa) Slade" <micksa@knobbits.org>) -- add --with/--without popt glue for conditional builds(Tomasz Kloczko). -- python: strip header regions during unload. -- add -g to optflags in per-platform config. -- permit confgure/compile with db3-3.2.9. -- permit manifest files as args to query/verify modes. - -* Thu Mar 15 2001 Jeff Johnson <jbj@redhat.com> -- start rpm-4.0.3. -- add cpuid asm voodoo to detect athlon processors. +* Mon Sep 24 2001 Jeff Johnson <jbj@redhat.com> +- Start rpm-4.1. +- loosely wire beecrypt library into rpm. diff --git a/rpm.spec.in b/rpm.spec.in index 7b11545f0..b5971a939 100644 --- a/rpm.spec.in +++ b/rpm.spec.in @@ -19,7 +19,7 @@ Name: rpm %define version @VERSION@ Version: %{version} %{expand: %%define rpm_version %{version}} -Release: 1.06 +Release: 0.01 Group: System Environment/Base Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/rpm-%{rpm_version}.tar.gz Copyright: GPL @@ -27,7 +27,7 @@ Conflicts: patch < 2.5 %ifos linux Prereq: gawk fileutils textutils mktemp shadow-utils %endif -Requires: popt = 1.6.3 +Requires: popt = 1.7 %if !%{with_internal_db} BuildRequires: db3-devel @@ -63,7 +63,7 @@ the package like its version, a description, etc. %package devel Summary: Development files for applications which will manipulate RPM packages. Group: Development/Libraries -Requires: rpm = %{rpm_version}, popt = 1.6.3 +Requires: rpm = %{rpm_version}, popt = 1.7 %description devel This package contains the RPM C library and header files. These @@ -91,7 +91,7 @@ Summary: Python bindings for apps which will manipulate RPM packages. Group: Development/Libraries Requires: rpm = %{rpm_version} Requires: python >= 1.5.2 -Requires: popt = 1.6.3 +Requires: popt = 1.7 %description python The rpm-python package contains a module which permits applications @@ -111,7 +111,7 @@ Provides: perl(RPM::Database) = %{rpm_version} Provides: perl(RPM::Header) = %{rpm_version} Requires: rpm = %{rpm_version} Requires: perl >= 0:5.00503 -Requires: popt = 1.6.3 +Requires: popt = 1.7 Obsoletes: perl-Perl-RPM %description perl @@ -137,7 +137,7 @@ also available. %package -n popt Summary: A C library for parsing command line parameters. Group: Development/Libraries -Version: 1.6.3 +Version: 1.7 %description -n popt Popt is a C library for parsing command line parameters. Popt was @@ -509,409 +509,6 @@ fi %{__prefix}/include/popt.h %changelog -* Fri Sep 21 2001 Jeff Johnson <jbj@redhat.com> -- lclint-3.0.0.15 fiddles. - -* Sat Sep 15 2001 Jeff Johnson <jbj@redhat.com> -- close/discard Depends index after rpmdepCheck() use. - -* Thu Sep 13 2001 Jeff Johnson <jbj@redhat.com> -- fix: initialize "verify" transaction stepName with -vv (#53582). -- fix: ftp remote globs broken (#46892). -- popt: clarify X consortium license in popt.3 man page. - -* Thu Sep 6 2001 Jeff Johnson <jbj@redhat.com> -- fix: hash page nelem failure to verify. - -* Fri Aug 31 2001 Jeff Johnson <jbj@redhat.com> -- fix: Provides: /path did not work with added packages (#52183). -- fix: progress bar scaling did not include source rpm count. - -* Tue Aug 28 2001 Jeff Johnson <jbj@redhat.com> -- python: teach rhnLoad about RPMTAG_SHA1RHN as well. -- dependency whiteout for libgnomeprint -> gnome-print (ordering only). -- dependency whiteout for nautilus -> nautilus-mozilla (ordering only). - -* Mon Aug 27 2001 Jeff Johnson <jbj@redhat.com> -- fix: error message on failed package installs resurrected. -- python: memory leaks in headerLoad/headerunload bindings. -- python: retrofit sha1 digest using RPMTAG_SHA1RHN. -- python: change rhnUnload bindings. - -* Fri Aug 24 2001 Jeff Johnson <jbj@redhat.com> -- headers without RPMTAG_NAME are skipped when retrieved. -- within a region, entries sort by address; added drips sort by tag. - -* Thu Aug 23 2001 Jeff Johnson <jbj@redhat.com> -- workaround alpha sha1 digest miscompilation. - -* Fri Aug 17 2001 Jeff Johnson <jbj@redhat.com> -- verify perms (but not mode) on %ghost files. - -* Thu Aug 16 2001 Jeff Johnson <jbj@redhat.com> -- python: add exception to detect bad data in hdrUnload. -- change dir creation message from warning to debug for now. - -* Wed Aug 15 2001 Jeff Johnson <jbj@redhat.com> -- always use dl size in regionSwab() return. -- ppc: revert ppcmac to ppc. -- ppc: autoconf test for va_copy. - -* Mon Aug 13 2001 Jeff Johnson <jbj@redhat.com> -- fix: segfault on headerFree given malicious data. -- fix: don't verify hash page nelem. -- better error messages for verification failures. -- include directory /usr/lib/rpm in rpm package. - -* Wed Aug 8 2001 Jeff Johnson <jbj@redhat.com> -- add legacy (compile only) wrappers for fdFileno et al. -- add -D_REENTRANT (note rpmlib is still not thread safe). - -* Mon Aug 6 2001 Jeff Johnson <jbj@redhat.com> -- python: add hiesenbug patch. - -* Sun Aug 5 2001 Jeff Johnson <jbj@redhat.com> -- portability: some compilers squawk at return ((void) foo()) (#50419). -- remove fdFileno() from librpmio, use inline version instead (#50420). -- fix: linux find-requires needs quotes around [:blank:]. -- remove /var/lib/rpm/__db* cache files if %%__dbi_cdb is not configured. - -* Sat Aug 4 2001 Jeff Johnson <jbj@redhat.com> -- fix: i18n tags not terminated correctly with NUL (#50304). -- add explicit casts to work around a s390 compiler problem. -- fix: autoconf glob tests (#50845). - -* Tue Jul 31 2001 Jeff Johnson <jbj@redhat.com> -- detailed build package error messages. - -* Mon Jul 30 2001 Tim Powers <timp@redhat.com> -- added all of the perl modules to the files list for the rpm-perl package. - -* Sat Jul 28 2001 Jeff Johnson <jbj@redhat.com> -- add support for mips (#49283). -- add __as, _build_arch, and __cxx macros (#36662, #36663, #49280). - -* Fri Jul 27 2001 Jeff Johnson <jbj@redhat.com> -- fix: --noscripts is another multimode option. -- add tmpdir to configure db3 tmpdir into chroot tree. -- permit lazy db opens within chroot. -- fix: diddle dbenv path to accomodate backing store reopen in chroot. - -* Tue Jul 24 2001 Jeff Johnson <jbj@redhat.com> -- fix: don't segfault when presented with rpm-2.4.10 packaging (#49688). - -* Mon Jul 23 2001 Jeff Johnson <jbj@redhat.com> -- add pmac/ppciseries/ppcpseries varieties to ppc arch family. -- include tdigest.c tkey.c and trpmio.c to "make dist". -- re-enable dependency resolution source from package NVR. -- rename pmac to ppcmac. -- ia64: revert -O0 compilation. -- upgrade to db-3.3.11 final. - -* Sun Jul 22 2001 Jeff Johnson <jbj@redhat.com> -- use %%{rpm_version} to avoid other package versions. - -* Sat Jul 21 2001 Jeff Johnson <jbj@redhat.com> -- add sha1 test vectors, verify on ix86/alpha/sparc. -- add rpm-perl subpackage from Perl-RPM. -- python: parameterize with PYVER to handle 1.5 and/or 2.1 builds. -- add build dependency on zlib-devel (#49575). - -* Fri Jul 20 2001 Jeff Johnson <jbj@redhat.com> -- fix: yet another segfault from bad metadata prevented. - -* Thu Jul 19 2001 Jeff Johnson <jbj@redhat.com> -- fix: 4 memory leaks eliminated. - -* Wed Jul 18 2001 Jeff Johnson <jbj@redhat.com> -- fix: %%dev(...) needs to map rdev and mtime from metadata. -- resurrect --specedit for i18n. - -* Tue Jul 17 2001 Jeff Johnson <jbj@redhat.com> -- python: "seal" immutable region for legacy headers in rhnUnload(). -- python: add poptmodule.so bindings. - -* Mon Jul 16 2001 Jeff Johnson <jbj@redhat.com> -- fix: don't total hard linked file size multiple times (#46286). -- add %dev(type,major,minor) directive to permit non-root dev build. -- fix: _smp_flags macro broken. -- python: bind rhnUnload differently. -- fix: rescusitate --querytags. -- fix: short aliases broken (#49213). - -* Fri Jul 13 2001 Jeff Johnson <jbj@redhat.com> -- isolate cdb access configuration (experimental, use at your own risk). -- fix: hard fail on locked dbopen if CDB locking not in use. -- fix: dbconfig with mp_mmapsize=16Mb/mp_size=1Mb for - "everything ENOSPC" failure check. - -* Thu Jul 12 2001 Jeff Johnson <jbj@redhat.com> -- fix: scope multi-mode options like --nodeps correctly (#48825). - -* Wed Jul 11 2001 Jeff Johnson <jbj@redhat.com> -- fix: adjust arg count for --POPTdesc/--POPTargs deletion. -- add linux per-platform macro %_smp_mflags <sopwith@redhat.com>. -- document more popt aliases for --help usage. -- remove --tarbuild from man page(s), use -t[abpcils] instead (#48666). -- add explicit version to Requires: popt - -* Tue Jul 10 2001 Jeff Johnson <jbj@redhat.com> -- fix: -i CLI context broken Yet Again. -- fix: --rebuild broken. -- unlink all _db.nnn files before 1st db open. -- python bindings should not segfault when fed bad data. - -* Mon Jul 9 2001 Jeff Johnson <jbj@redhat.com> -- package version now configureable, default v3. -- rename rpm libraries to have version with libtool -release. -- revert rpmqv.c change for now. - -* Sun Jul 8 2001 Jeff Johnson <jbj@redhat.com> -- python: rhnLoad/rhnUnload to check header digest. - -* Sat Jul 7 2001 Jeff Johnson <jbj@redhat.com> -- expose rpmShowProgress() and rpmVerifyDigest() in rpmcli.h. -- portability: avoid st_mtime, gendiff uses basename, etc (#47497). -- glibc-2.0.x has not __va_copy(). -- popthelp.c: don't use stpcpy to avoid portability grief (#47500). -- permit alias/exec description/arg text to be set from popt config. -- use rpmqv.c, not rpm.c, as rpm's main() routine. - -* Wed Jul 4 2001 Jeff Johnson <jbj@redhat.com> -- add removetid to header during --repackage. - -* Tue Jul 3 2001 Jeff Johnson <jbj@redhat.com> -- fix: redundant entries in file manifests handled correctly (#46914). -- map uid/gid from metadata into payload headers. - -* Sat Jun 30 2001 Jeff Johnson <jbj@redhat.com> -- update intl dirs to gettext-0.10.38. -- fix: sanity check for header size added in headerCopyLoad() (#46469). - -* Thu Jun 28 2001 Jeff Johnson <jbj@redhat.com> -- fix: sanity checks on #tags (<65K) and offset (<16Mb) in header. -- fix: add -r to useradd to prevent /etc/skel glop (#46215). -- fix: disambiguate typedef and struct name(s) for kpackage. - -* Mon Jun 25 2001 Jeff Johnson <jbj@redhat.com> -- fix: remove executable bit on perl.req, not find-req.pl. -- fix: permit partially enumerated hardlink file sets during build. -- fix: resurrect rpm signature modes. - -* Fri Jun 22 2001 Jeff Johnson <jbj@redhat.com> -- remove executable bit to disable autogenerated perl requires until - perl provides can be vetted. -- disable per-platform %%configure use of %%_gnu until libtool package - stabilizes. - -* Thu Jun 21 2001 Jeff Johnson <jbj@redhat.com> -- propagate %%{_gnu} to per-platform configuration. -- fix: parameterized macros with massive mumber of options need - "optind = 1" "Dmitry V. Levin" <ldv@alt-linux.org>. -- add athlon per-platform configuration. - -* Wed Jun 20 2001 Jeff Johnson <jbj@redhat.com> -- fix: partial sets of hardlinked files permitted in payload. -- fix: mark rpmdb files with %config to prevent erasure on downgrade. -- work around a (possible) compiler problem on ia64. -- fix: rpm -qlv link count for directories dinna include '..'. -- fix: rpm -qlv size for directories should be zero. -- add --noghost to filter non-payload files from rpm -qlv output. -- add %%{_gnu} macro to append "-gnu" to %%{_target_platform} to - support --target/--host flavored %%configure. Legacy behavior - available by undefining %%{_gnu}. - -* Tue Jun 19 2001 Jeff Johnson <jbj@redhat.com> -- finalize per-header methods, accessing headerFoo through vector. -- make package ordering loop messages debug, not warning. - -* Mon Jun 18 2001 Jeff Johnson <jbj@redhat.com> -- preliminary abstraction to support per-header methods. - -* Sun Jun 17 2001 Jeff Johnson <jbj@redhat.com> -- alpha: don't add "()(64bit)" dependency markers. -- ia64/sparc: <arch>.{req,prov} identical to linux.{req,prov}. -- add "rpmlib(ScriptletInterpreterArgs)" to track - %%post -p "/sbin/ldconfig -n /usr/lib" - incompatibilities. -- linux.req needs exit 0 -- popt: add POPT_ARGFLAG_SHOW_DEFAULT to display initial values (#32558). -- popt: add POPT_CONTEXT_ARG_OPTS for all opts to return 1 (#30912). -- fix: fsm reads/writes now return error on partial I/O. -- fix: Ferror returned spurious error for gzdio/bzdio. -- check for API/ABI creep, diddle up some compatibility. - -* Thu Jun 14 2001 Jeff Johnson <jbj@redhat.com> -- fix: db1 end-of-file not detected in legacy compatible way. -- fix: remove (harmless) chown error message from %post. -- add --target/--host to %%configure, add example cross-build/config.site - scripts to /usr/lib/rpm <arjanv@redhat.com> (#44581). -- rpmdb iterator selectors permit default/strcmp/regex/glob matching. -- rpmdb iterator selectors permit negative matches. - -* Wed Jun 13 2001 Jeff Johnson <jbj@redhat.com> -- add rpmdbSetIteratorRE() for regex matching in database iterators. -- permit rpm -qa to take RE args applied to name tag. -- permit dbiFindMatches() to use version/release patterns. -- eliminate all uses of rpmdbSetIterator{Version,Release}. - -* Tue Jun 12 2001 Jeff Johnson <jbj@redhat.com> -- remove rpmrc Provides: Yet Again, use virtual packages. -- dump cursor debugging wrappers. -- rpm --verify can disable rpmFileAttr checks. - -* Mon Jun 11 2001 Jeff Johnson <jbj@redhat.com> -- remove dead code frpm popt table reorg. -- more CLI typedefs/prototypes moved from rpmlib.h to rpmcli.h. -- rpm --verify skips files in non-installed states. -- rpm --verify skips content checks for %ghost files. -- rpm --verify displays config/doc/gnost/license/readme atrrs for files. -- rpm --verify checks immutable header region digest if available. -- rpmbuild adds header region digest (SHA1 as string). -- use rpmTag* typedefs in new hge/hae/hme/hre header vectors. - -* Fri Jun 8 2001 Jeff Johnson <jbj@redhat.com> -- fix: QUERY_FOR_LIST file count clobbered. -- create top level rpmcli API, factor top level modes into popt tables. -- popt: add POPT_BIT_SET/POPT_BIT_CLR to API. -- autogen.sh checks for latest libtool-1.4 and automake-1.4-p2. -- rpm --verify reports failure(s) if corresponding tag is not in header. -- rpm --verify honors %config(missingok), add -v for legacy behavior. - -* Wed Jun 6 2001 Jeff Johnson <jbj@redhat.com> -- fix typos in linux.{req,prov}. -- always use db cursors. -- permit duplicates for btree indices. -- document build modes in rpmbuild.8, rpmbuild is born. -- default to dbenv with mpool, --rebuilddb with nofsync is much faster. - -* Fri Jun 1 2001 Jeff Johnson <jbj@redhat.com> -- merge sparc64/ia64 fiddles back into linux.{req,prov}. -- automagically generate perl module dependencies always. -- fix: lclint fiddles broke uCache initialization (#43139). - -* Thu May 31 2001 Jeff Johnson <jbj@redhat.com> -- return multiple suggested packages (Pawel Kolodziej <pawelk@pld.org.pl>). -- fix: return suggested packages when using Depends cache. - -* Wed May 30 2001 Jeff Johnson <jbj@redhat.com> -- fix: for busted db1, attempt chain reconnection to following record. - -* Tue May 29 2001 Jeff Johnson <jbj@redhat.com> -- eliminate db-1.85 and db-2.x configuration. -- fix: popt arg sanity checks broken, optarg != optArg. -- fix: popt range checks on floats/doubles broken. -- popt: return POPT_ERROR_ERRNO on config open/read/close failure. -- fix: popt exec doesn't add '--', --target et al no longer need '='. -- fix: popt consume-next-arg "!#:+" w/o side effect (#41956). - -* Fri May 25 2001 Jeff Johnson <jbj@redhat.com> -- perform db->verify when closing db files. - -* Wed May 23 2001 Jeff Johnson <jbj@redhat.com> -- headerFree() returns NULL, _free is C++ safe. -- remove all header region assertion failures, return NULL instead. - -* Mon May 21 2001 Jeff Johnson <jbj@redhat.com> -- fix: skip %ghost files when building packages (#38218). -- refuse to install on systems using db1. - -* Sun May 20 2001 Jeff Johnson <jbj@redhat.com> -- fix: i18n strings need 1 on sucess return code (#41313). - -* Wed May 16 2001 Jeff Johnson <jbj@redhat.com> -- fix: filter duplicate package removals (#35828). -- add armv3l arch. - -* Mon May 14 2001 Jeff Johnson <jbj@redhat.com> -- upgrade to db-3.3.4. - -* Sun May 13 2001 Jeff Johnson <jbj@redhat.com> -- add cron/logrotate scripts to save installed package filenames. - -* Thu May 10 2001 Jeff Johnson <jbj@redhat.com> -- rpm database has rpm.rpm g+w permissions to share db3 mutexes. -- expose more db3 macro configuration tokens. -- move fprint.[ch] and hash.[ch] to rpmdb directory. -- detect and fiddle incompatible mixtures of db3 env/open flags. -- add DBI_WRITECURSOR to map to db3 flags with CDB database model. -- add rpmdbSetIteratorRewrite to warn of pending lazy (re-)writes. -- harden rpmdb iterators from damaged header instance segfaults. - -* Mon May 7 2001 Jeff Johnson <jbj@redhat.com> -- use internal db-3.2.9 sources to build by default. -- don't build db1 support by default. -- create rpmdb.la so that linkage against rpm's db-3.2.9 is possible. - -* Sun May 6 2001 Jeff Johnson <jbj@redhat.com> -- fix: specfile queries with BuildArch: (#27589). - -* Sat May 5 2001 Jeff Johnson <jbj@redhat.com> -- enough lclint annotations and fiddles already. - -* Thu May 3 2001 Jeff Johnson <jbj@redhat.com> -- still more boring lclint annotations and fiddles. - -* Sun Apr 29 2001 Jeff Johnson <jbj@redhat.com> -- transaction iterator(s) need to run in reverse order on pure erasures. -- erasures not yet strict, warn & chug on unlink(2)/rmdir(2) failure. -- more boring lclint annotations and fiddles. - -* Sat Apr 28 2001 Jeff Johnson <jbj@redhat.com> -- globalize _free(3) wrapper in rpmlib.h, consistent usage throughout. -- internalize locale insensitive ctype(3) in rpmio.h -- boring lclint annotations and fiddles. - -* Thu Apr 26 2001 Jeff Johnson <jbj@redhat.com> -- fix: ineeded count wrong for overlapped, created files. - -* Wed Apr 25 2001 Jeff Johnson <jbj@redhat.com> -- fix: readlink return value clobbered by header write. - -* Mon Apr 23 2001 Jeff Johnson <jbj@redhat.com> -- regenerate rpm.8 man page from docbook glop (in max-rpm). -- lib/depends.c: diddle debugging messages. - -* Sat Apr 21 2001 Jeff Johnson <jbj@redhat.com> -- fix: s390 (and ppc?) could return CPIOERR_BAD_HEADER (#28645). -- fix: Fwrite's are optimized out by aggressive compiler(irix) (#34711). -- portability: vsnprintf/snprintf wrappers for those without (#34657). -- more info provided by rpmdepOrder() debugging messages. -- merge (compatible) changes from top-of-stack into rpmlib.h. -- cpio mappings carry dirname/basename, not absolute path. -- fix: check waitpid return code. -- remove support for v1 src rpm's. -- re-position callbacks with ts/fi in cpio payload layer. -- state machines for packages (psm.c) and payloads (fsm.c) -- add --repackage option to put erased bits back into a package. - -* Tue Apr 17 2001 Jeff Johnson <jbj@redhat.com> -- fix: s390 (and ppc?) could return CPIOERR_BAD_HEADER (#28645). -- fix: Fwrite's are optimized out by aggressive compiler(irix) (#34711). -- portability: vsnprintf/snprintf wrappers for those without (#34657). -- don't build with db1 support, don't install with packages.rpm present. - -* Wed Apr 4 2001 Jeff Johnson <jbj@redhat.com> -- fix: parameterized macro segfault (Jakub Bogusz <qboosh@pld.org.pl>) -- fix: i18n tags in rpm-2.5.x had wrong offset/length (#33478). -- fix: AIX has sizeof(uint_16) != sizeof(mode_t) verify cast needed. -- fix: zero length hard links unpacked incorrectly (#34211). -- fix: --relocate missing trailing slash (#28874,#25876). -- fix: --excludedoc shouldn't create empty doc dir (#14531). -- fix: %_netsharedpath needs to look at basenames (#26561). -- fix: --excludepath was broken (#24434). - -* Thu Mar 22 2001 Jeff Johnson <jbj@redhat.com> -- update per-interpreter dependency scripts, add sql/tcl (#20295). -- fix: rpmvercmp("1.a", "1.") returned -1, not +1 (#21392). -- add %exclude support (i.e. "everything but") to %files. - (Michael (Micksa) Slade" <micksa@knobbits.org>) -- add --with/--without popt glue for conditional builds(Tomasz Kloczko). -- python: strip header regions during unload. -- add -g to optflags in per-platform config. -- permit confgure/compile with db3-3.2.9. -- permit manifest files as args to query/verify modes. - -* Thu Mar 15 2001 Jeff Johnson <jbj@redhat.com> -- start rpm-4.0.3. -- add cpuid asm voodoo to detect athlon processors. +* Mon Sep 24 2001 Jeff Johnson <jbj@redhat.com> +- Start rpm-4.1. +- loosely wire beecrypt library into rpm. diff --git a/rpmio/Makefile.am b/rpmio/Makefile.am index e24fc8564..336a5d3ef 100644 --- a/rpmio/Makefile.am +++ b/rpmio/Makefile.am @@ -2,7 +2,7 @@ AUTOMAKE_OPTIONS = 1.4 foreign -EXTRA_DIST = tdigest.c tficl.c tkey.c trpmio.c +EXTRA_DIST = base64.c tdigest.c tficl.c tkey.c trpmio.c INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/build -I$(top_srcdir)/lib \ -I$(top_srcdir)/popt @INCPATH@ @@ -13,11 +13,15 @@ pkginc_HEADERS = \ ugid.h noinst_HEADERS = base64.h rpmio_internal.h +BEECRYPTLOBJS = $(shell cat $(top_builddir)/beecrypt/listobjs) + lib_LTLIBRARIES = librpmio.la librpmio_la_SOURCES = rpmrpc.c rpmio.c url.c macro.c \ - base64.c digest.c strcasecmp.c stubs.c \ + digest.c strcasecmp.c stubs.c \ ugid.c rpmmalloc.c rpmlog.c librpmio_la_LDFLAGS = -release @VERSION@ +librpmio_la_LIBADD = $(BEECRYPTLOBJS) +librpmio_la_DEPENDENCIES = .created # XXX Add internal libtool dependence install-data-local: @@ -25,6 +29,18 @@ install-data-local: sed -e "s|^dependency_libs='|& -lpopt|" < librpmio.la > .librpmio.la && \ mv .librpmio.la librpmio.la +$(top_builddir)/beecrypt/listobjs: + make -C $(top_builddir)/beecrypt listobjs + +.created: $(top_builddir)/beecrypt/listobjs + for lo in $(BEECRYPTLOBJS); do \ + [ -f $$lo ] || $(LN_S) $(top_builddir)/beecrypt/$$lo $$lo ; \ + done + touch $@ + +clean-local: + rm -f $(BEECRYPTLOBJS) *.o .created + .PHONY: sources sources: @echo $(librpmio_la_SOURCES:%=rpmio/%) diff --git a/rpmio/base64.c b/rpmio/base64.c index 4b95db38b..d680be2db 100644 --- a/rpmio/base64.c +++ b/rpmio/base64.c @@ -8,7 +8,7 @@ static int _debug = 0; #include "base64.h" #include "debug.h" -int B64decode (const char * s, void ** datap, size_t *lenp) +int b64decode (const char * s, void ** datap, size_t *lenp) { static /*@only@*/ char * b64dec = NULL; unsigned char *t, *te; @@ -73,7 +73,7 @@ fprintf(stderr, "%7u %02x %02x %02x %02x -> %02x %02x %02x\n", return 0; } -char * B64encode (const void * str, size_t ns) +char * b64encode (const void * str, size_t ns) { static char b64enc[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; diff --git a/rpmio/base64.h b/rpmio/base64.h index 2fecb3e5c..cf9e84303 100644 --- a/rpmio/base64.h +++ b/rpmio/base64.h @@ -17,7 +17,7 @@ extern "C" { * @return 0 on success */ /*@unused@*/ -int B64decode (const char * s, /*@out@*/ void ** datap, /*@out@*/ size_t *lenp); +int b64decode (const char * s, /*@out@*/ void ** datap, /*@out@*/ size_t *lenp); /** * Encode chunks of 3 bytes of binary input into 4 bytes of base64 output. @@ -26,7 +26,7 @@ int B64decode (const char * s, /*@out@*/ void ** datap, /*@out@*/ size_t *lenp); * @return (malloc'd) base64 string */ /*@unused@*/ -char * B64encode (const void * data, size_t ns); +char * b64encode (const void * data, size_t ns); #ifdef __cplusplus } diff --git a/rpmio/tkey.c b/rpmio/tkey.c index f9b553d4c..5e017ea28 100644 --- a/rpmio/tkey.c +++ b/rpmio/tkey.c @@ -696,8 +696,8 @@ main (int argc, char *argv[]) if (_debug) fprintf(stderr, "*** sig is\n%s\n", sig); - if ((rc = B64decode(sig, (void **)&dec, &declen)) != 0) { - fprintf(stderr, "*** B64decode returns %d\n", rc); + if ((rc = b64decode(sig, (void **)&dec, &declen)) != 0) { + fprintf(stderr, "*** b64decode returns %d\n", rc); exit(rc); } @@ -707,8 +707,8 @@ fprintf(stderr, "*** sig is\n%s\n", sig); exit(len); } - if ((enc = B64encode(dec, declen)) == NULL) { - fprintf(stderr, "*** B64encode returns %d\n", rc); + if ((enc = b64encode(dec, declen)) == NULL) { + fprintf(stderr, "*** b64encode failed\n"); exit(4); } diff --git a/tools/Makefile.am b/tools/Makefile.am index 046d3edc3..3d6846949 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -27,7 +27,7 @@ myLDADD = \ $(top_builddir)/popt/libpopt.la \ @INTLLIBS@ -LIBS = +LIBS = -lrt -lpthread #LDFLAGS = $(myLDFLAGS) LDADD = $(myLDADD) |