diff options
-rw-r--r-- | CHANGES | 1 | ||||
-rw-r--r-- | lib/rpmdb.c | 12 | ||||
-rw-r--r-- | lib/rpmdb.h | 1 | ||||
-rw-r--r-- | lib/rpminstall.c | 12 | ||||
-rw-r--r-- | lib/rpmlib.h | 5 | ||||
-rw-r--r-- | lib/transaction.c | 4 | ||||
-rw-r--r-- | po/cs.po | 98 | ||||
-rw-r--r-- | po/da.po | 98 | ||||
-rw-r--r-- | po/de.po | 98 | ||||
-rw-r--r-- | po/es.po | 98 | ||||
-rw-r--r-- | po/fi.po | 98 | ||||
-rw-r--r-- | po/fr.po | 98 | ||||
-rw-r--r-- | po/gl.po | 98 | ||||
-rw-r--r-- | po/hu.po | 98 | ||||
-rw-r--r-- | po/id.po | 98 | ||||
-rw-r--r-- | po/is.po | 98 | ||||
-rw-r--r-- | po/it.po | 98 | ||||
-rw-r--r-- | po/ja.po | 100 | ||||
-rw-r--r-- | po/ko.po | 98 | ||||
-rw-r--r-- | po/no.po | 98 | ||||
-rw-r--r-- | po/pl.po | 98 | ||||
-rw-r--r-- | po/pt.po | 98 | ||||
-rw-r--r-- | po/pt_BR.po | 98 | ||||
-rw-r--r-- | po/ro.po | 98 | ||||
-rw-r--r-- | po/rpm.pot | 98 | ||||
-rw-r--r-- | po/ru.po | 98 | ||||
-rw-r--r-- | po/sk.po | 98 | ||||
-rw-r--r-- | po/sl.po | 100 | ||||
-rw-r--r-- | po/sr.po | 98 | ||||
-rw-r--r-- | po/sv.po | 100 | ||||
-rw-r--r-- | po/tr.po | 98 | ||||
-rw-r--r-- | po/uk.po | 98 | ||||
-rw-r--r-- | rpm.spec | 5 |
33 files changed, 1312 insertions, 1282 deletions
@@ -62,6 +62,7 @@ - fix: don't count removed files if removed packages is empty set. - fix: permit '\0' as special case key (e.g. "/" in Basenames). - require --rebuilddb to convert db1 -> db3, better messages. + - fix: open all db indices before performing chroot. 3.0.4 -> 3.0.5 - handle version 4 packaging as input. diff --git a/lib/rpmdb.c b/lib/rpmdb.c index 26608bd68..cc256913a 100644 --- a/lib/rpmdb.c +++ b/lib/rpmdb.c @@ -698,6 +698,18 @@ static struct rpmdb_s dbTemplate = { _DB_MAJOR, _DB_REMOVE_ENV, _DB_FILTER_DUPS, _DB_ERRPFX }; +int rpmdbOpenAll (rpmdb rpmdb) +{ + int dbix; + + for (dbix = 0; dbix < dbiTagsMax; dbix++) { + if (rpmdb->_dbi[dbix] != NULL) + continue; + dbiOpen(rpmdb, dbiTags[dbix], rpmdb->db_flags); + } + return 0; +} + /* XXX query.c, rpminstall.c, verify.c */ int rpmdbClose (rpmdb rpmdb) { diff --git a/lib/rpmdb.h b/lib/rpmdb.h index 1ec5ec2a8..8927ba9bb 100644 --- a/lib/rpmdb.h +++ b/lib/rpmdb.h @@ -257,6 +257,7 @@ struct rpmdb_s { #define RPMDB_FLAG_JUSTCHECK (1 << 0) #define RPMDB_FLAG_MINIMAL (1 << 1) +#define RPMDB_FLAG_CHROOT (1 << 2) #ifdef __cplusplus extern "C" { diff --git a/lib/rpminstall.c b/lib/rpminstall.c index 23926e929..a86fe21da 100644 --- a/lib/rpminstall.c +++ b/lib/rpminstall.c @@ -8,7 +8,8 @@ static int hashesPrinted = 0; -static void printHash(const unsigned long amount, const unsigned long total) { +static void printHash(const unsigned long amount, const unsigned long total) +{ int hashesNeeded; if (hashesPrinted != 50) { @@ -26,10 +27,12 @@ static void printHash(const unsigned long amount, const unsigned long total) { } } -static void * showProgress(const Header h, const rpmCallbackType what, +static void * showProgress(const void * arg, const rpmCallbackType what, const unsigned long amount, const unsigned long total, - const void * pkgKey, void * data) { + const void * pkgKey, void * data) +{ + Header h = (Header) arg; char * s; int flags = (int) ((long)data); void * rc = NULL; @@ -479,7 +482,8 @@ int rpmErase(const char * rootdir, const char ** argv, int transFlags, } int rpmInstallSource(const char * rootdir, const char * arg, const char ** specFile, - char ** cookie) { + char ** cookie) +{ FD_t fd; int rc; diff --git a/lib/rpmlib.h b/lib/rpmlib.h index a39cbd708..590acaae9 100644 --- a/lib/rpmlib.h +++ b/lib/rpmlib.h @@ -352,6 +352,11 @@ int rpmdbClose ( /*@only@*/ rpmdb rpmdb); int rpmdbSync (rpmdb rpmdb); /** + * @param rpmdb rpm database + */ +int rpmdbOpenAll (rpmdb rpmdb); + +/** * Return number of instances of package in rpm database. * @param db rpm database * @param name rpm package name diff --git a/lib/transaction.c b/lib/transaction.c index e49626439..0a8c8fb15 100644 --- a/lib/transaction.c +++ b/lib/transaction.c @@ -1442,6 +1442,9 @@ int rpmRunTransactions(rpmTransactionSet ts, rpmCallbackFunction notify, xfree(s); } + /* Open all dtabase indices before installing */ + rpmdbOpenAll(ts->db); + chdir("/"); /*@-unrecog@*/ chroot(ts->root); /*@=unrecog@*/ @@ -1631,6 +1634,7 @@ int rpmRunTransactions(rpmTransactionSet ts, rpmCallbackFunction notify, /* =============================================== * Install and remove packages. */ + lastFailed = -2; for (oc = 0, fi = flList; oc < ts->orderCount; oc++, fi++) { switch (ts->order[oc].type) { @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-06-18 18:37-0400\n" +"POT-Creation-Date: 2000-06-19 07:25-0400\n" "PO-Revision-Date: 1998-10-10 10:10+0200\n" "Last-Translator: Pavel Makovec <pavelm@terminal.cz>\n" "Language-Team: Czech <pavelm@terminal.cz>\n" @@ -14,7 +14,7 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8-bit\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 +#: build.c:25 lib/rpminstall.c:253 lib/rpminstall.c:425 #, fuzzy, c-format msgid "cannot open %s/packages.rpm\n" msgstr "chyba: nelze otevřít %s%s/packages.rpm\n" @@ -3223,7 +3223,7 @@ msgstr "nelze otevřít %s: %s\n" msgid "old format source packages cannot be queried\n" msgstr "na zdrojové balíčky starého formátu se nelze dotazovat\n" -#: lib/query.c:520 lib/rpminstall.c:231 +#: lib/query.c:520 lib/rpminstall.c:234 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "nezdá se, že by %s byl balíček typu RPM\n" @@ -3288,7 +3288,7 @@ msgstr "probíhá dotaz na záznam číslo %d\n" msgid "record %d could not be read\n" msgstr "záznam %d nelze načíst\n" -#: lib/query.c:683 lib/rpminstall.c:435 +#: lib/query.c:683 lib/rpminstall.c:438 #, c-format msgid "package %s is not installed\n" msgstr "balíček %s není nainstalován\n" @@ -3453,224 +3453,224 @@ msgstr "chyba při ukládání záznamu %s do %s" msgid "error(%d) removing record %s from %s" msgstr "chyba při odstraňování záznamu %s do %s" -#: lib/rpmdb.c:773 lib/rpmdb.c:2279 +#: lib/rpmdb.c:785 lib/rpmdb.c:2291 msgid "no dbpath has been set" msgstr "nebyla nastavena dbpath" -#: lib/rpmdb.c:872 +#: lib/rpmdb.c:884 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" msgstr "" #. error -#: lib/rpmdb.c:1082 +#: lib/rpmdb.c:1094 #, fuzzy, c-format msgid "error(%d) counting packages" msgstr "chyba při hledání balíčku %s\n" -#: lib/rpmdb.c:1140 lib/rpmdb.c:1653 lib/uninstall.c:90 +#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:90 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x" msgstr "nelze číst hlavičku u %d pro vyhledání" -#: lib/rpmdb.c:1705 +#: lib/rpmdb.c:1717 #, fuzzy, c-format msgid "removing 0 %s entries.\n" msgstr "odstraňuje se položka databáze\n" -#: lib/rpmdb.c:1716 +#: lib/rpmdb.c:1728 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "odstraňuje se rejstřík skupin\n" -#: lib/rpmdb.c:1725 +#: lib/rpmdb.c:1737 #, fuzzy, c-format msgid "removing %d entries from %s index:\n" msgstr "odstraňuje se rejstřík názvů\n" -#: lib/rpmdb.c:1732 lib/rpmdb.c:1953 +#: lib/rpmdb.c:1744 lib/rpmdb.c:1965 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1865 +#: lib/rpmdb.c:1877 #, fuzzy, c-format msgid "error(%d) allocating new package instance" msgstr "chyba při hledání balíčku %s\n" -#: lib/rpmdb.c:1921 +#: lib/rpmdb.c:1933 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1937 +#: lib/rpmdb.c:1949 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "Probíhá získávání %s jako %s\n" -#: lib/rpmdb.c:1946 +#: lib/rpmdb.c:1958 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2304 +#: lib/rpmdb.c:2316 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "databáze se přestavuje v kořenovém adresáři %s\n" -#: lib/rpmdb.c:2308 +#: lib/rpmdb.c:2320 #, c-format msgid "temporary database %s already exists" msgstr "dočasná databáze %s již existuje" -#: lib/rpmdb.c:2314 +#: lib/rpmdb.c:2326 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "vytváří se adresář: %s\n" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2328 #, c-format msgid "error creating directory %s: %s" msgstr "chyba při vytváření adresáře %s: %s" -#: lib/rpmdb.c:2323 +#: lib/rpmdb.c:2335 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "otevírá se stará databáze\n" -#: lib/rpmdb.c:2332 +#: lib/rpmdb.c:2344 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "otevírá se nová databáze\n" -#: lib/rpmdb.c:2355 +#: lib/rpmdb.c:2367 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping." msgstr "záznam číslo %d v databázi je chybný -- vynechává se" -#: lib/rpmdb.c:2387 +#: lib/rpmdb.c:2399 #, c-format msgid "cannot add record originally at %d" msgstr "nelze přidat záznam - původně u %d" -#: lib/rpmdb.c:2405 +#: lib/rpmdb.c:2417 #, fuzzy msgid "failed to rebuild database: original database remains in place\n" msgstr "databázi nelze přestavit; původní databáze zůstává na svém místě\n" -#: lib/rpmdb.c:2413 +#: lib/rpmdb.c:2425 msgid "failed to replace old database with new database!\n" msgstr "starou databázi nelze nahradit novou databází!\n" -#: lib/rpmdb.c:2415 +#: lib/rpmdb.c:2427 #, fuzzy, c-format msgid "replace files in %s with files from %s to recover" msgstr "aby se obnovily, nahrazuje soubory v %s soubory z %s" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2437 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "vytváří se adresář: %s\n" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2439 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "nelze odstranit %s: %s\n" -#: lib/rpminstall.c:126 +#: lib/rpminstall.c:129 msgid "counting packages to install\n" msgstr "probíhá počítání balíčků pro instalaci\n" -#: lib/rpminstall.c:130 +#: lib/rpminstall.c:133 #, c-format msgid "found %d packages\n" msgstr "nalezeno %d balíčků\n" -#: lib/rpminstall.c:135 +#: lib/rpminstall.c:138 msgid "looking for packages to download\n" msgstr "probíhá hledání balíčků pro stažení\n" -#: lib/rpminstall.c:150 +#: lib/rpminstall.c:153 #, fuzzy, c-format msgid "skipping %s - rpmGlob failed(%d)\n" msgstr "chyba: vynechává se %s - přenos neúspěšný - %s\n" -#: lib/rpminstall.c:165 +#: lib/rpminstall.c:168 #, c-format msgid "Retrieving %s\n" msgstr "Probíhá načítání %s\n" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:175 +#: lib/rpminstall.c:178 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:179 +#: lib/rpminstall.c:182 #, fuzzy, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "chyba: vynechává se %s - přenos neúspěšný - %s\n" -#: lib/rpminstall.c:206 +#: lib/rpminstall.c:209 #, c-format msgid "retrieved %d packages\n" msgstr "získalo se %d balíčků\n" -#: lib/rpminstall.c:217 lib/rpminstall.c:360 +#: lib/rpminstall.c:220 lib/rpminstall.c:363 #, fuzzy, c-format msgid "cannot open file %s: %s\n" msgstr "nelze otevřít soubor %s: " -#: lib/rpminstall.c:235 lib/rpminstall.c:499 +#: lib/rpminstall.c:238 lib/rpminstall.c:503 #, fuzzy, c-format msgid "%s cannot be installed\n" msgstr "chyba: %s nelze nainstalovat\n" -#: lib/rpminstall.c:270 +#: lib/rpminstall.c:273 #, fuzzy, c-format msgid "package %s is not relocateable\n" msgstr "balíček %s není nainstalován\n" -#: lib/rpminstall.c:289 +#: lib/rpminstall.c:292 #, fuzzy, c-format msgid "error reading from file %s\n" msgstr "chyba při vytváření adresáře %s: %s" -#: lib/rpminstall.c:294 +#: lib/rpminstall.c:297 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:311 +#: lib/rpminstall.c:314 #, c-format msgid "found %d source and %d binary packages\n" msgstr "nalezeno %d zdrojových a %d binárních balíčků\n" -#: lib/rpminstall.c:322 +#: lib/rpminstall.c:325 msgid "failed dependencies:\n" msgstr "chybné závislosti:\n" -#: lib/rpminstall.c:340 +#: lib/rpminstall.c:343 msgid "installing binary packages\n" msgstr "probíhá instalace binárních balíčků\n" -#: lib/rpminstall.c:438 +#: lib/rpminstall.c:441 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "\"%s\" specifikuje více balíčků\n" -#: lib/rpminstall.c:461 +#: lib/rpminstall.c:464 msgid "removing these packages would break dependencies:\n" msgstr "odstranění těchto balíčků by porušilo závislosti:\n" -#: lib/rpminstall.c:488 +#: lib/rpminstall.c:492 #, fuzzy, c-format msgid "cannot open %s: %s\n" msgstr "chyba: nelze otevřít %s\n" -#: lib/rpminstall.c:494 +#: lib/rpminstall.c:498 #, c-format msgid "Installing %s\n" msgstr "Probíhá instalace %s\n" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-06-18 18:37-0400\n" +"POT-Creation-Date: 2000-06-19 07:25-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" @@ -14,7 +14,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 +#: build.c:25 lib/rpminstall.c:253 lib/rpminstall.c:425 #, c-format msgid "cannot open %s/packages.rpm\n" msgstr "" @@ -3011,7 +3011,7 @@ msgstr "" msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:520 lib/rpminstall.c:231 +#: lib/query.c:520 lib/rpminstall.c:234 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "" @@ -3075,7 +3075,7 @@ msgstr "" msgid "record %d could not be read\n" msgstr "" -#: lib/query.c:683 lib/rpminstall.c:435 +#: lib/query.c:683 lib/rpminstall.c:438 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -3238,223 +3238,223 @@ msgstr "" msgid "error(%d) removing record %s from %s" msgstr "" -#: lib/rpmdb.c:773 lib/rpmdb.c:2279 +#: lib/rpmdb.c:785 lib/rpmdb.c:2291 msgid "no dbpath has been set" msgstr "" -#: lib/rpmdb.c:872 +#: lib/rpmdb.c:884 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" msgstr "" #. error -#: lib/rpmdb.c:1082 +#: lib/rpmdb.c:1094 #, c-format msgid "error(%d) counting packages" msgstr "" -#: lib/rpmdb.c:1140 lib/rpmdb.c:1653 lib/uninstall.c:90 +#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:90 #, c-format msgid "%s: cannot read header at 0x%x" msgstr "" -#: lib/rpmdb.c:1705 +#: lib/rpmdb.c:1717 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1716 +#: lib/rpmdb.c:1728 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1725 +#: lib/rpmdb.c:1737 #, c-format msgid "removing %d entries from %s index:\n" msgstr "" -#: lib/rpmdb.c:1732 lib/rpmdb.c:1953 +#: lib/rpmdb.c:1744 lib/rpmdb.c:1965 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1865 +#: lib/rpmdb.c:1877 #, c-format msgid "error(%d) allocating new package instance" msgstr "" -#: lib/rpmdb.c:1921 +#: lib/rpmdb.c:1933 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1937 +#: lib/rpmdb.c:1949 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1946 +#: lib/rpmdb.c:1958 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2304 +#: lib/rpmdb.c:2316 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2308 +#: lib/rpmdb.c:2320 #, c-format msgid "temporary database %s already exists" msgstr "" -#: lib/rpmdb.c:2314 +#: lib/rpmdb.c:2326 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2328 #, c-format msgid "error creating directory %s: %s" msgstr "" -#: lib/rpmdb.c:2323 +#: lib/rpmdb.c:2335 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2332 +#: lib/rpmdb.c:2344 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2355 +#: lib/rpmdb.c:2367 #, c-format msgid "record number %d in database is bad -- skipping." msgstr "" -#: lib/rpmdb.c:2387 +#: lib/rpmdb.c:2399 #, c-format msgid "cannot add record originally at %d" msgstr "" -#: lib/rpmdb.c:2405 +#: lib/rpmdb.c:2417 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2413 +#: lib/rpmdb.c:2425 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2415 +#: lib/rpmdb.c:2427 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2437 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2439 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: lib/rpminstall.c:126 +#: lib/rpminstall.c:129 msgid "counting packages to install\n" msgstr "" -#: lib/rpminstall.c:130 +#: lib/rpminstall.c:133 #, c-format msgid "found %d packages\n" msgstr "" -#: lib/rpminstall.c:135 +#: lib/rpminstall.c:138 msgid "looking for packages to download\n" msgstr "" -#: lib/rpminstall.c:150 +#: lib/rpminstall.c:153 #, c-format msgid "skipping %s - rpmGlob failed(%d)\n" msgstr "" -#: lib/rpminstall.c:165 +#: lib/rpminstall.c:168 #, c-format msgid "Retrieving %s\n" msgstr "" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:175 +#: lib/rpminstall.c:178 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:179 +#: lib/rpminstall.c:182 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "" -#: lib/rpminstall.c:206 +#: lib/rpminstall.c:209 #, c-format msgid "retrieved %d packages\n" msgstr "" -#: lib/rpminstall.c:217 lib/rpminstall.c:360 +#: lib/rpminstall.c:220 lib/rpminstall.c:363 #, c-format msgid "cannot open file %s: %s\n" msgstr "" -#: lib/rpminstall.c:235 lib/rpminstall.c:499 +#: lib/rpminstall.c:238 lib/rpminstall.c:503 #, c-format msgid "%s cannot be installed\n" msgstr "" -#: lib/rpminstall.c:270 +#: lib/rpminstall.c:273 #, c-format msgid "package %s is not relocateable\n" msgstr "" -#: lib/rpminstall.c:289 +#: lib/rpminstall.c:292 #, c-format msgid "error reading from file %s\n" msgstr "" -#: lib/rpminstall.c:294 +#: lib/rpminstall.c:297 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:311 +#: lib/rpminstall.c:314 #, c-format msgid "found %d source and %d binary packages\n" msgstr "" -#: lib/rpminstall.c:322 +#: lib/rpminstall.c:325 msgid "failed dependencies:\n" msgstr "" -#: lib/rpminstall.c:340 +#: lib/rpminstall.c:343 msgid "installing binary packages\n" msgstr "" -#: lib/rpminstall.c:438 +#: lib/rpminstall.c:441 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "" -#: lib/rpminstall.c:461 +#: lib/rpminstall.c:464 msgid "removing these packages would break dependencies:\n" msgstr "" -#: lib/rpminstall.c:488 +#: lib/rpminstall.c:492 #, c-format msgid "cannot open %s: %s\n" msgstr "" -#: lib/rpminstall.c:494 +#: lib/rpminstall.c:498 #, c-format msgid "Installing %s\n" msgstr "" @@ -37,7 +37,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 2.5.2\n" -"POT-Creation-Date: 2000-06-18 18:37-0400\n" +"POT-Creation-Date: 2000-06-19 07:25-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" @@ -45,7 +45,7 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8-bit\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 +#: build.c:25 lib/rpminstall.c:253 lib/rpminstall.c:425 #, fuzzy, c-format msgid "cannot open %s/packages.rpm\n" msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n" @@ -3328,7 +3328,7 @@ msgstr "öffnen von %s fehlgeschlagen: %s\n" msgid "old format source packages cannot be queried\n" msgstr "altes Sourceformat-Paket kann nicht angefragt werden\n" -#: lib/query.c:520 lib/rpminstall.c:231 +#: lib/query.c:520 lib/rpminstall.c:234 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "%s scheint kein RPM-Paket zu sein\n" @@ -3395,7 +3395,7 @@ msgstr "ungültige Paket-Nummer: %s\n" msgid "record %d could not be read\n" msgstr "Eintrag %d konnte nicht gelesen werden\n" -#: lib/query.c:683 lib/rpminstall.c:435 +#: lib/query.c:683 lib/rpminstall.c:438 #, c-format msgid "package %s is not installed\n" msgstr "Paket %s ist nicht installiert\n" @@ -3561,232 +3561,232 @@ msgstr "Fehler bei Schreiben des Eintrags %s nach %s" msgid "error(%d) removing record %s from %s" msgstr "Fehler beim Löschen des Eintrags %s nach %s" -#: lib/rpmdb.c:773 lib/rpmdb.c:2279 +#: lib/rpmdb.c:785 lib/rpmdb.c:2291 msgid "no dbpath has been set" msgstr "ťdbpathŤ ist nicht gesetzt" -#: lib/rpmdb.c:872 +#: lib/rpmdb.c:884 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" msgstr "" #. error -#: lib/rpmdb.c:1082 +#: lib/rpmdb.c:1094 #, fuzzy, c-format msgid "error(%d) counting packages" msgstr "Fehler beim Suchen nach Paket %s\n" -#: lib/rpmdb.c:1140 lib/rpmdb.c:1653 lib/uninstall.c:90 +#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:90 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x" msgstr "kann Kopfzeilen bei %d nicht lesen, um danach zu suchen" -#: lib/rpmdb.c:1705 +#: lib/rpmdb.c:1717 #, c-format msgid "removing 0 %s entries.\n" msgstr "" # FIXME -#: lib/rpmdb.c:1716 +#: lib/rpmdb.c:1728 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "Fehler beim Löschen des Eintrags %s nach %s" # FIXME -#: lib/rpmdb.c:1725 +#: lib/rpmdb.c:1737 #, fuzzy, c-format msgid "removing %d entries from %s index:\n" msgstr "Fehler beim Löschen des Eintrags %s nach %s" -#: lib/rpmdb.c:1732 lib/rpmdb.c:1953 +#: lib/rpmdb.c:1744 lib/rpmdb.c:1965 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1865 +#: lib/rpmdb.c:1877 #, fuzzy, c-format msgid "error(%d) allocating new package instance" msgstr "Fehler beim Suchen nach Paket %s\n" -#: lib/rpmdb.c:1921 +#: lib/rpmdb.c:1933 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1937 +#: lib/rpmdb.c:1949 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1946 +#: lib/rpmdb.c:1958 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2304 +#: lib/rpmdb.c:2316 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: lib/rpmdb.c:2308 +#: lib/rpmdb.c:2320 #, c-format msgid "temporary database %s already exists" msgstr "die temporäre Datenbank %s existiert schon" -#: lib/rpmdb.c:2314 +#: lib/rpmdb.c:2326 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2328 #, c-format msgid "error creating directory %s: %s" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" -#: lib/rpmdb.c:2323 +#: lib/rpmdb.c:2335 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: lib/rpmdb.c:2332 +#: lib/rpmdb.c:2344 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: lib/rpmdb.c:2355 +#: lib/rpmdb.c:2367 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping." msgstr "" "Eintrag Nummer %d in der Datenback ist nicht in Ordnung -- wird übersprungen" -#: lib/rpmdb.c:2387 +#: lib/rpmdb.c:2399 #, c-format msgid "cannot add record originally at %d" msgstr "kann einen Eintrag hinzufügen, ursprünglich bei %d" -#: lib/rpmdb.c:2405 +#: lib/rpmdb.c:2417 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2413 +#: lib/rpmdb.c:2425 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2415 +#: lib/rpmdb.c:2427 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2437 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" # , c-format -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2439 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: lib/rpminstall.c:126 +#: lib/rpminstall.c:129 #, fuzzy msgid "counting packages to install\n" msgstr "Es wurden keine Pakete für die Installation angegeben" -#: lib/rpminstall.c:130 +#: lib/rpminstall.c:133 #, fuzzy, c-format msgid "found %d packages\n" msgstr "Anfrage an alle Pakete" -#: lib/rpminstall.c:135 +#: lib/rpminstall.c:138 #, fuzzy msgid "looking for packages to download\n" msgstr "Fehler beim Suchen nach Paket %s\n" -#: lib/rpminstall.c:150 +#: lib/rpminstall.c:153 #, fuzzy, c-format msgid "skipping %s - rpmGlob failed(%d)\n" msgstr "Fehler: überspringe %s - Übertragung fehlgeschlagen - %s\n" # , c-format -#: lib/rpminstall.c:165 +#: lib/rpminstall.c:168 #, c-format msgid "Retrieving %s\n" msgstr "Hole %s heraus\n" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:175 +#: lib/rpminstall.c:178 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:179 +#: lib/rpminstall.c:182 #, fuzzy, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "Fehler: überspringe %s - Übertragung fehlgeschlagen - %s\n" -#: lib/rpminstall.c:206 +#: lib/rpminstall.c:209 #, c-format msgid "retrieved %d packages\n" msgstr "" -#: lib/rpminstall.c:217 lib/rpminstall.c:360 +#: lib/rpminstall.c:220 lib/rpminstall.c:363 #, fuzzy, c-format msgid "cannot open file %s: %s\n" msgstr "kann Datei %s nicht öffnen: " -#: lib/rpminstall.c:235 lib/rpminstall.c:499 +#: lib/rpminstall.c:238 lib/rpminstall.c:503 #, fuzzy, c-format msgid "%s cannot be installed\n" msgstr "Fehler: %s kann nicht installiert werden\n" -#: lib/rpminstall.c:270 +#: lib/rpminstall.c:273 #, fuzzy, c-format msgid "package %s is not relocateable\n" msgstr "Paket %s ist nicht installiert\n" -#: lib/rpminstall.c:289 +#: lib/rpminstall.c:292 #, fuzzy, c-format msgid "error reading from file %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" -#: lib/rpminstall.c:294 +#: lib/rpminstall.c:297 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:311 +#: lib/rpminstall.c:314 #, fuzzy, c-format msgid "found %d source and %d binary packages\n" msgstr "Gruppe %s beinhaltet kein einziges Paket\n" -#: lib/rpminstall.c:322 +#: lib/rpminstall.c:325 msgid "failed dependencies:\n" msgstr "fehlgeschlagene Paket-Abhängigkeiten:\n" -#: lib/rpminstall.c:340 +#: lib/rpminstall.c:343 #, fuzzy msgid "installing binary packages\n" msgstr "Paket installieren" -#: lib/rpminstall.c:438 +#: lib/rpminstall.c:441 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "\"%s\" bezeichnet mehrere Pakete\n" # oder besser: "... verletzen" ? -#: lib/rpminstall.c:461 +#: lib/rpminstall.c:464 msgid "removing these packages would break dependencies:\n" msgstr "Das Enfernen dieser Pakete würde Paket-Abhängigkeiten missachten:\n" -#: lib/rpminstall.c:488 +#: lib/rpminstall.c:492 #, fuzzy, c-format msgid "cannot open %s: %s\n" msgstr "Fehler: kann %s nicht öffnen\n" -#: lib/rpminstall.c:494 +#: lib/rpminstall.c:498 #, c-format msgid "Installing %s\n" msgstr "Installiere %s\n" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-06-18 18:37-0400\n" +"POT-Creation-Date: 2000-06-19 07:25-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" @@ -14,7 +14,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 +#: build.c:25 lib/rpminstall.c:253 lib/rpminstall.c:425 #, c-format msgid "cannot open %s/packages.rpm\n" msgstr "" @@ -3011,7 +3011,7 @@ msgstr "" msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:520 lib/rpminstall.c:231 +#: lib/query.c:520 lib/rpminstall.c:234 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "" @@ -3075,7 +3075,7 @@ msgstr "" msgid "record %d could not be read\n" msgstr "" -#: lib/query.c:683 lib/rpminstall.c:435 +#: lib/query.c:683 lib/rpminstall.c:438 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -3238,223 +3238,223 @@ msgstr "" msgid "error(%d) removing record %s from %s" msgstr "" -#: lib/rpmdb.c:773 lib/rpmdb.c:2279 +#: lib/rpmdb.c:785 lib/rpmdb.c:2291 msgid "no dbpath has been set" msgstr "" -#: lib/rpmdb.c:872 +#: lib/rpmdb.c:884 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" msgstr "" #. error -#: lib/rpmdb.c:1082 +#: lib/rpmdb.c:1094 #, c-format msgid "error(%d) counting packages" msgstr "" -#: lib/rpmdb.c:1140 lib/rpmdb.c:1653 lib/uninstall.c:90 +#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:90 #, c-format msgid "%s: cannot read header at 0x%x" msgstr "" -#: lib/rpmdb.c:1705 +#: lib/rpmdb.c:1717 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1716 +#: lib/rpmdb.c:1728 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1725 +#: lib/rpmdb.c:1737 #, c-format msgid "removing %d entries from %s index:\n" msgstr "" -#: lib/rpmdb.c:1732 lib/rpmdb.c:1953 +#: lib/rpmdb.c:1744 lib/rpmdb.c:1965 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1865 +#: lib/rpmdb.c:1877 #, c-format msgid "error(%d) allocating new package instance" msgstr "" -#: lib/rpmdb.c:1921 +#: lib/rpmdb.c:1933 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1937 +#: lib/rpmdb.c:1949 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1946 +#: lib/rpmdb.c:1958 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2304 +#: lib/rpmdb.c:2316 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2308 +#: lib/rpmdb.c:2320 #, c-format msgid "temporary database %s already exists" msgstr "" -#: lib/rpmdb.c:2314 +#: lib/rpmdb.c:2326 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2328 #, c-format msgid "error creating directory %s: %s" msgstr "" -#: lib/rpmdb.c:2323 +#: lib/rpmdb.c:2335 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2332 +#: lib/rpmdb.c:2344 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2355 +#: lib/rpmdb.c:2367 #, c-format msgid "record number %d in database is bad -- skipping." msgstr "" -#: lib/rpmdb.c:2387 +#: lib/rpmdb.c:2399 #, c-format msgid "cannot add record originally at %d" msgstr "" -#: lib/rpmdb.c:2405 +#: lib/rpmdb.c:2417 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2413 +#: lib/rpmdb.c:2425 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2415 +#: lib/rpmdb.c:2427 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2437 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2439 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: lib/rpminstall.c:126 +#: lib/rpminstall.c:129 msgid "counting packages to install\n" msgstr "" -#: lib/rpminstall.c:130 +#: lib/rpminstall.c:133 #, c-format msgid "found %d packages\n" msgstr "" -#: lib/rpminstall.c:135 +#: lib/rpminstall.c:138 msgid "looking for packages to download\n" msgstr "" -#: lib/rpminstall.c:150 +#: lib/rpminstall.c:153 #, c-format msgid "skipping %s - rpmGlob failed(%d)\n" msgstr "" -#: lib/rpminstall.c:165 +#: lib/rpminstall.c:168 #, c-format msgid "Retrieving %s\n" msgstr "" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:175 +#: lib/rpminstall.c:178 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:179 +#: lib/rpminstall.c:182 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "" -#: lib/rpminstall.c:206 +#: lib/rpminstall.c:209 #, c-format msgid "retrieved %d packages\n" msgstr "" -#: lib/rpminstall.c:217 lib/rpminstall.c:360 +#: lib/rpminstall.c:220 lib/rpminstall.c:363 #, c-format msgid "cannot open file %s: %s\n" msgstr "" -#: lib/rpminstall.c:235 lib/rpminstall.c:499 +#: lib/rpminstall.c:238 lib/rpminstall.c:503 #, c-format msgid "%s cannot be installed\n" msgstr "" -#: lib/rpminstall.c:270 +#: lib/rpminstall.c:273 #, c-format msgid "package %s is not relocateable\n" msgstr "" -#: lib/rpminstall.c:289 +#: lib/rpminstall.c:292 #, c-format msgid "error reading from file %s\n" msgstr "" -#: lib/rpminstall.c:294 +#: lib/rpminstall.c:297 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:311 +#: lib/rpminstall.c:314 #, c-format msgid "found %d source and %d binary packages\n" msgstr "" -#: lib/rpminstall.c:322 +#: lib/rpminstall.c:325 msgid "failed dependencies:\n" msgstr "" -#: lib/rpminstall.c:340 +#: lib/rpminstall.c:343 msgid "installing binary packages\n" msgstr "" -#: lib/rpminstall.c:438 +#: lib/rpminstall.c:441 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "" -#: lib/rpminstall.c:461 +#: lib/rpminstall.c:464 msgid "removing these packages would break dependencies:\n" msgstr "" -#: lib/rpminstall.c:488 +#: lib/rpminstall.c:492 #, c-format msgid "cannot open %s: %s\n" msgstr "" -#: lib/rpminstall.c:494 +#: lib/rpminstall.c:498 #, c-format msgid "Installing %s\n" msgstr "" @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2000-06-18 18:37-0400\n" +"POT-Creation-Date: 2000-06-19 07:25-0400\n" "Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n" "Language-Team: Finnish <linux@sot.com>\n" "Content-Type: text/plain; charset=\n" @@ -20,7 +20,7 @@ msgstr "" "/home/ewt/redhat/rpm/lib/package.c /home/ewt/redhat/rpm/lib/rpmlead.c " "/home/ewt/redhat/rpm/lib/rpmrc.c\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 +#: build.c:25 lib/rpminstall.c:253 lib/rpminstall.c:425 #, fuzzy, c-format msgid "cannot open %s/packages.rpm\n" msgstr "virhe: en voi avata %s%s/packages.rpm\n" @@ -3258,7 +3258,7 @@ msgstr "%s:n avaus ei onnistunut: %s\n" msgid "old format source packages cannot be queried\n" msgstr "vanhan formaatin lähdekoodipaketteja ei voi kysellä\n" -#: lib/query.c:520 lib/rpminstall.c:231 +#: lib/query.c:520 lib/rpminstall.c:234 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "%s ei vaikuta RPM-paketilta\n" @@ -3323,7 +3323,7 @@ msgstr "virheellinen paketin numero: %s\n" msgid "record %d could not be read\n" msgstr "tietuetta %d ei voitu lukea\n" -#: lib/query.c:683 lib/rpminstall.c:435 +#: lib/query.c:683 lib/rpminstall.c:438 #, c-format msgid "package %s is not installed\n" msgstr "paketti %s ei ole asennettu\n" @@ -3488,226 +3488,226 @@ msgstr "virhe talletettaessa tietuetta %s %s:ään" msgid "error(%d) removing record %s from %s" msgstr "virhe poistettaessa tietuetta %s %s:stä" -#: lib/rpmdb.c:773 lib/rpmdb.c:2279 +#: lib/rpmdb.c:785 lib/rpmdb.c:2291 msgid "no dbpath has been set" msgstr "dbpath ei ole asetettu" -#: lib/rpmdb.c:872 +#: lib/rpmdb.c:884 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" msgstr "" #. error -#: lib/rpmdb.c:1082 +#: lib/rpmdb.c:1094 #, fuzzy, c-format msgid "error(%d) counting packages" msgstr "virhe etsittäessä pakettia %s\n" -#: lib/rpmdb.c:1140 lib/rpmdb.c:1653 lib/uninstall.c:90 +#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:90 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x" msgstr "en voi lukea headeria %d:stä päivittäessä" -#: lib/rpmdb.c:1705 +#: lib/rpmdb.c:1717 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1716 +#: lib/rpmdb.c:1728 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "virhe poistettaessa tietuetta %s %s:stä" -#: lib/rpmdb.c:1725 +#: lib/rpmdb.c:1737 #, fuzzy, c-format msgid "removing %d entries from %s index:\n" msgstr "virhe poistettaessa tietuetta %s %s:stä" -#: lib/rpmdb.c:1732 lib/rpmdb.c:1953 +#: lib/rpmdb.c:1744 lib/rpmdb.c:1965 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1865 +#: lib/rpmdb.c:1877 #, fuzzy, c-format msgid "error(%d) allocating new package instance" msgstr "virhe etsittäessä pakettia %s\n" -#: lib/rpmdb.c:1921 +#: lib/rpmdb.c:1933 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1937 +#: lib/rpmdb.c:1949 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1946 +#: lib/rpmdb.c:1958 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2304 +#: lib/rpmdb.c:2316 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: lib/rpmdb.c:2308 +#: lib/rpmdb.c:2320 #, c-format msgid "temporary database %s already exists" msgstr "väliaikainen tietokanta %s on jo olemassa" -#: lib/rpmdb.c:2314 +#: lib/rpmdb.c:2326 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2328 #, c-format msgid "error creating directory %s: %s" msgstr "virhe luotaessa hakemistoa %s: %s" -#: lib/rpmdb.c:2323 +#: lib/rpmdb.c:2335 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: lib/rpmdb.c:2332 +#: lib/rpmdb.c:2344 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: lib/rpmdb.c:2355 +#: lib/rpmdb.c:2367 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping." msgstr "tietue numero %d tietokannassa viallinen -- ohitan sen" -#: lib/rpmdb.c:2387 +#: lib/rpmdb.c:2399 #, c-format msgid "cannot add record originally at %d" msgstr "en voi lisätä tietuetta %d:stä" -#: lib/rpmdb.c:2405 +#: lib/rpmdb.c:2417 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2413 +#: lib/rpmdb.c:2425 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2415 +#: lib/rpmdb.c:2427 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2437 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2439 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "en voinut avata %s: %s" -#: lib/rpminstall.c:126 +#: lib/rpminstall.c:129 #, fuzzy msgid "counting packages to install\n" msgstr "asennukselle ei määritelty paketteja" -#: lib/rpminstall.c:130 +#: lib/rpminstall.c:133 #, fuzzy, c-format msgid "found %d packages\n" msgstr "kysele kaikki paketit" -#: lib/rpminstall.c:135 +#: lib/rpminstall.c:138 #, fuzzy msgid "looking for packages to download\n" msgstr "virhe etsittäessä pakettia %s\n" -#: lib/rpminstall.c:150 +#: lib/rpminstall.c:153 #, fuzzy, c-format msgid "skipping %s - rpmGlob failed(%d)\n" msgstr "virhe: ohitan %s:n, siirto epäonnistui - %s\n" -#: lib/rpminstall.c:165 +#: lib/rpminstall.c:168 #, c-format msgid "Retrieving %s\n" msgstr "Haen: %s\n" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:175 +#: lib/rpminstall.c:178 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:179 +#: lib/rpminstall.c:182 #, fuzzy, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "virhe: ohitan %s:n, siirto epäonnistui - %s\n" -#: lib/rpminstall.c:206 +#: lib/rpminstall.c:209 #, c-format msgid "retrieved %d packages\n" msgstr "" -#: lib/rpminstall.c:217 lib/rpminstall.c:360 +#: lib/rpminstall.c:220 lib/rpminstall.c:363 #, fuzzy, c-format msgid "cannot open file %s: %s\n" msgstr "en voinut avata tiedostoa %s: " -#: lib/rpminstall.c:235 lib/rpminstall.c:499 +#: lib/rpminstall.c:238 lib/rpminstall.c:503 #, fuzzy, c-format msgid "%s cannot be installed\n" msgstr "virhe: %s ei voida asentaa\n" -#: lib/rpminstall.c:270 +#: lib/rpminstall.c:273 #, fuzzy, c-format msgid "package %s is not relocateable\n" msgstr "paketti %s ei ole asennettu\n" -#: lib/rpminstall.c:289 +#: lib/rpminstall.c:292 #, fuzzy, c-format msgid "error reading from file %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" -#: lib/rpminstall.c:294 +#: lib/rpminstall.c:297 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:311 +#: lib/rpminstall.c:314 #, fuzzy, c-format msgid "found %d source and %d binary packages\n" msgstr "ryhmässä %s ei ole paketteja\n" -#: lib/rpminstall.c:322 +#: lib/rpminstall.c:325 msgid "failed dependencies:\n" msgstr "puuttuvat riippuvuudet:\n" -#: lib/rpminstall.c:340 +#: lib/rpminstall.c:343 #, fuzzy msgid "installing binary packages\n" msgstr "asenna paketti" -#: lib/rpminstall.c:438 +#: lib/rpminstall.c:441 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "\"%s\" määrittää useita paketteja\n" -#: lib/rpminstall.c:461 +#: lib/rpminstall.c:464 msgid "removing these packages would break dependencies:\n" msgstr "näiden pakettien poisto rikkoisi riippuvuuksia:\n" -#: lib/rpminstall.c:488 +#: lib/rpminstall.c:492 #, fuzzy, c-format msgid "cannot open %s: %s\n" msgstr "virhe: en voi avata %s\n" -#: lib/rpminstall.c:494 +#: lib/rpminstall.c:498 #, c-format msgid "Installing %s\n" msgstr "Asennan: %s\n" @@ -1,7 +1,7 @@ msgid "" -msgstr "POT-Creation-Date: 2000-06-18 18:37-0400\n" +msgstr "POT-Creation-Date: 2000-06-19 07:25-0400\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 +#: build.c:25 lib/rpminstall.c:253 lib/rpminstall.c:425 #, c-format msgid "cannot open %s/packages.rpm\n" msgstr "" @@ -3244,7 +3244,7 @@ msgstr "La construction a échoué.\n" msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:520 lib/rpminstall.c:231 +#: lib/query.c:520 lib/rpminstall.c:234 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "" @@ -3309,7 +3309,7 @@ msgstr "" msgid "record %d could not be read\n" msgstr "" -#: lib/query.c:683 lib/rpminstall.c:435 +#: lib/query.c:683 lib/rpminstall.c:438 #, fuzzy, c-format msgid "package %s is not installed\n" msgstr "aucun package n'a été spécifié pour l'installation" @@ -3473,224 +3473,224 @@ msgstr "impossible d'ouvrir: %s\n" msgid "error(%d) removing record %s from %s" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpmdb.c:773 lib/rpmdb.c:2279 +#: lib/rpmdb.c:785 lib/rpmdb.c:2291 msgid "no dbpath has been set" msgstr "" -#: lib/rpmdb.c:872 +#: lib/rpmdb.c:884 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" msgstr "" #. error -#: lib/rpmdb.c:1082 +#: lib/rpmdb.c:1094 #, fuzzy, c-format msgid "error(%d) counting packages" msgstr "aucun package n'a été spécifié pour l'installation" -#: lib/rpmdb.c:1140 lib/rpmdb.c:1653 lib/uninstall.c:90 +#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:90 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x" msgstr "aucun package n'a été spécifié pour la désinstallation" -#: lib/rpmdb.c:1705 +#: lib/rpmdb.c:1717 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1716 +#: lib/rpmdb.c:1728 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1725 +#: lib/rpmdb.c:1737 #, fuzzy, c-format msgid "removing %d entries from %s index:\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpmdb.c:1732 lib/rpmdb.c:1953 +#: lib/rpmdb.c:1744 lib/rpmdb.c:1965 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1865 +#: lib/rpmdb.c:1877 #, c-format msgid "error(%d) allocating new package instance" msgstr "" -#: lib/rpmdb.c:1921 +#: lib/rpmdb.c:1933 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1937 +#: lib/rpmdb.c:1949 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1946 +#: lib/rpmdb.c:1958 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2304 +#: lib/rpmdb.c:2316 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpmdb.c:2308 +#: lib/rpmdb.c:2320 #, c-format msgid "temporary database %s already exists" msgstr "" -#: lib/rpmdb.c:2314 +#: lib/rpmdb.c:2326 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2328 #, c-format msgid "error creating directory %s: %s" msgstr "" -#: lib/rpmdb.c:2323 +#: lib/rpmdb.c:2335 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2332 +#: lib/rpmdb.c:2344 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2355 +#: lib/rpmdb.c:2367 #, c-format msgid "record number %d in database is bad -- skipping." msgstr "" -#: lib/rpmdb.c:2387 +#: lib/rpmdb.c:2399 #, c-format msgid "cannot add record originally at %d" msgstr "" -#: lib/rpmdb.c:2405 +#: lib/rpmdb.c:2417 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2413 +#: lib/rpmdb.c:2425 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2415 +#: lib/rpmdb.c:2427 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2437 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2439 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpminstall.c:126 +#: lib/rpminstall.c:129 #, fuzzy msgid "counting packages to install\n" msgstr "aucun package n'a été spécifié pour l'installation" -#: lib/rpminstall.c:130 +#: lib/rpminstall.c:133 #, c-format msgid "found %d packages\n" msgstr "" -#: lib/rpminstall.c:135 +#: lib/rpminstall.c:138 msgid "looking for packages to download\n" msgstr "" -#: lib/rpminstall.c:150 +#: lib/rpminstall.c:153 #, c-format msgid "skipping %s - rpmGlob failed(%d)\n" msgstr "" -#: lib/rpminstall.c:165 +#: lib/rpminstall.c:168 #, c-format msgid "Retrieving %s\n" msgstr "" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:175 +#: lib/rpminstall.c:178 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:179 +#: lib/rpminstall.c:182 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "" -#: lib/rpminstall.c:206 +#: lib/rpminstall.c:209 #, c-format msgid "retrieved %d packages\n" msgstr "" -#: lib/rpminstall.c:217 lib/rpminstall.c:360 +#: lib/rpminstall.c:220 lib/rpminstall.c:363 #, fuzzy, c-format msgid "cannot open file %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpminstall.c:235 lib/rpminstall.c:499 +#: lib/rpminstall.c:238 lib/rpminstall.c:503 #, fuzzy, c-format msgid "%s cannot be installed\n" msgstr "aucun package n'a été spécifié pour l'installation" -#: lib/rpminstall.c:270 +#: lib/rpminstall.c:273 #, fuzzy, c-format msgid "package %s is not relocateable\n" msgstr "aucun package n'a été spécifié pour l'installation" -#: lib/rpminstall.c:289 +#: lib/rpminstall.c:292 #, c-format msgid "error reading from file %s\n" msgstr "" -#: lib/rpminstall.c:294 +#: lib/rpminstall.c:297 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:311 +#: lib/rpminstall.c:314 #, c-format msgid "found %d source and %d binary packages\n" msgstr "" -#: lib/rpminstall.c:322 +#: lib/rpminstall.c:325 msgid "failed dependencies:\n" msgstr "" -#: lib/rpminstall.c:340 +#: lib/rpminstall.c:343 msgid "installing binary packages\n" msgstr "" -#: lib/rpminstall.c:438 +#: lib/rpminstall.c:441 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "" -#: lib/rpminstall.c:461 +#: lib/rpminstall.c:464 msgid "removing these packages would break dependencies:\n" msgstr "" -#: lib/rpminstall.c:488 +#: lib/rpminstall.c:492 #, fuzzy, c-format msgid "cannot open %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpminstall.c:494 +#: lib/rpminstall.c:498 #, c-format msgid "Installing %s\n" msgstr "" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-06-18 18:37-0400\n" +"POT-Creation-Date: 2000-06-19 07:25-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" @@ -14,7 +14,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 +#: build.c:25 lib/rpminstall.c:253 lib/rpminstall.c:425 #, c-format msgid "cannot open %s/packages.rpm\n" msgstr "" @@ -3011,7 +3011,7 @@ msgstr "" msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:520 lib/rpminstall.c:231 +#: lib/query.c:520 lib/rpminstall.c:234 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "" @@ -3075,7 +3075,7 @@ msgstr "" msgid "record %d could not be read\n" msgstr "" -#: lib/query.c:683 lib/rpminstall.c:435 +#: lib/query.c:683 lib/rpminstall.c:438 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -3238,223 +3238,223 @@ msgstr "" msgid "error(%d) removing record %s from %s" msgstr "" -#: lib/rpmdb.c:773 lib/rpmdb.c:2279 +#: lib/rpmdb.c:785 lib/rpmdb.c:2291 msgid "no dbpath has been set" msgstr "" -#: lib/rpmdb.c:872 +#: lib/rpmdb.c:884 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" msgstr "" #. error -#: lib/rpmdb.c:1082 +#: lib/rpmdb.c:1094 #, c-format msgid "error(%d) counting packages" msgstr "" -#: lib/rpmdb.c:1140 lib/rpmdb.c:1653 lib/uninstall.c:90 +#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:90 #, c-format msgid "%s: cannot read header at 0x%x" msgstr "" -#: lib/rpmdb.c:1705 +#: lib/rpmdb.c:1717 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1716 +#: lib/rpmdb.c:1728 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1725 +#: lib/rpmdb.c:1737 #, c-format msgid "removing %d entries from %s index:\n" msgstr "" -#: lib/rpmdb.c:1732 lib/rpmdb.c:1953 +#: lib/rpmdb.c:1744 lib/rpmdb.c:1965 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1865 +#: lib/rpmdb.c:1877 #, c-format msgid "error(%d) allocating new package instance" msgstr "" -#: lib/rpmdb.c:1921 +#: lib/rpmdb.c:1933 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1937 +#: lib/rpmdb.c:1949 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1946 +#: lib/rpmdb.c:1958 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2304 +#: lib/rpmdb.c:2316 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2308 +#: lib/rpmdb.c:2320 #, c-format msgid "temporary database %s already exists" msgstr "" -#: lib/rpmdb.c:2314 +#: lib/rpmdb.c:2326 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2328 #, c-format msgid "error creating directory %s: %s" msgstr "" -#: lib/rpmdb.c:2323 +#: lib/rpmdb.c:2335 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2332 +#: lib/rpmdb.c:2344 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2355 +#: lib/rpmdb.c:2367 #, c-format msgid "record number %d in database is bad -- skipping." msgstr "" -#: lib/rpmdb.c:2387 +#: lib/rpmdb.c:2399 #, c-format msgid "cannot add record originally at %d" msgstr "" -#: lib/rpmdb.c:2405 +#: lib/rpmdb.c:2417 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2413 +#: lib/rpmdb.c:2425 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2415 +#: lib/rpmdb.c:2427 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2437 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2439 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: lib/rpminstall.c:126 +#: lib/rpminstall.c:129 msgid "counting packages to install\n" msgstr "" -#: lib/rpminstall.c:130 +#: lib/rpminstall.c:133 #, c-format msgid "found %d packages\n" msgstr "" -#: lib/rpminstall.c:135 +#: lib/rpminstall.c:138 msgid "looking for packages to download\n" msgstr "" -#: lib/rpminstall.c:150 +#: lib/rpminstall.c:153 #, c-format msgid "skipping %s - rpmGlob failed(%d)\n" msgstr "" -#: lib/rpminstall.c:165 +#: lib/rpminstall.c:168 #, c-format msgid "Retrieving %s\n" msgstr "" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:175 +#: lib/rpminstall.c:178 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:179 +#: lib/rpminstall.c:182 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "" -#: lib/rpminstall.c:206 +#: lib/rpminstall.c:209 #, c-format msgid "retrieved %d packages\n" msgstr "" -#: lib/rpminstall.c:217 lib/rpminstall.c:360 +#: lib/rpminstall.c:220 lib/rpminstall.c:363 #, c-format msgid "cannot open file %s: %s\n" msgstr "" -#: lib/rpminstall.c:235 lib/rpminstall.c:499 +#: lib/rpminstall.c:238 lib/rpminstall.c:503 #, c-format msgid "%s cannot be installed\n" msgstr "" -#: lib/rpminstall.c:270 +#: lib/rpminstall.c:273 #, c-format msgid "package %s is not relocateable\n" msgstr "" -#: lib/rpminstall.c:289 +#: lib/rpminstall.c:292 #, c-format msgid "error reading from file %s\n" msgstr "" -#: lib/rpminstall.c:294 +#: lib/rpminstall.c:297 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:311 +#: lib/rpminstall.c:314 #, c-format msgid "found %d source and %d binary packages\n" msgstr "" -#: lib/rpminstall.c:322 +#: lib/rpminstall.c:325 msgid "failed dependencies:\n" msgstr "" -#: lib/rpminstall.c:340 +#: lib/rpminstall.c:343 msgid "installing binary packages\n" msgstr "" -#: lib/rpminstall.c:438 +#: lib/rpminstall.c:441 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "" -#: lib/rpminstall.c:461 +#: lib/rpminstall.c:464 msgid "removing these packages would break dependencies:\n" msgstr "" -#: lib/rpminstall.c:488 +#: lib/rpminstall.c:492 #, c-format msgid "cannot open %s: %s\n" msgstr "" -#: lib/rpminstall.c:494 +#: lib/rpminstall.c:498 #, c-format msgid "Installing %s\n" msgstr "" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-06-18 18:37-0400\n" +"POT-Creation-Date: 2000-06-19 07:25-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" @@ -14,7 +14,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 +#: build.c:25 lib/rpminstall.c:253 lib/rpminstall.c:425 #, c-format msgid "cannot open %s/packages.rpm\n" msgstr "" @@ -3011,7 +3011,7 @@ msgstr "" msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:520 lib/rpminstall.c:231 +#: lib/query.c:520 lib/rpminstall.c:234 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "" @@ -3075,7 +3075,7 @@ msgstr "" msgid "record %d could not be read\n" msgstr "" -#: lib/query.c:683 lib/rpminstall.c:435 +#: lib/query.c:683 lib/rpminstall.c:438 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -3238,223 +3238,223 @@ msgstr "" msgid "error(%d) removing record %s from %s" msgstr "" -#: lib/rpmdb.c:773 lib/rpmdb.c:2279 +#: lib/rpmdb.c:785 lib/rpmdb.c:2291 msgid "no dbpath has been set" msgstr "" -#: lib/rpmdb.c:872 +#: lib/rpmdb.c:884 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" msgstr "" #. error -#: lib/rpmdb.c:1082 +#: lib/rpmdb.c:1094 #, c-format msgid "error(%d) counting packages" msgstr "" -#: lib/rpmdb.c:1140 lib/rpmdb.c:1653 lib/uninstall.c:90 +#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:90 #, c-format msgid "%s: cannot read header at 0x%x" msgstr "" -#: lib/rpmdb.c:1705 +#: lib/rpmdb.c:1717 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1716 +#: lib/rpmdb.c:1728 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1725 +#: lib/rpmdb.c:1737 #, c-format msgid "removing %d entries from %s index:\n" msgstr "" -#: lib/rpmdb.c:1732 lib/rpmdb.c:1953 +#: lib/rpmdb.c:1744 lib/rpmdb.c:1965 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1865 +#: lib/rpmdb.c:1877 #, c-format msgid "error(%d) allocating new package instance" msgstr "" -#: lib/rpmdb.c:1921 +#: lib/rpmdb.c:1933 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1937 +#: lib/rpmdb.c:1949 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1946 +#: lib/rpmdb.c:1958 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2304 +#: lib/rpmdb.c:2316 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2308 +#: lib/rpmdb.c:2320 #, c-format msgid "temporary database %s already exists" msgstr "" -#: lib/rpmdb.c:2314 +#: lib/rpmdb.c:2326 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2328 #, c-format msgid "error creating directory %s: %s" msgstr "" -#: lib/rpmdb.c:2323 +#: lib/rpmdb.c:2335 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2332 +#: lib/rpmdb.c:2344 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2355 +#: lib/rpmdb.c:2367 #, c-format msgid "record number %d in database is bad -- skipping." msgstr "" -#: lib/rpmdb.c:2387 +#: lib/rpmdb.c:2399 #, c-format msgid "cannot add record originally at %d" msgstr "" -#: lib/rpmdb.c:2405 +#: lib/rpmdb.c:2417 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2413 +#: lib/rpmdb.c:2425 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2415 +#: lib/rpmdb.c:2427 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2437 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2439 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: lib/rpminstall.c:126 +#: lib/rpminstall.c:129 msgid "counting packages to install\n" msgstr "" -#: lib/rpminstall.c:130 +#: lib/rpminstall.c:133 #, c-format msgid "found %d packages\n" msgstr "" -#: lib/rpminstall.c:135 +#: lib/rpminstall.c:138 msgid "looking for packages to download\n" msgstr "" -#: lib/rpminstall.c:150 +#: lib/rpminstall.c:153 #, c-format msgid "skipping %s - rpmGlob failed(%d)\n" msgstr "" -#: lib/rpminstall.c:165 +#: lib/rpminstall.c:168 #, c-format msgid "Retrieving %s\n" msgstr "" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:175 +#: lib/rpminstall.c:178 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:179 +#: lib/rpminstall.c:182 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "" -#: lib/rpminstall.c:206 +#: lib/rpminstall.c:209 #, c-format msgid "retrieved %d packages\n" msgstr "" -#: lib/rpminstall.c:217 lib/rpminstall.c:360 +#: lib/rpminstall.c:220 lib/rpminstall.c:363 #, c-format msgid "cannot open file %s: %s\n" msgstr "" -#: lib/rpminstall.c:235 lib/rpminstall.c:499 +#: lib/rpminstall.c:238 lib/rpminstall.c:503 #, c-format msgid "%s cannot be installed\n" msgstr "" -#: lib/rpminstall.c:270 +#: lib/rpminstall.c:273 #, c-format msgid "package %s is not relocateable\n" msgstr "" -#: lib/rpminstall.c:289 +#: lib/rpminstall.c:292 #, c-format msgid "error reading from file %s\n" msgstr "" -#: lib/rpminstall.c:294 +#: lib/rpminstall.c:297 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:311 +#: lib/rpminstall.c:314 #, c-format msgid "found %d source and %d binary packages\n" msgstr "" -#: lib/rpminstall.c:322 +#: lib/rpminstall.c:325 msgid "failed dependencies:\n" msgstr "" -#: lib/rpminstall.c:340 +#: lib/rpminstall.c:343 msgid "installing binary packages\n" msgstr "" -#: lib/rpminstall.c:438 +#: lib/rpminstall.c:441 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "" -#: lib/rpminstall.c:461 +#: lib/rpminstall.c:464 msgid "removing these packages would break dependencies:\n" msgstr "" -#: lib/rpminstall.c:488 +#: lib/rpminstall.c:492 #, c-format msgid "cannot open %s: %s\n" msgstr "" -#: lib/rpminstall.c:494 +#: lib/rpminstall.c:498 #, c-format msgid "Installing %s\n" msgstr "" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-06-18 18:37-0400\n" +"POT-Creation-Date: 2000-06-19 07:25-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" @@ -14,7 +14,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 +#: build.c:25 lib/rpminstall.c:253 lib/rpminstall.c:425 #, c-format msgid "cannot open %s/packages.rpm\n" msgstr "" @@ -3011,7 +3011,7 @@ msgstr "" msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:520 lib/rpminstall.c:231 +#: lib/query.c:520 lib/rpminstall.c:234 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "" @@ -3075,7 +3075,7 @@ msgstr "" msgid "record %d could not be read\n" msgstr "" -#: lib/query.c:683 lib/rpminstall.c:435 +#: lib/query.c:683 lib/rpminstall.c:438 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -3238,223 +3238,223 @@ msgstr "" msgid "error(%d) removing record %s from %s" msgstr "" -#: lib/rpmdb.c:773 lib/rpmdb.c:2279 +#: lib/rpmdb.c:785 lib/rpmdb.c:2291 msgid "no dbpath has been set" msgstr "" -#: lib/rpmdb.c:872 +#: lib/rpmdb.c:884 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" msgstr "" #. error -#: lib/rpmdb.c:1082 +#: lib/rpmdb.c:1094 #, c-format msgid "error(%d) counting packages" msgstr "" -#: lib/rpmdb.c:1140 lib/rpmdb.c:1653 lib/uninstall.c:90 +#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:90 #, c-format msgid "%s: cannot read header at 0x%x" msgstr "" -#: lib/rpmdb.c:1705 +#: lib/rpmdb.c:1717 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1716 +#: lib/rpmdb.c:1728 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1725 +#: lib/rpmdb.c:1737 #, c-format msgid "removing %d entries from %s index:\n" msgstr "" -#: lib/rpmdb.c:1732 lib/rpmdb.c:1953 +#: lib/rpmdb.c:1744 lib/rpmdb.c:1965 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1865 +#: lib/rpmdb.c:1877 #, c-format msgid "error(%d) allocating new package instance" msgstr "" -#: lib/rpmdb.c:1921 +#: lib/rpmdb.c:1933 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1937 +#: lib/rpmdb.c:1949 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1946 +#: lib/rpmdb.c:1958 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2304 +#: lib/rpmdb.c:2316 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2308 +#: lib/rpmdb.c:2320 #, c-format msgid "temporary database %s already exists" msgstr "" -#: lib/rpmdb.c:2314 +#: lib/rpmdb.c:2326 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2328 #, c-format msgid "error creating directory %s: %s" msgstr "" -#: lib/rpmdb.c:2323 +#: lib/rpmdb.c:2335 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2332 +#: lib/rpmdb.c:2344 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2355 +#: lib/rpmdb.c:2367 #, c-format msgid "record number %d in database is bad -- skipping." msgstr "" -#: lib/rpmdb.c:2387 +#: lib/rpmdb.c:2399 #, c-format msgid "cannot add record originally at %d" msgstr "" -#: lib/rpmdb.c:2405 +#: lib/rpmdb.c:2417 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2413 +#: lib/rpmdb.c:2425 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2415 +#: lib/rpmdb.c:2427 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2437 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2439 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: lib/rpminstall.c:126 +#: lib/rpminstall.c:129 msgid "counting packages to install\n" msgstr "" -#: lib/rpminstall.c:130 +#: lib/rpminstall.c:133 #, c-format msgid "found %d packages\n" msgstr "" -#: lib/rpminstall.c:135 +#: lib/rpminstall.c:138 msgid "looking for packages to download\n" msgstr "" -#: lib/rpminstall.c:150 +#: lib/rpminstall.c:153 #, c-format msgid "skipping %s - rpmGlob failed(%d)\n" msgstr "" -#: lib/rpminstall.c:165 +#: lib/rpminstall.c:168 #, c-format msgid "Retrieving %s\n" msgstr "" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:175 +#: lib/rpminstall.c:178 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:179 +#: lib/rpminstall.c:182 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "" -#: lib/rpminstall.c:206 +#: lib/rpminstall.c:209 #, c-format msgid "retrieved %d packages\n" msgstr "" -#: lib/rpminstall.c:217 lib/rpminstall.c:360 +#: lib/rpminstall.c:220 lib/rpminstall.c:363 #, c-format msgid "cannot open file %s: %s\n" msgstr "" -#: lib/rpminstall.c:235 lib/rpminstall.c:499 +#: lib/rpminstall.c:238 lib/rpminstall.c:503 #, c-format msgid "%s cannot be installed\n" msgstr "" -#: lib/rpminstall.c:270 +#: lib/rpminstall.c:273 #, c-format msgid "package %s is not relocateable\n" msgstr "" -#: lib/rpminstall.c:289 +#: lib/rpminstall.c:292 #, c-format msgid "error reading from file %s\n" msgstr "" -#: lib/rpminstall.c:294 +#: lib/rpminstall.c:297 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:311 +#: lib/rpminstall.c:314 #, c-format msgid "found %d source and %d binary packages\n" msgstr "" -#: lib/rpminstall.c:322 +#: lib/rpminstall.c:325 msgid "failed dependencies:\n" msgstr "" -#: lib/rpminstall.c:340 +#: lib/rpminstall.c:343 msgid "installing binary packages\n" msgstr "" -#: lib/rpminstall.c:438 +#: lib/rpminstall.c:441 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "" -#: lib/rpminstall.c:461 +#: lib/rpminstall.c:464 msgid "removing these packages would break dependencies:\n" msgstr "" -#: lib/rpminstall.c:488 +#: lib/rpminstall.c:492 #, c-format msgid "cannot open %s: %s\n" msgstr "" -#: lib/rpminstall.c:494 +#: lib/rpminstall.c:498 #, c-format msgid "Installing %s\n" msgstr "" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 1.0\n" -"POT-Creation-Date: 2000-06-18 18:37-0400\n" +"POT-Creation-Date: 2000-06-19 07:25-0400\n" "PO-Revision-Date: 2000-06-16 02:20+0000\n" "Last-Translator: Richard Allen <ra@hp.is>\n" "Language-Team: is <kde-isl@mmedia.is>\n" @@ -9,7 +9,7 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8-bit\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 +#: build.c:25 lib/rpminstall.c:253 lib/rpminstall.c:425 #, c-format msgid "cannot open %s/packages.rpm\n" msgstr "get ekki opnađ %s/packages.rpm\n" @@ -3006,7 +3006,7 @@ msgstr "" msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:520 lib/rpminstall.c:231 +#: lib/query.c:520 lib/rpminstall.c:234 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "" @@ -3070,7 +3070,7 @@ msgstr "" msgid "record %d could not be read\n" msgstr "" -#: lib/query.c:683 lib/rpminstall.c:435 +#: lib/query.c:683 lib/rpminstall.c:438 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -3233,223 +3233,223 @@ msgstr "" msgid "error(%d) removing record %s from %s" msgstr "" -#: lib/rpmdb.c:773 lib/rpmdb.c:2279 +#: lib/rpmdb.c:785 lib/rpmdb.c:2291 msgid "no dbpath has been set" msgstr "" -#: lib/rpmdb.c:872 +#: lib/rpmdb.c:884 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" msgstr "" #. error -#: lib/rpmdb.c:1082 +#: lib/rpmdb.c:1094 #, c-format msgid "error(%d) counting packages" msgstr "" -#: lib/rpmdb.c:1140 lib/rpmdb.c:1653 lib/uninstall.c:90 +#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:90 #, c-format msgid "%s: cannot read header at 0x%x" msgstr "" -#: lib/rpmdb.c:1705 +#: lib/rpmdb.c:1717 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1716 +#: lib/rpmdb.c:1728 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1725 +#: lib/rpmdb.c:1737 #, c-format msgid "removing %d entries from %s index:\n" msgstr "" -#: lib/rpmdb.c:1732 lib/rpmdb.c:1953 +#: lib/rpmdb.c:1744 lib/rpmdb.c:1965 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1865 +#: lib/rpmdb.c:1877 #, c-format msgid "error(%d) allocating new package instance" msgstr "" -#: lib/rpmdb.c:1921 +#: lib/rpmdb.c:1933 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1937 +#: lib/rpmdb.c:1949 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1946 +#: lib/rpmdb.c:1958 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2304 +#: lib/rpmdb.c:2316 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2308 +#: lib/rpmdb.c:2320 #, c-format msgid "temporary database %s already exists" msgstr "" -#: lib/rpmdb.c:2314 +#: lib/rpmdb.c:2326 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2328 #, c-format msgid "error creating directory %s: %s" msgstr "" -#: lib/rpmdb.c:2323 +#: lib/rpmdb.c:2335 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2332 +#: lib/rpmdb.c:2344 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2355 +#: lib/rpmdb.c:2367 #, c-format msgid "record number %d in database is bad -- skipping." msgstr "" -#: lib/rpmdb.c:2387 +#: lib/rpmdb.c:2399 #, c-format msgid "cannot add record originally at %d" msgstr "" -#: lib/rpmdb.c:2405 +#: lib/rpmdb.c:2417 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2413 +#: lib/rpmdb.c:2425 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2415 +#: lib/rpmdb.c:2427 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2437 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2439 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: lib/rpminstall.c:126 +#: lib/rpminstall.c:129 msgid "counting packages to install\n" msgstr "" -#: lib/rpminstall.c:130 +#: lib/rpminstall.c:133 #, c-format msgid "found %d packages\n" msgstr "" -#: lib/rpminstall.c:135 +#: lib/rpminstall.c:138 msgid "looking for packages to download\n" msgstr "" -#: lib/rpminstall.c:150 +#: lib/rpminstall.c:153 #, c-format msgid "skipping %s - rpmGlob failed(%d)\n" msgstr "" -#: lib/rpminstall.c:165 +#: lib/rpminstall.c:168 #, c-format msgid "Retrieving %s\n" msgstr "" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:175 +#: lib/rpminstall.c:178 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:179 +#: lib/rpminstall.c:182 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "" -#: lib/rpminstall.c:206 +#: lib/rpminstall.c:209 #, c-format msgid "retrieved %d packages\n" msgstr "" -#: lib/rpminstall.c:217 lib/rpminstall.c:360 +#: lib/rpminstall.c:220 lib/rpminstall.c:363 #, c-format msgid "cannot open file %s: %s\n" msgstr "" -#: lib/rpminstall.c:235 lib/rpminstall.c:499 +#: lib/rpminstall.c:238 lib/rpminstall.c:503 #, c-format msgid "%s cannot be installed\n" msgstr "" -#: lib/rpminstall.c:270 +#: lib/rpminstall.c:273 #, c-format msgid "package %s is not relocateable\n" msgstr "" -#: lib/rpminstall.c:289 +#: lib/rpminstall.c:292 #, c-format msgid "error reading from file %s\n" msgstr "" -#: lib/rpminstall.c:294 +#: lib/rpminstall.c:297 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:311 +#: lib/rpminstall.c:314 #, c-format msgid "found %d source and %d binary packages\n" msgstr "" -#: lib/rpminstall.c:322 +#: lib/rpminstall.c:325 msgid "failed dependencies:\n" msgstr "" -#: lib/rpminstall.c:340 +#: lib/rpminstall.c:343 msgid "installing binary packages\n" msgstr "" -#: lib/rpminstall.c:438 +#: lib/rpminstall.c:441 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "" -#: lib/rpminstall.c:461 +#: lib/rpminstall.c:464 msgid "removing these packages would break dependencies:\n" msgstr "" -#: lib/rpminstall.c:488 +#: lib/rpminstall.c:492 #, c-format msgid "cannot open %s: %s\n" msgstr "" -#: lib/rpminstall.c:494 +#: lib/rpminstall.c:498 #, c-format msgid "Installing %s\n" msgstr "" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-06-18 18:37-0400\n" +"POT-Creation-Date: 2000-06-19 07:25-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" @@ -14,7 +14,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 +#: build.c:25 lib/rpminstall.c:253 lib/rpminstall.c:425 #, c-format msgid "cannot open %s/packages.rpm\n" msgstr "" @@ -3011,7 +3011,7 @@ msgstr "" msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:520 lib/rpminstall.c:231 +#: lib/query.c:520 lib/rpminstall.c:234 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "" @@ -3075,7 +3075,7 @@ msgstr "" msgid "record %d could not be read\n" msgstr "" -#: lib/query.c:683 lib/rpminstall.c:435 +#: lib/query.c:683 lib/rpminstall.c:438 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -3238,223 +3238,223 @@ msgstr "" msgid "error(%d) removing record %s from %s" msgstr "" -#: lib/rpmdb.c:773 lib/rpmdb.c:2279 +#: lib/rpmdb.c:785 lib/rpmdb.c:2291 msgid "no dbpath has been set" msgstr "" -#: lib/rpmdb.c:872 +#: lib/rpmdb.c:884 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" msgstr "" #. error -#: lib/rpmdb.c:1082 +#: lib/rpmdb.c:1094 #, c-format msgid "error(%d) counting packages" msgstr "" -#: lib/rpmdb.c:1140 lib/rpmdb.c:1653 lib/uninstall.c:90 +#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:90 #, c-format msgid "%s: cannot read header at 0x%x" msgstr "" -#: lib/rpmdb.c:1705 +#: lib/rpmdb.c:1717 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1716 +#: lib/rpmdb.c:1728 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1725 +#: lib/rpmdb.c:1737 #, c-format msgid "removing %d entries from %s index:\n" msgstr "" -#: lib/rpmdb.c:1732 lib/rpmdb.c:1953 +#: lib/rpmdb.c:1744 lib/rpmdb.c:1965 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1865 +#: lib/rpmdb.c:1877 #, c-format msgid "error(%d) allocating new package instance" msgstr "" -#: lib/rpmdb.c:1921 +#: lib/rpmdb.c:1933 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1937 +#: lib/rpmdb.c:1949 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1946 +#: lib/rpmdb.c:1958 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2304 +#: lib/rpmdb.c:2316 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2308 +#: lib/rpmdb.c:2320 #, c-format msgid "temporary database %s already exists" msgstr "" -#: lib/rpmdb.c:2314 +#: lib/rpmdb.c:2326 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2328 #, c-format msgid "error creating directory %s: %s" msgstr "" -#: lib/rpmdb.c:2323 +#: lib/rpmdb.c:2335 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2332 +#: lib/rpmdb.c:2344 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2355 +#: lib/rpmdb.c:2367 #, c-format msgid "record number %d in database is bad -- skipping." msgstr "" -#: lib/rpmdb.c:2387 +#: lib/rpmdb.c:2399 #, c-format msgid "cannot add record originally at %d" msgstr "" -#: lib/rpmdb.c:2405 +#: lib/rpmdb.c:2417 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2413 +#: lib/rpmdb.c:2425 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2415 +#: lib/rpmdb.c:2427 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2437 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2439 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: lib/rpminstall.c:126 +#: lib/rpminstall.c:129 msgid "counting packages to install\n" msgstr "" -#: lib/rpminstall.c:130 +#: lib/rpminstall.c:133 #, c-format msgid "found %d packages\n" msgstr "" -#: lib/rpminstall.c:135 +#: lib/rpminstall.c:138 msgid "looking for packages to download\n" msgstr "" -#: lib/rpminstall.c:150 +#: lib/rpminstall.c:153 #, c-format msgid "skipping %s - rpmGlob failed(%d)\n" msgstr "" -#: lib/rpminstall.c:165 +#: lib/rpminstall.c:168 #, c-format msgid "Retrieving %s\n" msgstr "" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:175 +#: lib/rpminstall.c:178 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:179 +#: lib/rpminstall.c:182 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "" -#: lib/rpminstall.c:206 +#: lib/rpminstall.c:209 #, c-format msgid "retrieved %d packages\n" msgstr "" -#: lib/rpminstall.c:217 lib/rpminstall.c:360 +#: lib/rpminstall.c:220 lib/rpminstall.c:363 #, c-format msgid "cannot open file %s: %s\n" msgstr "" -#: lib/rpminstall.c:235 lib/rpminstall.c:499 +#: lib/rpminstall.c:238 lib/rpminstall.c:503 #, c-format msgid "%s cannot be installed\n" msgstr "" -#: lib/rpminstall.c:270 +#: lib/rpminstall.c:273 #, c-format msgid "package %s is not relocateable\n" msgstr "" -#: lib/rpminstall.c:289 +#: lib/rpminstall.c:292 #, c-format msgid "error reading from file %s\n" msgstr "" -#: lib/rpminstall.c:294 +#: lib/rpminstall.c:297 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:311 +#: lib/rpminstall.c:314 #, c-format msgid "found %d source and %d binary packages\n" msgstr "" -#: lib/rpminstall.c:322 +#: lib/rpminstall.c:325 msgid "failed dependencies:\n" msgstr "" -#: lib/rpminstall.c:340 +#: lib/rpminstall.c:343 msgid "installing binary packages\n" msgstr "" -#: lib/rpminstall.c:438 +#: lib/rpminstall.c:441 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "" -#: lib/rpminstall.c:461 +#: lib/rpminstall.c:464 msgid "removing these packages would break dependencies:\n" msgstr "" -#: lib/rpminstall.c:488 +#: lib/rpminstall.c:492 #, c-format msgid "cannot open %s: %s\n" msgstr "" -#: lib/rpminstall.c:494 +#: lib/rpminstall.c:498 #, c-format msgid "Installing %s\n" msgstr "" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm-3.0.4\n" -"POT-Creation-Date: 2000-06-18 18:37-0400\n" +"POT-Creation-Date: 2000-06-19 07:25-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" @@ -14,7 +14,7 @@ msgstr "" "Content-Type: text/plain; charset=EUC-JP\n" "Content-Transfer-Encoding: EUC-JP\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 +#: build.c:25 lib/rpminstall.c:253 lib/rpminstall.c:425 #, fuzzy, c-format msgid "cannot open %s/packages.rpm\n" msgstr "%s/packages.rpm ¤ňĽŞĄźĽ×Ľó¤Ç¤¤Ţ¤ť¤ó\n" @@ -127,7 +127,7 @@ msgstr "copyright ¤Ź¤˘¤ę¤Ţ¤ť¤ó!\n" # build root [BuildRoot] # net share [ĽÍĽĂĽČśŚÍ] # reloate [şĆÇŰĂÖ/°ÜĆ°¤š¤ë] -# $Id: ja.po,v 1.76 2000/06/18 22:38:38 jbj Exp $ +# $Id: ja.po,v 1.77 2000/06/19 11:35:30 jbj Exp $ #: rpm.c:177 rpmqv.c:256 #, c-format msgid "rpm: %s\n" @@ -3200,7 +3200,7 @@ msgstr "%s ¤ÎĽŞĄźĽ×Ľó¤ËźşÇÔ: %s\n" msgid "old format source packages cannot be queried\n" msgstr "ľěˇÁź°¤ÎĽ˝ĄźĽšĽŃĽĂĽąĄźĽ¸¤ňĚ䤤šç¤ď¤ť¤ë¤ł¤Č¤Ď¤Ç¤¤Ţ¤ť¤ó\n" -#: lib/query.c:520 lib/rpminstall.c:231 +#: lib/query.c:520 lib/rpminstall.c:234 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "%s ¤Ď RPM ĽŃĽĂĽąĄźĽ¸¤Ç¤Ď¤˘¤ę¤Ţ¤ť¤ó\n" @@ -3265,7 +3265,7 @@ msgstr "ĽŃĽĂĽąĄźĽ¸ĽěĽłĄźĽÉČÖšć %d\n" msgid "record %d could not be read\n" msgstr "ĽěĽłĄźĽÉ %d ¤ňĆɤळ¤Č¤Ź¤Ç¤¤Ţ¤ť¤ó¤Ç¤ˇ¤ż\n" -#: lib/query.c:683 lib/rpminstall.c:435 +#: lib/query.c:683 lib/rpminstall.c:438 #, c-format msgid "package %s is not installed\n" msgstr "ĽŃĽĂĽąĄźĽ¸ %s ¤ĎĽ¤ĽóĽšĽČĄźĽë¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó\n" @@ -3430,225 +3430,225 @@ msgstr "ĽěĽłĄźĽÉ %s ¤ň %s ¤ËĽšĽČĽ˘¤ÇĽ¨ĽéĄź " msgid "error(%d) removing record %s from %s" msgstr "ĽěĽłĄźĽÉ %s ¤ň %s ¤Ëşď˝ü¤ÇĽ¨ĽéĄź" -#: lib/rpmdb.c:773 lib/rpmdb.c:2279 +#: lib/rpmdb.c:785 lib/rpmdb.c:2291 msgid "no dbpath has been set" msgstr "dbpath ¤ŹŔßÄꤾ¤ě¤Ć¤¤¤Ţ¤ť¤ó" -#: lib/rpmdb.c:872 +#: lib/rpmdb.c:884 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" msgstr "" #. error -#: lib/rpmdb.c:1082 +#: lib/rpmdb.c:1094 #, fuzzy, c-format msgid "error(%d) counting packages" msgstr "ĽŃĽĂĽąĄźĽ¸ %s ¤ÎĂľş÷Ľ¨ĽéĄź\n" -#: lib/rpmdb.c:1140 lib/rpmdb.c:1653 lib/uninstall.c:90 +#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:90 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x" msgstr "¸Ąş÷¤Î¤ż¤á¤Î %d ¤Ç ĽŘĽĂĽŔ¤ňĆɤळ¤Č¤Ź¤Ç¤¤Ţ¤ť¤ó" -#: lib/rpmdb.c:1705 +#: lib/rpmdb.c:1717 #, fuzzy, c-format msgid "removing 0 %s entries.\n" msgstr "ĽÇĄźĽżĽŮĄźĽšĽ¨ĽóĽČĽę¤ňşď˝ü¤ˇ¤Ţ¤š\n" -#: lib/rpmdb.c:1716 +#: lib/rpmdb.c:1728 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "group Ľ¤ĽóĽÇĽĂĽŻĽš¤ňşď˝ü¤ˇ¤Ţ¤š\n" -#: lib/rpmdb.c:1725 +#: lib/rpmdb.c:1737 #, fuzzy, c-format msgid "removing %d entries from %s index:\n" msgstr "name Ľ¤ĽóĽÇĽĂĽŻĽšşď˝ü¤ˇ¤Ţ¤š\n" -#: lib/rpmdb.c:1732 lib/rpmdb.c:1953 +#: lib/rpmdb.c:1744 lib/rpmdb.c:1965 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1865 +#: lib/rpmdb.c:1877 #, fuzzy, c-format msgid "error(%d) allocating new package instance" msgstr "ĽŃĽĂĽąĄźĽ¸ %s ¤ÎĂľş÷Ľ¨ĽéĄź\n" -#: lib/rpmdb.c:1921 +#: lib/rpmdb.c:1933 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1937 +#: lib/rpmdb.c:1949 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "%s ¤ň %s ¤ŘĚžÁ°¤ňĘŃšš¤ˇ¤Ţ¤š\n" -#: lib/rpmdb.c:1946 +#: lib/rpmdb.c:1958 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2304 +#: lib/rpmdb.c:2316 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "rootdir %s Ăć¤ÇĽÇĄźĽżĽŮĄźĽš¤ňşĆš˝Ăۤˇ¤Ţ¤š\n" -#: lib/rpmdb.c:2308 +#: lib/rpmdb.c:2320 #, c-format msgid "temporary database %s already exists" msgstr "°ěťţĹŞ¤ĘĽÇĄźĽżĽŮĄźĽš %s ¤Ď¤š¤Ç¤Ë¸şß¤ˇ¤Ć¤¤¤Ţ¤š" -#: lib/rpmdb.c:2314 +#: lib/rpmdb.c:2326 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "ĽÇĽŁĽěĽŻĽČĽę¤ÎşîŔŽ: %s\n" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2328 #, c-format msgid "error creating directory %s: %s" msgstr "ĽÇĽŁĽěĽŻĽČĽę %s ¤ÎşîŔŽĽ¨ĽéĄź: %s" -#: lib/rpmdb.c:2323 +#: lib/rpmdb.c:2335 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "¸Ĺ¤¤ĽÇĄźĽżĽŮĄźĽš¤ÎĽŞĄźĽ×Ľó\n" -#: lib/rpmdb.c:2332 +#: lib/rpmdb.c:2344 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "żˇ¤ˇ¤¤ĽÇĄźĽżĽŮĄźĽš¤ÎĽŞĄźĽ×Ľó\n" -#: lib/rpmdb.c:2355 +#: lib/rpmdb.c:2367 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping." msgstr "ĽÇĄźĽżĽŮĄźĽšĂć¤ÎĽěĽłĄźĽÉČÖšć %d ¤ĎÉÔŔľ¤Ç¤š -- ĽšĽĽĂĽ×¤ˇ¤Ţ¤š" -#: lib/rpmdb.c:2387 +#: lib/rpmdb.c:2399 #, c-format msgid "cannot add record originally at %d" msgstr "%d ¤Ë ĽŞĽęĽ¸ĽĘĽë¤ÎĽěĽłĄźĽÉ¤ňÉղäǤ¤Ţ¤ť¤ó" -#: lib/rpmdb.c:2405 +#: lib/rpmdb.c:2417 #, fuzzy msgid "failed to rebuild database: original database remains in place\n" msgstr "" "ĽÇĄźĽżĽŮĄźĽš¤ÎşĆš˝Ăۤ˟şÇÔ; ĽŞĽęĽ¸ĽĘĽëĽÇĄźĽżĽŮĄźĽš¤Ź¤Ţ¤Ŕ¤˝¤ł¤ËťÄ¤Ă¤Ć¤¤¤Ţ¤š\n" -#: lib/rpmdb.c:2413 +#: lib/rpmdb.c:2425 msgid "failed to replace old database with new database!\n" msgstr "¸Ĺ¤¤ĽÇĄźĽżĽŮĄźĽš¤ňżˇ¤ˇ¤¤ĽÇĄźĽżĽŮĄźĽš¤ËĂÖ¤´š¤¨¤ë¤Î¤ËźşÇÔ!\n" -#: lib/rpmdb.c:2415 +#: lib/rpmdb.c:2427 #, fuzzy, c-format msgid "replace files in %s with files from %s to recover" msgstr "%s Ăć¤ÎĽŐĽĄĽ¤Ľë¤ňĽęĽŤĽĐĄź¤š¤ë¤ż¤á¤Ë %s ¤Ť¤éĽŐĽĄĽ¤Ľë¤ČĂÖ¤´š¤¨¤Ţ¤š" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2437 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "ĽÇĽŁĽěĽŻĽČĽę¤ÎşîŔŽ: %s\n" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2439 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "ĽÇĽŁĽěĽŻĽČĽę %s ¤Îşď˝üźşÇÔ: %s\n" -#: lib/rpminstall.c:126 +#: lib/rpminstall.c:129 msgid "counting packages to install\n" msgstr "Ľ¤ĽóĽšĽČĄźĽë¤š¤ëĽŃĽĂĽąĄźĽ¸¤ňżô¤¨¤Ć¤¤¤Ţ¤š\n" -#: lib/rpminstall.c:130 +#: lib/rpminstall.c:133 #, c-format msgid "found %d packages\n" msgstr "%d ¸Ä¤ÎĽŃĽĂĽąĄźĽ¸¤ň¸Ť¤Ä¤ą¤Ţ¤ˇ¤ż\n" -#: lib/rpminstall.c:135 +#: lib/rpminstall.c:138 msgid "looking for packages to download\n" msgstr "ĽŔĽŚĽóĽíĄźĽÉ¤š¤ëĽŃĽĂĽąĄźĽ¸¤ňĂľ¤ˇ¤Ć¤¤¤Ţ¤š\n" -#: lib/rpminstall.c:150 +#: lib/rpminstall.c:153 #, fuzzy, c-format msgid "skipping %s - rpmGlob failed(%d)\n" msgstr "%s ¤ňĽšĽĽĂĽ×¤ˇ¤Ţ¤š - ĹžÁ÷źşÇÔ - %s\n" -#: lib/rpminstall.c:165 +#: lib/rpminstall.c:168 #, c-format msgid "Retrieving %s\n" msgstr "%s ¤ňźčĆŔ¤ˇ¤Ć¤¤¤Ţ¤š\n" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:175 +#: lib/rpminstall.c:178 #, c-format msgid " ... as %s\n" msgstr "%s ¤Č¤ˇ¤Ć...\n" -#: lib/rpminstall.c:179 +#: lib/rpminstall.c:182 #, fuzzy, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "%s ¤ňĽšĽĽĂĽ×¤ˇ¤Ţ¤š - ĹžÁ÷źşÇÔ - %s\n" -#: lib/rpminstall.c:206 +#: lib/rpminstall.c:209 #, c-format msgid "retrieved %d packages\n" msgstr "%d ¸Ä¤ÎĽŃĽĂĽąĄźĽ¸¤ňźčĆŔ¤ˇ¤Ţ¤ˇ¤ż\n" -#: lib/rpminstall.c:217 lib/rpminstall.c:360 +#: lib/rpminstall.c:220 lib/rpminstall.c:363 #, fuzzy, c-format msgid "cannot open file %s: %s\n" msgstr "ĽŐĽĄĽ¤Ľë %s ¤ňĽŞĄźĽ×Ľó¤Ç¤¤Ţ¤ť¤ó: %s" -#: lib/rpminstall.c:235 lib/rpminstall.c:499 +#: lib/rpminstall.c:238 lib/rpminstall.c:503 #, fuzzy, c-format msgid "%s cannot be installed\n" msgstr "%s ¤ňĽ¤ĽóĽšĽČĄźĽë¤Ç¤¤Ţ¤ť¤ó\n" -#: lib/rpminstall.c:270 +#: lib/rpminstall.c:273 #, fuzzy, c-format msgid "package %s is not relocateable\n" msgstr "ĽŃĽĂĽąĄźĽ¸ %s ¤ĎşĆÇŰĂ֤Ǥ¤Ţ¤ť¤ó" -#: lib/rpminstall.c:289 +#: lib/rpminstall.c:292 #, fuzzy, c-format msgid "error reading from file %s\n" msgstr "ĽŐĽĄĽ¤Ľë %s ¤Ť¤é¤ÎĆɤߚţ¤ßĽ¨ĽéĄź " -#: lib/rpminstall.c:294 +#: lib/rpminstall.c:297 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "ĽŐĽĄĽ¤Ľë %s ¤Ë¤Ď¤č¤ężˇ¤ˇ¤¤ RPM ¤ÎĽĐĄźĽ¸ĽçĽó¤ŹÉŹÍפǤš\n" -#: lib/rpminstall.c:311 +#: lib/rpminstall.c:314 #, c-format msgid "found %d source and %d binary packages\n" msgstr "%d ¸Ä¤ÎĽ˝ĄźĽš¤Č %d ¸Ä¤ÎĽĐĽ¤ĽĘĽęĽŃĽĂĽąĄźĽ¸¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ˇ¤ż\n" -#: lib/rpminstall.c:322 +#: lib/rpminstall.c:325 msgid "failed dependencies:\n" msgstr "°Í¸Ŕ¤ÎˇçÇĄ:\n" -#: lib/rpminstall.c:340 +#: lib/rpminstall.c:343 msgid "installing binary packages\n" msgstr "ĽĐĽ¤ĽĘĽęĽŃĽĂĽąĄźĽ¸¤ňĽ¤ĽóĽšĽČĄźĽëĂć\n" -#: lib/rpminstall.c:438 +#: lib/rpminstall.c:441 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "\"%s\" ¤ĎĘŁżô¤ÎĽŃĽĂĽąĄźĽ¸¤ňťŘÄꤡ¤Ć¤¤¤Ţ¤š\n" -#: lib/rpminstall.c:461 +#: lib/rpminstall.c:464 msgid "removing these packages would break dependencies:\n" msgstr "¤ł¤ě¤é¤ÎĽŃĽĂĽąĄźĽ¸¤ňşď˝ü¤š¤ë¤Č°Í¸Ŕ¤ňÇ˲ő¤ˇ¤Ţ¤š:\n" -#: lib/rpminstall.c:488 +#: lib/rpminstall.c:492 #, fuzzy, c-format msgid "cannot open %s: %s\n" msgstr "%s ¤ňĽŞĄźĽ×Ľó¤Ç¤¤Ţ¤ť¤ó\n" -#: lib/rpminstall.c:494 +#: lib/rpminstall.c:498 #, c-format msgid "Installing %s\n" msgstr "%s ¤ňĽ¤ĽóĽšĽČĄźĽëĂć\n" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-06-18 18:37-0400\n" +"POT-Creation-Date: 2000-06-19 07:25-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" @@ -14,7 +14,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 +#: build.c:25 lib/rpminstall.c:253 lib/rpminstall.c:425 #, c-format msgid "cannot open %s/packages.rpm\n" msgstr "" @@ -3011,7 +3011,7 @@ msgstr "" msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:520 lib/rpminstall.c:231 +#: lib/query.c:520 lib/rpminstall.c:234 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "" @@ -3075,7 +3075,7 @@ msgstr "" msgid "record %d could not be read\n" msgstr "" -#: lib/query.c:683 lib/rpminstall.c:435 +#: lib/query.c:683 lib/rpminstall.c:438 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -3238,223 +3238,223 @@ msgstr "" msgid "error(%d) removing record %s from %s" msgstr "" -#: lib/rpmdb.c:773 lib/rpmdb.c:2279 +#: lib/rpmdb.c:785 lib/rpmdb.c:2291 msgid "no dbpath has been set" msgstr "" -#: lib/rpmdb.c:872 +#: lib/rpmdb.c:884 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" msgstr "" #. error -#: lib/rpmdb.c:1082 +#: lib/rpmdb.c:1094 #, c-format msgid "error(%d) counting packages" msgstr "" -#: lib/rpmdb.c:1140 lib/rpmdb.c:1653 lib/uninstall.c:90 +#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:90 #, c-format msgid "%s: cannot read header at 0x%x" msgstr "" -#: lib/rpmdb.c:1705 +#: lib/rpmdb.c:1717 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1716 +#: lib/rpmdb.c:1728 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1725 +#: lib/rpmdb.c:1737 #, c-format msgid "removing %d entries from %s index:\n" msgstr "" -#: lib/rpmdb.c:1732 lib/rpmdb.c:1953 +#: lib/rpmdb.c:1744 lib/rpmdb.c:1965 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1865 +#: lib/rpmdb.c:1877 #, c-format msgid "error(%d) allocating new package instance" msgstr "" -#: lib/rpmdb.c:1921 +#: lib/rpmdb.c:1933 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1937 +#: lib/rpmdb.c:1949 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1946 +#: lib/rpmdb.c:1958 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2304 +#: lib/rpmdb.c:2316 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2308 +#: lib/rpmdb.c:2320 #, c-format msgid "temporary database %s already exists" msgstr "" -#: lib/rpmdb.c:2314 +#: lib/rpmdb.c:2326 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2328 #, c-format msgid "error creating directory %s: %s" msgstr "" -#: lib/rpmdb.c:2323 +#: lib/rpmdb.c:2335 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2332 +#: lib/rpmdb.c:2344 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2355 +#: lib/rpmdb.c:2367 #, c-format msgid "record number %d in database is bad -- skipping." msgstr "" -#: lib/rpmdb.c:2387 +#: lib/rpmdb.c:2399 #, c-format msgid "cannot add record originally at %d" msgstr "" -#: lib/rpmdb.c:2405 +#: lib/rpmdb.c:2417 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2413 +#: lib/rpmdb.c:2425 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2415 +#: lib/rpmdb.c:2427 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2437 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2439 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: lib/rpminstall.c:126 +#: lib/rpminstall.c:129 msgid "counting packages to install\n" msgstr "" -#: lib/rpminstall.c:130 +#: lib/rpminstall.c:133 #, c-format msgid "found %d packages\n" msgstr "" -#: lib/rpminstall.c:135 +#: lib/rpminstall.c:138 msgid "looking for packages to download\n" msgstr "" -#: lib/rpminstall.c:150 +#: lib/rpminstall.c:153 #, c-format msgid "skipping %s - rpmGlob failed(%d)\n" msgstr "" -#: lib/rpminstall.c:165 +#: lib/rpminstall.c:168 #, c-format msgid "Retrieving %s\n" msgstr "" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:175 +#: lib/rpminstall.c:178 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:179 +#: lib/rpminstall.c:182 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "" -#: lib/rpminstall.c:206 +#: lib/rpminstall.c:209 #, c-format msgid "retrieved %d packages\n" msgstr "" -#: lib/rpminstall.c:217 lib/rpminstall.c:360 +#: lib/rpminstall.c:220 lib/rpminstall.c:363 #, c-format msgid "cannot open file %s: %s\n" msgstr "" -#: lib/rpminstall.c:235 lib/rpminstall.c:499 +#: lib/rpminstall.c:238 lib/rpminstall.c:503 #, c-format msgid "%s cannot be installed\n" msgstr "" -#: lib/rpminstall.c:270 +#: lib/rpminstall.c:273 #, c-format msgid "package %s is not relocateable\n" msgstr "" -#: lib/rpminstall.c:289 +#: lib/rpminstall.c:292 #, c-format msgid "error reading from file %s\n" msgstr "" -#: lib/rpminstall.c:294 +#: lib/rpminstall.c:297 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:311 +#: lib/rpminstall.c:314 #, c-format msgid "found %d source and %d binary packages\n" msgstr "" -#: lib/rpminstall.c:322 +#: lib/rpminstall.c:325 msgid "failed dependencies:\n" msgstr "" -#: lib/rpminstall.c:340 +#: lib/rpminstall.c:343 msgid "installing binary packages\n" msgstr "" -#: lib/rpminstall.c:438 +#: lib/rpminstall.c:441 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "" -#: lib/rpminstall.c:461 +#: lib/rpminstall.c:464 msgid "removing these packages would break dependencies:\n" msgstr "" -#: lib/rpminstall.c:488 +#: lib/rpminstall.c:492 #, c-format msgid "cannot open %s: %s\n" msgstr "" -#: lib/rpminstall.c:494 +#: lib/rpminstall.c:498 #, c-format msgid "Installing %s\n" msgstr "" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-06-18 18:37-0400\n" +"POT-Creation-Date: 2000-06-19 07:25-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" @@ -14,7 +14,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 +#: build.c:25 lib/rpminstall.c:253 lib/rpminstall.c:425 #, c-format msgid "cannot open %s/packages.rpm\n" msgstr "" @@ -3011,7 +3011,7 @@ msgstr "" msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:520 lib/rpminstall.c:231 +#: lib/query.c:520 lib/rpminstall.c:234 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "" @@ -3075,7 +3075,7 @@ msgstr "" msgid "record %d could not be read\n" msgstr "" -#: lib/query.c:683 lib/rpminstall.c:435 +#: lib/query.c:683 lib/rpminstall.c:438 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -3238,223 +3238,223 @@ msgstr "" msgid "error(%d) removing record %s from %s" msgstr "" -#: lib/rpmdb.c:773 lib/rpmdb.c:2279 +#: lib/rpmdb.c:785 lib/rpmdb.c:2291 msgid "no dbpath has been set" msgstr "" -#: lib/rpmdb.c:872 +#: lib/rpmdb.c:884 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" msgstr "" #. error -#: lib/rpmdb.c:1082 +#: lib/rpmdb.c:1094 #, c-format msgid "error(%d) counting packages" msgstr "" -#: lib/rpmdb.c:1140 lib/rpmdb.c:1653 lib/uninstall.c:90 +#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:90 #, c-format msgid "%s: cannot read header at 0x%x" msgstr "" -#: lib/rpmdb.c:1705 +#: lib/rpmdb.c:1717 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1716 +#: lib/rpmdb.c:1728 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1725 +#: lib/rpmdb.c:1737 #, c-format msgid "removing %d entries from %s index:\n" msgstr "" -#: lib/rpmdb.c:1732 lib/rpmdb.c:1953 +#: lib/rpmdb.c:1744 lib/rpmdb.c:1965 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1865 +#: lib/rpmdb.c:1877 #, c-format msgid "error(%d) allocating new package instance" msgstr "" -#: lib/rpmdb.c:1921 +#: lib/rpmdb.c:1933 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1937 +#: lib/rpmdb.c:1949 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1946 +#: lib/rpmdb.c:1958 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2304 +#: lib/rpmdb.c:2316 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2308 +#: lib/rpmdb.c:2320 #, c-format msgid "temporary database %s already exists" msgstr "" -#: lib/rpmdb.c:2314 +#: lib/rpmdb.c:2326 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2328 #, c-format msgid "error creating directory %s: %s" msgstr "" -#: lib/rpmdb.c:2323 +#: lib/rpmdb.c:2335 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2332 +#: lib/rpmdb.c:2344 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2355 +#: lib/rpmdb.c:2367 #, c-format msgid "record number %d in database is bad -- skipping." msgstr "" -#: lib/rpmdb.c:2387 +#: lib/rpmdb.c:2399 #, c-format msgid "cannot add record originally at %d" msgstr "" -#: lib/rpmdb.c:2405 +#: lib/rpmdb.c:2417 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2413 +#: lib/rpmdb.c:2425 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2415 +#: lib/rpmdb.c:2427 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2437 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2439 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: lib/rpminstall.c:126 +#: lib/rpminstall.c:129 msgid "counting packages to install\n" msgstr "" -#: lib/rpminstall.c:130 +#: lib/rpminstall.c:133 #, c-format msgid "found %d packages\n" msgstr "" -#: lib/rpminstall.c:135 +#: lib/rpminstall.c:138 msgid "looking for packages to download\n" msgstr "" -#: lib/rpminstall.c:150 +#: lib/rpminstall.c:153 #, c-format msgid "skipping %s - rpmGlob failed(%d)\n" msgstr "" -#: lib/rpminstall.c:165 +#: lib/rpminstall.c:168 #, c-format msgid "Retrieving %s\n" msgstr "" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:175 +#: lib/rpminstall.c:178 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:179 +#: lib/rpminstall.c:182 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "" -#: lib/rpminstall.c:206 +#: lib/rpminstall.c:209 #, c-format msgid "retrieved %d packages\n" msgstr "" -#: lib/rpminstall.c:217 lib/rpminstall.c:360 +#: lib/rpminstall.c:220 lib/rpminstall.c:363 #, c-format msgid "cannot open file %s: %s\n" msgstr "" -#: lib/rpminstall.c:235 lib/rpminstall.c:499 +#: lib/rpminstall.c:238 lib/rpminstall.c:503 #, c-format msgid "%s cannot be installed\n" msgstr "" -#: lib/rpminstall.c:270 +#: lib/rpminstall.c:273 #, c-format msgid "package %s is not relocateable\n" msgstr "" -#: lib/rpminstall.c:289 +#: lib/rpminstall.c:292 #, c-format msgid "error reading from file %s\n" msgstr "" -#: lib/rpminstall.c:294 +#: lib/rpminstall.c:297 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:311 +#: lib/rpminstall.c:314 #, c-format msgid "found %d source and %d binary packages\n" msgstr "" -#: lib/rpminstall.c:322 +#: lib/rpminstall.c:325 msgid "failed dependencies:\n" msgstr "" -#: lib/rpminstall.c:340 +#: lib/rpminstall.c:343 msgid "installing binary packages\n" msgstr "" -#: lib/rpminstall.c:438 +#: lib/rpminstall.c:441 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "" -#: lib/rpminstall.c:461 +#: lib/rpminstall.c:464 msgid "removing these packages would break dependencies:\n" msgstr "" -#: lib/rpminstall.c:488 +#: lib/rpminstall.c:492 #, c-format msgid "cannot open %s: %s\n" msgstr "" -#: lib/rpminstall.c:494 +#: lib/rpminstall.c:498 #, c-format msgid "Installing %s\n" msgstr "" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm-3.0.2\n" -"POT-Creation-Date: 2000-06-18 18:37-0400\n" +"POT-Creation-Date: 2000-06-19 07:25-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" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8-bit\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 +#: build.c:25 lib/rpminstall.c:253 lib/rpminstall.c:425 #, c-format msgid "cannot open %s/packages.rpm\n" msgstr "nie można otworzyć %s/packages.rpm\n" @@ -3179,7 +3179,7 @@ msgstr "otwarcie %s nie powiodło się\n" msgid "old format source packages cannot be queried\n" msgstr "pakiety w starym formacie nie mogą być odpytywane\n" -#: lib/query.c:520 lib/rpminstall.c:231 +#: lib/query.c:520 lib/rpminstall.c:234 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "%s nie wygląda na pakiet RPM\n" @@ -3244,7 +3244,7 @@ msgstr "numer rekordu pakietu: %d\n" msgid "record %d could not be read\n" msgstr "nie można odczytać rekordu %d\n" -#: lib/query.c:683 lib/rpminstall.c:435 +#: lib/query.c:683 lib/rpminstall.c:438 #, c-format msgid "package %s is not installed\n" msgstr "pakiet %s nie jest zainstalowany\n" @@ -3408,11 +3408,11 @@ msgstr "błąd zapisywania rekordu %s do %s" msgid "error(%d) removing record %s from %s" msgstr "błąd usuwania rekordu %s z %s" -#: lib/rpmdb.c:773 lib/rpmdb.c:2279 +#: lib/rpmdb.c:785 lib/rpmdb.c:2291 msgid "no dbpath has been set" msgstr "ścieżka bazy danych nie została podana" -#: lib/rpmdb.c:872 +#: lib/rpmdb.c:884 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" @@ -3421,213 +3421,213 @@ msgstr "" "nowym formacie" #. error -#: lib/rpmdb.c:1082 +#: lib/rpmdb.c:1094 #, fuzzy, c-format msgid "error(%d) counting packages" msgstr "błąd szukania pakietu %s\n" -#: lib/rpmdb.c:1140 lib/rpmdb.c:1653 lib/uninstall.c:90 +#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:90 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x" msgstr "nie można odczytać nagłówka przy %d dla poszukiwania" -#: lib/rpmdb.c:1705 +#: lib/rpmdb.c:1717 #, fuzzy, c-format msgid "removing 0 %s entries.\n" msgstr "usuwanie wpisu w bazie\n" -#: lib/rpmdb.c:1716 +#: lib/rpmdb.c:1728 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "usuwanie indeksu grupy\n" -#: lib/rpmdb.c:1725 +#: lib/rpmdb.c:1737 #, fuzzy, c-format msgid "removing %d entries from %s index:\n" msgstr "usuwanie indeksu nazw\n" -#: lib/rpmdb.c:1732 lib/rpmdb.c:1953 +#: lib/rpmdb.c:1744 lib/rpmdb.c:1965 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1865 +#: lib/rpmdb.c:1877 #, fuzzy, c-format msgid "error(%d) allocating new package instance" msgstr "błąd szukania pakietu %s\n" -#: lib/rpmdb.c:1921 +#: lib/rpmdb.c:1933 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1937 +#: lib/rpmdb.c:1949 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "zmiana nazwy %s na %s\n" -#: lib/rpmdb.c:1946 +#: lib/rpmdb.c:1958 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2304 +#: lib/rpmdb.c:2316 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "odbudowywuję bazę danych w rootdir %s\n" -#: lib/rpmdb.c:2308 +#: lib/rpmdb.c:2320 #, c-format msgid "temporary database %s already exists" msgstr "tymczasowa baza danych %s już istnieje" -#: lib/rpmdb.c:2314 +#: lib/rpmdb.c:2326 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "tworzenie katalogu: %s\n" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2328 #, c-format msgid "error creating directory %s: %s" msgstr "błąd przy tworzeniu katalogu %s: %s" -#: lib/rpmdb.c:2323 +#: lib/rpmdb.c:2335 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "otwieranie starej bazy danych\n" -#: lib/rpmdb.c:2332 +#: lib/rpmdb.c:2344 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "otwieranie nowej bazy danych\n" -#: lib/rpmdb.c:2355 +#: lib/rpmdb.c:2367 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping." msgstr "rekord numer %d w bazie danych jest błędny -- rekord pominięto" -#: lib/rpmdb.c:2387 +#: lib/rpmdb.c:2399 #, c-format msgid "cannot add record originally at %d" msgstr "nie można dodać rekordu oryginalnie przy %d" -#: lib/rpmdb.c:2405 +#: lib/rpmdb.c:2417 #, 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" -#: lib/rpmdb.c:2413 +#: lib/rpmdb.c:2425 msgid "failed to replace old database with new database!\n" msgstr "zamiana starej bazy na nową nie powiodła się!\n" -#: lib/rpmdb.c:2415 +#: lib/rpmdb.c:2427 #, 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" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2437 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "tworzenie katalogu: %s\n" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2439 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "usunięcie katalogu %s nie powiodło się: %s\n" -#: lib/rpminstall.c:126 +#: lib/rpminstall.c:129 msgid "counting packages to install\n" msgstr "zliczanie pakietów do zainstalowania\n" -#: lib/rpminstall.c:130 +#: lib/rpminstall.c:133 #, c-format msgid "found %d packages\n" msgstr "znaleziono %d pakietów\n" -#: lib/rpminstall.c:135 +#: lib/rpminstall.c:138 msgid "looking for packages to download\n" msgstr "szukanie pakietów do ściągnięcia\n" -#: lib/rpminstall.c:150 +#: lib/rpminstall.c:153 #, fuzzy, c-format msgid "skipping %s - rpmGlob failed(%d)\n" msgstr "%s pomijany - transmisja %s nie powiodła się\n" -#: lib/rpminstall.c:165 +#: lib/rpminstall.c:168 #, c-format msgid "Retrieving %s\n" msgstr "Ściąganie %s\n" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:175 +#: lib/rpminstall.c:178 #, c-format msgid " ... as %s\n" msgstr "... jako %s\n" -#: lib/rpminstall.c:179 +#: lib/rpminstall.c:182 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "%s pomijany - transmisja %s nie powiodła się\n" -#: lib/rpminstall.c:206 +#: lib/rpminstall.c:209 #, c-format msgid "retrieved %d packages\n" msgstr "ściągnięto %d pakietów\n" -#: lib/rpminstall.c:217 lib/rpminstall.c:360 +#: lib/rpminstall.c:220 lib/rpminstall.c:363 #, fuzzy, c-format msgid "cannot open file %s: %s\n" msgstr "nie można otworzyć pliku %s: %s" -#: lib/rpminstall.c:235 lib/rpminstall.c:499 +#: lib/rpminstall.c:238 lib/rpminstall.c:503 #, c-format msgid "%s cannot be installed\n" msgstr "%s nie może być zainstalowany\n" -#: lib/rpminstall.c:270 +#: lib/rpminstall.c:273 #, c-format msgid "package %s is not relocateable\n" msgstr "pakiet %s nie jest przesuwalny\n" -#: lib/rpminstall.c:289 +#: lib/rpminstall.c:292 #, c-format msgid "error reading from file %s\n" msgstr "błąd czytania z pliku %s\n" -#: lib/rpminstall.c:294 +#: lib/rpminstall.c:297 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "plik %s wymaga nowszej wersji RPM\n" -#: lib/rpminstall.c:311 +#: lib/rpminstall.c:314 #, c-format msgid "found %d source and %d binary packages\n" msgstr "znaleziono %d pakietów źródłowych i %d binarnych\n" -#: lib/rpminstall.c:322 +#: lib/rpminstall.c:325 msgid "failed dependencies:\n" msgstr "niespełnione zależności:\n" -#: lib/rpminstall.c:340 +#: lib/rpminstall.c:343 msgid "installing binary packages\n" msgstr "instalacja pakietów binarnych\n" -#: lib/rpminstall.c:438 +#: lib/rpminstall.c:441 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "\"%s\" określa wiele pakietów\n" -#: lib/rpminstall.c:461 +#: lib/rpminstall.c:464 msgid "removing these packages would break dependencies:\n" msgstr "usunięcie tych pakietów zerwie zależności:\n" -#: lib/rpminstall.c:488 +#: lib/rpminstall.c:492 #, fuzzy, c-format msgid "cannot open %s: %s\n" msgstr "nie można otworzyć %s\n" -#: lib/rpminstall.c:494 +#: lib/rpminstall.c:498 #, c-format msgid "Installing %s\n" msgstr "Instalacja %s\n" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-06-18 18:37-0400\n" +"POT-Creation-Date: 2000-06-19 07:25-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" @@ -14,7 +14,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 +#: build.c:25 lib/rpminstall.c:253 lib/rpminstall.c:425 #, c-format msgid "cannot open %s/packages.rpm\n" msgstr "" @@ -3011,7 +3011,7 @@ msgstr "" msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:520 lib/rpminstall.c:231 +#: lib/query.c:520 lib/rpminstall.c:234 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "" @@ -3075,7 +3075,7 @@ msgstr "" msgid "record %d could not be read\n" msgstr "" -#: lib/query.c:683 lib/rpminstall.c:435 +#: lib/query.c:683 lib/rpminstall.c:438 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -3238,223 +3238,223 @@ msgstr "" msgid "error(%d) removing record %s from %s" msgstr "" -#: lib/rpmdb.c:773 lib/rpmdb.c:2279 +#: lib/rpmdb.c:785 lib/rpmdb.c:2291 msgid "no dbpath has been set" msgstr "" -#: lib/rpmdb.c:872 +#: lib/rpmdb.c:884 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" msgstr "" #. error -#: lib/rpmdb.c:1082 +#: lib/rpmdb.c:1094 #, c-format msgid "error(%d) counting packages" msgstr "" -#: lib/rpmdb.c:1140 lib/rpmdb.c:1653 lib/uninstall.c:90 +#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:90 #, c-format msgid "%s: cannot read header at 0x%x" msgstr "" -#: lib/rpmdb.c:1705 +#: lib/rpmdb.c:1717 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1716 +#: lib/rpmdb.c:1728 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1725 +#: lib/rpmdb.c:1737 #, c-format msgid "removing %d entries from %s index:\n" msgstr "" -#: lib/rpmdb.c:1732 lib/rpmdb.c:1953 +#: lib/rpmdb.c:1744 lib/rpmdb.c:1965 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1865 +#: lib/rpmdb.c:1877 #, c-format msgid "error(%d) allocating new package instance" msgstr "" -#: lib/rpmdb.c:1921 +#: lib/rpmdb.c:1933 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1937 +#: lib/rpmdb.c:1949 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1946 +#: lib/rpmdb.c:1958 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2304 +#: lib/rpmdb.c:2316 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2308 +#: lib/rpmdb.c:2320 #, c-format msgid "temporary database %s already exists" msgstr "" -#: lib/rpmdb.c:2314 +#: lib/rpmdb.c:2326 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2328 #, c-format msgid "error creating directory %s: %s" msgstr "" -#: lib/rpmdb.c:2323 +#: lib/rpmdb.c:2335 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2332 +#: lib/rpmdb.c:2344 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2355 +#: lib/rpmdb.c:2367 #, c-format msgid "record number %d in database is bad -- skipping." msgstr "" -#: lib/rpmdb.c:2387 +#: lib/rpmdb.c:2399 #, c-format msgid "cannot add record originally at %d" msgstr "" -#: lib/rpmdb.c:2405 +#: lib/rpmdb.c:2417 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2413 +#: lib/rpmdb.c:2425 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2415 +#: lib/rpmdb.c:2427 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2437 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2439 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: lib/rpminstall.c:126 +#: lib/rpminstall.c:129 msgid "counting packages to install\n" msgstr "" -#: lib/rpminstall.c:130 +#: lib/rpminstall.c:133 #, c-format msgid "found %d packages\n" msgstr "" -#: lib/rpminstall.c:135 +#: lib/rpminstall.c:138 msgid "looking for packages to download\n" msgstr "" -#: lib/rpminstall.c:150 +#: lib/rpminstall.c:153 #, c-format msgid "skipping %s - rpmGlob failed(%d)\n" msgstr "" -#: lib/rpminstall.c:165 +#: lib/rpminstall.c:168 #, c-format msgid "Retrieving %s\n" msgstr "" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:175 +#: lib/rpminstall.c:178 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:179 +#: lib/rpminstall.c:182 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "" -#: lib/rpminstall.c:206 +#: lib/rpminstall.c:209 #, c-format msgid "retrieved %d packages\n" msgstr "" -#: lib/rpminstall.c:217 lib/rpminstall.c:360 +#: lib/rpminstall.c:220 lib/rpminstall.c:363 #, c-format msgid "cannot open file %s: %s\n" msgstr "" -#: lib/rpminstall.c:235 lib/rpminstall.c:499 +#: lib/rpminstall.c:238 lib/rpminstall.c:503 #, c-format msgid "%s cannot be installed\n" msgstr "" -#: lib/rpminstall.c:270 +#: lib/rpminstall.c:273 #, c-format msgid "package %s is not relocateable\n" msgstr "" -#: lib/rpminstall.c:289 +#: lib/rpminstall.c:292 #, c-format msgid "error reading from file %s\n" msgstr "" -#: lib/rpminstall.c:294 +#: lib/rpminstall.c:297 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:311 +#: lib/rpminstall.c:314 #, c-format msgid "found %d source and %d binary packages\n" msgstr "" -#: lib/rpminstall.c:322 +#: lib/rpminstall.c:325 msgid "failed dependencies:\n" msgstr "" -#: lib/rpminstall.c:340 +#: lib/rpminstall.c:343 msgid "installing binary packages\n" msgstr "" -#: lib/rpminstall.c:438 +#: lib/rpminstall.c:441 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "" -#: lib/rpminstall.c:461 +#: lib/rpminstall.c:464 msgid "removing these packages would break dependencies:\n" msgstr "" -#: lib/rpminstall.c:488 +#: lib/rpminstall.c:492 #, c-format msgid "cannot open %s: %s\n" msgstr "" -#: lib/rpminstall.c:494 +#: lib/rpminstall.c:498 #, c-format msgid "Installing %s\n" msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po index 99169de5b..cf47d209f 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -2,9 +2,9 @@ # Revised by Arnaldo Carvalho de Melo <acme@conectiva.com.br>, 1998. # msgid "" -msgstr "POT-Creation-Date: 2000-06-18 18:37-0400\n" +msgstr "POT-Creation-Date: 2000-06-19 07:25-0400\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 +#: build.c:25 lib/rpminstall.c:253 lib/rpminstall.c:425 #, c-format msgid "cannot open %s/packages.rpm\n" msgstr "" @@ -3324,7 +3324,7 @@ msgstr "Construçăo falhou.\n" msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:520 lib/rpminstall.c:231 +#: lib/query.c:520 lib/rpminstall.c:234 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "" @@ -3389,7 +3389,7 @@ msgstr "" msgid "record %d could not be read\n" msgstr "" -#: lib/query.c:683 lib/rpminstall.c:435 +#: lib/query.c:683 lib/rpminstall.c:438 #, fuzzy, c-format msgid "package %s is not installed\n" msgstr "năo foi passado pacote para instalaçăo" @@ -3561,118 +3561,118 @@ msgstr "Năo consegui abrir: %s\n" msgid "error(%d) removing record %s from %s" msgstr "Năo consegui abrir: %s\n" -#: lib/rpmdb.c:773 lib/rpmdb.c:2279 +#: lib/rpmdb.c:785 lib/rpmdb.c:2291 msgid "no dbpath has been set" msgstr "" -#: lib/rpmdb.c:872 +#: lib/rpmdb.c:884 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" msgstr "" #. error -#: lib/rpmdb.c:1082 +#: lib/rpmdb.c:1094 #, fuzzy, c-format msgid "error(%d) counting packages" msgstr "năo foi passado pacote para instalaçăo" -#: lib/rpmdb.c:1140 lib/rpmdb.c:1653 lib/uninstall.c:90 +#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:90 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x" msgstr "năo foi passado pacote para desinstalaçăo" -#: lib/rpmdb.c:1705 +#: lib/rpmdb.c:1717 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1716 +#: lib/rpmdb.c:1728 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" # , c-format -#: lib/rpmdb.c:1725 +#: lib/rpmdb.c:1737 #, fuzzy, c-format msgid "removing %d entries from %s index:\n" msgstr "Năo consegui abrir: %s\n" -#: lib/rpmdb.c:1732 lib/rpmdb.c:1953 +#: lib/rpmdb.c:1744 lib/rpmdb.c:1965 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1865 +#: lib/rpmdb.c:1877 #, c-format msgid "error(%d) allocating new package instance" msgstr "" -#: lib/rpmdb.c:1921 +#: lib/rpmdb.c:1933 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1937 +#: lib/rpmdb.c:1949 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1946 +#: lib/rpmdb.c:1958 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2304 +#: lib/rpmdb.c:2316 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "reconstrua o banco de dados a partir de um banco de dados existente" -#: lib/rpmdb.c:2308 +#: lib/rpmdb.c:2320 #, c-format msgid "temporary database %s already exists" msgstr "" # , c-format -#: lib/rpmdb.c:2314 +#: lib/rpmdb.c:2326 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "Năo consegui abrir: %s\n" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2328 #, c-format msgid "error creating directory %s: %s" msgstr "" -#: lib/rpmdb.c:2323 +#: lib/rpmdb.c:2335 #, 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" -#: lib/rpmdb.c:2332 +#: lib/rpmdb.c:2344 #, 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" -#: lib/rpmdb.c:2355 +#: lib/rpmdb.c:2367 #, c-format msgid "record number %d in database is bad -- skipping." msgstr "" -#: lib/rpmdb.c:2387 +#: lib/rpmdb.c:2399 #, c-format msgid "cannot add record originally at %d" msgstr "" -#: lib/rpmdb.c:2405 +#: lib/rpmdb.c:2417 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2413 +#: lib/rpmdb.c:2425 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2415 +#: lib/rpmdb.c:2427 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" @@ -3685,32 +3685,32 @@ msgstr "" # "Content-Type: text/plain; charset=ISO-8859-1\n" # "Content-Transfer-Encoding: 8-bit\n" # , c-format -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2437 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "RPM versăo %s\n" # , c-format -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2439 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "Năo consegui abrir: %s\n" -#: lib/rpminstall.c:126 +#: lib/rpminstall.c:129 #, fuzzy msgid "counting packages to install\n" msgstr "năo foi passado pacote para instalaçăo" -#: lib/rpminstall.c:130 +#: lib/rpminstall.c:133 #, fuzzy, c-format msgid "found %d packages\n" msgstr "pesquise todos os pacotes" -#: lib/rpminstall.c:135 +#: lib/rpminstall.c:138 msgid "looking for packages to download\n" msgstr "" -#: lib/rpminstall.c:150 +#: lib/rpminstall.c:153 #, c-format msgid "skipping %s - rpmGlob failed(%d)\n" msgstr "" @@ -3723,86 +3723,86 @@ msgstr "" # "Content-Type: text/plain; charset=ISO-8859-1\n" # "Content-Transfer-Encoding: 8-bit\n" # , c-format -#: lib/rpminstall.c:165 +#: lib/rpminstall.c:168 #, fuzzy, c-format msgid "Retrieving %s\n" msgstr "RPM versăo %s\n" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:175 +#: lib/rpminstall.c:178 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:179 +#: lib/rpminstall.c:182 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "" -#: lib/rpminstall.c:206 +#: lib/rpminstall.c:209 #, c-format msgid "retrieved %d packages\n" msgstr "" # , c-format -#: lib/rpminstall.c:217 lib/rpminstall.c:360 +#: lib/rpminstall.c:220 lib/rpminstall.c:363 #, fuzzy, c-format msgid "cannot open file %s: %s\n" msgstr "Năo consegui abrir: %s\n" -#: lib/rpminstall.c:235 lib/rpminstall.c:499 +#: lib/rpminstall.c:238 lib/rpminstall.c:503 #, fuzzy, c-format msgid "%s cannot be installed\n" msgstr "năo foi passado pacote para instalaçăo" -#: lib/rpminstall.c:270 +#: lib/rpminstall.c:273 #, fuzzy, c-format msgid "package %s is not relocateable\n" msgstr "năo foi passado pacote para instalaçăo" -#: lib/rpminstall.c:289 +#: lib/rpminstall.c:292 #, c-format msgid "error reading from file %s\n" msgstr "" -#: lib/rpminstall.c:294 +#: lib/rpminstall.c:297 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:311 +#: lib/rpminstall.c:314 #, c-format msgid "found %d source and %d binary packages\n" msgstr "" -#: lib/rpminstall.c:322 +#: lib/rpminstall.c:325 #, fuzzy msgid "failed dependencies:\n" msgstr "lista dependęncias do pacote" -#: lib/rpminstall.c:340 +#: lib/rpminstall.c:343 #, fuzzy msgid "installing binary packages\n" msgstr "instale pacote" -#: lib/rpminstall.c:438 +#: lib/rpminstall.c:441 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "" -#: lib/rpminstall.c:461 +#: lib/rpminstall.c:464 #, fuzzy msgid "removing these packages would break dependencies:\n" msgstr "lista dependęncias do pacote" # , c-format -#: lib/rpminstall.c:488 +#: lib/rpminstall.c:492 #, fuzzy, c-format msgid "cannot open %s: %s\n" msgstr "Năo consegui abrir: %s\n" -#: lib/rpminstall.c:494 +#: lib/rpminstall.c:498 #, c-format msgid "Installing %s\n" msgstr "" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0\n" -"POT-Creation-Date: 2000-06-18 18:37-0400\n" +"POT-Creation-Date: 2000-06-19 07:25-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" @@ -9,7 +9,7 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8-bit\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 +#: build.c:25 lib/rpminstall.c:253 lib/rpminstall.c:425 #, c-format msgid "cannot open %s/packages.rpm\n" msgstr "" @@ -3006,7 +3006,7 @@ msgstr "" msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:520 lib/rpminstall.c:231 +#: lib/query.c:520 lib/rpminstall.c:234 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "" @@ -3070,7 +3070,7 @@ msgstr "" msgid "record %d could not be read\n" msgstr "" -#: lib/query.c:683 lib/rpminstall.c:435 +#: lib/query.c:683 lib/rpminstall.c:438 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -3233,223 +3233,223 @@ msgstr "" msgid "error(%d) removing record %s from %s" msgstr "" -#: lib/rpmdb.c:773 lib/rpmdb.c:2279 +#: lib/rpmdb.c:785 lib/rpmdb.c:2291 msgid "no dbpath has been set" msgstr "" -#: lib/rpmdb.c:872 +#: lib/rpmdb.c:884 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" msgstr "" #. error -#: lib/rpmdb.c:1082 +#: lib/rpmdb.c:1094 #, c-format msgid "error(%d) counting packages" msgstr "" -#: lib/rpmdb.c:1140 lib/rpmdb.c:1653 lib/uninstall.c:90 +#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:90 #, c-format msgid "%s: cannot read header at 0x%x" msgstr "" -#: lib/rpmdb.c:1705 +#: lib/rpmdb.c:1717 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1716 +#: lib/rpmdb.c:1728 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1725 +#: lib/rpmdb.c:1737 #, c-format msgid "removing %d entries from %s index:\n" msgstr "" -#: lib/rpmdb.c:1732 lib/rpmdb.c:1953 +#: lib/rpmdb.c:1744 lib/rpmdb.c:1965 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1865 +#: lib/rpmdb.c:1877 #, c-format msgid "error(%d) allocating new package instance" msgstr "" -#: lib/rpmdb.c:1921 +#: lib/rpmdb.c:1933 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1937 +#: lib/rpmdb.c:1949 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1946 +#: lib/rpmdb.c:1958 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2304 +#: lib/rpmdb.c:2316 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2308 +#: lib/rpmdb.c:2320 #, c-format msgid "temporary database %s already exists" msgstr "" -#: lib/rpmdb.c:2314 +#: lib/rpmdb.c:2326 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2328 #, c-format msgid "error creating directory %s: %s" msgstr "" -#: lib/rpmdb.c:2323 +#: lib/rpmdb.c:2335 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2332 +#: lib/rpmdb.c:2344 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2355 +#: lib/rpmdb.c:2367 #, c-format msgid "record number %d in database is bad -- skipping." msgstr "" -#: lib/rpmdb.c:2387 +#: lib/rpmdb.c:2399 #, c-format msgid "cannot add record originally at %d" msgstr "" -#: lib/rpmdb.c:2405 +#: lib/rpmdb.c:2417 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2413 +#: lib/rpmdb.c:2425 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2415 +#: lib/rpmdb.c:2427 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2437 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2439 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: lib/rpminstall.c:126 +#: lib/rpminstall.c:129 msgid "counting packages to install\n" msgstr "" -#: lib/rpminstall.c:130 +#: lib/rpminstall.c:133 #, c-format msgid "found %d packages\n" msgstr "" -#: lib/rpminstall.c:135 +#: lib/rpminstall.c:138 msgid "looking for packages to download\n" msgstr "" -#: lib/rpminstall.c:150 +#: lib/rpminstall.c:153 #, c-format msgid "skipping %s - rpmGlob failed(%d)\n" msgstr "" -#: lib/rpminstall.c:165 +#: lib/rpminstall.c:168 #, c-format msgid "Retrieving %s\n" msgstr "" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:175 +#: lib/rpminstall.c:178 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:179 +#: lib/rpminstall.c:182 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "" -#: lib/rpminstall.c:206 +#: lib/rpminstall.c:209 #, c-format msgid "retrieved %d packages\n" msgstr "" -#: lib/rpminstall.c:217 lib/rpminstall.c:360 +#: lib/rpminstall.c:220 lib/rpminstall.c:363 #, c-format msgid "cannot open file %s: %s\n" msgstr "" -#: lib/rpminstall.c:235 lib/rpminstall.c:499 +#: lib/rpminstall.c:238 lib/rpminstall.c:503 #, c-format msgid "%s cannot be installed\n" msgstr "" -#: lib/rpminstall.c:270 +#: lib/rpminstall.c:273 #, c-format msgid "package %s is not relocateable\n" msgstr "" -#: lib/rpminstall.c:289 +#: lib/rpminstall.c:292 #, c-format msgid "error reading from file %s\n" msgstr "" -#: lib/rpminstall.c:294 +#: lib/rpminstall.c:297 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:311 +#: lib/rpminstall.c:314 #, c-format msgid "found %d source and %d binary packages\n" msgstr "" -#: lib/rpminstall.c:322 +#: lib/rpminstall.c:325 msgid "failed dependencies:\n" msgstr "" -#: lib/rpminstall.c:340 +#: lib/rpminstall.c:343 msgid "installing binary packages\n" msgstr "" -#: lib/rpminstall.c:438 +#: lib/rpminstall.c:441 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "" -#: lib/rpminstall.c:461 +#: lib/rpminstall.c:464 msgid "removing these packages would break dependencies:\n" msgstr "" -#: lib/rpminstall.c:488 +#: lib/rpminstall.c:492 #, c-format msgid "cannot open %s: %s\n" msgstr "" -#: lib/rpminstall.c:494 +#: lib/rpminstall.c:498 #, c-format msgid "Installing %s\n" msgstr "" diff --git a/po/rpm.pot b/po/rpm.pot index 772eb2202..cc7059bdc 100644 --- a/po/rpm.pot +++ b/po/rpm.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-06-18 18:37-0400\n" +"POT-Creation-Date: 2000-06-19 07:25-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" @@ -14,7 +14,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 +#: build.c:25 lib/rpminstall.c:253 lib/rpminstall.c:425 #, c-format msgid "cannot open %s/packages.rpm\n" msgstr "" @@ -3011,7 +3011,7 @@ msgstr "" msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:520 lib/rpminstall.c:231 +#: lib/query.c:520 lib/rpminstall.c:234 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "" @@ -3075,7 +3075,7 @@ msgstr "" msgid "record %d could not be read\n" msgstr "" -#: lib/query.c:683 lib/rpminstall.c:435 +#: lib/query.c:683 lib/rpminstall.c:438 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -3238,223 +3238,223 @@ msgstr "" msgid "error(%d) removing record %s from %s" msgstr "" -#: lib/rpmdb.c:773 lib/rpmdb.c:2279 +#: lib/rpmdb.c:785 lib/rpmdb.c:2291 msgid "no dbpath has been set" msgstr "" -#: lib/rpmdb.c:872 +#: lib/rpmdb.c:884 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" msgstr "" #. error -#: lib/rpmdb.c:1082 +#: lib/rpmdb.c:1094 #, c-format msgid "error(%d) counting packages" msgstr "" -#: lib/rpmdb.c:1140 lib/rpmdb.c:1653 lib/uninstall.c:90 +#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:90 #, c-format msgid "%s: cannot read header at 0x%x" msgstr "" -#: lib/rpmdb.c:1705 +#: lib/rpmdb.c:1717 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1716 +#: lib/rpmdb.c:1728 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1725 +#: lib/rpmdb.c:1737 #, c-format msgid "removing %d entries from %s index:\n" msgstr "" -#: lib/rpmdb.c:1732 lib/rpmdb.c:1953 +#: lib/rpmdb.c:1744 lib/rpmdb.c:1965 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1865 +#: lib/rpmdb.c:1877 #, c-format msgid "error(%d) allocating new package instance" msgstr "" -#: lib/rpmdb.c:1921 +#: lib/rpmdb.c:1933 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1937 +#: lib/rpmdb.c:1949 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1946 +#: lib/rpmdb.c:1958 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2304 +#: lib/rpmdb.c:2316 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2308 +#: lib/rpmdb.c:2320 #, c-format msgid "temporary database %s already exists" msgstr "" -#: lib/rpmdb.c:2314 +#: lib/rpmdb.c:2326 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2328 #, c-format msgid "error creating directory %s: %s" msgstr "" -#: lib/rpmdb.c:2323 +#: lib/rpmdb.c:2335 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2332 +#: lib/rpmdb.c:2344 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2355 +#: lib/rpmdb.c:2367 #, c-format msgid "record number %d in database is bad -- skipping." msgstr "" -#: lib/rpmdb.c:2387 +#: lib/rpmdb.c:2399 #, c-format msgid "cannot add record originally at %d" msgstr "" -#: lib/rpmdb.c:2405 +#: lib/rpmdb.c:2417 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2413 +#: lib/rpmdb.c:2425 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2415 +#: lib/rpmdb.c:2427 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2437 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2439 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: lib/rpminstall.c:126 +#: lib/rpminstall.c:129 msgid "counting packages to install\n" msgstr "" -#: lib/rpminstall.c:130 +#: lib/rpminstall.c:133 #, c-format msgid "found %d packages\n" msgstr "" -#: lib/rpminstall.c:135 +#: lib/rpminstall.c:138 msgid "looking for packages to download\n" msgstr "" -#: lib/rpminstall.c:150 +#: lib/rpminstall.c:153 #, c-format msgid "skipping %s - rpmGlob failed(%d)\n" msgstr "" -#: lib/rpminstall.c:165 +#: lib/rpminstall.c:168 #, c-format msgid "Retrieving %s\n" msgstr "" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:175 +#: lib/rpminstall.c:178 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:179 +#: lib/rpminstall.c:182 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "" -#: lib/rpminstall.c:206 +#: lib/rpminstall.c:209 #, c-format msgid "retrieved %d packages\n" msgstr "" -#: lib/rpminstall.c:217 lib/rpminstall.c:360 +#: lib/rpminstall.c:220 lib/rpminstall.c:363 #, c-format msgid "cannot open file %s: %s\n" msgstr "" -#: lib/rpminstall.c:235 lib/rpminstall.c:499 +#: lib/rpminstall.c:238 lib/rpminstall.c:503 #, c-format msgid "%s cannot be installed\n" msgstr "" -#: lib/rpminstall.c:270 +#: lib/rpminstall.c:273 #, c-format msgid "package %s is not relocateable\n" msgstr "" -#: lib/rpminstall.c:289 +#: lib/rpminstall.c:292 #, c-format msgid "error reading from file %s\n" msgstr "" -#: lib/rpminstall.c:294 +#: lib/rpminstall.c:297 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:311 +#: lib/rpminstall.c:314 #, c-format msgid "found %d source and %d binary packages\n" msgstr "" -#: lib/rpminstall.c:322 +#: lib/rpminstall.c:325 msgid "failed dependencies:\n" msgstr "" -#: lib/rpminstall.c:340 +#: lib/rpminstall.c:343 msgid "installing binary packages\n" msgstr "" -#: lib/rpminstall.c:438 +#: lib/rpminstall.c:441 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "" -#: lib/rpminstall.c:461 +#: lib/rpminstall.c:464 msgid "removing these packages would break dependencies:\n" msgstr "" -#: lib/rpminstall.c:488 +#: lib/rpminstall.c:492 #, c-format msgid "cannot open %s: %s\n" msgstr "" -#: lib/rpminstall.c:494 +#: lib/rpminstall.c:498 #, c-format msgid "Installing %s\n" msgstr "" @@ -1,13 +1,13 @@ msgid "" msgstr "" -"POT-Creation-Date: 2000-06-18 18:37-0400\n" +"POT-Creation-Date: 2000-06-19 07:25-0400\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=koi8-r\n" "Content-Transfer-Encoding: 8bit\n" "Date: 1999-05-27 17:30:00+0300\n" "From: Sergey Kubushin <ksi@ksi-linux.com>\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 +#: build.c:25 lib/rpminstall.c:253 lib/rpminstall.c:425 #, c-format msgid "cannot open %s/packages.rpm\n" msgstr "ÎĹ ÍĎÇŐ ĎÔËŇŮÔŘ %s/packages.rpm\n" @@ -3179,7 +3179,7 @@ msgstr "ĎÔËŇŮÔÉĹ %s ÎĹ ŐÄÁĚĎÓŘ\n" msgid "old format source packages cannot be queried\n" msgstr "ÚÁĐŇĎÓŮ Ë SRPM × ÓÔÁŇĎÍ ĆĎŇÍÁÔĹ ÎĹ ĐĎÄÄĹŇÖÉ×ÁŔÔÓŃ\n" -#: lib/query.c:520 lib/rpminstall.c:231 +#: lib/query.c:520 lib/rpminstall.c:234 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "%s ÎĹ ĐĎČĎÖ ÎÁ ĐÁËĹÔ RPM...\n" @@ -3244,7 +3244,7 @@ msgstr "ÚÁĐÉÓŘ ĐÁËĹÔÁ ÎĎÍĹŇ %d\n" msgid "record %d could not be read\n" msgstr "ÚÁĐÉÓŘ %d ÎĹ ŢÉÔÁĹÔÓŃ\n" -#: lib/query.c:683 lib/rpminstall.c:435 +#: lib/query.c:683 lib/rpminstall.c:438 #, c-format msgid "package %s is not installed\n" msgstr "ĐÁËĹÔ %s ÎĹ ŐÓÔÁÎĎ×ĚĹÎ\n" @@ -3408,11 +3408,11 @@ msgstr "ĎŰÉÂËÁ ÓĎČŇÁÎĹÎÉŃ ÚÁĐÉÓÉ %s × %s" msgid "error(%d) removing record %s from %s" msgstr "ĎŰÉÂËÁ ŐÄÁĚĹÎÉŃ ÚÁĐÉÓÉ %s ÉÚ %s" -#: lib/rpmdb.c:773 lib/rpmdb.c:2279 +#: lib/rpmdb.c:785 lib/rpmdb.c:2291 msgid "no dbpath has been set" msgstr "ÎĹ ŐÓÔÁÎĎ×ĚĹÎÁ dbpath" -#: lib/rpmdb.c:872 +#: lib/rpmdb.c:884 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" @@ -3421,213 +3421,213 @@ msgstr "" "ÂÁÚŮ ÎĎ×ĎÇĎ ĆĎŇÍÁÔÁ" #. error -#: lib/rpmdb.c:1082 +#: lib/rpmdb.c:1094 #, fuzzy, c-format msgid "error(%d) counting packages" msgstr "ĎŰÉÂËÁ ĐŇÉ ĐĎÉÓËĹ ĐÁËĹÔÁ %s\n" -#: lib/rpmdb.c:1140 lib/rpmdb.c:1653 lib/uninstall.c:90 +#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:90 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x" msgstr "ÎĹ ÍĎÇŐ ĐŇĎŢĹÓÔŘ ČĹÄĹŇ × %d ÄĚŃ ĐĎÉÓËÁ" -#: lib/rpmdb.c:1705 +#: lib/rpmdb.c:1717 #, fuzzy, c-format msgid "removing 0 %s entries.\n" msgstr "ŐÄÁĚŃŔ ÚÁĐÉÓŘ ÂÁÚŮ ÄÁÎÎŮČ\n" -#: lib/rpmdb.c:1716 +#: lib/rpmdb.c:1728 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "ŐÄÁĚŃŔ ÉÎÄĹËÓ ÇŇŐĐĐ\n" -#: lib/rpmdb.c:1725 +#: lib/rpmdb.c:1737 #, fuzzy, c-format msgid "removing %d entries from %s index:\n" msgstr "ŐÄÁĚŃŔ ÉÎÄĹËÓ ÉÍĹÎ\n" -#: lib/rpmdb.c:1732 lib/rpmdb.c:1953 +#: lib/rpmdb.c:1744 lib/rpmdb.c:1965 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1865 +#: lib/rpmdb.c:1877 #, fuzzy, c-format msgid "error(%d) allocating new package instance" msgstr "ĎŰÉÂËÁ ĐŇÉ ĐĎÉÓËĹ ĐÁËĹÔÁ %s\n" -#: lib/rpmdb.c:1921 +#: lib/rpmdb.c:1933 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1937 +#: lib/rpmdb.c:1949 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "ĐĹŇĹÉÍĹÎĎ×Ů×ÁŔ %s × %s\n" -#: lib/rpmdb.c:1946 +#: lib/rpmdb.c:1958 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2304 +#: lib/rpmdb.c:2316 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "ĐĹŇĹÓÔŇÁÉ×ÁŔ ÂÁÚŐ × ËĎŇÎĹ×ĎÍ ËÁÔÁĚĎÇĹ %s\n" -#: lib/rpmdb.c:2308 +#: lib/rpmdb.c:2320 #, c-format msgid "temporary database %s already exists" msgstr "×ŇĹÍĹÎÎÁŃ ÂÁÚÁ ÄÁÎÎŮČ %s ŐÖĹ ÓŐÝĹÓÔ×ŐĹÔ" -#: lib/rpmdb.c:2314 +#: lib/rpmdb.c:2326 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "ÓĎÚÄÁŔ ËÁÔÁĚĎÇ: %s\n" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2328 #, c-format msgid "error creating directory %s: %s" msgstr "ĎŰÉÂËÁ ÓĎÚÄÁÎÉŃ ËÁÔÁĚĎÇÁ %s: %s" -#: lib/rpmdb.c:2323 +#: lib/rpmdb.c:2335 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "ĎÔËŇŮ×ÁŔ ÓÔÁŇŐŔ ÂÁÚŐ\n" -#: lib/rpmdb.c:2332 +#: lib/rpmdb.c:2344 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "ĎÔËŇŮ×ÁŔ ÎĎ×ŐŔ ÂÁÚŐ\n" -#: lib/rpmdb.c:2355 +#: lib/rpmdb.c:2367 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping." msgstr "ÚÁĐÉÓŘ ÎĎÍĹŇ %d × ÂÁÚĹ ÎĹ×ĹŇÎÁ, ĐŇĎĐŐÓËÁŔ" -#: lib/rpmdb.c:2387 +#: lib/rpmdb.c:2399 #, c-format msgid "cannot add record originally at %d" msgstr "ÎĹ ÍĎÇŐ ÄĎÂÁ×ÉÔŘ ÚÁĐÉÓŘ (ĐĹŇ×ĎÎÁŢÁĚŘÎĎ × %d)" -#: lib/rpmdb.c:2405 +#: lib/rpmdb.c:2417 #, fuzzy msgid "failed to rebuild database: original database remains in place\n" msgstr "ĐĹŇĹÓÔŇĎĹÎÉĹ ÂÁÚŮ ÎĹ ŐÄÁĚĎÓŘ, ÓÔÁŇÁŃ ÂÁÚÁ ĎÓÔÁĹÔÓŃ ÎÁ ÍĹÓÔĹ\n" -#: lib/rpmdb.c:2413 +#: lib/rpmdb.c:2425 msgid "failed to replace old database with new database!\n" msgstr "ÚÁÍĹÎÁ ÓÔÁŇĎĘ ÂÁÚŮ ÎÁ ÎĎ×ŐŔ ÎĹ ŐÄÁĚÁÓŘ!\n" -#: lib/rpmdb.c:2415 +#: lib/rpmdb.c:2427 #, fuzzy, c-format msgid "replace files in %s with files from %s to recover" msgstr "ÄĚŃ ×ĎÓÓÔÁÎĎ×ĚĹÎÉŃ ÚÁÍĹÎŃĹÔ ĆÁĘĚŮ × %s ĆÁĘĚÁÍÉ ÉÚ %s" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2437 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "ÓĎÚÄÁŔ ËÁÔÁĚĎÇ: %s\n" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2439 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "ŐÄÁĚĹÎÉĹ ËÁÔÁĚĎÇÁ %s ÎĹ ŐÄÁĚĎÓŘ: %s\n" -#: lib/rpminstall.c:126 +#: lib/rpminstall.c:129 msgid "counting packages to install\n" msgstr "ÓŢÉÔÁŔ ĐÁËĹÔŮ ÄĚŃ ŐÓÔÁÎĎ×ËÉ\n" -#: lib/rpminstall.c:130 +#: lib/rpminstall.c:133 #, c-format msgid "found %d packages\n" msgstr "ÎÁĘÄĹÎĎ %d ĐÁËĹÔĎ×\n" -#: lib/rpminstall.c:135 +#: lib/rpminstall.c:138 msgid "looking for packages to download\n" msgstr "ÉÝŐ ĐÁËĹÔŮ ÄĚŃ ĐĎĚŐŢĹÎÉŃ Ó ftp/http\n" -#: lib/rpminstall.c:150 +#: lib/rpminstall.c:153 #, fuzzy, c-format msgid "skipping %s - rpmGlob failed(%d)\n" msgstr "ĐŇĎĐŐÓËÁŔ %s - ĎŰÉÂËÁ ĐĹŇĹÄÁŢÉ - %s\n" -#: lib/rpminstall.c:165 +#: lib/rpminstall.c:168 #, c-format msgid "Retrieving %s\n" msgstr "đĎĚŐŢÁŔ %s\n" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:175 +#: lib/rpminstall.c:178 #, c-format msgid " ... as %s\n" msgstr " ... ËÁË %s\n" -#: lib/rpminstall.c:179 +#: lib/rpminstall.c:182 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "ĐŇĎĐŐÓËÁŔ %s - ĎŰÉÂËÁ ĐĹŇĹÄÁŢÉ - %s\n" -#: lib/rpminstall.c:206 +#: lib/rpminstall.c:209 #, c-format msgid "retrieved %d packages\n" msgstr "ĐĎĚŐŢĹÎĎ %d ĐÁËĹÔĎ×\n" -#: lib/rpminstall.c:217 lib/rpminstall.c:360 +#: lib/rpminstall.c:220 lib/rpminstall.c:363 #, fuzzy, c-format msgid "cannot open file %s: %s\n" msgstr "ÎĹ ÍĎÇŐ ĎÔËŇŮÔŘ ĆÁĘĚ %s: %s" -#: lib/rpminstall.c:235 lib/rpminstall.c:499 +#: lib/rpminstall.c:238 lib/rpminstall.c:503 #, c-format msgid "%s cannot be installed\n" msgstr "%s ÎĹ ÍĎÖĹÔ ÂŮÔŘ ŐÓÔÁÎĎ×ĚĹÎ\n" -#: lib/rpminstall.c:270 +#: lib/rpminstall.c:273 #, c-format msgid "package %s is not relocateable\n" msgstr "ĐÁËĹÔ %s - ÎĹ ĐĹŇĹÍĹÝÁĹÍŮĘ\n" -#: lib/rpminstall.c:289 +#: lib/rpminstall.c:292 #, c-format msgid "error reading from file %s\n" msgstr "ĎŰÉÂËÁ ŢÔĹÎÉŃ ÉÚ ĆÁĘĚÁ %s\n" -#: lib/rpminstall.c:294 +#: lib/rpminstall.c:297 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "ĆÁĘĚ %s ÔŇĹÂŐĹÔ ÂĎĚĹĹ ÎĎ×ĎĘ ×ĹŇÓÉÉ RPM\n" -#: lib/rpminstall.c:311 +#: lib/rpminstall.c:314 #, c-format msgid "found %d source and %d binary packages\n" msgstr "ÎÁĘÄĹÎĎ %d ÉÓČĎÄÎŮČ É %d ÂÉÎÁŇÎŮČ ĐÁËĹÔĎ×\n" -#: lib/rpminstall.c:322 +#: lib/rpminstall.c:325 msgid "failed dependencies:\n" msgstr "ÎĹŐÄĎ×ĚĹÔ×ĎŇĹÎÎŮĹ ÚÁ×ÉÓÉÍĎÓÔÉ:\n" -#: lib/rpminstall.c:340 +#: lib/rpminstall.c:343 msgid "installing binary packages\n" msgstr "ŐÓÔÁÎÁ×ĚÉ×ÁŔ ÂÉÎÁŇÎŮĹ ĐÁËĹÔŮ\n" -#: lib/rpminstall.c:438 +#: lib/rpminstall.c:441 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "\"%s\" ÚÁÄÁĹÔ ÎĹÓËĎĚŘËĎ ĐÁËĹÔĎ×\n" -#: lib/rpminstall.c:461 +#: lib/rpminstall.c:464 msgid "removing these packages would break dependencies:\n" msgstr "ŐÄÁĚĹÎÉĹ ÜÔÉČ ĐÁËĹÔĎ× ÎÁŇŐŰÉÔ ÚÁ×ÉÓÉÍĎÓÔÉ:\n" -#: lib/rpminstall.c:488 +#: lib/rpminstall.c:492 #, fuzzy, c-format msgid "cannot open %s: %s\n" msgstr "ÎĹ ÍĎÇŐ ĎÔËŇŮÔŘ %s\n" -#: lib/rpminstall.c:494 +#: lib/rpminstall.c:498 #, c-format msgid "Installing %s\n" msgstr "őÓÔÁÎÁ×ĚÉ×ÁŔ %s\n" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 2.93\n" -"POT-Creation-Date: 2000-06-18 18:37-0400\n" +"POT-Creation-Date: 2000-06-19 07:25-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" @@ -9,7 +9,7 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8-bit\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 +#: build.c:25 lib/rpminstall.c:253 lib/rpminstall.c:425 #, c-format msgid "cannot open %s/packages.rpm\n" msgstr "nie je možné otvoriť %s/packages.rpm\n" @@ -3186,7 +3186,7 @@ msgstr "otvorenie %s zlyhalo\n" msgid "old format source packages cannot be queried\n" msgstr "nie je možné pýtať sa zdrojových balíkov v starom formáte\n" -#: lib/query.c:520 lib/rpminstall.c:231 +#: lib/query.c:520 lib/rpminstall.c:234 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "%s zrejme nie je RPM balík\n" @@ -3251,7 +3251,7 @@ msgstr "požaduje sa záznam číslo %d\n" msgid "record %d could not be read\n" msgstr "záznam %d nie je možné prečítať\n" -#: lib/query.c:683 lib/rpminstall.c:435 +#: lib/query.c:683 lib/rpminstall.c:438 #, c-format msgid "package %s is not installed\n" msgstr "balík %s nie je nainštalovaný\n" @@ -3415,11 +3415,11 @@ msgstr "chyba pri zápise záznamu %s do %s" msgid "error(%d) removing record %s from %s" msgstr "chyba pri odstraňovaní záznamu %s z %s" -#: lib/rpmdb.c:773 lib/rpmdb.c:2279 +#: lib/rpmdb.c:785 lib/rpmdb.c:2291 msgid "no dbpath has been set" msgstr "nebola nastavená žiadna dbpath" -#: lib/rpmdb.c:872 +#: lib/rpmdb.c:884 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" @@ -3428,213 +3428,213 @@ msgstr "" "databázy v novom formáte" #. error -#: lib/rpmdb.c:1082 +#: lib/rpmdb.c:1094 #, fuzzy, c-format msgid "error(%d) counting packages" msgstr "chyba pri hľadaní balíka %s\n" -#: lib/rpmdb.c:1140 lib/rpmdb.c:1653 lib/uninstall.c:90 +#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:90 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x" msgstr "nie je možné prečítať hlavičku na %d pre vyhľadanie" -#: lib/rpmdb.c:1705 +#: lib/rpmdb.c:1717 #, fuzzy, c-format msgid "removing 0 %s entries.\n" msgstr "odstraňuje sa záznam z databázy\n" -#: lib/rpmdb.c:1716 +#: lib/rpmdb.c:1728 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "odstraňuje sa index skupín\n" -#: lib/rpmdb.c:1725 +#: lib/rpmdb.c:1737 #, fuzzy, c-format msgid "removing %d entries from %s index:\n" msgstr "odstraňuje sa index názvov\n" -#: lib/rpmdb.c:1732 lib/rpmdb.c:1953 +#: lib/rpmdb.c:1744 lib/rpmdb.c:1965 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1865 +#: lib/rpmdb.c:1877 #, fuzzy, c-format msgid "error(%d) allocating new package instance" msgstr "chyba pri hľadaní balíka %s\n" -#: lib/rpmdb.c:1921 +#: lib/rpmdb.c:1933 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1937 +#: lib/rpmdb.c:1949 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "premenováva sa %s na %s\n" -#: lib/rpmdb.c:1946 +#: lib/rpmdb.c:1958 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2304 +#: lib/rpmdb.c:2316 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "znovu sa vytvára databáza v adresári %s\n" -#: lib/rpmdb.c:2308 +#: lib/rpmdb.c:2320 #, c-format msgid "temporary database %s already exists" msgstr "dočasná databáza %s už existuje" -#: lib/rpmdb.c:2314 +#: lib/rpmdb.c:2326 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "vytvára sa adresár %s\n" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2328 #, c-format msgid "error creating directory %s: %s" msgstr "chyba pri vytváraní adresára %s: %s" -#: lib/rpmdb.c:2323 +#: lib/rpmdb.c:2335 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "otvára sa stará databáza\n" -#: lib/rpmdb.c:2332 +#: lib/rpmdb.c:2344 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "otvára sa nová databáza\n" -#: lib/rpmdb.c:2355 +#: lib/rpmdb.c:2367 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping." msgstr "záznam číslo %d v databáze je chybný -- bol vynechaný" -#: lib/rpmdb.c:2387 +#: lib/rpmdb.c:2399 #, c-format msgid "cannot add record originally at %d" msgstr "nie je možné pridať záznam pôvodne na %d" -#: lib/rpmdb.c:2405 +#: lib/rpmdb.c:2417 #, fuzzy msgid "failed to rebuild database: original database remains in place\n" msgstr "nepodarilo sa znovu vytvoriť databázu; zostáva pôvodná\n" -#: lib/rpmdb.c:2413 +#: lib/rpmdb.c:2425 msgid "failed to replace old database with new database!\n" msgstr "nepodarilo sa nahradiť starú databázu novou!\n" -#: lib/rpmdb.c:2415 +#: lib/rpmdb.c:2427 #, 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" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2437 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "vytvára sa adresár %s\n" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2439 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "nepodarilo sa odstrániť adresár %s: %s\n" -#: lib/rpminstall.c:126 +#: lib/rpminstall.c:129 msgid "counting packages to install\n" msgstr "počítajú sa balíky pre inštaláciu\n" -#: lib/rpminstall.c:130 +#: lib/rpminstall.c:133 #, c-format msgid "found %d packages\n" msgstr "nájdených %d balíkov\n" -#: lib/rpminstall.c:135 +#: lib/rpminstall.c:138 msgid "looking for packages to download\n" msgstr "hľadajú sa balíky, ktoré treba preniesť\n" -#: lib/rpminstall.c:150 +#: lib/rpminstall.c:153 #, fuzzy, c-format msgid "skipping %s - rpmGlob failed(%d)\n" msgstr "%s vynechané - prenos zlyhal - %s\n" -#: lib/rpminstall.c:165 +#: lib/rpminstall.c:168 #, c-format msgid "Retrieving %s\n" msgstr "Prenáša sa %s\n" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:175 +#: lib/rpminstall.c:178 #, c-format msgid " ... as %s\n" msgstr "... ako %s\n" -#: lib/rpminstall.c:179 +#: lib/rpminstall.c:182 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "%s vynechané - prenos zlyhal - %s\n" -#: lib/rpminstall.c:206 +#: lib/rpminstall.c:209 #, c-format msgid "retrieved %d packages\n" msgstr "prenieslo sa %d balíkov\n" -#: lib/rpminstall.c:217 lib/rpminstall.c:360 +#: lib/rpminstall.c:220 lib/rpminstall.c:363 #, fuzzy, c-format msgid "cannot open file %s: %s\n" msgstr "nie je možné otvoriť súbor %s: %s" -#: lib/rpminstall.c:235 lib/rpminstall.c:499 +#: lib/rpminstall.c:238 lib/rpminstall.c:503 #, c-format msgid "%s cannot be installed\n" msgstr "%s nie je možné nainštalovať\n" -#: lib/rpminstall.c:270 +#: lib/rpminstall.c:273 #, fuzzy, c-format msgid "package %s is not relocateable\n" msgstr "balík %s nie je nainštalovaný\n" -#: lib/rpminstall.c:289 +#: lib/rpminstall.c:292 #, fuzzy, c-format msgid "error reading from file %s\n" msgstr "chyba pri vytváraní dočasného súboru %s" -#: lib/rpminstall.c:294 +#: lib/rpminstall.c:297 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:311 +#: lib/rpminstall.c:314 #, c-format msgid "found %d source and %d binary packages\n" msgstr "nájdených %d zdrojových a %d binárnych balíkov\n" -#: lib/rpminstall.c:322 +#: lib/rpminstall.c:325 msgid "failed dependencies:\n" msgstr "nevyriešené závislosti:\n" -#: lib/rpminstall.c:340 +#: lib/rpminstall.c:343 msgid "installing binary packages\n" msgstr "inštalujú sa binárne balíky\n" -#: lib/rpminstall.c:438 +#: lib/rpminstall.c:441 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "\"%s\" špecifikuje viac balíkov\n" -#: lib/rpminstall.c:461 +#: lib/rpminstall.c:464 msgid "removing these packages would break dependencies:\n" msgstr "odstránenie týchto balíkov by porušilo závislosti:\n" -#: lib/rpminstall.c:488 +#: lib/rpminstall.c:492 #, fuzzy, c-format msgid "cannot open %s: %s\n" msgstr "nie je možné otvoriť %s\n" -#: lib/rpminstall.c:494 +#: lib/rpminstall.c:498 #, c-format msgid "Installing %s\n" msgstr "Inštaluje sa %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.61 2000/06/18 22:38:39 jbj Exp $ +# $Id: sl.po,v 1.62 2000/06/19 11:35:31 jbj Exp $ # msgid "" msgstr "" "Project-Id-Version: rpm 3.0.4\n" -"POT-Creation-Date: 2000-06-18 18:37-0400\n" +"POT-Creation-Date: 2000-06-19 07:25-0400\n" "PO-Revision-Date: 2000-02-17 22:25+01:00\n" "Last-Translator: Primož Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>\n" "Language-Team: Slovenian <sl@li.org>\n" @@ -14,7 +14,7 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8-bit\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 +#: build.c:25 lib/rpminstall.c:253 lib/rpminstall.c:425 #, c-format msgid "cannot open %s/packages.rpm\n" msgstr "datoteke %s/packages.rpm ni možno odpreti\n" @@ -3172,7 +3172,7 @@ msgstr "odpiranje %s neuspešno: %s\n" msgid "old format source packages cannot be queried\n" msgstr "poizvedba po izvornih paketih v stari obliki ni možna\n" -#: lib/query.c:520 lib/rpminstall.c:231 +#: lib/query.c:520 lib/rpminstall.c:234 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "%s najverjetneje ni paket RPM\n" @@ -3237,7 +3237,7 @@ msgstr "številka zapisa paketa: %d\n" msgid "record %d could not be read\n" msgstr "zapisa %d ni možno prebrati\n" -#: lib/query.c:683 lib/rpminstall.c:435 +#: lib/query.c:683 lib/rpminstall.c:438 #, c-format msgid "package %s is not installed\n" msgstr "paket %s ni nameščen\n" @@ -3400,225 +3400,225 @@ msgstr "napaka pri pisanju zapisa %s v %s" msgid "error(%d) removing record %s from %s" msgstr "napaka pri brisanju zapisa %s iz %s" -#: lib/rpmdb.c:773 lib/rpmdb.c:2279 +#: lib/rpmdb.c:785 lib/rpmdb.c:2291 msgid "no dbpath has been set" msgstr "dbpath ni nastavljena" -#: lib/rpmdb.c:872 +#: lib/rpmdb.c:884 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" msgstr "staro obliko podatkove zbirke pretvorite v novo z --rebuilddb" #. error -#: lib/rpmdb.c:1082 +#: lib/rpmdb.c:1094 #, fuzzy, c-format msgid "error(%d) counting packages" msgstr "napaka pri iskanju paketa %s\n" -#: lib/rpmdb.c:1140 lib/rpmdb.c:1653 lib/uninstall.c:90 +#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:90 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x" msgstr "ni možno prebrati glave pri %d za vpogled" -#: lib/rpmdb.c:1705 +#: lib/rpmdb.c:1717 #, fuzzy, c-format msgid "removing 0 %s entries.\n" msgstr "odstranjujemo vnose v podatkovni zbirki\n" -#: lib/rpmdb.c:1716 +#: lib/rpmdb.c:1728 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "odstranjujemo seznam skupin\n" -#: lib/rpmdb.c:1725 +#: lib/rpmdb.c:1737 #, fuzzy, c-format msgid "removing %d entries from %s index:\n" msgstr "odstranjujemo seznam imen\n" -#: lib/rpmdb.c:1732 lib/rpmdb.c:1953 +#: lib/rpmdb.c:1744 lib/rpmdb.c:1965 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1865 +#: lib/rpmdb.c:1877 #, fuzzy, c-format msgid "error(%d) allocating new package instance" msgstr "napaka pri iskanju paketa %s\n" -#: lib/rpmdb.c:1921 +#: lib/rpmdb.c:1933 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1937 +#: lib/rpmdb.c:1949 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "preimenujemo %s v %s\n" -#: lib/rpmdb.c:1946 +#: lib/rpmdb.c:1958 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2304 +#: lib/rpmdb.c:2316 #, c-format msgid "rebuilding database %s into %s\n" msgstr "ponovna izgradnja podatkovne zbirke %s v %s\n" -#: lib/rpmdb.c:2308 +#: lib/rpmdb.c:2320 #, c-format msgid "temporary database %s already exists" msgstr "začasna podatkovna zbirka %s že obstaja" -#: lib/rpmdb.c:2314 +#: lib/rpmdb.c:2326 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "ustvarjamo imenik: %s\n" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2328 #, c-format msgid "error creating directory %s: %s" msgstr "napaka pri ustvarjanju imenika %s: %s" -#: lib/rpmdb.c:2323 +#: lib/rpmdb.c:2335 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "odpiramo staro podatkovno zbirko\n" -#: lib/rpmdb.c:2332 +#: lib/rpmdb.c:2344 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "odpiramo novo podatkovno zbirko\n" -#: lib/rpmdb.c:2355 +#: lib/rpmdb.c:2367 #, c-format msgid "record number %d in database is bad -- skipping." msgstr "zapis št. %d v zbirki je okvarjen -- preskakujemo." -#: lib/rpmdb.c:2387 +#: lib/rpmdb.c:2399 #, c-format msgid "cannot add record originally at %d" msgstr "zapisa ni možno dodati na %d" -#: lib/rpmdb.c:2405 +#: lib/rpmdb.c:2417 #, fuzzy msgid "failed to rebuild database: original database remains in place\n" msgstr "" "ponovna izgradnja podatkovne zbirke neuspešna; stara ostaja na istem mestu\n" -#: lib/rpmdb.c:2413 +#: lib/rpmdb.c:2425 msgid "failed to replace old database with new database!\n" msgstr "zamenjava stare podatkovne zbirke z novo neuspešna!\n" -#: lib/rpmdb.c:2415 +#: lib/rpmdb.c:2427 #, fuzzy, c-format msgid "replace files in %s with files from %s to recover" msgstr "poskušamo povrniti z nadomestitvijo datotek v %s z datotekami iz %s" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2437 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "ustvarjamo imenik: %s\n" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2439 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "neuspešna odstranitev imenika %s: %s\n" -#: lib/rpminstall.c:126 +#: lib/rpminstall.c:129 msgid "counting packages to install\n" msgstr "štetje paketov za namestitev\n" -#: lib/rpminstall.c:130 +#: lib/rpminstall.c:133 #, c-format msgid "found %d packages\n" msgstr "najdeno %d paketov\n" -#: lib/rpminstall.c:135 +#: lib/rpminstall.c:138 msgid "looking for packages to download\n" msgstr "iskanje paketov za prenos po omrežju\n" -#: lib/rpminstall.c:150 +#: lib/rpminstall.c:153 #, c-format msgid "skipping %s - rpmGlob failed(%d)\n" msgstr "preskakujemo %s - rpmGlob neuspešen(%d)\n" -#: lib/rpminstall.c:165 +#: lib/rpminstall.c:168 #, c-format msgid "Retrieving %s\n" msgstr "Prenašamo %s\n" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:175 +#: lib/rpminstall.c:178 #, c-format msgid " ... as %s\n" msgstr " ... kot %s\n" -#: lib/rpminstall.c:179 +#: lib/rpminstall.c:182 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "preskakujemo %s - prenos neuspešen - %s\n" -#: lib/rpminstall.c:206 +#: lib/rpminstall.c:209 #, c-format msgid "retrieved %d packages\n" msgstr "prenesli smo %d paketov\n" -#: lib/rpminstall.c:217 lib/rpminstall.c:360 +#: lib/rpminstall.c:220 lib/rpminstall.c:363 #, c-format msgid "cannot open file %s: %s\n" msgstr "ni možno odpreti datoteke %s: %s\n" -#: lib/rpminstall.c:235 lib/rpminstall.c:499 +#: lib/rpminstall.c:238 lib/rpminstall.c:503 #, c-format msgid "%s cannot be installed\n" msgstr "%s ni možno namestiti\n" -#: lib/rpminstall.c:270 +#: lib/rpminstall.c:273 #, c-format msgid "package %s is not relocateable\n" msgstr "paketa %s ni možno prestaviti\n" -#: lib/rpminstall.c:289 +#: lib/rpminstall.c:292 #, c-format msgid "error reading from file %s\n" msgstr "napaka pri branju iz datoteke %s\n" -#: lib/rpminstall.c:294 +#: lib/rpminstall.c:297 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "datoteka %s zahteva novejšo različico RPM\n" -#: lib/rpminstall.c:311 +#: lib/rpminstall.c:314 #, c-format msgid "found %d source and %d binary packages\n" msgstr "najdeno %d izvornih in %d binarnih paketov\n" -#: lib/rpminstall.c:322 +#: lib/rpminstall.c:325 msgid "failed dependencies:\n" msgstr "neuspešne soodvisnosti:\n" -#: lib/rpminstall.c:340 +#: lib/rpminstall.c:343 msgid "installing binary packages\n" msgstr "nameščamo binarne pakete\n" -#: lib/rpminstall.c:438 +#: lib/rpminstall.c:441 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "\"%s\" določa večterne pakete\n" -#: lib/rpminstall.c:461 +#: lib/rpminstall.c:464 msgid "removing these packages would break dependencies:\n" msgstr "odstranitev teh paketov bi podrla soodvisnosti:\n" -#: lib/rpminstall.c:488 +#: lib/rpminstall.c:492 #, c-format msgid "cannot open %s: %s\n" msgstr "ni možno odpreti %s: %s\n" -#: lib/rpminstall.c:494 +#: lib/rpminstall.c:498 #, c-format msgid "Installing %s\n" msgstr "Nameščamo %s\n" @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2000-06-18 18:37-0400\n" +"POT-Creation-Date: 2000-06-19 07:25-0400\n" "Content-Type: text/plain; charset=\n" "Date: 1998-05-02 21:41:47-0400\n" "From: Erik Troan <ewt@lacrosse.redhat.com>\n" @@ -18,7 +18,7 @@ msgstr "" "/home/ewt/redhat/rpm/lib/package.c /home/ewt/redhat/rpm/lib/rpmlead.c " "/home/ewt/redhat/rpm/lib/rpmrc.c\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 +#: build.c:25 lib/rpminstall.c:253 lib/rpminstall.c:425 #, fuzzy, c-format msgid "cannot open %s/packages.rpm\n" msgstr "greška: ne mogu da otvorim %s%s/packages.rpm\n" @@ -3205,7 +3205,7 @@ msgstr "neuspelo otvaranje %s: %s\n" msgid "old format source packages cannot be queried\n" msgstr "Upit se ne može izvesti nad izvorni paketima u starom formatu\n" -#: lib/query.c:520 lib/rpminstall.c:231 +#: lib/query.c:520 lib/rpminstall.c:234 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "%s ne liči na RPM paket\n" @@ -3270,7 +3270,7 @@ msgstr "pogrešan broj paketa: %s\n" msgid "record %d could not be read\n" msgstr "ne mogu da pročitam slog %d\n" -#: lib/query.c:683 lib/rpminstall.c:435 +#: lib/query.c:683 lib/rpminstall.c:438 #, c-format msgid "package %s is not installed\n" msgstr "paket %s nije instaliran\n" @@ -3435,226 +3435,226 @@ msgstr "greška zapisivanja sloga %s u %s" msgid "error(%d) removing record %s from %s" msgstr "greška uklanjanja sloga %s u %s" -#: lib/rpmdb.c:773 lib/rpmdb.c:2279 +#: lib/rpmdb.c:785 lib/rpmdb.c:2291 msgid "no dbpath has been set" msgstr "dbpath nije određen" -#: lib/rpmdb.c:872 +#: lib/rpmdb.c:884 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" msgstr "" #. error -#: lib/rpmdb.c:1082 +#: lib/rpmdb.c:1094 #, fuzzy, c-format msgid "error(%d) counting packages" msgstr "greška kod potrage za paketom %s\n" -#: lib/rpmdb.c:1140 lib/rpmdb.c:1653 lib/uninstall.c:90 +#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:90 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x" msgstr "ne mogu da pročitam zaglavlje na %d za proveru" -#: lib/rpmdb.c:1705 +#: lib/rpmdb.c:1717 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1716 +#: lib/rpmdb.c:1728 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "greška uklanjanja sloga %s u %s" -#: lib/rpmdb.c:1725 +#: lib/rpmdb.c:1737 #, fuzzy, c-format msgid "removing %d entries from %s index:\n" msgstr "greška uklanjanja sloga %s u %s" -#: lib/rpmdb.c:1732 lib/rpmdb.c:1953 +#: lib/rpmdb.c:1744 lib/rpmdb.c:1965 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1865 +#: lib/rpmdb.c:1877 #, fuzzy, c-format msgid "error(%d) allocating new package instance" msgstr "greška kod potrage za paketom %s\n" -#: lib/rpmdb.c:1921 +#: lib/rpmdb.c:1933 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1937 +#: lib/rpmdb.c:1949 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1946 +#: lib/rpmdb.c:1958 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2304 +#: lib/rpmdb.c:2316 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "rekreiraj bazu podataka iz postojeće baze" -#: lib/rpmdb.c:2308 +#: lib/rpmdb.c:2320 #, c-format msgid "temporary database %s already exists" msgstr "privremena baza podataka %s već postoji" -#: lib/rpmdb.c:2314 +#: lib/rpmdb.c:2326 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "greška kod kreiranja direktorijuma %s: %s" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2328 #, c-format msgid "error creating directory %s: %s" msgstr "greška kod kreiranja direktorijuma %s: %s" -#: lib/rpmdb.c:2323 +#: lib/rpmdb.c:2335 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "rekreiraj bazu podataka iz postojeće baze" -#: lib/rpmdb.c:2332 +#: lib/rpmdb.c:2344 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "rekreiraj bazu podataka iz postojeće baze" -#: lib/rpmdb.c:2355 +#: lib/rpmdb.c:2367 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping." msgstr "slog broj %d u bazi podataka je neispravan -- preskačem ga" -#: lib/rpmdb.c:2387 +#: lib/rpmdb.c:2399 #, c-format msgid "cannot add record originally at %d" msgstr "ne mogu da dodam slog originalno na %d" -#: lib/rpmdb.c:2405 +#: lib/rpmdb.c:2417 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2413 +#: lib/rpmdb.c:2425 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2415 +#: lib/rpmdb.c:2427 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2437 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "greška kod kreiranja direktorijuma %s: %s" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2439 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: lib/rpminstall.c:126 +#: lib/rpminstall.c:129 #, fuzzy msgid "counting packages to install\n" msgstr "nedostaje paket za instalaciju" -#: lib/rpminstall.c:130 +#: lib/rpminstall.c:133 #, fuzzy, c-format msgid "found %d packages\n" msgstr "upit nad svim paketima" -#: lib/rpminstall.c:135 +#: lib/rpminstall.c:138 #, fuzzy msgid "looking for packages to download\n" msgstr "greška kod potrage za paketom %s\n" -#: lib/rpminstall.c:150 +#: lib/rpminstall.c:153 #, fuzzy, c-format msgid "skipping %s - rpmGlob failed(%d)\n" msgstr "greška: preskačem %s - neuspelo prenošenje - %s\n" -#: lib/rpminstall.c:165 +#: lib/rpminstall.c:168 #, c-format msgid "Retrieving %s\n" msgstr "Pribavljam %s\n" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:175 +#: lib/rpminstall.c:178 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:179 +#: lib/rpminstall.c:182 #, fuzzy, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "greška: preskačem %s - neuspelo prenošenje - %s\n" -#: lib/rpminstall.c:206 +#: lib/rpminstall.c:209 #, c-format msgid "retrieved %d packages\n" msgstr "" -#: lib/rpminstall.c:217 lib/rpminstall.c:360 +#: lib/rpminstall.c:220 lib/rpminstall.c:363 #, fuzzy, c-format msgid "cannot open file %s: %s\n" msgstr "Ne mogu da otvorim datoteku %s: " -#: lib/rpminstall.c:235 lib/rpminstall.c:499 +#: lib/rpminstall.c:238 lib/rpminstall.c:503 #, fuzzy, c-format msgid "%s cannot be installed\n" msgstr "greška: %s se ne može instalirati\n" -#: lib/rpminstall.c:270 +#: lib/rpminstall.c:273 #, fuzzy, c-format msgid "package %s is not relocateable\n" msgstr "paket %s nije instaliran\n" -#: lib/rpminstall.c:289 +#: lib/rpminstall.c:292 #, fuzzy, c-format msgid "error reading from file %s\n" msgstr "greška kod kreiranja direktorijuma %s: %s" -#: lib/rpminstall.c:294 +#: lib/rpminstall.c:297 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:311 +#: lib/rpminstall.c:314 #, fuzzy, c-format msgid "found %d source and %d binary packages\n" msgstr "grupa %s ne sadrži nijedan paket\n" -#: lib/rpminstall.c:322 +#: lib/rpminstall.c:325 msgid "failed dependencies:\n" msgstr "loše međuzavisnosti:\n" -#: lib/rpminstall.c:340 +#: lib/rpminstall.c:343 #, fuzzy msgid "installing binary packages\n" msgstr "instaliraj paket" -#: lib/rpminstall.c:438 +#: lib/rpminstall.c:441 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "\"%s\" određuje više paketa\n" -#: lib/rpminstall.c:461 +#: lib/rpminstall.c:464 msgid "removing these packages would break dependencies:\n" msgstr "uklanjanje oviha paketa će narušiti zavisnosti:\n" -#: lib/rpminstall.c:488 +#: lib/rpminstall.c:492 #, fuzzy, c-format msgid "cannot open %s: %s\n" msgstr "greška: ne mogu da otvorim %s\n" -#: lib/rpminstall.c:494 +#: lib/rpminstall.c:498 #, c-format msgid "Installing %s\n" msgstr "Instaliram %s\n" @@ -1,12 +1,12 @@ # Swedish messages for RPM # Copyright Š 1999 Free Software Foundation, Inc. # Göran Uddeborg <göran@uddeborg.pp.se>, 1999, 2000. -# $Revision: 1.121 $ +# $Revision: 1.122 $ # msgid "" msgstr "" "Project-Id-Version: rpm 3.0.4\n" -"POT-Creation-Date: 2000-06-18 18:37-0400\n" +"POT-Creation-Date: 2000-06-19 07:25-0400\n" "PO-Revision-Date: 2000-02-21 12:20+0100\n" "Last-Translator: Göran Uddeborg <göran@uddeborg.pp.se>\n" "Language-Team: Swedish <sv@li.org>\n" @@ -14,7 +14,7 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 +#: build.c:25 lib/rpminstall.c:253 lib/rpminstall.c:425 #, c-format msgid "cannot open %s/packages.rpm\n" msgstr "kan inte öppna %s/packages.rpm\n" @@ -3159,7 +3159,7 @@ msgstr "misslyckades öppna %s: %s\n" msgid "old format source packages cannot be queried\n" msgstr "källpaket i gammalt format gĺr ej att frĺga om\n" -#: lib/query.c:520 lib/rpminstall.c:231 +#: lib/query.c:520 lib/rpminstall.c:234 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "%s verkar inte vara ett RPM-paket\n" @@ -3224,7 +3224,7 @@ msgstr "paketpost nummer: %d\n" msgid "record %d could not be read\n" msgstr "post %d kunde inte läsas\n" -#: lib/query.c:683 lib/rpminstall.c:435 +#: lib/query.c:683 lib/rpminstall.c:438 #, c-format msgid "package %s is not installed\n" msgstr "paket %s är inte installerat\n" @@ -3387,11 +3387,11 @@ msgstr "fel när post %s sparades i %s" msgid "error(%d) removing record %s from %s" msgstr "fel när post %s togs bort ur %s" -#: lib/rpmdb.c:773 lib/rpmdb.c:2279 +#: lib/rpmdb.c:785 lib/rpmdb.c:2291 msgid "no dbpath has been set" msgstr "ingen dbpath har satts" -#: lib/rpmdb.c:872 +#: lib/rpmdb.c:884 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" @@ -3400,213 +3400,213 @@ msgstr "" "i nytt format" #. error -#: lib/rpmdb.c:1082 +#: lib/rpmdb.c:1094 #, fuzzy, c-format msgid "error(%d) counting packages" msgstr "fel vid sökning efter paket %s\n" -#: lib/rpmdb.c:1140 lib/rpmdb.c:1653 lib/uninstall.c:90 +#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:90 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x" msgstr "kan inte läsa huvud vid %d för uppslagning" -#: lib/rpmdb.c:1705 +#: lib/rpmdb.c:1717 #, fuzzy, c-format msgid "removing 0 %s entries.\n" msgstr "tar bort databasposter\n" -#: lib/rpmdb.c:1716 +#: lib/rpmdb.c:1728 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "tar bort gruppindex\n" -#: lib/rpmdb.c:1725 +#: lib/rpmdb.c:1737 #, fuzzy, c-format msgid "removing %d entries from %s index:\n" msgstr "tar bort namnindex\n" -#: lib/rpmdb.c:1732 lib/rpmdb.c:1953 +#: lib/rpmdb.c:1744 lib/rpmdb.c:1965 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1865 +#: lib/rpmdb.c:1877 #, fuzzy, c-format msgid "error(%d) allocating new package instance" msgstr "fel vid sökning efter paket %s\n" -#: lib/rpmdb.c:1921 +#: lib/rpmdb.c:1933 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1937 +#: lib/rpmdb.c:1949 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "byter namn pĺ %s till %s\n" -#: lib/rpmdb.c:1946 +#: lib/rpmdb.c:1958 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2304 +#: lib/rpmdb.c:2316 #, c-format msgid "rebuilding database %s into %s\n" msgstr "bygger om databas %s till %s\n" -#: lib/rpmdb.c:2308 +#: lib/rpmdb.c:2320 #, c-format msgid "temporary database %s already exists" msgstr "tillfällig databas %s existerar redan" -#: lib/rpmdb.c:2314 +#: lib/rpmdb.c:2326 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "skapar katalog: %s\n" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2328 #, c-format msgid "error creating directory %s: %s" msgstr "fel när katalog skapades %s: %s" -#: lib/rpmdb.c:2323 +#: lib/rpmdb.c:2335 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "öppnar gammal databas\n" -#: lib/rpmdb.c:2332 +#: lib/rpmdb.c:2344 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "öppnar ny databas\n" -#: lib/rpmdb.c:2355 +#: lib/rpmdb.c:2367 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping." msgstr "post nummer %d i databasen är felaktig -- hoppar över den" -#: lib/rpmdb.c:2387 +#: lib/rpmdb.c:2399 #, c-format msgid "cannot add record originally at %d" msgstr "kan inte lägga till post ursprungligen vid %d" -#: lib/rpmdb.c:2405 +#: lib/rpmdb.c:2417 #, fuzzy msgid "failed to rebuild database: original database remains in place\n" msgstr "kunde inte bygga om databasen; orginaldatabasen finns kvar\n" -#: lib/rpmdb.c:2413 +#: lib/rpmdb.c:2425 msgid "failed to replace old database with new database!\n" msgstr "kunde inte ersätta gammal databas med ny databas!\n" -#: lib/rpmdb.c:2415 +#: lib/rpmdb.c:2427 #, fuzzy, 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" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2437 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "skapar katalog: %s\n" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2439 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "kunde inte ta bort katalogen %s: %s\n" -#: lib/rpminstall.c:126 +#: lib/rpminstall.c:129 msgid "counting packages to install\n" msgstr "räknar paket att installera\n" -#: lib/rpminstall.c:130 +#: lib/rpminstall.c:133 #, c-format msgid "found %d packages\n" msgstr "hittade %d paket\n" -#: lib/rpminstall.c:135 +#: lib/rpminstall.c:138 msgid "looking for packages to download\n" msgstr "letar efter paket att hämta\n" -#: lib/rpminstall.c:150 +#: lib/rpminstall.c:153 #, c-format msgid "skipping %s - rpmGlob failed(%d)\n" msgstr "hoppar över %s - rpmGlob misslyckades(%d)\n" -#: lib/rpminstall.c:165 +#: lib/rpminstall.c:168 #, c-format msgid "Retrieving %s\n" msgstr "Hämtar %s\n" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:175 +#: lib/rpminstall.c:178 #, c-format msgid " ... as %s\n" msgstr " ... som %s\n" -#: lib/rpminstall.c:179 +#: lib/rpminstall.c:182 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "hoppar över %s - överföring misslyckades - %s\n" -#: lib/rpminstall.c:206 +#: lib/rpminstall.c:209 #, c-format msgid "retrieved %d packages\n" msgstr "hämtade %d paket\n" -#: lib/rpminstall.c:217 lib/rpminstall.c:360 +#: lib/rpminstall.c:220 lib/rpminstall.c:363 #, c-format msgid "cannot open file %s: %s\n" msgstr "kan inte öppna filen %s: %s\n" -#: lib/rpminstall.c:235 lib/rpminstall.c:499 +#: lib/rpminstall.c:238 lib/rpminstall.c:503 #, c-format msgid "%s cannot be installed\n" msgstr "%s kan inte installeras\n" -#: lib/rpminstall.c:270 +#: lib/rpminstall.c:273 #, c-format msgid "package %s is not relocateable\n" msgstr "paket %s är inte relokerbart\n" -#: lib/rpminstall.c:289 +#: lib/rpminstall.c:292 #, c-format msgid "error reading from file %s\n" msgstr "fel vid läsning frĺn fil %s\n" -#: lib/rpminstall.c:294 +#: lib/rpminstall.c:297 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "fil %s behöver en nyare version av RPM\n" -#: lib/rpminstall.c:311 +#: lib/rpminstall.c:314 #, c-format msgid "found %d source and %d binary packages\n" msgstr "hittade %d käll- och %d binärpaket\n" -#: lib/rpminstall.c:322 +#: lib/rpminstall.c:325 msgid "failed dependencies:\n" msgstr "ouppfyllda beroenden:\n" -#: lib/rpminstall.c:340 +#: lib/rpminstall.c:343 msgid "installing binary packages\n" msgstr "installerar binärpaket\n" -#: lib/rpminstall.c:438 +#: lib/rpminstall.c:441 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "\"%s\" anger flera paket\n" -#: lib/rpminstall.c:461 +#: lib/rpminstall.c:464 msgid "removing these packages would break dependencies:\n" msgstr "att ta bort dessa paket skulle göra sönder beroenden:\n" -#: lib/rpminstall.c:488 +#: lib/rpminstall.c:492 #, c-format msgid "cannot open %s: %s\n" msgstr "kan inte öppna %s: %s\n" -#: lib/rpminstall.c:494 +#: lib/rpminstall.c:498 #, c-format msgid "Installing %s\n" msgstr "Installerar %s\n" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-06-18 18:37-0400\n" +"POT-Creation-Date: 2000-06-19 07:25-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" @@ -14,7 +14,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 +#: build.c:25 lib/rpminstall.c:253 lib/rpminstall.c:425 #, fuzzy, c-format msgid "cannot open %s/packages.rpm\n" msgstr "hata: %s%s/packages.rpm açýlamýyor\n" @@ -3258,7 +3258,7 @@ msgstr "%s 'ye erisimde belirtilen hata oluţtu: %s\n" msgid "old format source packages cannot be queried\n" msgstr "eski tip kaynak paketleri sorgulanamýyor\n" -#: lib/query.c:520 lib/rpminstall.c:231 +#: lib/query.c:520 lib/rpminstall.c:234 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "%s bir RPM paketi deđil (gibi)\n" @@ -3323,7 +3323,7 @@ msgstr "geçersiz paket numarsý: %s\n" msgid "record %d could not be read\n" msgstr "%d numaralý kayýt okunamadý\n" -#: lib/query.c:683 lib/rpminstall.c:435 +#: lib/query.c:683 lib/rpminstall.c:438 #, c-format msgid "package %s is not installed\n" msgstr "%s pakedi yüklenmemiţ\n" @@ -3488,226 +3488,226 @@ msgstr "%s kaydý %s dosyasýna yazýlamýyor" msgid "error(%d) removing record %s from %s" msgstr "%s kaydýnýn %s dosyasýndan silinmesinde hata" -#: lib/rpmdb.c:773 lib/rpmdb.c:2279 +#: lib/rpmdb.c:785 lib/rpmdb.c:2291 msgid "no dbpath has been set" msgstr "dbpath deđeri girilmemiţ" -#: lib/rpmdb.c:872 +#: lib/rpmdb.c:884 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" msgstr "" #. error -#: lib/rpmdb.c:1082 +#: lib/rpmdb.c:1094 #, fuzzy, c-format msgid "error(%d) counting packages" msgstr "%s pakedi aranýrken hata oluţtu\n" -#: lib/rpmdb.c:1140 lib/rpmdb.c:1653 lib/uninstall.c:90 +#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:90 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x" msgstr "%d kaydýndan baţlýk bilgisi okunamadý" -#: lib/rpmdb.c:1705 +#: lib/rpmdb.c:1717 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1716 +#: lib/rpmdb.c:1728 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "%s kaydýnýn %s dosyasýndan silinmesinde hata" -#: lib/rpmdb.c:1725 +#: lib/rpmdb.c:1737 #, fuzzy, c-format msgid "removing %d entries from %s index:\n" msgstr "%s kaydýnýn %s dosyasýndan silinmesinde hata" -#: lib/rpmdb.c:1732 lib/rpmdb.c:1953 +#: lib/rpmdb.c:1744 lib/rpmdb.c:1965 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1865 +#: lib/rpmdb.c:1877 #, fuzzy, c-format msgid "error(%d) allocating new package instance" msgstr "%s pakedi aranýrken hata oluţtu\n" -#: lib/rpmdb.c:1921 +#: lib/rpmdb.c:1933 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1937 +#: lib/rpmdb.c:1949 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1946 +#: lib/rpmdb.c:1958 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2304 +#: lib/rpmdb.c:2316 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "mevcut veritabanýný kullanýlarak veritabýnýný yeniden oluţturur" -#: lib/rpmdb.c:2308 +#: lib/rpmdb.c:2320 #, c-format msgid "temporary database %s already exists" msgstr "geçici veritabaný %s mevcut" -#: lib/rpmdb.c:2314 +#: lib/rpmdb.c:2326 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "%s dizinin oluţturulmasýnda hata: %s" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2328 #, c-format msgid "error creating directory %s: %s" msgstr "%s dizinin oluţturulmasýnda hata: %s" -#: lib/rpmdb.c:2323 +#: lib/rpmdb.c:2335 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "mevcut veritabanýný kullanýlarak veritabýnýný yeniden oluţturur" -#: lib/rpmdb.c:2332 +#: lib/rpmdb.c:2344 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "mevcut veritabanýný kullanýlarak veritabýnýný yeniden oluţturur" -#: lib/rpmdb.c:2355 +#: lib/rpmdb.c:2367 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping." msgstr "veritabanýndaki %d numaralý kayýt hatalý -- atlanýyor" -#: lib/rpmdb.c:2387 +#: lib/rpmdb.c:2399 #, c-format msgid "cannot add record originally at %d" msgstr "%d de yer alan kayýt saklayamýyor" -#: lib/rpmdb.c:2405 +#: lib/rpmdb.c:2417 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2413 +#: lib/rpmdb.c:2425 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2415 +#: lib/rpmdb.c:2427 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2437 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "%s dizinin oluţturulmasýnda hata: %s" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2439 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "%s açýlamadý: %s" -#: lib/rpminstall.c:126 +#: lib/rpminstall.c:129 #, fuzzy msgid "counting packages to install\n" msgstr "yüklenecek paketler belirtilmedi" -#: lib/rpminstall.c:130 +#: lib/rpminstall.c:133 #, fuzzy, c-format msgid "found %d packages\n" msgstr "Tüm paketleri sorgulama" -#: lib/rpminstall.c:135 +#: lib/rpminstall.c:138 #, fuzzy msgid "looking for packages to download\n" msgstr "%s pakedi aranýrken hata oluţtu\n" -#: lib/rpminstall.c:150 +#: lib/rpminstall.c:153 #, fuzzy, c-format msgid "skipping %s - rpmGlob failed(%d)\n" msgstr "hata: %s atlanýyor - aktarým baţarýsýz - %s\n" -#: lib/rpminstall.c:165 +#: lib/rpminstall.c:168 #, c-format msgid "Retrieving %s\n" msgstr "%s alýnýyor\n" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:175 +#: lib/rpminstall.c:178 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:179 +#: lib/rpminstall.c:182 #, fuzzy, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "hata: %s atlanýyor - aktarým baţarýsýz - %s\n" -#: lib/rpminstall.c:206 +#: lib/rpminstall.c:209 #, c-format msgid "retrieved %d packages\n" msgstr "" -#: lib/rpminstall.c:217 lib/rpminstall.c:360 +#: lib/rpminstall.c:220 lib/rpminstall.c:363 #, fuzzy, c-format msgid "cannot open file %s: %s\n" msgstr "%s dosyasý açýlamýyor: " -#: lib/rpminstall.c:235 lib/rpminstall.c:499 +#: lib/rpminstall.c:238 lib/rpminstall.c:503 #, fuzzy, c-format msgid "%s cannot be installed\n" msgstr "hata: %s yüklenemedi\n" -#: lib/rpminstall.c:270 +#: lib/rpminstall.c:273 #, fuzzy, c-format msgid "package %s is not relocateable\n" msgstr "%s pakedi yüklenmemiţ\n" -#: lib/rpminstall.c:289 +#: lib/rpminstall.c:292 #, fuzzy, c-format msgid "error reading from file %s\n" msgstr "%s dizinin oluţturulmasýnda hata: %s" -#: lib/rpminstall.c:294 +#: lib/rpminstall.c:297 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:311 +#: lib/rpminstall.c:314 #, fuzzy, c-format msgid "found %d source and %d binary packages\n" msgstr "%s grubu hiç paket içermiyor\n" -#: lib/rpminstall.c:322 +#: lib/rpminstall.c:325 msgid "failed dependencies:\n" msgstr "bađýmlýlýk hatasý, aţađýdaki paketlere ihtiyacýnýz var:\n" -#: lib/rpminstall.c:340 +#: lib/rpminstall.c:343 #, fuzzy msgid "installing binary packages\n" msgstr "paket yüklemek" -#: lib/rpminstall.c:438 +#: lib/rpminstall.c:441 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "\"%s\" birden fazla paketi tanýmlýyor\n" -#: lib/rpminstall.c:461 +#: lib/rpminstall.c:464 msgid "removing these packages would break dependencies:\n" msgstr "bu paketin silinmesi aţađýdaki bađýmlýlýklarý etkileyecektir:\n" -#: lib/rpminstall.c:488 +#: lib/rpminstall.c:492 #, fuzzy, c-format msgid "cannot open %s: %s\n" msgstr "hata: %s eriţilemiyor\n" -#: lib/rpminstall.c:494 +#: lib/rpminstall.c:498 #, c-format msgid "Installing %s\n" msgstr "%s yükleniyor\n" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-06-18 18:37-0400\n" +"POT-Creation-Date: 2000-06-19 07:25-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" @@ -14,7 +14,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:422 +#: build.c:25 lib/rpminstall.c:253 lib/rpminstall.c:425 #, c-format msgid "cannot open %s/packages.rpm\n" msgstr "" @@ -3011,7 +3011,7 @@ msgstr "" msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:520 lib/rpminstall.c:231 +#: lib/query.c:520 lib/rpminstall.c:234 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "" @@ -3075,7 +3075,7 @@ msgstr "" msgid "record %d could not be read\n" msgstr "" -#: lib/query.c:683 lib/rpminstall.c:435 +#: lib/query.c:683 lib/rpminstall.c:438 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -3238,223 +3238,223 @@ msgstr "" msgid "error(%d) removing record %s from %s" msgstr "" -#: lib/rpmdb.c:773 lib/rpmdb.c:2279 +#: lib/rpmdb.c:785 lib/rpmdb.c:2291 msgid "no dbpath has been set" msgstr "" -#: lib/rpmdb.c:872 +#: lib/rpmdb.c:884 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database" msgstr "" #. error -#: lib/rpmdb.c:1082 +#: lib/rpmdb.c:1094 #, c-format msgid "error(%d) counting packages" msgstr "" -#: lib/rpmdb.c:1140 lib/rpmdb.c:1653 lib/uninstall.c:90 +#: lib/rpmdb.c:1152 lib/rpmdb.c:1665 lib/uninstall.c:90 #, c-format msgid "%s: cannot read header at 0x%x" msgstr "" -#: lib/rpmdb.c:1705 +#: lib/rpmdb.c:1717 #, c-format msgid "removing 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1716 +#: lib/rpmdb.c:1728 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1725 +#: lib/rpmdb.c:1737 #, c-format msgid "removing %d entries from %s index:\n" msgstr "" -#: lib/rpmdb.c:1732 lib/rpmdb.c:1953 +#: lib/rpmdb.c:1744 lib/rpmdb.c:1965 #, c-format msgid "%6d %s\n" msgstr "" -#: lib/rpmdb.c:1865 +#: lib/rpmdb.c:1877 #, c-format msgid "error(%d) allocating new package instance" msgstr "" -#: lib/rpmdb.c:1921 +#: lib/rpmdb.c:1933 #, c-format msgid "adding 0 %s entries.\n" msgstr "" -#: lib/rpmdb.c:1937 +#: lib/rpmdb.c:1949 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1946 +#: lib/rpmdb.c:1958 #, c-format msgid "adding %d entries to %s index:\n" msgstr "" -#: lib/rpmdb.c:2304 +#: lib/rpmdb.c:2316 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2308 +#: lib/rpmdb.c:2320 #, c-format msgid "temporary database %s already exists" msgstr "" -#: lib/rpmdb.c:2314 +#: lib/rpmdb.c:2326 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2316 +#: lib/rpmdb.c:2328 #, c-format msgid "error creating directory %s: %s" msgstr "" -#: lib/rpmdb.c:2323 +#: lib/rpmdb.c:2335 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2332 +#: lib/rpmdb.c:2344 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2355 +#: lib/rpmdb.c:2367 #, c-format msgid "record number %d in database is bad -- skipping." msgstr "" -#: lib/rpmdb.c:2387 +#: lib/rpmdb.c:2399 #, c-format msgid "cannot add record originally at %d" msgstr "" -#: lib/rpmdb.c:2405 +#: lib/rpmdb.c:2417 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2413 +#: lib/rpmdb.c:2425 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2415 +#: lib/rpmdb.c:2427 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2425 +#: lib/rpmdb.c:2437 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2427 +#: lib/rpmdb.c:2439 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: lib/rpminstall.c:126 +#: lib/rpminstall.c:129 msgid "counting packages to install\n" msgstr "" -#: lib/rpminstall.c:130 +#: lib/rpminstall.c:133 #, c-format msgid "found %d packages\n" msgstr "" -#: lib/rpminstall.c:135 +#: lib/rpminstall.c:138 msgid "looking for packages to download\n" msgstr "" -#: lib/rpminstall.c:150 +#: lib/rpminstall.c:153 #, c-format msgid "skipping %s - rpmGlob failed(%d)\n" msgstr "" -#: lib/rpminstall.c:165 +#: lib/rpminstall.c:168 #, c-format msgid "Retrieving %s\n" msgstr "" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:175 +#: lib/rpminstall.c:178 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:179 +#: lib/rpminstall.c:182 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "" -#: lib/rpminstall.c:206 +#: lib/rpminstall.c:209 #, c-format msgid "retrieved %d packages\n" msgstr "" -#: lib/rpminstall.c:217 lib/rpminstall.c:360 +#: lib/rpminstall.c:220 lib/rpminstall.c:363 #, c-format msgid "cannot open file %s: %s\n" msgstr "" -#: lib/rpminstall.c:235 lib/rpminstall.c:499 +#: lib/rpminstall.c:238 lib/rpminstall.c:503 #, c-format msgid "%s cannot be installed\n" msgstr "" -#: lib/rpminstall.c:270 +#: lib/rpminstall.c:273 #, c-format msgid "package %s is not relocateable\n" msgstr "" -#: lib/rpminstall.c:289 +#: lib/rpminstall.c:292 #, c-format msgid "error reading from file %s\n" msgstr "" -#: lib/rpminstall.c:294 +#: lib/rpminstall.c:297 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:311 +#: lib/rpminstall.c:314 #, c-format msgid "found %d source and %d binary packages\n" msgstr "" -#: lib/rpminstall.c:322 +#: lib/rpminstall.c:325 msgid "failed dependencies:\n" msgstr "" -#: lib/rpminstall.c:340 +#: lib/rpminstall.c:343 msgid "installing binary packages\n" msgstr "" -#: lib/rpminstall.c:438 +#: lib/rpminstall.c:441 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "" -#: lib/rpminstall.c:461 +#: lib/rpminstall.c:464 msgid "removing these packages would break dependencies:\n" msgstr "" -#: lib/rpminstall.c:488 +#: lib/rpminstall.c:492 #, c-format msgid "cannot open %s: %s\n" msgstr "" -#: lib/rpminstall.c:494 +#: lib/rpminstall.c:498 #, c-format msgid "Installing %s\n" msgstr "" @@ -5,7 +5,7 @@ Summary: The Red Hat package management system. Name: rpm %define version 4.0 Version: %{version} -Release: 0.39 +Release: 0.40 Group: System Environment/Base Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-3.0.x/rpm-%{version}.tar.gz Copyright: GPL @@ -255,6 +255,9 @@ fi %{__prefix}/include/popt.h %changelog +* Mon Jun 19 2000 Jeff Johnson <jbj@redhat.com> +- fix: open all db indices before performing chroot. + * Sun Jun 18 2000 Jeff Johnson <jbj@redhat.com> - require --rebuilddb to convert db1 -> db3, better messages. |