From: jbj Date: Thu, 15 Nov 2001 18:22:33 +0000 (+0000) Subject: - tweak overlapped file fingerprint retrieval for speed. X-Git-Tag: rpm-4.4-release~1339 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=846ed75f9b1b0c4c916787aa79477e98be02d30e;p=platform%2Fupstream%2Frpm.git - tweak overlapped file fingerprint retrieval for speed. CVS patchset: 5181 CVS date: 2001/11/15 18:22:33 --- diff --git a/CHANGES b/CHANGES index 26db302..f3259b8 100644 --- a/CHANGES +++ b/CHANGES @@ -60,6 +60,7 @@ - lclint rpmio fiddles. - split file info tag sets into rpmfi.c. - create toy TFI_t iterators. + - tweak overlapped file fingerprint retrieval for speed. 4.0.3 -> 4.0.4: diff --git a/db3/configure b/db3/configure index b9390c2..acf99ed 100755 --- a/db3/configure +++ b/db3/configure @@ -8,6 +8,7 @@ rm -f config.cache ln -sf ../dist $db_dist/../db/dist ln -sf ../dist $db_dist +#CFLAGS="-O2 -D_GNU_SOURCE -D_REENTRANT" CC="$CC" CFLAGS="$CFLAGS" $db_dist/configure \ `echo $* | sed -e "s% --cache-file=.*$% --enable-shared --enable-static --enable-debug --enable-rpc --with-uniquename=_rpmdb --srcdir=$db_dist%"` diff --git a/lib/transaction.c b/lib/transaction.c index 4e5baeb..81842c1 100644 --- a/lib/transaction.c +++ b/lib/transaction.c @@ -420,6 +420,148 @@ static int handleRmvdInstalledFiles(const rpmTransactionSet ts, TFI_t fi, return 0; } +#define ISROOT(_d) (((_d)[0] == '/' && (_d)[1] == '\0') ? "" : (_d)) + +/*@unchecked@*/ +static int _fps_debug = 0; + +static int fpsCompare (const void * one, const void * two) +{ + const struct fingerPrint_s * a = (const struct fingerPrint_s *)one; + const struct fingerPrint_s * b = (const struct fingerPrint_s *)two; + int adnlen = strlen(a->entry->dirName); + int asnlen = (a->subDir ? strlen(a->subDir) : 0); + int abnlen = strlen(a->baseName); + int bdnlen = strlen(b->entry->dirName); + int bsnlen = (b->subDir ? strlen(b->subDir) : 0); + int bbnlen = strlen(b->baseName); + char * afn, * bfn, * t; + int rc = 0; + + if (adnlen == 1 && asnlen != 0) adnlen = 0; + if (bdnlen == 1 && bsnlen != 0) bdnlen = 0; + + afn = t = alloca(adnlen+asnlen+abnlen+2); + if (adnlen) t = stpcpy(t, a->entry->dirName); + *t++ = '/'; + if (a->subDir && asnlen) t = stpcpy(t, a->subDir); + if (abnlen) t = stpcpy(t, a->baseName); + if (afn[0] == '/' && afn[1] == '/') afn++; + + bfn = t = alloca(bdnlen+bsnlen+bbnlen+2); + if (bdnlen) t = stpcpy(t, b->entry->dirName); + *t++ = '/'; + if (b->subDir && bsnlen) t = stpcpy(t, b->subDir); + if (bbnlen) t = stpcpy(t, b->baseName); + if (bfn[0] == '/' && bfn[1] == '/') bfn++; + + rc = strcmp(afn, bfn); +/*@-modfilesys@*/ +if (_fps_debug) +fprintf(stderr, "\trc(%d) = strcmp(\"%s\", \"%s\")\n", rc, afn, bfn); +/*@=modfilesys@*/ + +/*@-modfilesys@*/ +if (_fps_debug) +fprintf(stderr, "\t%s/%s%s\trc %d\n", +ISROOT(b->entry->dirName), +(b->subDir ? b->subDir : ""), +b->baseName, +rc +); +/*@=modfilesys@*/ + + return rc; +} + +/*@unchecked@*/ +static int _linear_fps_search = 0; + +static int findFps(const struct fingerPrint_s * fiFps, + const struct fingerPrint_s * otherFps, + int otherFc) + /*@*/ +{ + int otherFileNum; + +/*@-modfilesys@*/ +if (_fps_debug) +fprintf(stderr, "==> %s/%s%s\n", +ISROOT(fiFps->entry->dirName), +(fiFps->subDir ? fiFps->subDir : ""), +fiFps->baseName); +/*@=modfilesys@*/ + + if (_linear_fps_search) { + +linear: + for (otherFileNum = 0; otherFileNum < otherFc; otherFileNum++, otherFps++) { + +/*@-modfilesys@*/ +if (_fps_debug) +fprintf(stderr, "\t%4d %s/%s%s\n", otherFileNum, +ISROOT(otherFps->entry->dirName), +(otherFps->subDir ? otherFps->subDir : ""), +otherFps->baseName); +/*@=modfilesys@*/ + + /* If the addresses are the same, so are the values. */ + if (fiFps == otherFps) + break; + + /* Otherwise, compare fingerprints by value. */ + /*@-nullpass@*/ /* LCL: looks good to me */ + if (FP_EQUAL((*fiFps), (*otherFps))) + break; + /*@=nullpass@*/ + } + +if (otherFileNum == otherFc) { +/*@-modfilesys@*/ +if (_fps_debug) +fprintf(stderr, "*** NULL %s/%s%s\n", +ISROOT(fiFps->entry->dirName), +(fiFps->subDir ? fiFps->subDir : ""), +fiFps->baseName); +/*@=modfilesys@*/ +} + + return otherFileNum; + + } else { + + const struct fingerPrint_s * bingoFps; + + bingoFps = bsearch(fiFps, otherFps, otherFc, sizeof(*otherFps), fpsCompare); + if (bingoFps == NULL) { +/*@-modfilesys@*/ +fprintf(stderr, "*** NULL %s/%s%s\n", +ISROOT(fiFps->entry->dirName), +(fiFps->subDir ? fiFps->subDir : ""), +fiFps->baseName); +/*@=modfilesys@*/ + goto linear; + } + + /* If the addresses are the same, so are the values. */ + /*@-nullpass@*/ /* LCL: looks good to me */ + if (!(fiFps == bingoFps || FP_EQUAL((*fiFps), (*bingoFps)))) { +/*@-modfilesys@*/ +fprintf(stderr, "*** BAD %s/%s%s\n", +ISROOT(bingoFps->entry->dirName), +(bingoFps->subDir ? bingoFps->subDir : ""), +bingoFps->baseName); +/*@=modfilesys@*/ + goto linear; + } + + otherFileNum = (bingoFps != NULL ? (bingoFps - otherFps) : 0); + + } + + return otherFileNum; +} + /** * Update disk space needs on each partition for this package. */ @@ -437,6 +579,7 @@ static void handleOverlappedFiles(const rpmTransactionSet ts, fi = tfiInit(fi, 0); if (fi != NULL) while ((i = tfiNext(fi)) >= 0) { + struct fingerPrint_s * fiFps; int otherPkgNum, otherFileNum; const TFI_t * recs; int numRecs; @@ -445,6 +588,7 @@ static void handleOverlappedFiles(const rpmTransactionSet ts, continue; fn = tfiGetFN(fi); + fiFps = fi->fps + i; if (ts->di) { ds = ts->di; @@ -459,7 +603,7 @@ static void handleOverlappedFiles(const rpmTransactionSet ts, * will be installed and removed so the records for an overlapped * files will be sorted in exactly the same order. */ - (void) htGetEntry(ts->ht, &fi->fps[i], + (void) htGetEntry(ts->ht, fiFps, (const void ***) &recs, &numRecs, NULL); /* @@ -489,29 +633,23 @@ static void handleOverlappedFiles(const rpmTransactionSet ts, /* Find what the previous disposition of this file was. */ otherFileNum = -1; /* keep gcc quiet */ for (otherPkgNum = j - 1; otherPkgNum >= 0; otherPkgNum--) { + struct fingerPrint_s * otherFps; + TFI_t otherFi; + int otherFc; + + otherFi = recs[otherPkgNum]; + /* Added packages need only look at other added packages. */ - if (p->type == TR_ADDED && recs[otherPkgNum]->te->type != TR_ADDED) + if (p->type == TR_ADDED && otherFi->te->type != TR_ADDED) /*@innercontinue@*/ continue; - /* TESTME: there are more efficient searches in the world... */ - for (otherFileNum = 0; - otherFileNum < recs[otherPkgNum]->fc; - otherFileNum++) - { + otherFps = otherFi->fps; + otherFc = otherFi->fc; - /* If the addresses are the same, so are the values. */ - if ((fi->fps + i) == (recs[otherPkgNum]->fps + otherFileNum)) - /*@innerbreak@*/ break; + otherFileNum = findFps(fiFps, otherFps, otherFc); - /* Otherwise, compare fingerprints by value. */ - /*@-nullpass@*/ /* LCL: looks good to me */ - if (FP_EQUAL(fi->fps[i], recs[otherPkgNum]->fps[otherFileNum])) - /*@innerbreak@*/ break; - /*@=nullpass@*/ - - } /* XXX is this test still necessary? */ - if (recs[otherPkgNum]->actions[otherFileNum] != FA_UNKNOWN) + if (otherFi->actions[otherFileNum] != FA_UNKNOWN) /*@innerbreak@*/ break; } @@ -561,6 +699,7 @@ static void handleOverlappedFiles(const rpmTransactionSet ts, fi->actions[i] = FA_CREATE; } } /*@switchbreak@*/ break; + case TR_REMOVED: if (otherPkgNum >= 0) { /* Here is an overlapped added file we don't want to nuke. */ diff --git a/po/cs.po b/po/cs.po index 4be6d51..af60772 100644 --- a/po/cs.po +++ b/po/cs.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-11-13 13:56-0500\n" +"POT-Creation-Date: 2001-11-15 13:11-0500\n" "PO-Revision-Date: 2001-07-24 10:02+0100\n" "Last-Translator: Milan Kerslager \n" "Language-Team: Czech \n" @@ -2410,12 +2410,12 @@ msgstr "z msgid "package %s is not installed\n" msgstr "balíèek %s není nainstalován\n" -#: lib/rpmal.c:647 +#: lib/rpmal.c:673 #, fuzzy msgid "(added files)" msgstr "¹patný db soubor %s\n" -#: lib/rpmal.c:744 +#: lib/rpmal.c:770 #, fuzzy msgid "(added provide)" msgstr "%s: %-45s ANO (db poskytuje)\n" @@ -2832,18 +2832,18 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "Podpisu: velikost(%d)+vata(%d)\n" -#: lib/transaction.c:185 +#: lib/transaction.c:182 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s pøeskoèeno, proto¾e chybí pøíznak\n" #. @innercontinue@ -#: lib/transaction.c:850 +#: lib/transaction.c:981 #, c-format msgid "excluding directory %s\n" msgstr "vynechávám adresáø %s\n" -#: lib/transaction.c:918 +#: lib/transaction.c:1071 msgid "getting list of mounted filesystems\n" msgstr "získávám seznam pøipojených systémù souborù\n" @@ -3026,36 +3026,36 @@ msgstr "generovat hlavi msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "dbiTagsInit: neznámá znaèka: \"%s\" ignorována\n" -#: rpmdb/rpmdb.c:383 +#: rpmdb/rpmdb.c:387 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "nemohu otevøít index %s pøi pou¾ívání db%d - %s (%d)\n" -#: rpmdb/rpmdb.c:405 +#: rpmdb/rpmdb.c:409 #, c-format msgid "cannot open %s index\n" msgstr "nemohu otevøít index %s\n" -#: rpmdb/rpmdb.c:497 +#: rpmdb/rpmdb.c:501 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "chyba(%d) pøi získávání záznamu \"%s\" z indexu %s\n" -#: rpmdb/rpmdb.c:628 +#: rpmdb/rpmdb.c:632 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "chyba(%d) pøi ukládání záznamu %s do %s\n" -#: rpmdb/rpmdb.c:638 +#: rpmdb/rpmdb.c:642 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "chyba(%d) pøi odstraòování záznamu %s z %s\n" -#: rpmdb/rpmdb.c:902 +#: rpmdb/rpmdb.c:906 msgid "no dbpath has been set\n" msgstr "nebyla nastavena dbpath\n" -#: rpmdb/rpmdb.c:1046 +#: rpmdb/rpmdb.c:1050 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" @@ -3063,115 +3063,115 @@ msgstr "" "databáze je ve starém formátu; pou¾ijte --rebuilddb pro pøevod do nového\n" #. error -#: rpmdb/rpmdb.c:1311 +#: rpmdb/rpmdb.c:1315 #, c-format msgid "error(%d) counting packages\n" msgstr "chyba(%d) pøi poèítání balíèkù\n" -#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 +#: rpmdb/rpmdb.c:2092 rpmdb/rpmdb.c:3345 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "záznam èíslo %d v databázi je chybný -- vynechávám.\n" -#: rpmdb/rpmdb.c:2141 +#: rpmdb/rpmdb.c:2145 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "rpmdb: poru¹ená polo¾ka hlavièky #%u, pøeskakuji.\n" -#: rpmdb/rpmdb.c:2411 +#: rpmdb/rpmdb.c:2415 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "%s: nemohu èíst hlavièku na adrese 0x%x\n" -#: rpmdb/rpmdb.c:2483 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "odstraòuji \"%s\" z indexu %s.\n" -#: rpmdb/rpmdb.c:2492 +#: rpmdb/rpmdb.c:2496 #, c-format msgid "removing %d entries from %s index.\n" msgstr "odstraòuji %d polo¾ek z indexu %s.\n" -#: rpmdb/rpmdb.c:2693 +#: rpmdb/rpmdb.c:2697 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "chyba(%d) pøi alokaci nové instance balíèku\n" -#: rpmdb/rpmdb.c:2774 +#: rpmdb/rpmdb.c:2778 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "pøidávám \"%s\" do indexu %s\n" -#: rpmdb/rpmdb.c:2785 +#: rpmdb/rpmdb.c:2789 #, c-format msgid "adding %d entries to %s index.\n" msgstr "pøidávám %d polo¾ek do indexu %s.\n" -#: rpmdb/rpmdb.c:3227 +#: rpmdb/rpmdb.c:3231 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "odstraòuji %s po úspì¹ném znovusestavení db3.\n" -#: rpmdb/rpmdb.c:3260 +#: rpmdb/rpmdb.c:3264 msgid "no dbpath has been set" msgstr "nebyla nastavena dbpath" -#: rpmdb/rpmdb.c:3287 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "rebuilding database %s into %s\n" msgstr "databázi %s pøevádím do %s\n" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3295 #, c-format msgid "temporary database %s already exists\n" msgstr "doèasná databáze %s ji¾ existuje\n" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3301 #, c-format msgid "creating directory %s\n" msgstr "vytváøím adresáø %s\n" -#: rpmdb/rpmdb.c:3299 +#: rpmdb/rpmdb.c:3303 #, c-format msgid "creating directory %s: %s\n" msgstr "vytváøím adresáø %s: %s\n" -#: rpmdb/rpmdb.c:3306 +#: rpmdb/rpmdb.c:3310 #, c-format msgid "opening old database with dbapi %d\n" msgstr "otevírám starou databázi s dbapi %d\n" -#: rpmdb/rpmdb.c:3317 +#: rpmdb/rpmdb.c:3321 #, c-format msgid "opening new database with dbapi %d\n" msgstr "otevírám novou databázi s dbapi %d\n" -#: rpmdb/rpmdb.c:3381 +#: rpmdb/rpmdb.c:3385 #, c-format msgid "cannot add record originally at %u\n" msgstr "nemohu pøidat záznam - pùvodnì u %d\n" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3403 msgid "failed to rebuild database: original database remains in place\n" msgstr "" "databázi nelze zvovu vytvoøit; pùvodní databáze zùstává na svém místì\n" -#: rpmdb/rpmdb.c:3407 +#: rpmdb/rpmdb.c:3411 msgid "failed to replace old database with new database!\n" msgstr "starou databázi nelze nahradit novou databází!\n" -#: rpmdb/rpmdb.c:3409 +#: rpmdb/rpmdb.c:3413 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "pro obnovení nahraïte soubory v %s soubory z %s" -#: rpmdb/rpmdb.c:3419 +#: rpmdb/rpmdb.c:3423 #, c-format msgid "removing directory %s\n" msgstr "ma¾u adresáø %s\n" -#: rpmdb/rpmdb.c:3421 +#: rpmdb/rpmdb.c:3425 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "nemohu odstranit adresáø %s: %s\n" diff --git a/po/da.po b/po/da.po index 0aba6a1..382cbea 100644 --- a/po/da.po +++ b/po/da.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-11-13 13:56-0500\n" +"POT-Creation-Date: 2001-11-15 13:11-0500\n" "PO-Revision-Date: 2001-04-05 23:03GMT\n" "Last-Translator: Claus Hindsgaul \n" "Language-Team: Danish \n" @@ -2431,12 +2431,12 @@ msgstr "post %d kunne ikke l msgid "package %s is not installed\n" msgstr "pakken %s er ikke installeret\n" -#: lib/rpmal.c:647 +#: lib/rpmal.c:673 #, fuzzy msgid "(added files)" msgstr "ugyldig db-fil %s\n" -#: lib/rpmal.c:744 +#: lib/rpmal.c:770 #, fuzzy msgid "(added provide)" msgstr "%s: %-45s JA (db tilfører)\n" @@ -2854,18 +2854,18 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "Signaturfyld : %d\n" -#: lib/transaction.c:185 +#: lib/transaction.c:182 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s oversprunget grundet manglende ok-flag\n" #. @innercontinue@ -#: lib/transaction.c:850 +#: lib/transaction.c:981 #, c-format msgid "excluding directory %s\n" msgstr "ekskluderer kataloget %s\n" -#: lib/transaction.c:918 +#: lib/transaction.c:1071 msgid "getting list of mounted filesystems\n" msgstr "henter liste over monterede filsystemer\n" @@ -3051,36 +3051,36 @@ msgstr "" msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "dbiTagsInit: ukendt mærkenavn: \"%s\" ignoreret\n" -#: rpmdb/rpmdb.c:383 +#: rpmdb/rpmdb.c:387 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "kan ikke åbne '%s'-indeks ved brug af db%d - %s (%d)\n" -#: rpmdb/rpmdb.c:405 +#: rpmdb/rpmdb.c:409 #, c-format msgid "cannot open %s index\n" msgstr "kan ikke åbne '%s'-indeks\n" -#: rpmdb/rpmdb.c:497 +#: rpmdb/rpmdb.c:501 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "fejl(%d) ved hentning af \"%s\"-poster fra '%s'-indekset\n" -#: rpmdb/rpmdb.c:628 +#: rpmdb/rpmdb.c:632 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "fejl(%d) ved gemning af post %s i %s\n" -#: rpmdb/rpmdb.c:638 +#: rpmdb/rpmdb.c:642 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "fejl(%d) ved fjernelse af post %s fra %s\n" -#: rpmdb/rpmdb.c:902 +#: rpmdb/rpmdb.c:906 msgid "no dbpath has been set\n" msgstr "der er ikke sat nogen dbpath\n" -#: rpmdb/rpmdb.c:1046 +#: rpmdb/rpmdb.c:1050 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" @@ -3089,118 +3089,118 @@ msgstr "" "database med det nye format\n" #. error -#: rpmdb/rpmdb.c:1311 +#: rpmdb/rpmdb.c:1315 #, c-format msgid "error(%d) counting packages\n" msgstr "fejl(%d) ved optælling af pakker\n" -#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 +#: rpmdb/rpmdb.c:2092 rpmdb/rpmdb.c:3345 #, fuzzy, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "post nummer %d i databasen er fejlbehæftet -- overspringer.\n" -#: rpmdb/rpmdb.c:2141 +#: rpmdb/rpmdb.c:2145 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2411 +#: rpmdb/rpmdb.c:2415 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "%s: kan ikke læse hoved ved 0x%x\n" -#: rpmdb/rpmdb.c:2483 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "fjerner \"%s\" fra %s-indekset.\n" -#: rpmdb/rpmdb.c:2492 +#: rpmdb/rpmdb.c:2496 #, c-format msgid "removing %d entries from %s index.\n" msgstr "fjerne %d indgange fra %s-indekset.\n" -#: rpmdb/rpmdb.c:2693 +#: rpmdb/rpmdb.c:2697 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "fejl(%d) under allokering af ny pakkeinstans\n" -#: rpmdb/rpmdb.c:2774 +#: rpmdb/rpmdb.c:2778 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" "tilføjer \"%s\" til '%s'-indekset.\n" "\n" -#: rpmdb/rpmdb.c:2785 +#: rpmdb/rpmdb.c:2789 #, c-format msgid "adding %d entries to %s index.\n" msgstr "tilføjer %d indgange til '%s'-indekset.\n" -#: rpmdb/rpmdb.c:3227 +#: rpmdb/rpmdb.c:3231 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "fjerner %s efter vellykket genopbygning af db3.\n" -#: rpmdb/rpmdb.c:3260 +#: rpmdb/rpmdb.c:3264 msgid "no dbpath has been set" msgstr "der ikke sat nogen dbpath" -#: rpmdb/rpmdb.c:3287 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "rebuilding database %s into %s\n" msgstr "genopbygger database %s over i %s\n" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3295 #, c-format msgid "temporary database %s already exists\n" msgstr "den midlertidige database %s eksisterer allerede\n" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3301 #, c-format msgid "creating directory %s\n" msgstr "" "opretter kataloget %s\n" "\n" -#: rpmdb/rpmdb.c:3299 +#: rpmdb/rpmdb.c:3303 #, c-format msgid "creating directory %s: %s\n" msgstr "opretter kataloget %s: %s\n" -#: rpmdb/rpmdb.c:3306 +#: rpmdb/rpmdb.c:3310 #, c-format msgid "opening old database with dbapi %d\n" msgstr "åbner gammel database med dbapi %d\n" -#: rpmdb/rpmdb.c:3317 +#: rpmdb/rpmdb.c:3321 #, c-format msgid "opening new database with dbapi %d\n" msgstr "åbner ny database med dbapi %d\n" -#: rpmdb/rpmdb.c:3381 +#: rpmdb/rpmdb.c:3385 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "kunne ikke tilføje posten, der tidligere var ved %d\n" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3403 msgid "failed to rebuild database: original database remains in place\n" msgstr "kunne ikke genopbygge database: original-databasen beholdes\n" -#: rpmdb/rpmdb.c:3407 +#: rpmdb/rpmdb.c:3411 msgid "failed to replace old database with new database!\n" msgstr "kunne ikke erstatte gammel database med ny database!\n" -#: rpmdb/rpmdb.c:3409 +#: rpmdb/rpmdb.c:3413 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "erstat filer i %s med filer fra %s for at genoprette" -#: rpmdb/rpmdb.c:3419 +#: rpmdb/rpmdb.c:3423 #, c-format msgid "removing directory %s\n" msgstr "fjerner kataloget %s\n" -#: rpmdb/rpmdb.c:3421 +#: rpmdb/rpmdb.c:3425 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "kunne ikke fjerne katalog %s: %s\n" diff --git a/po/de.po b/po/de.po index dbc0edf..9eb08a3 100644 --- a/po/de.po +++ b/po/de.po @@ -37,7 +37,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-11-13 13:56-0500\n" +"POT-Creation-Date: 2001-11-15 13:11-0500\n" "PO-Revision-Date: 1998-08-03 18:02+02:00\n" "Last-Translator: Karl Eichwalder \n" "Language-Team: German \n" @@ -2610,12 +2610,12 @@ msgid "package %s is not installed\n" msgstr "Paket %s ist nicht installiert\n" # , c-format -#: lib/rpmal.c:647 +#: lib/rpmal.c:673 #, fuzzy msgid "(added files)" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: lib/rpmal.c:744 +#: lib/rpmal.c:770 #, fuzzy msgid "(added provide)" msgstr "die Datei »%s« gehört zu keinem Paket\n" @@ -3049,18 +3049,18 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:185 +#: lib/transaction.c:182 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:850 +#: lib/transaction.c:981 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" -#: lib/transaction.c:918 +#: lib/transaction.c:1071 msgid "getting list of mounted filesystems\n" msgstr "" @@ -3238,157 +3238,157 @@ msgstr "" msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:383 +#: rpmdb/rpmdb.c:387 #, fuzzy, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "kann Datei %s nicht öffnen: " -#: rpmdb/rpmdb.c:405 +#: rpmdb/rpmdb.c:409 #, fuzzy, c-format msgid "cannot open %s index\n" msgstr "Fehler: kann %s nicht öffnen\n" -#: rpmdb/rpmdb.c:497 +#: rpmdb/rpmdb.c:501 #, fuzzy, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "Fehler beim Eintrag %s von %s" -#: rpmdb/rpmdb.c:628 +#: rpmdb/rpmdb.c:632 #, fuzzy, c-format msgid "error(%d) storing record %s into %s\n" msgstr "Fehler bei Schreiben des Eintrags %s nach %s" # FIXME -#: rpmdb/rpmdb.c:638 +#: rpmdb/rpmdb.c:642 #, fuzzy, c-format msgid "error(%d) removing record %s from %s\n" msgstr "Fehler beim Löschen des Eintrags %s nach %s" -#: rpmdb/rpmdb.c:902 +#: rpmdb/rpmdb.c:906 #, fuzzy msgid "no dbpath has been set\n" msgstr "»dbpath« ist nicht gesetzt" -#: rpmdb/rpmdb.c:1046 +#: rpmdb/rpmdb.c:1050 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1311 +#: rpmdb/rpmdb.c:1315 #, fuzzy, c-format msgid "error(%d) counting packages\n" msgstr "Fehler beim Suchen nach Paket %s\n" -#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 +#: rpmdb/rpmdb.c:2092 rpmdb/rpmdb.c:3345 #, fuzzy, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" "Eintrag Nummer %d in der Datenback ist nicht in Ordnung -- wird übersprungen" -#: rpmdb/rpmdb.c:2141 +#: rpmdb/rpmdb.c:2145 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2411 +#: rpmdb/rpmdb.c:2415 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "kann Kopfzeilen bei %d nicht lesen, um danach zu suchen" # FIXME -#: rpmdb/rpmdb.c:2483 +#: rpmdb/rpmdb.c:2487 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "Fehler beim Löschen des Eintrags %s nach %s" # FIXME -#: rpmdb/rpmdb.c:2492 +#: rpmdb/rpmdb.c:2496 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "Fehler beim Löschen des Eintrags %s nach %s" -#: rpmdb/rpmdb.c:2693 +#: rpmdb/rpmdb.c:2697 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "Fehler beim Suchen nach Paket %s\n" -#: rpmdb/rpmdb.c:2774 +#: rpmdb/rpmdb.c:2778 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" # FIXME -#: rpmdb/rpmdb.c:2785 +#: rpmdb/rpmdb.c:2789 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "Fehler beim Löschen des Eintrags %s nach %s" -#: rpmdb/rpmdb.c:3227 +#: rpmdb/rpmdb.c:3231 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3260 +#: rpmdb/rpmdb.c:3264 msgid "no dbpath has been set" msgstr "»dbpath« ist nicht gesetzt" -#: rpmdb/rpmdb.c:3287 +#: rpmdb/rpmdb.c:3291 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3295 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "die temporäre Datenbank %s existiert schon" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3301 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" -#: rpmdb/rpmdb.c:3299 +#: rpmdb/rpmdb.c:3303 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" -#: rpmdb/rpmdb.c:3306 +#: rpmdb/rpmdb.c:3310 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: rpmdb/rpmdb.c:3317 +#: rpmdb/rpmdb.c:3321 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: rpmdb/rpmdb.c:3381 +#: rpmdb/rpmdb.c:3385 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "kann einen Eintrag hinzufügen, ursprünglich bei %d" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3403 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3407 +#: rpmdb/rpmdb.c:3411 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3409 +#: rpmdb/rpmdb.c:3413 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3419 +#: rpmdb/rpmdb.c:3423 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" # , c-format -#: rpmdb/rpmdb.c:3421 +#: rpmdb/rpmdb.c:3425 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" diff --git a/po/en_RN.po b/po/en_RN.po index 3aefd71..f9b7e5a 100644 --- a/po/en_RN.po +++ b/po/en_RN.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-11-13 13:56-0500\n" +"POT-Creation-Date: 2001-11-15 13:11-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2363,11 +2363,11 @@ msgstr "" msgid "package %s is not installed\n" msgstr "" -#: lib/rpmal.c:647 +#: lib/rpmal.c:673 msgid "(added files)" msgstr "" -#: lib/rpmal.c:744 +#: lib/rpmal.c:770 msgid "(added provide)" msgstr "" @@ -2777,18 +2777,18 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:185 +#: lib/transaction.c:182 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:850 +#: lib/transaction.c:981 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:918 +#: lib/transaction.c:1071 msgid "getting list of mounted filesystems\n" msgstr "" @@ -2963,150 +2963,150 @@ msgstr "" msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:383 +#: rpmdb/rpmdb.c:387 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:405 +#: rpmdb/rpmdb.c:409 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:497 +#: rpmdb/rpmdb.c:501 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:628 +#: rpmdb/rpmdb.c:632 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:638 +#: rpmdb/rpmdb.c:642 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:902 +#: rpmdb/rpmdb.c:906 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1046 +#: rpmdb/rpmdb.c:1050 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1311 +#: rpmdb/rpmdb.c:1315 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 +#: rpmdb/rpmdb.c:2092 rpmdb/rpmdb.c:3345 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2141 +#: rpmdb/rpmdb.c:2145 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2411 +#: rpmdb/rpmdb.c:2415 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2483 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2492 +#: rpmdb/rpmdb.c:2496 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2693 +#: rpmdb/rpmdb.c:2697 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2774 +#: rpmdb/rpmdb.c:2778 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2785 +#: rpmdb/rpmdb.c:2789 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3227 +#: rpmdb/rpmdb.c:3231 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3260 +#: rpmdb/rpmdb.c:3264 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3287 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3295 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3301 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3299 +#: rpmdb/rpmdb.c:3303 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3306 +#: rpmdb/rpmdb.c:3310 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3317 +#: rpmdb/rpmdb.c:3321 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3381 +#: rpmdb/rpmdb.c:3385 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3403 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3407 +#: rpmdb/rpmdb.c:3411 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3409 +#: rpmdb/rpmdb.c:3413 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3419 +#: rpmdb/rpmdb.c:3423 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3421 +#: rpmdb/rpmdb.c:3425 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" diff --git a/po/es.po b/po/es.po index 3aefd71..f9b7e5a 100644 --- a/po/es.po +++ b/po/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-11-13 13:56-0500\n" +"POT-Creation-Date: 2001-11-15 13:11-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2363,11 +2363,11 @@ msgstr "" msgid "package %s is not installed\n" msgstr "" -#: lib/rpmal.c:647 +#: lib/rpmal.c:673 msgid "(added files)" msgstr "" -#: lib/rpmal.c:744 +#: lib/rpmal.c:770 msgid "(added provide)" msgstr "" @@ -2777,18 +2777,18 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:185 +#: lib/transaction.c:182 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:850 +#: lib/transaction.c:981 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:918 +#: lib/transaction.c:1071 msgid "getting list of mounted filesystems\n" msgstr "" @@ -2963,150 +2963,150 @@ msgstr "" msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:383 +#: rpmdb/rpmdb.c:387 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:405 +#: rpmdb/rpmdb.c:409 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:497 +#: rpmdb/rpmdb.c:501 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:628 +#: rpmdb/rpmdb.c:632 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:638 +#: rpmdb/rpmdb.c:642 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:902 +#: rpmdb/rpmdb.c:906 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1046 +#: rpmdb/rpmdb.c:1050 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1311 +#: rpmdb/rpmdb.c:1315 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 +#: rpmdb/rpmdb.c:2092 rpmdb/rpmdb.c:3345 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2141 +#: rpmdb/rpmdb.c:2145 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2411 +#: rpmdb/rpmdb.c:2415 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2483 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2492 +#: rpmdb/rpmdb.c:2496 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2693 +#: rpmdb/rpmdb.c:2697 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2774 +#: rpmdb/rpmdb.c:2778 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2785 +#: rpmdb/rpmdb.c:2789 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3227 +#: rpmdb/rpmdb.c:3231 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3260 +#: rpmdb/rpmdb.c:3264 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3287 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3295 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3301 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3299 +#: rpmdb/rpmdb.c:3303 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3306 +#: rpmdb/rpmdb.c:3310 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3317 +#: rpmdb/rpmdb.c:3321 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3381 +#: rpmdb/rpmdb.c:3385 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3403 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3407 +#: rpmdb/rpmdb.c:3411 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3409 +#: rpmdb/rpmdb.c:3413 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3419 +#: rpmdb/rpmdb.c:3423 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3421 +#: rpmdb/rpmdb.c:3425 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" diff --git a/po/eu_ES.po b/po/eu_ES.po index 3aefd71..f9b7e5a 100644 --- a/po/eu_ES.po +++ b/po/eu_ES.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-11-13 13:56-0500\n" +"POT-Creation-Date: 2001-11-15 13:11-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2363,11 +2363,11 @@ msgstr "" msgid "package %s is not installed\n" msgstr "" -#: lib/rpmal.c:647 +#: lib/rpmal.c:673 msgid "(added files)" msgstr "" -#: lib/rpmal.c:744 +#: lib/rpmal.c:770 msgid "(added provide)" msgstr "" @@ -2777,18 +2777,18 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:185 +#: lib/transaction.c:182 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:850 +#: lib/transaction.c:981 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:918 +#: lib/transaction.c:1071 msgid "getting list of mounted filesystems\n" msgstr "" @@ -2963,150 +2963,150 @@ msgstr "" msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:383 +#: rpmdb/rpmdb.c:387 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:405 +#: rpmdb/rpmdb.c:409 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:497 +#: rpmdb/rpmdb.c:501 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:628 +#: rpmdb/rpmdb.c:632 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:638 +#: rpmdb/rpmdb.c:642 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:902 +#: rpmdb/rpmdb.c:906 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1046 +#: rpmdb/rpmdb.c:1050 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1311 +#: rpmdb/rpmdb.c:1315 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 +#: rpmdb/rpmdb.c:2092 rpmdb/rpmdb.c:3345 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2141 +#: rpmdb/rpmdb.c:2145 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2411 +#: rpmdb/rpmdb.c:2415 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2483 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2492 +#: rpmdb/rpmdb.c:2496 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2693 +#: rpmdb/rpmdb.c:2697 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2774 +#: rpmdb/rpmdb.c:2778 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2785 +#: rpmdb/rpmdb.c:2789 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3227 +#: rpmdb/rpmdb.c:3231 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3260 +#: rpmdb/rpmdb.c:3264 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3287 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3295 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3301 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3299 +#: rpmdb/rpmdb.c:3303 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3306 +#: rpmdb/rpmdb.c:3310 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3317 +#: rpmdb/rpmdb.c:3321 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3381 +#: rpmdb/rpmdb.c:3385 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3403 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3407 +#: rpmdb/rpmdb.c:3411 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3409 +#: rpmdb/rpmdb.c:3413 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3419 +#: rpmdb/rpmdb.c:3423 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3421 +#: rpmdb/rpmdb.c:3425 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" diff --git a/po/fi.po b/po/fi.po index 588f707..18799f9 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-11-13 13:56-0500\n" +"POT-Creation-Date: 2001-11-15 13:11-0500\n" "Last-Translator: Raimo Koski \n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=\n" @@ -2467,12 +2467,12 @@ msgstr "tietuetta %d ei voitu lukea\n" msgid "package %s is not installed\n" msgstr "paketti %s ei ole asennettu\n" -#: lib/rpmal.c:647 +#: lib/rpmal.c:673 #, fuzzy msgid "(added files)" msgstr "en voinut avata %s: %s" -#: lib/rpmal.c:744 +#: lib/rpmal.c:770 #, fuzzy msgid "(added provide)" msgstr "tiedostoa %s ei omista mikään paketti\n" @@ -2901,18 +2901,18 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:185 +#: lib/transaction.c:182 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:850 +#: lib/transaction.c:981 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" -#: lib/transaction.c:918 +#: lib/transaction.c:1071 msgid "getting list of mounted filesystems\n" msgstr "" @@ -3089,151 +3089,151 @@ msgstr "" msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:383 +#: rpmdb/rpmdb.c:387 #, fuzzy, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "en voinut avata tiedostoa %s: " -#: rpmdb/rpmdb.c:405 +#: rpmdb/rpmdb.c:409 #, fuzzy, c-format msgid "cannot open %s index\n" msgstr "virhe: en voi avata %s\n" -#: rpmdb/rpmdb.c:497 +#: rpmdb/rpmdb.c:501 #, fuzzy, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "virhe luettaessa tietuetta %s %s:stä" -#: rpmdb/rpmdb.c:628 +#: rpmdb/rpmdb.c:632 #, fuzzy, c-format msgid "error(%d) storing record %s into %s\n" msgstr "virhe talletettaessa tietuetta %s %s:ään" -#: rpmdb/rpmdb.c:638 +#: rpmdb/rpmdb.c:642 #, fuzzy, c-format msgid "error(%d) removing record %s from %s\n" msgstr "virhe poistettaessa tietuetta %s %s:stä" -#: rpmdb/rpmdb.c:902 +#: rpmdb/rpmdb.c:906 #, fuzzy msgid "no dbpath has been set\n" msgstr "dbpath ei ole asetettu" -#: rpmdb/rpmdb.c:1046 +#: rpmdb/rpmdb.c:1050 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1311 +#: rpmdb/rpmdb.c:1315 #, fuzzy, c-format msgid "error(%d) counting packages\n" msgstr "virhe etsittäessä pakettia %s\n" -#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 +#: rpmdb/rpmdb.c:2092 rpmdb/rpmdb.c:3345 #, fuzzy, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "tietue numero %d tietokannassa viallinen -- ohitan sen" -#: rpmdb/rpmdb.c:2141 +#: rpmdb/rpmdb.c:2145 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2411 +#: rpmdb/rpmdb.c:2415 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "en voi lukea headeria %d:stä päivittäessä" -#: rpmdb/rpmdb.c:2483 +#: rpmdb/rpmdb.c:2487 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "virhe poistettaessa tietuetta %s %s:stä" -#: rpmdb/rpmdb.c:2492 +#: rpmdb/rpmdb.c:2496 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "virhe poistettaessa tietuetta %s %s:stä" -#: rpmdb/rpmdb.c:2693 +#: rpmdb/rpmdb.c:2697 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "virhe etsittäessä pakettia %s\n" -#: rpmdb/rpmdb.c:2774 +#: rpmdb/rpmdb.c:2778 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2785 +#: rpmdb/rpmdb.c:2789 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "virhe poistettaessa tietuetta %s %s:stä" -#: rpmdb/rpmdb.c:3227 +#: rpmdb/rpmdb.c:3231 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3260 +#: rpmdb/rpmdb.c:3264 msgid "no dbpath has been set" msgstr "dbpath ei ole asetettu" -#: rpmdb/rpmdb.c:3287 +#: rpmdb/rpmdb.c:3291 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3295 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "väliaikainen tietokanta %s on jo olemassa" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3301 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" -#: rpmdb/rpmdb.c:3299 +#: rpmdb/rpmdb.c:3303 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" -#: rpmdb/rpmdb.c:3306 +#: rpmdb/rpmdb.c:3310 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: rpmdb/rpmdb.c:3317 +#: rpmdb/rpmdb.c:3321 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: rpmdb/rpmdb.c:3381 +#: rpmdb/rpmdb.c:3385 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "en voi lisätä tietuetta %d:stä" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3403 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3407 +#: rpmdb/rpmdb.c:3411 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3409 +#: rpmdb/rpmdb.c:3413 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3419 +#: rpmdb/rpmdb.c:3423 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" -#: rpmdb/rpmdb.c:3421 +#: rpmdb/rpmdb.c:3425 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "en voinut avata %s: %s" diff --git a/po/fr.po b/po/fr.po index 83cb6d4..f364699 100644 --- a/po/fr.po +++ b/po/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-11-13 13:56-0500\n" +"POT-Creation-Date: 2001-11-15 13:11-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2516,12 +2516,12 @@ msgstr "" msgid "package %s is not installed\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/rpmal.c:647 +#: lib/rpmal.c:673 #, fuzzy msgid "(added files)" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpmal.c:744 +#: lib/rpmal.c:770 msgid "(added provide)" msgstr "" @@ -2944,18 +2944,18 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:185 +#: lib/transaction.c:182 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:850 +#: lib/transaction.c:981 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:918 +#: lib/transaction.c:1071 msgid "getting list of mounted filesystems\n" msgstr "" @@ -3132,150 +3132,150 @@ msgstr "" msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:383 +#: rpmdb/rpmdb.c:387 #, fuzzy, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:405 +#: rpmdb/rpmdb.c:409 #, fuzzy, c-format msgid "cannot open %s index\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:497 +#: rpmdb/rpmdb.c:501 #, fuzzy, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:628 +#: rpmdb/rpmdb.c:632 #, fuzzy, c-format msgid "error(%d) storing record %s into %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:638 +#: rpmdb/rpmdb.c:642 #, fuzzy, c-format msgid "error(%d) removing record %s from %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:902 +#: rpmdb/rpmdb.c:906 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1046 +#: rpmdb/rpmdb.c:1050 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1311 +#: rpmdb/rpmdb.c:1315 #, fuzzy, c-format msgid "error(%d) counting packages\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 +#: rpmdb/rpmdb.c:2092 rpmdb/rpmdb.c:3345 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2141 +#: rpmdb/rpmdb.c:2145 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2411 +#: rpmdb/rpmdb.c:2415 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "aucun package n'a t spcifi pour la dsinstallation" -#: rpmdb/rpmdb.c:2483 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2492 +#: rpmdb/rpmdb.c:2496 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:2693 +#: rpmdb/rpmdb.c:2697 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: rpmdb/rpmdb.c:2774 +#: rpmdb/rpmdb.c:2778 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2785 +#: rpmdb/rpmdb.c:2789 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:3227 +#: rpmdb/rpmdb.c:3231 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3260 +#: rpmdb/rpmdb.c:3264 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3287 +#: rpmdb/rpmdb.c:3291 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3295 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3301 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:3299 +#: rpmdb/rpmdb.c:3303 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:3306 +#: rpmdb/rpmdb.c:3310 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3317 +#: rpmdb/rpmdb.c:3321 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3381 +#: rpmdb/rpmdb.c:3385 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3403 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3407 +#: rpmdb/rpmdb.c:3411 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3409 +#: rpmdb/rpmdb.c:3413 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3419 +#: rpmdb/rpmdb.c:3423 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:3421 +#: rpmdb/rpmdb.c:3425 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "impossible d'ouvrir: %s\n" diff --git a/po/gl.po b/po/gl.po index e00a06e..e240c84 100644 --- a/po/gl.po +++ b/po/gl.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2001-11-13 13:56-0500\n" +"POT-Creation-Date: 2001-11-15 13:11-0500\n" "PO-Revision-Date: 2001-01-13 22:31+0100\n" "Last-Translator: Jesús Bravo Álvarez \n" "Language-Team: Galician \n" @@ -2358,11 +2358,11 @@ msgstr "" msgid "package %s is not installed\n" msgstr "" -#: lib/rpmal.c:647 +#: lib/rpmal.c:673 msgid "(added files)" msgstr "" -#: lib/rpmal.c:744 +#: lib/rpmal.c:770 msgid "(added provide)" msgstr "" @@ -2772,18 +2772,18 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:185 +#: lib/transaction.c:182 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:850 +#: lib/transaction.c:981 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:918 +#: lib/transaction.c:1071 msgid "getting list of mounted filesystems\n" msgstr "" @@ -2958,150 +2958,150 @@ msgstr "" msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:383 +#: rpmdb/rpmdb.c:387 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:405 +#: rpmdb/rpmdb.c:409 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:497 +#: rpmdb/rpmdb.c:501 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:628 +#: rpmdb/rpmdb.c:632 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:638 +#: rpmdb/rpmdb.c:642 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:902 +#: rpmdb/rpmdb.c:906 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1046 +#: rpmdb/rpmdb.c:1050 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1311 +#: rpmdb/rpmdb.c:1315 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 +#: rpmdb/rpmdb.c:2092 rpmdb/rpmdb.c:3345 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2141 +#: rpmdb/rpmdb.c:2145 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2411 +#: rpmdb/rpmdb.c:2415 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2483 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2492 +#: rpmdb/rpmdb.c:2496 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2693 +#: rpmdb/rpmdb.c:2697 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2774 +#: rpmdb/rpmdb.c:2778 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2785 +#: rpmdb/rpmdb.c:2789 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3227 +#: rpmdb/rpmdb.c:3231 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3260 +#: rpmdb/rpmdb.c:3264 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3287 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3295 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3301 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3299 +#: rpmdb/rpmdb.c:3303 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3306 +#: rpmdb/rpmdb.c:3310 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3317 +#: rpmdb/rpmdb.c:3321 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3381 +#: rpmdb/rpmdb.c:3385 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3403 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3407 +#: rpmdb/rpmdb.c:3411 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3409 +#: rpmdb/rpmdb.c:3413 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3419 +#: rpmdb/rpmdb.c:3423 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3421 +#: rpmdb/rpmdb.c:3425 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" diff --git a/po/hu.po b/po/hu.po index 3aefd71..f9b7e5a 100644 --- a/po/hu.po +++ b/po/hu.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-11-13 13:56-0500\n" +"POT-Creation-Date: 2001-11-15 13:11-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2363,11 +2363,11 @@ msgstr "" msgid "package %s is not installed\n" msgstr "" -#: lib/rpmal.c:647 +#: lib/rpmal.c:673 msgid "(added files)" msgstr "" -#: lib/rpmal.c:744 +#: lib/rpmal.c:770 msgid "(added provide)" msgstr "" @@ -2777,18 +2777,18 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:185 +#: lib/transaction.c:182 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:850 +#: lib/transaction.c:981 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:918 +#: lib/transaction.c:1071 msgid "getting list of mounted filesystems\n" msgstr "" @@ -2963,150 +2963,150 @@ msgstr "" msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:383 +#: rpmdb/rpmdb.c:387 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:405 +#: rpmdb/rpmdb.c:409 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:497 +#: rpmdb/rpmdb.c:501 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:628 +#: rpmdb/rpmdb.c:632 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:638 +#: rpmdb/rpmdb.c:642 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:902 +#: rpmdb/rpmdb.c:906 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1046 +#: rpmdb/rpmdb.c:1050 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1311 +#: rpmdb/rpmdb.c:1315 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 +#: rpmdb/rpmdb.c:2092 rpmdb/rpmdb.c:3345 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2141 +#: rpmdb/rpmdb.c:2145 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2411 +#: rpmdb/rpmdb.c:2415 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2483 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2492 +#: rpmdb/rpmdb.c:2496 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2693 +#: rpmdb/rpmdb.c:2697 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2774 +#: rpmdb/rpmdb.c:2778 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2785 +#: rpmdb/rpmdb.c:2789 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3227 +#: rpmdb/rpmdb.c:3231 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3260 +#: rpmdb/rpmdb.c:3264 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3287 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3295 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3301 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3299 +#: rpmdb/rpmdb.c:3303 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3306 +#: rpmdb/rpmdb.c:3310 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3317 +#: rpmdb/rpmdb.c:3321 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3381 +#: rpmdb/rpmdb.c:3385 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3403 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3407 +#: rpmdb/rpmdb.c:3411 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3409 +#: rpmdb/rpmdb.c:3413 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3419 +#: rpmdb/rpmdb.c:3423 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3421 +#: rpmdb/rpmdb.c:3425 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" diff --git a/po/id.po b/po/id.po index 3aefd71..f9b7e5a 100644 --- a/po/id.po +++ b/po/id.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-11-13 13:56-0500\n" +"POT-Creation-Date: 2001-11-15 13:11-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2363,11 +2363,11 @@ msgstr "" msgid "package %s is not installed\n" msgstr "" -#: lib/rpmal.c:647 +#: lib/rpmal.c:673 msgid "(added files)" msgstr "" -#: lib/rpmal.c:744 +#: lib/rpmal.c:770 msgid "(added provide)" msgstr "" @@ -2777,18 +2777,18 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:185 +#: lib/transaction.c:182 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:850 +#: lib/transaction.c:981 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:918 +#: lib/transaction.c:1071 msgid "getting list of mounted filesystems\n" msgstr "" @@ -2963,150 +2963,150 @@ msgstr "" msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:383 +#: rpmdb/rpmdb.c:387 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:405 +#: rpmdb/rpmdb.c:409 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:497 +#: rpmdb/rpmdb.c:501 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:628 +#: rpmdb/rpmdb.c:632 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:638 +#: rpmdb/rpmdb.c:642 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:902 +#: rpmdb/rpmdb.c:906 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1046 +#: rpmdb/rpmdb.c:1050 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1311 +#: rpmdb/rpmdb.c:1315 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 +#: rpmdb/rpmdb.c:2092 rpmdb/rpmdb.c:3345 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2141 +#: rpmdb/rpmdb.c:2145 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2411 +#: rpmdb/rpmdb.c:2415 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2483 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2492 +#: rpmdb/rpmdb.c:2496 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2693 +#: rpmdb/rpmdb.c:2697 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2774 +#: rpmdb/rpmdb.c:2778 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2785 +#: rpmdb/rpmdb.c:2789 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3227 +#: rpmdb/rpmdb.c:3231 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3260 +#: rpmdb/rpmdb.c:3264 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3287 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3295 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3301 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3299 +#: rpmdb/rpmdb.c:3303 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3306 +#: rpmdb/rpmdb.c:3310 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3317 +#: rpmdb/rpmdb.c:3321 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3381 +#: rpmdb/rpmdb.c:3385 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3403 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3407 +#: rpmdb/rpmdb.c:3411 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3409 +#: rpmdb/rpmdb.c:3413 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3419 +#: rpmdb/rpmdb.c:3423 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3421 +#: rpmdb/rpmdb.c:3425 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" diff --git a/po/is.po b/po/is.po index 4ceb79c..15f1d47 100644 --- a/po/is.po +++ b/po/is.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-11-13 13:56-0500\n" +"POT-Creation-Date: 2001-11-15 13:11-0500\n" "PO-Revision-Date: 2001-07-12 13:25+0000\n" "Last-Translator: Richard Allen \n" "Language-Team: is \n" @@ -2369,11 +2369,11 @@ msgstr "" msgid "package %s is not installed\n" msgstr "" -#: lib/rpmal.c:647 +#: lib/rpmal.c:673 msgid "(added files)" msgstr "" -#: lib/rpmal.c:744 +#: lib/rpmal.c:770 msgid "(added provide)" msgstr "" @@ -2783,18 +2783,18 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:185 +#: lib/transaction.c:182 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:850 +#: lib/transaction.c:981 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:918 +#: lib/transaction.c:1071 msgid "getting list of mounted filesystems\n" msgstr "" @@ -2969,150 +2969,150 @@ msgstr "" msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:383 +#: rpmdb/rpmdb.c:387 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "get ekki opnað %s index með db%d - %s (%d)\n" -#: rpmdb/rpmdb.c:405 +#: rpmdb/rpmdb.c:409 #, c-format msgid "cannot open %s index\n" msgstr "get ekki opnað %s index\n" -#: rpmdb/rpmdb.c:497 +#: rpmdb/rpmdb.c:501 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:628 +#: rpmdb/rpmdb.c:632 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:638 +#: rpmdb/rpmdb.c:642 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:902 +#: rpmdb/rpmdb.c:906 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1046 +#: rpmdb/rpmdb.c:1050 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1311 +#: rpmdb/rpmdb.c:1315 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 +#: rpmdb/rpmdb.c:2092 rpmdb/rpmdb.c:3345 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2141 +#: rpmdb/rpmdb.c:2145 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2411 +#: rpmdb/rpmdb.c:2415 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2483 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2492 +#: rpmdb/rpmdb.c:2496 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2693 +#: rpmdb/rpmdb.c:2697 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2774 +#: rpmdb/rpmdb.c:2778 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2785 +#: rpmdb/rpmdb.c:2789 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3227 +#: rpmdb/rpmdb.c:3231 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3260 +#: rpmdb/rpmdb.c:3264 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3287 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3295 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3301 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3299 +#: rpmdb/rpmdb.c:3303 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3306 +#: rpmdb/rpmdb.c:3310 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3317 +#: rpmdb/rpmdb.c:3321 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3381 +#: rpmdb/rpmdb.c:3385 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3403 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3407 +#: rpmdb/rpmdb.c:3411 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3409 +#: rpmdb/rpmdb.c:3413 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3419 +#: rpmdb/rpmdb.c:3423 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3421 +#: rpmdb/rpmdb.c:3425 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" diff --git a/po/it.po b/po/it.po index 3aefd71..f9b7e5a 100644 --- a/po/it.po +++ b/po/it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-11-13 13:56-0500\n" +"POT-Creation-Date: 2001-11-15 13:11-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2363,11 +2363,11 @@ msgstr "" msgid "package %s is not installed\n" msgstr "" -#: lib/rpmal.c:647 +#: lib/rpmal.c:673 msgid "(added files)" msgstr "" -#: lib/rpmal.c:744 +#: lib/rpmal.c:770 msgid "(added provide)" msgstr "" @@ -2777,18 +2777,18 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:185 +#: lib/transaction.c:182 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:850 +#: lib/transaction.c:981 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:918 +#: lib/transaction.c:1071 msgid "getting list of mounted filesystems\n" msgstr "" @@ -2963,150 +2963,150 @@ msgstr "" msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:383 +#: rpmdb/rpmdb.c:387 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:405 +#: rpmdb/rpmdb.c:409 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:497 +#: rpmdb/rpmdb.c:501 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:628 +#: rpmdb/rpmdb.c:632 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:638 +#: rpmdb/rpmdb.c:642 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:902 +#: rpmdb/rpmdb.c:906 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1046 +#: rpmdb/rpmdb.c:1050 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1311 +#: rpmdb/rpmdb.c:1315 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 +#: rpmdb/rpmdb.c:2092 rpmdb/rpmdb.c:3345 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2141 +#: rpmdb/rpmdb.c:2145 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2411 +#: rpmdb/rpmdb.c:2415 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2483 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2492 +#: rpmdb/rpmdb.c:2496 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2693 +#: rpmdb/rpmdb.c:2697 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2774 +#: rpmdb/rpmdb.c:2778 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2785 +#: rpmdb/rpmdb.c:2789 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3227 +#: rpmdb/rpmdb.c:3231 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3260 +#: rpmdb/rpmdb.c:3264 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3287 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3295 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3301 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3299 +#: rpmdb/rpmdb.c:3303 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3306 +#: rpmdb/rpmdb.c:3310 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3317 +#: rpmdb/rpmdb.c:3321 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3381 +#: rpmdb/rpmdb.c:3385 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3403 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3407 +#: rpmdb/rpmdb.c:3411 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3409 +#: rpmdb/rpmdb.c:3413 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3419 +#: rpmdb/rpmdb.c:3423 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3421 +#: rpmdb/rpmdb.c:3425 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" diff --git a/po/ja.po b/po/ja.po index 9ac255c..29dafdb 100644 --- a/po/ja.po +++ b/po/ja.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-11-13 13:56-0500\n" +"POT-Creation-Date: 2001-11-15 13:11-0500\n" "PO-Revision-Date: 1999-12-01 22:49 +JST\n" "Last-Translator: Kanda Mitsuru \n" "Language-Team: JRPM \n" @@ -2526,12 +2526,12 @@ msgstr " msgid "package %s is not installed\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n" -#: lib/rpmal.c:647 +#: lib/rpmal.c:673 #, fuzzy msgid "(added files)" msgstr "ÉÔÀµ¤Ê¥Õ¥¡¥¤¥ë¤Î¾õÂÖ: %s" -#: lib/rpmal.c:744 +#: lib/rpmal.c:770 #, fuzzy msgid "(added provide)" msgstr "%s: %s ¤Ï db ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n" @@ -2961,18 +2961,18 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "½ð̾¥Ñ¥Ã¥É: %d\n" -#: lib/transaction.c:185 +#: lib/transaction.c:182 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s ¤Ï missingok ¥Õ¥é¥°¤Î¤¿¤á¥¹¥­¥Ã¥×¤·¤Þ¤¹\n" #. @innercontinue@ -#: lib/transaction.c:850 +#: lib/transaction.c:981 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤Î½ü³°: %s\n" -#: lib/transaction.c:918 +#: lib/transaction.c:1071 msgid "getting list of mounted filesystems\n" msgstr "¥Þ¥¦¥ó¥È¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤Î¥ê¥¹¥È¤ò¼èÆÀ¤·¤Æ¤¤¤Þ¤¹\n" @@ -3160,153 +3160,153 @@ msgstr "" msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:383 +#: rpmdb/rpmdb.c:387 #, fuzzy, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "%s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó %s:%d" -#: rpmdb/rpmdb.c:405 +#: rpmdb/rpmdb.c:409 #, fuzzy, c-format msgid "cannot open %s index\n" msgstr "%s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n" -#: rpmdb/rpmdb.c:497 +#: rpmdb/rpmdb.c:501 #, fuzzy, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "¥ì¥³¡¼¥É %s ¤Î¼èÆÀ¤Î¥¨¥é¡¼ (%s ¤«¤é)" -#: rpmdb/rpmdb.c:628 +#: rpmdb/rpmdb.c:632 #, fuzzy, c-format msgid "error(%d) storing record %s into %s\n" msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ë¥¹¥È¥¢¤Ç¥¨¥é¡¼ " -#: rpmdb/rpmdb.c:638 +#: rpmdb/rpmdb.c:642 #, fuzzy, c-format msgid "error(%d) removing record %s from %s\n" msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ëºï½ü¤Ç¥¨¥é¡¼" -#: rpmdb/rpmdb.c:902 +#: rpmdb/rpmdb.c:906 #, fuzzy msgid "no dbpath has been set\n" msgstr "dbpath ¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: rpmdb/rpmdb.c:1046 +#: rpmdb/rpmdb.c:1050 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1311 +#: rpmdb/rpmdb.c:1315 #, fuzzy, c-format msgid "error(%d) counting packages\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Îõº÷¥¨¥é¡¼\n" -#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 +#: rpmdb/rpmdb.c:2092 rpmdb/rpmdb.c:3345 #, fuzzy, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹Ãæ¤Î¥ì¥³¡¼¥ÉÈÖ¹æ %d ¤ÏÉÔÀµ¤Ç¤¹ -- ¥¹¥­¥Ã¥×¤·¤Þ¤¹" -#: rpmdb/rpmdb.c:2141 +#: rpmdb/rpmdb.c:2145 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2411 +#: rpmdb/rpmdb.c:2415 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "¸¡º÷¤Î¤¿¤á¤Î %d ¤Ç ¥Ø¥Ã¥À¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó" -#: rpmdb/rpmdb.c:2483 +#: rpmdb/rpmdb.c:2487 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "group ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n" -#: rpmdb/rpmdb.c:2492 +#: rpmdb/rpmdb.c:2496 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "name ¥¤¥ó¥Ç¥Ã¥¯¥¹ºï½ü¤·¤Þ¤¹\n" -#: rpmdb/rpmdb.c:2693 +#: rpmdb/rpmdb.c:2697 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Îõº÷¥¨¥é¡¼\n" -#: rpmdb/rpmdb.c:2774 +#: rpmdb/rpmdb.c:2778 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "%s ¤ò %s ¤Ø̾Á°¤òÊѹ¹¤·¤Þ¤¹\n" -#: rpmdb/rpmdb.c:2785 +#: rpmdb/rpmdb.c:2789 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "%s ¤ò %s ¤Ø̾Á°¤òÊѹ¹¤·¤Þ¤¹\n" -#: rpmdb/rpmdb.c:3227 +#: rpmdb/rpmdb.c:3231 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3260 +#: rpmdb/rpmdb.c:3264 msgid "no dbpath has been set" msgstr "dbpath ¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: rpmdb/rpmdb.c:3287 +#: rpmdb/rpmdb.c:3291 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "rootdir %s Ãæ¤Ç¥Ç¡¼¥¿¥Ù¡¼¥¹¤òºÆ¹½ÃÛ¤·¤Þ¤¹\n" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3295 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "°ì»þŪ¤Ê¥Ç¡¼¥¿¥Ù¡¼¥¹ %s ¤Ï¤¹¤Ç¤Ë¸ºß¤·¤Æ¤¤¤Þ¤¹" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3301 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ÎºîÀ®: %s\n" -#: rpmdb/rpmdb.c:3299 +#: rpmdb/rpmdb.c:3303 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ÎºîÀ®: %s\n" -#: rpmdb/rpmdb.c:3306 +#: rpmdb/rpmdb.c:3310 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "¸Å¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î¥ª¡¼¥×¥ó\n" -#: rpmdb/rpmdb.c:3317 +#: rpmdb/rpmdb.c:3321 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "¿·¤·¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î¥ª¡¼¥×¥ó\n" -#: rpmdb/rpmdb.c:3381 +#: rpmdb/rpmdb.c:3385 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "%d ¤Ë ¥ª¥ê¥¸¥Ê¥ë¤Î¥ì¥³¡¼¥É¤òÉղäǤ­¤Þ¤»¤ó" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3403 #, fuzzy msgid "failed to rebuild database: original database remains in place\n" msgstr "" "¥Ç¡¼¥¿¥Ù¡¼¥¹¤ÎºÆ¹½Ãۤ˼ºÇÔ; ¥ª¥ê¥¸¥Ê¥ë¥Ç¡¼¥¿¥Ù¡¼¥¹¤¬¤Þ¤À¤½¤³¤Ë»Ä¤Ã¤Æ¤¤¤Þ¤¹\n" -#: rpmdb/rpmdb.c:3407 +#: rpmdb/rpmdb.c:3411 msgid "failed to replace old database with new database!\n" msgstr "¸Å¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤ò¿·¤·¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤ËÃÖ¤­´¹¤¨¤ë¤Î¤Ë¼ºÇÔ!\n" -#: rpmdb/rpmdb.c:3409 +#: rpmdb/rpmdb.c:3413 #, fuzzy, c-format msgid "replace files in %s with files from %s to recover" msgstr "%s Ãæ¤Î¥Õ¥¡¥¤¥ë¤ò¥ê¥«¥Ð¡¼¤¹¤ë¤¿¤á¤Ë %s ¤«¤é¥Õ¥¡¥¤¥ë¤ÈÃÖ¤­´¹¤¨¤Þ¤¹" -#: rpmdb/rpmdb.c:3419 +#: rpmdb/rpmdb.c:3423 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ÎºîÀ®: %s\n" -#: rpmdb/rpmdb.c:3421 +#: rpmdb/rpmdb.c:3425 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤Îºï½ü¼ºÇÔ: %s\n" diff --git a/po/ko.po b/po/ko.po index a796b05..d38447f 100644 --- a/po/ko.po +++ b/po/ko.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-11-13 13:56-0500\n" +"POT-Creation-Date: 2001-11-15 13:11-0500\n" "PO-Revision-Date: 2001-09-07 22:03+0900\n" "Last-Translator: Jong-Hoon Ryu \n" "Language-Team: GNU Translation project \n" @@ -2416,12 +2416,12 @@ msgstr " msgid "package %s is not installed\n" msgstr "%s ÆÐÅ°Áö´Â ¼³Ä¡µÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù\n" -#: lib/rpmal.c:647 +#: lib/rpmal.c:673 #, fuzzy msgid "(added files)" msgstr "À߸øµÈ db ÆÄÀÏ %s\n" -#: lib/rpmal.c:744 +#: lib/rpmal.c:770 #, fuzzy msgid "(added provide)" msgstr "%s: %-45s ¿¹ (db°¡ Á¦°øÇÔ)\n" @@ -2837,18 +2837,18 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "¼­¸í: size(%d)+pad(%d)\n" -#: lib/transaction.c:185 +#: lib/transaction.c:182 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "missingok Ç÷¡±×·Î ÀÎÇØ %s (À»)¸¦ »ý·«ÇÕ´Ï´Ù\n" #. @innercontinue@ -#: lib/transaction.c:850 +#: lib/transaction.c:981 #, c-format msgid "excluding directory %s\n" msgstr "%s µð·ºÅ丮¸¦ Á¦¿Ü½Ãŵ´Ï´Ù\n" -#: lib/transaction.c:918 +#: lib/transaction.c:1071 msgid "getting list of mounted filesystems\n" msgstr "¸¶¿îÆ®µÈ ÆÄÀϽýºÅÛÀÇ ¸ñ·ÏÀ» ¼öÁýÇÏ°í ÀÖ½À´Ï´Ù\n" @@ -3036,37 +3036,37 @@ msgstr "" "DB ÅÂ±× ÃʱâÈ­[dbiTagsInit]: ÀÎÁõµÇÁö ¾ÊÀº ÅÂ±× À̸§: \"%s\" (Àº)´Â ¹«½ÃµË´Ï" "´Ù\n" -#: rpmdb/rpmdb.c:383 +#: rpmdb/rpmdb.c:387 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "db%2$d (À»)¸¦ ÀÌ¿ëÇÏ¿© %1$s À妽º¸¦ ¿­ ¼ö ¾ø½À´Ï´Ù - %3$s (%4$d)\n" -#: rpmdb/rpmdb.c:405 +#: rpmdb/rpmdb.c:409 #, c-format msgid "cannot open %s index\n" msgstr "%s À妽º¸¦ ¿­ ¼ö ¾ø½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:497 +#: rpmdb/rpmdb.c:501 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" "%3$s À妽º¿¡¼­ \"%2$s\" ·¹Äڵ带 ¾ò´Â µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:628 +#: rpmdb/rpmdb.c:632 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "%3$s (À¸)·Î %2$s ·¹Äڵ带 ÀúÀåÇÏ´Â µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:638 +#: rpmdb/rpmdb.c:642 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "%3$s ¿¡¼­ %2$s ·¹Äڵ带 »èÁ¦ÇÏ´Â µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:902 +#: rpmdb/rpmdb.c:906 msgid "no dbpath has been set\n" msgstr "db°æ·Î°¡ ¼³Á¤µÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:1046 +#: rpmdb/rpmdb.c:1050 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" @@ -3075,115 +3075,115 @@ msgstr "" "·Á¸é --rebuilddb ¿É¼ÇÀ» ÀÌ¿ëÇϽʽÿä\n" #. error -#: rpmdb/rpmdb.c:1311 +#: rpmdb/rpmdb.c:1315 #, c-format msgid "error(%d) counting packages\n" msgstr "ÆÐÅ°ÁöÀÇ ¼ö¸¦ ¼¼´Â µµÁß ¿À·ù(%d)°¡ ¹ß»ýÇß½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 +#: rpmdb/rpmdb.c:2092 rpmdb/rpmdb.c:3345 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "µ¥ÀÌÅͺ£À̽ºÀÇ ·¹ÄÚµå ¹øÈ£ %u (ÀÌ)°¡ À߸øµÇ¾ú½À´Ï´Ù -- »ý·«ÇÕ´Ï´Ù.\n" -#: rpmdb/rpmdb.c:2141 +#: rpmdb/rpmdb.c:2145 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "rpmdb: ¼Õ»óµÈ Çì´õ #%u (ÀÌ)°¡ º¹±¸(retrieved)µÇ¾ú½À´Ï´Ù, »ý·«ÇÕ´Ï´Ù.\n" -#: rpmdb/rpmdb.c:2411 +#: rpmdb/rpmdb.c:2415 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "%s: 0x%x ÀÇ Çì´õ¸¦ ÀÐÀ» ¼ö ¾ø½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:2483 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "%2$s À妽º¿¡¼­ \"%1$s\" (À»)¸¦ »èÁ¦ÇÕ´Ï´Ù.\n" -#: rpmdb/rpmdb.c:2492 +#: rpmdb/rpmdb.c:2496 #, c-format msgid "removing %d entries from %s index.\n" msgstr "%2$s À妽º¿¡¼­ %1$d Ç׸ñµé(entries)À» »èÁ¦ÇÕ´Ï´Ù.\n" -#: rpmdb/rpmdb.c:2693 +#: rpmdb/rpmdb.c:2697 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "»õ·Î¿î ÆÐÅ°Áö¸¦ ¹èÄ¡ÇÏ´Â µµÁß ¿À·ù(%d)°¡ ¹ß»ýÇß½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:2774 +#: rpmdb/rpmdb.c:2778 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "%2$s À妽º¿¡ \"%1$s\" (À»)¸¦ Ãß°¡ÇÕ´Ï´Ù.\n" -#: rpmdb/rpmdb.c:2785 +#: rpmdb/rpmdb.c:2789 #, c-format msgid "adding %d entries to %s index.\n" msgstr "%2$s À妽º¿¡ %1$d Ç׸ñµé(entries)À» Ãß°¡ÇÕ´Ï´Ù.\n" -#: rpmdb/rpmdb.c:3227 +#: rpmdb/rpmdb.c:3231 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "db3¸¦ À籸Ãà ÇÑ ÈÄ¿¡ %s (À»)¸¦ »èÁ¦ÇÕ´Ï´Ù.\n" -#: rpmdb/rpmdb.c:3260 +#: rpmdb/rpmdb.c:3264 msgid "no dbpath has been set" msgstr "db°æ·Î°¡ ¼³Á¤µÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù" -#: rpmdb/rpmdb.c:3287 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "rebuilding database %s into %s\n" msgstr "%2$s ¿¡ µ¥ÀÌÅͺ£À̽º %1$s (À»)¸¦ À籸Ãà ÇÕ´Ï´Ù\n" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3295 #, c-format msgid "temporary database %s already exists\n" msgstr "Àӽà µ¥ÀÌÅͺ£À̽º %s (ÀÌ)°¡ ÀÌ¹Ì Á¸ÀçÇÕ´Ï´Ù\n" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3301 #, c-format msgid "creating directory %s\n" msgstr "%s µð·ºÅ丮¸¦ »ý¼ºÇÕ´Ï´Ù\n" -#: rpmdb/rpmdb.c:3299 +#: rpmdb/rpmdb.c:3303 #, c-format msgid "creating directory %s: %s\n" msgstr "%s µð·ºÅ丮¸¦ »ý¼ºÇÔ: %s\n" -#: rpmdb/rpmdb.c:3306 +#: rpmdb/rpmdb.c:3310 #, c-format msgid "opening old database with dbapi %d\n" msgstr "dbapi %d (À»)¸¦ ÅëÇØ ÀÌÀü µ¥ÀÌÅͺ£À̽º¸¦ ¿±´Ï´Ù\n" -#: rpmdb/rpmdb.c:3317 +#: rpmdb/rpmdb.c:3321 #, c-format msgid "opening new database with dbapi %d\n" msgstr "dbapi %d (À»)¸¦ ÅëÇØ »õ·Î¿î µ¥ÀÌÅͺ£À̽º¸¦ ¿±´Ï´Ù\n" -#: rpmdb/rpmdb.c:3381 +#: rpmdb/rpmdb.c:3385 #, c-format msgid "cannot add record originally at %u\n" msgstr "%u ¿¡ ·¹Äڵ带 Ãß°¡ÇÒ ¼ö ¾ø½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3403 msgid "failed to rebuild database: original database remains in place\n" msgstr "" "µ¥ÀÌÅͺ£À̽º¸¦ À籸ÃàÇϴµ¥ ½ÇÆÐÇÔ: ¿øº» µ¥ÀÌÅͺ£À̽º´Â ±×´ë·Î À¯ÁöµË´Ï´Ù\n" -#: rpmdb/rpmdb.c:3407 +#: rpmdb/rpmdb.c:3411 msgid "failed to replace old database with new database!\n" msgstr "ÀÌÀü µ¥ÀÌÅͺ£À̽º¸¦ »õ·Î¿î µ¥ÀÌÅͺ£À̽º·Î ±³Ã¼Çϴµ¥ ½ÇÆÐÇß½À´Ï´Ù!\n" -#: rpmdb/rpmdb.c:3409 +#: rpmdb/rpmdb.c:3413 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "º¹±¸Çϱâ À§ÇØ $2$s ÀÇ ÆÄÀÏÀ» $1$s ÀÇ ÆÄÀÏ·Î ±³Ã¼ÇÕ´Ï´Ù" -#: rpmdb/rpmdb.c:3419 +#: rpmdb/rpmdb.c:3423 #, c-format msgid "removing directory %s\n" msgstr "%s µð·ºÅ丮¸¦ »èÁ¦ÇÕ´Ï´Ù\n" -#: rpmdb/rpmdb.c:3421 +#: rpmdb/rpmdb.c:3425 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "%s µð·ºÅ丮¸¦ »èÁ¦Çϴµ¥ ½ÇÆÐÇÔ: %s\n" diff --git a/po/no.po b/po/no.po index c971466..9b8d36a 100644 --- a/po/no.po +++ b/po/no.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-11-13 13:56-0500\n" +"POT-Creation-Date: 2001-11-15 13:11-0500\n" "PO-Revision-Date: 2001-06-27 12:24+0200\n" "Last-Translator: Kjartan Maraas \n" "Language-Team: Norwegian \n" @@ -2393,11 +2393,11 @@ msgstr "" msgid "package %s is not installed\n" msgstr "pakke %s er ikke installert\n" -#: lib/rpmal.c:647 +#: lib/rpmal.c:673 msgid "(added files)" msgstr "" -#: lib/rpmal.c:744 +#: lib/rpmal.c:770 msgid "(added provide)" msgstr "" @@ -2809,18 +2809,18 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:185 +#: lib/transaction.c:182 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:850 +#: lib/transaction.c:981 #, c-format msgid "excluding directory %s\n" msgstr "ekskluderer katalog %s\n" -#: lib/transaction.c:918 +#: lib/transaction.c:1071 msgid "getting list of mounted filesystems\n" msgstr "henter liste over monterte filsystemer\n" @@ -2995,150 +2995,150 @@ msgstr "generer headere som er kompatible med (gamle) rpm[23] pakker" msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:383 +#: rpmdb/rpmdb.c:387 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "kan ikke åpne %s-indeks ved bruk av db%d - %s (%d)\n" -#: rpmdb/rpmdb.c:405 +#: rpmdb/rpmdb.c:409 #, c-format msgid "cannot open %s index\n" msgstr "kan ikke åpne %s indeks\n" -#: rpmdb/rpmdb.c:497 +#: rpmdb/rpmdb.c:501 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:628 +#: rpmdb/rpmdb.c:632 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "feil(%d) under lagring av post %s til %s\n" -#: rpmdb/rpmdb.c:638 +#: rpmdb/rpmdb.c:642 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "feil(%d) under fjerning av post %s fra %s\n" -#: rpmdb/rpmdb.c:902 +#: rpmdb/rpmdb.c:906 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1046 +#: rpmdb/rpmdb.c:1050 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1311 +#: rpmdb/rpmdb.c:1315 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 +#: rpmdb/rpmdb.c:2092 rpmdb/rpmdb.c:3345 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2141 +#: rpmdb/rpmdb.c:2145 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2411 +#: rpmdb/rpmdb.c:2415 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2483 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2492 +#: rpmdb/rpmdb.c:2496 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2693 +#: rpmdb/rpmdb.c:2697 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2774 +#: rpmdb/rpmdb.c:2778 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2785 +#: rpmdb/rpmdb.c:2789 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3227 +#: rpmdb/rpmdb.c:3231 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3260 +#: rpmdb/rpmdb.c:3264 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3287 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3295 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3301 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3299 +#: rpmdb/rpmdb.c:3303 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3306 +#: rpmdb/rpmdb.c:3310 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3317 +#: rpmdb/rpmdb.c:3321 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3381 +#: rpmdb/rpmdb.c:3385 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3403 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3407 +#: rpmdb/rpmdb.c:3411 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3409 +#: rpmdb/rpmdb.c:3413 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3419 +#: rpmdb/rpmdb.c:3423 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3421 +#: rpmdb/rpmdb.c:3425 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" diff --git a/po/pl.po b/po/pl.po index b10e9b4..c5af27f 100644 --- a/po/pl.po +++ b/po/pl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-11-13 13:56-0500\n" +"POT-Creation-Date: 2001-11-15 13:11-0500\n" "PO-Revision-Date: 1999-05-25 17:00+0100\n" "Last-Translator: Pawe³ Dziekoñski \n" "Language-Team: Polish \n" @@ -2483,12 +2483,12 @@ msgstr "nie mo msgid "package %s is not installed\n" msgstr "pakiet %s nie jest zainstalowany\n" -#: lib/rpmal.c:647 +#: lib/rpmal.c:673 #, fuzzy msgid "(added files)" msgstr "b³êdny status pliku: %s" -#: lib/rpmal.c:744 +#: lib/rpmal.c:770 #, fuzzy msgid "(added provide)" msgstr "Udostêpniane zasoby:" @@ -2914,18 +2914,18 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "Blok sygnatury: %d\n" -#: lib/transaction.c:185 +#: lib/transaction.c:182 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s pominiêty z powodu flagi missingok\n" #. @innercontinue@ -#: lib/transaction.c:850 +#: lib/transaction.c:981 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "tworzenie katalogu: %s\n" -#: lib/transaction.c:918 +#: lib/transaction.c:1071 msgid "getting list of mounted filesystems\n" msgstr "" @@ -3108,37 +3108,37 @@ msgstr "" msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:383 +#: rpmdb/rpmdb.c:387 #, fuzzy, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "nie mo¿na otworzyæ %s przy %s:%d" -#: rpmdb/rpmdb.c:405 +#: rpmdb/rpmdb.c:409 #, fuzzy, c-format msgid "cannot open %s index\n" msgstr "nie mo¿na otworzyæ %s\n" -#: rpmdb/rpmdb.c:497 +#: rpmdb/rpmdb.c:501 #, fuzzy, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "b³±d pobierania rekordu %s z %s" -#: rpmdb/rpmdb.c:628 +#: rpmdb/rpmdb.c:632 #, fuzzy, c-format msgid "error(%d) storing record %s into %s\n" msgstr "b³±d zapisywania rekordu %s do %s" -#: rpmdb/rpmdb.c:638 +#: rpmdb/rpmdb.c:642 #, fuzzy, c-format msgid "error(%d) removing record %s from %s\n" msgstr "b³±d usuwania rekordu %s z %s" -#: rpmdb/rpmdb.c:902 +#: rpmdb/rpmdb.c:906 #, fuzzy msgid "no dbpath has been set\n" msgstr "¶cie¿ka bazy danych nie zosta³a podana" -#: rpmdb/rpmdb.c:1046 +#: rpmdb/rpmdb.c:1050 #, fuzzy msgid "" "old format database is present; use --rebuilddb to generate a new format " @@ -3148,115 +3148,115 @@ msgstr "" "nowym formacie" #. error -#: rpmdb/rpmdb.c:1311 +#: rpmdb/rpmdb.c:1315 #, fuzzy, c-format msgid "error(%d) counting packages\n" msgstr "b³±d szukania pakietu %s\n" -#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 +#: rpmdb/rpmdb.c:2092 rpmdb/rpmdb.c:3345 #, fuzzy, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "rekord numer %d w bazie danych jest b³êdny -- rekord pominiêto" -#: rpmdb/rpmdb.c:2141 +#: rpmdb/rpmdb.c:2145 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2411 +#: rpmdb/rpmdb.c:2415 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "nie mo¿na odczytaæ nag³ówka przy %d dla poszukiwania" -#: rpmdb/rpmdb.c:2483 +#: rpmdb/rpmdb.c:2487 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "usuwanie indeksu grupy\n" -#: rpmdb/rpmdb.c:2492 +#: rpmdb/rpmdb.c:2496 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "usuwanie indeksu nazw\n" -#: rpmdb/rpmdb.c:2693 +#: rpmdb/rpmdb.c:2697 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "b³±d szukania pakietu %s\n" -#: rpmdb/rpmdb.c:2774 +#: rpmdb/rpmdb.c:2778 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "zmiana nazwy %s na %s\n" -#: rpmdb/rpmdb.c:2785 +#: rpmdb/rpmdb.c:2789 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "zmiana nazwy %s na %s\n" -#: rpmdb/rpmdb.c:3227 +#: rpmdb/rpmdb.c:3231 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3260 +#: rpmdb/rpmdb.c:3264 msgid "no dbpath has been set" msgstr "¶cie¿ka bazy danych nie zosta³a podana" -#: rpmdb/rpmdb.c:3287 +#: rpmdb/rpmdb.c:3291 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "odbudowywujê bazê danych w rootdir %s\n" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3295 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "tymczasowa baza danych %s ju¿ istnieje" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3301 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "tworzenie katalogu: %s\n" -#: rpmdb/rpmdb.c:3299 +#: rpmdb/rpmdb.c:3303 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "tworzenie katalogu: %s\n" -#: rpmdb/rpmdb.c:3306 +#: rpmdb/rpmdb.c:3310 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "otwieranie starej bazy danych\n" -#: rpmdb/rpmdb.c:3317 +#: rpmdb/rpmdb.c:3321 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "otwieranie nowej bazy danych\n" -#: rpmdb/rpmdb.c:3381 +#: rpmdb/rpmdb.c:3385 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "nie mo¿na dodaæ rekordu oryginalnie przy %d" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3403 #, fuzzy msgid "failed to rebuild database: original database remains in place\n" msgstr "przebudowanie bazy nie powiod³o siê; stara pozosta³a na miejscu\n" -#: rpmdb/rpmdb.c:3407 +#: rpmdb/rpmdb.c:3411 msgid "failed to replace old database with new database!\n" msgstr "zamiana starej bazy na now± nie powiod³a siê!\n" -#: rpmdb/rpmdb.c:3409 +#: rpmdb/rpmdb.c:3413 #, fuzzy, c-format msgid "replace files in %s with files from %s to recover" msgstr "naprawcze zastêpowanie plików w %s plikami z %s" -#: rpmdb/rpmdb.c:3419 +#: rpmdb/rpmdb.c:3423 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "tworzenie katalogu: %s\n" -#: rpmdb/rpmdb.c:3421 +#: rpmdb/rpmdb.c:3425 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "usuniêcie katalogu %s nie powiod³o siê: %s\n" diff --git a/po/pt.po b/po/pt.po index c967f7f..0013455 100644 --- a/po/pt.po +++ b/po/pt.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-11-13 13:56-0500\n" +"POT-Creation-Date: 2001-11-15 13:11-0500\n" "PO-Revision-Date: 2000-06-22 01:13+01:00\n" "Last-Translator: José Nuno Coelho Sanarra Pires\n" "Language-Team: pt \n" @@ -2407,12 +2407,12 @@ msgstr "o registo %d n msgid "package %s is not installed\n" msgstr "o pacote %s não está instalado\n" -#: lib/rpmal.c:647 +#: lib/rpmal.c:673 #, fuzzy msgid "(added files)" msgstr "ficheiro db inválido %s\n" -#: lib/rpmal.c:744 +#: lib/rpmal.c:770 #, fuzzy msgid "(added provide)" msgstr "%s: %-45s SI (oferecidos pelo db)\n" @@ -2828,18 +2828,18 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "'Pad' ou preenchimento da assinatura: %d\n" -#: lib/transaction.c:185 +#: lib/transaction.c:182 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s ignorado devido à opção missingok\n" #. @innercontinue@ -#: lib/transaction.c:850 +#: lib/transaction.c:981 #, c-format msgid "excluding directory %s\n" msgstr "a excluir a directoria %s\n" -#: lib/transaction.c:918 +#: lib/transaction.c:1071 msgid "getting list of mounted filesystems\n" msgstr "a obter a lista dos sistemas de ficheiros montados\n" @@ -3020,150 +3020,150 @@ msgstr "gerar os cabe msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "dbiTagsInit: nome de opção não reconhecido: \"%s\" ignorado\n" -#: rpmdb/rpmdb.c:383 +#: rpmdb/rpmdb.c:387 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "não consigo abrir o índice de %s usando o db%d - %s (%d)\n" -#: rpmdb/rpmdb.c:405 +#: rpmdb/rpmdb.c:409 #, c-format msgid "cannot open %s index\n" msgstr "não consigo abrir o índice do %s\n" -#: rpmdb/rpmdb.c:497 +#: rpmdb/rpmdb.c:501 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "erro(%d) ao obter os registos \"%s\" do índice %s\n" -#: rpmdb/rpmdb.c:628 +#: rpmdb/rpmdb.c:632 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "erro(%d) ao guardar o registo %s em %s\n" -#: rpmdb/rpmdb.c:638 +#: rpmdb/rpmdb.c:642 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "erro(%d) ao remover o registo %s do %s\n" -#: rpmdb/rpmdb.c:902 +#: rpmdb/rpmdb.c:906 msgid "no dbpath has been set\n" msgstr "não foi definido o dbpath\n" -#: rpmdb/rpmdb.c:1046 +#: rpmdb/rpmdb.c:1050 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "está presente uma base de dados antiga; use o --rebuildb para gerar uma base de dados no novo formato\n" #. error -#: rpmdb/rpmdb.c:1311 +#: rpmdb/rpmdb.c:1315 #, c-format msgid "error(%d) counting packages\n" msgstr "erro(%d) ao contar os pacotes\n" -#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 +#: rpmdb/rpmdb.c:2092 rpmdb/rpmdb.c:3345 #, fuzzy, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "o número do registo %d na base de dados está errado -- a ignorar.\n" -#: rpmdb/rpmdb.c:2141 +#: rpmdb/rpmdb.c:2145 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2411 +#: rpmdb/rpmdb.c:2415 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "%s: não consigo ler o cabeçalho em 0x%x\n" -#: rpmdb/rpmdb.c:2483 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "a remover o \"%s\" do índice %s.\n" -#: rpmdb/rpmdb.c:2492 +#: rpmdb/rpmdb.c:2496 #, c-format msgid "removing %d entries from %s index.\n" msgstr "a remover %d registos do índice %s.\n" -#: rpmdb/rpmdb.c:2693 +#: rpmdb/rpmdb.c:2697 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "erro(%d) ao criar uma nova instância do pacote\n" -#: rpmdb/rpmdb.c:2774 +#: rpmdb/rpmdb.c:2778 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "a adicionar o \"%s\" ao índice %s.\n" -#: rpmdb/rpmdb.c:2785 +#: rpmdb/rpmdb.c:2789 #, c-format msgid "adding %d entries to %s index.\n" msgstr "a adicionar %d registos ao índice %s.\n" -#: rpmdb/rpmdb.c:3227 +#: rpmdb/rpmdb.c:3231 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "a remover o %s depois duma reconstrução bem sucedida do db3.\n" -#: rpmdb/rpmdb.c:3260 +#: rpmdb/rpmdb.c:3264 msgid "no dbpath has been set" msgstr "não foi definido o dbpath" -#: rpmdb/rpmdb.c:3287 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "rebuilding database %s into %s\n" msgstr "a reconstruir a base de dados %s em %s\n" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3295 #, c-format msgid "temporary database %s already exists\n" msgstr "A base de dados temporária %s já existe\n" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3301 #, c-format msgid "creating directory %s\n" msgstr "a criar a directoria %s\n" -#: rpmdb/rpmdb.c:3299 +#: rpmdb/rpmdb.c:3303 #, c-format msgid "creating directory %s: %s\n" msgstr "a criar a directoria %s: %s\n" -#: rpmdb/rpmdb.c:3306 +#: rpmdb/rpmdb.c:3310 #, c-format msgid "opening old database with dbapi %d\n" msgstr "a abrir a base de dados antiga com a dbapi %d\n" -#: rpmdb/rpmdb.c:3317 +#: rpmdb/rpmdb.c:3321 #, c-format msgid "opening new database with dbapi %d\n" msgstr "a abrir a base de dados nova com a dbapi %d\n" -#: rpmdb/rpmdb.c:3381 +#: rpmdb/rpmdb.c:3385 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "não consigo adicionar o registo originalmente em %d\n" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3403 msgid "failed to rebuild database: original database remains in place\n" msgstr "falhou a reconstrução da base de dados: a base de dados original mantém-se\n" -#: rpmdb/rpmdb.c:3407 +#: rpmdb/rpmdb.c:3411 msgid "failed to replace old database with new database!\n" msgstr "falhou a substituição da base de dados antiga pela nova!\n" -#: rpmdb/rpmdb.c:3409 +#: rpmdb/rpmdb.c:3413 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "substituir os ficheiros em %s por ficheiros de %s a recuperar" -#: rpmdb/rpmdb.c:3419 +#: rpmdb/rpmdb.c:3423 #, c-format msgid "removing directory %s\n" msgstr "a remover a directoria %s\n" -#: rpmdb/rpmdb.c:3421 +#: rpmdb/rpmdb.c:3425 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "falhou a remoção da directoria %s: %s\n" diff --git a/po/pt_BR.po b/po/pt_BR.po index d71bb9d..f4e7611 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-11-13 13:56-0500\n" +"POT-Creation-Date: 2001-11-15 13:11-0500\n" #: build.c:36 #, fuzzy @@ -2610,12 +2610,12 @@ msgid "package %s is not installed\n" msgstr "no foi passado pacote para instalao" # , c-format -#: lib/rpmal.c:647 +#: lib/rpmal.c:673 #, fuzzy msgid "(added files)" msgstr "No consegui abrir: %s\n" -#: lib/rpmal.c:744 +#: lib/rpmal.c:770 msgid "(added provide)" msgstr "" @@ -3065,7 +3065,7 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:185 +#: lib/transaction.c:182 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" @@ -3079,12 +3079,12 @@ msgstr "" # "Content-Transfer-Encoding: 8-bit\n" # , c-format #. @innercontinue@ -#: lib/transaction.c:850 +#: lib/transaction.c:981 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "RPM verso %s\n" -#: lib/transaction.c:918 +#: lib/transaction.c:1071 msgid "getting list of mounted filesystems\n" msgstr "" @@ -3263,148 +3263,148 @@ msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" # , c-format -#: rpmdb/rpmdb.c:383 +#: rpmdb/rpmdb.c:387 #, fuzzy, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "No consegui abrir: %s\n" # , c-format -#: rpmdb/rpmdb.c:405 +#: rpmdb/rpmdb.c:409 #, fuzzy, c-format msgid "cannot open %s index\n" msgstr "No consegui abrir: %s\n" # , c-format -#: rpmdb/rpmdb.c:497 +#: rpmdb/rpmdb.c:501 #, fuzzy, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "No consegui abrir: %s\n" # , c-format -#: rpmdb/rpmdb.c:628 +#: rpmdb/rpmdb.c:632 #, fuzzy, c-format msgid "error(%d) storing record %s into %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: rpmdb/rpmdb.c:638 +#: rpmdb/rpmdb.c:642 #, fuzzy, c-format msgid "error(%d) removing record %s from %s\n" msgstr "No consegui abrir: %s\n" -#: rpmdb/rpmdb.c:902 +#: rpmdb/rpmdb.c:906 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1046 +#: rpmdb/rpmdb.c:1050 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1311 +#: rpmdb/rpmdb.c:1315 #, fuzzy, c-format msgid "error(%d) counting packages\n" msgstr "no foi passado pacote para instalao" -#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 +#: rpmdb/rpmdb.c:2092 rpmdb/rpmdb.c:3345 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2141 +#: rpmdb/rpmdb.c:2145 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2411 +#: rpmdb/rpmdb.c:2415 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "no foi passado pacote para desinstalao" -#: rpmdb/rpmdb.c:2483 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" # , c-format -#: rpmdb/rpmdb.c:2492 +#: rpmdb/rpmdb.c:2496 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "No consegui abrir: %s\n" -#: rpmdb/rpmdb.c:2693 +#: rpmdb/rpmdb.c:2697 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "no foi passado pacote para instalao" -#: rpmdb/rpmdb.c:2774 +#: rpmdb/rpmdb.c:2778 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" # , c-format -#: rpmdb/rpmdb.c:2785 +#: rpmdb/rpmdb.c:2789 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "No consegui abrir: %s\n" -#: rpmdb/rpmdb.c:3227 +#: rpmdb/rpmdb.c:3231 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3260 +#: rpmdb/rpmdb.c:3264 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3287 +#: rpmdb/rpmdb.c:3291 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "reconstrua o banco de dados a partir de um banco de dados existente" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3295 #, c-format msgid "temporary database %s already exists\n" msgstr "" # , c-format -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3301 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: rpmdb/rpmdb.c:3299 +#: rpmdb/rpmdb.c:3303 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "No consegui abrir: %s\n" -#: rpmdb/rpmdb.c:3306 +#: rpmdb/rpmdb.c:3310 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "reconstrua o banco de dados a partir de um banco de dados existente" -#: rpmdb/rpmdb.c:3317 +#: rpmdb/rpmdb.c:3321 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "reconstrua o banco de dados a partir de um banco de dados existente" -#: rpmdb/rpmdb.c:3381 +#: rpmdb/rpmdb.c:3385 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3403 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3407 +#: rpmdb/rpmdb.c:3411 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3409 +#: rpmdb/rpmdb.c:3413 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" @@ -3417,13 +3417,13 @@ msgstr "" # "Content-Type: text/plain; charset=ISO-8859-1\n" # "Content-Transfer-Encoding: 8-bit\n" # , c-format -#: rpmdb/rpmdb.c:3419 +#: rpmdb/rpmdb.c:3423 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "RPM verso %s\n" # , c-format -#: rpmdb/rpmdb.c:3421 +#: rpmdb/rpmdb.c:3425 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "No consegui abrir: %s\n" diff --git a/po/ro.po b/po/ro.po index 96cdc50..ad3299f 100644 --- a/po/ro.po +++ b/po/ro.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-11-13 13:56-0500\n" +"POT-Creation-Date: 2001-11-15 13:11-0500\n" "PO-Revision-Date: 1999-04-10 12:00+EST\n" "Last-Translator: Cristian Gafton \n" "Language-Team: Romanian \n" @@ -2358,11 +2358,11 @@ msgstr "" msgid "package %s is not installed\n" msgstr "" -#: lib/rpmal.c:647 +#: lib/rpmal.c:673 msgid "(added files)" msgstr "" -#: lib/rpmal.c:744 +#: lib/rpmal.c:770 msgid "(added provide)" msgstr "" @@ -2772,18 +2772,18 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:185 +#: lib/transaction.c:182 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:850 +#: lib/transaction.c:981 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:918 +#: lib/transaction.c:1071 msgid "getting list of mounted filesystems\n" msgstr "" @@ -2958,150 +2958,150 @@ msgstr "" msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:383 +#: rpmdb/rpmdb.c:387 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:405 +#: rpmdb/rpmdb.c:409 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:497 +#: rpmdb/rpmdb.c:501 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:628 +#: rpmdb/rpmdb.c:632 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:638 +#: rpmdb/rpmdb.c:642 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:902 +#: rpmdb/rpmdb.c:906 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1046 +#: rpmdb/rpmdb.c:1050 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1311 +#: rpmdb/rpmdb.c:1315 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 +#: rpmdb/rpmdb.c:2092 rpmdb/rpmdb.c:3345 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2141 +#: rpmdb/rpmdb.c:2145 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2411 +#: rpmdb/rpmdb.c:2415 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2483 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2492 +#: rpmdb/rpmdb.c:2496 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2693 +#: rpmdb/rpmdb.c:2697 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2774 +#: rpmdb/rpmdb.c:2778 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2785 +#: rpmdb/rpmdb.c:2789 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3227 +#: rpmdb/rpmdb.c:3231 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3260 +#: rpmdb/rpmdb.c:3264 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3287 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3295 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3301 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3299 +#: rpmdb/rpmdb.c:3303 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3306 +#: rpmdb/rpmdb.c:3310 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3317 +#: rpmdb/rpmdb.c:3321 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3381 +#: rpmdb/rpmdb.c:3385 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3403 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3407 +#: rpmdb/rpmdb.c:3411 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3409 +#: rpmdb/rpmdb.c:3413 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3419 +#: rpmdb/rpmdb.c:3423 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3421 +#: rpmdb/rpmdb.c:3425 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" diff --git a/po/rpm.pot b/po/rpm.pot index 508d289..3156bf0 100644 --- a/po/rpm.pot +++ b/po/rpm.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2001-11-13 19:04-0500\n" +"POT-Creation-Date: 2001-11-15 13:11-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2783,12 +2783,12 @@ msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:842 +#: lib/transaction.c:981 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:932 +#: lib/transaction.c:1071 msgid "getting list of mounted filesystems\n" msgstr "" @@ -2963,150 +2963,150 @@ msgstr "" msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:383 +#: rpmdb/rpmdb.c:387 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:405 +#: rpmdb/rpmdb.c:409 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:497 +#: rpmdb/rpmdb.c:501 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:628 +#: rpmdb/rpmdb.c:632 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:638 +#: rpmdb/rpmdb.c:642 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:902 +#: rpmdb/rpmdb.c:906 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1046 +#: rpmdb/rpmdb.c:1050 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1311 +#: rpmdb/rpmdb.c:1315 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 +#: rpmdb/rpmdb.c:2092 rpmdb/rpmdb.c:3345 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2141 +#: rpmdb/rpmdb.c:2145 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2411 +#: rpmdb/rpmdb.c:2415 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2483 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2492 +#: rpmdb/rpmdb.c:2496 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2693 +#: rpmdb/rpmdb.c:2697 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2774 +#: rpmdb/rpmdb.c:2778 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2785 +#: rpmdb/rpmdb.c:2789 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3227 +#: rpmdb/rpmdb.c:3231 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3260 +#: rpmdb/rpmdb.c:3264 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3287 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3295 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3301 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3299 +#: rpmdb/rpmdb.c:3303 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3306 +#: rpmdb/rpmdb.c:3310 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3317 +#: rpmdb/rpmdb.c:3321 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3381 +#: rpmdb/rpmdb.c:3385 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3403 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3407 +#: rpmdb/rpmdb.c:3411 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3409 +#: rpmdb/rpmdb.c:3413 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3419 +#: rpmdb/rpmdb.c:3423 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3421 +#: rpmdb/rpmdb.c:3425 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" diff --git a/po/ru.po b/po/ru.po index 5f93bff..35b9ea8 100644 --- a/po/ru.po +++ b/po/ru.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-11-13 13:56-0500\n" +"POT-Creation-Date: 2001-11-15 13:11-0500\n" "PO-Revision-Date: 2001-08-29 13:55-0400\n" "Last-Translator: Eugene Kanter \n" "Language-Team: Black Cat Linux Team \n" @@ -2423,12 +2423,12 @@ msgstr " msgid "package %s is not installed\n" msgstr "ÐÁËÅÔ %s ÎÅ ÕÓÔÁÎÏ×ÌÅÎ\n" -#: lib/rpmal.c:647 +#: lib/rpmal.c:673 #, fuzzy msgid "(added files)" msgstr "ÎÅ×ÅÒÎÙÊ ÆÁÊÌ ÂÁÚÙ ÄÁÎÎÙÈ %s\n" -#: lib/rpmal.c:744 +#: lib/rpmal.c:770 #, fuzzy msgid "(added provide)" msgstr "%s: %-45s YES (db provides)\n" @@ -2845,18 +2845,18 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "ðÏÄÐÉÓØ: ÒÁÚÍÅÒ(%d)+ÚÁÐÏÌÎÅÎÉÅ(%d)\n" -#: lib/transaction.c:185 +#: lib/transaction.c:182 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s ÐÒÏÐÕÝÅÎ ÉÚ-ÚÁ ÆÌÁÇÁ missingok\n" #. @innercontinue@ -#: lib/transaction.c:850 +#: lib/transaction.c:981 #, c-format msgid "excluding directory %s\n" msgstr "ÉÓËÌÀÞÁÅÔÓÑ ËÁÔÁÌÏÇ %s\n" -#: lib/transaction.c:918 +#: lib/transaction.c:1071 msgid "getting list of mounted filesystems\n" msgstr "ÐÏÌÕÞÅÎÉÅ ÓÐÉÓËÁ ÓÍÏÎÔÉÒÏ×ÁÎÎÙÈ ÆÁÊÌÏ×ÙÈ ÓÉÓÔÅÍ\n" @@ -3043,36 +3043,36 @@ msgstr " msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "dbiTagsInit: ÉÍÑ ËÌÀÞÁ \"%s\" ÎÅ ÉÚ×ÅÓÔÎÏ, ÉÇÎÏÒÉÒÕÅÔÓÑ\n" -#: rpmdb/rpmdb.c:383 +#: rpmdb/rpmdb.c:387 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÉÎÄÅËÓ %s ÉÓÐÏÌØÚÕÑ db%d - %s (%d)\n" -#: rpmdb/rpmdb.c:405 +#: rpmdb/rpmdb.c:409 #, c-format msgid "cannot open %s index\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÉÎÄÅËÓ %s\n" -#: rpmdb/rpmdb.c:497 +#: rpmdb/rpmdb.c:501 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "ÏÛÉÂËÁ(%d) ÐÏÌÕÞÅÎÉÑ ÚÁÐÉÓÅÊ \"%s\" ÉÚ ÉÎÄÅËÓÁ %s\n" -#: rpmdb/rpmdb.c:628 +#: rpmdb/rpmdb.c:632 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "ÏÛÉÂËÁ(%d) ÚÁÐÉÓÉ ÚÁÐÉÓÉ %s × %s\n" -#: rpmdb/rpmdb.c:638 +#: rpmdb/rpmdb.c:642 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "ÏÛÉÂËÁ(%d) ÕÄÁÌÅÎÉÑ ÚÁÐÉÓÉ %s ÉÚ %s\n" -#: rpmdb/rpmdb.c:902 +#: rpmdb/rpmdb.c:906 msgid "no dbpath has been set\n" msgstr "ÐÁÒÁÍÅÔÅÒ dbpath ÎÅ ÕÓÔÁÎÏ×ÌÅÎ\n" -#: rpmdb/rpmdb.c:1046 +#: rpmdb/rpmdb.c:1050 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" @@ -3081,115 +3081,115 @@ msgstr "" "ÂÁÚÙ ÄÁÎÎÙÈ ÎÏ×ÏÇÏ ÆÏÒÍÁÔÁ\n" #. error -#: rpmdb/rpmdb.c:1311 +#: rpmdb/rpmdb.c:1315 #, c-format msgid "error(%d) counting packages\n" msgstr "ÏÛÉÂËÁ(%d) ÐÒÉ ÐÏÄÓÞ£ÔÅ ÐÁËÅÔÏ×\n" -#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 +#: rpmdb/rpmdb.c:2092 rpmdb/rpmdb.c:3345 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "ÚÁÐÉÓØ ÎÏÍÅÒ %u × ÂÁÚÅ ÄÁÎÎÙÈ ÎÅ×ÅÒÎÁ, ÐÒÏÐÕÓËÁÅÔÓÑ.\n" -#: rpmdb/rpmdb.c:2141 +#: rpmdb/rpmdb.c:2145 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "rpmdb: ÐÏÌÕÞÅÎ ÐÏ×ÒÅÖÄÅÎÎÙÊ ÚÁÇÏÌÏ×ÏË #%u, ÐÒÏÐÕÓËÁÅÔÓÑ.\n" -#: rpmdb/rpmdb.c:2411 +#: rpmdb/rpmdb.c:2415 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "%s: ÎÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÅÓÔØ ÚÁÇÏÌÏ×ÏË × 0x%x\n" -#: rpmdb/rpmdb.c:2483 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "ÕÄÁÌÑÅÔÓÑ \"%s\" ÉÚ ÉÎÄÅËÓÁ %s.\n" -#: rpmdb/rpmdb.c:2492 +#: rpmdb/rpmdb.c:2496 #, c-format msgid "removing %d entries from %s index.\n" msgstr "ÕÄÁÌÑÅÔÓÑ %d ÚÁÐÉÓÅÊ ÉÚ ÉÎÄÅËÓÁ %s.\n" -#: rpmdb/rpmdb.c:2693 +#: rpmdb/rpmdb.c:2697 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "ÏÛÉÂËÁ(%d) ÒÅÚÅÒ×ÉÒÏ×ÁÎÉÑ ÐÁÍÑÔÉ ÄÌÑ ÏÂÒÁÚÁ ÎÏ×ÏÇÏ ÐÁËÅÔÁ\n" -#: rpmdb/rpmdb.c:2774 +#: rpmdb/rpmdb.c:2778 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "ÄÏÂÁ×ÌÑÅÔÓÑ \"%s\" × ÉÎÄÅËÓ %s.\n" -#: rpmdb/rpmdb.c:2785 +#: rpmdb/rpmdb.c:2789 #, c-format msgid "adding %d entries to %s index.\n" msgstr "ÄÏÂÁ×ÌÑÅÔÓÑ %d ÚÁÐÉÓÅÊ × ÉÎÄÅËÓ %s\n" -#: rpmdb/rpmdb.c:3227 +#: rpmdb/rpmdb.c:3231 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "ÕÄÁÌÑÅÔÓÑ %s ÐÏÓÌÅ ÕÓÐÅÛÎÏÇÏ ÚÁ×ÅÒÛÅÎÉÑ ÐÅÒÅÉÎÄÅËÁÃÉÉ ÂÁÚÙ × db3.\n" -#: rpmdb/rpmdb.c:3260 +#: rpmdb/rpmdb.c:3264 msgid "no dbpath has been set" msgstr "ÐÁÒÁÍÅÔÅÒ dbpath ÎÅ ÕÓÔÁÎÏ×ÌÅÎ" -#: rpmdb/rpmdb.c:3287 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "rebuilding database %s into %s\n" msgstr "ÐÅÒÅÓÔÒÁÉ×ÁÅÔÓÑ ÂÁÚÁ ÄÁÎÎÙÈ %s × %s\n" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3295 #, c-format msgid "temporary database %s already exists\n" msgstr "×ÒÅÍÅÎÎÁÑ ÂÁÚÁ ÄÁÎÎÙÈ %s ÕÖÅ ÓÕÝÅÓÔ×ÕÅÔ\n" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3301 #, c-format msgid "creating directory %s\n" msgstr "ÓÏÚÄÁ£ÔÓÑ ËÁÔÁÌÏÇ %s\n" -#: rpmdb/rpmdb.c:3299 +#: rpmdb/rpmdb.c:3303 #, c-format msgid "creating directory %s: %s\n" msgstr "ÓÏÚÄÁ£ÔÓÑ ËÁÔÁÌÏÇ %s: %s\n" -#: rpmdb/rpmdb.c:3306 +#: rpmdb/rpmdb.c:3310 #, c-format msgid "opening old database with dbapi %d\n" msgstr "ÏÔËÒÙ×ÁÅÔÓÑ ÓÔÁÒÁÑ ÂÁÚÁ ÄÁÎÎÙÈ ÞÅÒÅÚ dbapi %d\n" -#: rpmdb/rpmdb.c:3317 +#: rpmdb/rpmdb.c:3321 #, c-format msgid "opening new database with dbapi %d\n" msgstr "ÏÔËÒÙ×ÁÅÔÓÑ ÎÏ×ÁÑ ÂÁÚÁ ÄÁÎÎÙÈ ÞÅÒÅÚ dbapi %d\n" -#: rpmdb/rpmdb.c:3381 +#: rpmdb/rpmdb.c:3385 #, c-format msgid "cannot add record originally at %u\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÄÏÂÁ×ÉÔØ ÚÁÐÉÓØ (ÐÅÒ×ÏÎÁÞÁÌØÎÏ × %u)\n" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3403 msgid "failed to rebuild database: original database remains in place\n" msgstr "" "ÐÅÒÅÓÔÒÏÅÎÉÅ ÂÁÚÙ ÄÁÎÎÙÈ ÎÅ ÕÄÁÌÏÓØ, ÓÔÁÒÁÑ ÂÁÚÁ ÄÁÎÎÙÈ ÏÓÔÁÅÔÓÑ ÎÁ ÍÅÓÔÅ\n" -#: rpmdb/rpmdb.c:3407 +#: rpmdb/rpmdb.c:3411 msgid "failed to replace old database with new database!\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÚÁÍÅÎÉÔØ ÓÔÁÒÕÀ ÂÁÚÕ ÄÁÎÎÙÈ ÎÁ ÎÏ×ÕÀ!\n" -#: rpmdb/rpmdb.c:3409 +#: rpmdb/rpmdb.c:3413 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "ÆÁÊÌÙ × %s ÚÁÍÅÎÑÀÔÓÑ ÆÁÊÌÁÍÉ ÉÚ %s ÄÌÑ ×ÏÓÓÔÁÎÏ×ÌÅÎÉÑ" -#: rpmdb/rpmdb.c:3419 +#: rpmdb/rpmdb.c:3423 #, c-format msgid "removing directory %s\n" msgstr "ÕÄÁÌÑÅÔÓÑ ËÁÔÁÌÏÇ %s\n" -#: rpmdb/rpmdb.c:3421 +#: rpmdb/rpmdb.c:3425 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ËÁÔÁÌÏÇÁ %s: %s\n" diff --git a/po/sk.po b/po/sk.po index 63049c5..ad0e11d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-11-13 13:56-0500\n" +"POT-Creation-Date: 2001-11-15 13:11-0500\n" "PO-Revision-Date: 1999-04-08 21:37+02:00\n" "Last-Translator: Stanislav Meduna \n" "Language-Team: Slovak \n" @@ -2480,12 +2480,12 @@ msgstr "z msgid "package %s is not installed\n" msgstr "balík %s nie je nain¹talovaný\n" -#: lib/rpmal.c:647 +#: lib/rpmal.c:673 #, fuzzy msgid "(added files)" msgstr "chybný stav súboru: %s" -#: lib/rpmal.c:744 +#: lib/rpmal.c:770 #, fuzzy msgid "(added provide)" msgstr "Poskytuje:" @@ -2911,18 +2911,18 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "Doplnenie podpisu: %d\n" -#: lib/transaction.c:185 +#: lib/transaction.c:182 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s vynechané kvôli príznaku missingok\n" #. @innercontinue@ -#: lib/transaction.c:850 +#: lib/transaction.c:981 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "vytvára sa adresár %s\n" -#: lib/transaction.c:918 +#: lib/transaction.c:1071 msgid "getting list of mounted filesystems\n" msgstr "" @@ -3105,37 +3105,37 @@ msgstr "" msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:383 +#: rpmdb/rpmdb.c:387 #, fuzzy, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "nie je mo¾né otvori» %s na %s:%d" -#: rpmdb/rpmdb.c:405 +#: rpmdb/rpmdb.c:409 #, fuzzy, c-format msgid "cannot open %s index\n" msgstr "nie je mo¾né otvori» %s\n" -#: rpmdb/rpmdb.c:497 +#: rpmdb/rpmdb.c:501 #, fuzzy, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "chyba pri naèítaní záznamu %s z %s" -#: rpmdb/rpmdb.c:628 +#: rpmdb/rpmdb.c:632 #, fuzzy, c-format msgid "error(%d) storing record %s into %s\n" msgstr "chyba pri zápise záznamu %s do %s" -#: rpmdb/rpmdb.c:638 +#: rpmdb/rpmdb.c:642 #, fuzzy, c-format msgid "error(%d) removing record %s from %s\n" msgstr "chyba pri odstraòovaní záznamu %s z %s" -#: rpmdb/rpmdb.c:902 +#: rpmdb/rpmdb.c:906 #, fuzzy msgid "no dbpath has been set\n" msgstr "nebola nastavená ¾iadna dbpath" -#: rpmdb/rpmdb.c:1046 +#: rpmdb/rpmdb.c:1050 #, fuzzy msgid "" "old format database is present; use --rebuilddb to generate a new format " @@ -3145,115 +3145,115 @@ msgstr "" "databázy v novom formáte" #. error -#: rpmdb/rpmdb.c:1311 +#: rpmdb/rpmdb.c:1315 #, fuzzy, c-format msgid "error(%d) counting packages\n" msgstr "chyba pri hµadaní balíka %s\n" -#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 +#: rpmdb/rpmdb.c:2092 rpmdb/rpmdb.c:3345 #, fuzzy, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "záznam èíslo %d v databáze je chybný -- bol vynechaný" -#: rpmdb/rpmdb.c:2141 +#: rpmdb/rpmdb.c:2145 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2411 +#: rpmdb/rpmdb.c:2415 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "nie je mo¾né preèíta» hlavièku na %d pre vyhµadanie" -#: rpmdb/rpmdb.c:2483 +#: rpmdb/rpmdb.c:2487 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "odstraòuje sa index skupín\n" -#: rpmdb/rpmdb.c:2492 +#: rpmdb/rpmdb.c:2496 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "odstraòuje sa index názvov\n" -#: rpmdb/rpmdb.c:2693 +#: rpmdb/rpmdb.c:2697 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "chyba pri hµadaní balíka %s\n" -#: rpmdb/rpmdb.c:2774 +#: rpmdb/rpmdb.c:2778 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "premenováva sa %s na %s\n" -#: rpmdb/rpmdb.c:2785 +#: rpmdb/rpmdb.c:2789 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "premenováva sa %s na %s\n" -#: rpmdb/rpmdb.c:3227 +#: rpmdb/rpmdb.c:3231 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3260 +#: rpmdb/rpmdb.c:3264 msgid "no dbpath has been set" msgstr "nebola nastavená ¾iadna dbpath" -#: rpmdb/rpmdb.c:3287 +#: rpmdb/rpmdb.c:3291 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "znovu sa vytvára databáza v adresári %s\n" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3295 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "doèasná databáza %s u¾ existuje" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3301 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "vytvára sa adresár %s\n" -#: rpmdb/rpmdb.c:3299 +#: rpmdb/rpmdb.c:3303 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "vytvára sa adresár %s\n" -#: rpmdb/rpmdb.c:3306 +#: rpmdb/rpmdb.c:3310 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "otvára sa stará databáza\n" -#: rpmdb/rpmdb.c:3317 +#: rpmdb/rpmdb.c:3321 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "otvára sa nová databáza\n" -#: rpmdb/rpmdb.c:3381 +#: rpmdb/rpmdb.c:3385 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "nie je mo¾né prida» záznam pôvodne na %d" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3403 #, fuzzy msgid "failed to rebuild database: original database remains in place\n" msgstr "nepodarilo sa znovu vytvori» databázu; zostáva pôvodná\n" -#: rpmdb/rpmdb.c:3407 +#: rpmdb/rpmdb.c:3411 msgid "failed to replace old database with new database!\n" msgstr "nepodarilo sa nahradi» starú databázu novou!\n" -#: rpmdb/rpmdb.c:3409 +#: rpmdb/rpmdb.c:3413 #, fuzzy, c-format msgid "replace files in %s with files from %s to recover" msgstr "nahradí súbory v %s súbormi z %s kvôli obnove" -#: rpmdb/rpmdb.c:3419 +#: rpmdb/rpmdb.c:3423 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "vytvára sa adresár %s\n" -#: rpmdb/rpmdb.c:3421 +#: rpmdb/rpmdb.c:3425 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "nepodarilo sa odstráni» adresár %s: %s\n" diff --git a/po/sl.po b/po/sl.po index 8b7d91c..4b369c7 100644 --- a/po/sl.po +++ b/po/sl.po @@ -1,12 +1,12 @@ # -*- mode:po; coding:iso-latin-2; -*- Slovenian messages for Redhat pkg. mngr. # Copyright (C) 2000 Free Software Foundation, Inc. # Primo¾ Peterlin , 2000. -# $Id: sl.po,v 1.203 2001/11/13 19:05:11 jbj Exp $ +# $Id: sl.po,v 1.204 2001/11/15 18:22:55 jbj Exp $ # msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-11-13 13:56-0500\n" +"POT-Creation-Date: 2001-11-15 13:11-0500\n" "PO-Revision-Date: 2000-10-08 19:05+0200\n" "Last-Translator: Grega Fajdiga \n" "Language-Team: Slovenian \n" @@ -2479,12 +2479,12 @@ msgstr "zapisa %d ni mo msgid "package %s is not installed\n" msgstr "paket %s ni name¹èen\n" -#: lib/rpmal.c:647 +#: lib/rpmal.c:673 #, fuzzy msgid "(added files)" msgstr "po¹kodovana zbirka podatkov %s" -#: lib/rpmal.c:744 +#: lib/rpmal.c:770 #, fuzzy msgid "(added provide)" msgstr "%s: %-45s DA (db ponudbe)\n" @@ -2909,18 +2909,18 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "Dol¾. polnila : %d\n" -#: lib/transaction.c:185 +#: lib/transaction.c:182 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s preskoèen zaradi manjkajoèe zastavice OK\n" #. @innercontinue@ -#: lib/transaction.c:850 +#: lib/transaction.c:981 #, c-format msgid "excluding directory %s\n" msgstr "izkljuèevanje imenika %s\n" -#: lib/transaction.c:918 +#: lib/transaction.c:1071 msgid "getting list of mounted filesystems\n" msgstr "zbiranje seznama priklopljenih datoteènih sistemov.\n" @@ -3107,37 +3107,37 @@ msgstr "" msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "dbiTagsInit: neprepoznano ime znaèke: \"%s\" prezrto\n" -#: rpmdb/rpmdb.c:383 +#: rpmdb/rpmdb.c:387 #, fuzzy, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "ni mo¾no odpreti kazala %s z uporabo db%d - %s (%d)" -#: rpmdb/rpmdb.c:405 +#: rpmdb/rpmdb.c:409 #, fuzzy, c-format msgid "cannot open %s index\n" msgstr "ni mo¾no odpreti kazala %s:" -#: rpmdb/rpmdb.c:497 +#: rpmdb/rpmdb.c:501 #, fuzzy, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "napaka(%d) pri branju zapisov \"%s\" iz kazala %s" -#: rpmdb/rpmdb.c:628 +#: rpmdb/rpmdb.c:632 #, fuzzy, c-format msgid "error(%d) storing record %s into %s\n" msgstr "napaka(%d) pri pisanju zapisa %s v %s" -#: rpmdb/rpmdb.c:638 +#: rpmdb/rpmdb.c:642 #, fuzzy, c-format msgid "error(%d) removing record %s from %s\n" msgstr "napaka(%d) pri brisanju zapisa %s iz %s" -#: rpmdb/rpmdb.c:902 +#: rpmdb/rpmdb.c:906 #, fuzzy msgid "no dbpath has been set\n" msgstr "dbpath ni nastavljena" -#: rpmdb/rpmdb.c:1046 +#: rpmdb/rpmdb.c:1050 #, fuzzy msgid "" "old format database is present; use --rebuilddb to generate a new format " @@ -3146,117 +3146,117 @@ msgstr "" "da bi staro obliko zbirke podatkov pretvorili v novo po¾enite --rebuilddb" #. error -#: rpmdb/rpmdb.c:1311 +#: rpmdb/rpmdb.c:1315 #, fuzzy, c-format msgid "error(%d) counting packages\n" msgstr "napaka(%d) pri ¹tetju paketov" -#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 +#: rpmdb/rpmdb.c:2092 rpmdb/rpmdb.c:3345 #, fuzzy, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "zapis ¹t. %d v zbirki je po¹kodovan -- preskoèeno." -#: rpmdb/rpmdb.c:2141 +#: rpmdb/rpmdb.c:2145 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2411 +#: rpmdb/rpmdb.c:2415 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "%s: ni mo¾no prebrati glave pri 0x%x" -#: rpmdb/rpmdb.c:2483 +#: rpmdb/rpmdb.c:2487 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "odstranjevanje \"%s\" iz kazala %s.\n" -#: rpmdb/rpmdb.c:2492 +#: rpmdb/rpmdb.c:2496 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "odstranjevanje %d vnosov iz kazala %s\n" -#: rpmdb/rpmdb.c:2693 +#: rpmdb/rpmdb.c:2697 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "napaka(%d) pri iskanju paketa %s\n" -#: rpmdb/rpmdb.c:2774 +#: rpmdb/rpmdb.c:2778 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "dodajanje \"%s\" v kazalo %s.\n" -#: rpmdb/rpmdb.c:2785 +#: rpmdb/rpmdb.c:2789 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "dodajanje %d vnosov v kazalo %s.\n" -#: rpmdb/rpmdb.c:3227 +#: rpmdb/rpmdb.c:3231 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3260 +#: rpmdb/rpmdb.c:3264 msgid "no dbpath has been set" msgstr "dbpath ni nastavljena" -#: rpmdb/rpmdb.c:3287 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "rebuilding database %s into %s\n" msgstr "ponovna izgradnja podatkovne zbirke %s v %s\n" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3295 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "zaèasna podatkovna zbirka %s ¾e obstaja" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3301 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "ustvarjanje imenika: %s\n" -#: rpmdb/rpmdb.c:3299 +#: rpmdb/rpmdb.c:3303 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "ustvarjanje imenika: %s\n" -#: rpmdb/rpmdb.c:3306 +#: rpmdb/rpmdb.c:3310 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "odpiranje stare podatkovne zbirke\n" -#: rpmdb/rpmdb.c:3317 +#: rpmdb/rpmdb.c:3321 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "odpiramo nove podatkovne zbirke z dbapi %d\n" -#: rpmdb/rpmdb.c:3381 +#: rpmdb/rpmdb.c:3385 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "zapisa ni mo¾no dodati na %d" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3403 #, fuzzy msgid "failed to rebuild database: original database remains in place\n" msgstr "" "ponovna izgradnja podatkovne zbirke je bila neuspe¹na; stara ostaja na\n" "istem mestu\n" -#: rpmdb/rpmdb.c:3407 +#: rpmdb/rpmdb.c:3411 msgid "failed to replace old database with new database!\n" msgstr "zamenjava stare podatkovne zbirke z novo je bila neuspe¹na!\n" -#: rpmdb/rpmdb.c:3409 +#: rpmdb/rpmdb.c:3413 #, fuzzy, c-format msgid "replace files in %s with files from %s to recover" msgstr "poskus povrnitve z nadomestitvijo datotek v %s z datotekami v %s" -#: rpmdb/rpmdb.c:3419 +#: rpmdb/rpmdb.c:3423 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "odstranjevanje imenika: %s\n" -#: rpmdb/rpmdb.c:3421 +#: rpmdb/rpmdb.c:3425 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "neuspe¹na odstranitev imenika %s: %s\n" diff --git a/po/sr.po b/po/sr.po index df77560..7328186 100644 --- a/po/sr.po +++ b/po/sr.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-11-13 13:56-0500\n" +"POT-Creation-Date: 2001-11-15 13:11-0500\n" "Content-Type: text/plain; charset=\n" "Date: 1998-05-02 21:41:47-0400\n" @@ -2466,12 +2466,12 @@ msgstr "ne mogu da pro msgid "package %s is not installed\n" msgstr "paket %s nije instaliran\n" -#: lib/rpmal.c:647 +#: lib/rpmal.c:673 #, fuzzy msgid "(added files)" msgstr "neuspelo otvaranje %s: %s" -#: lib/rpmal.c:744 +#: lib/rpmal.c:770 #, fuzzy msgid "(added provide)" msgstr "datoteka %s ne pripada nijednom paketu\n" @@ -2900,18 +2900,18 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:185 +#: lib/transaction.c:182 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:850 +#: lib/transaction.c:981 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "gre¹ka kod kreiranja direktorijuma %s: %s" -#: lib/transaction.c:918 +#: lib/transaction.c:1071 msgid "getting list of mounted filesystems\n" msgstr "" @@ -3088,151 +3088,151 @@ msgstr "" msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:383 +#: rpmdb/rpmdb.c:387 #, fuzzy, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "Ne mogu da otvorim datoteku %s: " -#: rpmdb/rpmdb.c:405 +#: rpmdb/rpmdb.c:409 #, fuzzy, c-format msgid "cannot open %s index\n" msgstr "gre¹ka: ne mogu da otvorim %s\n" -#: rpmdb/rpmdb.c:497 +#: rpmdb/rpmdb.c:501 #, fuzzy, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "gre¹ka kod uzimanja sloga %s iz %s" -#: rpmdb/rpmdb.c:628 +#: rpmdb/rpmdb.c:632 #, fuzzy, c-format msgid "error(%d) storing record %s into %s\n" msgstr "gre¹ka zapisivanja sloga %s u %s" -#: rpmdb/rpmdb.c:638 +#: rpmdb/rpmdb.c:642 #, fuzzy, c-format msgid "error(%d) removing record %s from %s\n" msgstr "gre¹ka uklanjanja sloga %s u %s" -#: rpmdb/rpmdb.c:902 +#: rpmdb/rpmdb.c:906 #, fuzzy msgid "no dbpath has been set\n" msgstr "dbpath nije odreðen" -#: rpmdb/rpmdb.c:1046 +#: rpmdb/rpmdb.c:1050 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1311 +#: rpmdb/rpmdb.c:1315 #, fuzzy, c-format msgid "error(%d) counting packages\n" msgstr "gre¹ka kod potrage za paketom %s\n" -#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 +#: rpmdb/rpmdb.c:2092 rpmdb/rpmdb.c:3345 #, fuzzy, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "slog broj %d u bazi podataka je neispravan -- preskaèem ga" -#: rpmdb/rpmdb.c:2141 +#: rpmdb/rpmdb.c:2145 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2411 +#: rpmdb/rpmdb.c:2415 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "ne mogu da proèitam zaglavlje na %d za proveru" -#: rpmdb/rpmdb.c:2483 +#: rpmdb/rpmdb.c:2487 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "gre¹ka uklanjanja sloga %s u %s" -#: rpmdb/rpmdb.c:2492 +#: rpmdb/rpmdb.c:2496 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "gre¹ka uklanjanja sloga %s u %s" -#: rpmdb/rpmdb.c:2693 +#: rpmdb/rpmdb.c:2697 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "gre¹ka kod potrage za paketom %s\n" -#: rpmdb/rpmdb.c:2774 +#: rpmdb/rpmdb.c:2778 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2785 +#: rpmdb/rpmdb.c:2789 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "gre¹ka uklanjanja sloga %s u %s" -#: rpmdb/rpmdb.c:3227 +#: rpmdb/rpmdb.c:3231 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3260 +#: rpmdb/rpmdb.c:3264 msgid "no dbpath has been set" msgstr "dbpath nije odreðen" -#: rpmdb/rpmdb.c:3287 +#: rpmdb/rpmdb.c:3291 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "rekreiraj bazu podataka iz postojeæe baze" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3295 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "privremena baza podataka %s veæ postoji" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3301 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "gre¹ka kod kreiranja direktorijuma %s: %s" -#: rpmdb/rpmdb.c:3299 +#: rpmdb/rpmdb.c:3303 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "gre¹ka kod kreiranja direktorijuma %s: %s" -#: rpmdb/rpmdb.c:3306 +#: rpmdb/rpmdb.c:3310 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "rekreiraj bazu podataka iz postojeæe baze" -#: rpmdb/rpmdb.c:3317 +#: rpmdb/rpmdb.c:3321 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "rekreiraj bazu podataka iz postojeæe baze" -#: rpmdb/rpmdb.c:3381 +#: rpmdb/rpmdb.c:3385 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "ne mogu da dodam slog originalno na %d" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3403 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3407 +#: rpmdb/rpmdb.c:3411 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3409 +#: rpmdb/rpmdb.c:3413 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3419 +#: rpmdb/rpmdb.c:3423 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "gre¹ka kod kreiranja direktorijuma %s: %s" -#: rpmdb/rpmdb.c:3421 +#: rpmdb/rpmdb.c:3425 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "neuspelo otvaranje %s: %s" diff --git a/po/sv.po b/po/sv.po index 6eb9847..67b1e71 100644 --- a/po/sv.po +++ b/po/sv.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-11-13 13:56-0500\n" +"POT-Creation-Date: 2001-11-15 13:11-0500\n" "PO-Revision-Date: 2001-09-12 14:18+0200\n" "Last-Translator: Göran Uddeborg \n" "Language-Team: Swedish \n" @@ -2407,12 +2407,12 @@ msgstr "post %u kunde inte l msgid "package %s is not installed\n" msgstr "paket %s är inte installerat\n" -#: lib/rpmal.c:647 +#: lib/rpmal.c:673 #, fuzzy msgid "(added files)" msgstr "felaktig db-fil %s\n" -#: lib/rpmal.c:744 +#: lib/rpmal.c:770 #, fuzzy msgid "(added provide)" msgstr "%s: %-45s JA (db-tillhandahållande)\n" @@ -2830,18 +2830,18 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "Signatur: storlek(%d)+utfyllnad(%d)\n" -#: lib/transaction.c:185 +#: lib/transaction.c:182 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s överhoppad på grund av missingok-flagga\n" #. @innercontinue@ -#: lib/transaction.c:850 +#: lib/transaction.c:981 #, c-format msgid "excluding directory %s\n" msgstr "hoppar över katalogen %s\n" -#: lib/transaction.c:918 +#: lib/transaction.c:1071 msgid "getting list of mounted filesystems\n" msgstr "hämtar lista över monterade filsystem\n" @@ -3024,36 +3024,36 @@ msgstr "generera huvuden kompatibla med ( msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "dbiTagsInit: okänt taggnamn: \"%s\" ignorerat\n" -#: rpmdb/rpmdb.c:383 +#: rpmdb/rpmdb.c:387 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "kan inte öppna %s-indexet med db%d - %s (%d)\n" -#: rpmdb/rpmdb.c:405 +#: rpmdb/rpmdb.c:409 #, c-format msgid "cannot open %s index\n" msgstr "kan inte öppna %s-indexet\n" -#: rpmdb/rpmdb.c:497 +#: rpmdb/rpmdb.c:501 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "fel(%d) när \"%s\"-poster hämtades från %s-indexet\n" -#: rpmdb/rpmdb.c:628 +#: rpmdb/rpmdb.c:632 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "fel(%d) när post %s sparades i %s\n" -#: rpmdb/rpmdb.c:638 +#: rpmdb/rpmdb.c:642 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "fel(%d) när post %s togs bort ur %s\n" -#: rpmdb/rpmdb.c:902 +#: rpmdb/rpmdb.c:906 msgid "no dbpath has been set\n" msgstr "ingen dbpath har satts\n" -#: rpmdb/rpmdb.c:1046 +#: rpmdb/rpmdb.c:1050 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" @@ -3062,114 +3062,114 @@ msgstr "" "i nytt format\n" #. error -#: rpmdb/rpmdb.c:1311 +#: rpmdb/rpmdb.c:1315 #, c-format msgid "error(%d) counting packages\n" msgstr "fel(%d) när paket räknades\n" -#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 +#: rpmdb/rpmdb.c:2092 rpmdb/rpmdb.c:3345 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "post nummer %u i databasen är felaktig -- hoppar över.\n" -#: rpmdb/rpmdb.c:2141 +#: rpmdb/rpmdb.c:2145 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "rpmdb: skadad huvudinstans #%u hämtad, hoppar över.\n" -#: rpmdb/rpmdb.c:2411 +#: rpmdb/rpmdb.c:2415 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "%s: kan inte läsa huvud vid 0x%x\n" -#: rpmdb/rpmdb.c:2483 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "tar bort \"%s\" från %s-indexet.\n" -#: rpmdb/rpmdb.c:2492 +#: rpmdb/rpmdb.c:2496 #, c-format msgid "removing %d entries from %s index.\n" msgstr "tar bort %d poster från %s-indexet.\n" -#: rpmdb/rpmdb.c:2693 +#: rpmdb/rpmdb.c:2697 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "fel(%d) vid allokering av ny paketinstans\n" -#: rpmdb/rpmdb.c:2774 +#: rpmdb/rpmdb.c:2778 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "lägger till \"%s\" till %s-indexet.\n" -#: rpmdb/rpmdb.c:2785 +#: rpmdb/rpmdb.c:2789 #, c-format msgid "adding %d entries to %s index.\n" msgstr "lägger till %d poster till %s-indexet.\n" -#: rpmdb/rpmdb.c:3227 +#: rpmdb/rpmdb.c:3231 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "tar bort %s efter lyckad db3-ombyggnad.\n" -#: rpmdb/rpmdb.c:3260 +#: rpmdb/rpmdb.c:3264 msgid "no dbpath has been set" msgstr "ingen dbpath har satts" -#: rpmdb/rpmdb.c:3287 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "rebuilding database %s into %s\n" msgstr "bygger om databas %s till %s\n" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3295 #, c-format msgid "temporary database %s already exists\n" msgstr "tillfällig databas %s existerar redan\n" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3301 #, c-format msgid "creating directory %s\n" msgstr "skapar katalog %s\n" -#: rpmdb/rpmdb.c:3299 +#: rpmdb/rpmdb.c:3303 #, c-format msgid "creating directory %s: %s\n" msgstr "skapar katalog %s: %s\n" -#: rpmdb/rpmdb.c:3306 +#: rpmdb/rpmdb.c:3310 #, c-format msgid "opening old database with dbapi %d\n" msgstr "öppnar gammal databas med dbapi %d\n" -#: rpmdb/rpmdb.c:3317 +#: rpmdb/rpmdb.c:3321 #, c-format msgid "opening new database with dbapi %d\n" msgstr "öppnar ny databas med dbapi %d\n" -#: rpmdb/rpmdb.c:3381 +#: rpmdb/rpmdb.c:3385 #, c-format msgid "cannot add record originally at %u\n" msgstr "kan inte lägga till post ursprungligen vid %u\n" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3403 msgid "failed to rebuild database: original database remains in place\n" msgstr "kunde inte bygga om databasen: orginaldatabasen finns kvar\n" -#: rpmdb/rpmdb.c:3407 +#: rpmdb/rpmdb.c:3411 msgid "failed to replace old database with new database!\n" msgstr "kunde inte ersätta gammal databas med ny databas!\n" -#: rpmdb/rpmdb.c:3409 +#: rpmdb/rpmdb.c:3413 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "byt ut filer i %s med filer från %s för att återställa" -#: rpmdb/rpmdb.c:3419 +#: rpmdb/rpmdb.c:3423 #, c-format msgid "removing directory %s\n" msgstr "tar bort katalog %s\n" -#: rpmdb/rpmdb.c:3421 +#: rpmdb/rpmdb.c:3425 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "kunde inte ta bort katalogen %s: %s\n" diff --git a/po/tr.po b/po/tr.po index 8686733..a9c391b 100644 --- a/po/tr.po +++ b/po/tr.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-11-13 13:56-0500\n" +"POT-Creation-Date: 2001-11-15 13:11-0500\n" "PO-Revision-Date: 2001-07-05 08:02+300\n" "Last-Translator: Nilgun Belma Buguner \n" "Language-Team: Turkish \n" @@ -2430,12 +2430,12 @@ msgstr "%u. kay msgid "package %s is not installed\n" msgstr "%s paketi kurulu deðil\n" -#: lib/rpmal.c:647 +#: lib/rpmal.c:673 #, fuzzy msgid "(added files)" msgstr "db dosyasý %s hatalý\n" -#: lib/rpmal.c:744 +#: lib/rpmal.c:770 #, fuzzy msgid "(added provide)" msgstr "%s: %-45s EVET (db saðlar)\n" @@ -2851,18 +2851,18 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "Ýmza: boyut(%d)+iz(%d)\n" -#: lib/transaction.c:185 +#: lib/transaction.c:182 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "missingok flamasýndan dolayý %s atlandý\n" #. @innercontinue@ -#: lib/transaction.c:850 +#: lib/transaction.c:981 #, c-format msgid "excluding directory %s\n" msgstr "%s dizini dýþlanýyor\n" -#: lib/transaction.c:918 +#: lib/transaction.c:1071 msgid "getting list of mounted filesystems\n" msgstr "baðlý dosya sistemlerinin listesi alýnýyor\n" @@ -3046,36 +3046,36 @@ msgstr "(eski) rpm[23] paketleme ile uyumlu ba msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "dbiTagsInit: tanýmlanmamýþ etiket adý: \"%s\" yoksayýldý\n" -#: rpmdb/rpmdb.c:383 +#: rpmdb/rpmdb.c:387 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "%s indeksi db%d - %s (%d) kullanarak açýlamadý\n" -#: rpmdb/rpmdb.c:405 +#: rpmdb/rpmdb.c:409 #, c-format msgid "cannot open %s index\n" msgstr "%s indeksi açýlamadý\n" -#: rpmdb/rpmdb.c:497 +#: rpmdb/rpmdb.c:501 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "hata(%d): \"%s\" kayýt %s indeksinden alýnýyor\n" -#: rpmdb/rpmdb.c:628 +#: rpmdb/rpmdb.c:632 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "hata(%d): %s kayýt %s içine yazýlýyor\n" -#: rpmdb/rpmdb.c:638 +#: rpmdb/rpmdb.c:642 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "hata(%d) %s kaydýn %s dosyasýndan silinmesi\n" -#: rpmdb/rpmdb.c:902 +#: rpmdb/rpmdb.c:906 msgid "no dbpath has been set\n" msgstr "belirtilmiþ bir dbpath deðeri yok\n" -#: rpmdb/rpmdb.c:1046 +#: rpmdb/rpmdb.c:1050 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" @@ -3084,116 +3084,116 @@ msgstr "" "rebuilddb kullanýn\n" #. error -#: rpmdb/rpmdb.c:1311 +#: rpmdb/rpmdb.c:1315 #, c-format msgid "error(%d) counting packages\n" msgstr "paketler taranýrken hata(%d)\n" -#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 +#: rpmdb/rpmdb.c:2092 rpmdb/rpmdb.c:3345 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "veritabanýndaki %u. kayýt hatalý -- atlanýyor\n" -#: rpmdb/rpmdb.c:2141 +#: rpmdb/rpmdb.c:2145 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "rpmdb: bozuk baþlýk örneði #%u alýndý, atlanýyor.\n" -#: rpmdb/rpmdb.c:2411 +#: rpmdb/rpmdb.c:2415 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "%s: 0x%x de baþlýk okunamadý\n" -#: rpmdb/rpmdb.c:2483 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "\"%s\" %s indeksinden siliniyor.\n" -#: rpmdb/rpmdb.c:2492 +#: rpmdb/rpmdb.c:2496 #, c-format msgid "removing %d entries from %s index.\n" msgstr "%d girdi %s indeksinden siliniyor.\n" -#: rpmdb/rpmdb.c:2693 +#: rpmdb/rpmdb.c:2697 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "yeni paket örneðini tutma hatasý(%d)\n" -#: rpmdb/rpmdb.c:2774 +#: rpmdb/rpmdb.c:2778 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "\"%s\" %s indeksine ekleniyor.\n" -#: rpmdb/rpmdb.c:2785 +#: rpmdb/rpmdb.c:2789 #, c-format msgid "adding %d entries to %s index.\n" msgstr "%d girdi %s indeksine ekleniyor.\n" -#: rpmdb/rpmdb.c:3227 +#: rpmdb/rpmdb.c:3231 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "baþarýlý db3 yeniden oluþturma ertesinde %s kaldýrýlýyor\n" -#: rpmdb/rpmdb.c:3260 +#: rpmdb/rpmdb.c:3264 msgid "no dbpath has been set" msgstr "belirtilmiþ bir dbpath yok" -#: rpmdb/rpmdb.c:3287 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "rebuilding database %s into %s\n" msgstr "%s veritabaný %s içinde yeniden oluþturuluyor\n" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3295 #, c-format msgid "temporary database %s already exists\n" msgstr "geçici veritabaný %s zaten mevcut\n" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3301 #, c-format msgid "creating directory %s\n" msgstr "%s dizini oluþturuluyor\n" -#: rpmdb/rpmdb.c:3299 +#: rpmdb/rpmdb.c:3303 #, c-format msgid "creating directory %s: %s\n" msgstr "%s dizini oluþturuluyor: %s\n" -#: rpmdb/rpmdb.c:3306 +#: rpmdb/rpmdb.c:3310 #, c-format msgid "opening old database with dbapi %d\n" msgstr "eski veritabaný dbapi %d ile açýlýyor\n" -#: rpmdb/rpmdb.c:3317 +#: rpmdb/rpmdb.c:3321 #, c-format msgid "opening new database with dbapi %d\n" msgstr "yeni veritabaný dbapi %d ile açýlýyor\n" -#: rpmdb/rpmdb.c:3381 +#: rpmdb/rpmdb.c:3385 #, c-format msgid "cannot add record originally at %u\n" msgstr "kayýt özgün olarak %u e eklenemedi\n" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3403 msgid "failed to rebuild database: original database remains in place\n" msgstr "" "veritabaný yeniden oluþturulamadý: mevcut veritabaný deðiþmeden\n" "yerinde býrakýldý\n" -#: rpmdb/rpmdb.c:3407 +#: rpmdb/rpmdb.c:3411 msgid "failed to replace old database with new database!\n" msgstr "eski veritabanýnýn yenisiyle deðiþtirilirmesi baþarýsýz!\n" -#: rpmdb/rpmdb.c:3409 +#: rpmdb/rpmdb.c:3413 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "kurtarmak için %s içindeki dosyalar %s deki dosyalarla deðiþtiriliyor" -#: rpmdb/rpmdb.c:3419 +#: rpmdb/rpmdb.c:3423 #, c-format msgid "removing directory %s\n" msgstr "%s dizini siliniyor\n" -#: rpmdb/rpmdb.c:3421 +#: rpmdb/rpmdb.c:3425 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "%s dizininin silinmesi baþarýsýz: %s\n" diff --git a/po/uk.po b/po/uk.po index 3aefd71..f9b7e5a 100644 --- a/po/uk.po +++ b/po/uk.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-11-13 13:56-0500\n" +"POT-Creation-Date: 2001-11-15 13:11-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2363,11 +2363,11 @@ msgstr "" msgid "package %s is not installed\n" msgstr "" -#: lib/rpmal.c:647 +#: lib/rpmal.c:673 msgid "(added files)" msgstr "" -#: lib/rpmal.c:744 +#: lib/rpmal.c:770 msgid "(added provide)" msgstr "" @@ -2777,18 +2777,18 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:185 +#: lib/transaction.c:182 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:850 +#: lib/transaction.c:981 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:918 +#: lib/transaction.c:1071 msgid "getting list of mounted filesystems\n" msgstr "" @@ -2963,150 +2963,150 @@ msgstr "" msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:383 +#: rpmdb/rpmdb.c:387 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:405 +#: rpmdb/rpmdb.c:409 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:497 +#: rpmdb/rpmdb.c:501 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:628 +#: rpmdb/rpmdb.c:632 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:638 +#: rpmdb/rpmdb.c:642 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:902 +#: rpmdb/rpmdb.c:906 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1046 +#: rpmdb/rpmdb.c:1050 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1311 +#: rpmdb/rpmdb.c:1315 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 +#: rpmdb/rpmdb.c:2092 rpmdb/rpmdb.c:3345 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2141 +#: rpmdb/rpmdb.c:2145 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2411 +#: rpmdb/rpmdb.c:2415 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2483 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2492 +#: rpmdb/rpmdb.c:2496 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2693 +#: rpmdb/rpmdb.c:2697 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2774 +#: rpmdb/rpmdb.c:2778 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2785 +#: rpmdb/rpmdb.c:2789 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3227 +#: rpmdb/rpmdb.c:3231 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3260 +#: rpmdb/rpmdb.c:3264 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3287 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3295 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3301 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3299 +#: rpmdb/rpmdb.c:3303 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3306 +#: rpmdb/rpmdb.c:3310 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3317 +#: rpmdb/rpmdb.c:3321 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3381 +#: rpmdb/rpmdb.c:3385 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3403 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3407 +#: rpmdb/rpmdb.c:3411 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3409 +#: rpmdb/rpmdb.c:3413 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3419 +#: rpmdb/rpmdb.c:3423 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3421 +#: rpmdb/rpmdb.c:3425 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" diff --git a/po/wa.po b/po/wa.po index 3aefd71..f9b7e5a 100644 --- a/po/wa.po +++ b/po/wa.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-11-13 13:56-0500\n" +"POT-Creation-Date: 2001-11-15 13:11-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2363,11 +2363,11 @@ msgstr "" msgid "package %s is not installed\n" msgstr "" -#: lib/rpmal.c:647 +#: lib/rpmal.c:673 msgid "(added files)" msgstr "" -#: lib/rpmal.c:744 +#: lib/rpmal.c:770 msgid "(added provide)" msgstr "" @@ -2777,18 +2777,18 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:185 +#: lib/transaction.c:182 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:850 +#: lib/transaction.c:981 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:918 +#: lib/transaction.c:1071 msgid "getting list of mounted filesystems\n" msgstr "" @@ -2963,150 +2963,150 @@ msgstr "" msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:383 +#: rpmdb/rpmdb.c:387 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:405 +#: rpmdb/rpmdb.c:409 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:497 +#: rpmdb/rpmdb.c:501 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:628 +#: rpmdb/rpmdb.c:632 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:638 +#: rpmdb/rpmdb.c:642 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:902 +#: rpmdb/rpmdb.c:906 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1046 +#: rpmdb/rpmdb.c:1050 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1311 +#: rpmdb/rpmdb.c:1315 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 +#: rpmdb/rpmdb.c:2092 rpmdb/rpmdb.c:3345 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2141 +#: rpmdb/rpmdb.c:2145 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2411 +#: rpmdb/rpmdb.c:2415 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2483 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2492 +#: rpmdb/rpmdb.c:2496 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2693 +#: rpmdb/rpmdb.c:2697 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2774 +#: rpmdb/rpmdb.c:2778 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2785 +#: rpmdb/rpmdb.c:2789 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3227 +#: rpmdb/rpmdb.c:3231 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3260 +#: rpmdb/rpmdb.c:3264 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3287 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3295 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3301 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3299 +#: rpmdb/rpmdb.c:3303 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3306 +#: rpmdb/rpmdb.c:3310 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3317 +#: rpmdb/rpmdb.c:3321 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3381 +#: rpmdb/rpmdb.c:3385 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3403 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3407 +#: rpmdb/rpmdb.c:3411 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3409 +#: rpmdb/rpmdb.c:3413 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3419 +#: rpmdb/rpmdb.c:3423 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3421 +#: rpmdb/rpmdb.c:3425 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" diff --git a/po/zh.po b/po/zh.po index 3aefd71..f9b7e5a 100644 --- a/po/zh.po +++ b/po/zh.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-11-13 13:56-0500\n" +"POT-Creation-Date: 2001-11-15 13:11-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2363,11 +2363,11 @@ msgstr "" msgid "package %s is not installed\n" msgstr "" -#: lib/rpmal.c:647 +#: lib/rpmal.c:673 msgid "(added files)" msgstr "" -#: lib/rpmal.c:744 +#: lib/rpmal.c:770 msgid "(added provide)" msgstr "" @@ -2777,18 +2777,18 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:185 +#: lib/transaction.c:182 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:850 +#: lib/transaction.c:981 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:918 +#: lib/transaction.c:1071 msgid "getting list of mounted filesystems\n" msgstr "" @@ -2963,150 +2963,150 @@ msgstr "" msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:383 +#: rpmdb/rpmdb.c:387 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:405 +#: rpmdb/rpmdb.c:409 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:497 +#: rpmdb/rpmdb.c:501 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:628 +#: rpmdb/rpmdb.c:632 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:638 +#: rpmdb/rpmdb.c:642 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:902 +#: rpmdb/rpmdb.c:906 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1046 +#: rpmdb/rpmdb.c:1050 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1311 +#: rpmdb/rpmdb.c:1315 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 +#: rpmdb/rpmdb.c:2092 rpmdb/rpmdb.c:3345 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2141 +#: rpmdb/rpmdb.c:2145 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2411 +#: rpmdb/rpmdb.c:2415 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2483 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2492 +#: rpmdb/rpmdb.c:2496 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2693 +#: rpmdb/rpmdb.c:2697 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2774 +#: rpmdb/rpmdb.c:2778 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2785 +#: rpmdb/rpmdb.c:2789 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3227 +#: rpmdb/rpmdb.c:3231 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3260 +#: rpmdb/rpmdb.c:3264 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3287 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3295 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3301 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3299 +#: rpmdb/rpmdb.c:3303 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3306 +#: rpmdb/rpmdb.c:3310 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3317 +#: rpmdb/rpmdb.c:3321 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3381 +#: rpmdb/rpmdb.c:3385 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3403 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3407 +#: rpmdb/rpmdb.c:3411 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3409 +#: rpmdb/rpmdb.c:3413 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3419 +#: rpmdb/rpmdb.c:3423 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3421 +#: rpmdb/rpmdb.c:3425 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" diff --git a/po/zh_CN.GB2312.po b/po/zh_CN.GB2312.po index 3aefd71..f9b7e5a 100644 --- a/po/zh_CN.GB2312.po +++ b/po/zh_CN.GB2312.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2001-11-13 13:56-0500\n" +"POT-Creation-Date: 2001-11-15 13:11-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2363,11 +2363,11 @@ msgstr "" msgid "package %s is not installed\n" msgstr "" -#: lib/rpmal.c:647 +#: lib/rpmal.c:673 msgid "(added files)" msgstr "" -#: lib/rpmal.c:744 +#: lib/rpmal.c:770 msgid "(added provide)" msgstr "" @@ -2777,18 +2777,18 @@ msgstr "" msgid "Signature: UNKNOWN (%d)\n" msgstr "" -#: lib/transaction.c:185 +#: lib/transaction.c:182 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:850 +#: lib/transaction.c:981 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:918 +#: lib/transaction.c:1071 msgid "getting list of mounted filesystems\n" msgstr "" @@ -2963,150 +2963,150 @@ msgstr "" msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:383 +#: rpmdb/rpmdb.c:387 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:405 +#: rpmdb/rpmdb.c:409 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:497 +#: rpmdb/rpmdb.c:501 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:628 +#: rpmdb/rpmdb.c:632 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:638 +#: rpmdb/rpmdb.c:642 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:902 +#: rpmdb/rpmdb.c:906 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1046 +#: rpmdb/rpmdb.c:1050 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1311 +#: rpmdb/rpmdb.c:1315 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2088 rpmdb/rpmdb.c:3341 +#: rpmdb/rpmdb.c:2092 rpmdb/rpmdb.c:3345 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2141 +#: rpmdb/rpmdb.c:2145 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2411 +#: rpmdb/rpmdb.c:2415 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2483 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2492 +#: rpmdb/rpmdb.c:2496 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2693 +#: rpmdb/rpmdb.c:2697 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2774 +#: rpmdb/rpmdb.c:2778 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2785 +#: rpmdb/rpmdb.c:2789 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3227 +#: rpmdb/rpmdb.c:3231 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3260 +#: rpmdb/rpmdb.c:3264 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3287 +#: rpmdb/rpmdb.c:3291 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3295 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3297 +#: rpmdb/rpmdb.c:3301 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3299 +#: rpmdb/rpmdb.c:3303 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3306 +#: rpmdb/rpmdb.c:3310 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3317 +#: rpmdb/rpmdb.c:3321 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3381 +#: rpmdb/rpmdb.c:3385 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3399 +#: rpmdb/rpmdb.c:3403 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3407 +#: rpmdb/rpmdb.c:3411 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3409 +#: rpmdb/rpmdb.c:3413 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3419 +#: rpmdb/rpmdb.c:3423 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3421 +#: rpmdb/rpmdb.c:3425 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" diff --git a/rpm.spec b/rpm.spec index 81ed468..5e8f436 100644 --- a/rpm.spec +++ b/rpm.spec @@ -578,3 +578,4 @@ fi - lclint rpmio fiddles. - split file info tag sets into rpmfi.c. - create toy TFI_t iterators. +- tweak overlapped file fingerprint retrieval for speed. diff --git a/rpm.spec.in b/rpm.spec.in index fd3d4f6..2b1d7ff 100644 --- a/rpm.spec.in +++ b/rpm.spec.in @@ -578,3 +578,4 @@ fi - lclint rpmio fiddles. - split file info tag sets into rpmfi.c. - create toy TFI_t iterators. +- tweak overlapped file fingerprint retrieval for speed. diff --git a/rpmdb/dbconfig.c b/rpmdb/dbconfig.c index 83f3966..8625f4c 100644 --- a/rpmdb/dbconfig.c +++ b/rpmdb/dbconfig.c @@ -503,6 +503,7 @@ dbiIndex db3New(rpmdb rpmdb, int rpmtag) } /*@=sizeoftype@*/ + dbi->dbi_byteswapped = 0; /* -1 unknown, 0 native order, 1 alien order */ dbi->dbi_use_cursors = 1; /* db3 cursors are always used now. */ if (!dbi->dbi_use_dbenv) { /* db3 dbenv is always used now. */ diff --git a/rpmdb/rpmdb.c b/rpmdb/rpmdb.c index d7c1213..a6d99d4 100644 --- a/rpmdb/rpmdb.c +++ b/rpmdb/rpmdb.c @@ -182,7 +182,11 @@ fprintf(stderr, " Sync %s\n", tagName(dbi->dbi_rpmtag)); INLINE int dbiByteSwapped(dbiIndex dbi) { - return (*dbi->dbi_vec->byteswapped) (dbi); +/*@-mods@*/ /* FIX: shrug */ + if (dbi->dbi_byteswapped == -1) + dbi->dbi_byteswapped = (*dbi->dbi_vec->byteswapped) (dbi); +/*@=mods@*/ + return dbi->dbi_byteswapped; } INLINE int dbiCopen(dbiIndex dbi, /*@out@*/ DBC ** dbcp, unsigned int flags) diff --git a/rpmdb/rpmdb.h b/rpmdb/rpmdb.h index d6fccff..5b88438 100644 --- a/rpmdb/rpmdb.h +++ b/rpmdb/rpmdb.h @@ -226,6 +226,7 @@ struct _dbiIndex { int dbi_lockdbfd; /*!< do fcntl lock on db fd */ int dbi_temporary; /*!< non-persistent */ int dbi_debug; + int dbi_byteswapped; /*@null@*/ char * dbi_host; long dbi_cl_timeout;