- use array of pointers rather than contiguous array for ts->order.

CVS patchset: 5186
CVS date: 2001/11/16 22:42:19
This commit is contained in:
jbj 2001-11-16 22:42:19 +00:00
parent bf2a991c67
commit 7d44f13395
40 changed files with 1117 additions and 1089 deletions

View File

@ -63,6 +63,7 @@
- tweak overlapped file fingerprint retrieval for speed.
- transaction.c: use wrappers/iterators to access TFI_t.
- annotations to make a transactionElement opaque.
- use array of pointers rather than contiguous array for ts->order.
4.0.3 -> 4.0.4:

View File

@ -355,18 +355,16 @@ static int removePackage(rpmTransactionSet ts, Header h, int dboffset,
sizeof(*ts->removedPackages), intcmp);
}
/*@-type -abstract@*/
if (ts->orderCount >= ts->orderAlloced) {
ts->orderAlloced += (ts->orderCount - ts->orderAlloced) + ts->delta;
/*@-type +voidabstract @*/
ts->order = xrealloc(ts->order, sizeof(*ts->order) * ts->orderAlloced);
/*@=type =voidabstract @*/
}
p = ts->order + ts->orderCount;
p = ts->order[ts->orderCount] = teNew();
ts->orderCount++;
memset(p, 0, sizeof(*p));
/*@=type =abstract@*/
/* XXX FIXME: what should a TR_REMOVED key be ??? */
addTE(ts, p, h, NULL, NULL);
@ -403,9 +401,12 @@ int rpmtransAddPackage(rpmTransactionSet ts, Header h,
*/
add = dsThis(h, RPMTAG_REQUIRENAME, (RPMSENSE_EQUAL|RPMSENSE_LESS));
pkgKey = RPMAL_NOMATCH;
pi = teInitIterator(ts);
/* XXX Only added packages need be checked for dupes. */
while ((p = teNext(pi, TR_ADDED)) != NULL) {
for (pi = teInitIterator(ts), oc = 0; (p = teNextIterator(pi)) != NULL; oc++) {
/* XXX Only added packages need be checked for dupes. */
if (teGetType(p) == TR_REMOVED)
continue;
/*@-type@*/
rc = dsCompare(add, p->this);
/*@=type@*/
@ -425,30 +426,29 @@ int rpmtransAddPackage(rpmTransactionSet ts, Header h,
}
pi = teFreeIterator(pi);
add = dsFree(add);
/*@-abstract@*/
oc = (p != NULL ? (p - ts->order) : ts->orderCount);
/*@=abstract@*/
isSource = headerIsEntry(h, RPMTAG_SOURCEPACKAGE);
if (p != NULL && duplicate && oc < ts->orderCount) {
/* XXX FIXME removed transaction element side effects need to be weeded */
delTE(p);
/*@-type -unqualifiedtrans@*/
ts->order[oc] = teFree(ts->order[oc]);
/*@=type =unqualifiedtrans@*/
}
/*@-type@*/ /* FIX: transactionElement not opaque */
/*@-abstract@*/
if (oc >= ts->orderAlloced) {
ts->orderAlloced += (oc - ts->orderAlloced) + ts->delta;
/*@-type +voidabstract @*/
ts->order = xrealloc(ts->order, ts->orderAlloced * sizeof(*ts->order));
/*@=type =voidabstract @*/
}
p = ts->order + oc;
memset(p, 0, sizeof(*p)); /* XXX trash and burn */
/*@=abstract@*/
p = ts->order[oc] = teNew();
addTE(ts, p, h, key, relocs);
/*@-type@*/ /* FIX: transactionElement not opaque */
p->type = TR_ADDED;
pkgKey = alAddPackage(ts->addedPackages, pkgKey, p->key,
p->provides, p->fi);
@ -485,6 +485,7 @@ int rpmtransAddPackage(rpmTransactionSet ts, Header h,
if (!duplicate) {
ts->numAddedPackages++;
/* XXX FIXME: there's a chance of a memory leak with the late increment */
ts->orderCount++;
}
@ -501,7 +502,6 @@ int rpmtransAddPackage(rpmTransactionSet ts, Header h,
goto exit;
}
/* XXX WARNING: nothing below can access *p as t->order may be realloc'd */
name = teGetN(p);
{ rpmdbMatchIterator mi;
@ -522,9 +522,6 @@ int rpmtransAddPackage(rpmTransactionSet ts, Header h,
if (oldmultiLibMask && multiLibMask
&& !(oldmultiLibMask & multiLibMask))
{
/*@-abstract@*/
p = ts->order + oc;
/*@=abstract@*/
/*@-type@*/ /* FIX: transactionElement not opaque */
p->multiLib = multiLibMask;
/*@=type@*/
@ -535,9 +532,6 @@ int rpmtransAddPackage(rpmTransactionSet ts, Header h,
mi = rpmdbFreeIterator(mi);
}
/*@-abstract@*/
p = ts->order + oc;
/*@=abstract@*/
/*@-type@*/ /* FIX: transactionElement not opaque */
obsoletes = dsiInit(rpmdsLink(p->obsoletes, "Obsoletes"));
/*@=type@*/
@ -617,6 +611,7 @@ rpmTransactionSet rpmtransFree(rpmTransactionSet ts)
{
if (ts) {
teIterator pi; transactionElement p;
int oc;
(void) rpmtsUnlink(ts, "tsCreate");
@ -625,18 +620,21 @@ rpmTransactionSet rpmtransFree(rpmTransactionSet ts)
return NULL;
pi = teInitIterator(ts);
while ((p = teNextIterator(pi)) != NULL) {
for (pi = teInitIterator(ts), oc = 0; (p = teNextIterator(pi)) != NULL; oc++) {
delTE(p);
/*@-type -unqualifiedtrans @*/
ts->order[oc] = teFree(ts->order[oc]);
/*@=type =unqualifiedtrans @*/
}
pi = teFreeIterator(pi);
/*@-type +voidabstract @*/
ts->order = _free(ts->order);
/*@=type =voidabstract @*/
ts->addedPackages = alFree(ts->addedPackages);
ts->availablePackages = alFree(ts->availablePackages);
ts->di = _free(ts->di);
ts->removedPackages = _free(ts->removedPackages);
/*@-type@*/ /* FIX: transactionElement not opaque */
ts->order = _free(ts->order);
/*@=type@*/
if (ts->scriptFd != NULL) {
ts->scriptFd =
fdFree(ts->scriptFd, "rpmtransSetScriptFd (rpmtransFree");
@ -1246,13 +1244,15 @@ fprintf(stderr, "addRelation: pkgKey %ld\n", (long)pkgKey);
/* XXX Set q to the added package that has pkgKey == q->u.addedKey */
/* XXX FIXME: bsearch is possible/needed here */
qi = teInitIterator(ts);
while ((q = teNext(qi, TR_ADDED)) != NULL) {
for (qi = teInitIterator(ts), i = 0; (q = teNextIterator(qi)) != NULL; i++) {
/* XXX Only added packages need be checked for matches. */
if (teGetType(q) == TR_REMOVED)
continue;
if (pkgKey == teGetAddedKey(q))
break;
}
qi = teFreeIterator(qi);
if (q == NULL)
if (q == NULL || i == ts->orderCount)
return 0;
#if defined(DEPENDENCY_WHITEOUT)
@ -1261,14 +1261,10 @@ fprintf(stderr, "addRelation: pkgKey %ld\n", (long)pkgKey);
return 0;
#endif
/*@-type -abstract@*/
i = q - ts->order;
/*@=type =abstract@*/
/*@-nullpass -nullderef -type -abstract@*/
/*@-nullpass -nullderef -formattype@*/
if (_te_debug)
fprintf(stderr, "addRelation: q %p(%s) from %p[%d:%d]\n", q, teGetN(q), ts->order, i, ts->orderCount);
/*@=nullpass =nullderef =type =abstract@*/
/*@=nullpass =nullderef =formattype@*/
/* Avoid redundant relations. */
/* XXX TODO: add control bit. */
@ -1389,8 +1385,7 @@ int rpmdepOrder(rpmTransactionSet ts)
int orderingCount = 0;
unsigned char * selected = alloca(sizeof(*selected) * (ts->orderCount + 1));
int loopcheck;
/*@exposed@*/
transactionElement newOrder;
transactionElement * newOrder;
int newOrderCount = 0;
orderListIndex orderList;
int nrescans = 10;
@ -1400,10 +1395,10 @@ int rpmdepOrder(rpmTransactionSet ts)
alMakeIndex(ts->addedPackages);
/*@-modfilesystem -nullpass -type -abstract@*/
/*@-modfilesystem -nullpass -formattype@*/
if (_te_debug)
fprintf(stderr, "*** rpmdepOrder(%p) order %p[%d]\n", ts, ts->order, ts->orderCount);
/*@=modfilesystem =nullpass =type =abstract@*/
/*@=modfilesystem =nullpass =formattype@*/
/* T1. Initialize. */
loopcheck = numAddedPackages; /* XXX TR_ADDED only: should be ts->orderCount */
@ -1709,9 +1704,9 @@ prtTSI(" p", teGetTSI(p));
qsort(orderList, numAddedPackages, sizeof(*orderList), orderListIndexCmp);
/*@-type -abstract @*/ /* FIX: transactionElement not opaque */
/*@-type@*/
newOrder = xcalloc(ts->orderCount, sizeof(*newOrder));
/*@=type =abstract @*/
/*@=type@*/
/*@-branchstate@*/
for (i = 0, newOrderCount = 0; i < orderingCount; i++)
{
@ -1725,42 +1720,37 @@ prtTSI(" p", teGetTSI(p));
if (needle == NULL) continue;
j = needle->orIndex;
/*@-type -abstract -noeffect @*/ /* FIX: transactionElement not opaque */
q = ts->order + j;
newOrder[newOrderCount++] = *q; /* structure assignment */
/*@=type =abstract =noeffect @*/
newOrder[newOrderCount++] = q = ts->order[j];
ts->order[j] = NULL;
for (j = needle->orIndex + 1; j < ts->orderCount; j++) {
/*@-type -abstract -noeffect @*/ /* FIX: transactionElement not opaque */
q = ts->order + j;
if ((q = ts->order[j]) == NULL)
/*@innerbreak@*/ break;
if (teGetType(q) == TR_REMOVED
&& teGetDependsOnKey(q) == needle->pkgKey)
{
newOrder[newOrderCount++] = *q; /* structure assignment */
newOrder[newOrderCount++] = q;
ts->order[j] = NULL;
} else
/*@innerbreak@*/ break;
/*@=type =abstract =noeffect @*/
}
}
/*@=branchstate@*/
/*@-compmempass -usereleased@*/ /* FIX: ts->order[].{NEVR,name} released */
pi = teInitIterator(ts);
/*@=compmempass =usereleased@*/
while ((p = teNext(pi, TR_REMOVED)) != NULL) {
if (teGetDependsOnKey(p) == RPMAL_NOMATCH)
/*@-type -abstract -noeffect @*/ /* FIX: transactionElement not opaque */
newOrder[newOrderCount++] = *p; /* structure assignment */
/*@=type =abstract =noeffect @*/
for (j = 0; j < ts->orderCount; j++) {
if ((p = ts->order[j]) == NULL)
continue;
assert(teGetType(p) == TR_REMOVED);
newOrder[newOrderCount++] = p;
ts->order[j] = NULL;
}
pi = teFreeIterator(pi);
assert(newOrderCount == ts->orderCount);
/*@-type@*/ /* FIX: transactionElement not opaque */
/*@+voidabstract@*/
ts->order = _free(ts->order);
/*@=voidabstract@*/
ts->order = newOrder;
ts->orderAlloced = ts->orderCount;
orderList = _free(orderList);
/*@=type@*/
/* Clean up after dependency checks */
pi = teInitIterator(ts);

View File

@ -64,7 +64,7 @@ struct rpmTransactionSet_s {
int numAvailablePackages; /*!< No. available package instances. */
/*@owned@*/
transactionElement order; /*!< Packages sorted by dependencies. */
transactionElement * order; /*!< Packages sorted by dependencies. */
int orderCount; /*!< No. of transaction elements. */
int orderAlloced; /*!< No. of allocated transaction elements. */

View File

@ -501,7 +501,9 @@ rpmRC rpmInstallSourcePackage(rpmTransactionSet ts,
goto exit;
}
fi->te = ts->order;
/*@-assignexpose@*/
fi->te = ts->order[0];
/*@=assignexpose@*/
/*@i@*/ fi->te->fd = fd;
hge = fi->hge;
hfd = fi->hfd;

View File

@ -17,6 +17,21 @@ int _te_debug = 0;
/*@access transactionElement @*/
/*@access rpmTransactionSet @*/
transactionElement teFree(transactionElement te)
{
if (te != NULL) {
memset(te, 0, sizeof(*te)); /* XXX trash and burn */
te = _free(te);
}
return NULL;
}
transactionElement teNew(void)
{
transactionElement te = xcalloc(1, sizeof(*te));
return te;
}
rpmTransactionType teGetType(transactionElement te)
{
return te->type;
@ -134,7 +149,7 @@ transactionElement teNextIterator(teIterator tei)
tei->ocsave = oc;
/*@-abstract @*/
if (oc != -1)
te = tei->ts->order + oc;
te = tei->ts->order[oc];
/*@=abstract @*/
/*@-compdef -usereleased@*/ /* FIX: ts->order may be released */
return te;

View File

@ -122,6 +122,22 @@ struct teIterator_s {
extern "C" {
#endif
/**
* Destroy a transaction element.
* @param te transaction element
* @return NULL always
*/
/*@null@*/
transactionElement teFree(/*@only@*/ /*@null@*/ transactionElement te)
/*@modifies te@*/;
/**
* Create a transaction element.
* @return new transaction element
*/
/*@only@*/ /*@null@*/
transactionElement teNew(void)
/*@*/;
/**
* Retrieve type of transaction element.
* @param te transaction element

View File

@ -1024,9 +1024,11 @@ TFI_t teiGetFi(const teIterator tei)
if (tei != NULL && tei->ocsave != -1) {
/*@-type -abstract@*/ /* FIX: transactionElement not opaque */
transactionElement te = tei->ts->order + tei->ocsave;
transactionElement te = tei->ts->order[tei->ocsave];
/*@-assignexpose@*/
if ((fi = te->fi) != NULL)
fi->te = te;
/*@=assignexpose@*/
/*@=type =abstract@*/
}
/*@-compdef -refcounttrans -usereleased @*/

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-16 15:03-0500\n"
"POT-Creation-Date: 2001-11-16 17:39-0500\n"
"PO-Revision-Date: 2001-07-24 10:02+0100\n"
"Last-Translator: Milan Kerslager <kerslage@linux.cz>\n"
"Language-Team: Czech <cs@li.org>\n"
@ -831,7 +831,7 @@ msgstr "Nemohu p
msgid "Could not open %s: %s\n"
msgstr "Nemohu otevøít %s: %s\n"
#: build/pack.c:603 lib/psm.c:1424
#: build/pack.c:603 lib/psm.c:1426
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Nemohu zapsat balíèek: %s\n"
@ -861,7 +861,7 @@ msgstr "Nemohu p
msgid "Unable to write payload to %s: %s\n"
msgstr "Nemohu zapsat payload do %s: %s\n"
#: build/pack.c:683 lib/psm.c:1698
#: build/pack.c:683 lib/psm.c:1700
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapsáno: %s\n"
@ -1437,84 +1437,84 @@ msgstr "selhal - "
msgid "cannot open Packages database in %s\n"
msgstr "nemohu otevøít databázi balíèkù v %s\n"
#: lib/depends.c:418
#: lib/depends.c:419
#, fuzzy, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr "balíèek %s je ji¾ nainstalován"
#: lib/depends.c:706
#: lib/depends.c:704
msgid "(cached)"
msgstr ""
#: lib/depends.c:731
#: lib/depends.c:729
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %-45s ANO (rpmrc poskytuje)\n"
#: lib/depends.c:747
#: lib/depends.c:745
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %-45s ANO (rpmlib poskytuje)\n"
#: lib/depends.c:768
#: lib/depends.c:766
#, fuzzy
msgid "(db files)"
msgstr "¹patný db soubor %s\n"
#: lib/depends.c:780
#: lib/depends.c:778
#, fuzzy
msgid "(db provides)"
msgstr "%s: %-45s ANO (db poskytuje)\n"
#: lib/depends.c:793
#: lib/depends.c:791
#, fuzzy
msgid "(db package)"
msgstr "¾ádné balíèky\n"
#: lib/depends.c:832
#: lib/depends.c:830
#, fuzzy, c-format
msgid "%9s: (%s, %s) added to Depends cache.\n"
msgstr "%s: (%s, %s) pøidáno do ke¹e závislostí.\n"
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "NO "
msgstr "NE "
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "YES"
msgstr "ANO"
#: lib/depends.c:1175
#: lib/depends.c:1173
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "odstraòuji %s-%s-%s \"%s\" z tsort relací.\n"
#. Record all relations.
#: lib/depends.c:1420
#: lib/depends.c:1415
msgid "========== recording tsort relations\n"
msgstr "========== ukládání tsort relací\n"
#. T4. Scan for zeroes.
#: lib/depends.c:1496
#: lib/depends.c:1491
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
msgstr ""
"========== tsorting balíèkù (poøadí, #pøedchùdce, #následovník, hloubka)\n"
#: lib/depends.c:1573
#: lib/depends.c:1568
msgid "========== successors only (presentation order)\n"
msgstr "========== pouze úspì¹né (poøadí dle prezentace)\n"
#: lib/depends.c:1633
#: lib/depends.c:1628
msgid "LOOP:\n"
msgstr "SMYÈKA:\n"
#: lib/depends.c:1670
#: lib/depends.c:1665
msgid "========== continuing tsort ...\n"
msgstr "========== pokraèuje tsort ...\n"
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1675
#: lib/depends.c:1670
#, c-format
msgid "rpmdepOrder failed, %d elements remain\n"
msgstr ""
@ -2230,60 +2230,60 @@ msgstr "nemohu zapsat do %%%s %s\n"
msgid "source package expected, binary found\n"
msgstr "oèekávám balíèek se zdrojovými kódy, nalezen v¹ak binární\n"
#: lib/psm.c:603
#: lib/psm.c:605
msgid "source package contains no .spec file\n"
msgstr "zdrojový balíèek neobsahuje .spec soubor\n"
#: lib/psm.c:713
#: lib/psm.c:715
#, fuzzy, c-format
msgid "%s: running %s scriptlet\n"
msgstr "%s: spou¹tím %s skript(y) (pokud existují)\n"
#: lib/psm.c:881
#: lib/psm.c:883
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr "provedení skripletu %s z %s-%s-%s selhalo, návratový kód byl: %s\n"
#: lib/psm.c:888
#: lib/psm.c:890
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr "provedení %s skripletu z %s-%s-%s selhalo, návratový kód: %d\n"
#: lib/psm.c:1230
#: lib/psm.c:1232
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s-%s-%s obsahuje %d souborù, test = %d\n"
#: lib/psm.c:1349
#: lib/psm.c:1351
#, fuzzy, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr "%s: scriptlet %s selhal (%d), pøeskakuji %s-%s-%s\n"
#: lib/psm.c:1466
#: lib/psm.c:1468
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "u¾ivatel %s neexistuje - pou¾it u¾ivatel root\n"
#: lib/psm.c:1475
#: lib/psm.c:1477
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "skupina %s neexistuje - pou¾ita skupina root\n"
#: lib/psm.c:1517
#: lib/psm.c:1519
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "rozbalování archívu selhalo %s%s: %s\n"
#: lib/psm.c:1518
#: lib/psm.c:1520
msgid " on file "
msgstr " na souboru "
#: lib/psm.c:1706
#: lib/psm.c:1708
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "nemohu otevøít %s: %s\n"
#: lib/psm.c:1709
#: lib/psm.c:1711
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s selhalo\n"
@ -2843,7 +2843,7 @@ msgstr "%s p
msgid "excluding directory %s\n"
msgstr "vynechávám adresáø %s\n"
#: lib/transaction.c:1092
#: lib/transaction.c:1094
msgid "getting list of mounted filesystems\n"
msgstr "získávám seznam pøipojených systémù souborù\n"

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-16 15:03-0500\n"
"POT-Creation-Date: 2001-11-16 17:39-0500\n"
"PO-Revision-Date: 2001-04-05 23:03GMT\n"
"Last-Translator: Claus Hindsgaul <claus_h@image.dk>\n"
"Language-Team: Danish <dansk@klid.dk>\n"
@ -828,7 +828,7 @@ msgstr "Kunne ikke l
msgid "Could not open %s: %s\n"
msgstr "Kunne ikke åbne %s: %s\n"
#: build/pack.c:603 lib/psm.c:1424
#: build/pack.c:603 lib/psm.c:1426
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Kunne ikke skrive pakke: %s\n"
@ -858,7 +858,7 @@ msgstr "Kunne ikke l
msgid "Unable to write payload to %s: %s\n"
msgstr "Kunne ikke skrive pakkeindhold til %s: %s\n"
#: build/pack.c:683 lib/psm.c:1698
#: build/pack.c:683 lib/psm.c:1700
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrev: %s\n"
@ -1438,84 +1438,84 @@ msgstr " mislykkedes - "
msgid "cannot open Packages database in %s\n"
msgstr "kunne ikke åbne Packages-database i %s\n"
#: lib/depends.c:418
#: lib/depends.c:419
#, fuzzy, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr "pakken %s er allerede installeret"
#: lib/depends.c:706
#: lib/depends.c:704
msgid "(cached)"
msgstr ""
#: lib/depends.c:731
#: lib/depends.c:729
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %-45s JA (rpmrc tilfører)\n"
#: lib/depends.c:747
#: lib/depends.c:745
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %-45s JA (rpmlib tilfører)\n"
#: lib/depends.c:768
#: lib/depends.c:766
#, fuzzy
msgid "(db files)"
msgstr "ugyldig db-fil %s\n"
#: lib/depends.c:780
#: lib/depends.c:778
#, fuzzy
msgid "(db provides)"
msgstr "%s: %-45s JA (db tilfører)\n"
#: lib/depends.c:793
#: lib/depends.c:791
#, fuzzy
msgid "(db package)"
msgstr "ingen pakker\n"
#: lib/depends.c:832
#: lib/depends.c:830
#, fuzzy, c-format
msgid "%9s: (%s, %s) added to Depends cache.\n"
msgstr "%s: (%s, %s) tilføjet til afhængigheds-buffer.\n"
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
#, fuzzy
msgid "NO "
msgstr "IKKE O.K."
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "YES"
msgstr ""
#: lib/depends.c:1175
#: lib/depends.c:1173
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "fjerne %s-%s-%s \"%s\" fra tsort-relationer.\n"
#. Record all relations.
#: lib/depends.c:1420
#: lib/depends.c:1415
msgid "========== recording tsort relations\n"
msgstr "========== gemmer tsort-relationer\n"
#. T4. Scan for zeroes.
#: lib/depends.c:1496
#: lib/depends.c:1491
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
msgstr ""
#: lib/depends.c:1573
#: lib/depends.c:1568
msgid "========== successors only (presentation order)\n"
msgstr "========== kun efterfølgere (præsentationsrækkefølge)\n"
#: lib/depends.c:1633
#: lib/depends.c:1628
msgid "LOOP:\n"
msgstr "LØKKE:\n"
#: lib/depends.c:1670
#: lib/depends.c:1665
msgid "========== continuing tsort ...\n"
msgstr "========== fortsætter tsort ...\n"
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1675
#: lib/depends.c:1670
#, c-format
msgid "rpmdepOrder failed, %d elements remain\n"
msgstr ""
@ -2249,62 +2249,62 @@ msgstr "kunne ikke skrive til %s\n"
msgid "source package expected, binary found\n"
msgstr "kildepakke forventet, binær fundet\n"
#: lib/psm.c:603
#: lib/psm.c:605
msgid "source package contains no .spec file\n"
msgstr "kildepakke indeholder ingen .spec-fil\n"
#: lib/psm.c:713
#: lib/psm.c:715
#, fuzzy, c-format
msgid "%s: running %s scriptlet\n"
msgstr "kører postinstallations-skript (hvis det findes)\n"
#: lib/psm.c:881
#: lib/psm.c:883
#, fuzzy, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr ""
"kørsel af småskriptet %s fra %s-%s-%s mislykkedes, afslutningsstatus %d\n"
#: lib/psm.c:888
#: lib/psm.c:890
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr ""
"kørsel af småskriptet %s fra %s-%s-%s mislykkedes, afslutningsstatus %d\n"
#: lib/psm.c:1230
#: lib/psm.c:1232
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "pakke: %s-%s-%s filer test = %d\n"
#: lib/psm.c:1349
#: lib/psm.c:1351
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1466
#: lib/psm.c:1468
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "bruger %s eksisterer ikke - bruger root\n"
#: lib/psm.c:1475
#: lib/psm.c:1477
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "gruppe %s eksisterer ikke - bruger root\n"
#: lib/psm.c:1517
#: lib/psm.c:1519
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "udpakning af arkiv mislykkedes%s%s: %s\n"
#: lib/psm.c:1518
#: lib/psm.c:1520
msgid " on file "
msgstr " for fil "
#: lib/psm.c:1706
#: lib/psm.c:1708
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "kunne ikke åbne %s: %s\n"
#: lib/psm.c:1709
#: lib/psm.c:1711
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s mislykkedes\n"
@ -2865,7 +2865,7 @@ msgstr "%s oversprunget grundet manglende ok-flag\n"
msgid "excluding directory %s\n"
msgstr "ekskluderer kataloget %s\n"
#: lib/transaction.c:1092
#: lib/transaction.c:1094
msgid "getting list of mounted filesystems\n"
msgstr "henter liste over monterede filsystemer\n"

View File

@ -37,7 +37,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-16 15:03-0500\n"
"POT-Creation-Date: 2001-11-16 17:39-0500\n"
"PO-Revision-Date: 1998-08-03 18:02+02:00\n"
"Last-Translator: Karl Eichwalder <ke@SuSE.DE>\n"
"Language-Team: German <de@li.org>\n"
@ -921,7 +921,7 @@ msgid "Could not open %s: %s\n"
msgstr "Öffnen von %s fehlgeschlagen\n"
# , c-format
#: build/pack.c:603 lib/psm.c:1424
#: build/pack.c:603 lib/psm.c:1426
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "Nicht möglich %s zu schreiben"
@ -956,7 +956,7 @@ msgstr "Nicht m
msgid "Unable to write payload to %s: %s\n"
msgstr "Nicht möglich %s zu schreiben"
#: build/pack.c:683 lib/psm.c:1698
#: build/pack.c:683 lib/psm.c:1700
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1573,85 +1573,85 @@ msgstr "pgp fehlgeschlagen"
msgid "cannot open Packages database in %s\n"
msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n"
#: lib/depends.c:418
#: lib/depends.c:419
#, fuzzy, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr "Paket %s ist nicht installiert\n"
#: lib/depends.c:706
#: lib/depends.c:704
msgid "(cached)"
msgstr ""
#: lib/depends.c:731
#: lib/depends.c:729
#, fuzzy
msgid "(rpmrc provides)"
msgstr "die Datei »%s« gehört zu keinem Paket\n"
#: lib/depends.c:747
#: lib/depends.c:745
#, fuzzy
msgid "(rpmlib provides)"
msgstr "die Datei »%s« gehört zu keinem Paket\n"
# , c-format
#: lib/depends.c:768
#: lib/depends.c:766
#, fuzzy
msgid "(db files)"
msgstr "Öffnen von %s fehlgeschlagen: %s"
#: lib/depends.c:780
#: lib/depends.c:778
#, fuzzy
msgid "(db provides)"
msgstr "die Datei »%s« gehört zu keinem Paket\n"
#: lib/depends.c:793
#: lib/depends.c:791
#, fuzzy
msgid "(db package)"
msgstr "Anfrage an alle Pakete"
#: lib/depends.c:832
#: lib/depends.c:830
#, fuzzy, c-format
msgid "%9s: (%s, %s) added to Depends cache.\n"
msgstr "die Datei »%s« gehört zu keinem Paket\n"
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "NO "
msgstr ""
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "YES"
msgstr ""
# FIXME
#: lib/depends.c:1175
#: lib/depends.c:1173
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "Fehler beim Löschen des Eintrags %s nach %s"
#. Record all relations.
#: lib/depends.c:1420
#: lib/depends.c:1415
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1496
#: lib/depends.c:1491
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
msgstr ""
#: lib/depends.c:1573
#: lib/depends.c:1568
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1633
#: lib/depends.c:1628
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1670
#: lib/depends.c:1665
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1675
#: lib/depends.c:1670
#, c-format
msgid "rpmdepOrder failed, %d elements remain\n"
msgstr ""
@ -2421,63 +2421,63 @@ msgstr "kann Datei %s nicht
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:603
#: lib/psm.c:605
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
#: lib/psm.c:713
#: lib/psm.c:715
#, fuzzy, c-format
msgid "%s: running %s scriptlet\n"
msgstr "Keine Stufen ausführen"
#: lib/psm.c:881
#: lib/psm.c:883
#, fuzzy, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr "Ausführung des Skripts fehlgeschlagen"
#: lib/psm.c:888
#: lib/psm.c:890
#, fuzzy, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr "Ausführung des Skripts fehlgeschlagen"
# FIXME shared, besser: "mit anderen geteilte ..."
#: lib/psm.c:1230
#: lib/psm.c:1232
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
#: lib/psm.c:1349
#: lib/psm.c:1351
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1466
#: lib/psm.c:1468
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1475
#: lib/psm.c:1477
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
#: lib/psm.c:1517
#: lib/psm.c:1519
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "öffnen von %s fehlgeschlagen: %s\n"
#: lib/psm.c:1518
#: lib/psm.c:1520
msgid " on file "
msgstr ""
# , c-format
#: lib/psm.c:1706
#: lib/psm.c:1708
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
#: lib/psm.c:1709
#: lib/psm.c:1711
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "pgp fehlgeschlagen"
@ -3060,7 +3060,7 @@ msgstr ""
msgid "excluding directory %s\n"
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
#: lib/transaction.c:1092
#: lib/transaction.c:1094
msgid "getting list of mounted filesystems\n"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-16 15:03-0500\n"
"POT-Creation-Date: 2001-11-16 17:39-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -816,7 +816,7 @@ msgstr ""
msgid "Could not open %s: %s\n"
msgstr ""
#: build/pack.c:603 lib/psm.c:1424
#: build/pack.c:603 lib/psm.c:1426
#, c-format
msgid "Unable to write package: %s\n"
msgstr ""
@ -846,7 +846,7 @@ msgstr ""
msgid "Unable to write payload to %s: %s\n"
msgstr ""
#: build/pack.c:683 lib/psm.c:1698
#: build/pack.c:683 lib/psm.c:1700
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1415,78 +1415,78 @@ msgstr ""
msgid "cannot open Packages database in %s\n"
msgstr ""
#: lib/depends.c:418
#: lib/depends.c:419
#, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr ""
#: lib/depends.c:706
#: lib/depends.c:704
msgid "(cached)"
msgstr ""
#: lib/depends.c:731
#: lib/depends.c:729
msgid "(rpmrc provides)"
msgstr ""
#: lib/depends.c:747
#: lib/depends.c:745
msgid "(rpmlib provides)"
msgstr ""
#: lib/depends.c:768
#: lib/depends.c:766
msgid "(db files)"
msgstr ""
#: lib/depends.c:780
#: lib/depends.c:778
msgid "(db provides)"
msgstr ""
#: lib/depends.c:793
#: lib/depends.c:791
msgid "(db package)"
msgstr ""
#: lib/depends.c:832
#: lib/depends.c:830
#, c-format
msgid "%9s: (%s, %s) added to Depends cache.\n"
msgstr ""
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "NO "
msgstr ""
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "YES"
msgstr ""
#: lib/depends.c:1175
#: lib/depends.c:1173
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1420
#: lib/depends.c:1415
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1496
#: lib/depends.c:1491
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
msgstr ""
#: lib/depends.c:1573
#: lib/depends.c:1568
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1633
#: lib/depends.c:1628
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1670
#: lib/depends.c:1665
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1675
#: lib/depends.c:1670
#, c-format
msgid "rpmdepOrder failed, %d elements remain\n"
msgstr ""
@ -2183,60 +2183,60 @@ msgstr ""
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:603
#: lib/psm.c:605
msgid "source package contains no .spec file\n"
msgstr ""
#: lib/psm.c:713
#: lib/psm.c:715
#, c-format
msgid "%s: running %s scriptlet\n"
msgstr ""
#: lib/psm.c:881
#: lib/psm.c:883
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr ""
#: lib/psm.c:888
#: lib/psm.c:890
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1230
#: lib/psm.c:1232
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:1349
#: lib/psm.c:1351
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1466
#: lib/psm.c:1468
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1475
#: lib/psm.c:1477
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1517
#: lib/psm.c:1519
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:1518
#: lib/psm.c:1520
msgid " on file "
msgstr ""
#: lib/psm.c:1706
#: lib/psm.c:1708
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
#: lib/psm.c:1709
#: lib/psm.c:1711
#, c-format
msgid "%s failed: %s\n"
msgstr ""
@ -2788,7 +2788,7 @@ msgstr ""
msgid "excluding directory %s\n"
msgstr ""
#: lib/transaction.c:1092
#: lib/transaction.c:1094
msgid "getting list of mounted filesystems\n"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-16 15:03-0500\n"
"POT-Creation-Date: 2001-11-16 17:39-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -816,7 +816,7 @@ msgstr ""
msgid "Could not open %s: %s\n"
msgstr ""
#: build/pack.c:603 lib/psm.c:1424
#: build/pack.c:603 lib/psm.c:1426
#, c-format
msgid "Unable to write package: %s\n"
msgstr ""
@ -846,7 +846,7 @@ msgstr ""
msgid "Unable to write payload to %s: %s\n"
msgstr ""
#: build/pack.c:683 lib/psm.c:1698
#: build/pack.c:683 lib/psm.c:1700
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1415,78 +1415,78 @@ msgstr ""
msgid "cannot open Packages database in %s\n"
msgstr ""
#: lib/depends.c:418
#: lib/depends.c:419
#, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr ""
#: lib/depends.c:706
#: lib/depends.c:704
msgid "(cached)"
msgstr ""
#: lib/depends.c:731
#: lib/depends.c:729
msgid "(rpmrc provides)"
msgstr ""
#: lib/depends.c:747
#: lib/depends.c:745
msgid "(rpmlib provides)"
msgstr ""
#: lib/depends.c:768
#: lib/depends.c:766
msgid "(db files)"
msgstr ""
#: lib/depends.c:780
#: lib/depends.c:778
msgid "(db provides)"
msgstr ""
#: lib/depends.c:793
#: lib/depends.c:791
msgid "(db package)"
msgstr ""
#: lib/depends.c:832
#: lib/depends.c:830
#, c-format
msgid "%9s: (%s, %s) added to Depends cache.\n"
msgstr ""
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "NO "
msgstr ""
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "YES"
msgstr ""
#: lib/depends.c:1175
#: lib/depends.c:1173
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1420
#: lib/depends.c:1415
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1496
#: lib/depends.c:1491
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
msgstr ""
#: lib/depends.c:1573
#: lib/depends.c:1568
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1633
#: lib/depends.c:1628
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1670
#: lib/depends.c:1665
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1675
#: lib/depends.c:1670
#, c-format
msgid "rpmdepOrder failed, %d elements remain\n"
msgstr ""
@ -2183,60 +2183,60 @@ msgstr ""
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:603
#: lib/psm.c:605
msgid "source package contains no .spec file\n"
msgstr ""
#: lib/psm.c:713
#: lib/psm.c:715
#, c-format
msgid "%s: running %s scriptlet\n"
msgstr ""
#: lib/psm.c:881
#: lib/psm.c:883
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr ""
#: lib/psm.c:888
#: lib/psm.c:890
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1230
#: lib/psm.c:1232
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:1349
#: lib/psm.c:1351
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1466
#: lib/psm.c:1468
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1475
#: lib/psm.c:1477
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1517
#: lib/psm.c:1519
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:1518
#: lib/psm.c:1520
msgid " on file "
msgstr ""
#: lib/psm.c:1706
#: lib/psm.c:1708
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
#: lib/psm.c:1709
#: lib/psm.c:1711
#, c-format
msgid "%s failed: %s\n"
msgstr ""
@ -2788,7 +2788,7 @@ msgstr ""
msgid "excluding directory %s\n"
msgstr ""
#: lib/transaction.c:1092
#: lib/transaction.c:1094
msgid "getting list of mounted filesystems\n"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-16 15:03-0500\n"
"POT-Creation-Date: 2001-11-16 17:39-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -816,7 +816,7 @@ msgstr ""
msgid "Could not open %s: %s\n"
msgstr ""
#: build/pack.c:603 lib/psm.c:1424
#: build/pack.c:603 lib/psm.c:1426
#, c-format
msgid "Unable to write package: %s\n"
msgstr ""
@ -846,7 +846,7 @@ msgstr ""
msgid "Unable to write payload to %s: %s\n"
msgstr ""
#: build/pack.c:683 lib/psm.c:1698
#: build/pack.c:683 lib/psm.c:1700
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1415,78 +1415,78 @@ msgstr ""
msgid "cannot open Packages database in %s\n"
msgstr ""
#: lib/depends.c:418
#: lib/depends.c:419
#, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr ""
#: lib/depends.c:706
#: lib/depends.c:704
msgid "(cached)"
msgstr ""
#: lib/depends.c:731
#: lib/depends.c:729
msgid "(rpmrc provides)"
msgstr ""
#: lib/depends.c:747
#: lib/depends.c:745
msgid "(rpmlib provides)"
msgstr ""
#: lib/depends.c:768
#: lib/depends.c:766
msgid "(db files)"
msgstr ""
#: lib/depends.c:780
#: lib/depends.c:778
msgid "(db provides)"
msgstr ""
#: lib/depends.c:793
#: lib/depends.c:791
msgid "(db package)"
msgstr ""
#: lib/depends.c:832
#: lib/depends.c:830
#, c-format
msgid "%9s: (%s, %s) added to Depends cache.\n"
msgstr ""
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "NO "
msgstr ""
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "YES"
msgstr ""
#: lib/depends.c:1175
#: lib/depends.c:1173
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1420
#: lib/depends.c:1415
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1496
#: lib/depends.c:1491
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
msgstr ""
#: lib/depends.c:1573
#: lib/depends.c:1568
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1633
#: lib/depends.c:1628
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1670
#: lib/depends.c:1665
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1675
#: lib/depends.c:1670
#, c-format
msgid "rpmdepOrder failed, %d elements remain\n"
msgstr ""
@ -2183,60 +2183,60 @@ msgstr ""
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:603
#: lib/psm.c:605
msgid "source package contains no .spec file\n"
msgstr ""
#: lib/psm.c:713
#: lib/psm.c:715
#, c-format
msgid "%s: running %s scriptlet\n"
msgstr ""
#: lib/psm.c:881
#: lib/psm.c:883
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr ""
#: lib/psm.c:888
#: lib/psm.c:890
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1230
#: lib/psm.c:1232
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:1349
#: lib/psm.c:1351
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1466
#: lib/psm.c:1468
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1475
#: lib/psm.c:1477
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1517
#: lib/psm.c:1519
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:1518
#: lib/psm.c:1520
msgid " on file "
msgstr ""
#: lib/psm.c:1706
#: lib/psm.c:1708
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
#: lib/psm.c:1709
#: lib/psm.c:1711
#, c-format
msgid "%s failed: %s\n"
msgstr ""
@ -2788,7 +2788,7 @@ msgstr ""
msgid "excluding directory %s\n"
msgstr ""
#: lib/transaction.c:1092
#: lib/transaction.c:1094
msgid "getting list of mounted filesystems\n"
msgstr ""

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-16 15:03-0500\n"
"POT-Creation-Date: 2001-11-16 17:39-0500\n"
"Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
"Language-Team: Finnish <linux@sot.com>\n"
"Content-Type: text/plain; charset=\n"
@ -835,7 +835,7 @@ msgstr "%s:n kirjoitus ei onnistu"
msgid "Could not open %s: %s\n"
msgstr "%s:n avaus epäonnistui\n"
#: build/pack.c:603 lib/psm.c:1424
#: build/pack.c:603 lib/psm.c:1426
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "%s:n kirjoitus ei onnistu"
@ -865,7 +865,7 @@ msgstr "%s:n kirjoitus ei onnistu"
msgid "Unable to write payload to %s: %s\n"
msgstr "%s:n kirjoitus ei onnistu"
#: build/pack.c:683 lib/psm.c:1698
#: build/pack.c:683 lib/psm.c:1700
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1456,83 +1456,83 @@ msgstr "pgp ep
msgid "cannot open Packages database in %s\n"
msgstr "virhe: en voi avata %s%s/packages.rpm\n"
#: lib/depends.c:418
#: lib/depends.c:419
#, fuzzy, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr "paketti %s ei ole asennettu\n"
#: lib/depends.c:706
#: lib/depends.c:704
msgid "(cached)"
msgstr ""
#: lib/depends.c:731
#: lib/depends.c:729
#, fuzzy
msgid "(rpmrc provides)"
msgstr "tiedostoa %s ei omista mikään paketti\n"
#: lib/depends.c:747
#: lib/depends.c:745
#, fuzzy
msgid "(rpmlib provides)"
msgstr "tiedostoa %s ei omista mikään paketti\n"
#: lib/depends.c:768
#: lib/depends.c:766
#, fuzzy
msgid "(db files)"
msgstr "en voinut avata %s: %s"
#: lib/depends.c:780
#: lib/depends.c:778
#, fuzzy
msgid "(db provides)"
msgstr "tiedostoa %s ei omista mikään paketti\n"
#: lib/depends.c:793
#: lib/depends.c:791
#, fuzzy
msgid "(db package)"
msgstr "kysele kaikki paketit"
#: lib/depends.c:832
#: lib/depends.c:830
#, fuzzy, c-format
msgid "%9s: (%s, %s) added to Depends cache.\n"
msgstr "tiedostoa %s ei omista mikään paketti\n"
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "NO "
msgstr ""
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "YES"
msgstr ""
#: lib/depends.c:1175
#: lib/depends.c:1173
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "virhe poistettaessa tietuetta %s %s:stä"
#. Record all relations.
#: lib/depends.c:1420
#: lib/depends.c:1415
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1496
#: lib/depends.c:1491
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
msgstr ""
#: lib/depends.c:1573
#: lib/depends.c:1568
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1633
#: lib/depends.c:1628
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1670
#: lib/depends.c:1665
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1675
#: lib/depends.c:1670
#, c-format
msgid "rpmdepOrder failed, %d elements remain\n"
msgstr ""
@ -2283,61 +2283,61 @@ msgstr "en voinut avata tiedostoa %s: "
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:603
#: lib/psm.c:605
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
#: lib/psm.c:713
#: lib/psm.c:715
#, fuzzy, c-format
msgid "%s: running %s scriptlet\n"
msgstr "älä suorita mitään vaiheita"
#: lib/psm.c:881
#: lib/psm.c:883
#, fuzzy, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr "skriptin ajo epäonnistui"
#: lib/psm.c:888
#: lib/psm.c:890
#, fuzzy, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr "skriptin ajo epäonnistui"
#: lib/psm.c:1230
#: lib/psm.c:1232
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "paketti %s-%s-%s sisältää jaettuja tiedostoja\n"
#: lib/psm.c:1349
#: lib/psm.c:1351
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1466
#: lib/psm.c:1468
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1475
#: lib/psm.c:1477
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "ryhmässä %s ei ole paketteja\n"
#: lib/psm.c:1517
#: lib/psm.c:1519
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "%s:n avaus ei onnistunut: %s\n"
#: lib/psm.c:1518
#: lib/psm.c:1520
msgid " on file "
msgstr ""
#: lib/psm.c:1706
#: lib/psm.c:1708
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "en voinut avata %s: %s"
#: lib/psm.c:1709
#: lib/psm.c:1711
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "pgp epäonnistui"
@ -2912,7 +2912,7 @@ msgstr ""
msgid "excluding directory %s\n"
msgstr "virhe luotaessa hakemistoa %s: %s"
#: lib/transaction.c:1092
#: lib/transaction.c:1094
msgid "getting list of mounted filesystems\n"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-16 15:03-0500\n"
"POT-Creation-Date: 2001-11-16 17:39-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -870,7 +870,7 @@ msgstr "impossible d'ouvrir: %s\n"
msgid "Could not open %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: build/pack.c:603 lib/psm.c:1424
#: build/pack.c:603 lib/psm.c:1426
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "impossible d'ouvrir: %s\n"
@ -900,7 +900,7 @@ msgstr "impossible d'ouvrir: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: build/pack.c:683 lib/psm.c:1698
#: build/pack.c:683 lib/psm.c:1700
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1496,80 +1496,80 @@ msgstr "La construction a chou.\n"
msgid "cannot open Packages database in %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: lib/depends.c:418
#: lib/depends.c:419
#, fuzzy, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr "aucun package n'a t spcifi pour l'installation"
#: lib/depends.c:706
#: lib/depends.c:704
msgid "(cached)"
msgstr ""
#: lib/depends.c:731
#: lib/depends.c:729
msgid "(rpmrc provides)"
msgstr ""
#: lib/depends.c:747
#: lib/depends.c:745
msgid "(rpmlib provides)"
msgstr ""
#: lib/depends.c:768
#: lib/depends.c:766
#, fuzzy
msgid "(db files)"
msgstr "impossible d'ouvrir: %s\n"
#: lib/depends.c:780
#: lib/depends.c:778
msgid "(db provides)"
msgstr ""
#: lib/depends.c:793
#: lib/depends.c:791
#, fuzzy
msgid "(db package)"
msgstr "aucun package n'a t spcifi pour l'installation"
#: lib/depends.c:832
#: lib/depends.c:830
#, c-format
msgid "%9s: (%s, %s) added to Depends cache.\n"
msgstr ""
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "NO "
msgstr ""
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "YES"
msgstr ""
#: lib/depends.c:1175
#: lib/depends.c:1173
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "impossible d'ouvrir: %s\n"
#. Record all relations.
#: lib/depends.c:1420
#: lib/depends.c:1415
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1496
#: lib/depends.c:1491
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
msgstr ""
#: lib/depends.c:1573
#: lib/depends.c:1568
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1633
#: lib/depends.c:1628
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1670
#: lib/depends.c:1665
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1675
#: lib/depends.c:1670
#, c-format
msgid "rpmdepOrder failed, %d elements remain\n"
msgstr ""
@ -2331,62 +2331,62 @@ msgstr "impossible d'ouvrir: %s\n"
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:603
#: lib/psm.c:605
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr ""
" -f <file>+ - interroge le package qui appartient <file>"
#: lib/psm.c:713
#: lib/psm.c:715
#, c-format
msgid "%s: running %s scriptlet\n"
msgstr ""
#: lib/psm.c:881
#: lib/psm.c:883
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr ""
#: lib/psm.c:888
#: lib/psm.c:890
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1230
#: lib/psm.c:1232
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "aucun package n'a t spcifi pour l'installation"
#: lib/psm.c:1349
#: lib/psm.c:1351
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1466
#: lib/psm.c:1468
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1475
#: lib/psm.c:1477
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1517
#: lib/psm.c:1519
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "La construction a chou.\n"
#: lib/psm.c:1518
#: lib/psm.c:1520
msgid " on file "
msgstr ""
#: lib/psm.c:1706
#: lib/psm.c:1708
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: lib/psm.c:1709
#: lib/psm.c:1711
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "La construction a chou.\n"
@ -2955,7 +2955,7 @@ msgstr ""
msgid "excluding directory %s\n"
msgstr ""
#: lib/transaction.c:1092
#: lib/transaction.c:1094
msgid "getting list of mounted filesystems\n"
msgstr ""

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
"POT-Creation-Date: 2001-11-16 15:03-0500\n"
"POT-Creation-Date: 2001-11-16 17:39-0500\n"
"PO-Revision-Date: 2001-01-13 22:31+0100\n"
"Last-Translator: Jesús Bravo Álvarez <jba@pobox.com>\n"
"Language-Team: Galician <trasno@ceu.fi.udc.es>\n"
@ -811,7 +811,7 @@ msgstr ""
msgid "Could not open %s: %s\n"
msgstr ""
#: build/pack.c:603 lib/psm.c:1424
#: build/pack.c:603 lib/psm.c:1426
#, c-format
msgid "Unable to write package: %s\n"
msgstr ""
@ -841,7 +841,7 @@ msgstr ""
msgid "Unable to write payload to %s: %s\n"
msgstr ""
#: build/pack.c:683 lib/psm.c:1698
#: build/pack.c:683 lib/psm.c:1700
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1410,78 +1410,78 @@ msgstr ""
msgid "cannot open Packages database in %s\n"
msgstr ""
#: lib/depends.c:418
#: lib/depends.c:419
#, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr ""
#: lib/depends.c:706
#: lib/depends.c:704
msgid "(cached)"
msgstr ""
#: lib/depends.c:731
#: lib/depends.c:729
msgid "(rpmrc provides)"
msgstr ""
#: lib/depends.c:747
#: lib/depends.c:745
msgid "(rpmlib provides)"
msgstr ""
#: lib/depends.c:768
#: lib/depends.c:766
msgid "(db files)"
msgstr ""
#: lib/depends.c:780
#: lib/depends.c:778
msgid "(db provides)"
msgstr ""
#: lib/depends.c:793
#: lib/depends.c:791
msgid "(db package)"
msgstr ""
#: lib/depends.c:832
#: lib/depends.c:830
#, c-format
msgid "%9s: (%s, %s) added to Depends cache.\n"
msgstr ""
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "NO "
msgstr ""
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "YES"
msgstr ""
#: lib/depends.c:1175
#: lib/depends.c:1173
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1420
#: lib/depends.c:1415
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1496
#: lib/depends.c:1491
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
msgstr ""
#: lib/depends.c:1573
#: lib/depends.c:1568
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1633
#: lib/depends.c:1628
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1670
#: lib/depends.c:1665
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1675
#: lib/depends.c:1670
#, c-format
msgid "rpmdepOrder failed, %d elements remain\n"
msgstr ""
@ -2178,60 +2178,60 @@ msgstr ""
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:603
#: lib/psm.c:605
msgid "source package contains no .spec file\n"
msgstr ""
#: lib/psm.c:713
#: lib/psm.c:715
#, c-format
msgid "%s: running %s scriptlet\n"
msgstr ""
#: lib/psm.c:881
#: lib/psm.c:883
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr ""
#: lib/psm.c:888
#: lib/psm.c:890
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1230
#: lib/psm.c:1232
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:1349
#: lib/psm.c:1351
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1466
#: lib/psm.c:1468
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1475
#: lib/psm.c:1477
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1517
#: lib/psm.c:1519
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:1518
#: lib/psm.c:1520
msgid " on file "
msgstr ""
#: lib/psm.c:1706
#: lib/psm.c:1708
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
#: lib/psm.c:1709
#: lib/psm.c:1711
#, c-format
msgid "%s failed: %s\n"
msgstr ""
@ -2783,7 +2783,7 @@ msgstr ""
msgid "excluding directory %s\n"
msgstr ""
#: lib/transaction.c:1092
#: lib/transaction.c:1094
msgid "getting list of mounted filesystems\n"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-16 15:03-0500\n"
"POT-Creation-Date: 2001-11-16 17:39-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -816,7 +816,7 @@ msgstr ""
msgid "Could not open %s: %s\n"
msgstr ""
#: build/pack.c:603 lib/psm.c:1424
#: build/pack.c:603 lib/psm.c:1426
#, c-format
msgid "Unable to write package: %s\n"
msgstr ""
@ -846,7 +846,7 @@ msgstr ""
msgid "Unable to write payload to %s: %s\n"
msgstr ""
#: build/pack.c:683 lib/psm.c:1698
#: build/pack.c:683 lib/psm.c:1700
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1415,78 +1415,78 @@ msgstr ""
msgid "cannot open Packages database in %s\n"
msgstr ""
#: lib/depends.c:418
#: lib/depends.c:419
#, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr ""
#: lib/depends.c:706
#: lib/depends.c:704
msgid "(cached)"
msgstr ""
#: lib/depends.c:731
#: lib/depends.c:729
msgid "(rpmrc provides)"
msgstr ""
#: lib/depends.c:747
#: lib/depends.c:745
msgid "(rpmlib provides)"
msgstr ""
#: lib/depends.c:768
#: lib/depends.c:766
msgid "(db files)"
msgstr ""
#: lib/depends.c:780
#: lib/depends.c:778
msgid "(db provides)"
msgstr ""
#: lib/depends.c:793
#: lib/depends.c:791
msgid "(db package)"
msgstr ""
#: lib/depends.c:832
#: lib/depends.c:830
#, c-format
msgid "%9s: (%s, %s) added to Depends cache.\n"
msgstr ""
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "NO "
msgstr ""
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "YES"
msgstr ""
#: lib/depends.c:1175
#: lib/depends.c:1173
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1420
#: lib/depends.c:1415
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1496
#: lib/depends.c:1491
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
msgstr ""
#: lib/depends.c:1573
#: lib/depends.c:1568
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1633
#: lib/depends.c:1628
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1670
#: lib/depends.c:1665
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1675
#: lib/depends.c:1670
#, c-format
msgid "rpmdepOrder failed, %d elements remain\n"
msgstr ""
@ -2183,60 +2183,60 @@ msgstr ""
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:603
#: lib/psm.c:605
msgid "source package contains no .spec file\n"
msgstr ""
#: lib/psm.c:713
#: lib/psm.c:715
#, c-format
msgid "%s: running %s scriptlet\n"
msgstr ""
#: lib/psm.c:881
#: lib/psm.c:883
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr ""
#: lib/psm.c:888
#: lib/psm.c:890
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1230
#: lib/psm.c:1232
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:1349
#: lib/psm.c:1351
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1466
#: lib/psm.c:1468
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1475
#: lib/psm.c:1477
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1517
#: lib/psm.c:1519
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:1518
#: lib/psm.c:1520
msgid " on file "
msgstr ""
#: lib/psm.c:1706
#: lib/psm.c:1708
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
#: lib/psm.c:1709
#: lib/psm.c:1711
#, c-format
msgid "%s failed: %s\n"
msgstr ""
@ -2788,7 +2788,7 @@ msgstr ""
msgid "excluding directory %s\n"
msgstr ""
#: lib/transaction.c:1092
#: lib/transaction.c:1094
msgid "getting list of mounted filesystems\n"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-16 15:03-0500\n"
"POT-Creation-Date: 2001-11-16 17:39-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -816,7 +816,7 @@ msgstr ""
msgid "Could not open %s: %s\n"
msgstr ""
#: build/pack.c:603 lib/psm.c:1424
#: build/pack.c:603 lib/psm.c:1426
#, c-format
msgid "Unable to write package: %s\n"
msgstr ""
@ -846,7 +846,7 @@ msgstr ""
msgid "Unable to write payload to %s: %s\n"
msgstr ""
#: build/pack.c:683 lib/psm.c:1698
#: build/pack.c:683 lib/psm.c:1700
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1415,78 +1415,78 @@ msgstr ""
msgid "cannot open Packages database in %s\n"
msgstr ""
#: lib/depends.c:418
#: lib/depends.c:419
#, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr ""
#: lib/depends.c:706
#: lib/depends.c:704
msgid "(cached)"
msgstr ""
#: lib/depends.c:731
#: lib/depends.c:729
msgid "(rpmrc provides)"
msgstr ""
#: lib/depends.c:747
#: lib/depends.c:745
msgid "(rpmlib provides)"
msgstr ""
#: lib/depends.c:768
#: lib/depends.c:766
msgid "(db files)"
msgstr ""
#: lib/depends.c:780
#: lib/depends.c:778
msgid "(db provides)"
msgstr ""
#: lib/depends.c:793
#: lib/depends.c:791
msgid "(db package)"
msgstr ""
#: lib/depends.c:832
#: lib/depends.c:830
#, c-format
msgid "%9s: (%s, %s) added to Depends cache.\n"
msgstr ""
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "NO "
msgstr ""
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "YES"
msgstr ""
#: lib/depends.c:1175
#: lib/depends.c:1173
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1420
#: lib/depends.c:1415
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1496
#: lib/depends.c:1491
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
msgstr ""
#: lib/depends.c:1573
#: lib/depends.c:1568
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1633
#: lib/depends.c:1628
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1670
#: lib/depends.c:1665
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1675
#: lib/depends.c:1670
#, c-format
msgid "rpmdepOrder failed, %d elements remain\n"
msgstr ""
@ -2183,60 +2183,60 @@ msgstr ""
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:603
#: lib/psm.c:605
msgid "source package contains no .spec file\n"
msgstr ""
#: lib/psm.c:713
#: lib/psm.c:715
#, c-format
msgid "%s: running %s scriptlet\n"
msgstr ""
#: lib/psm.c:881
#: lib/psm.c:883
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr ""
#: lib/psm.c:888
#: lib/psm.c:890
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1230
#: lib/psm.c:1232
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:1349
#: lib/psm.c:1351
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1466
#: lib/psm.c:1468
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1475
#: lib/psm.c:1477
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1517
#: lib/psm.c:1519
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:1518
#: lib/psm.c:1520
msgid " on file "
msgstr ""
#: lib/psm.c:1706
#: lib/psm.c:1708
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
#: lib/psm.c:1709
#: lib/psm.c:1711
#, c-format
msgid "%s failed: %s\n"
msgstr ""
@ -2788,7 +2788,7 @@ msgstr ""
msgid "excluding directory %s\n"
msgstr ""
#: lib/transaction.c:1092
#: lib/transaction.c:1094
msgid "getting list of mounted filesystems\n"
msgstr ""

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-16 15:03-0500\n"
"POT-Creation-Date: 2001-11-16 17:39-0500\n"
"PO-Revision-Date: 2001-07-12 13:25+0000\n"
"Last-Translator: Richard Allen <ra@hp.is>\n"
"Language-Team: is <kde-isl@mmedia.is>\n"
@ -815,7 +815,7 @@ msgstr "Get ekki lesi
msgid "Could not open %s: %s\n"
msgstr ""
#: build/pack.c:603 lib/psm.c:1424
#: build/pack.c:603 lib/psm.c:1426
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Get ekki ritað í pakka: %s\n"
@ -845,7 +845,7 @@ msgstr "Get ekki lesi
msgid "Unable to write payload to %s: %s\n"
msgstr "Get ekki ritað innihald í %s: %s\n"
#: build/pack.c:683 lib/psm.c:1698
#: build/pack.c:683 lib/psm.c:1700
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrifaði: %s\n"
@ -1415,79 +1415,79 @@ msgstr ""
msgid "cannot open Packages database in %s\n"
msgstr "get ekki opnað pakka gagnagrunn í\n"
#: lib/depends.c:418
#: lib/depends.c:419
#, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr ""
#: lib/depends.c:706
#: lib/depends.c:704
msgid "(cached)"
msgstr ""
#: lib/depends.c:731
#: lib/depends.c:729
msgid "(rpmrc provides)"
msgstr ""
#: lib/depends.c:747
#: lib/depends.c:745
msgid "(rpmlib provides)"
msgstr ""
#: lib/depends.c:768
#: lib/depends.c:766
msgid "(db files)"
msgstr ""
#: lib/depends.c:780
#: lib/depends.c:778
msgid "(db provides)"
msgstr ""
#: lib/depends.c:793
#: lib/depends.c:791
#, fuzzy
msgid "(db package)"
msgstr "uppfæra pakka"
#: lib/depends.c:832
#: lib/depends.c:830
#, c-format
msgid "%9s: (%s, %s) added to Depends cache.\n"
msgstr ""
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "NO "
msgstr ""
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "YES"
msgstr ""
#: lib/depends.c:1175
#: lib/depends.c:1173
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1420
#: lib/depends.c:1415
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1496
#: lib/depends.c:1491
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
msgstr ""
#: lib/depends.c:1573
#: lib/depends.c:1568
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1633
#: lib/depends.c:1628
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1670
#: lib/depends.c:1665
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1675
#: lib/depends.c:1670
#, c-format
msgid "rpmdepOrder failed, %d elements remain\n"
msgstr ""
@ -2189,60 +2189,60 @@ msgstr "get ekki rita
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:603
#: lib/psm.c:605
msgid "source package contains no .spec file\n"
msgstr "pakkinn inniheldur enga .spec skrá\n"
#: lib/psm.c:713
#: lib/psm.c:715
#, c-format
msgid "%s: running %s scriptlet\n"
msgstr ""
#: lib/psm.c:881
#: lib/psm.c:883
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr ""
#: lib/psm.c:888
#: lib/psm.c:890
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1230
#: lib/psm.c:1232
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:1349
#: lib/psm.c:1351
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1466
#: lib/psm.c:1468
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1475
#: lib/psm.c:1477
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1517
#: lib/psm.c:1519
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:1518
#: lib/psm.c:1520
msgid " on file "
msgstr ""
#: lib/psm.c:1706
#: lib/psm.c:1708
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "gat ekki opnað %s: %s\n"
#: lib/psm.c:1709
#: lib/psm.c:1711
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s brást\n"
@ -2794,7 +2794,7 @@ msgstr ""
msgid "excluding directory %s\n"
msgstr ""
#: lib/transaction.c:1092
#: lib/transaction.c:1094
msgid "getting list of mounted filesystems\n"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-16 15:03-0500\n"
"POT-Creation-Date: 2001-11-16 17:39-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -816,7 +816,7 @@ msgstr ""
msgid "Could not open %s: %s\n"
msgstr ""
#: build/pack.c:603 lib/psm.c:1424
#: build/pack.c:603 lib/psm.c:1426
#, c-format
msgid "Unable to write package: %s\n"
msgstr ""
@ -846,7 +846,7 @@ msgstr ""
msgid "Unable to write payload to %s: %s\n"
msgstr ""
#: build/pack.c:683 lib/psm.c:1698
#: build/pack.c:683 lib/psm.c:1700
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1415,78 +1415,78 @@ msgstr ""
msgid "cannot open Packages database in %s\n"
msgstr ""
#: lib/depends.c:418
#: lib/depends.c:419
#, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr ""
#: lib/depends.c:706
#: lib/depends.c:704
msgid "(cached)"
msgstr ""
#: lib/depends.c:731
#: lib/depends.c:729
msgid "(rpmrc provides)"
msgstr ""
#: lib/depends.c:747
#: lib/depends.c:745
msgid "(rpmlib provides)"
msgstr ""
#: lib/depends.c:768
#: lib/depends.c:766
msgid "(db files)"
msgstr ""
#: lib/depends.c:780
#: lib/depends.c:778
msgid "(db provides)"
msgstr ""
#: lib/depends.c:793
#: lib/depends.c:791
msgid "(db package)"
msgstr ""
#: lib/depends.c:832
#: lib/depends.c:830
#, c-format
msgid "%9s: (%s, %s) added to Depends cache.\n"
msgstr ""
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "NO "
msgstr ""
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "YES"
msgstr ""
#: lib/depends.c:1175
#: lib/depends.c:1173
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1420
#: lib/depends.c:1415
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1496
#: lib/depends.c:1491
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
msgstr ""
#: lib/depends.c:1573
#: lib/depends.c:1568
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1633
#: lib/depends.c:1628
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1670
#: lib/depends.c:1665
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1675
#: lib/depends.c:1670
#, c-format
msgid "rpmdepOrder failed, %d elements remain\n"
msgstr ""
@ -2183,60 +2183,60 @@ msgstr ""
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:603
#: lib/psm.c:605
msgid "source package contains no .spec file\n"
msgstr ""
#: lib/psm.c:713
#: lib/psm.c:715
#, c-format
msgid "%s: running %s scriptlet\n"
msgstr ""
#: lib/psm.c:881
#: lib/psm.c:883
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr ""
#: lib/psm.c:888
#: lib/psm.c:890
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1230
#: lib/psm.c:1232
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:1349
#: lib/psm.c:1351
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1466
#: lib/psm.c:1468
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1475
#: lib/psm.c:1477
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1517
#: lib/psm.c:1519
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:1518
#: lib/psm.c:1520
msgid " on file "
msgstr ""
#: lib/psm.c:1706
#: lib/psm.c:1708
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
#: lib/psm.c:1709
#: lib/psm.c:1711
#, c-format
msgid "%s failed: %s\n"
msgstr ""
@ -2788,7 +2788,7 @@ msgstr ""
msgid "excluding directory %s\n"
msgstr ""
#: lib/transaction.c:1092
#: lib/transaction.c:1094
msgid "getting list of mounted filesystems\n"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-16 15:03-0500\n"
"POT-Creation-Date: 2001-11-16 17:39-0500\n"
"PO-Revision-Date: 1999-12-01 22:49 +JST\n"
"Last-Translator: Kanda Mitsuru <kanda@nn.iij4u.or.jp>\n"
"Language-Team: JRPM <jrpm@linux.or.jp>\n"
@ -862,7 +862,7 @@ msgstr "
msgid "Could not open %s: %s\n"
msgstr "%s のオープンに失敗しました\n"
#: build/pack.c:603 lib/psm.c:1424
#: build/pack.c:603 lib/psm.c:1426
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "パッケージの書き込みに失敗しました: %s"
@ -892,7 +892,7 @@ msgstr "
msgid "Unable to write payload to %s: %s\n"
msgstr "パッケージの書き込みに失敗しました: %s"
#: build/pack.c:683 lib/psm.c:1698
#: build/pack.c:683 lib/psm.c:1700
#, c-format
msgid "Wrote: %s\n"
msgstr "書き込み中: %s\n"
@ -1488,83 +1488,83 @@ msgstr "
msgid "cannot open Packages database in %s\n"
msgstr "%s/packages.rpm をオープンできません\n"
#: lib/depends.c:418
#: lib/depends.c:419
#, fuzzy, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr "パッケージ %s-%s-%s はすでにインストールされています"
#: lib/depends.c:706
#: lib/depends.c:704
msgid "(cached)"
msgstr ""
#: lib/depends.c:731
#: lib/depends.c:729
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %s は rpmrc が提供することによって満されます。\n"
#: lib/depends.c:747
#: lib/depends.c:745
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %s は rpmrc が提供することによって満されます。\n"
#: lib/depends.c:768
#: lib/depends.c:766
#, fuzzy
msgid "(db files)"
msgstr "不正なファイルの状態: %s"
#: lib/depends.c:780
#: lib/depends.c:778
#, fuzzy
msgid "(db provides)"
msgstr "%s: %s は db が提供することによって満されます。\n"
#: lib/depends.c:793
#: lib/depends.c:791
#, fuzzy
msgid "(db package)"
msgstr "%d 個のパッケージを見つけました\n"
#: lib/depends.c:832
#: lib/depends.c:830
#, fuzzy, c-format
msgid "%9s: (%s, %s) added to Depends cache.\n"
msgstr "%s: %s はパッケージに加えることによって満されます。\n"
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "NO "
msgstr ""
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "YES"
msgstr ""
#: lib/depends.c:1175
#: lib/depends.c:1173
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "group インデックスを削除します\n"
#. Record all relations.
#: lib/depends.c:1420
#: lib/depends.c:1415
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1496
#: lib/depends.c:1491
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
msgstr ""
#: lib/depends.c:1573
#: lib/depends.c:1568
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1633
#: lib/depends.c:1628
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1670
#: lib/depends.c:1665
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1675
#: lib/depends.c:1670
#, c-format
msgid "rpmdepOrder failed, %d elements remain\n"
msgstr ""
@ -2342,62 +2342,62 @@ msgstr "%s
msgid "source package expected, binary found\n"
msgstr "ソースパッケージが期待されます、バイナリは見つかりました"
#: lib/psm.c:603
#: lib/psm.c:605
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "ソースパッケージは .spec ファイルを含んでいません"
#: lib/psm.c:713
#: lib/psm.c:715
#, fuzzy, c-format
msgid "%s: running %s scriptlet\n"
msgstr "ポストインストールスクリプト(が有れば)を実行します\n"
#: lib/psm.c:881
#: lib/psm.c:883
#, fuzzy, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr "スクリプトの実行に失敗"
#: lib/psm.c:888
#: lib/psm.c:890
#, fuzzy, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr "スクリプトの実行に失敗"
#: lib/psm.c:1230
#: lib/psm.c:1232
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "パッケージ: %s-%s-%s ファイルテスト = %d\n"
#: lib/psm.c:1349
#: lib/psm.c:1351
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1466
#: lib/psm.c:1468
#, fuzzy, c-format
msgid "user %s does not exist - using root\n"
msgstr "ユーザ %s は存在しません - root を使用します"
#: lib/psm.c:1475
#: lib/psm.c:1477
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "グループ %s は存在しません - root を使用します"
#: lib/psm.c:1517
#: lib/psm.c:1519
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "ファイル %s のアーカイブの伸長に失敗 %s%s: %s"
#: lib/psm.c:1518
#: lib/psm.c:1520
#, fuzzy
msgid " on file "
msgstr "ファイル上"
#: lib/psm.c:1706
#: lib/psm.c:1708
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s のオープンに失敗: %s"
#: lib/psm.c:1709
#: lib/psm.c:1711
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s 失敗"
@ -2972,7 +2972,7 @@ msgstr "%s
msgid "excluding directory %s\n"
msgstr "ディレクトリの除外: %s\n"
#: lib/transaction.c:1092
#: lib/transaction.c:1094
msgid "getting list of mounted filesystems\n"
msgstr "マウントされたファイルシステムのリストを取得しています\n"

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-16 15:03-0500\n"
"POT-Creation-Date: 2001-11-16 17:39-0500\n"
"PO-Revision-Date: 2001-09-07 22:03+0900\n"
"Last-Translator: Jong-Hoon Ryu <redhat4u@netian.com>\n"
"Language-Team: GNU Translation project <ko@li.org>\n"
@ -822,7 +822,7 @@ msgstr "
msgid "Could not open %s: %s\n"
msgstr "%s (을)를 열 수 없음: %s\n"
#: build/pack.c:603 lib/psm.c:1424
#: build/pack.c:603 lib/psm.c:1426
#, c-format
msgid "Unable to write package: %s\n"
msgstr "패키지를 작성할 수 없음: %s\n"
@ -852,7 +852,7 @@ msgstr "%s
msgid "Unable to write payload to %s: %s\n"
msgstr "%s 에 payload를 작성할 수 없음: %s\n"
#: build/pack.c:683 lib/psm.c:1698
#: build/pack.c:683 lib/psm.c:1700
#, c-format
msgid "Wrote: %s\n"
msgstr "작성: %s\n"
@ -1428,84 +1428,84 @@ msgstr "
msgid "cannot open Packages database in %s\n"
msgstr "%s 안의 패키지 데이터베이스를 열 수 없습니다\n"
#: lib/depends.c:418
#: lib/depends.c:419
#, fuzzy, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr "%s 패키지는 이미 설치되어 있습니다"
#: lib/depends.c:706
#: lib/depends.c:704
msgid "(cached)"
msgstr ""
#: lib/depends.c:731
#: lib/depends.c:729
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %-45s 예 (rpmrc이 제공함)\n"
#: lib/depends.c:747
#: lib/depends.c:745
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %-45s 예 (rpmlib이 제공함)\n"
#: lib/depends.c:768
#: lib/depends.c:766
#, fuzzy
msgid "(db files)"
msgstr "잘못된 db 파일 %s\n"
#: lib/depends.c:780
#: lib/depends.c:778
#, fuzzy
msgid "(db provides)"
msgstr "%s: %-45s 예 (db가 제공함)\n"
#: lib/depends.c:793
#: lib/depends.c:791
#, fuzzy
msgid "(db package)"
msgstr "패키지가 없습니다\n"
#: lib/depends.c:832
#: lib/depends.c:830
#, fuzzy, c-format
msgid "%9s: (%s, %s) added to Depends cache.\n"
msgstr "%s: (%s, %s) 의존(Depends) 캐시에 추가되었습니다.\n"
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "NO "
msgstr "아니오"
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "YES"
msgstr "예"
#: lib/depends.c:1175
#: lib/depends.c:1173
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "tsort 관계에서 %s-%s-%s \"%s\" (을)를 삭제합니다.\n"
#. Record all relations.
#: lib/depends.c:1420
#: lib/depends.c:1415
msgid "========== recording tsort relations\n"
msgstr "========== tsort 관계를 기록(record)합니다\n"
#. T4. Scan for zeroes.
#: lib/depends.c:1496
#: lib/depends.c:1491
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
msgstr ""
"========== 패키지를 tsort 합니다 (순서, #선임자, #후임자, 깊이[depth])\n"
#: lib/depends.c:1573
#: lib/depends.c:1568
msgid "========== successors only (presentation order)\n"
msgstr "========== 후임자 [successors only] (표현 순)\n"
#: lib/depends.c:1633
#: lib/depends.c:1628
msgid "LOOP:\n"
msgstr "루프(LOOP):\n"
#: lib/depends.c:1670
#: lib/depends.c:1665
msgid "========== continuing tsort ...\n"
msgstr "========== tsort를 진행합니다...\n"
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1675
#: lib/depends.c:1670
#, c-format
msgid "rpmdepOrder failed, %d elements remain\n"
msgstr ""
@ -2230,66 +2230,66 @@ msgstr "%%%s %s (
msgid "source package expected, binary found\n"
msgstr "소스 패키지가 요구됩니다, 바이너리를 찾았습니다\n"
#: lib/psm.c:603
#: lib/psm.c:605
msgid "source package contains no .spec file\n"
msgstr "소스 패키지에 .spec 파일이 포함되어 있지 않습니다\n"
#: lib/psm.c:713
#: lib/psm.c:715
#, fuzzy, c-format
msgid "%s: running %s scriptlet\n"
msgstr "%s: %s 스크립트를 실행합니다 (있을 경우)\n"
#: lib/psm.c:881
#: lib/psm.c:883
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr ""
"%2$s-%3$s-%4$s 의 %1$s 스크립트릿(scriptlet) 실행에 실패했습니다, waitpid가 %"
"5$s (을)를 반환하였습니다 \n"
#: lib/psm.c:888
#: lib/psm.c:890
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr ""
"%2$s-%3$s-%4$s 의 %1$s 스크립트릿(scriptlet) 실행에 실패했습니다, 종료 상황 %"
"5$d\n"
#: lib/psm.c:1230
#: lib/psm.c:1232
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s-%s-%s (이)가 %d 의 파일을 갖고 있습니다, 테스트 = %d\n"
#: lib/psm.c:1349
#: lib/psm.c:1351
#, fuzzy, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
"%s: %s 스크립트릿(scriptlet)가 실패했습니다 (%d), %s-%s-%s (을)를 생략합니"
"다\n"
#: lib/psm.c:1466
#: lib/psm.c:1468
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "%s 사용자가 존재하지 않습니다 - root를 이용합니다\n"
#: lib/psm.c:1475
#: lib/psm.c:1477
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "%s 그룹이 존재하지 않습니다 - root를 이용합니다\n"
#: lib/psm.c:1517
#: lib/psm.c:1519
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "아카이브를 푸는데 실패함%s%s: %s\n"
#: lib/psm.c:1518
#: lib/psm.c:1520
msgid " on file "
msgstr " 다음 파일에 "
#: lib/psm.c:1706
#: lib/psm.c:1708
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%2$s 파일의 %1$s (이)가 실패함: %3$s\n"
#: lib/psm.c:1709
#: lib/psm.c:1711
#, c-format
msgid "%s failed: %s\n"
msgstr "%s (이)가 실패함: %s\n"
@ -2848,7 +2848,7 @@ msgstr "missingok
msgid "excluding directory %s\n"
msgstr "%s 디렉토리를 제외시킵니다\n"
#: lib/transaction.c:1092
#: lib/transaction.c:1094
msgid "getting list of mounted filesystems\n"
msgstr "마운트된 파일시스템의 목록을 수집하고 있습니다\n"

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-16 15:03-0500\n"
"POT-Creation-Date: 2001-11-16 17:39-0500\n"
"PO-Revision-Date: 2001-06-27 12:24+0200\n"
"Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
"Language-Team: Norwegian <no@li.org>\n"
@ -825,7 +825,7 @@ msgstr "Kunne ikke
msgid "Could not open %s: %s\n"
msgstr "Kunne ikke åpne %s: %s\n"
#: build/pack.c:603 lib/psm.c:1424
#: build/pack.c:603 lib/psm.c:1426
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Kunne ikke skrive pakke: %s\n"
@ -855,7 +855,7 @@ msgstr "Kunne ikke lese \"payload\" fra %s: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "Kunne ikke skrive \"payload\" til %s: %s\n"
#: build/pack.c:683 lib/psm.c:1698
#: build/pack.c:683 lib/psm.c:1700
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrev: %s\n"
@ -1429,79 +1429,79 @@ msgstr " feilet - "
msgid "cannot open Packages database in %s\n"
msgstr "kan ikke åpne pakkedatabase i %s\n"
#: lib/depends.c:418
#: lib/depends.c:419
#, fuzzy, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr "pakke %s er allerede installert"
#: lib/depends.c:706
#: lib/depends.c:704
msgid "(cached)"
msgstr ""
#: lib/depends.c:731
#: lib/depends.c:729
msgid "(rpmrc provides)"
msgstr ""
#: lib/depends.c:747
#: lib/depends.c:745
msgid "(rpmlib provides)"
msgstr ""
#: lib/depends.c:768
#: lib/depends.c:766
msgid "(db files)"
msgstr ""
#: lib/depends.c:780
#: lib/depends.c:778
msgid "(db provides)"
msgstr ""
#: lib/depends.c:793
#: lib/depends.c:791
#, fuzzy
msgid "(db package)"
msgstr "ingen pakker\n"
#: lib/depends.c:832
#: lib/depends.c:830
#, c-format
msgid "%9s: (%s, %s) added to Depends cache.\n"
msgstr ""
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "NO "
msgstr "NEI"
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "YES"
msgstr "JA"
#: lib/depends.c:1175
#: lib/depends.c:1173
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1420
#: lib/depends.c:1415
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1496
#: lib/depends.c:1491
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
msgstr ""
#: lib/depends.c:1573
#: lib/depends.c:1568
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1633
#: lib/depends.c:1628
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1670
#: lib/depends.c:1665
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1675
#: lib/depends.c:1670
#, c-format
msgid "rpmdepOrder failed, %d elements remain\n"
msgstr ""
@ -2213,60 +2213,60 @@ msgstr "kan ikke skrive til %%%s %s\n"
msgid "source package expected, binary found\n"
msgstr "kildepakke forventet, binær funnet\n"
#: lib/psm.c:603
#: lib/psm.c:605
msgid "source package contains no .spec file\n"
msgstr "kildepakke inneholder ikke en .spec-fil\n"
#: lib/psm.c:713
#: lib/psm.c:715
#, fuzzy, c-format
msgid "%s: running %s scriptlet\n"
msgstr "%s: kjører %s-skript (hvis noen)\n"
#: lib/psm.c:881
#: lib/psm.c:883
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr ""
#: lib/psm.c:888
#: lib/psm.c:890
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1230
#: lib/psm.c:1232
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:1349
#: lib/psm.c:1351
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1466
#: lib/psm.c:1468
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1475
#: lib/psm.c:1477
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1517
#: lib/psm.c:1519
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:1518
#: lib/psm.c:1520
msgid " on file "
msgstr ""
#: lib/psm.c:1706
#: lib/psm.c:1708
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "klarte ikke å åpne %s: %s\n"
#: lib/psm.c:1709
#: lib/psm.c:1711
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s feilet\n"
@ -2820,7 +2820,7 @@ msgstr ""
msgid "excluding directory %s\n"
msgstr "ekskluderer katalog %s\n"
#: lib/transaction.c:1092
#: lib/transaction.c:1094
msgid "getting list of mounted filesystems\n"
msgstr "henter liste over monterte filsystemer\n"

View File

@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-16 15:03-0500\n"
"POT-Creation-Date: 2001-11-16 17:39-0500\n"
"PO-Revision-Date: 1999-05-25 17:00+0100\n"
"Last-Translator: Pawe³ Dziekoñski <pdziekonski@mml.ch.pwr.wroc.pl>\n"
"Language-Team: Polish <pl@li.org>\n"
@ -852,7 +852,7 @@ msgstr "Nie mo
msgid "Could not open %s: %s\n"
msgstr "Nie mo¿na otworzyæ %s\n"
#: build/pack.c:603 lib/psm.c:1424
#: build/pack.c:603 lib/psm.c:1426
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "Nie mo¿na zapisaæ pakietu: %s"
@ -882,7 +882,7 @@ msgstr "Nie mo
msgid "Unable to write payload to %s: %s\n"
msgstr "Nie mo¿na zapisaæ pakietu: %s"
#: build/pack.c:683 lib/psm.c:1698
#: build/pack.c:683 lib/psm.c:1700
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapisano: %s\n"
@ -1470,84 +1470,84 @@ msgstr " nie powiod
msgid "cannot open Packages database in %s\n"
msgstr "nie mo¿na otworzyæ %s/packages.rpm\n"
#: lib/depends.c:418
#: lib/depends.c:419
#, fuzzy, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr "pakiet %s-%s-%s jest ju¿ zainstalowany"
#: lib/depends.c:706
#: lib/depends.c:704
msgid "(cached)"
msgstr ""
#: lib/depends.c:731
#: lib/depends.c:729
#, fuzzy
msgid "(rpmrc provides)"
msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
#: lib/depends.c:747
#: lib/depends.c:745
#, fuzzy
msgid "(rpmlib provides)"
msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
#: lib/depends.c:768
#: lib/depends.c:766
#, fuzzy
msgid "(db files)"
msgstr "b³êdny status pliku: %s"
#: lib/depends.c:780
#: lib/depends.c:778
#, fuzzy
msgid "(db provides)"
msgstr "Udostêpniane zasoby:"
#: lib/depends.c:793
#: lib/depends.c:791
#, fuzzy
msgid "(db package)"
msgstr "znaleziono %d pakietów\n"
#: lib/depends.c:832
#: lib/depends.c:830
#, fuzzy, c-format
msgid "%9s: (%s, %s) added to Depends cache.\n"
msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
#, fuzzy
msgid "NO "
msgstr "NIE DOBRZE"
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "YES"
msgstr ""
#: lib/depends.c:1175
#: lib/depends.c:1173
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "usuwanie indeksu grupy\n"
#. Record all relations.
#: lib/depends.c:1420
#: lib/depends.c:1415
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1496
#: lib/depends.c:1491
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
msgstr ""
#: lib/depends.c:1573
#: lib/depends.c:1568
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1633
#: lib/depends.c:1628
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1670
#: lib/depends.c:1665
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1675
#: lib/depends.c:1670
#, c-format
msgid "rpmdepOrder failed, %d elements remain\n"
msgstr ""
@ -2300,61 +2300,61 @@ msgstr "nie mo
msgid "source package expected, binary found\n"
msgstr "spodziewany pakiet ¼ród³owy a nie binarny"
#: lib/psm.c:603
#: lib/psm.c:605
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "pakiet ¼ród³owy nie zawiera pliku .spec"
#: lib/psm.c:713
#: lib/psm.c:715
#, fuzzy, c-format
msgid "%s: running %s scriptlet\n"
msgstr "uruchamianie skryptu postinstall (je¶li istnieje)\n"
#: lib/psm.c:881
#: lib/psm.c:883
#, fuzzy, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr "wykonanie skryptu nie powiod³o siê"
#: lib/psm.c:888
#: lib/psm.c:890
#, fuzzy, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr "wykonanie skryptu nie powiod³o siê"
#: lib/psm.c:1230
#: lib/psm.c:1232
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "pakiet: %s-%s-%s test plików = %d\n"
#: lib/psm.c:1349
#: lib/psm.c:1351
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1466
#: lib/psm.c:1468
#, fuzzy, c-format
msgid "user %s does not exist - using root\n"
msgstr "u¿ytkownik %s nie istnieje - u¿yto konta root"
#: lib/psm.c:1475
#: lib/psm.c:1477
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "grupa %s nie istnieje - u¿yto grupy root"
#: lib/psm.c:1517
#: lib/psm.c:1519
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "rozpakowanie archiwum nie powiod³o siê %s%s: %s"
#: lib/psm.c:1518
#: lib/psm.c:1520
msgid " on file "
msgstr " na pliku "
#: lib/psm.c:1706
#: lib/psm.c:1708
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "nie mo¿na otworzyæ %s: %s"
#: lib/psm.c:1709
#: lib/psm.c:1711
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s nie powiod³o siê"
@ -2925,7 +2925,7 @@ msgstr "%s pomini
msgid "excluding directory %s\n"
msgstr "tworzenie katalogu: %s\n"
#: lib/transaction.c:1092
#: lib/transaction.c:1094
msgid "getting list of mounted filesystems\n"
msgstr ""

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-16 15:03-0500\n"
"POT-Creation-Date: 2001-11-16 17:39-0500\n"
"PO-Revision-Date: 2000-06-22 01:13+01:00\n"
"Last-Translator: José Nuno Coelho Sanarra Pires\n"
"Language-Team: pt <kde@poli.org>\n"
@ -823,7 +823,7 @@ msgstr "N
msgid "Could not open %s: %s\n"
msgstr "Não consigo aceder ao %s: %s\n"
#: build/pack.c:603 lib/psm.c:1424
#: build/pack.c:603 lib/psm.c:1426
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Não consegui gravar o pacote: %s\n"
@ -853,7 +853,7 @@ msgstr "N
msgid "Unable to write payload to %s: %s\n"
msgstr "Não consegui escrever o conteúdo de %s: %s\n"
#: build/pack.c:683 lib/psm.c:1698
#: build/pack.c:683 lib/psm.c:1700
#, c-format
msgid "Wrote: %s\n"
msgstr "Gravei: %s\n"
@ -1425,84 +1425,84 @@ msgstr " falhou - "
msgid "cannot open Packages database in %s\n"
msgstr "não consigo abrir a base de dados Packages em %s\n"
#: lib/depends.c:418
#: lib/depends.c:419
#, fuzzy, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr "o pacote %s já está instalado"
#: lib/depends.c:706
#: lib/depends.c:704
msgid "(cached)"
msgstr ""
#: lib/depends.c:731
#: lib/depends.c:729
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %-45s SIM (oferecidos pelo rpmrc)\n"
#: lib/depends.c:747
#: lib/depends.c:745
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %-45s SIM (oferecidos pela rpmlib)\n"
#: lib/depends.c:768
#: lib/depends.c:766
#, fuzzy
msgid "(db files)"
msgstr "ficheiro db inválido %s\n"
#: lib/depends.c:780
#: lib/depends.c:778
#, fuzzy
msgid "(db provides)"
msgstr "%s: %-45s SI (oferecidos pelo db)\n"
#: lib/depends.c:793
#: lib/depends.c:791
#, fuzzy
msgid "(db package)"
msgstr "nenhum pacote\n"
#: lib/depends.c:832
#: lib/depends.c:830
#, fuzzy, c-format
msgid "%9s: (%s, %s) added to Depends cache.\n"
msgstr "%s: (%s, %s) adicionado à cache de dependências.\n"
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
#, fuzzy
msgid "NO "
msgstr "NÃO-OK"
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "YES"
msgstr ""
#: lib/depends.c:1175
#: lib/depends.c:1173
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "a remover o %s-%s-%s \"%s\" das relações do tsort.\n"
#. Record all relations.
#: lib/depends.c:1420
#: lib/depends.c:1415
msgid "========== recording tsort relations\n"
msgstr "=========== a guardar as relações do tsort\n"
#. T4. Scan for zeroes.
#: lib/depends.c:1496
#: lib/depends.c:1491
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
msgstr ""
#: lib/depends.c:1573
#: lib/depends.c:1568
msgid "========== successors only (presentation order)\n"
msgstr "========== só os sucessores (ordem de apresentação)\n"
#: lib/depends.c:1633
#: lib/depends.c:1628
msgid "LOOP:\n"
msgstr "CICLO:\n"
#: lib/depends.c:1670
#: lib/depends.c:1665
msgid "========== continuing tsort ...\n"
msgstr "========== a prosseguir o tsort ...\n"
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1675
#: lib/depends.c:1670
#, c-format
msgid "rpmdepOrder failed, %d elements remain\n"
msgstr ""
@ -2227,60 +2227,60 @@ msgstr "n
msgid "source package expected, binary found\n"
msgstr "esperava-se um pacote com código-fonte, foi encontrado um pacote binário\n"
#: lib/psm.c:603
#: lib/psm.c:605
msgid "source package contains no .spec file\n"
msgstr "o pacote de código-fonte não contem um ficheiro .spec\n"
#: lib/psm.c:713
#: lib/psm.c:715
#, fuzzy, c-format
msgid "%s: running %s scriptlet\n"
msgstr "a correr os programas de pós-instalação (se existirem)\n"
#: lib/psm.c:881
#: lib/psm.c:883
#, fuzzy, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr "a execução do 'scriptlet' %s do %s-%s-%s falhou com código de erro %d\n"
#: lib/psm.c:888
#: lib/psm.c:890
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr "a execução do 'scriptlet' %s do %s-%s-%s falhou com código de erro %d\n"
#: lib/psm.c:1230
#: lib/psm.c:1232
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "pacote: teste dos ficheiros do %s-%s-%s = %d\n"
#: lib/psm.c:1349
#: lib/psm.c:1351
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1466
#: lib/psm.c:1468
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "o utilizador %s não existe - a usar o root\n"
#: lib/psm.c:1475
#: lib/psm.c:1477
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "o grupo %s não existe - a usar o root\n"
#: lib/psm.c:1517
#: lib/psm.c:1519
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "a abertura do pacote falhou%s%s: %s\n"
#: lib/psm.c:1518
#: lib/psm.c:1520
msgid " on file "
msgstr " no ficheiro "
#: lib/psm.c:1706
#: lib/psm.c:1708
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "falhei ao aceder ao %s: %s\n"
#: lib/psm.c:1709
#: lib/psm.c:1711
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "O %s falhou\n"
@ -2839,7 +2839,7 @@ msgstr "%s ignorado devido
msgid "excluding directory %s\n"
msgstr "a excluir a directoria %s\n"
#: lib/transaction.c:1092
#: lib/transaction.c:1094
msgid "getting list of mounted filesystems\n"
msgstr "a obter a lista dos sistemas de ficheiros montados\n"

View File

@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-16 15:03-0500\n"
"POT-Creation-Date: 2001-11-16 17:39-0500\n"
#: build.c:36
#, fuzzy
@ -911,7 +911,7 @@ msgid "Could not open %s: %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
#: build/pack.c:603 lib/psm.c:1424
#: build/pack.c:603 lib/psm.c:1426
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "No consegui abrir: %s\n"
@ -946,7 +946,7 @@ msgstr "No consegui abrir: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "No consegui abrir: %s\n"
#: build/pack.c:683 lib/psm.c:1698
#: build/pack.c:683 lib/psm.c:1700
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1583,82 +1583,82 @@ msgstr "Construo falhou.\n"
msgid "cannot open Packages database in %s\n"
msgstr "No consegui abrir: %s\n"
#: lib/depends.c:418
#: lib/depends.c:419
#, fuzzy, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr "no foi passado pacote para instalao"
#: lib/depends.c:706
#: lib/depends.c:704
msgid "(cached)"
msgstr ""
#: lib/depends.c:731
#: lib/depends.c:729
msgid "(rpmrc provides)"
msgstr ""
#: lib/depends.c:747
#: lib/depends.c:745
msgid "(rpmlib provides)"
msgstr ""
# , c-format
#: lib/depends.c:768
#: lib/depends.c:766
#, fuzzy
msgid "(db files)"
msgstr "No consegui abrir: %s\n"
#: lib/depends.c:780
#: lib/depends.c:778
msgid "(db provides)"
msgstr ""
#: lib/depends.c:793
#: lib/depends.c:791
#, fuzzy
msgid "(db package)"
msgstr "pesquise todos os pacotes"
#: lib/depends.c:832
#: lib/depends.c:830
#, c-format
msgid "%9s: (%s, %s) added to Depends cache.\n"
msgstr ""
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "NO "
msgstr ""
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "YES"
msgstr ""
# , c-format
#: lib/depends.c:1175
#: lib/depends.c:1173
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "No consegui abrir: %s\n"
#. Record all relations.
#: lib/depends.c:1420
#: lib/depends.c:1415
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1496
#: lib/depends.c:1491
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
msgstr ""
#: lib/depends.c:1573
#: lib/depends.c:1568
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1633
#: lib/depends.c:1628
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1670
#: lib/depends.c:1665
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1675
#: lib/depends.c:1670
#, c-format
msgid "rpmdepOrder failed, %d elements remain\n"
msgstr ""
@ -2422,62 +2422,62 @@ msgstr "No consegui abrir: %s\n"
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:603
#: lib/psm.c:605
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "pesquise o pacote ao qual <arquivo> pertence"
#: lib/psm.c:713
#: lib/psm.c:715
#, fuzzy, c-format
msgid "%s: running %s scriptlet\n"
msgstr "no execute nenhum estgio"
#: lib/psm.c:881
#: lib/psm.c:883
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr ""
#: lib/psm.c:888
#: lib/psm.c:890
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1230
#: lib/psm.c:1232
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "no foi passado pacote para instalao"
#: lib/psm.c:1349
#: lib/psm.c:1351
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1466
#: lib/psm.c:1468
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1475
#: lib/psm.c:1477
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1517
#: lib/psm.c:1519
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "Construo falhou.\n"
#: lib/psm.c:1518
#: lib/psm.c:1520
msgid " on file "
msgstr ""
# , c-format
#: lib/psm.c:1706
#: lib/psm.c:1708
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "No consegui abrir: %s\n"
#: lib/psm.c:1709
#: lib/psm.c:1711
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "Construo falhou.\n"
@ -3084,7 +3084,7 @@ msgstr ""
msgid "excluding directory %s\n"
msgstr "RPM verso %s\n"
#: lib/transaction.c:1092
#: lib/transaction.c:1094
msgid "getting list of mounted filesystems\n"
msgstr ""

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-16 15:03-0500\n"
"POT-Creation-Date: 2001-11-16 17:39-0500\n"
"PO-Revision-Date: 1999-04-10 12:00+EST\n"
"Last-Translator: Cristian Gafton <gafton@redhat.com>\n"
"Language-Team: Romanian <ro@li.org>\n"
@ -811,7 +811,7 @@ msgstr ""
msgid "Could not open %s: %s\n"
msgstr ""
#: build/pack.c:603 lib/psm.c:1424
#: build/pack.c:603 lib/psm.c:1426
#, c-format
msgid "Unable to write package: %s\n"
msgstr ""
@ -841,7 +841,7 @@ msgstr ""
msgid "Unable to write payload to %s: %s\n"
msgstr ""
#: build/pack.c:683 lib/psm.c:1698
#: build/pack.c:683 lib/psm.c:1700
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1410,78 +1410,78 @@ msgstr ""
msgid "cannot open Packages database in %s\n"
msgstr ""
#: lib/depends.c:418
#: lib/depends.c:419
#, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr ""
#: lib/depends.c:706
#: lib/depends.c:704
msgid "(cached)"
msgstr ""
#: lib/depends.c:731
#: lib/depends.c:729
msgid "(rpmrc provides)"
msgstr ""
#: lib/depends.c:747
#: lib/depends.c:745
msgid "(rpmlib provides)"
msgstr ""
#: lib/depends.c:768
#: lib/depends.c:766
msgid "(db files)"
msgstr ""
#: lib/depends.c:780
#: lib/depends.c:778
msgid "(db provides)"
msgstr ""
#: lib/depends.c:793
#: lib/depends.c:791
msgid "(db package)"
msgstr ""
#: lib/depends.c:832
#: lib/depends.c:830
#, c-format
msgid "%9s: (%s, %s) added to Depends cache.\n"
msgstr ""
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "NO "
msgstr ""
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "YES"
msgstr ""
#: lib/depends.c:1175
#: lib/depends.c:1173
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1420
#: lib/depends.c:1415
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1496
#: lib/depends.c:1491
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
msgstr ""
#: lib/depends.c:1573
#: lib/depends.c:1568
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1633
#: lib/depends.c:1628
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1670
#: lib/depends.c:1665
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1675
#: lib/depends.c:1670
#, c-format
msgid "rpmdepOrder failed, %d elements remain\n"
msgstr ""
@ -2178,60 +2178,60 @@ msgstr ""
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:603
#: lib/psm.c:605
msgid "source package contains no .spec file\n"
msgstr ""
#: lib/psm.c:713
#: lib/psm.c:715
#, c-format
msgid "%s: running %s scriptlet\n"
msgstr ""
#: lib/psm.c:881
#: lib/psm.c:883
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr ""
#: lib/psm.c:888
#: lib/psm.c:890
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1230
#: lib/psm.c:1232
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:1349
#: lib/psm.c:1351
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1466
#: lib/psm.c:1468
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1475
#: lib/psm.c:1477
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1517
#: lib/psm.c:1519
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:1518
#: lib/psm.c:1520
msgid " on file "
msgstr ""
#: lib/psm.c:1706
#: lib/psm.c:1708
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
#: lib/psm.c:1709
#: lib/psm.c:1711
#, c-format
msgid "%s failed: %s\n"
msgstr ""
@ -2783,7 +2783,7 @@ msgstr ""
msgid "excluding directory %s\n"
msgstr ""
#: lib/transaction.c:1092
#: lib/transaction.c:1094
msgid "getting list of mounted filesystems\n"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2001-11-16 15:03-0500\n"
"POT-Creation-Date: 2001-11-16 17:39-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -816,7 +816,7 @@ msgstr ""
msgid "Could not open %s: %s\n"
msgstr ""
#: build/pack.c:603 lib/psm.c:1424
#: build/pack.c:603 lib/psm.c:1426
#, c-format
msgid "Unable to write package: %s\n"
msgstr ""
@ -846,7 +846,7 @@ msgstr ""
msgid "Unable to write payload to %s: %s\n"
msgstr ""
#: build/pack.c:683 lib/psm.c:1698
#: build/pack.c:683 lib/psm.c:1700
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1415,78 +1415,78 @@ msgstr ""
msgid "cannot open Packages database in %s\n"
msgstr ""
#: lib/depends.c:418
#: lib/depends.c:419
#, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr ""
#: lib/depends.c:706
#: lib/depends.c:704
msgid "(cached)"
msgstr ""
#: lib/depends.c:731
#: lib/depends.c:729
msgid "(rpmrc provides)"
msgstr ""
#: lib/depends.c:747
#: lib/depends.c:745
msgid "(rpmlib provides)"
msgstr ""
#: lib/depends.c:768
#: lib/depends.c:766
msgid "(db files)"
msgstr ""
#: lib/depends.c:780
#: lib/depends.c:778
msgid "(db provides)"
msgstr ""
#: lib/depends.c:793
#: lib/depends.c:791
msgid "(db package)"
msgstr ""
#: lib/depends.c:832
#: lib/depends.c:830
#, c-format
msgid "%9s: (%s, %s) added to Depends cache.\n"
msgstr ""
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "NO "
msgstr ""
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "YES"
msgstr ""
#: lib/depends.c:1175
#: lib/depends.c:1173
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1420
#: lib/depends.c:1415
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1496
#: lib/depends.c:1491
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
msgstr ""
#: lib/depends.c:1573
#: lib/depends.c:1568
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1633
#: lib/depends.c:1628
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1670
#: lib/depends.c:1665
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1675
#: lib/depends.c:1670
#, c-format
msgid "rpmdepOrder failed, %d elements remain\n"
msgstr ""
@ -2183,60 +2183,60 @@ msgstr ""
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:603
#: lib/psm.c:605
msgid "source package contains no .spec file\n"
msgstr ""
#: lib/psm.c:713
#: lib/psm.c:715
#, c-format
msgid "%s: running %s scriptlet\n"
msgstr ""
#: lib/psm.c:881
#: lib/psm.c:883
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr ""
#: lib/psm.c:888
#: lib/psm.c:890
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1230
#: lib/psm.c:1232
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:1349
#: lib/psm.c:1351
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1466
#: lib/psm.c:1468
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1475
#: lib/psm.c:1477
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1517
#: lib/psm.c:1519
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:1518
#: lib/psm.c:1520
msgid " on file "
msgstr ""
#: lib/psm.c:1706
#: lib/psm.c:1708
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
#: lib/psm.c:1709
#: lib/psm.c:1711
#, c-format
msgid "%s failed: %s\n"
msgstr ""
@ -2788,7 +2788,7 @@ msgstr ""
msgid "excluding directory %s\n"
msgstr ""
#: lib/transaction.c:1092
#: lib/transaction.c:1094
msgid "getting list of mounted filesystems\n"
msgstr ""

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-16 15:03-0500\n"
"POT-Creation-Date: 2001-11-16 17:39-0500\n"
"PO-Revision-Date: 2001-08-29 13:55-0400\n"
"Last-Translator: Eugene Kanter <eugene@blackcatlinux.com>\n"
"Language-Team: Black Cat Linux Team <blackcat-support@blackcatlinux.com>\n"
@ -834,7 +834,7 @@ msgstr "
msgid "Could not open %s: %s\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
#: build/pack.c:603 lib/psm.c:1424
#: build/pack.c:603 lib/psm.c:1426
#, c-format
msgid "Unable to write package: %s\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÐÁËÅÔ: %s\n"
@ -864,7 +864,7 @@ msgstr "
msgid "Unable to write payload to %s: %s\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÓÏÄÅÒÖÉÍÏÅ × %s: %s\n"
#: build/pack.c:683 lib/psm.c:1698
#: build/pack.c:683 lib/psm.c:1700
#, c-format
msgid "Wrote: %s\n"
msgstr "úÁÐÉÓÁÎ: %s\n"
@ -1446,85 +1446,85 @@ msgstr "
msgid "cannot open Packages database in %s\n"
msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ ÂÁÚÕ ÄÁÎÎÙÈ Packages × %s\n"
#: lib/depends.c:418
#: lib/depends.c:419
#, fuzzy, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr "ÐÁËÅÔ %s ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ"
#: lib/depends.c:706
#: lib/depends.c:704
msgid "(cached)"
msgstr ""
#: lib/depends.c:731
#: lib/depends.c:729
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %-45s YES (rpmrc provides)\n"
#: lib/depends.c:747
#: lib/depends.c:745
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %-45s YES (rpmlib provides)\n"
#: lib/depends.c:768
#: lib/depends.c:766
#, fuzzy
msgid "(db files)"
msgstr "ÎÅ×ÅÒÎÙÊ ÆÁÊÌ ÂÁÚÙ ÄÁÎÎÙÈ %s\n"
#: lib/depends.c:780
#: lib/depends.c:778
#, fuzzy
msgid "(db provides)"
msgstr "%s: %-45s YES (db provides)\n"
#: lib/depends.c:793
#: lib/depends.c:791
#, fuzzy
msgid "(db package)"
msgstr "ÎÅÔ ÐÁËÅÔÏ×\n"
#: lib/depends.c:832
#: lib/depends.c:830
#, fuzzy, c-format
msgid "%9s: (%s, %s) added to Depends cache.\n"
msgstr "%s: (%s, %s) ÄÏÂÁ×ÌÅÎÏ × ËÅÛ ÚÁ×ÉÓÉÍÏÓÔÅÊ\n"
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "NO "
msgstr "îåT"
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "YES"
msgstr "äá"
#: lib/depends.c:1175
#: lib/depends.c:1173
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "ÕÄÁÌÑÅÔÓÑ %s-%s-%s \"%s\" ÉÚ ÕÐÏÒÑÄÏÞÅÎÎÙÈ ÚÁ×ÉÓÉÍÏÓÔÅÊ.\n"
#. Record all relations.
#: lib/depends.c:1420
#: lib/depends.c:1415
msgid "========== recording tsort relations\n"
msgstr "========== ÚÁÐÉÓØ ÕÐÏÒÑÄÏÞÅÎÎÙÈ ÚÁ×ÉÓÉÍÏÓÔÅÊ\n"
#. T4. Scan for zeroes.
#: lib/depends.c:1496
#: lib/depends.c:1491
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
msgstr ""
"========== ÓÏÒÔÉÒÏ×ËÁ ÐÁËÅÔÏ× (ÏÞÅÒÅÄÎÏÓÔØ, #predecessors, #succesors, "
"ÇÌÕÂÉÎÁ)\n"
#: lib/depends.c:1573
#: lib/depends.c:1568
msgid "========== successors only (presentation order)\n"
msgstr "========== ÔÏÌØËÏ ÐÏÓÌÅÄÏ×ÁÔÅÌÉ (× ÐÏÒÑÄËÅ ÐÒÅÄÓÔÁ×ÌÅÎÉÑ)\n"
#: lib/depends.c:1633
#: lib/depends.c:1628
msgid "LOOP:\n"
msgstr "ãéëì:\n"
#: lib/depends.c:1670
#: lib/depends.c:1665
msgid "========== continuing tsort ...\n"
msgstr "========== ÐÒÏÄÏÌÖÅÎÉÅ ÕÐÏÒÑÄÏÞÅÎÉÑ ...\n"
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1675
#: lib/depends.c:1670
#, c-format
msgid "rpmdepOrder failed, %d elements remain\n"
msgstr ""
@ -2243,60 +2243,60 @@ msgstr "
msgid "source package expected, binary found\n"
msgstr "ÏÂÎÁÒÕÖÅÎ Ä×ÏÉÞÎÙÊ ÐÁËÅÔ ×ÍÅÓÔÏ ÏÖÉÄÁÅÍÏÇÏ ÉÓÈÏÄÎÏÇÏ\n"
#: lib/psm.c:603
#: lib/psm.c:605
msgid "source package contains no .spec file\n"
msgstr "ÉÓÈÏÄÎÙÊ ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ\n"
#: lib/psm.c:713
#: lib/psm.c:715
#, fuzzy, c-format
msgid "%s: running %s scriptlet\n"
msgstr "%s: ×ÙÐÏÌÎÑÅÔÓÑ ÓÃÅÎÁÒÉÊ %s (ÅÓÌÉ ÅÓÔØ)\n"
#: lib/psm.c:881
#: lib/psm.c:883
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr "ÏÛÉÂËÁ ×ÙÐÏÌÎÅÎÉÑ ÓÃÅÎÁÒÉÑ %s ÉÚ %s-%s-%s, waitpid() ×ÏÚ×ÒÁÔÉÌ %s\n"
#: lib/psm.c:888
#: lib/psm.c:890
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr "ÏÛÉÂËÁ ×ÙÐÏÌÎÅÎÉÑ ÓÃÅÎÁÒÉÑ %s ÉÚ %s-%s-%s, ËÏÄ ×ÏÚ×ÒÁÔÁ %d\n"
#: lib/psm.c:1230
#: lib/psm.c:1232
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s-%s-%s ÓÏÄÅÒÖÉÔ %d ÆÁÊÌÏ×, test = %d\n"
#: lib/psm.c:1349
#: lib/psm.c:1351
#, fuzzy, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr "%s: ÏÛÉÂËÁ ÓÃÅÎÁÒÉÑ %s (%d), %s-%s-%s ÐÒÏÐÕÓËÁÅÔÓÑ\n"
#: lib/psm.c:1466
#: lib/psm.c:1468
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "ÐÏÌØÚÏ×ÁÔÅÌØ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ - ÉÓÐÏÌØÚÕÅÔÓÑ root\n"
#: lib/psm.c:1475
#: lib/psm.c:1477
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "ÇÒÕÐÐÁ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ - ÉÓÐÏÌØÚÕÅÔÓÑ root\n"
#: lib/psm.c:1517
#: lib/psm.c:1519
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "ÒÁÓÐÁËÏ×ËÁ ÁÒÈÉ×Á ÎÅ ÕÄÁÌÁÓØ%s%s: %s\n"
#: lib/psm.c:1518
#: lib/psm.c:1520
msgid " on file "
msgstr " ÎÁ ÆÁÊÌÅ "
#: lib/psm.c:1706
#: lib/psm.c:1708
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s ÏÛÉÂËÁ ÎÁ ÆÁÊÌÅ %s: %s\n"
#: lib/psm.c:1709
#: lib/psm.c:1711
#, c-format
msgid "%s failed: %s\n"
msgstr "%s ÎÅ ÕÄÁÌÏÓØ: %s\n"
@ -2856,7 +2856,7 @@ msgstr "%s
msgid "excluding directory %s\n"
msgstr "ÉÓËÌÀÞÁÅÔÓÑ ËÁÔÁÌÏÇ %s\n"
#: lib/transaction.c:1092
#: lib/transaction.c:1094
msgid "getting list of mounted filesystems\n"
msgstr "ÐÏÌÕÞÅÎÉÅ ÓÐÉÓËÁ ÓÍÏÎÔÉÒÏ×ÁÎÎÙÈ ÆÁÊÌÏ×ÙÈ ÓÉÓÔÅÍ\n"

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-16 15:03-0500\n"
"POT-Creation-Date: 2001-11-16 17:39-0500\n"
"PO-Revision-Date: 1999-04-08 21:37+02:00\n"
"Last-Translator: Stanislav Meduna <stano@eunet.sk>\n"
"Language-Team: Slovak <sk-i18n@rak.isternet.sk>\n"
@ -850,7 +850,7 @@ msgstr "Nie je mo
msgid "Could not open %s: %s\n"
msgstr "Otvorenie %s zlyhalo\n"
#: build/pack.c:603 lib/psm.c:1424
#: build/pack.c:603 lib/psm.c:1426
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "Nie je mo¾né zapísa» balík: %s"
@ -880,7 +880,7 @@ msgstr "Nie je mo
msgid "Unable to write payload to %s: %s\n"
msgstr "Nie je mo¾né zapísa» balík: %s"
#: build/pack.c:683 lib/psm.c:1698
#: build/pack.c:683 lib/psm.c:1700
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapísané: %s\n"
@ -1469,84 +1469,84 @@ msgstr " zlyhalo - "
msgid "cannot open Packages database in %s\n"
msgstr "nie je mo¾né otvori» %s/packages.rpm\n"
#: lib/depends.c:418
#: lib/depends.c:419
#, fuzzy, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr "balík %s nie je nain¹talovaný\n"
#: lib/depends.c:706
#: lib/depends.c:704
msgid "(cached)"
msgstr ""
#: lib/depends.c:731
#: lib/depends.c:729
#, fuzzy
msgid "(rpmrc provides)"
msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n"
#: lib/depends.c:747
#: lib/depends.c:745
#, fuzzy
msgid "(rpmlib provides)"
msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n"
#: lib/depends.c:768
#: lib/depends.c:766
#, fuzzy
msgid "(db files)"
msgstr "chybný stav súboru: %s"
#: lib/depends.c:780
#: lib/depends.c:778
#, fuzzy
msgid "(db provides)"
msgstr "Poskytuje:"
#: lib/depends.c:793
#: lib/depends.c:791
#, fuzzy
msgid "(db package)"
msgstr "nájdených %d balíkov\n"
#: lib/depends.c:832
#: lib/depends.c:830
#, fuzzy, c-format
msgid "%9s: (%s, %s) added to Depends cache.\n"
msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n"
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
#, fuzzy
msgid "NO "
msgstr "NIE JE V PORIADKU"
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "YES"
msgstr ""
#: lib/depends.c:1175
#: lib/depends.c:1173
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "odstraòuje sa index skupín\n"
#. Record all relations.
#: lib/depends.c:1420
#: lib/depends.c:1415
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1496
#: lib/depends.c:1491
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
msgstr ""
#: lib/depends.c:1573
#: lib/depends.c:1568
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1633
#: lib/depends.c:1628
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1670
#: lib/depends.c:1665
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1675
#: lib/depends.c:1670
#, c-format
msgid "rpmdepOrder failed, %d elements remain\n"
msgstr ""
@ -2297,61 +2297,61 @@ msgstr "nie je mo
msgid "source package expected, binary found\n"
msgstr "oèakávaný zdrojový balík, nájdený binárny"
#: lib/psm.c:603
#: lib/psm.c:605
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "zdrojový balík neobsahuje ¾iadny .spec súbor"
#: lib/psm.c:713
#: lib/psm.c:715
#, fuzzy, c-format
msgid "%s: running %s scriptlet\n"
msgstr "vykonávajú sa poin¹talaèné skripty (ak existujú)\n"
#: lib/psm.c:881
#: lib/psm.c:883
#, fuzzy, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr "vykonanie skriptu zlyhalo"
#: lib/psm.c:888
#: lib/psm.c:890
#, fuzzy, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr "vykonanie skriptu zlyhalo"
#: lib/psm.c:1230
#: lib/psm.c:1232
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "balík: %s-%s-%s test súborov = %d\n"
#: lib/psm.c:1349
#: lib/psm.c:1351
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1466
#: lib/psm.c:1468
#, fuzzy, c-format
msgid "user %s does not exist - using root\n"
msgstr "pou¾ívateµ %s neexistuje - pou¾ije sa root"
#: lib/psm.c:1475
#: lib/psm.c:1477
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "skupina %s neexistuje - pou¾ije sa root"
#: lib/psm.c:1517
#: lib/psm.c:1519
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "rozbalenie archívu zlyhalo%s%s: %s"
#: lib/psm.c:1518
#: lib/psm.c:1520
msgid " on file "
msgstr " pre súbor "
#: lib/psm.c:1706
#: lib/psm.c:1708
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "nepodarilo sa otvori» %s: %s"
#: lib/psm.c:1709
#: lib/psm.c:1711
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s zlyhalo"
@ -2922,7 +2922,7 @@ msgstr "%s vynechan
msgid "excluding directory %s\n"
msgstr "vytvára sa adresár %s\n"
#: lib/transaction.c:1092
#: lib/transaction.c:1094
msgid "getting list of mounted filesystems\n"
msgstr ""

View File

@ -1,12 +1,12 @@
# -*- mode:po; coding:iso-latin-2; -*- Slovenian messages for Redhat pkg. mngr.
# Copyright (C) 2000 Free Software Foundation, Inc.
# Primo¾ Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>, 2000.
# $Id: sl.po,v 1.207 2001/11/16 20:26:27 jbj Exp $
# $Id: sl.po,v 1.208 2001/11/16 22:42:43 jbj Exp $
#
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-16 15:03-0500\n"
"POT-Creation-Date: 2001-11-16 17:39-0500\n"
"PO-Revision-Date: 2000-10-08 19:05+0200\n"
"Last-Translator: Grega Fajdiga <gregor.fajdiga@telemach.net>\n"
"Language-Team: Slovenian <sl@li.org>\n"
@ -848,7 +848,7 @@ msgstr "Ikone %s ni mo
msgid "Could not open %s: %s\n"
msgstr "Ni mo¾no odpreti %s: %s\n"
#: build/pack.c:603 lib/psm.c:1424
#: build/pack.c:603 lib/psm.c:1426
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "Ni mo¾no zapisati paketa: %s"
@ -878,7 +878,7 @@ msgstr "Ikone %s ni mo
msgid "Unable to write payload to %s: %s\n"
msgstr "Ni mo¾no zapisati paketa %s: %s"
#: build/pack.c:683 lib/psm.c:1698
#: build/pack.c:683 lib/psm.c:1700
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapisano: %s\n"
@ -1470,84 +1470,84 @@ msgstr " neuspe
msgid "cannot open Packages database in %s\n"
msgstr "zbirko podatkov paketov ni mo¾no odpreti v %s\n"
#: lib/depends.c:418
#: lib/depends.c:419
#, fuzzy, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr "paket %s-%s-%s je ¾e name¹èen"
#: lib/depends.c:706
#: lib/depends.c:704
msgid "(cached)"
msgstr ""
#: lib/depends.c:731
#: lib/depends.c:729
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %-45s DA (rpmrc ponudbe)\n"
#: lib/depends.c:747
#: lib/depends.c:745
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %-45s DA (rpmlib ponudbe)\n"
#: lib/depends.c:768
#: lib/depends.c:766
#, fuzzy
msgid "(db files)"
msgstr "po¹kodovana zbirka podatkov %s"
#: lib/depends.c:780
#: lib/depends.c:778
#, fuzzy
msgid "(db provides)"
msgstr "%s: %-45s DA (db ponudbe)\n"
#: lib/depends.c:793
#: lib/depends.c:791
#, fuzzy
msgid "(db package)"
msgstr "ni paketov\n"
#: lib/depends.c:832
#: lib/depends.c:830
#, fuzzy, c-format
msgid "%9s: (%s, %s) added to Depends cache.\n"
msgstr "%s: (%s, %s) dodano v predpomnilnik Depends.\n"
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
#, fuzzy
msgid "NO "
msgstr "NI DOBRO"
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "YES"
msgstr ""
#: lib/depends.c:1175
#: lib/depends.c:1173
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "odstranjujemo seznam skupin\n"
#. Record all relations.
#: lib/depends.c:1420
#: lib/depends.c:1415
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1496
#: lib/depends.c:1491
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
msgstr ""
#: lib/depends.c:1573
#: lib/depends.c:1568
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1633
#: lib/depends.c:1628
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1670
#: lib/depends.c:1665
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1675
#: lib/depends.c:1670
#, c-format
msgid "rpmdepOrder failed, %d elements remain\n"
msgstr ""
@ -2296,61 +2296,61 @@ msgstr "pisanje na %s ni mo
msgid "source package expected, binary found\n"
msgstr "prièakovan je bil izvorni paket, najden binarni"
#: lib/psm.c:603
#: lib/psm.c:605
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "izvorni paket ne vsebuje datoteke .spec"
#: lib/psm.c:713
#: lib/psm.c:715
#, fuzzy, c-format
msgid "%s: running %s scriptlet\n"
msgstr "poganjanje ponamestitvenih skript (èe obstajajo)\n"
#: lib/psm.c:881
#: lib/psm.c:883
#, fuzzy, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr "skript se ni uspe¹no izvedel"
#: lib/psm.c:888
#: lib/psm.c:890
#, fuzzy, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr "skript se ni uspe¹no izvedel"
#: lib/psm.c:1230
#: lib/psm.c:1232
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "paket: %s-%s-%s datoteke test = %d\n"
#: lib/psm.c:1349
#: lib/psm.c:1351
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1466
#: lib/psm.c:1468
#, fuzzy, c-format
msgid "user %s does not exist - using root\n"
msgstr "uporabnik %s ne obstaja - uporabljam root"
#: lib/psm.c:1475
#: lib/psm.c:1477
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "skupina %s ne obstaja - uporabljam root"
#: lib/psm.c:1517
#: lib/psm.c:1519
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "raz¹iritev arhiva je bilo neuspe¹no%s%s: %s"
#: lib/psm.c:1518
#: lib/psm.c:1520
msgid " on file "
msgstr " za datoteko "
#: lib/psm.c:1706
#: lib/psm.c:1708
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "neuspe¹no odpiranje %s: %s\n"
#: lib/psm.c:1709
#: lib/psm.c:1711
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s neuspe¹en"
@ -2920,7 +2920,7 @@ msgstr "%s presko
msgid "excluding directory %s\n"
msgstr "izkljuèevanje imenika %s\n"
#: lib/transaction.c:1092
#: lib/transaction.c:1094
msgid "getting list of mounted filesystems\n"
msgstr "zbiranje seznama priklopljenih datoteènih sistemov.\n"

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-16 15:03-0500\n"
"POT-Creation-Date: 2001-11-16 17:39-0500\n"
"Content-Type: text/plain; charset=\n"
"Date: 1998-05-02 21:41:47-0400\n"
@ -833,7 +833,7 @@ msgstr "Ne mogu da upi
msgid "Could not open %s: %s\n"
msgstr "neuspelo otvaranje %s\n"
#: build/pack.c:603 lib/psm.c:1424
#: build/pack.c:603 lib/psm.c:1426
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "Ne mogu da upi¹em %s"
@ -863,7 +863,7 @@ msgstr "Ne mogu da upi
msgid "Unable to write payload to %s: %s\n"
msgstr "Ne mogu da upi¹em %s"
#: build/pack.c:683 lib/psm.c:1698
#: build/pack.c:683 lib/psm.c:1700
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1454,83 +1454,83 @@ msgstr "PGP omanuo"
msgid "cannot open Packages database in %s\n"
msgstr "gre¹ka: ne mogu da otvorim %s%s/packages.rpm\n"
#: lib/depends.c:418
#: lib/depends.c:419
#, fuzzy, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr "paket %s nije instaliran\n"
#: lib/depends.c:706
#: lib/depends.c:704
msgid "(cached)"
msgstr ""
#: lib/depends.c:731
#: lib/depends.c:729
#, fuzzy
msgid "(rpmrc provides)"
msgstr "datoteka %s ne pripada nijednom paketu\n"
#: lib/depends.c:747
#: lib/depends.c:745
#, fuzzy
msgid "(rpmlib provides)"
msgstr "datoteka %s ne pripada nijednom paketu\n"
#: lib/depends.c:768
#: lib/depends.c:766
#, fuzzy
msgid "(db files)"
msgstr "neuspelo otvaranje %s: %s"
#: lib/depends.c:780
#: lib/depends.c:778
#, fuzzy
msgid "(db provides)"
msgstr "datoteka %s ne pripada nijednom paketu\n"
#: lib/depends.c:793
#: lib/depends.c:791
#, fuzzy
msgid "(db package)"
msgstr "upit nad svim paketima"
#: lib/depends.c:832
#: lib/depends.c:830
#, fuzzy, c-format
msgid "%9s: (%s, %s) added to Depends cache.\n"
msgstr "datoteka %s ne pripada nijednom paketu\n"
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "NO "
msgstr ""
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "YES"
msgstr ""
#: lib/depends.c:1175
#: lib/depends.c:1173
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "gre¹ka uklanjanja sloga %s u %s"
#. Record all relations.
#: lib/depends.c:1420
#: lib/depends.c:1415
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1496
#: lib/depends.c:1491
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
msgstr ""
#: lib/depends.c:1573
#: lib/depends.c:1568
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1633
#: lib/depends.c:1628
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1670
#: lib/depends.c:1665
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1675
#: lib/depends.c:1670
#, c-format
msgid "rpmdepOrder failed, %d elements remain\n"
msgstr ""
@ -2282,61 +2282,61 @@ msgstr "Ne mogu da otvorim datoteku %s: "
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:603
#: lib/psm.c:605
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "upit nad paketom koji ima <datoteku>"
#: lib/psm.c:713
#: lib/psm.c:715
#, fuzzy, c-format
msgid "%s: running %s scriptlet\n"
msgstr "nemoj izvr¹iti nijednu fazu"
#: lib/psm.c:881
#: lib/psm.c:883
#, fuzzy, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr "neuspelo izvr¹avanje skripta"
#: lib/psm.c:888
#: lib/psm.c:890
#, fuzzy, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr "neuspelo izvr¹avanje skripta"
#: lib/psm.c:1230
#: lib/psm.c:1232
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
#: lib/psm.c:1349
#: lib/psm.c:1351
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1466
#: lib/psm.c:1468
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1475
#: lib/psm.c:1477
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "grupa %s ne sadr¾i nijedan paket\n"
#: lib/psm.c:1517
#: lib/psm.c:1519
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "neuspelo otvaranje %s: %s\n"
#: lib/psm.c:1518
#: lib/psm.c:1520
msgid " on file "
msgstr ""
#: lib/psm.c:1706
#: lib/psm.c:1708
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "neuspelo otvaranje %s: %s"
#: lib/psm.c:1709
#: lib/psm.c:1711
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "PGP omanuo"
@ -2911,7 +2911,7 @@ msgstr ""
msgid "excluding directory %s\n"
msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
#: lib/transaction.c:1092
#: lib/transaction.c:1094
msgid "getting list of mounted filesystems\n"
msgstr ""

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-16 15:03-0500\n"
"POT-Creation-Date: 2001-11-16 17:39-0500\n"
"PO-Revision-Date: 2001-09-12 14:18+0200\n"
"Last-Translator: Göran Uddeborg <goeran@uddeborg.pp.se>\n"
"Language-Team: Swedish <sv@li.org>\n"
@ -825,7 +825,7 @@ msgstr "Kan inte l
msgid "Could not open %s: %s\n"
msgstr "Kunde inte öppna %s: %s\n"
#: build/pack.c:603 lib/psm.c:1424
#: build/pack.c:603 lib/psm.c:1426
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Kunde inte skriva paket: %s\n"
@ -855,7 +855,7 @@ msgstr "Kan inte l
msgid "Unable to write payload to %s: %s\n"
msgstr "Kan inte skriva last till %s: %s\n"
#: build/pack.c:683 lib/psm.c:1698
#: build/pack.c:683 lib/psm.c:1700
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrev: %s\n"
@ -1431,84 +1431,84 @@ msgstr " misslyckades - "
msgid "cannot open Packages database in %s\n"
msgstr "kan inte öppna paketdatabas i %s\n"
#: lib/depends.c:418
#: lib/depends.c:419
#, fuzzy, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr "paket %s är redan installerat"
#: lib/depends.c:706
#: lib/depends.c:704
msgid "(cached)"
msgstr ""
#: lib/depends.c:731
#: lib/depends.c:729
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %-45s JA (rpmrc tillhandahåller)\n"
#: lib/depends.c:747
#: lib/depends.c:745
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %-45s JA (rpmlib tillhandahåller)\n"
#: lib/depends.c:768
#: lib/depends.c:766
#, fuzzy
msgid "(db files)"
msgstr "felaktig db-fil %s\n"
#: lib/depends.c:780
#: lib/depends.c:778
#, fuzzy
msgid "(db provides)"
msgstr "%s: %-45s JA (db-tillhandahållande)\n"
#: lib/depends.c:793
#: lib/depends.c:791
#, fuzzy
msgid "(db package)"
msgstr "inga paket\n"
#: lib/depends.c:832
#: lib/depends.c:830
#, fuzzy, c-format
msgid "%9s: (%s, %s) added to Depends cache.\n"
msgstr "%s: (%s, %s) tillagt till beroendecachen.\n"
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "NO "
msgstr "NEJ "
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "YES"
msgstr "JA"
#: lib/depends.c:1175
#: lib/depends.c:1173
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "tar bort %s-%s-%s \"%s\" från tsort-relationer.\n"
#. Record all relations.
#: lib/depends.c:1420
#: lib/depends.c:1415
msgid "========== recording tsort relations\n"
msgstr "========== noterar alla relationer\n"
#. T4. Scan for zeroes.
#: lib/depends.c:1496
#: lib/depends.c:1491
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
msgstr ""
"========== tsort:erar paket (ordning, #föregångare, #efterföljare, djup)\n"
#: lib/depends.c:1573
#: lib/depends.c:1568
msgid "========== successors only (presentation order)\n"
msgstr "========== endast efterföljare (presentationsordning)\n"
#: lib/depends.c:1633
#: lib/depends.c:1628
msgid "LOOP:\n"
msgstr "LOOP:\n"
#: lib/depends.c:1670
#: lib/depends.c:1665
msgid "========== continuing tsort ...\n"
msgstr "========== fortsätter med tsort ...\n"
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1675
#: lib/depends.c:1670
#, c-format
msgid "rpmdepOrder failed, %d elements remain\n"
msgstr ""
@ -2226,61 +2226,61 @@ msgstr "kan inte skriva till %%%s %s\n"
msgid "source package expected, binary found\n"
msgstr "källpaket förväntades, fann binärpaket\n"
#: lib/psm.c:603
#: lib/psm.c:605
msgid "source package contains no .spec file\n"
msgstr "källpaket innehåller ingen .spec-fil\n"
#: lib/psm.c:713
#: lib/psm.c:715
#, fuzzy, c-format
msgid "%s: running %s scriptlet\n"
msgstr "%s: kör (eventuellt) %s-skript\n"
#: lib/psm.c:881
#: lib/psm.c:883
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr ""
"körning av %s-skript från %s-%s-%s misslyckades, waitpid returnerade %s\n"
#: lib/psm.c:888
#: lib/psm.c:890
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr "körning av %s-skript från %s-%s-%s misslyckades, slutstatus %d\n"
#: lib/psm.c:1230
#: lib/psm.c:1232
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s-%s-%s har %d filer, test = %d\n"
#: lib/psm.c:1349
#: lib/psm.c:1351
#, fuzzy, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr "%s: %s-skript misslyckades (%d), hoppar över %s-%s-%s\n"
#: lib/psm.c:1466
#: lib/psm.c:1468
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "användare %s finns inte - använder root\n"
#: lib/psm.c:1475
#: lib/psm.c:1477
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "grupp %s finns inte - använder root\n"
#: lib/psm.c:1517
#: lib/psm.c:1519
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "uppackning av arkiv misslyckades%s%s: %s\n"
#: lib/psm.c:1518
#: lib/psm.c:1520
msgid " on file "
msgstr " vid fil "
#: lib/psm.c:1706
#: lib/psm.c:1708
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s misslyckades på fil %s: %s\n"
#: lib/psm.c:1709
#: lib/psm.c:1711
#, c-format
msgid "%s failed: %s\n"
msgstr "%s misslyckades: %s\n"
@ -2841,7 +2841,7 @@ msgstr "%s
msgid "excluding directory %s\n"
msgstr "hoppar över katalogen %s\n"
#: lib/transaction.c:1092
#: lib/transaction.c:1094
msgid "getting list of mounted filesystems\n"
msgstr "hämtar lista över monterade filsystem\n"

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-16 15:03-0500\n"
"POT-Creation-Date: 2001-11-16 17:39-0500\n"
"PO-Revision-Date: 2001-07-05 08:02+300\n"
"Last-Translator: Nilgun Belma Buguner <nilgun@technologist.com>\n"
"Language-Team: Turkish <tr@li.org>\n"
@ -836,7 +836,7 @@ msgstr "%s'den ba
msgid "Could not open %s: %s\n"
msgstr "%s açýlamadý: %s\n"
#: build/pack.c:603 lib/psm.c:1424
#: build/pack.c:603 lib/psm.c:1426
#, c-format
msgid "Unable to write package: %s\n"
msgstr "paket yazýlamadý: %s\n"
@ -866,7 +866,7 @@ msgstr "%s'den payload okunamad
msgid "Unable to write payload to %s: %s\n"
msgstr "%s'e payload yazýlamadý: %s\n"
#: build/pack.c:683 lib/psm.c:1698
#: build/pack.c:683 lib/psm.c:1700
#, c-format
msgid "Wrote: %s\n"
msgstr "Yazýldý: %s\n"
@ -1451,84 +1451,84 @@ msgstr " ba
msgid "cannot open Packages database in %s\n"
msgstr "%s de Paket veritabaný açýlamadý\n"
#: lib/depends.c:418
#: lib/depends.c:419
#, fuzzy, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr "%s zaten kurulu"
#: lib/depends.c:706
#: lib/depends.c:704
msgid "(cached)"
msgstr ""
#: lib/depends.c:731
#: lib/depends.c:729
#, fuzzy
msgid "(rpmrc provides)"
msgstr "%s: %-45s EVET (rpmrc saðlar)\n"
#: lib/depends.c:747
#: lib/depends.c:745
#, fuzzy
msgid "(rpmlib provides)"
msgstr "%s: %-45s EVET (rpmlib saðlar)\n"
#: lib/depends.c:768
#: lib/depends.c:766
#, fuzzy
msgid "(db files)"
msgstr "db dosyasý %s hatalý\n"
#: lib/depends.c:780
#: lib/depends.c:778
#, fuzzy
msgid "(db provides)"
msgstr "%s: %-45s EVET (db saðlar)\n"
#: lib/depends.c:793
#: lib/depends.c:791
#, fuzzy
msgid "(db package)"
msgstr "paket yok\n"
#: lib/depends.c:832
#: lib/depends.c:830
#, fuzzy, c-format
msgid "%9s: (%s, %s) added to Depends cache.\n"
msgstr "%s: (%s, %s) Baðýmlýlar alanýna eklendi.\n"
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "NO "
msgstr "HAYIR "
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "YES"
msgstr "EVET"
#: lib/depends.c:1175
#: lib/depends.c:1173
#, fuzzy, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr "tsort baðýntýlarýndan %s-%s-%s \"%s\" kaldýrýlýyor\n"
#. Record all relations.
#: lib/depends.c:1420
#: lib/depends.c:1415
msgid "========== recording tsort relations\n"
msgstr "========== tsort baðýntýlarý kaydediliyor\n"
#. T4. Scan for zeroes.
#: lib/depends.c:1496
#: lib/depends.c:1491
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
msgstr ""
"========== paketler tsort'lanýyor (sýra, #öncüller, #ardýllar, derinlik)\n"
#: lib/depends.c:1573
#: lib/depends.c:1568
msgid "========== successors only (presentation order)\n"
msgstr "========== sadece ardýllar (sunum sýrasý)\n"
#: lib/depends.c:1633
#: lib/depends.c:1628
msgid "LOOP:\n"
msgstr "ÇEVRÝM:\n"
#: lib/depends.c:1670
#: lib/depends.c:1665
msgid "========== continuing tsort ...\n"
msgstr "========== tsort sürüyor ...\n"
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1675
#: lib/depends.c:1670
#, c-format
msgid "rpmdepOrder failed, %d elements remain\n"
msgstr ""
@ -2250,60 +2250,60 @@ msgstr "%%%s dosyas
msgid "source package expected, binary found\n"
msgstr "kaynak paketi gerekirken çalýþtýrýlabilir paketi bulundu\n"
#: lib/psm.c:603
#: lib/psm.c:605
msgid "source package contains no .spec file\n"
msgstr "kaynak paketi .spec dosyasý içermiyor\n"
#: lib/psm.c:713
#: lib/psm.c:715
#, fuzzy, c-format
msgid "%s: running %s scriptlet\n"
msgstr "%s: %s betiði çalýþtýrýlýyor (varsa)\n"
#: lib/psm.c:881
#: lib/psm.c:883
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr "%s betiðinin %s-%s-%s'den icrasý baþarýsýz, waitpid sonucu %s\n"
#: lib/psm.c:888
#: lib/psm.c:890
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr "%s betiðinin %s-%s-%s'den icrasý baþarýsýz, çýkýþta durum %d\n"
#: lib/psm.c:1230
#: lib/psm.c:1232
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s-%s-%s %d dosya içeriyor, test = %d\n"
#: lib/psm.c:1349
#: lib/psm.c:1351
#, fuzzy, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr "%s: %s betiði baþarýsýz (%d), %s-%s-%s atlanýyor\n"
#: lib/psm.c:1466
#: lib/psm.c:1468
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "kullanýcý %s yok - root kullanýlacak\n"
#: lib/psm.c:1475
#: lib/psm.c:1477
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "grup %s yok - root kullanýlacak\n"
#: lib/psm.c:1517
#: lib/psm.c:1519
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "arþiv paketi açýlýrken baþarýsýz%s%s: %s\n"
#: lib/psm.c:1518
#: lib/psm.c:1520
msgid " on file "
msgstr " dosyada "
#: lib/psm.c:1706
#: lib/psm.c:1708
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s açýlamadý: %s\n"
#: lib/psm.c:1709
#: lib/psm.c:1711
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s baþarýsýz\n"
@ -2862,7 +2862,7 @@ msgstr "missingok flamas
msgid "excluding directory %s\n"
msgstr "%s dizini dýþlanýyor\n"
#: lib/transaction.c:1092
#: lib/transaction.c:1094
msgid "getting list of mounted filesystems\n"
msgstr "baðlý dosya sistemlerinin listesi alýnýyor\n"

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-16 15:03-0500\n"
"POT-Creation-Date: 2001-11-16 17:39-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -816,7 +816,7 @@ msgstr ""
msgid "Could not open %s: %s\n"
msgstr ""
#: build/pack.c:603 lib/psm.c:1424
#: build/pack.c:603 lib/psm.c:1426
#, c-format
msgid "Unable to write package: %s\n"
msgstr ""
@ -846,7 +846,7 @@ msgstr ""
msgid "Unable to write payload to %s: %s\n"
msgstr ""
#: build/pack.c:683 lib/psm.c:1698
#: build/pack.c:683 lib/psm.c:1700
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1415,78 +1415,78 @@ msgstr ""
msgid "cannot open Packages database in %s\n"
msgstr ""
#: lib/depends.c:418
#: lib/depends.c:419
#, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr ""
#: lib/depends.c:706
#: lib/depends.c:704
msgid "(cached)"
msgstr ""
#: lib/depends.c:731
#: lib/depends.c:729
msgid "(rpmrc provides)"
msgstr ""
#: lib/depends.c:747
#: lib/depends.c:745
msgid "(rpmlib provides)"
msgstr ""
#: lib/depends.c:768
#: lib/depends.c:766
msgid "(db files)"
msgstr ""
#: lib/depends.c:780
#: lib/depends.c:778
msgid "(db provides)"
msgstr ""
#: lib/depends.c:793
#: lib/depends.c:791
msgid "(db package)"
msgstr ""
#: lib/depends.c:832
#: lib/depends.c:830
#, c-format
msgid "%9s: (%s, %s) added to Depends cache.\n"
msgstr ""
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "NO "
msgstr ""
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "YES"
msgstr ""
#: lib/depends.c:1175
#: lib/depends.c:1173
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1420
#: lib/depends.c:1415
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1496
#: lib/depends.c:1491
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
msgstr ""
#: lib/depends.c:1573
#: lib/depends.c:1568
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1633
#: lib/depends.c:1628
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1670
#: lib/depends.c:1665
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1675
#: lib/depends.c:1670
#, c-format
msgid "rpmdepOrder failed, %d elements remain\n"
msgstr ""
@ -2183,60 +2183,60 @@ msgstr ""
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:603
#: lib/psm.c:605
msgid "source package contains no .spec file\n"
msgstr ""
#: lib/psm.c:713
#: lib/psm.c:715
#, c-format
msgid "%s: running %s scriptlet\n"
msgstr ""
#: lib/psm.c:881
#: lib/psm.c:883
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr ""
#: lib/psm.c:888
#: lib/psm.c:890
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1230
#: lib/psm.c:1232
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:1349
#: lib/psm.c:1351
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1466
#: lib/psm.c:1468
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1475
#: lib/psm.c:1477
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1517
#: lib/psm.c:1519
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:1518
#: lib/psm.c:1520
msgid " on file "
msgstr ""
#: lib/psm.c:1706
#: lib/psm.c:1708
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
#: lib/psm.c:1709
#: lib/psm.c:1711
#, c-format
msgid "%s failed: %s\n"
msgstr ""
@ -2788,7 +2788,7 @@ msgstr ""
msgid "excluding directory %s\n"
msgstr ""
#: lib/transaction.c:1092
#: lib/transaction.c:1094
msgid "getting list of mounted filesystems\n"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-16 15:03-0500\n"
"POT-Creation-Date: 2001-11-16 17:39-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -816,7 +816,7 @@ msgstr ""
msgid "Could not open %s: %s\n"
msgstr ""
#: build/pack.c:603 lib/psm.c:1424
#: build/pack.c:603 lib/psm.c:1426
#, c-format
msgid "Unable to write package: %s\n"
msgstr ""
@ -846,7 +846,7 @@ msgstr ""
msgid "Unable to write payload to %s: %s\n"
msgstr ""
#: build/pack.c:683 lib/psm.c:1698
#: build/pack.c:683 lib/psm.c:1700
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1415,78 +1415,78 @@ msgstr ""
msgid "cannot open Packages database in %s\n"
msgstr ""
#: lib/depends.c:418
#: lib/depends.c:419
#, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr ""
#: lib/depends.c:706
#: lib/depends.c:704
msgid "(cached)"
msgstr ""
#: lib/depends.c:731
#: lib/depends.c:729
msgid "(rpmrc provides)"
msgstr ""
#: lib/depends.c:747
#: lib/depends.c:745
msgid "(rpmlib provides)"
msgstr ""
#: lib/depends.c:768
#: lib/depends.c:766
msgid "(db files)"
msgstr ""
#: lib/depends.c:780
#: lib/depends.c:778
msgid "(db provides)"
msgstr ""
#: lib/depends.c:793
#: lib/depends.c:791
msgid "(db package)"
msgstr ""
#: lib/depends.c:832
#: lib/depends.c:830
#, c-format
msgid "%9s: (%s, %s) added to Depends cache.\n"
msgstr ""
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "NO "
msgstr ""
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "YES"
msgstr ""
#: lib/depends.c:1175
#: lib/depends.c:1173
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1420
#: lib/depends.c:1415
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1496
#: lib/depends.c:1491
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
msgstr ""
#: lib/depends.c:1573
#: lib/depends.c:1568
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1633
#: lib/depends.c:1628
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1670
#: lib/depends.c:1665
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1675
#: lib/depends.c:1670
#, c-format
msgid "rpmdepOrder failed, %d elements remain\n"
msgstr ""
@ -2183,60 +2183,60 @@ msgstr ""
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:603
#: lib/psm.c:605
msgid "source package contains no .spec file\n"
msgstr ""
#: lib/psm.c:713
#: lib/psm.c:715
#, c-format
msgid "%s: running %s scriptlet\n"
msgstr ""
#: lib/psm.c:881
#: lib/psm.c:883
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr ""
#: lib/psm.c:888
#: lib/psm.c:890
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1230
#: lib/psm.c:1232
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:1349
#: lib/psm.c:1351
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1466
#: lib/psm.c:1468
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1475
#: lib/psm.c:1477
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1517
#: lib/psm.c:1519
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:1518
#: lib/psm.c:1520
msgid " on file "
msgstr ""
#: lib/psm.c:1706
#: lib/psm.c:1708
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
#: lib/psm.c:1709
#: lib/psm.c:1711
#, c-format
msgid "%s failed: %s\n"
msgstr ""
@ -2788,7 +2788,7 @@ msgstr ""
msgid "excluding directory %s\n"
msgstr ""
#: lib/transaction.c:1092
#: lib/transaction.c:1094
msgid "getting list of mounted filesystems\n"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-16 15:03-0500\n"
"POT-Creation-Date: 2001-11-16 17:39-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -816,7 +816,7 @@ msgstr ""
msgid "Could not open %s: %s\n"
msgstr ""
#: build/pack.c:603 lib/psm.c:1424
#: build/pack.c:603 lib/psm.c:1426
#, c-format
msgid "Unable to write package: %s\n"
msgstr ""
@ -846,7 +846,7 @@ msgstr ""
msgid "Unable to write payload to %s: %s\n"
msgstr ""
#: build/pack.c:683 lib/psm.c:1698
#: build/pack.c:683 lib/psm.c:1700
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1415,78 +1415,78 @@ msgstr ""
msgid "cannot open Packages database in %s\n"
msgstr ""
#: lib/depends.c:418
#: lib/depends.c:419
#, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr ""
#: lib/depends.c:706
#: lib/depends.c:704
msgid "(cached)"
msgstr ""
#: lib/depends.c:731
#: lib/depends.c:729
msgid "(rpmrc provides)"
msgstr ""
#: lib/depends.c:747
#: lib/depends.c:745
msgid "(rpmlib provides)"
msgstr ""
#: lib/depends.c:768
#: lib/depends.c:766
msgid "(db files)"
msgstr ""
#: lib/depends.c:780
#: lib/depends.c:778
msgid "(db provides)"
msgstr ""
#: lib/depends.c:793
#: lib/depends.c:791
msgid "(db package)"
msgstr ""
#: lib/depends.c:832
#: lib/depends.c:830
#, c-format
msgid "%9s: (%s, %s) added to Depends cache.\n"
msgstr ""
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "NO "
msgstr ""
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "YES"
msgstr ""
#: lib/depends.c:1175
#: lib/depends.c:1173
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1420
#: lib/depends.c:1415
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1496
#: lib/depends.c:1491
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
msgstr ""
#: lib/depends.c:1573
#: lib/depends.c:1568
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1633
#: lib/depends.c:1628
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1670
#: lib/depends.c:1665
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1675
#: lib/depends.c:1670
#, c-format
msgid "rpmdepOrder failed, %d elements remain\n"
msgstr ""
@ -2183,60 +2183,60 @@ msgstr ""
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:603
#: lib/psm.c:605
msgid "source package contains no .spec file\n"
msgstr ""
#: lib/psm.c:713
#: lib/psm.c:715
#, c-format
msgid "%s: running %s scriptlet\n"
msgstr ""
#: lib/psm.c:881
#: lib/psm.c:883
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr ""
#: lib/psm.c:888
#: lib/psm.c:890
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1230
#: lib/psm.c:1232
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:1349
#: lib/psm.c:1351
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1466
#: lib/psm.c:1468
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1475
#: lib/psm.c:1477
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1517
#: lib/psm.c:1519
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:1518
#: lib/psm.c:1520
msgid " on file "
msgstr ""
#: lib/psm.c:1706
#: lib/psm.c:1708
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
#: lib/psm.c:1709
#: lib/psm.c:1711
#, c-format
msgid "%s failed: %s\n"
msgstr ""
@ -2788,7 +2788,7 @@ msgstr ""
msgid "excluding directory %s\n"
msgstr ""
#: lib/transaction.c:1092
#: lib/transaction.c:1094
msgid "getting list of mounted filesystems\n"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-16 15:03-0500\n"
"POT-Creation-Date: 2001-11-16 17:39-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -816,7 +816,7 @@ msgstr ""
msgid "Could not open %s: %s\n"
msgstr ""
#: build/pack.c:603 lib/psm.c:1424
#: build/pack.c:603 lib/psm.c:1426
#, c-format
msgid "Unable to write package: %s\n"
msgstr ""
@ -846,7 +846,7 @@ msgstr ""
msgid "Unable to write payload to %s: %s\n"
msgstr ""
#: build/pack.c:683 lib/psm.c:1698
#: build/pack.c:683 lib/psm.c:1700
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1415,78 +1415,78 @@ msgstr ""
msgid "cannot open Packages database in %s\n"
msgstr ""
#: lib/depends.c:418
#: lib/depends.c:419
#, c-format
msgid "package %s was already added, replacing with %s\n"
msgstr ""
#: lib/depends.c:706
#: lib/depends.c:704
msgid "(cached)"
msgstr ""
#: lib/depends.c:731
#: lib/depends.c:729
msgid "(rpmrc provides)"
msgstr ""
#: lib/depends.c:747
#: lib/depends.c:745
msgid "(rpmlib provides)"
msgstr ""
#: lib/depends.c:768
#: lib/depends.c:766
msgid "(db files)"
msgstr ""
#: lib/depends.c:780
#: lib/depends.c:778
msgid "(db provides)"
msgstr ""
#: lib/depends.c:793
#: lib/depends.c:791
msgid "(db package)"
msgstr ""
#: lib/depends.c:832
#: lib/depends.c:830
#, c-format
msgid "%9s: (%s, %s) added to Depends cache.\n"
msgstr ""
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "NO "
msgstr ""
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
#: lib/depends.c:832 lib/rpmds.c:407 lib/rpmds.c:566
msgid "YES"
msgstr ""
#: lib/depends.c:1175
#: lib/depends.c:1173
#, c-format
msgid "removing %s \"%s\" from tsort relations.\n"
msgstr ""
#. Record all relations.
#: lib/depends.c:1420
#: lib/depends.c:1415
msgid "========== recording tsort relations\n"
msgstr ""
#. T4. Scan for zeroes.
#: lib/depends.c:1496
#: lib/depends.c:1491
msgid ""
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
msgstr ""
#: lib/depends.c:1573
#: lib/depends.c:1568
msgid "========== successors only (presentation order)\n"
msgstr ""
#: lib/depends.c:1633
#: lib/depends.c:1628
msgid "LOOP:\n"
msgstr ""
#: lib/depends.c:1670
#: lib/depends.c:1665
msgid "========== continuing tsort ...\n"
msgstr ""
#. Return no. of packages that could not be ordered.
#: lib/depends.c:1675
#: lib/depends.c:1670
#, c-format
msgid "rpmdepOrder failed, %d elements remain\n"
msgstr ""
@ -2183,60 +2183,60 @@ msgstr ""
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:603
#: lib/psm.c:605
msgid "source package contains no .spec file\n"
msgstr ""
#: lib/psm.c:713
#: lib/psm.c:715
#, c-format
msgid "%s: running %s scriptlet\n"
msgstr ""
#: lib/psm.c:881
#: lib/psm.c:883
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr ""
#: lib/psm.c:888
#: lib/psm.c:890
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1230
#: lib/psm.c:1232
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:1349
#: lib/psm.c:1351
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
#: lib/psm.c:1466
#: lib/psm.c:1468
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1475
#: lib/psm.c:1477
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:1517
#: lib/psm.c:1519
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:1518
#: lib/psm.c:1520
msgid " on file "
msgstr ""
#: lib/psm.c:1706
#: lib/psm.c:1708
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
#: lib/psm.c:1709
#: lib/psm.c:1711
#, c-format
msgid "%s failed: %s\n"
msgstr ""
@ -2788,7 +2788,7 @@ msgstr ""
msgid "excluding directory %s\n"
msgstr ""
#: lib/transaction.c:1092
#: lib/transaction.c:1094
msgid "getting list of mounted filesystems\n"
msgstr ""

View File

@ -581,3 +581,4 @@ fi
- tweak overlapped file fingerprint retrieval for speed.
- transaction.c: use wrappers/iterators to access TFI_t.
- annotations to make a transactionElement opaque.
- use array of pointers rather than contiguous array for ts->order.

View File

@ -581,3 +581,4 @@ fi
- tweak overlapped file fingerprint retrieval for speed.
- transaction.c: use wrappers/iterators to access TFI_t.
- annotations to make a transactionElement opaque.
- use array of pointers rather than contiguous array for ts->order.