- no-brainer refcounts for rpmProblemSet object.

CVS patchset: 5163
CVS date: 2001/11/09 17:22:08
This commit is contained in:
jbj 2001-11-09 17:22:08 +00:00
parent eb10f05b85
commit ac15c68ca5
44 changed files with 2349 additions and 2068 deletions

View File

@ -48,6 +48,7 @@
- linear search on added package provides is dumb.
- discarding entire signature header when using --addsign is dumb.
- rip out rpmDependencyConflict, replace with rpmProblem instead.
- no-brainer refcounts for rpmProblemSet object.
4.0.3 -> 4.0.4:

View File

@ -253,7 +253,7 @@ static int removePackage(rpmTransactionSet ts, int dboffset,
return 0;
}
char * hGetNVR(Header h, const char ** np)
char * hGetNEVR(Header h, const char ** np)
{
const char * n, * v, * r;
char * NVR, * t;
@ -276,7 +276,7 @@ int rpmtransAddPackage(rpmTransactionSet ts, Header h, FD_t fd,
int scareMem = _DS_SCAREMEM;
HGE_t hge = (HGE_t)headerGetEntryMinMemory;
const char * name = NULL;
const char * addNVR = hGetNVR(h, &name);
const char * addNVR = hGetNEVR(h, &name);
const char * pkgNVR = NULL;
int duplicate = 0;
transactionElement p;
@ -316,7 +316,7 @@ int rpmtransAddPackage(rpmTransactionSet ts, Header h, FD_t fd,
pkgNVR = _free(pkgNVR);
pname = NULL;
pkgNVR = hGetNVR(ph, &pname);
pkgNVR = hGetNEVR(ph, &pname);
if (strcmp(pname, name)) {
pkgNVR = _free(pkgNVR);
@ -1761,7 +1761,7 @@ int rpmdepCheck(rpmTransactionSet ts,
break;
pkgNVR = _free(pkgNVR);
pkgNVR = hGetNVR(h, NULL);
pkgNVR = hGetNEVR(h, NULL);
multiLib = p->multiLib;
rpmMessage(RPMMESS_DEBUG, "========== +++ %s\n" , pkgNVR);
@ -1911,7 +1911,6 @@ exit:
else if (_cacheDependsRC)
xx = rpmdbCloseDBI(ts->rpmdb, RPMDBI_DEPENDS);
/*@=branchstate@*/
rpmProblemSetFree(ts->probs);
ts->probs = NULL;
ts->probs = rpmProblemSetFree(ts->probs);
return rc;
}

View File

@ -118,7 +118,7 @@ struct rpmTransactionSet_s {
rpmCallbackFunction notify; /*!< Callback function. */
/*@observer@*/ /*@null@*/
rpmCallbackData notifyData; /*!< Callback private data. */
/*@owned@*/
/*@refcounted@*/ /*@null@*/
rpmProblemSet probs; /*!< Current problems in transaction. */
rpmprobFilterFlags ignoreSet;
/*!< Bits to filter current problems. */
@ -153,7 +153,8 @@ struct rpmTransactionSet_s {
int orderCount; /*!< No. of transaction elements. */
int orderAlloced; /*!< No. of allocated transaction elements. */
/*@only@*/ TFI_t flList; /*!< Transaction element(s) file info. */
/*@only@*/
TFI_t flList; /*!< Transaction element(s) file info. */
int flEntries; /*!< No. of transaction elements. */
int chrootDone; /*!< Has chroot(2) been been done? */
@ -281,7 +282,7 @@ transactionElement teNext(teIterator tei, enum rpmTransactionType type)
* @retval np name tag value
* @return name-version-release string
*/
/*@only@*/ char * hGetNVR(Header h, /*@out@*/ const char ** np )
/*@only@*/ char * hGetNEVR(Header h, /*@out@*/ const char ** np )
/*@modifies *np @*/;
#ifdef __cplusplus

View File

@ -14,31 +14,82 @@
/*@access rpmProblem@*/
/*@access rpmProblemSet@*/
rpmProblemSet rpmProblemSetCreate(void)
/*@unchecked@*/
static int _ps_debug = 1;
rpmProblemSet XrpmpsUnlink(rpmProblemSet ps, const char * msg,
const char * fn, unsigned ln)
{
rpmProblemSet probs;
probs = xcalloc(1, sizeof(*probs)); /* XXX memory leak */
probs->numProblems = probs->numProblemsAlloced = 0;
probs->probs = NULL;
return probs;
/*@-modfilesystem@*/
if (_ps_debug)
fprintf(stderr, "--> ps %p -- %d %s at %s:%u\n", ps, ps->nrefs, msg, fn, ln);
/*@=modfilesystem@*/
ps->nrefs--;
return NULL;
}
void rpmProblemSetFree(rpmProblemSet tsprobs)
rpmProblemSet XrpmpsLink(rpmProblemSet ps, const char * msg,
const char * fn, unsigned ln)
{
ps->nrefs++;
/*@-modfilesystem@*/
if (_ps_debug)
fprintf(stderr, "--> ps %p ++ %d %s at %s:%u\n", ps, ps->nrefs, msg, fn, ln);
/*@=modfilesystem@*/
/*@-refcounttrans@*/ return ps; /*@=refcounttrans@*/
}
rpmProblemSet rpmProblemSetCreate(void)
{
rpmProblemSet ps;
ps = xcalloc(1, sizeof(*ps));
ps->numProblems = ps->numProblemsAlloced = 0;
ps->probs = NULL;
ps->nrefs = 0;
return rpmpsLink(ps, "create");
}
/* XXX FIXME: merge into problems */
rpmProblem rpmdepFreeConflicts(rpmProblem probs, int numProblems)
{
int i;
for (i = 0; i < tsprobs->numProblems; i++) {
rpmProblem p = tsprobs->probs + i;
if (probs != NULL)
for (i = 0; i < numProblems; i++) {
rpmProblem p = probs + i;
p->pkgNEVR = _free(p->pkgNEVR);
p->altNEVR = _free(p->altNEVR);
p->str1 = _free(p->str1);
}
tsprobs = _free(tsprobs);
probs = _free(probs);
return NULL;
}
void rpmProblemSetAppend(rpmProblemSet tsprobs, rpmProblemType type,
rpmProblemSet rpmProblemSetFree(rpmProblemSet ps)
{
if (ps == NULL) return NULL;
if (ps->nrefs-- > 1) return NULL;
ps->nrefs++;
if (ps->probs) {
int i;
for (i = 0; i < ps->numProblems; i++) {
rpmProblem p = ps->probs + i;
p->pkgNEVR = _free(p->pkgNEVR);
p->altNEVR = _free(p->altNEVR);
p->str1 = _free(p->str1);
}
}
(void) rpmpsUnlink(ps, "destroy");
/*@-refcounttrans -usereleased@*/
ps = _free(ps);
/*@=refcounttrans =usereleased@*/
return NULL;
}
void rpmProblemSetAppend(rpmProblemSet ps, rpmProblemType type,
const char * pkgNEVR, fnpyKey key,
const char * dn, const char * bn,
const char * altNEVR, unsigned long ulong1)
@ -46,17 +97,19 @@ void rpmProblemSetAppend(rpmProblemSet tsprobs, rpmProblemType type,
rpmProblem p;
char *t;
if (tsprobs->numProblems == tsprobs->numProblemsAlloced) {
if (tsprobs->numProblemsAlloced)
tsprobs->numProblemsAlloced *= 2;
if (ps == NULL) return;
if (ps->numProblems == ps->numProblemsAlloced) {
if (ps->numProblemsAlloced)
ps->numProblemsAlloced *= 2;
else
tsprobs->numProblemsAlloced = 2;
tsprobs->probs = xrealloc(tsprobs->probs,
tsprobs->numProblemsAlloced * sizeof(*tsprobs->probs));
ps->numProblemsAlloced = 2;
ps->probs = xrealloc(ps->probs,
ps->numProblemsAlloced * sizeof(*ps->probs));
}
p = tsprobs->probs + tsprobs->numProblems;
tsprobs->numProblems++;
p = ps->probs + ps->numProblems;
ps->numProblems++;
memset(p, 0, sizeof(*p));
p->type = type;
@ -64,8 +117,8 @@ void rpmProblemSetAppend(rpmProblemSet tsprobs, rpmProblemType type,
p->ulong1 = ulong1;
p->ignoreProblem = 0;
p->pkgNEVR = pkgNEVR; /* XXX FIXME: xstrdup */
p->altNEVR = altNEVR; /* XXX FIXME: xstrdup */
p->pkgNEVR = (pkgNEVR ? xstrdup(pkgNEVR) : NULL);
p->altNEVR = (altNEVR ? xstrdup(altNEVR) : NULL);
p->str1 = NULL;
if (dn != NULL || bn != NULL) {
@ -79,19 +132,19 @@ void rpmProblemSetAppend(rpmProblemSet tsprobs, rpmProblemType type,
#define XSTRCMP(a, b) ((!(a) && !(b)) || ((a) && (b) && !strcmp((a), (b))))
int rpmProblemSetTrim(rpmProblemSet tsprobs, rpmProblemSet filter)
int rpmProblemSetTrim(rpmProblemSet ps, rpmProblemSet filter)
{
rpmProblem t;
rpmProblem f;
int gotProblems = 0;
if (tsprobs == NULL || tsprobs->numProblems == 0)
if (ps == NULL || ps->numProblems == 0)
return 0;
if (filter == NULL)
return (tsprobs->numProblems == 0 ? 0 : 1);
return (ps->numProblems == 0 ? 0 : 1);
t = tsprobs->probs;
t = ps->probs;
f = filter->probs;
/*@-branchstate@*/
@ -100,7 +153,7 @@ int rpmProblemSetTrim(rpmProblemSet tsprobs, rpmProblemSet filter)
f++;
continue;
}
while ((t - tsprobs->probs) < tsprobs->numProblems) {
while ((t - ps->probs) < ps->numProblems) {
/*@-nullpass@*/ /* LCL: looks good to me */
if (f->type == t->type && t->key == f->key &&
XSTRCMP(f->str1, t->str1))
@ -111,7 +164,7 @@ int rpmProblemSetTrim(rpmProblemSet tsprobs, rpmProblemSet filter)
}
/* XXX This can't happen, but let's be sane in case it does. */
if ((t - tsprobs->probs) == tsprobs->numProblems)
if ((t - ps->probs) == ps->numProblems)
break;
t->ignoreProblem = f->ignoreProblem;
@ -119,7 +172,7 @@ int rpmProblemSetTrim(rpmProblemSet tsprobs, rpmProblemSet filter)
}
/*@=branchstate@*/
if ((t - tsprobs->probs) < tsprobs->numProblems)
if ((t - ps->probs) < ps->numProblems)
gotProblems = 1;
return gotProblems;
@ -143,66 +196,6 @@ void printDepFlags(FILE * fp, const char * version, int flags)
fprintf(fp, " %s", version);
}
static int sameProblem(const rpmProblem ap, const rpmProblem bp)
/*@*/
{
if (ap->pkgNEVR)
if (bp->pkgNEVR && strcmp(ap->pkgNEVR, bp->pkgNEVR))
return 1;
if (ap->altNEVR)
if (bp->altNEVR && strcmp(ap->altNEVR, bp->altNEVR))
return 1;
return 0;
}
/* XXX FIXME: merge into problems */
rpmProblem rpmdepFreeConflicts(rpmProblem conflicts,
int numConflicts)
{
int i;
if (conflicts != NULL)
for (i = 0; i < numConflicts; i++) {
rpmProblem p = conflicts + i;
p->pkgNEVR = _free(p->pkgNEVR);
p->altNEVR = _free(p->altNEVR);
p->str1 = _free(p->str1);
}
conflicts = _free(conflicts);
return NULL;
}
/* XXX FIXME: merge into problems */
void printDepProblems(FILE * fp, rpmProblem conflicts, int numConflicts)
{
const char * pkgNEVR, * altNEVR;
rpmProblem c;
int i;
for (i = 0; i < numConflicts; i++) {
int j;
c = conflicts + i;
/* Filter already displayed problems. */
for (j = 0; j < i; j++) {
if (!sameProblem(c, conflicts + j))
/*@innerbreak@*/ break;
}
if (j < i)
continue;
pkgNEVR = (c->pkgNEVR ? c->pkgNEVR : "?pkgNEVR?");
altNEVR = (c->altNEVR ? c->altNEVR : "? ?altNEVR?");
fprintf(fp, "\t%s %s %s\n", altNEVR+2,
((altNEVR[0] == 'C' && altNEVR[1] == ' ')
? _("conflicts with") : _("is needed by")),
pkgNEVR);
}
}
#if !defined(HAVE_VSNPRINTF)
/*@-shadow -bufferoverflowhigh @*/
static inline int vsnprintf(/*@out@*/ char * buf, /*@unused@*/ int nb,
@ -233,7 +226,7 @@ const char * rpmProblemString(const rpmProblem prob)
/*@observer@*/
const char * altNEVR = (prob->altNEVR ? prob->altNEVR : "?altNEVR?");
/*@observer@*/
const char * str1 = (prob->str1 ? prob->str1 : "");
const char * str1 = (prob->str1 ? prob->str1 : N_("different"));
int nb = strlen(pkgNEVR) + strlen(str1) + strlen(altNEVR) + 100;
char * buf = xmalloc(nb+1);
int rc;
@ -241,13 +234,13 @@ const char * rpmProblemString(const rpmProblem prob)
switch (prob->type) {
case RPMPROB_BADARCH:
rc = snprintf(buf, nb,
_("package %s is for a different architecture"),
pkgNEVR);
_("package %s is intended for a %s architecture"),
pkgNEVR, str1);
break;
case RPMPROB_BADOS:
rc = snprintf(buf, nb,
_("package %s is for a different operating system"),
pkgNEVR);
_("package %s is intended for a %s operating system"),
pkgNEVR, str1);
break;
case RPMPROB_PKG_INSTALLED:
rc = snprintf(buf, nb,
@ -320,19 +313,71 @@ void rpmProblemPrint(FILE *fp, rpmProblem prob)
msg = _free(msg);
}
void rpmProblemSetPrint(FILE *fp, rpmProblemSet tsprobs)
void rpmProblemSetPrint(FILE *fp, rpmProblemSet ps)
{
int i;
if (tsprobs == NULL)
if (ps == NULL)
return;
if (fp == NULL)
fp = stderr;
for (i = 0; i < tsprobs->numProblems; i++) {
rpmProblem myprob = tsprobs->probs + i;
for (i = 0; i < ps->numProblems; i++) {
rpmProblem myprob = ps->probs + i;
if (!myprob->ignoreProblem)
rpmProblemPrint(fp, myprob);
}
}
static int sameProblem(const rpmProblem ap, const rpmProblem bp)
/*@*/
{
if (ap->type != bp->type)
return 1;
if (ap->pkgNEVR)
if (bp->pkgNEVR && strcmp(ap->pkgNEVR, bp->pkgNEVR))
return 1;
if (ap->altNEVR)
if (bp->altNEVR && strcmp(ap->altNEVR, bp->altNEVR))
return 1;
if (ap->str1)
if (bp->str1 && strcmp(ap->str1, bp->str1))
return 1;
if (ap->ulong1 != bp->ulong1)
return 1;
return 0;
}
/* XXX FIXME: merge into rpmProblemSetPrint */
void printDepProblems(FILE * fp, rpmProblem probs, int numProblems)
{
const char * pkgNEVR, * altNEVR;
rpmProblem p;
int i;
if (probs != NULL)
for (i = 0; i < numProblems; i++) {
int j;
p = probs + i;
/* Filter already displayed problems. */
for (j = 0; j < i; j++) {
if (!sameProblem(p, probs + j))
/*@innerbreak@*/ break;
}
if (j < i)
continue;
pkgNEVR = (p->pkgNEVR ? p->pkgNEVR : "?pkgNEVR?");
altNEVR = (p->altNEVR ? p->altNEVR : "? ?altNEVR?");
fprintf(fp, "\t%s %s %s\n", altNEVR+2,
((altNEVR[0] == 'C' && altNEVR[1] == ' ')
? _("conflicts with") : _("is needed by")),
pkgNEVR);
}
}

View File

@ -78,7 +78,7 @@ int rpmVersionCompare(Header first, Header second)
return rpmvercmp(one, two);
}
char * fiGetNVR(const TFI_t fi)
char * fiGetNEVR(const TFI_t fi)
{
char * pkgNVR;
char * t;
@ -230,9 +230,11 @@ Header relocateFileList(const rpmTransactionSet ts, TFI_t fi,
/*@innerbreak@*/ break;
/* XXX actions check prevents problem from being appended twice. */
if (j == numValid && !allowBadRelocate && actions) {
const char * pkgNEVR = fiGetNEVR(fi);
rpmProblemSetAppend(ts->probs, RPMPROB_BADRELOCATE,
fiGetNVR(fi), fi->key,
pkgNEVR, fi->key,
relocations[i].oldPath, NULL, NULL, 0);
pkgNEVR = _free(pkgNEVR);
}
del =
strlen(relocations[i].newPath) - strlen(relocations[i].oldPath);

View File

@ -206,7 +206,7 @@ extern "C" {
* @return name-version-release string
*/
/*@only@*/ /*@null@*/
char * fiGetNVR(/*@null@*/const TFI_t fi)
char * fiGetNEVR(/*@null@*/const TFI_t fi)
/*@*/;
/**

View File

@ -16,7 +16,7 @@
static int _fns_debug = 0;
/*@-shadow@*/ /* XXX copy from depends.c for now. */
static char * hGetNVR(Header h, /*@out@*/ const char ** np)
static char * hGetNEVR(Header h, /*@out@*/ const char ** np)
/*@modifies *np @*/
{
const char * n, * v, * r;
@ -539,10 +539,12 @@ void dsProblem(rpmProblemSet tsprobs, Header h, const rpmDepSet ds,
const char * Name = dsiGetN(ds);
const char * DNEVR = dsiGetDNEVR(ds);
const char * EVR = dsiGetEVR(ds);
char * byNEVR = hGetNVR(h, NULL);
char * pkgNEVR = hGetNEVR(h, NULL);
rpmProblemType type;
fnpyKey key;
if (tsprobs == NULL) return;
/*@-branchstate@*/
if (Name == NULL) Name = "?N?";
if (EVR == NULL) EVR = "?EVR?";
@ -550,13 +552,14 @@ void dsProblem(rpmProblemSet tsprobs, Header h, const rpmDepSet ds,
/*@=branchstate@*/
rpmMessage(RPMMESS_DEBUG, _("package %s has unsatisfied %s: %s\n"),
byNEVR, ds->Type, DNEVR+2);
pkgNEVR, ds->Type, DNEVR+2);
type = (DNEVR[0] == 'C' && DNEVR[1] == ' ')
? RPMPROB_CONFLICT : RPMPROB_REQUIRES;
key = (suggestedKeys ? suggestedKeys[0] : NULL);
rpmProblemSetAppend(tsprobs, type, byNEVR, key,
NULL, NULL, xstrdup(DNEVR), 0);
rpmProblemSetAppend(tsprobs, type, pkgNEVR, key,
NULL, NULL, DNEVR, 0);
pkgNEVR = _free(pkgNEVR);
}
int rangeMatchesDepFlags (Header h, const rpmDepSet req)

View File

@ -214,7 +214,7 @@ int dsCompare(const rpmDepSet A, const rpmDepSet B)
/**
* Report a Requires: or Conflicts: dependency problem.
*/
void dsProblem(rpmProblemSet tsprobs, Header h, const rpmDepSet ds,
void dsProblem(/*@null@*/ rpmProblemSet tsprobs, Header h, const rpmDepSet ds,
/*@only@*/ /*@null@*/ const fnpyKey * suggestedKeys)
/*@modifies tsprobs, h @*/;

View File

@ -549,8 +549,7 @@ restart:
eiu->numFailed += rc;
rpmProblemSetPrint(stderr, probs);
}
if (probs != NULL) rpmProblemSetFree(probs);
probs = rpmProblemSetFree(probs);
}
if (eiu->numSRPMS && !stopInstall) {

View File

@ -51,8 +51,8 @@ extern "C" {
* @param p memory to free
* @return NULL always
*/
/*@unused@*/ static inline /*@null@*/ void *
_free(/*@only@*/ /*@null@*/ /*@out@*/ const void * p)
/*@unused@*/ static inline /*@null@*/
void * _free(/*@only@*/ /*@null@*/ /*@out@*/ const void * p)
/*@modifies p @*/
{
if (p != NULL) free((void *)p);
@ -947,7 +947,7 @@ typedef /*@abstract@*/ struct rpmProblem_s * rpmProblem;
/**
* Transaction problems found by rpmRunTransactions().
*/
typedef /*@abstract@*/ struct rpmProblemSet_s * rpmProblemSet;
typedef /*@abstract@*/ /*@refcounted@*/ struct rpmProblemSet_s * rpmProblemSet;
/**
* Enumerate transaction set problem types.
@ -970,12 +970,12 @@ typedef enum rpmProblemType_e {
/**
*/
struct rpmProblem_s {
/*@only@*/ /*@null@*/ const char * pkgNEVR;
/*@only@*/ /*@null@*/ const char * altNEVR;
/*@only@*/ /*@null@*/ char * pkgNEVR;
/*@only@*/ /*@null@*/ char * altNEVR;
/*@dependent@*/ /*@null@*/ fnpyKey key;
rpmProblemType type;
int ignoreProblem;
/*@only@*/ /*@null@*/ const char * str1;
/*@only@*/ /*@null@*/ char * str1;
unsigned long ulong1;
};
@ -985,6 +985,7 @@ struct rpmProblemSet_s {
int numProblems; /*!< Current probs array size. */
int numProblemsAlloced; /*!< Allocated probs array size. */
rpmProblem probs; /*!< Array of specific problems. */
/*@refs@*/ int nrefs; /*!< Reference count. */
};
/**
@ -994,20 +995,19 @@ void printDepFlags(FILE *fp, const char *version, int flags)
/*@modifies *fp, fileSystem @*/;
/**
* Print results of rpmdepCheck() dependency check.
* Print a problem array.
* @param fp output file
* @param conflicts dependency problems
* @param numConflicts no. of dependency problems
* @param probs dependency problems
* @param numProblems no. of dependency problems
*/
void printDepProblems(FILE * fp, rpmProblem conflicts, int numConflicts)
void printDepProblems(FILE * fp, rpmProblem probs, int numProblems)
/*@globals fileSystem @*/
/*@modifies *fp, fileSystem @*/;
/**
* Return formatted string representation of problem.
* @deprecated API: prob used to be passed by value, now passed by reference.
* Return formatted string representation of a problem.
* @param prob rpm problem
* @return formatted string
* @return formatted string (malloc'd)
*/
/*@-redecl@*/ /* LCL: is confused. */
/*@only@*/ extern const char * rpmProblemString(const rpmProblem prob)
@ -1015,20 +1015,54 @@ void printDepProblems(FILE * fp, rpmProblem conflicts, int numConflicts)
/*@=redecl@*/
/**
* Create problem set.
* Unreference a problem set instance.
* @param ps problem set
* @return NULL always
*/
/*@only@*/ rpmProblemSet rpmProblemSetCreate(void)
/*@unused@*/ /*@null@*/
rpmProblemSet rpmpsUnlink (/*@killref@*/ /*@only@*/ rpmProblemSet ps,
const char * msg)
/*@modifies ps @*/;
/** @todo Remove debugging entry from the ABI. */
/*@null@*/
rpmProblemSet XrpmpsUnlink (/*@killref@*/ /*@only@*/ rpmProblemSet ps,
const char * msg, const char * fn, unsigned ln)
/*@modifies ps @*/;
#define rpmpsUnlink(_ps, _msg) XrpmpsUnlink(_ps, _msg, __FILE__, __LINE__)
/**
* Reference a problem set instance.
* @param ps transaction set
* @return new transaction set reference
*/
/*@unused@*/
rpmProblemSet rpmpsLink (rpmProblemSet ps, const char * msg)
/*@modifies ps @*/;
/** @todo Remove debugging entry from the ABI. */
rpmProblemSet XrpmpsLink (rpmProblemSet ps,
const char * msg, const char * fn, unsigned ln)
/*@modifies ps @*/;
#define rpmpsLink(_ps, _msg) XrpmpsLink(_ps, _msg, __FILE__, __LINE__)
/**
* Create a problem set.
*/
rpmProblemSet rpmProblemSetCreate(void)
/*@*/;
/**
* Destroy problem set.
* @param tsprobs problem set
* Destroy a problem array.
* @param ps problem set
* @return NULL always
*/
void rpmProblemSetFree( /*@only@*/ rpmProblemSet tsprobs)
/*@modifies tsprobs @*/;
/*@null@*/
rpmProblemSet rpmProblemSetFree(/*@killref@*/ /*@only@*/ /*@null@*/ rpmProblemSet ps)
/*@modifies ps @*/;
/**
* Output formatted string representation of problem to file handle.
* Output formatted string representation of a problem to file handle.
* @deprecated API: prob used to be passed by value, now passed by reference.
* @param fp file handle
* @param prob rpm problem
@ -1042,23 +1076,24 @@ void rpmProblemPrint(FILE *fp, rpmProblem prob)
* @param fp file handle
* @param probs problem set
*/
void rpmProblemSetPrint(FILE *fp, rpmProblemSet tsprobs)
void rpmProblemSetPrint(FILE *fp, rpmProblemSet ps)
/*@globals fileSystem @*/
/*@modifies tsprobs, *fp, fileSystem @*/;
/*@modifies ps, *fp, fileSystem @*/;
/**
* Append problem to set.
* Append a problem to set.
*/
void rpmProblemSetAppend(rpmProblemSet tsprobs, rpmProblemType type,
/*@only@*/ /*@null@*/ const char * pkgNEVR,
void rpmProblemSetAppend(/*@null@*/ rpmProblemSet ps, rpmProblemType type,
/*@null@*/ const char * pkgNEVR,
/*@exposed@*/ /*@null@*/ fnpyKey key,
const char * dn, const char * bn,
/*@only@*/ /*@null@*/ const char * altNEVR,
/*@null@*/ const char * altNEVR,
unsigned long ulong1)
/*@modifies tsprobs @*/;
/*@modifies ps @*/;
/**
* Filter a problem set.
*
* As the problem sets are generated in an order solely dependent
* on the ordering of the packages in the transaction, and that
* ordering can't be changed, the problem sets must be parallel to
@ -1067,12 +1102,13 @@ void rpmProblemSetAppend(rpmProblemSet tsprobs, rpmProblemType type,
* This is good, as it lets us perform this trim in linear time, rather
* then logarithmic or quadratic.
*
* @param tsprobs transaction problem set
* @param ps problem set
* @param filter problem filter (or NULL)
* @return 0 no problems, 1 if problems remain
*/
int rpmProblemSetTrim(/*@null@*/ rpmProblemSet tsprobs, /*@null@*/ rpmProblemSet filter)
/*@modifies tsprobs @*/;
int rpmProblemSetTrim(/*@null@*/ rpmProblemSet ps,
/*@null@*/ rpmProblemSet filter)
/*@modifies ps @*/;
/*@}*/
/* ==================================================================== */
@ -1194,7 +1230,7 @@ typedef enum fileAction_e {
/**
* File types.
* These are the types of files used internally by rpm. The file
* These are the file types used internally by rpm. The file
* type is determined by applying stat(2) macros like S_ISDIR to
* the file mode tag from a header. The values are arbitrary,
* but are identical to the linux stat(2) file types.
@ -1489,15 +1525,15 @@ int rpmdepOrder(rpmTransactionSet ts)
/*@modifies ts, fileSystem, internalState @*/;
/** \ingroup rpmtrans
* Destroy dependency conflicts storage.
* @param conflicts dependency problems
* @param numConflicts no. of dependency problems
* Destroy reported problems.
* @param probs dependency problems
* @param numProblems no. of dependency problems
* @retrun NULL always
*/
/*@null@*/ rpmProblem rpmdepFreeConflicts(
/*@only@*/ /*@null@*/ rpmProblem conflicts,
int numConflicts)
/*@modifies conflicts @*/;
/*@null@*/
rpmProblem rpmdepFreeConflicts(/*@only@*/ /*@null@*/ rpmProblem probs,
int numProblems)
/*@modifies probs @*/;
/** \ingroup rpmtrans
* Bit(s) to control rpmRunTransactions() operation.

View File

@ -140,15 +140,19 @@ int rpmtransGetKeys(const rpmTransactionSet ts, fnpyKey ** ep, int * nep)
/**
*/
static int archOkay(Header h)
/*@*/
static int archOkay(Header h, /*@out@*/ const char ** pkgArchPtr)
/*@modifies *pkgArchPtr @*/
{
void * pkgArch;
const char * pkgArch;
int type, count;
int rc = 1; /* assume AOK */
if (pkgArchPtr != NULL) *pkgArchPtr = pkgArch = NULL;
/* make sure we're trying to install this on the proper architecture */
(void) headerGetEntry(h, RPMTAG_ARCH, &type, (void **) &pkgArch, &count);
#ifndef DYING
#ifdef DYING
if (type == RPM_INT8_TYPE) {
int_8 * pkgArchNum;
int archNum;
@ -156,46 +160,47 @@ static int archOkay(Header h)
/* old arch handling */
rpmGetArchInfo(NULL, &archNum);
pkgArchNum = pkgArch;
if (archNum != *pkgArchNum) {
return 0;
}
if (archNum != *pkgArchNum)
rc = 0;
} else
#endif
{
/* new arch handling */
if (!rpmMachineScore(RPM_MACHTABLE_INSTARCH, pkgArch)) {
return 0;
}
if (!rpmMachineScore(RPM_MACHTABLE_INSTARCH, pkgArch)) {
rc = 0;
if (pkgArchPtr != NULL) *pkgArchPtr = pkgArch;
}
return 1;
return rc;
}
/**
*/
static int osOkay(Header h)
/*@*/
static int osOkay(Header h, /*@out@*/ const char ** pkgOsPtr)
/*@modifies *pkgOsPtr @*/
{
void * pkgOs;
const char * pkgOs;
int type, count;
int rc = 1; /* assume AOK */
if (pkgOsPtr != NULL) *pkgOsPtr = pkgOs = NULL;
/* make sure we're trying to install this on the proper os */
(void) headerGetEntry(h, RPMTAG_OS, &type, (void **) &pkgOs, &count);
#ifndef DYING
#ifdef DYING
if (type == RPM_INT8_TYPE) {
/* v1 packages and v2 packages both used improper OS numbers, so just
deal with it hope things work */
return 1;
} else
#endif
{
/* new os handling */
if (!rpmMachineScore(RPM_MACHTABLE_INSTOS, pkgOs)) {
return 0;
}
if (!rpmMachineScore(RPM_MACHTABLE_INSTOS, pkgOs)) {
rc = 0;
if (pkgOsPtr != NULL) *pkgOsPtr = pkgOs;
}
return 1;
return rc;
}
/**
@ -356,7 +361,8 @@ static int handleInstInstalledFiles(const rpmTransactionSet ts, TFI_t fi,
rpmdbMatchIterator mi;
mi = rpmtsInitIterator(ts, RPMDBI_PACKAGES, &shared->otherPkg, sizeof(shared->otherPkg));
mi = rpmtsInitIterator(ts, RPMDBI_PACKAGES,
&shared->otherPkg, sizeof(shared->otherPkg));
h = rpmdbNextIterator(mi);
if (h == NULL) {
mi = rpmdbFreeIterator(mi);
@ -391,12 +397,17 @@ static int handleInstInstalledFiles(const rpmTransactionSet ts, TFI_t fi,
fi->fmd5s[fileNum],
fi->flinks[fileNum])) {
/*@-compdef@*/ /* FIX: *fi->replaced undefined */
if (reportConflicts)
if (reportConflicts) {
const char * pkgNEVR = fiGetNEVR(fi);
const char * altNEVR = hGetNEVR(h, NULL);
rpmProblemSetAppend(ts->probs, RPMPROB_FILE_CONFLICT,
fiGetNVR(fi), fi->key,
pkgNEVR, fi->key,
fi->dnl[fi->dil[fileNum]], fi->bnl[fileNum],
hGetNVR(h, NULL),
altNEVR,
0);
pkgNEVR = _free(pkgNEVR);
altNEVR = _free(altNEVR);
}
/*@=compdef@*/
if (!(otherFlags[otherFileNum] | fi->fflags[fileNum])
& RPMFILE_CONFIG) {
@ -602,11 +613,15 @@ static void handleOverlappedFiles(const rpmTransactionSet ts, TFI_t fi)
fi->fmd5s[i],
fi->flinks[i]))
{
const char * pkgNEVR = fiGetNEVR(fi);
const char * altNEVR = fiGetNEVR(recs[otherPkgNum]);
rpmProblemSetAppend(ts->probs, RPMPROB_NEW_FILE_CONFLICT,
fiGetNVR(fi), fi->key,
pkgNEVR, fi->key,
filespec, NULL,
fiGetNVR(recs[otherPkgNum]),
altNEVR,
0);
pkgNEVR = _free(pkgNEVR);
altNEVR = _free(altNEVR);
}
/* Try to get the disk accounting correct even if a conflict. */
@ -702,14 +717,18 @@ static int ensureOlder(rpmTransactionSet ts,
if (result <= 0)
rc = 0;
else if (result > 0) {
rc = 1;
const char * pkgNEVR = hGetNEVR(h, NULL);
const char * altNEVR = hGetNEVR(old, NULL);
/*@-evalorder@*/ /* LCL: is confused */
rpmProblemSetAppend(ts->probs, RPMPROB_OLDPACKAGE,
hGetNVR(h, NULL), key,
pkgNEVR, key,
NULL, NULL,
hGetNVR(old, NULL),
altNEVR,
0);
/*@=evalorder@*/
pkgNEVR = _free(pkgNEVR);
altNEVR = _free(altNEVR);
rc = 1;
}
return rc;
@ -953,6 +972,7 @@ int keep_header = 1; /* XXX rpmProblemSetAppend prevents dumping headers. */
ts->notifyData = notifyData;
/*@-assignexpose@*/
ts->probs = *newProbs = rpmProblemSetCreate();
*newProbs = rpmpsLink(ts->probs, "RunTransactions");
/*@=assignexpose@*/
ts->ignoreSet = ignoreSet;
ts->currDir = _free(ts->currDir);
@ -1035,6 +1055,7 @@ int keep_header = 1; /* XXX rpmProblemSetAppend prevents dumping headers. */
const char * n, * v, * r;
fnpyKey key;
rpmdbMatchIterator mi;
const char * str1;
Header h;
pkgKey = p->u.addedKey;
@ -1046,15 +1067,25 @@ int keep_header = 1; /* XXX rpmProblemSetAppend prevents dumping headers. */
(void) headerNVR(h, &n, &v, &r);
key = p->key;
if (!archOkay(h) && !(ts->ignoreSet & RPMPROB_FILTER_IGNOREARCH))
str1 = NULL;
if (!archOkay(h, &str1) && !(ts->ignoreSet & RPMPROB_FILTER_IGNOREARCH)) {
const char * pkgNEVR = hGetNEVR(h, NULL);
rpmProblemSetAppend(ts->probs, RPMPROB_BADARCH,
hGetNVR(h, NULL), key,
NULL, NULL, NULL, 0);
pkgNEVR, key,
str1, NULL,
NULL, 0);
pkgNEVR = _free(pkgNEVR);
}
if (!osOkay(h) && !(ts->ignoreSet & RPMPROB_FILTER_IGNOREOS))
str1 = NULL;
if (!osOkay(h, &str1) && !(ts->ignoreSet & RPMPROB_FILTER_IGNOREOS)) {
const char * pkgNEVR = hGetNEVR(h, NULL);
rpmProblemSetAppend(ts->probs, RPMPROB_BADOS,
hGetNVR(h, NULL), key,
NULL, NULL, NULL, 0);
pkgNEVR, key,
str1, NULL,
NULL, 0);
pkgNEVR = _free(pkgNEVR);
}
if (!(ts->ignoreSet & RPMPROB_FILTER_OLDPACKAGE)) {
Header oldH;
@ -1075,9 +1106,12 @@ int keep_header = 1; /* XXX rpmProblemSetAppend prevents dumping headers. */
xx = rpmdbSetIteratorRE(mi, RPMTAG_RELEASE, RPMMIRE_DEFAULT, r);
while (rpmdbNextIterator(mi) != NULL) {
const char * pkgNEVR = hGetNEVR(h, NULL);
rpmProblemSetAppend(ts->probs, RPMPROB_PKG_INSTALLED,
hGetNVR(h, NULL), key,
NULL, NULL, NULL, 0);
pkgNEVR, key,
NULL, NULL,
NULL, 0);
pkgNEVR = _free(pkgNEVR);
/*@innerbreak@*/ break;
}
mi = rpmdbFreeIterator(mi);
@ -1333,17 +1367,23 @@ int keep_header = 1; /* XXX rpmProblemSetAppend prevents dumping headers. */
if (dip->iavail <= 0)
/*@innercontinue@*/ continue;
if (adj_fs_blocks(dip->bneeded) > dip->bavail)
if (adj_fs_blocks(dip->bneeded) > dip->bavail) {
const char * pkgNEVR = fiGetNEVR(fi);
rpmProblemSetAppend(ts->probs, RPMPROB_DISKSPACE,
fiGetNVR(fi), fi->key,
pkgNEVR, fi->key,
ts->filesystems[i], NULL, NULL,
(adj_fs_blocks(dip->bneeded) - dip->bavail) * dip->bsize);
pkgNEVR = _free(pkgNEVR);
}
if (adj_fs_blocks(dip->ineeded) > dip->iavail)
if (adj_fs_blocks(dip->ineeded) > dip->iavail) {
const char * pkgNEVR = fiGetNEVR(fi);
rpmProblemSetAppend(ts->probs, RPMPROB_DISKNODES,
fiGetNVR(fi), fi->key,
pkgNEVR, fi->key,
ts->filesystems[i], NULL, NULL,
(adj_fs_blocks(dip->ineeded) - dip->iavail));
pkgNEVR = _free(pkgNEVR);
}
}
/*@switchbreak@*/ break;
case TR_REMOVED:
@ -1393,8 +1433,6 @@ int keep_header = 1; /* XXX rpmProblemSetAppend prevents dumping headers. */
(okProbs != NULL || rpmProblemSetTrim(ts->probs, okProbs)))
)
{
*newProbs = ts->probs;
ts->flList = freeFl(ts, ts->flList);
ts->flEntries = 0;
if (psm->ts != NULL)

131
po/cs.po
View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-08 16:51-0500\n"
"POT-Creation-Date: 2001-11-09 12:21-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:2144
#: build/pack.c:603 lib/psm.c:2146
#, 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:2409
#: build/pack.c:683 lib/psm.c:2411
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapsáno: %s\n"
@ -1629,7 +1629,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr "Poèet dataLength() RPM_STRING_TYPE musí být 1.\n"
#. @-modfilesys@
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:954
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:956
#, c-format
msgid "Data type %d not supported\n"
msgstr "Datový typ %d není podporován\n"
@ -2150,183 +2150,188 @@ msgstr "podepsat bal
msgid "generate signature"
msgstr "generovat PGP/GPG podpis"
#: lib/problems.c:201
#, fuzzy
msgid "conflicts with"
msgstr " koliduje s %s-%s-%s\n"
#. @observer@
#: lib/problems.c:229
msgid "different"
msgstr ""
#: lib/problems.c:201
#, fuzzy
msgid "is needed by"
msgstr " je nutné pro %s-%s-%s\n"
#: lib/problems.c:244
#, c-format
msgid "package %s is for a different architecture"
#: lib/problems.c:237
#, fuzzy, c-format
msgid "package %s is intended for a %s architecture"
msgstr "balíèek %s je pro jinou architekturu"
#: lib/problems.c:249
#, c-format
msgid "package %s is for a different operating system"
#: lib/problems.c:242
#, fuzzy, c-format
msgid "package %s is intended for a %s operating system"
msgstr "balíèek %s je pro jiný operaèní systém"
#: lib/problems.c:254
#: lib/problems.c:247
#, c-format
msgid "package %s is already installed"
msgstr "balíèek %s je ji¾ nainstalován"
#: lib/problems.c:259
#: lib/problems.c:252
#, c-format
msgid "path %s in package %s is not relocateable"
msgstr "cesta %s v balíèku %s není pøemístitelná"
#: lib/problems.c:264
#: lib/problems.c:257
#, c-format
msgid "file %s conflicts between attempted installs of %s and %s"
msgstr "soubor %s zpùsobuje konflikt mezi instalovaným %s a %s"
#: lib/problems.c:269
#: lib/problems.c:262
#, c-format
msgid "file %s from install of %s conflicts with file from package %s"
msgstr "soubor %s z instalace %s koliduje se souborem z balíèku %s"
#: lib/problems.c:274
#: lib/problems.c:267
#, c-format
msgid "package %s (which is newer than %s) is already installed"
msgstr "balíèek %s (který je novìj¹í, ne¾ %s) je ji¾ nainstalován"
#: lib/problems.c:279
#: lib/problems.c:272
#, c-format
msgid "installing package %s needs %ld%cb on the %s filesystem"
msgstr "instalace balíèku %s potøebuje %ld%cB na systému souborù %s"
#: lib/problems.c:289
#: lib/problems.c:282
#, c-format
msgid "installing package %s needs %ld inodes on the %s filesystem"
msgstr "instalace balíèku %s potøebuje %ld inodù na systému souborù %s"
#: lib/problems.c:294
#: lib/problems.c:287
#, c-format
msgid "package %s pre-transaction syscall(s): %s failed: %s"
msgstr "pøedtransakèní syscall v balíèku %s: %s selhalo: %s"
#: lib/problems.c:298
#: lib/problems.c:291
#, fuzzy, c-format
msgid "package %s has unsatisfied Requires: %s\n"
msgstr "balíèek %s-%s-%s má nesplnìné po¾adavky: %s\n"
#: lib/problems.c:302
#: lib/problems.c:295
#, fuzzy, c-format
msgid "package %s has unsatisfied Conflicts: %s\n"
msgstr "balíèek %s-%s-%s má nesplnìné po¾adavky: %s\n"
#: lib/problems.c:307
#: lib/problems.c:300
#, c-format
msgid "unknown error %d encountered while manipulating package %s"
msgstr "neznámá chyba %d vznikla pøi manipulaci s balíèkem %s"
#: lib/psm.c:270
#: lib/problems.c:380
#, fuzzy
msgid "conflicts with"
msgstr " koliduje s %s-%s-%s\n"
#: lib/problems.c:380
#, fuzzy
msgid "is needed by"
msgstr " je nutné pro %s-%s-%s\n"
#: lib/psm.c:272
msgid "========== relocations\n"
msgstr "========== relokace\n"
#: lib/psm.c:274
#: lib/psm.c:276
#, c-format
msgid "%5d exclude %s\n"
msgstr "%5d vynechávám %s\n"
#: lib/psm.c:277
#: lib/psm.c:279
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%5d pøemís»uji %s -> %s\n"
#: lib/psm.c:347
#: lib/psm.c:349
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr "vynechávám multilib cestu %s%s\n"
#: lib/psm.c:413
#: lib/psm.c:415
#, c-format
msgid "excluding %s %s\n"
msgstr "vynechávám %s %s\n"
#: lib/psm.c:423
#: lib/psm.c:425
#, c-format
msgid "relocating %s to %s\n"
msgstr "pøemís»uji %s do %s\n"
#: lib/psm.c:502
#: lib/psm.c:504
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "pøemís»uji adresáø %s do %s\n"
#: lib/psm.c:1151
#: lib/psm.c:1153
#, c-format
msgid "cannot create %%%s %s\n"
msgstr "nemohu vytvoøit %s: %s\n"
#: lib/psm.c:1157
#: lib/psm.c:1159
#, c-format
msgid "cannot write to %%%s %s\n"
msgstr "nemohu zapsat do %%%s %s\n"
#: lib/psm.c:1198
#: lib/psm.c:1200
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:1322
#: lib/psm.c:1324
msgid "source package contains no .spec file\n"
msgstr "zdrojový balíèek neobsahuje .spec soubor\n"
#: lib/psm.c:1432
#: lib/psm.c:1434
#, fuzzy, c-format
msgid "%s: running %s scriptlet\n"
msgstr "%s: spou¹tím %s skript(y) (pokud existují)\n"
#: lib/psm.c:1600
#: lib/psm.c:1602
#, 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:1607
#: lib/psm.c:1609
#, 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:1949
#: lib/psm.c:1951
#, c-format
msgid "%s: %s-%s-%s has %d files, test = %d\n"
msgstr "%s: %s-%s-%s obsahuje %d souborù, test = %d\n"
#: lib/psm.c:2066
#: lib/psm.c:2068
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
msgstr "%s: scriptlet %s selhal (%d), pøeskakuji %s-%s-%s\n"
#: lib/psm.c:2180
#: lib/psm.c:2182
#, 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:2189
#: lib/psm.c:2191
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "skupina %s neexistuje - pou¾ita skupina root\n"
#: lib/psm.c:2230
#: lib/psm.c:2232
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "rozbalování archívu selhalo %s%s: %s\n"
#: lib/psm.c:2231
#: lib/psm.c:2233
msgid " on file "
msgstr " na souboru "
#: lib/psm.c:2417
#: lib/psm.c:2419
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "nemohu otevøít %s: %s\n"
#: lib/psm.c:2420
#: lib/psm.c:2422
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s selhalo\n"
@ -2375,7 +2380,7 @@ msgid "can't query %s: %s\n"
msgstr "nemohu provést dotaz %s: %s\n"
#: lib/query.c:600 lib/query.c:638 lib/rpminstall.c:328 lib/rpminstall.c:470
#: lib/rpminstall.c:841
#: lib/rpminstall.c:840
#, c-format
msgid "open of %s failed: %s\n"
msgstr "otevøení %s selhalo: %s\n"
@ -2448,7 +2453,7 @@ msgstr "z
msgid "record %u could not be read\n"
msgstr "záznam %d nelze pøeèíst\n"
#: lib/query.c:854 lib/rpminstall.c:629
#: lib/query.c:854 lib/rpminstall.c:628
#, c-format
msgid "package %s is not installed\n"
msgstr "balíèek %s není nainstalován\n"
@ -2542,7 +2547,7 @@ msgid " %s A %s\tB %s\n"
msgstr " %s A %s\tB %s\n"
#. @=branchstate@
#: lib/rpmds.c:552
#: lib/rpmds.c:554
#, fuzzy, c-format
msgid "package %s has unsatisfied %s: %s\n"
msgstr "balíèek %s-%s-%s má nesplnìné po¾adavky: %s\n"
@ -2587,7 +2592,7 @@ msgstr "chyba p
msgid "file %s requires a newer version of RPM\n"
msgstr "soubor %s vy¾aduje novìj¹í verzi RPM\n"
#: lib/rpminstall.c:462 lib/rpminstall.c:697
#: lib/rpminstall.c:462 lib/rpminstall.c:696
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s nemù¾e být nainstalován\n"
@ -2605,26 +2610,26 @@ msgstr "nevy
msgid "installing binary packages\n"
msgstr "instaluji binární balíèky\n"
#: lib/rpminstall.c:562
#: lib/rpminstall.c:561
#, c-format
msgid "cannot open file %s: %s\n"
msgstr "nemohu otevøít soubor %s: %s\n"
#: lib/rpminstall.c:632
#: lib/rpminstall.c:631
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" urèuje více balíèkù\n"
#: lib/rpminstall.c:656
#: lib/rpminstall.c:655
msgid "removing these packages would break dependencies:\n"
msgstr "odstranìní tìchto balíèkù by poru¹ilo závislosti:\n"
#: lib/rpminstall.c:683
#: lib/rpminstall.c:682
#, c-format
msgid "cannot open %s: %s\n"
msgstr "nemohu otevøít %s: %s\n"
#: lib/rpminstall.c:689
#: lib/rpminstall.c:688
#, c-format
msgid "Installing %s\n"
msgstr "Instaluji %s\n"
@ -2875,13 +2880,13 @@ msgstr ""
msgid "Signature: UNKNOWN (%d)\n"
msgstr "Podpisu: velikost(%d)+vata(%d)\n"
#: lib/transaction.c:244
#: lib/transaction.c:249
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s pøeskoèeno, proto¾e chybí pøíznak\n"
#. @innercontinue@
#: lib/transaction.c:883
#: lib/transaction.c:902
#, c-format
msgid "excluding directory %s\n"
msgstr "vynechávám adresáø %s\n"

131
po/da.po
View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-08 16:51-0500\n"
"POT-Creation-Date: 2001-11-09 12:21-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:2144
#: build/pack.c:603 lib/psm.c:2146
#, 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:2409
#: build/pack.c:683 lib/psm.c:2411
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrev: %s\n"
@ -1629,7 +1629,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr "dataLength() RPM_STRING_TYPE-antal skal være 1.\n"
#. @-modfilesys@
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:954
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:956
#, c-format
msgid "Data type %d not supported\n"
msgstr "Datatype %d understøttes ikke\n"
@ -2168,186 +2168,191 @@ msgstr "underskriv en pakke (slet nuv
msgid "generate signature"
msgstr "generér PGP/GPG-signatur"
#: lib/problems.c:201
#, fuzzy
msgid "conflicts with"
msgstr " skaber konflikt med %s-%s-%s\n"
#. @observer@
#: lib/problems.c:229
msgid "different"
msgstr ""
#: lib/problems.c:201
#, fuzzy
msgid "is needed by"
msgstr " kræves af %s-%s-%s\n"
#: lib/problems.c:244
#, c-format
msgid "package %s is for a different architecture"
#: lib/problems.c:237
#, fuzzy, c-format
msgid "package %s is intended for a %s architecture"
msgstr "pakken %s hører til en anden arkitektur"
#: lib/problems.c:249
#, c-format
msgid "package %s is for a different operating system"
#: lib/problems.c:242
#, fuzzy, c-format
msgid "package %s is intended for a %s operating system"
msgstr "pakken %s hører til et andet operativsystem"
#: lib/problems.c:254
#: lib/problems.c:247
#, c-format
msgid "package %s is already installed"
msgstr "pakken %s er allerede installeret"
#: lib/problems.c:259
#: lib/problems.c:252
#, c-format
msgid "path %s in package %s is not relocateable"
msgstr "sti %s i pakke %s kan ikke omrokeres"
#: lib/problems.c:264
#: lib/problems.c:257
#, c-format
msgid "file %s conflicts between attempted installs of %s and %s"
msgstr "filen %s skaber konflikt mellem den forsøgte installation af %s og %s"
#: lib/problems.c:269
#: lib/problems.c:262
#, c-format
msgid "file %s from install of %s conflicts with file from package %s"
msgstr ""
"filen %s fra installationen af %s skaber konflikt med fil fra pakken %s"
#: lib/problems.c:274
#: lib/problems.c:267
#, c-format
msgid "package %s (which is newer than %s) is already installed"
msgstr "pakke %s (som er nyere end %s) er allerede installeret"
#: lib/problems.c:279
#: lib/problems.c:272
#, c-format
msgid "installing package %s needs %ld%cb on the %s filesystem"
msgstr "installation af pakke %s kræver %ld%cb på %s-filsystemet"
#: lib/problems.c:289
#: lib/problems.c:282
#, c-format
msgid "installing package %s needs %ld inodes on the %s filesystem"
msgstr "installation af pakken %s kræver %ld inode'r på %s-filsystemet"
#: lib/problems.c:294
#: lib/problems.c:287
#, c-format
msgid "package %s pre-transaction syscall(s): %s failed: %s"
msgstr "pakke %s prætransaktion-systemkald: %s mislykkedes: %s"
#: lib/problems.c:298
#: lib/problems.c:291
#, fuzzy, c-format
msgid "package %s has unsatisfied Requires: %s\n"
msgstr "pakke %s-%s-%s krav ikke opfyldt: %s\n"
#: lib/problems.c:302
#: lib/problems.c:295
#, fuzzy, c-format
msgid "package %s has unsatisfied Conflicts: %s\n"
msgstr "pakke %s-%s-%s krav ikke opfyldt: %s\n"
#: lib/problems.c:307
#: lib/problems.c:300
#, c-format
msgid "unknown error %d encountered while manipulating package %s"
msgstr "ukendt fejl %d under arbejdet med pakken %s"
#: lib/psm.c:270
#: lib/problems.c:380
#, fuzzy
msgid "conflicts with"
msgstr " skaber konflikt med %s-%s-%s\n"
#: lib/problems.c:380
#, fuzzy
msgid "is needed by"
msgstr " kræves af %s-%s-%s\n"
#: lib/psm.c:272
msgid "========== relocations\n"
msgstr "========== gemmer omrokeringer\n"
#: lib/psm.c:274
#: lib/psm.c:276
#, c-format
msgid "%5d exclude %s\n"
msgstr "%5d ekskluderer %s\n"
#: lib/psm.c:277
#: lib/psm.c:279
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%5d omrokerer %s -> %s\n"
#: lib/psm.c:347
#: lib/psm.c:349
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr "ekskluderer multilib-sti %s%s\n"
#: lib/psm.c:413
#: lib/psm.c:415
#, c-format
msgid "excluding %s %s\n"
msgstr "ekskluderer %s %s\n"
#: lib/psm.c:423
#: lib/psm.c:425
#, c-format
msgid "relocating %s to %s\n"
msgstr "omrokerer %s til %s\n"
#: lib/psm.c:502
#: lib/psm.c:504
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "omrokerer kataloget %s til %s\n"
#: lib/psm.c:1151
#: lib/psm.c:1153
#, fuzzy, c-format
msgid "cannot create %%%s %s\n"
msgstr "kan ikke oprette %s: %s\n"
#: lib/psm.c:1157
#: lib/psm.c:1159
#, fuzzy, c-format
msgid "cannot write to %%%s %s\n"
msgstr "kunne ikke skrive til %s\n"
#: lib/psm.c:1198
#: lib/psm.c:1200
msgid "source package expected, binary found\n"
msgstr "kildepakke forventet, binær fundet\n"
#: lib/psm.c:1322
#: lib/psm.c:1324
msgid "source package contains no .spec file\n"
msgstr "kildepakke indeholder ingen .spec-fil\n"
#: lib/psm.c:1432
#: lib/psm.c:1434
#, fuzzy, c-format
msgid "%s: running %s scriptlet\n"
msgstr "kører postinstallations-skript (hvis det findes)\n"
#: lib/psm.c:1600
#: lib/psm.c:1602
#, 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:1607
#: lib/psm.c:1609
#, 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:1949
#: lib/psm.c:1951
#, fuzzy, c-format
msgid "%s: %s-%s-%s has %d files, test = %d\n"
msgstr "pakke: %s-%s-%s filer test = %d\n"
#: lib/psm.c:2066
#: lib/psm.c:2068
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
msgstr ""
#: lib/psm.c:2180
#: lib/psm.c:2182
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "bruger %s eksisterer ikke - bruger root\n"
#: lib/psm.c:2189
#: lib/psm.c:2191
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "gruppe %s eksisterer ikke - bruger root\n"
#: lib/psm.c:2230
#: lib/psm.c:2232
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "udpakning af arkiv mislykkedes%s%s: %s\n"
#: lib/psm.c:2231
#: lib/psm.c:2233
msgid " on file "
msgstr " for fil "
#: lib/psm.c:2417
#: lib/psm.c:2419
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "kunne ikke åbne %s: %s\n"
#: lib/psm.c:2420
#: lib/psm.c:2422
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s mislykkedes\n"
@ -2396,7 +2401,7 @@ msgid "can't query %s: %s\n"
msgstr "kunne ikke forespørge %s: %s\n"
#: lib/query.c:600 lib/query.c:638 lib/rpminstall.c:328 lib/rpminstall.c:470
#: lib/rpminstall.c:841
#: lib/rpminstall.c:840
#, c-format
msgid "open of %s failed: %s\n"
msgstr "åbning af %s mislykkedes %s\n"
@ -2469,7 +2474,7 @@ msgstr "pakkens post-nummer: %u\n"
msgid "record %u could not be read\n"
msgstr "post %d kunne ikke læses\n"
#: lib/query.c:854 lib/rpminstall.c:629
#: lib/query.c:854 lib/rpminstall.c:628
#, c-format
msgid "package %s is not installed\n"
msgstr "pakken %s er ikke installeret\n"
@ -2563,7 +2568,7 @@ msgid " %s A %s\tB %s\n"
msgstr " %s A %s\tB %s\n"
#. @=branchstate@
#: lib/rpmds.c:552
#: lib/rpmds.c:554
#, fuzzy, c-format
msgid "package %s has unsatisfied %s: %s\n"
msgstr "pakke %s-%s-%s krav ikke opfyldt: %s\n"
@ -2608,7 +2613,7 @@ msgstr "fejl ved l
msgid "file %s requires a newer version of RPM\n"
msgstr "filen %s kræver en nyere version af RPM\n"
#: lib/rpminstall.c:462 lib/rpminstall.c:697
#: lib/rpminstall.c:462 lib/rpminstall.c:696
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s kunne ikke installeres\n"
@ -2626,26 +2631,26 @@ msgstr "afh
msgid "installing binary packages\n"
msgstr "installerer binærpakker\n"
#: lib/rpminstall.c:562
#: lib/rpminstall.c:561
#, c-format
msgid "cannot open file %s: %s\n"
msgstr "kunne ikke åbne fil %s: %s\n"
#: lib/rpminstall.c:632
#: lib/rpminstall.c:631
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" angiver flere pakker\n"
#: lib/rpminstall.c:656
#: lib/rpminstall.c:655
msgid "removing these packages would break dependencies:\n"
msgstr "fjernelse af disse pakker ville bryde afhængighederne:\n"
#: lib/rpminstall.c:683
#: lib/rpminstall.c:682
#, c-format
msgid "cannot open %s: %s\n"
msgstr "kunne ikke åbne %s: %s\n"
#: lib/rpminstall.c:689
#: lib/rpminstall.c:688
#, c-format
msgid "Installing %s\n"
msgstr "Installerer %s\n"
@ -2897,13 +2902,13 @@ msgstr ""
msgid "Signature: UNKNOWN (%d)\n"
msgstr "Signaturfyld : %d\n"
#: lib/transaction.c:244
#: lib/transaction.c:249
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s oversprunget grundet manglende ok-flag\n"
#. @innercontinue@
#: lib/transaction.c:883
#: lib/transaction.c:902
#, c-format
msgid "excluding directory %s\n"
msgstr "ekskluderer kataloget %s\n"

127
po/de.po
View File

@ -37,7 +37,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-08 16:51-0500\n"
"POT-Creation-Date: 2001-11-09 12:21-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:2144
#: build/pack.c:603 lib/psm.c:2146
#, 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:2409
#: build/pack.c:683 lib/psm.c:2411
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1769,7 +1769,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
#. @-modfilesys@
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:954
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:956
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
@ -2337,193 +2337,198 @@ msgstr "Ein Paket signieren (die aktuelle Signature wird verworfen)"
msgid "generate signature"
msgstr "PGP-Signatur generieren"
#: lib/problems.c:201
#, fuzzy
msgid "conflicts with"
msgstr " steht im Konflikt mit %s-%s-%s\n"
#: lib/problems.c:201
#, fuzzy
msgid "is needed by"
msgstr " wird von %s-%s-%s gebraucht\n"
#. @observer@
#: lib/problems.c:229
msgid "different"
msgstr ""
# FIXME shared, besser: "mit anderen geteilte ..."
#: lib/problems.c:244
#: lib/problems.c:237
#, fuzzy, c-format
msgid "package %s is for a different architecture"
msgid "package %s is intended for a %s architecture"
msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
# FIXME shared, besser: "mit anderen geteilte ..."
#: lib/problems.c:249
#: lib/problems.c:242
#, fuzzy, c-format
msgid "package %s is for a different operating system"
msgid "package %s is intended for a %s operating system"
msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
#: lib/problems.c:254
#: lib/problems.c:247
#, fuzzy, c-format
msgid "package %s is already installed"
msgstr "Paket %s ist nicht installiert\n"
#: lib/problems.c:259
#: lib/problems.c:252
#, fuzzy, c-format
msgid "path %s in package %s is not relocateable"
msgstr "Paket %s ist nicht installiert\n"
#: lib/problems.c:264
#: lib/problems.c:257
#, c-format
msgid "file %s conflicts between attempted installs of %s and %s"
msgstr ""
#: lib/problems.c:269
#: lib/problems.c:262
#, fuzzy, c-format
msgid "file %s from install of %s conflicts with file from package %s"
msgstr " steht im Konflikt mit %s-%s-%s\n"
# FIXME shared, besser: "mit anderen geteilte ..."
#: lib/problems.c:274
#: lib/problems.c:267
#, fuzzy, c-format
msgid "package %s (which is newer than %s) is already installed"
msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
#: lib/problems.c:279
#: lib/problems.c:272
#, c-format
msgid "installing package %s needs %ld%cb on the %s filesystem"
msgstr ""
#: lib/problems.c:289
#: lib/problems.c:282
#, c-format
msgid "installing package %s needs %ld inodes on the %s filesystem"
msgstr ""
# FIXME shared, besser: "mit anderen geteilte ..."
#: lib/problems.c:294
#: lib/problems.c:287
#, fuzzy, c-format
msgid "package %s pre-transaction syscall(s): %s failed: %s"
msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
#: lib/problems.c:298
#: lib/problems.c:291
#, fuzzy, c-format
msgid "package %s has unsatisfied Requires: %s\n"
msgstr "Paket %s wird nicht in %s aufgeführt"
#: lib/problems.c:302
#: lib/problems.c:295
#, fuzzy, c-format
msgid "package %s has unsatisfied Conflicts: %s\n"
msgstr "Paket %s wird nicht in %s aufgeführt"
#: lib/problems.c:307
#: lib/problems.c:300
#, c-format
msgid "unknown error %d encountered while manipulating package %s"
msgstr ""
#: lib/psm.c:270
#: lib/problems.c:380
#, fuzzy
msgid "conflicts with"
msgstr " steht im Konflikt mit %s-%s-%s\n"
#: lib/problems.c:380
#, fuzzy
msgid "is needed by"
msgstr " wird von %s-%s-%s gebraucht\n"
#: lib/psm.c:272
msgid "========== relocations\n"
msgstr ""
# , c-format
#: lib/psm.c:274
#: lib/psm.c:276
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "Hole %s heraus\n"
#: lib/psm.c:277
#: lib/psm.c:279
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "kann Datei %s nicht öffnen: "
# , c-format
#: lib/psm.c:347
#: lib/psm.c:349
#, fuzzy, c-format
msgid "excluding multilib path %s%s\n"
msgstr "Hole %s heraus\n"
# , c-format
#: lib/psm.c:413
#: lib/psm.c:415
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "Hole %s heraus\n"
#: lib/psm.c:423
#: lib/psm.c:425
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/psm.c:502
#: lib/psm.c:504
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
#: lib/psm.c:1151
#: lib/psm.c:1153
#, fuzzy, c-format
msgid "cannot create %%%s %s\n"
msgstr "kann Datei %s nicht öffnen: "
#: lib/psm.c:1157
#: lib/psm.c:1159
#, fuzzy, c-format
msgid "cannot write to %%%s %s\n"
msgstr "kann Datei %s nicht öffnen: "
#: lib/psm.c:1198
#: lib/psm.c:1200
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:1322
#: lib/psm.c:1324
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
#: lib/psm.c:1432
#: lib/psm.c:1434
#, fuzzy, c-format
msgid "%s: running %s scriptlet\n"
msgstr "Keine Stufen ausführen"
#: lib/psm.c:1600
#: lib/psm.c:1602
#, 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:1607
#: lib/psm.c:1609
#, 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:1949
#: lib/psm.c:1951
#, fuzzy, c-format
msgid "%s: %s-%s-%s has %d files, test = %d\n"
msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
#: lib/psm.c:2066
#: lib/psm.c:2068
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
msgstr ""
#: lib/psm.c:2180
#: lib/psm.c:2182
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:2189
#: lib/psm.c:2191
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
#: lib/psm.c:2230
#: lib/psm.c:2232
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "öffnen von %s fehlgeschlagen: %s\n"
#: lib/psm.c:2231
#: lib/psm.c:2233
msgid " on file "
msgstr ""
# , c-format
#: lib/psm.c:2417
#: lib/psm.c:2419
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
#: lib/psm.c:2420
#: lib/psm.c:2422
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "pgp fehlgeschlagen"
@ -2574,7 +2579,7 @@ msgid "can't query %s: %s\n"
msgstr "Fehler: kann %s nicht öffnen\n"
#: lib/query.c:600 lib/query.c:638 lib/rpminstall.c:328 lib/rpminstall.c:470
#: lib/rpminstall.c:841
#: lib/rpminstall.c:840
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "öffnen von %s fehlgeschlagen: %s\n"
@ -2650,7 +2655,7 @@ msgstr "ung
msgid "record %u could not be read\n"
msgstr "Eintrag %d konnte nicht gelesen werden\n"
#: lib/query.c:854 lib/rpminstall.c:629
#: lib/query.c:854 lib/rpminstall.c:628
#, c-format
msgid "package %s is not installed\n"
msgstr "Paket %s ist nicht installiert\n"
@ -2745,7 +2750,7 @@ msgid " %s A %s\tB %s\n"
msgstr ""
#. @=branchstate@
#: lib/rpmds.c:552
#: lib/rpmds.c:554
#, fuzzy, c-format
msgid "package %s has unsatisfied %s: %s\n"
msgstr "Paket %s wird nicht in %s aufgeführt"
@ -2792,7 +2797,7 @@ msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
msgid "file %s requires a newer version of RPM\n"
msgstr ""
#: lib/rpminstall.c:462 lib/rpminstall.c:697
#: lib/rpminstall.c:462 lib/rpminstall.c:696
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "Fehler: %s kann nicht installiert werden\n"
@ -2811,27 +2816,27 @@ msgstr "fehlgeschlagene Paket-Abh
msgid "installing binary packages\n"
msgstr "Paket installieren"
#: lib/rpminstall.c:562
#: lib/rpminstall.c:561
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "kann Datei %s nicht öffnen: "
#: lib/rpminstall.c:632
#: lib/rpminstall.c:631
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" bezeichnet mehrere Pakete\n"
# oder besser: "... verletzen" ?
#: lib/rpminstall.c:656
#: lib/rpminstall.c:655
msgid "removing these packages would break dependencies:\n"
msgstr "Das Enfernen dieser Pakete würde Paket-Abhängigkeiten missachten:\n"
#: lib/rpminstall.c:683
#: lib/rpminstall.c:682
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "Fehler: kann %s nicht öffnen\n"
#: lib/rpminstall.c:689
#: lib/rpminstall.c:688
#, c-format
msgid "Installing %s\n"
msgstr "Installiere %s\n"
@ -3095,13 +3100,13 @@ msgstr ""
msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#: lib/transaction.c:244
#: lib/transaction.c:249
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:883
#: lib/transaction.c:902
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-08 16:51-0500\n"
"POT-Creation-Date: 2001-11-09 12:21-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:2144
#: build/pack.c:603 lib/psm.c:2146
#, 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:2409
#: build/pack.c:683 lib/psm.c:2411
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1598,7 +1598,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
#. @-modfilesys@
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:954
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:956
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
@ -2105,181 +2105,186 @@ msgstr ""
msgid "generate signature"
msgstr ""
#: lib/problems.c:201
msgid "conflicts with"
#. @observer@
#: lib/problems.c:229
msgid "different"
msgstr ""
#: lib/problems.c:201
msgid "is needed by"
msgstr ""
#: lib/problems.c:244
#: lib/problems.c:237
#, c-format
msgid "package %s is for a different architecture"
msgid "package %s is intended for a %s architecture"
msgstr ""
#: lib/problems.c:249
#: lib/problems.c:242
#, c-format
msgid "package %s is for a different operating system"
msgid "package %s is intended for a %s operating system"
msgstr ""
#: lib/problems.c:254
#: lib/problems.c:247
#, c-format
msgid "package %s is already installed"
msgstr ""
#: lib/problems.c:259
#: lib/problems.c:252
#, c-format
msgid "path %s in package %s is not relocateable"
msgstr ""
#: lib/problems.c:264
#: lib/problems.c:257
#, c-format
msgid "file %s conflicts between attempted installs of %s and %s"
msgstr ""
#: lib/problems.c:269
#: lib/problems.c:262
#, c-format
msgid "file %s from install of %s conflicts with file from package %s"
msgstr ""
#: lib/problems.c:274
#: lib/problems.c:267
#, c-format
msgid "package %s (which is newer than %s) is already installed"
msgstr ""
#: lib/problems.c:279
#: lib/problems.c:272
#, c-format
msgid "installing package %s needs %ld%cb on the %s filesystem"
msgstr ""
#: lib/problems.c:289
#: lib/problems.c:282
#, c-format
msgid "installing package %s needs %ld inodes on the %s filesystem"
msgstr ""
#: lib/problems.c:294
#: lib/problems.c:287
#, c-format
msgid "package %s pre-transaction syscall(s): %s failed: %s"
msgstr ""
#: lib/problems.c:298
#: lib/problems.c:291
#, c-format
msgid "package %s has unsatisfied Requires: %s\n"
msgstr ""
#: lib/problems.c:302
#: lib/problems.c:295
#, c-format
msgid "package %s has unsatisfied Conflicts: %s\n"
msgstr ""
#: lib/problems.c:307
#: lib/problems.c:300
#, c-format
msgid "unknown error %d encountered while manipulating package %s"
msgstr ""
#: lib/psm.c:270
#: lib/problems.c:380
msgid "conflicts with"
msgstr ""
#: lib/problems.c:380
msgid "is needed by"
msgstr ""
#: lib/psm.c:272
msgid "========== relocations\n"
msgstr ""
#: lib/psm.c:274
#: lib/psm.c:276
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
#: lib/psm.c:277
#: lib/psm.c:279
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/psm.c:347
#: lib/psm.c:349
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/psm.c:413
#: lib/psm.c:415
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/psm.c:423
#: lib/psm.c:425
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/psm.c:502
#: lib/psm.c:504
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/psm.c:1151
#: lib/psm.c:1153
#, c-format
msgid "cannot create %%%s %s\n"
msgstr ""
#: lib/psm.c:1157
#: lib/psm.c:1159
#, c-format
msgid "cannot write to %%%s %s\n"
msgstr ""
#: lib/psm.c:1198
#: lib/psm.c:1200
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:1322
#: lib/psm.c:1324
msgid "source package contains no .spec file\n"
msgstr ""
#: lib/psm.c:1432
#: lib/psm.c:1434
#, c-format
msgid "%s: running %s scriptlet\n"
msgstr ""
#: lib/psm.c:1600
#: lib/psm.c:1602
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr ""
#: lib/psm.c:1607
#: lib/psm.c:1609
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1949
#: lib/psm.c:1951
#, c-format
msgid "%s: %s-%s-%s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:2066
#: lib/psm.c:2068
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
msgstr ""
#: lib/psm.c:2180
#: lib/psm.c:2182
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:2189
#: lib/psm.c:2191
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:2230
#: lib/psm.c:2232
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:2231
#: lib/psm.c:2233
msgid " on file "
msgstr ""
#: lib/psm.c:2417
#: lib/psm.c:2419
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
#: lib/psm.c:2420
#: lib/psm.c:2422
#, c-format
msgid "%s failed: %s\n"
msgstr ""
@ -2328,7 +2333,7 @@ msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:600 lib/query.c:638 lib/rpminstall.c:328 lib/rpminstall.c:470
#: lib/rpminstall.c:841
#: lib/rpminstall.c:840
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@ -2401,7 +2406,7 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:854 lib/rpminstall.c:629
#: lib/query.c:854 lib/rpminstall.c:628
#, c-format
msgid "package %s is not installed\n"
msgstr ""
@ -2491,7 +2496,7 @@ msgid " %s A %s\tB %s\n"
msgstr ""
#. @=branchstate@
#: lib/rpmds.c:552
#: lib/rpmds.c:554
#, c-format
msgid "package %s has unsatisfied %s: %s\n"
msgstr ""
@ -2536,7 +2541,7 @@ msgstr ""
msgid "file %s requires a newer version of RPM\n"
msgstr ""
#: lib/rpminstall.c:462 lib/rpminstall.c:697
#: lib/rpminstall.c:462 lib/rpminstall.c:696
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
@ -2554,26 +2559,26 @@ msgstr ""
msgid "installing binary packages\n"
msgstr ""
#: lib/rpminstall.c:562
#: lib/rpminstall.c:561
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
#: lib/rpminstall.c:632
#: lib/rpminstall.c:631
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
#: lib/rpminstall.c:656
#: lib/rpminstall.c:655
msgid "removing these packages would break dependencies:\n"
msgstr ""
#: lib/rpminstall.c:683
#: lib/rpminstall.c:682
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
#: lib/rpminstall.c:689
#: lib/rpminstall.c:688
#, c-format
msgid "Installing %s\n"
msgstr ""
@ -2820,13 +2825,13 @@ msgstr ""
msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#: lib/transaction.c:244
#: lib/transaction.c:249
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:883
#: lib/transaction.c:902
#, c-format
msgid "excluding directory %s\n"
msgstr ""

121
po/es.po
View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-08 16:51-0500\n"
"POT-Creation-Date: 2001-11-09 12:21-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:2144
#: build/pack.c:603 lib/psm.c:2146
#, 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:2409
#: build/pack.c:683 lib/psm.c:2411
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1598,7 +1598,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
#. @-modfilesys@
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:954
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:956
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
@ -2105,181 +2105,186 @@ msgstr ""
msgid "generate signature"
msgstr ""
#: lib/problems.c:201
msgid "conflicts with"
#. @observer@
#: lib/problems.c:229
msgid "different"
msgstr ""
#: lib/problems.c:201
msgid "is needed by"
msgstr ""
#: lib/problems.c:244
#: lib/problems.c:237
#, c-format
msgid "package %s is for a different architecture"
msgid "package %s is intended for a %s architecture"
msgstr ""
#: lib/problems.c:249
#: lib/problems.c:242
#, c-format
msgid "package %s is for a different operating system"
msgid "package %s is intended for a %s operating system"
msgstr ""
#: lib/problems.c:254
#: lib/problems.c:247
#, c-format
msgid "package %s is already installed"
msgstr ""
#: lib/problems.c:259
#: lib/problems.c:252
#, c-format
msgid "path %s in package %s is not relocateable"
msgstr ""
#: lib/problems.c:264
#: lib/problems.c:257
#, c-format
msgid "file %s conflicts between attempted installs of %s and %s"
msgstr ""
#: lib/problems.c:269
#: lib/problems.c:262
#, c-format
msgid "file %s from install of %s conflicts with file from package %s"
msgstr ""
#: lib/problems.c:274
#: lib/problems.c:267
#, c-format
msgid "package %s (which is newer than %s) is already installed"
msgstr ""
#: lib/problems.c:279
#: lib/problems.c:272
#, c-format
msgid "installing package %s needs %ld%cb on the %s filesystem"
msgstr ""
#: lib/problems.c:289
#: lib/problems.c:282
#, c-format
msgid "installing package %s needs %ld inodes on the %s filesystem"
msgstr ""
#: lib/problems.c:294
#: lib/problems.c:287
#, c-format
msgid "package %s pre-transaction syscall(s): %s failed: %s"
msgstr ""
#: lib/problems.c:298
#: lib/problems.c:291
#, c-format
msgid "package %s has unsatisfied Requires: %s\n"
msgstr ""
#: lib/problems.c:302
#: lib/problems.c:295
#, c-format
msgid "package %s has unsatisfied Conflicts: %s\n"
msgstr ""
#: lib/problems.c:307
#: lib/problems.c:300
#, c-format
msgid "unknown error %d encountered while manipulating package %s"
msgstr ""
#: lib/psm.c:270
#: lib/problems.c:380
msgid "conflicts with"
msgstr ""
#: lib/problems.c:380
msgid "is needed by"
msgstr ""
#: lib/psm.c:272
msgid "========== relocations\n"
msgstr ""
#: lib/psm.c:274
#: lib/psm.c:276
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
#: lib/psm.c:277
#: lib/psm.c:279
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/psm.c:347
#: lib/psm.c:349
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/psm.c:413
#: lib/psm.c:415
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/psm.c:423
#: lib/psm.c:425
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/psm.c:502
#: lib/psm.c:504
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/psm.c:1151
#: lib/psm.c:1153
#, c-format
msgid "cannot create %%%s %s\n"
msgstr ""
#: lib/psm.c:1157
#: lib/psm.c:1159
#, c-format
msgid "cannot write to %%%s %s\n"
msgstr ""
#: lib/psm.c:1198
#: lib/psm.c:1200
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:1322
#: lib/psm.c:1324
msgid "source package contains no .spec file\n"
msgstr ""
#: lib/psm.c:1432
#: lib/psm.c:1434
#, c-format
msgid "%s: running %s scriptlet\n"
msgstr ""
#: lib/psm.c:1600
#: lib/psm.c:1602
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr ""
#: lib/psm.c:1607
#: lib/psm.c:1609
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1949
#: lib/psm.c:1951
#, c-format
msgid "%s: %s-%s-%s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:2066
#: lib/psm.c:2068
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
msgstr ""
#: lib/psm.c:2180
#: lib/psm.c:2182
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:2189
#: lib/psm.c:2191
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:2230
#: lib/psm.c:2232
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:2231
#: lib/psm.c:2233
msgid " on file "
msgstr ""
#: lib/psm.c:2417
#: lib/psm.c:2419
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
#: lib/psm.c:2420
#: lib/psm.c:2422
#, c-format
msgid "%s failed: %s\n"
msgstr ""
@ -2328,7 +2333,7 @@ msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:600 lib/query.c:638 lib/rpminstall.c:328 lib/rpminstall.c:470
#: lib/rpminstall.c:841
#: lib/rpminstall.c:840
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@ -2401,7 +2406,7 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:854 lib/rpminstall.c:629
#: lib/query.c:854 lib/rpminstall.c:628
#, c-format
msgid "package %s is not installed\n"
msgstr ""
@ -2491,7 +2496,7 @@ msgid " %s A %s\tB %s\n"
msgstr ""
#. @=branchstate@
#: lib/rpmds.c:552
#: lib/rpmds.c:554
#, c-format
msgid "package %s has unsatisfied %s: %s\n"
msgstr ""
@ -2536,7 +2541,7 @@ msgstr ""
msgid "file %s requires a newer version of RPM\n"
msgstr ""
#: lib/rpminstall.c:462 lib/rpminstall.c:697
#: lib/rpminstall.c:462 lib/rpminstall.c:696
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
@ -2554,26 +2559,26 @@ msgstr ""
msgid "installing binary packages\n"
msgstr ""
#: lib/rpminstall.c:562
#: lib/rpminstall.c:561
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
#: lib/rpminstall.c:632
#: lib/rpminstall.c:631
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
#: lib/rpminstall.c:656
#: lib/rpminstall.c:655
msgid "removing these packages would break dependencies:\n"
msgstr ""
#: lib/rpminstall.c:683
#: lib/rpminstall.c:682
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
#: lib/rpminstall.c:689
#: lib/rpminstall.c:688
#, c-format
msgid "Installing %s\n"
msgstr ""
@ -2820,13 +2825,13 @@ msgstr ""
msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#: lib/transaction.c:244
#: lib/transaction.c:249
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:883
#: lib/transaction.c:902
#, c-format
msgid "excluding directory %s\n"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-08 16:51-0500\n"
"POT-Creation-Date: 2001-11-09 12:21-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:2144
#: build/pack.c:603 lib/psm.c:2146
#, 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:2409
#: build/pack.c:683 lib/psm.c:2411
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1598,7 +1598,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
#. @-modfilesys@
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:954
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:956
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
@ -2105,181 +2105,186 @@ msgstr ""
msgid "generate signature"
msgstr ""
#: lib/problems.c:201
msgid "conflicts with"
#. @observer@
#: lib/problems.c:229
msgid "different"
msgstr ""
#: lib/problems.c:201
msgid "is needed by"
msgstr ""
#: lib/problems.c:244
#: lib/problems.c:237
#, c-format
msgid "package %s is for a different architecture"
msgid "package %s is intended for a %s architecture"
msgstr ""
#: lib/problems.c:249
#: lib/problems.c:242
#, c-format
msgid "package %s is for a different operating system"
msgid "package %s is intended for a %s operating system"
msgstr ""
#: lib/problems.c:254
#: lib/problems.c:247
#, c-format
msgid "package %s is already installed"
msgstr ""
#: lib/problems.c:259
#: lib/problems.c:252
#, c-format
msgid "path %s in package %s is not relocateable"
msgstr ""
#: lib/problems.c:264
#: lib/problems.c:257
#, c-format
msgid "file %s conflicts between attempted installs of %s and %s"
msgstr ""
#: lib/problems.c:269
#: lib/problems.c:262
#, c-format
msgid "file %s from install of %s conflicts with file from package %s"
msgstr ""
#: lib/problems.c:274
#: lib/problems.c:267
#, c-format
msgid "package %s (which is newer than %s) is already installed"
msgstr ""
#: lib/problems.c:279
#: lib/problems.c:272
#, c-format
msgid "installing package %s needs %ld%cb on the %s filesystem"
msgstr ""
#: lib/problems.c:289
#: lib/problems.c:282
#, c-format
msgid "installing package %s needs %ld inodes on the %s filesystem"
msgstr ""
#: lib/problems.c:294
#: lib/problems.c:287
#, c-format
msgid "package %s pre-transaction syscall(s): %s failed: %s"
msgstr ""
#: lib/problems.c:298
#: lib/problems.c:291
#, c-format
msgid "package %s has unsatisfied Requires: %s\n"
msgstr ""
#: lib/problems.c:302
#: lib/problems.c:295
#, c-format
msgid "package %s has unsatisfied Conflicts: %s\n"
msgstr ""
#: lib/problems.c:307
#: lib/problems.c:300
#, c-format
msgid "unknown error %d encountered while manipulating package %s"
msgstr ""
#: lib/psm.c:270
#: lib/problems.c:380
msgid "conflicts with"
msgstr ""
#: lib/problems.c:380
msgid "is needed by"
msgstr ""
#: lib/psm.c:272
msgid "========== relocations\n"
msgstr ""
#: lib/psm.c:274
#: lib/psm.c:276
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
#: lib/psm.c:277
#: lib/psm.c:279
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/psm.c:347
#: lib/psm.c:349
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/psm.c:413
#: lib/psm.c:415
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/psm.c:423
#: lib/psm.c:425
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/psm.c:502
#: lib/psm.c:504
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/psm.c:1151
#: lib/psm.c:1153
#, c-format
msgid "cannot create %%%s %s\n"
msgstr ""
#: lib/psm.c:1157
#: lib/psm.c:1159
#, c-format
msgid "cannot write to %%%s %s\n"
msgstr ""
#: lib/psm.c:1198
#: lib/psm.c:1200
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:1322
#: lib/psm.c:1324
msgid "source package contains no .spec file\n"
msgstr ""
#: lib/psm.c:1432
#: lib/psm.c:1434
#, c-format
msgid "%s: running %s scriptlet\n"
msgstr ""
#: lib/psm.c:1600
#: lib/psm.c:1602
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr ""
#: lib/psm.c:1607
#: lib/psm.c:1609
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1949
#: lib/psm.c:1951
#, c-format
msgid "%s: %s-%s-%s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:2066
#: lib/psm.c:2068
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
msgstr ""
#: lib/psm.c:2180
#: lib/psm.c:2182
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:2189
#: lib/psm.c:2191
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:2230
#: lib/psm.c:2232
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:2231
#: lib/psm.c:2233
msgid " on file "
msgstr ""
#: lib/psm.c:2417
#: lib/psm.c:2419
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
#: lib/psm.c:2420
#: lib/psm.c:2422
#, c-format
msgid "%s failed: %s\n"
msgstr ""
@ -2328,7 +2333,7 @@ msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:600 lib/query.c:638 lib/rpminstall.c:328 lib/rpminstall.c:470
#: lib/rpminstall.c:841
#: lib/rpminstall.c:840
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@ -2401,7 +2406,7 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:854 lib/rpminstall.c:629
#: lib/query.c:854 lib/rpminstall.c:628
#, c-format
msgid "package %s is not installed\n"
msgstr ""
@ -2491,7 +2496,7 @@ msgid " %s A %s\tB %s\n"
msgstr ""
#. @=branchstate@
#: lib/rpmds.c:552
#: lib/rpmds.c:554
#, c-format
msgid "package %s has unsatisfied %s: %s\n"
msgstr ""
@ -2536,7 +2541,7 @@ msgstr ""
msgid "file %s requires a newer version of RPM\n"
msgstr ""
#: lib/rpminstall.c:462 lib/rpminstall.c:697
#: lib/rpminstall.c:462 lib/rpminstall.c:696
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
@ -2554,26 +2559,26 @@ msgstr ""
msgid "installing binary packages\n"
msgstr ""
#: lib/rpminstall.c:562
#: lib/rpminstall.c:561
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
#: lib/rpminstall.c:632
#: lib/rpminstall.c:631
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
#: lib/rpminstall.c:656
#: lib/rpminstall.c:655
msgid "removing these packages would break dependencies:\n"
msgstr ""
#: lib/rpminstall.c:683
#: lib/rpminstall.c:682
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
#: lib/rpminstall.c:689
#: lib/rpminstall.c:688
#, c-format
msgid "Installing %s\n"
msgstr ""
@ -2820,13 +2825,13 @@ msgstr ""
msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#: lib/transaction.c:244
#: lib/transaction.c:249
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:883
#: lib/transaction.c:902
#, c-format
msgid "excluding directory %s\n"
msgstr ""

127
po/fi.po
View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-08 16:51-0500\n"
"POT-Creation-Date: 2001-11-09 12:21-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:2144
#: build/pack.c:603 lib/psm.c:2146
#, 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:2409
#: build/pack.c:683 lib/psm.c:2411
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1646,7 +1646,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
#. @-modfilesys@
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:954
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:956
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
@ -2203,184 +2203,189 @@ msgstr "allekirjoita paketti (hylk
msgid "generate signature"
msgstr "generoi PGP-allekirjoitus"
#: lib/problems.c:201
#, fuzzy
msgid "conflicts with"
msgstr " on ristiriidassa %s-%s-%s:n kanssa\n"
#. @observer@
#: lib/problems.c:229
msgid "different"
msgstr ""
#: lib/problems.c:201
#, fuzzy
msgid "is needed by"
msgstr "vaatii %s-%s-%s\n"
#: lib/problems.c:244
#: lib/problems.c:237
#, fuzzy, c-format
msgid "package %s is for a different architecture"
msgid "package %s is intended for a %s architecture"
msgstr "paketti %s-%s-%s sisältää jaettuja tiedostoja\n"
#: lib/problems.c:249
#: lib/problems.c:242
#, fuzzy, c-format
msgid "package %s is for a different operating system"
msgid "package %s is intended for a %s operating system"
msgstr "paketti %s-%s-%s sisältää jaettuja tiedostoja\n"
#: lib/problems.c:254
#: lib/problems.c:247
#, fuzzy, c-format
msgid "package %s is already installed"
msgstr "paketti %s ei ole asennettu\n"
#: lib/problems.c:259
#: lib/problems.c:252
#, fuzzy, c-format
msgid "path %s in package %s is not relocateable"
msgstr "paketti %s ei ole asennettu\n"
#: lib/problems.c:264
#: lib/problems.c:257
#, c-format
msgid "file %s conflicts between attempted installs of %s and %s"
msgstr ""
#: lib/problems.c:269
#: lib/problems.c:262
#, fuzzy, c-format
msgid "file %s from install of %s conflicts with file from package %s"
msgstr " on ristiriidassa %s-%s-%s:n kanssa\n"
#: lib/problems.c:274
#: lib/problems.c:267
#, fuzzy, c-format
msgid "package %s (which is newer than %s) is already installed"
msgstr "paketti %s-%s-%s sisältää jaettuja tiedostoja\n"
#: lib/problems.c:279
#: lib/problems.c:272
#, c-format
msgid "installing package %s needs %ld%cb on the %s filesystem"
msgstr ""
#: lib/problems.c:289
#: lib/problems.c:282
#, c-format
msgid "installing package %s needs %ld inodes on the %s filesystem"
msgstr ""
#: lib/problems.c:294
#: lib/problems.c:287
#, fuzzy, c-format
msgid "package %s pre-transaction syscall(s): %s failed: %s"
msgstr "paketti %s-%s-%s sisältää jaettuja tiedostoja\n"
#: lib/problems.c:298
#: lib/problems.c:291
#, fuzzy, c-format
msgid "package %s has unsatisfied Requires: %s\n"
msgstr "paketti %s ei ole %s:ssä"
#: lib/problems.c:302
#: lib/problems.c:295
#, fuzzy, c-format
msgid "package %s has unsatisfied Conflicts: %s\n"
msgstr "paketti %s ei ole %s:ssä"
#: lib/problems.c:307
#: lib/problems.c:300
#, c-format
msgid "unknown error %d encountered while manipulating package %s"
msgstr ""
#: lib/psm.c:270
#: lib/problems.c:380
#, fuzzy
msgid "conflicts with"
msgstr " on ristiriidassa %s-%s-%s:n kanssa\n"
#: lib/problems.c:380
#, fuzzy
msgid "is needed by"
msgstr "vaatii %s-%s-%s\n"
#: lib/psm.c:272
msgid "========== relocations\n"
msgstr ""
#: lib/psm.c:274
#: lib/psm.c:276
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "Haen: %s\n"
#: lib/psm.c:277
#: lib/psm.c:279
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "en voinut avata tiedostoa %s: "
#: lib/psm.c:347
#: lib/psm.c:349
#, fuzzy, c-format
msgid "excluding multilib path %s%s\n"
msgstr "Haen: %s\n"
#: lib/psm.c:413
#: lib/psm.c:415
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "Haen: %s\n"
#: lib/psm.c:423
#: lib/psm.c:425
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/psm.c:502
#: lib/psm.c:504
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "virhe luotaessa hakemistoa %s: %s"
#: lib/psm.c:1151
#: lib/psm.c:1153
#, fuzzy, c-format
msgid "cannot create %%%s %s\n"
msgstr "en voinut avata tiedostoa %s: "
#: lib/psm.c:1157
#: lib/psm.c:1159
#, fuzzy, c-format
msgid "cannot write to %%%s %s\n"
msgstr "en voinut avata tiedostoa %s: "
#: lib/psm.c:1198
#: lib/psm.c:1200
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:1322
#: lib/psm.c:1324
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
#: lib/psm.c:1432
#: lib/psm.c:1434
#, fuzzy, c-format
msgid "%s: running %s scriptlet\n"
msgstr "älä suorita mitään vaiheita"
#: lib/psm.c:1600
#: lib/psm.c:1602
#, 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:1607
#: lib/psm.c:1609
#, 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:1949
#: lib/psm.c:1951
#, fuzzy, c-format
msgid "%s: %s-%s-%s has %d files, test = %d\n"
msgstr "paketti %s-%s-%s sisältää jaettuja tiedostoja\n"
#: lib/psm.c:2066
#: lib/psm.c:2068
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
msgstr ""
#: lib/psm.c:2180
#: lib/psm.c:2182
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:2189
#: lib/psm.c:2191
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "ryhmässä %s ei ole paketteja\n"
#: lib/psm.c:2230
#: lib/psm.c:2232
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "%s:n avaus ei onnistunut: %s\n"
#: lib/psm.c:2231
#: lib/psm.c:2233
msgid " on file "
msgstr ""
#: lib/psm.c:2417
#: lib/psm.c:2419
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "en voinut avata %s: %s"
#: lib/psm.c:2420
#: lib/psm.c:2422
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "pgp epäonnistui"
@ -2431,7 +2436,7 @@ msgid "can't query %s: %s\n"
msgstr "virhe: en voi avata %s\n"
#: lib/query.c:600 lib/query.c:638 lib/rpminstall.c:328 lib/rpminstall.c:470
#: lib/rpminstall.c:841
#: lib/rpminstall.c:840
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "%s:n avaus ei onnistunut: %s\n"
@ -2505,7 +2510,7 @@ msgstr "virheellinen paketin numero: %s\n"
msgid "record %u could not be read\n"
msgstr "tietuetta %d ei voitu lukea\n"
#: lib/query.c:854 lib/rpminstall.c:629
#: lib/query.c:854 lib/rpminstall.c:628
#, c-format
msgid "package %s is not installed\n"
msgstr "paketti %s ei ole asennettu\n"
@ -2599,7 +2604,7 @@ msgid " %s A %s\tB %s\n"
msgstr ""
#. @=branchstate@
#: lib/rpmds.c:552
#: lib/rpmds.c:554
#, fuzzy, c-format
msgid "package %s has unsatisfied %s: %s\n"
msgstr "paketti %s ei ole %s:ssä"
@ -2645,7 +2650,7 @@ msgstr "virhe luotaessa hakemistoa %s: %s"
msgid "file %s requires a newer version of RPM\n"
msgstr ""
#: lib/rpminstall.c:462 lib/rpminstall.c:697
#: lib/rpminstall.c:462 lib/rpminstall.c:696
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "virhe: %s ei voida asentaa\n"
@ -2664,26 +2669,26 @@ msgstr "puuttuvat riippuvuudet:\n"
msgid "installing binary packages\n"
msgstr "asenna paketti"
#: lib/rpminstall.c:562
#: lib/rpminstall.c:561
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "en voinut avata tiedostoa %s: "
#: lib/rpminstall.c:632
#: lib/rpminstall.c:631
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" määrittää useita paketteja\n"
#: lib/rpminstall.c:656
#: lib/rpminstall.c:655
msgid "removing these packages would break dependencies:\n"
msgstr "näiden pakettien poisto rikkoisi riippuvuuksia:\n"
#: lib/rpminstall.c:683
#: lib/rpminstall.c:682
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "virhe: en voi avata %s\n"
#: lib/rpminstall.c:689
#: lib/rpminstall.c:688
#, c-format
msgid "Installing %s\n"
msgstr "Asennan: %s\n"
@ -2944,13 +2949,13 @@ msgstr ""
msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#: lib/transaction.c:244
#: lib/transaction.c:249
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:883
#: lib/transaction.c:902
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "virhe luotaessa hakemistoa %s: %s"

121
po/fr.po
View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-08 16:51-0500\n"
"POT-Creation-Date: 2001-11-09 12:21-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:2144
#: build/pack.c:603 lib/psm.c:2146
#, 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:2409
#: build/pack.c:683 lib/psm.c:2411
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1681,7 +1681,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
#. @-modfilesys@
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:954
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:956
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
@ -2253,183 +2253,188 @@ msgstr ""
msgid "generate signature"
msgstr " --sign - genre une signature PGP"
#: lib/problems.c:201
msgid "conflicts with"
#. @observer@
#: lib/problems.c:229
msgid "different"
msgstr ""
#: lib/problems.c:201
msgid "is needed by"
msgstr ""
#: lib/problems.c:244
#: lib/problems.c:237
#, fuzzy, c-format
msgid "package %s is for a different architecture"
msgid "package %s is intended for a %s architecture"
msgstr "aucun package n'a t spcifi pour l'installation"
#: lib/problems.c:249
#: lib/problems.c:242
#, fuzzy, c-format
msgid "package %s is for a different operating system"
msgid "package %s is intended for a %s operating system"
msgstr "aucun package n'a t spcifi pour l'installation"
#: lib/problems.c:254
#: lib/problems.c:247
#, fuzzy, c-format
msgid "package %s is already installed"
msgstr "aucun package n'a t spcifi pour l'installation"
#: lib/problems.c:259
#: lib/problems.c:252
#, fuzzy, c-format
msgid "path %s in package %s is not relocateable"
msgstr "aucun package n'a t spcifi pour l'installation"
#: lib/problems.c:264
#: lib/problems.c:257
#, c-format
msgid "file %s conflicts between attempted installs of %s and %s"
msgstr ""
#: lib/problems.c:269
#: lib/problems.c:262
#, c-format
msgid "file %s from install of %s conflicts with file from package %s"
msgstr ""
#: lib/problems.c:274
#: lib/problems.c:267
#, fuzzy, c-format
msgid "package %s (which is newer than %s) is already installed"
msgstr "aucun package n'a t spcifi pour l'installation"
#: lib/problems.c:279
#: lib/problems.c:272
#, c-format
msgid "installing package %s needs %ld%cb on the %s filesystem"
msgstr ""
#: lib/problems.c:289
#: lib/problems.c:282
#, c-format
msgid "installing package %s needs %ld inodes on the %s filesystem"
msgstr ""
#: lib/problems.c:294
#: lib/problems.c:287
#, c-format
msgid "package %s pre-transaction syscall(s): %s failed: %s"
msgstr ""
#: lib/problems.c:298
#: lib/problems.c:291
#, fuzzy, c-format
msgid "package %s has unsatisfied Requires: %s\n"
msgstr "aucun package n'a t spcifi pour l'installation"
#: lib/problems.c:302
#: lib/problems.c:295
#, fuzzy, c-format
msgid "package %s has unsatisfied Conflicts: %s\n"
msgstr "aucun package n'a t spcifi pour l'installation"
#: lib/problems.c:307
#: lib/problems.c:300
#, c-format
msgid "unknown error %d encountered while manipulating package %s"
msgstr ""
#: lib/psm.c:270
#: lib/problems.c:380
msgid "conflicts with"
msgstr ""
#: lib/problems.c:380
msgid "is needed by"
msgstr ""
#: lib/psm.c:272
msgid "========== relocations\n"
msgstr ""
#: lib/psm.c:274
#: lib/psm.c:276
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
#: lib/psm.c:277
#: lib/psm.c:279
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: lib/psm.c:347
#: lib/psm.c:349
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/psm.c:413
#: lib/psm.c:415
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/psm.c:423
#: lib/psm.c:425
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/psm.c:502
#: lib/psm.c:504
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: lib/psm.c:1151
#: lib/psm.c:1153
#, fuzzy, c-format
msgid "cannot create %%%s %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: lib/psm.c:1157
#: lib/psm.c:1159
#, fuzzy, c-format
msgid "cannot write to %%%s %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: lib/psm.c:1198
#: lib/psm.c:1200
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:1322
#: lib/psm.c:1324
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr ""
" -f <file>+ - interroge le package qui appartient <file>"
#: lib/psm.c:1432
#: lib/psm.c:1434
#, c-format
msgid "%s: running %s scriptlet\n"
msgstr ""
#: lib/psm.c:1600
#: lib/psm.c:1602
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr ""
#: lib/psm.c:1607
#: lib/psm.c:1609
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1949
#: lib/psm.c:1951
#, fuzzy, c-format
msgid "%s: %s-%s-%s has %d files, test = %d\n"
msgstr "aucun package n'a t spcifi pour l'installation"
#: lib/psm.c:2066
#: lib/psm.c:2068
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
msgstr ""
#: lib/psm.c:2180
#: lib/psm.c:2182
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:2189
#: lib/psm.c:2191
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:2230
#: lib/psm.c:2232
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "La construction a chou.\n"
#: lib/psm.c:2231
#: lib/psm.c:2233
msgid " on file "
msgstr ""
#: lib/psm.c:2417
#: lib/psm.c:2419
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: lib/psm.c:2420
#: lib/psm.c:2422
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "La construction a chou.\n"
@ -2480,7 +2485,7 @@ msgid "can't query %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: lib/query.c:600 lib/query.c:638 lib/rpminstall.c:328 lib/rpminstall.c:470
#: lib/rpminstall.c:841
#: lib/rpminstall.c:840
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "La construction a chou.\n"
@ -2554,7 +2559,7 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:854 lib/rpminstall.c:629
#: lib/query.c:854 lib/rpminstall.c:628
#, fuzzy, c-format
msgid "package %s is not installed\n"
msgstr "aucun package n'a t spcifi pour l'installation"
@ -2646,7 +2651,7 @@ msgid " %s A %s\tB %s\n"
msgstr ""
#. @=branchstate@
#: lib/rpmds.c:552
#: lib/rpmds.c:554
#, fuzzy, c-format
msgid "package %s has unsatisfied %s: %s\n"
msgstr "aucun package n'a t spcifi pour l'installation"
@ -2692,7 +2697,7 @@ msgstr ""
msgid "file %s requires a newer version of RPM\n"
msgstr ""
#: lib/rpminstall.c:462 lib/rpminstall.c:697
#: lib/rpminstall.c:462 lib/rpminstall.c:696
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "aucun package n'a t spcifi pour l'installation"
@ -2710,26 +2715,26 @@ msgstr ""
msgid "installing binary packages\n"
msgstr ""
#: lib/rpminstall.c:562
#: lib/rpminstall.c:561
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: lib/rpminstall.c:632
#: lib/rpminstall.c:631
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
#: lib/rpminstall.c:656
#: lib/rpminstall.c:655
msgid "removing these packages would break dependencies:\n"
msgstr ""
#: lib/rpminstall.c:683
#: lib/rpminstall.c:682
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: lib/rpminstall.c:689
#: lib/rpminstall.c:688
#, c-format
msgid "Installing %s\n"
msgstr ""
@ -2987,13 +2992,13 @@ msgstr ""
msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#: lib/transaction.c:244
#: lib/transaction.c:249
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:883
#: lib/transaction.c:902
#, c-format
msgid "excluding directory %s\n"
msgstr ""

121
po/gl.po
View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
"POT-Creation-Date: 2001-11-08 16:51-0500\n"
"POT-Creation-Date: 2001-11-09 12:21-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:2144
#: build/pack.c:603 lib/psm.c:2146
#, 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:2409
#: build/pack.c:683 lib/psm.c:2411
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1593,7 +1593,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
#. @-modfilesys@
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:954
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:956
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
@ -2100,181 +2100,186 @@ msgstr ""
msgid "generate signature"
msgstr ""
#: lib/problems.c:201
msgid "conflicts with"
#. @observer@
#: lib/problems.c:229
msgid "different"
msgstr ""
#: lib/problems.c:201
msgid "is needed by"
msgstr ""
#: lib/problems.c:244
#: lib/problems.c:237
#, c-format
msgid "package %s is for a different architecture"
msgid "package %s is intended for a %s architecture"
msgstr ""
#: lib/problems.c:249
#: lib/problems.c:242
#, c-format
msgid "package %s is for a different operating system"
msgid "package %s is intended for a %s operating system"
msgstr ""
#: lib/problems.c:254
#: lib/problems.c:247
#, c-format
msgid "package %s is already installed"
msgstr ""
#: lib/problems.c:259
#: lib/problems.c:252
#, c-format
msgid "path %s in package %s is not relocateable"
msgstr ""
#: lib/problems.c:264
#: lib/problems.c:257
#, c-format
msgid "file %s conflicts between attempted installs of %s and %s"
msgstr ""
#: lib/problems.c:269
#: lib/problems.c:262
#, c-format
msgid "file %s from install of %s conflicts with file from package %s"
msgstr ""
#: lib/problems.c:274
#: lib/problems.c:267
#, c-format
msgid "package %s (which is newer than %s) is already installed"
msgstr ""
#: lib/problems.c:279
#: lib/problems.c:272
#, c-format
msgid "installing package %s needs %ld%cb on the %s filesystem"
msgstr ""
#: lib/problems.c:289
#: lib/problems.c:282
#, c-format
msgid "installing package %s needs %ld inodes on the %s filesystem"
msgstr ""
#: lib/problems.c:294
#: lib/problems.c:287
#, c-format
msgid "package %s pre-transaction syscall(s): %s failed: %s"
msgstr ""
#: lib/problems.c:298
#: lib/problems.c:291
#, c-format
msgid "package %s has unsatisfied Requires: %s\n"
msgstr ""
#: lib/problems.c:302
#: lib/problems.c:295
#, c-format
msgid "package %s has unsatisfied Conflicts: %s\n"
msgstr ""
#: lib/problems.c:307
#: lib/problems.c:300
#, c-format
msgid "unknown error %d encountered while manipulating package %s"
msgstr ""
#: lib/psm.c:270
#: lib/problems.c:380
msgid "conflicts with"
msgstr ""
#: lib/problems.c:380
msgid "is needed by"
msgstr ""
#: lib/psm.c:272
msgid "========== relocations\n"
msgstr ""
#: lib/psm.c:274
#: lib/psm.c:276
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
#: lib/psm.c:277
#: lib/psm.c:279
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/psm.c:347
#: lib/psm.c:349
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/psm.c:413
#: lib/psm.c:415
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/psm.c:423
#: lib/psm.c:425
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/psm.c:502
#: lib/psm.c:504
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/psm.c:1151
#: lib/psm.c:1153
#, c-format
msgid "cannot create %%%s %s\n"
msgstr ""
#: lib/psm.c:1157
#: lib/psm.c:1159
#, c-format
msgid "cannot write to %%%s %s\n"
msgstr ""
#: lib/psm.c:1198
#: lib/psm.c:1200
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:1322
#: lib/psm.c:1324
msgid "source package contains no .spec file\n"
msgstr ""
#: lib/psm.c:1432
#: lib/psm.c:1434
#, c-format
msgid "%s: running %s scriptlet\n"
msgstr ""
#: lib/psm.c:1600
#: lib/psm.c:1602
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr ""
#: lib/psm.c:1607
#: lib/psm.c:1609
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1949
#: lib/psm.c:1951
#, c-format
msgid "%s: %s-%s-%s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:2066
#: lib/psm.c:2068
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
msgstr ""
#: lib/psm.c:2180
#: lib/psm.c:2182
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:2189
#: lib/psm.c:2191
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:2230
#: lib/psm.c:2232
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:2231
#: lib/psm.c:2233
msgid " on file "
msgstr ""
#: lib/psm.c:2417
#: lib/psm.c:2419
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
#: lib/psm.c:2420
#: lib/psm.c:2422
#, c-format
msgid "%s failed: %s\n"
msgstr ""
@ -2323,7 +2328,7 @@ msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:600 lib/query.c:638 lib/rpminstall.c:328 lib/rpminstall.c:470
#: lib/rpminstall.c:841
#: lib/rpminstall.c:840
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@ -2396,7 +2401,7 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:854 lib/rpminstall.c:629
#: lib/query.c:854 lib/rpminstall.c:628
#, c-format
msgid "package %s is not installed\n"
msgstr ""
@ -2486,7 +2491,7 @@ msgid " %s A %s\tB %s\n"
msgstr ""
#. @=branchstate@
#: lib/rpmds.c:552
#: lib/rpmds.c:554
#, c-format
msgid "package %s has unsatisfied %s: %s\n"
msgstr ""
@ -2531,7 +2536,7 @@ msgstr ""
msgid "file %s requires a newer version of RPM\n"
msgstr ""
#: lib/rpminstall.c:462 lib/rpminstall.c:697
#: lib/rpminstall.c:462 lib/rpminstall.c:696
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
@ -2549,26 +2554,26 @@ msgstr ""
msgid "installing binary packages\n"
msgstr ""
#: lib/rpminstall.c:562
#: lib/rpminstall.c:561
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
#: lib/rpminstall.c:632
#: lib/rpminstall.c:631
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
#: lib/rpminstall.c:656
#: lib/rpminstall.c:655
msgid "removing these packages would break dependencies:\n"
msgstr ""
#: lib/rpminstall.c:683
#: lib/rpminstall.c:682
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
#: lib/rpminstall.c:689
#: lib/rpminstall.c:688
#, c-format
msgid "Installing %s\n"
msgstr ""
@ -2815,13 +2820,13 @@ msgstr ""
msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#: lib/transaction.c:244
#: lib/transaction.c:249
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:883
#: lib/transaction.c:902
#, c-format
msgid "excluding directory %s\n"
msgstr ""

121
po/hu.po
View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-08 16:51-0500\n"
"POT-Creation-Date: 2001-11-09 12:21-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:2144
#: build/pack.c:603 lib/psm.c:2146
#, 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:2409
#: build/pack.c:683 lib/psm.c:2411
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1598,7 +1598,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
#. @-modfilesys@
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:954
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:956
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
@ -2105,181 +2105,186 @@ msgstr ""
msgid "generate signature"
msgstr ""
#: lib/problems.c:201
msgid "conflicts with"
#. @observer@
#: lib/problems.c:229
msgid "different"
msgstr ""
#: lib/problems.c:201
msgid "is needed by"
msgstr ""
#: lib/problems.c:244
#: lib/problems.c:237
#, c-format
msgid "package %s is for a different architecture"
msgid "package %s is intended for a %s architecture"
msgstr ""
#: lib/problems.c:249
#: lib/problems.c:242
#, c-format
msgid "package %s is for a different operating system"
msgid "package %s is intended for a %s operating system"
msgstr ""
#: lib/problems.c:254
#: lib/problems.c:247
#, c-format
msgid "package %s is already installed"
msgstr ""
#: lib/problems.c:259
#: lib/problems.c:252
#, c-format
msgid "path %s in package %s is not relocateable"
msgstr ""
#: lib/problems.c:264
#: lib/problems.c:257
#, c-format
msgid "file %s conflicts between attempted installs of %s and %s"
msgstr ""
#: lib/problems.c:269
#: lib/problems.c:262
#, c-format
msgid "file %s from install of %s conflicts with file from package %s"
msgstr ""
#: lib/problems.c:274
#: lib/problems.c:267
#, c-format
msgid "package %s (which is newer than %s) is already installed"
msgstr ""
#: lib/problems.c:279
#: lib/problems.c:272
#, c-format
msgid "installing package %s needs %ld%cb on the %s filesystem"
msgstr ""
#: lib/problems.c:289
#: lib/problems.c:282
#, c-format
msgid "installing package %s needs %ld inodes on the %s filesystem"
msgstr ""
#: lib/problems.c:294
#: lib/problems.c:287
#, c-format
msgid "package %s pre-transaction syscall(s): %s failed: %s"
msgstr ""
#: lib/problems.c:298
#: lib/problems.c:291
#, c-format
msgid "package %s has unsatisfied Requires: %s\n"
msgstr ""
#: lib/problems.c:302
#: lib/problems.c:295
#, c-format
msgid "package %s has unsatisfied Conflicts: %s\n"
msgstr ""
#: lib/problems.c:307
#: lib/problems.c:300
#, c-format
msgid "unknown error %d encountered while manipulating package %s"
msgstr ""
#: lib/psm.c:270
#: lib/problems.c:380
msgid "conflicts with"
msgstr ""
#: lib/problems.c:380
msgid "is needed by"
msgstr ""
#: lib/psm.c:272
msgid "========== relocations\n"
msgstr ""
#: lib/psm.c:274
#: lib/psm.c:276
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
#: lib/psm.c:277
#: lib/psm.c:279
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/psm.c:347
#: lib/psm.c:349
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/psm.c:413
#: lib/psm.c:415
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/psm.c:423
#: lib/psm.c:425
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/psm.c:502
#: lib/psm.c:504
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/psm.c:1151
#: lib/psm.c:1153
#, c-format
msgid "cannot create %%%s %s\n"
msgstr ""
#: lib/psm.c:1157
#: lib/psm.c:1159
#, c-format
msgid "cannot write to %%%s %s\n"
msgstr ""
#: lib/psm.c:1198
#: lib/psm.c:1200
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:1322
#: lib/psm.c:1324
msgid "source package contains no .spec file\n"
msgstr ""
#: lib/psm.c:1432
#: lib/psm.c:1434
#, c-format
msgid "%s: running %s scriptlet\n"
msgstr ""
#: lib/psm.c:1600
#: lib/psm.c:1602
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr ""
#: lib/psm.c:1607
#: lib/psm.c:1609
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1949
#: lib/psm.c:1951
#, c-format
msgid "%s: %s-%s-%s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:2066
#: lib/psm.c:2068
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
msgstr ""
#: lib/psm.c:2180
#: lib/psm.c:2182
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:2189
#: lib/psm.c:2191
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:2230
#: lib/psm.c:2232
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:2231
#: lib/psm.c:2233
msgid " on file "
msgstr ""
#: lib/psm.c:2417
#: lib/psm.c:2419
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
#: lib/psm.c:2420
#: lib/psm.c:2422
#, c-format
msgid "%s failed: %s\n"
msgstr ""
@ -2328,7 +2333,7 @@ msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:600 lib/query.c:638 lib/rpminstall.c:328 lib/rpminstall.c:470
#: lib/rpminstall.c:841
#: lib/rpminstall.c:840
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@ -2401,7 +2406,7 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:854 lib/rpminstall.c:629
#: lib/query.c:854 lib/rpminstall.c:628
#, c-format
msgid "package %s is not installed\n"
msgstr ""
@ -2491,7 +2496,7 @@ msgid " %s A %s\tB %s\n"
msgstr ""
#. @=branchstate@
#: lib/rpmds.c:552
#: lib/rpmds.c:554
#, c-format
msgid "package %s has unsatisfied %s: %s\n"
msgstr ""
@ -2536,7 +2541,7 @@ msgstr ""
msgid "file %s requires a newer version of RPM\n"
msgstr ""
#: lib/rpminstall.c:462 lib/rpminstall.c:697
#: lib/rpminstall.c:462 lib/rpminstall.c:696
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
@ -2554,26 +2559,26 @@ msgstr ""
msgid "installing binary packages\n"
msgstr ""
#: lib/rpminstall.c:562
#: lib/rpminstall.c:561
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
#: lib/rpminstall.c:632
#: lib/rpminstall.c:631
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
#: lib/rpminstall.c:656
#: lib/rpminstall.c:655
msgid "removing these packages would break dependencies:\n"
msgstr ""
#: lib/rpminstall.c:683
#: lib/rpminstall.c:682
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
#: lib/rpminstall.c:689
#: lib/rpminstall.c:688
#, c-format
msgid "Installing %s\n"
msgstr ""
@ -2820,13 +2825,13 @@ msgstr ""
msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#: lib/transaction.c:244
#: lib/transaction.c:249
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:883
#: lib/transaction.c:902
#, c-format
msgid "excluding directory %s\n"
msgstr ""

121
po/id.po
View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-08 16:51-0500\n"
"POT-Creation-Date: 2001-11-09 12:21-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:2144
#: build/pack.c:603 lib/psm.c:2146
#, 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:2409
#: build/pack.c:683 lib/psm.c:2411
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1598,7 +1598,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
#. @-modfilesys@
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:954
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:956
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
@ -2105,181 +2105,186 @@ msgstr ""
msgid "generate signature"
msgstr ""
#: lib/problems.c:201
msgid "conflicts with"
#. @observer@
#: lib/problems.c:229
msgid "different"
msgstr ""
#: lib/problems.c:201
msgid "is needed by"
msgstr ""
#: lib/problems.c:244
#: lib/problems.c:237
#, c-format
msgid "package %s is for a different architecture"
msgid "package %s is intended for a %s architecture"
msgstr ""
#: lib/problems.c:249
#: lib/problems.c:242
#, c-format
msgid "package %s is for a different operating system"
msgid "package %s is intended for a %s operating system"
msgstr ""
#: lib/problems.c:254
#: lib/problems.c:247
#, c-format
msgid "package %s is already installed"
msgstr ""
#: lib/problems.c:259
#: lib/problems.c:252
#, c-format
msgid "path %s in package %s is not relocateable"
msgstr ""
#: lib/problems.c:264
#: lib/problems.c:257
#, c-format
msgid "file %s conflicts between attempted installs of %s and %s"
msgstr ""
#: lib/problems.c:269
#: lib/problems.c:262
#, c-format
msgid "file %s from install of %s conflicts with file from package %s"
msgstr ""
#: lib/problems.c:274
#: lib/problems.c:267
#, c-format
msgid "package %s (which is newer than %s) is already installed"
msgstr ""
#: lib/problems.c:279
#: lib/problems.c:272
#, c-format
msgid "installing package %s needs %ld%cb on the %s filesystem"
msgstr ""
#: lib/problems.c:289
#: lib/problems.c:282
#, c-format
msgid "installing package %s needs %ld inodes on the %s filesystem"
msgstr ""
#: lib/problems.c:294
#: lib/problems.c:287
#, c-format
msgid "package %s pre-transaction syscall(s): %s failed: %s"
msgstr ""
#: lib/problems.c:298
#: lib/problems.c:291
#, c-format
msgid "package %s has unsatisfied Requires: %s\n"
msgstr ""
#: lib/problems.c:302
#: lib/problems.c:295
#, c-format
msgid "package %s has unsatisfied Conflicts: %s\n"
msgstr ""
#: lib/problems.c:307
#: lib/problems.c:300
#, c-format
msgid "unknown error %d encountered while manipulating package %s"
msgstr ""
#: lib/psm.c:270
#: lib/problems.c:380
msgid "conflicts with"
msgstr ""
#: lib/problems.c:380
msgid "is needed by"
msgstr ""
#: lib/psm.c:272
msgid "========== relocations\n"
msgstr ""
#: lib/psm.c:274
#: lib/psm.c:276
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
#: lib/psm.c:277
#: lib/psm.c:279
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/psm.c:347
#: lib/psm.c:349
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/psm.c:413
#: lib/psm.c:415
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/psm.c:423
#: lib/psm.c:425
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/psm.c:502
#: lib/psm.c:504
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/psm.c:1151
#: lib/psm.c:1153
#, c-format
msgid "cannot create %%%s %s\n"
msgstr ""
#: lib/psm.c:1157
#: lib/psm.c:1159
#, c-format
msgid "cannot write to %%%s %s\n"
msgstr ""
#: lib/psm.c:1198
#: lib/psm.c:1200
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:1322
#: lib/psm.c:1324
msgid "source package contains no .spec file\n"
msgstr ""
#: lib/psm.c:1432
#: lib/psm.c:1434
#, c-format
msgid "%s: running %s scriptlet\n"
msgstr ""
#: lib/psm.c:1600
#: lib/psm.c:1602
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr ""
#: lib/psm.c:1607
#: lib/psm.c:1609
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1949
#: lib/psm.c:1951
#, c-format
msgid "%s: %s-%s-%s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:2066
#: lib/psm.c:2068
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
msgstr ""
#: lib/psm.c:2180
#: lib/psm.c:2182
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:2189
#: lib/psm.c:2191
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:2230
#: lib/psm.c:2232
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:2231
#: lib/psm.c:2233
msgid " on file "
msgstr ""
#: lib/psm.c:2417
#: lib/psm.c:2419
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
#: lib/psm.c:2420
#: lib/psm.c:2422
#, c-format
msgid "%s failed: %s\n"
msgstr ""
@ -2328,7 +2333,7 @@ msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:600 lib/query.c:638 lib/rpminstall.c:328 lib/rpminstall.c:470
#: lib/rpminstall.c:841
#: lib/rpminstall.c:840
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@ -2401,7 +2406,7 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:854 lib/rpminstall.c:629
#: lib/query.c:854 lib/rpminstall.c:628
#, c-format
msgid "package %s is not installed\n"
msgstr ""
@ -2491,7 +2496,7 @@ msgid " %s A %s\tB %s\n"
msgstr ""
#. @=branchstate@
#: lib/rpmds.c:552
#: lib/rpmds.c:554
#, c-format
msgid "package %s has unsatisfied %s: %s\n"
msgstr ""
@ -2536,7 +2541,7 @@ msgstr ""
msgid "file %s requires a newer version of RPM\n"
msgstr ""
#: lib/rpminstall.c:462 lib/rpminstall.c:697
#: lib/rpminstall.c:462 lib/rpminstall.c:696
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
@ -2554,26 +2559,26 @@ msgstr ""
msgid "installing binary packages\n"
msgstr ""
#: lib/rpminstall.c:562
#: lib/rpminstall.c:561
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
#: lib/rpminstall.c:632
#: lib/rpminstall.c:631
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
#: lib/rpminstall.c:656
#: lib/rpminstall.c:655
msgid "removing these packages would break dependencies:\n"
msgstr ""
#: lib/rpminstall.c:683
#: lib/rpminstall.c:682
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
#: lib/rpminstall.c:689
#: lib/rpminstall.c:688
#, c-format
msgid "Installing %s\n"
msgstr ""
@ -2820,13 +2825,13 @@ msgstr ""
msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#: lib/transaction.c:244
#: lib/transaction.c:249
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:883
#: lib/transaction.c:902
#, c-format
msgid "excluding directory %s\n"
msgstr ""

121
po/is.po
View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-08 16:51-0500\n"
"POT-Creation-Date: 2001-11-09 12:21-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:2144
#: build/pack.c:603 lib/psm.c:2146
#, 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:2409
#: build/pack.c:683 lib/psm.c:2411
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrifaði: %s\n"
@ -1599,7 +1599,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
#. @-modfilesys@
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:954
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:956
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
@ -2111,181 +2111,186 @@ msgstr ""
msgid "generate signature"
msgstr "búa til undirskrift"
#: lib/problems.c:201
msgid "conflicts with"
#. @observer@
#: lib/problems.c:229
msgid "different"
msgstr ""
#: lib/problems.c:201
msgid "is needed by"
msgstr ""
#: lib/problems.c:244
#: lib/problems.c:237
#, c-format
msgid "package %s is for a different architecture"
msgid "package %s is intended for a %s architecture"
msgstr ""
#: lib/problems.c:249
#: lib/problems.c:242
#, c-format
msgid "package %s is for a different operating system"
msgid "package %s is intended for a %s operating system"
msgstr ""
#: lib/problems.c:254
#: lib/problems.c:247
#, c-format
msgid "package %s is already installed"
msgstr ""
#: lib/problems.c:259
#: lib/problems.c:252
#, c-format
msgid "path %s in package %s is not relocateable"
msgstr ""
#: lib/problems.c:264
#: lib/problems.c:257
#, c-format
msgid "file %s conflicts between attempted installs of %s and %s"
msgstr ""
#: lib/problems.c:269
#: lib/problems.c:262
#, c-format
msgid "file %s from install of %s conflicts with file from package %s"
msgstr ""
#: lib/problems.c:274
#: lib/problems.c:267
#, c-format
msgid "package %s (which is newer than %s) is already installed"
msgstr ""
#: lib/problems.c:279
#: lib/problems.c:272
#, c-format
msgid "installing package %s needs %ld%cb on the %s filesystem"
msgstr ""
#: lib/problems.c:289
#: lib/problems.c:282
#, c-format
msgid "installing package %s needs %ld inodes on the %s filesystem"
msgstr ""
#: lib/problems.c:294
#: lib/problems.c:287
#, c-format
msgid "package %s pre-transaction syscall(s): %s failed: %s"
msgstr ""
#: lib/problems.c:298
#: lib/problems.c:291
#, c-format
msgid "package %s has unsatisfied Requires: %s\n"
msgstr ""
#: lib/problems.c:302
#: lib/problems.c:295
#, c-format
msgid "package %s has unsatisfied Conflicts: %s\n"
msgstr ""
#: lib/problems.c:307
#: lib/problems.c:300
#, c-format
msgid "unknown error %d encountered while manipulating package %s"
msgstr ""
#: lib/psm.c:270
#: lib/problems.c:380
msgid "conflicts with"
msgstr ""
#: lib/problems.c:380
msgid "is needed by"
msgstr ""
#: lib/psm.c:272
msgid "========== relocations\n"
msgstr ""
#: lib/psm.c:274
#: lib/psm.c:276
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
#: lib/psm.c:277
#: lib/psm.c:279
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%5d færa %s -> %s\n"
#: lib/psm.c:347
#: lib/psm.c:349
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/psm.c:413
#: lib/psm.c:415
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/psm.c:423
#: lib/psm.c:425
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/psm.c:502
#: lib/psm.c:504
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/psm.c:1151
#: lib/psm.c:1153
#, c-format
msgid "cannot create %%%s %s\n"
msgstr "gat ekki búið til %%%s %s\n"
#: lib/psm.c:1157
#: lib/psm.c:1159
#, c-format
msgid "cannot write to %%%s %s\n"
msgstr "get ekki ritað í %%%s %s\n"
#: lib/psm.c:1198
#: lib/psm.c:1200
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:1322
#: lib/psm.c:1324
msgid "source package contains no .spec file\n"
msgstr "pakkinn inniheldur enga .spec skrá\n"
#: lib/psm.c:1432
#: lib/psm.c:1434
#, c-format
msgid "%s: running %s scriptlet\n"
msgstr ""
#: lib/psm.c:1600
#: lib/psm.c:1602
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr ""
#: lib/psm.c:1607
#: lib/psm.c:1609
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1949
#: lib/psm.c:1951
#, c-format
msgid "%s: %s-%s-%s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:2066
#: lib/psm.c:2068
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
msgstr ""
#: lib/psm.c:2180
#: lib/psm.c:2182
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:2189
#: lib/psm.c:2191
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:2230
#: lib/psm.c:2232
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:2231
#: lib/psm.c:2233
msgid " on file "
msgstr ""
#: lib/psm.c:2417
#: lib/psm.c:2419
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "gat ekki opnað %s: %s\n"
#: lib/psm.c:2420
#: lib/psm.c:2422
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s brást\n"
@ -2334,7 +2339,7 @@ msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:600 lib/query.c:638 lib/rpminstall.c:328 lib/rpminstall.c:470
#: lib/rpminstall.c:841
#: lib/rpminstall.c:840
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@ -2407,7 +2412,7 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:854 lib/rpminstall.c:629
#: lib/query.c:854 lib/rpminstall.c:628
#, c-format
msgid "package %s is not installed\n"
msgstr ""
@ -2497,7 +2502,7 @@ msgid " %s A %s\tB %s\n"
msgstr ""
#. @=branchstate@
#: lib/rpmds.c:552
#: lib/rpmds.c:554
#, c-format
msgid "package %s has unsatisfied %s: %s\n"
msgstr ""
@ -2542,7 +2547,7 @@ msgstr ""
msgid "file %s requires a newer version of RPM\n"
msgstr ""
#: lib/rpminstall.c:462 lib/rpminstall.c:697
#: lib/rpminstall.c:462 lib/rpminstall.c:696
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
@ -2560,26 +2565,26 @@ msgstr ""
msgid "installing binary packages\n"
msgstr ""
#: lib/rpminstall.c:562
#: lib/rpminstall.c:561
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
#: lib/rpminstall.c:632
#: lib/rpminstall.c:631
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
#: lib/rpminstall.c:656
#: lib/rpminstall.c:655
msgid "removing these packages would break dependencies:\n"
msgstr ""
#: lib/rpminstall.c:683
#: lib/rpminstall.c:682
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
#: lib/rpminstall.c:689
#: lib/rpminstall.c:688
#, c-format
msgid "Installing %s\n"
msgstr ""
@ -2826,13 +2831,13 @@ msgstr ""
msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#: lib/transaction.c:244
#: lib/transaction.c:249
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:883
#: lib/transaction.c:902
#, c-format
msgid "excluding directory %s\n"
msgstr ""

121
po/it.po
View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-08 16:51-0500\n"
"POT-Creation-Date: 2001-11-09 12:21-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:2144
#: build/pack.c:603 lib/psm.c:2146
#, 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:2409
#: build/pack.c:683 lib/psm.c:2411
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1598,7 +1598,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
#. @-modfilesys@
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:954
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:956
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
@ -2105,181 +2105,186 @@ msgstr ""
msgid "generate signature"
msgstr ""
#: lib/problems.c:201
msgid "conflicts with"
#. @observer@
#: lib/problems.c:229
msgid "different"
msgstr ""
#: lib/problems.c:201
msgid "is needed by"
msgstr ""
#: lib/problems.c:244
#: lib/problems.c:237
#, c-format
msgid "package %s is for a different architecture"
msgid "package %s is intended for a %s architecture"
msgstr ""
#: lib/problems.c:249
#: lib/problems.c:242
#, c-format
msgid "package %s is for a different operating system"
msgid "package %s is intended for a %s operating system"
msgstr ""
#: lib/problems.c:254
#: lib/problems.c:247
#, c-format
msgid "package %s is already installed"
msgstr ""
#: lib/problems.c:259
#: lib/problems.c:252
#, c-format
msgid "path %s in package %s is not relocateable"
msgstr ""
#: lib/problems.c:264
#: lib/problems.c:257
#, c-format
msgid "file %s conflicts between attempted installs of %s and %s"
msgstr ""
#: lib/problems.c:269
#: lib/problems.c:262
#, c-format
msgid "file %s from install of %s conflicts with file from package %s"
msgstr ""
#: lib/problems.c:274
#: lib/problems.c:267
#, c-format
msgid "package %s (which is newer than %s) is already installed"
msgstr ""
#: lib/problems.c:279
#: lib/problems.c:272
#, c-format
msgid "installing package %s needs %ld%cb on the %s filesystem"
msgstr ""
#: lib/problems.c:289
#: lib/problems.c:282
#, c-format
msgid "installing package %s needs %ld inodes on the %s filesystem"
msgstr ""
#: lib/problems.c:294
#: lib/problems.c:287
#, c-format
msgid "package %s pre-transaction syscall(s): %s failed: %s"
msgstr ""
#: lib/problems.c:298
#: lib/problems.c:291
#, c-format
msgid "package %s has unsatisfied Requires: %s\n"
msgstr ""
#: lib/problems.c:302
#: lib/problems.c:295
#, c-format
msgid "package %s has unsatisfied Conflicts: %s\n"
msgstr ""
#: lib/problems.c:307
#: lib/problems.c:300
#, c-format
msgid "unknown error %d encountered while manipulating package %s"
msgstr ""
#: lib/psm.c:270
#: lib/problems.c:380
msgid "conflicts with"
msgstr ""
#: lib/problems.c:380
msgid "is needed by"
msgstr ""
#: lib/psm.c:272
msgid "========== relocations\n"
msgstr ""
#: lib/psm.c:274
#: lib/psm.c:276
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
#: lib/psm.c:277
#: lib/psm.c:279
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/psm.c:347
#: lib/psm.c:349
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/psm.c:413
#: lib/psm.c:415
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/psm.c:423
#: lib/psm.c:425
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/psm.c:502
#: lib/psm.c:504
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/psm.c:1151
#: lib/psm.c:1153
#, c-format
msgid "cannot create %%%s %s\n"
msgstr ""
#: lib/psm.c:1157
#: lib/psm.c:1159
#, c-format
msgid "cannot write to %%%s %s\n"
msgstr ""
#: lib/psm.c:1198
#: lib/psm.c:1200
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:1322
#: lib/psm.c:1324
msgid "source package contains no .spec file\n"
msgstr ""
#: lib/psm.c:1432
#: lib/psm.c:1434
#, c-format
msgid "%s: running %s scriptlet\n"
msgstr ""
#: lib/psm.c:1600
#: lib/psm.c:1602
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr ""
#: lib/psm.c:1607
#: lib/psm.c:1609
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1949
#: lib/psm.c:1951
#, c-format
msgid "%s: %s-%s-%s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:2066
#: lib/psm.c:2068
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
msgstr ""
#: lib/psm.c:2180
#: lib/psm.c:2182
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:2189
#: lib/psm.c:2191
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:2230
#: lib/psm.c:2232
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:2231
#: lib/psm.c:2233
msgid " on file "
msgstr ""
#: lib/psm.c:2417
#: lib/psm.c:2419
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
#: lib/psm.c:2420
#: lib/psm.c:2422
#, c-format
msgid "%s failed: %s\n"
msgstr ""
@ -2328,7 +2333,7 @@ msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:600 lib/query.c:638 lib/rpminstall.c:328 lib/rpminstall.c:470
#: lib/rpminstall.c:841
#: lib/rpminstall.c:840
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@ -2401,7 +2406,7 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:854 lib/rpminstall.c:629
#: lib/query.c:854 lib/rpminstall.c:628
#, c-format
msgid "package %s is not installed\n"
msgstr ""
@ -2491,7 +2496,7 @@ msgid " %s A %s\tB %s\n"
msgstr ""
#. @=branchstate@
#: lib/rpmds.c:552
#: lib/rpmds.c:554
#, c-format
msgid "package %s has unsatisfied %s: %s\n"
msgstr ""
@ -2536,7 +2541,7 @@ msgstr ""
msgid "file %s requires a newer version of RPM\n"
msgstr ""
#: lib/rpminstall.c:462 lib/rpminstall.c:697
#: lib/rpminstall.c:462 lib/rpminstall.c:696
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
@ -2554,26 +2559,26 @@ msgstr ""
msgid "installing binary packages\n"
msgstr ""
#: lib/rpminstall.c:562
#: lib/rpminstall.c:561
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
#: lib/rpminstall.c:632
#: lib/rpminstall.c:631
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
#: lib/rpminstall.c:656
#: lib/rpminstall.c:655
msgid "removing these packages would break dependencies:\n"
msgstr ""
#: lib/rpminstall.c:683
#: lib/rpminstall.c:682
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
#: lib/rpminstall.c:689
#: lib/rpminstall.c:688
#, c-format
msgid "Installing %s\n"
msgstr ""
@ -2820,13 +2825,13 @@ msgstr ""
msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#: lib/transaction.c:244
#: lib/transaction.c:249
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:883
#: lib/transaction.c:902
#, c-format
msgid "excluding directory %s\n"
msgstr ""

127
po/ja.po
View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-08 16:51-0500\n"
"POT-Creation-Date: 2001-11-09 12:21-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:2144
#: build/pack.c:603 lib/psm.c:2146
#, 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:2409
#: build/pack.c:683 lib/psm.c:2411
#, c-format
msgid "Wrote: %s\n"
msgstr "書き込み中: %s\n"
@ -1679,7 +1679,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr "grabDate() RPM_STRING_TYPE カウントは 1 でなければなりません。\n"
#. @-modfilesys@
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:954
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:956
#, c-format
msgid "Data type %d not supported\n"
msgstr "データタイプ %d はサポートされていません\n"
@ -2252,195 +2252,200 @@ msgstr "
msgid "generate signature"
msgstr "PGP/GPG 署名を生成します"
#: lib/problems.c:201
#, fuzzy
msgid "conflicts with"
msgstr " %s-%s-%s と競合します\n"
#. @observer@
#: lib/problems.c:229
msgid "different"
msgstr ""
#: lib/problems.c:201
#, fuzzy
msgid "is needed by"
msgstr "は %s-%s-%s に必要とされています\n"
#: lib/problems.c:244
#: lib/problems.c:237
#, fuzzy, c-format
msgid "package %s is for a different architecture"
msgid "package %s is intended for a %s architecture"
msgstr "パッケージ %s-%s-%s は異なるアーキテクチャ向けです"
#: lib/problems.c:249
#: lib/problems.c:242
#, fuzzy, c-format
msgid "package %s is for a different operating system"
msgid "package %s is intended for a %s operating system"
msgstr "パッケージ %s-%s-%s は異なる OS 向けです"
#: lib/problems.c:254
#: lib/problems.c:247
#, fuzzy, c-format
msgid "package %s is already installed"
msgstr "パッケージ %s-%s-%s はすでにインストールされています"
#: lib/problems.c:259
#: lib/problems.c:252
#, fuzzy, c-format
msgid "path %s in package %s is not relocateable"
msgstr "パッケージ %s は再配置できません"
#: lib/problems.c:264
#: lib/problems.c:257
#, fuzzy, c-format
msgid "file %s conflicts between attempted installs of %s and %s"
msgstr ""
"ファイル %s は %s-%s-%s と %s-%s-%s のインストールのファイルと競合しています"
#: lib/problems.c:269
#: lib/problems.c:262
#, fuzzy, c-format
msgid "file %s from install of %s conflicts with file from package %s"
msgstr ""
"%s-%s-%s のインストールからのファイル %s はパッケージ %s-%s-%s からのファイル"
"と競合しています"
#: lib/problems.c:274
#: lib/problems.c:267
#, fuzzy, c-format
msgid "package %s (which is newer than %s) is already installed"
msgstr ""
"パッケージ %s-%s-%s (%s-%s-%sよりも新しいもの) はすでにインストールされていま"
"す"
#: lib/problems.c:279
#: lib/problems.c:272
#, fuzzy, c-format
msgid "installing package %s needs %ld%cb on the %s filesystem"
msgstr ""
"パッケージ %s-%s-%s のインストールは %ld%cb が必要です(%s ファイルシステム上"
"で)"
#: lib/problems.c:289
#: lib/problems.c:282
#, fuzzy, c-format
msgid "installing package %s needs %ld inodes on the %s filesystem"
msgstr ""
"パッケージ %s-%s-%s のインストールは %ld%cb が必要です(%s ファイルシステム上"
"で)"
#: lib/problems.c:294
#: lib/problems.c:287
#, c-format
msgid "package %s pre-transaction syscall(s): %s failed: %s"
msgstr ""
#: lib/problems.c:298
#: lib/problems.c:291
#, fuzzy, c-format
msgid "package %s has unsatisfied Requires: %s\n"
msgstr "パッケージ %s は require が満たされていません: %s\n"
#: lib/problems.c:302
#: lib/problems.c:295
#, fuzzy, c-format
msgid "package %s has unsatisfied Conflicts: %s\n"
msgstr "パッケージ %s は require が満たされていません: %s\n"
#: lib/problems.c:307
#: lib/problems.c:300
#, fuzzy, c-format
msgid "unknown error %d encountered while manipulating package %s"
msgstr "不明なエラー %d がパッケージ %s-%s-%s の操作中におきました"
#: lib/psm.c:270
#: lib/problems.c:380
#, fuzzy
msgid "conflicts with"
msgstr " %s-%s-%s と競合します\n"
#: lib/problems.c:380
#, fuzzy
msgid "is needed by"
msgstr "は %s-%s-%s に必要とされています\n"
#: lib/psm.c:272
msgid "========== relocations\n"
msgstr ""
#: lib/psm.c:274
#: lib/psm.c:276
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "OS は除外されています: %s"
#: lib/psm.c:277
#: lib/psm.c:279
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%s を %s に再配置しています\n"
#: lib/psm.c:347
#: lib/psm.c:349
#, fuzzy, c-format
msgid "excluding multilib path %s%s\n"
msgstr "ファイルの除外: %s%s\n"
#: lib/psm.c:413
#: lib/psm.c:415
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "ファイルの除外: %s%s\n"
#: lib/psm.c:423
#: lib/psm.c:425
#, c-format
msgid "relocating %s to %s\n"
msgstr "%s を %s に再配置しています\n"
#: lib/psm.c:502
#: lib/psm.c:504
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "ディレクトリ %s を %s に再配置しています\n"
#: lib/psm.c:1151
#: lib/psm.c:1153
#, fuzzy, c-format
msgid "cannot create %%%s %s\n"
msgstr "%s を作成できません: %s\n"
#: lib/psm.c:1157
#: lib/psm.c:1159
#, fuzzy, c-format
msgid "cannot write to %%%s %s\n"
msgstr "%s へ書き込めません"
#: lib/psm.c:1198
#: lib/psm.c:1200
#, fuzzy
msgid "source package expected, binary found\n"
msgstr "ソースパッケージが期待されます、バイナリは見つかりました"
#: lib/psm.c:1322
#: lib/psm.c:1324
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "ソースパッケージは .spec ファイルを含んでいません"
#: lib/psm.c:1432
#: lib/psm.c:1434
#, fuzzy, c-format
msgid "%s: running %s scriptlet\n"
msgstr "ポストインストールスクリプト(が有れば)を実行します\n"
#: lib/psm.c:1600
#: lib/psm.c:1602
#, fuzzy, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr "スクリプトの実行に失敗"
#: lib/psm.c:1607
#: lib/psm.c:1609
#, fuzzy, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr "スクリプトの実行に失敗"
#: lib/psm.c:1949
#: lib/psm.c:1951
#, fuzzy, c-format
msgid "%s: %s-%s-%s has %d files, test = %d\n"
msgstr "パッケージ: %s-%s-%s ファイルテスト = %d\n"
#: lib/psm.c:2066
#: lib/psm.c:2068
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
msgstr ""
#: lib/psm.c:2180
#: lib/psm.c:2182
#, fuzzy, c-format
msgid "user %s does not exist - using root\n"
msgstr "ユーザ %s は存在しません - root を使用します"
#: lib/psm.c:2189
#: lib/psm.c:2191
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "グループ %s は存在しません - root を使用します"
#: lib/psm.c:2230
#: lib/psm.c:2232
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "ファイル %s のアーカイブの伸長に失敗 %s%s: %s"
#: lib/psm.c:2231
#: lib/psm.c:2233
#, fuzzy
msgid " on file "
msgstr "ファイル上"
#: lib/psm.c:2417
#: lib/psm.c:2419
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s のオープンに失敗: %s"
#: lib/psm.c:2420
#: lib/psm.c:2422
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s 失敗"
@ -2490,7 +2495,7 @@ msgid "can't query %s: %s\n"
msgstr "%s を削除(unlink)できません: %s\n"
#: lib/query.c:600 lib/query.c:638 lib/rpminstall.c:328 lib/rpminstall.c:470
#: lib/rpminstall.c:841
#: lib/rpminstall.c:840
#, c-format
msgid "open of %s failed: %s\n"
msgstr "%s のオープンに失敗: %s\n"
@ -2564,7 +2569,7 @@ msgstr "
msgid "record %u could not be read\n"
msgstr "レコード %d を読むことができませんでした\n"
#: lib/query.c:854 lib/rpminstall.c:629
#: lib/query.c:854 lib/rpminstall.c:628
#, c-format
msgid "package %s is not installed\n"
msgstr "パッケージ %s はインストールされていません\n"
@ -2660,7 +2665,7 @@ msgid " %s A %s\tB %s\n"
msgstr ""
#. @=branchstate@
#: lib/rpmds.c:552
#: lib/rpmds.c:554
#, fuzzy, c-format
msgid "package %s has unsatisfied %s: %s\n"
msgstr "パッケージ %s は require が満たされていません: %s\n"
@ -2706,7 +2711,7 @@ msgstr "
msgid "file %s requires a newer version of RPM\n"
msgstr "ファイル %s にはより新しい RPM のバージョンが必要です\n"
#: lib/rpminstall.c:462 lib/rpminstall.c:697
#: lib/rpminstall.c:462 lib/rpminstall.c:696
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "%s をインストールできません\n"
@ -2724,26 +2729,26 @@ msgstr "
msgid "installing binary packages\n"
msgstr "バイナリパッケージをインストール中\n"
#: lib/rpminstall.c:562
#: lib/rpminstall.c:561
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "ファイル %s をオープンできません: %s"
#: lib/rpminstall.c:632
#: lib/rpminstall.c:631
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" は複数のパッケージを指定しています\n"
#: lib/rpminstall.c:656
#: lib/rpminstall.c:655
msgid "removing these packages would break dependencies:\n"
msgstr "これらのパッケージを削除すると依存性を破壊します:\n"
#: lib/rpminstall.c:683
#: lib/rpminstall.c:682
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "%s をオープンできません\n"
#: lib/rpminstall.c:689
#: lib/rpminstall.c:688
#, c-format
msgid "Installing %s\n"
msgstr "%s をインストール中\n"
@ -3004,13 +3009,13 @@ msgstr ""
msgid "Signature: UNKNOWN (%d)\n"
msgstr "署名パッド: %d\n"
#: lib/transaction.c:244
#: lib/transaction.c:249
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s は missingok フラグのためスキップします\n"
#. @innercontinue@
#: lib/transaction.c:883
#: lib/transaction.c:902
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "ディレクトリの除外: %s\n"

131
po/ko.po
View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-08 16:51-0500\n"
"POT-Creation-Date: 2001-11-09 12:21-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:2144
#: build/pack.c:603 lib/psm.c:2146
#, 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:2409
#: build/pack.c:683 lib/psm.c:2411
#, c-format
msgid "Wrote: %s\n"
msgstr "작성: %s\n"
@ -1620,7 +1620,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr "dataLength() RPM_STRING_TYPE 카운트는 반드시 '1' 이어야 합니다.\n"
#. @-modfilesys@
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:954
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:956
#, c-format
msgid "Data type %d not supported\n"
msgstr "%d 데이터 유형은 사용하실 수 없습니다\n"
@ -2144,195 +2144,200 @@ msgstr "
msgid "generate signature"
msgstr "서명을 작성합니다"
#: lib/problems.c:201
#, fuzzy
msgid "conflicts with"
msgstr " %s-%s-%s (와)과 충돌합니다\n"
#. @observer@
#: lib/problems.c:229
msgid "different"
msgstr ""
#: lib/problems.c:201
#, fuzzy
msgid "is needed by"
msgstr " (은)는 %s-%s-%s 에서 필요로 합니다\n"
#: lib/problems.c:244
#, c-format
msgid "package %s is for a different architecture"
#: lib/problems.c:237
#, fuzzy, c-format
msgid "package %s is intended for a %s architecture"
msgstr "%s (은)는 다른 아키텍쳐를 위한 패키지입니다"
#: lib/problems.c:249
#, c-format
msgid "package %s is for a different operating system"
#: lib/problems.c:242
#, fuzzy, c-format
msgid "package %s is intended for a %s operating system"
msgstr "%s (은)는 다른 운영체제를 위한 패키지입니다"
#: lib/problems.c:254
#: lib/problems.c:247
#, c-format
msgid "package %s is already installed"
msgstr "%s 패키지는 이미 설치되어 있습니다"
#: lib/problems.c:259
#: lib/problems.c:252
#, c-format
msgid "path %s in package %s is not relocateable"
msgstr "%2$s 패키지 안의 %1$s 경로는 재배치할 수 없습니다"
#: lib/problems.c:264
#: lib/problems.c:257
#, c-format
msgid "file %s conflicts between attempted installs of %s and %s"
msgstr "%2$s (와)과 %3$s 의 설치 과정에서 %1$s 파일이 서로 충돌합니다"
#: lib/problems.c:269
#: lib/problems.c:262
#, c-format
msgid "file %s from install of %s conflicts with file from package %s"
msgstr "%2$s 에서 설치되는 %1$s 파일은 %3$s 패키지의 파일과 충돌합니다"
#: lib/problems.c:274
#: lib/problems.c:267
#, c-format
msgid "package %s (which is newer than %s) is already installed"
msgstr "%s 패키지 (%s 보다 최신의 패키지)는 이미 설치되어 있습니다"
#: lib/problems.c:279
#: lib/problems.c:272
#, c-format
msgid "installing package %s needs %ld%cb on the %s filesystem"
msgstr ""
"%4$s 파일시스템 상에서 %1$s 패키지를 설치할 경우에는 %2$ld%3$cb (이)가 필요합"
"니다"
#: lib/problems.c:289
#: lib/problems.c:282
#, c-format
msgid "installing package %s needs %ld inodes on the %s filesystem"
msgstr ""
"%3$s 파일시스템 상에서 %1$s 패키지를 설치할 경우에는 %2$ld 의 아이노드(inode)"
"가 필요합니다"
#: lib/problems.c:294
#: lib/problems.c:287
#, c-format
msgid "package %s pre-transaction syscall(s): %s failed: %s"
msgstr ""
"%s 패키지의 선(pre)-트랜잭션 시스템콜(syscall): %s (이)가 실패했습니다: %s"
#: lib/problems.c:298
#: lib/problems.c:291
#, fuzzy, c-format
msgid "package %s has unsatisfied Requires: %s\n"
msgstr "%s-%s-%s 패키지의 필요 사항이 만족되지 않음: %s\n"
#: lib/problems.c:302
#: lib/problems.c:295
#, fuzzy, c-format
msgid "package %s has unsatisfied Conflicts: %s\n"
msgstr "%s-%s-%s 패키지의 필요 사항이 만족되지 않음: %s\n"
#: lib/problems.c:307
#: lib/problems.c:300
#, c-format
msgid "unknown error %d encountered while manipulating package %s"
msgstr ""
"%2$s 패키지를 처리하는 과정에서 알 수 없는 오류 %1$d (이)가 발생했습니다"
#: lib/psm.c:270
#: lib/problems.c:380
#, fuzzy
msgid "conflicts with"
msgstr " %s-%s-%s (와)과 충돌합니다\n"
#: lib/problems.c:380
#, fuzzy
msgid "is needed by"
msgstr " (은)는 %s-%s-%s 에서 필요로 합니다\n"
#: lib/psm.c:272
msgid "========== relocations\n"
msgstr "========== 재배치\n"
#: lib/psm.c:274
#: lib/psm.c:276
#, c-format
msgid "%5d exclude %s\n"
msgstr "%5d 제외(exclude) %s\n"
#: lib/psm.c:277
#: lib/psm.c:279
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%5d 재배치 %s -> %s\n"
#: lib/psm.c:347
#: lib/psm.c:349
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr "%s%s multilib 경로를 제외시킵니다\n"
#: lib/psm.c:413
#: lib/psm.c:415
#, c-format
msgid "excluding %s %s\n"
msgstr "%s %s (을)를 제외시킵니다\n"
#: lib/psm.c:423
#: lib/psm.c:425
#, c-format
msgid "relocating %s to %s\n"
msgstr "%s 에서 %s (으)로 재배치 합니다\n"
#: lib/psm.c:502
#: lib/psm.c:504
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "%s 디렉토리를 %s (으)로 재배치 합니다\n"
#: lib/psm.c:1151
#: lib/psm.c:1153
#, c-format
msgid "cannot create %%%s %s\n"
msgstr "%%%s %s (을)를 생성할 수 없습니다\n"
#: lib/psm.c:1157
#: lib/psm.c:1159
#, c-format
msgid "cannot write to %%%s %s\n"
msgstr "%%%s %s (을)를 작성할 수 없습니다\n"
#: lib/psm.c:1198
#: lib/psm.c:1200
msgid "source package expected, binary found\n"
msgstr "소스 패키지가 요구됩니다, 바이너리를 찾았습니다\n"
#: lib/psm.c:1322
#: lib/psm.c:1324
msgid "source package contains no .spec file\n"
msgstr "소스 패키지에 .spec 파일이 포함되어 있지 않습니다\n"
#: lib/psm.c:1432
#: lib/psm.c:1434
#, fuzzy, c-format
msgid "%s: running %s scriptlet\n"
msgstr "%s: %s 스크립트를 실행합니다 (있을 경우)\n"
#: lib/psm.c:1600
#: lib/psm.c:1602
#, 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:1607
#: lib/psm.c:1609
#, 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:1949
#: lib/psm.c:1951
#, c-format
msgid "%s: %s-%s-%s has %d files, test = %d\n"
msgstr "%s: %s-%s-%s (이)가 %d 의 파일을 갖고 있습니다, 테스트 = %d\n"
#: lib/psm.c:2066
#: lib/psm.c:2068
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
msgstr ""
"%s: %s 스크립트릿(scriptlet)가 실패했습니다 (%d), %s-%s-%s (을)를 생략합니"
"다\n"
#: lib/psm.c:2180
#: lib/psm.c:2182
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "%s 사용자가 존재하지 않습니다 - root를 이용합니다\n"
#: lib/psm.c:2189
#: lib/psm.c:2191
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "%s 그룹이 존재하지 않습니다 - root를 이용합니다\n"
#: lib/psm.c:2230
#: lib/psm.c:2232
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "아카이브를 푸는데 실패함%s%s: %s\n"
#: lib/psm.c:2231
#: lib/psm.c:2233
msgid " on file "
msgstr " 다음 파일에 "
#: lib/psm.c:2417
#: lib/psm.c:2419
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%2$s 파일의 %1$s (이)가 실패함: %3$s\n"
#: lib/psm.c:2420
#: lib/psm.c:2422
#, c-format
msgid "%s failed: %s\n"
msgstr "%s (이)가 실패함: %s\n"
@ -2381,7 +2386,7 @@ msgid "can't query %s: %s\n"
msgstr "%s (을)를 질의할 수 없음: %s\n"
#: lib/query.c:600 lib/query.c:638 lib/rpminstall.c:328 lib/rpminstall.c:470
#: lib/rpminstall.c:841
#: lib/rpminstall.c:840
#, c-format
msgid "open of %s failed: %s\n"
msgstr "%s (을)를 여는데 실패함: %s\n"
@ -2454,7 +2459,7 @@ msgstr "
msgid "record %u could not be read\n"
msgstr "기록(record) 번호 %u (은)는 읽을 수 없습니다\n"
#: lib/query.c:854 lib/rpminstall.c:629
#: lib/query.c:854 lib/rpminstall.c:628
#, c-format
msgid "package %s is not installed\n"
msgstr "%s 패키지는 설치되어 있지 않습니다\n"
@ -2548,7 +2553,7 @@ msgid " %s A %s\tB %s\n"
msgstr " %s A %s\tB %s\n"
#. @=branchstate@
#: lib/rpmds.c:552
#: lib/rpmds.c:554
#, fuzzy, c-format
msgid "package %s has unsatisfied %s: %s\n"
msgstr "%s-%s-%s 패키지의 필요 사항이 만족되지 않음: %s\n"
@ -2593,7 +2598,7 @@ msgstr "%s
msgid "file %s requires a newer version of RPM\n"
msgstr "%s 파일이 최신 버전의 RPM을 필요로 합니다\n"
#: lib/rpminstall.c:462 lib/rpminstall.c:697
#: lib/rpminstall.c:462 lib/rpminstall.c:696
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s (은)는 설치될 수 없습니다\n"
@ -2611,26 +2616,26 @@ msgstr "
msgid "installing binary packages\n"
msgstr "바이너리 패키지를 설치합니다\n"
#: lib/rpminstall.c:562
#: lib/rpminstall.c:561
#, c-format
msgid "cannot open file %s: %s\n"
msgstr "%s 파일을 열 수 없음: %s\n"
#: lib/rpminstall.c:632
#: lib/rpminstall.c:631
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" 여러개의 패키지를 지정합니다\n"
#: lib/rpminstall.c:656
#: lib/rpminstall.c:655
msgid "removing these packages would break dependencies:\n"
msgstr "이 패키지들을 제거하면 의존성이 깨질 수 있음:\n"
#: lib/rpminstall.c:683
#: lib/rpminstall.c:682
#, c-format
msgid "cannot open %s: %s\n"
msgstr "%s (을)를 열 수 없음: %s\n"
#: lib/rpminstall.c:689
#: lib/rpminstall.c:688
#, c-format
msgid "Installing %s\n"
msgstr "%s (을)를 설치합니다\n"
@ -2880,13 +2885,13 @@ msgstr ""
msgid "Signature: UNKNOWN (%d)\n"
msgstr "서명: size(%d)+pad(%d)\n"
#: lib/transaction.c:244
#: lib/transaction.c:249
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "missingok 플래그로 인해 %s (을)를 생략합니다\n"
#. @innercontinue@
#: lib/transaction.c:883
#: lib/transaction.c:902
#, c-format
msgid "excluding directory %s\n"
msgstr "%s 디렉토리를 제외시킵니다\n"

131
po/no.po
View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-08 16:51-0500\n"
"POT-Creation-Date: 2001-11-09 12:21-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:2144
#: build/pack.c:603 lib/psm.c:2146
#, 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:2409
#: build/pack.c:683 lib/psm.c:2411
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrev: %s\n"
@ -1613,7 +1613,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
#. @-modfilesys@
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:954
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:956
#, c-format
msgid "Data type %d not supported\n"
msgstr "Datatype %d ikke støttet\n"
@ -2133,183 +2133,188 @@ msgstr "signer en pakke (forkast n
msgid "generate signature"
msgstr "generer signatur"
#: lib/problems.c:201
#, fuzzy
msgid "conflicts with"
msgstr " er i konflikt med %s-%s-%s\n"
#. @observer@
#: lib/problems.c:229
msgid "different"
msgstr ""
#: lib/problems.c:201
#, fuzzy
msgid "is needed by"
msgstr " kreves av %s-%s-%s\n"
#: lib/problems.c:244
#, c-format
msgid "package %s is for a different architecture"
#: lib/problems.c:237
#, fuzzy, c-format
msgid "package %s is intended for a %s architecture"
msgstr "pakke %s er for en annen arkitektur"
#: lib/problems.c:249
#, c-format
msgid "package %s is for a different operating system"
#: lib/problems.c:242
#, fuzzy, c-format
msgid "package %s is intended for a %s operating system"
msgstr "pakke %s er for et annet operativsystem"
#: lib/problems.c:254
#: lib/problems.c:247
#, c-format
msgid "package %s is already installed"
msgstr "pakke %s er allerede installert"
#: lib/problems.c:259
#: lib/problems.c:252
#, c-format
msgid "path %s in package %s is not relocateable"
msgstr "sti %s i pakke %s kan ikke relokeres"
#: lib/problems.c:264
#: lib/problems.c:257
#, c-format
msgid "file %s conflicts between attempted installs of %s and %s"
msgstr ""
#: lib/problems.c:269
#: lib/problems.c:262
#, c-format
msgid "file %s from install of %s conflicts with file from package %s"
msgstr ""
#: lib/problems.c:274
#: lib/problems.c:267
#, c-format
msgid "package %s (which is newer than %s) is already installed"
msgstr ""
#: lib/problems.c:279
#: lib/problems.c:272
#, c-format
msgid "installing package %s needs %ld%cb on the %s filesystem"
msgstr ""
#: lib/problems.c:289
#: lib/problems.c:282
#, c-format
msgid "installing package %s needs %ld inodes on the %s filesystem"
msgstr ""
#: lib/problems.c:294
#: lib/problems.c:287
#, c-format
msgid "package %s pre-transaction syscall(s): %s failed: %s"
msgstr ""
#: lib/problems.c:298
#: lib/problems.c:291
#, fuzzy, c-format
msgid "package %s has unsatisfied Requires: %s\n"
msgstr "pakke %s er i konflikt: %s\n"
#: lib/problems.c:302
#: lib/problems.c:295
#, fuzzy, c-format
msgid "package %s has unsatisfied Conflicts: %s\n"
msgstr "pakke %s er i konflikt: %s\n"
#: lib/problems.c:307
#: lib/problems.c:300
#, c-format
msgid "unknown error %d encountered while manipulating package %s"
msgstr ""
#: lib/psm.c:270
#: lib/problems.c:380
#, fuzzy
msgid "conflicts with"
msgstr " er i konflikt med %s-%s-%s\n"
#: lib/problems.c:380
#, fuzzy
msgid "is needed by"
msgstr " kreves av %s-%s-%s\n"
#: lib/psm.c:272
msgid "========== relocations\n"
msgstr ""
#: lib/psm.c:274
#: lib/psm.c:276
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
#: lib/psm.c:277
#: lib/psm.c:279
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%5d omplasser %s -> %s\n"
#: lib/psm.c:347
#: lib/psm.c:349
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr "ekskluderer multilib-sti %s%s\n"
#: lib/psm.c:413
#: lib/psm.c:415
#, c-format
msgid "excluding %s %s\n"
msgstr "eksluderer %s %s\n"
#: lib/psm.c:423
#: lib/psm.c:425
#, c-format
msgid "relocating %s to %s\n"
msgstr "relokerer %s til %s\n"
#: lib/psm.c:502
#: lib/psm.c:504
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "relokerer katalog %s til %s\n"
#: lib/psm.c:1151
#: lib/psm.c:1153
#, c-format
msgid "cannot create %%%s %s\n"
msgstr "kan ikke opprette %%%s %s\n"
#: lib/psm.c:1157
#: lib/psm.c:1159
#, c-format
msgid "cannot write to %%%s %s\n"
msgstr "kan ikke skrive til %%%s %s\n"
#: lib/psm.c:1198
#: lib/psm.c:1200
msgid "source package expected, binary found\n"
msgstr "kildepakke forventet, binær funnet\n"
#: lib/psm.c:1322
#: lib/psm.c:1324
msgid "source package contains no .spec file\n"
msgstr "kildepakke inneholder ikke en .spec-fil\n"
#: lib/psm.c:1432
#: lib/psm.c:1434
#, fuzzy, c-format
msgid "%s: running %s scriptlet\n"
msgstr "%s: kjører %s-skript (hvis noen)\n"
#: lib/psm.c:1600
#: lib/psm.c:1602
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr ""
#: lib/psm.c:1607
#: lib/psm.c:1609
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1949
#: lib/psm.c:1951
#, c-format
msgid "%s: %s-%s-%s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:2066
#: lib/psm.c:2068
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
msgstr ""
#: lib/psm.c:2180
#: lib/psm.c:2182
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:2189
#: lib/psm.c:2191
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:2230
#: lib/psm.c:2232
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:2231
#: lib/psm.c:2233
msgid " on file "
msgstr ""
#: lib/psm.c:2417
#: lib/psm.c:2419
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "klarte ikke å åpne %s: %s\n"
#: lib/psm.c:2420
#: lib/psm.c:2422
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s feilet\n"
@ -2358,7 +2363,7 @@ msgid "can't query %s: %s\n"
msgstr "kan ikke spørre på %s: %s\n"
#: lib/query.c:600 lib/query.c:638 lib/rpminstall.c:328 lib/rpminstall.c:470
#: lib/rpminstall.c:841
#: lib/rpminstall.c:840
#, c-format
msgid "open of %s failed: %s\n"
msgstr "feil under åpning av %s: %s\n"
@ -2431,7 +2436,7 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:854 lib/rpminstall.c:629
#: lib/query.c:854 lib/rpminstall.c:628
#, c-format
msgid "package %s is not installed\n"
msgstr "pakke %s er ikke installert\n"
@ -2521,7 +2526,7 @@ msgid " %s A %s\tB %s\n"
msgstr ""
#. @=branchstate@
#: lib/rpmds.c:552
#: lib/rpmds.c:554
#, fuzzy, c-format
msgid "package %s has unsatisfied %s: %s\n"
msgstr "pakke %s er i konflikt: %s\n"
@ -2566,7 +2571,7 @@ msgstr "feil under lesing fra fil %s\n"
msgid "file %s requires a newer version of RPM\n"
msgstr "fil %s trenger en nyere versjon av RPM\n"
#: lib/rpminstall.c:462 lib/rpminstall.c:697
#: lib/rpminstall.c:462 lib/rpminstall.c:696
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
@ -2584,26 +2589,26 @@ msgstr "feilede avhengigheter:\n"
msgid "installing binary packages\n"
msgstr "installerer binærpakker\n"
#: lib/rpminstall.c:562
#: lib/rpminstall.c:561
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
#: lib/rpminstall.c:632
#: lib/rpminstall.c:631
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" spesifiserer flere pakker\n"
#: lib/rpminstall.c:656
#: lib/rpminstall.c:655
msgid "removing these packages would break dependencies:\n"
msgstr "fjerning av disse pakkene vil ødelegge avhengigheter:\n"
#: lib/rpminstall.c:683
#: lib/rpminstall.c:682
#, c-format
msgid "cannot open %s: %s\n"
msgstr "kan ikke åpne %s: %s\n"
#: lib/rpminstall.c:689
#: lib/rpminstall.c:688
#, c-format
msgid "Installing %s\n"
msgstr "Installerer %s\n"
@ -2852,13 +2857,13 @@ msgstr ""
msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#: lib/transaction.c:244
#: lib/transaction.c:249
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:883
#: lib/transaction.c:902
#, c-format
msgid "excluding directory %s\n"
msgstr "ekskluderer katalog %s\n"

127
po/pl.po
View File

@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-08 16:51-0500\n"
"POT-Creation-Date: 2001-11-09 12:21-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:2144
#: build/pack.c:603 lib/psm.c:2146
#, 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:2409
#: build/pack.c:683 lib/psm.c:2411
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapisano: %s\n"
@ -1662,7 +1662,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr "grabData() RPM_STRING_TYPE licznik musi byæ 1.\n"
#. @-modfilesys@
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:954
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:956
#, c-format
msgid "Data type %d not supported\n"
msgstr "Typ danych %d nie jest obs³ugiwany\n"
@ -2217,187 +2217,192 @@ msgstr "podpisz pakiet (porzu
msgid "generate signature"
msgstr "generuj sygnaturê PGP/GPG"
#: lib/problems.c:201
#, fuzzy
msgid "conflicts with"
msgstr " jest w konflikcie z %s-%s-%s\n"
#. @observer@
#: lib/problems.c:229
msgid "different"
msgstr ""
#: lib/problems.c:201
#, fuzzy
msgid "is needed by"
msgstr " jest wymagany przez %s-%s-%s\n"
#: lib/problems.c:244
#: lib/problems.c:237
#, fuzzy, c-format
msgid "package %s is for a different architecture"
msgid "package %s is intended for a %s architecture"
msgstr "pakiet %s-%s-%s zbudowano dla innej architektury"
#: lib/problems.c:249
#: lib/problems.c:242
#, fuzzy, c-format
msgid "package %s is for a different operating system"
msgid "package %s is intended for a %s operating system"
msgstr "pakiet %s-%s-%s zbudowano dla innego systemu operacyjnego"
#: lib/problems.c:254
#: lib/problems.c:247
#, fuzzy, c-format
msgid "package %s is already installed"
msgstr "pakiet %s-%s-%s jest ju¿ zainstalowany"
#: lib/problems.c:259
#: lib/problems.c:252
#, fuzzy, c-format
msgid "path %s in package %s is not relocateable"
msgstr "pakiet %s nie jest przesuwalny\n"
#: lib/problems.c:264
#: lib/problems.c:257
#, c-format
msgid "file %s conflicts between attempted installs of %s and %s"
msgstr ""
#: lib/problems.c:269
#: lib/problems.c:262
#, fuzzy, c-format
msgid "file %s from install of %s conflicts with file from package %s"
msgstr ""
"plik %s z pakietu %s-%s-%s jest w konflikcie z plikiem z pakietu %s-%s-%s"
#: lib/problems.c:274
#: lib/problems.c:267
#, fuzzy, c-format
msgid "package %s (which is newer than %s) is already installed"
msgstr ""
"pakiet %s-%s-%s (który jest nowszy ni¿ %s-%s-%s) jest ju¿ zainstalowany"
#: lib/problems.c:279
#: lib/problems.c:272
#, fuzzy, c-format
msgid "installing package %s needs %ld%cb on the %s filesystem"
msgstr "instalacja pakietu %s-%s-%s wymaga %ld%c w systemie plików %s"
#: lib/problems.c:289
#: lib/problems.c:282
#, fuzzy, c-format
msgid "installing package %s needs %ld inodes on the %s filesystem"
msgstr "instalacja pakietu %s-%s-%s wymaga %ld%c w systemie plików %s"
#: lib/problems.c:294
#: lib/problems.c:287
#, c-format
msgid "package %s pre-transaction syscall(s): %s failed: %s"
msgstr ""
#: lib/problems.c:298
#: lib/problems.c:291
#, fuzzy, c-format
msgid "package %s has unsatisfied Requires: %s\n"
msgstr "zale¿no¶ci pakietu %s nie zosta³y spe³nione: %s\n"
#: lib/problems.c:302
#: lib/problems.c:295
#, fuzzy, c-format
msgid "package %s has unsatisfied Conflicts: %s\n"
msgstr "zale¿no¶ci pakietu %s nie zosta³y spe³nione: %s\n"
#: lib/problems.c:307
#: lib/problems.c:300
#, fuzzy, c-format
msgid "unknown error %d encountered while manipulating package %s"
msgstr "wyst±pi³ nieznany b³±d %d w trakcie manipulowania pakietem %s-%s-%s"
#: lib/psm.c:270
#: lib/problems.c:380
#, fuzzy
msgid "conflicts with"
msgstr " jest w konflikcie z %s-%s-%s\n"
#: lib/problems.c:380
#, fuzzy
msgid "is needed by"
msgstr " jest wymagany przez %s-%s-%s\n"
#: lib/psm.c:272
msgid "========== relocations\n"
msgstr ""
#: lib/psm.c:274
#: lib/psm.c:276
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "Ten OS nie jest wspierany: %s"
#: lib/psm.c:277
#: lib/psm.c:279
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "przesuwanie %s do %s\n"
#: lib/psm.c:347
#: lib/psm.c:349
#, fuzzy, c-format
msgid "excluding multilib path %s%s\n"
msgstr "wy³±czanie %s\n"
#: lib/psm.c:413
#: lib/psm.c:415
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "wy³±czanie %s\n"
#: lib/psm.c:423
#: lib/psm.c:425
#, c-format
msgid "relocating %s to %s\n"
msgstr "przesuwanie %s do %s\n"
#: lib/psm.c:502
#: lib/psm.c:504
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "przesuwanie %s do %s\n"
#: lib/psm.c:1151
#: lib/psm.c:1153
#, fuzzy, c-format
msgid "cannot create %%%s %s\n"
msgstr "nie mo¿na utworzyæ %s"
#: lib/psm.c:1157
#: lib/psm.c:1159
#, fuzzy, c-format
msgid "cannot write to %%%s %s\n"
msgstr "nie mo¿na zapisaæ do %s"
#: lib/psm.c:1198
#: lib/psm.c:1200
#, fuzzy
msgid "source package expected, binary found\n"
msgstr "spodziewany pakiet ¼ród³owy a nie binarny"
#: lib/psm.c:1322
#: lib/psm.c:1324
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "pakiet ¼ród³owy nie zawiera pliku .spec"
#: lib/psm.c:1432
#: lib/psm.c:1434
#, fuzzy, c-format
msgid "%s: running %s scriptlet\n"
msgstr "uruchamianie skryptu postinstall (je¶li istnieje)\n"
#: lib/psm.c:1600
#: lib/psm.c:1602
#, 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:1607
#: lib/psm.c:1609
#, 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:1949
#: lib/psm.c:1951
#, fuzzy, c-format
msgid "%s: %s-%s-%s has %d files, test = %d\n"
msgstr "pakiet: %s-%s-%s test plików = %d\n"
#: lib/psm.c:2066
#: lib/psm.c:2068
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
msgstr ""
#: lib/psm.c:2180
#: lib/psm.c:2182
#, 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:2189
#: lib/psm.c:2191
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "grupa %s nie istnieje - u¿yto grupy root"
#: lib/psm.c:2230
#: lib/psm.c:2232
#, 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:2231
#: lib/psm.c:2233
msgid " on file "
msgstr " na pliku "
#: lib/psm.c:2417
#: lib/psm.c:2419
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "nie mo¿na otworzyæ %s: %s"
#: lib/psm.c:2420
#: lib/psm.c:2422
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s nie powiod³o siê"
@ -2447,7 +2452,7 @@ msgid "can't query %s: %s\n"
msgstr "nie mo¿na odwi±zaæ %s: %s\n"
#: lib/query.c:600 lib/query.c:638 lib/rpminstall.c:328 lib/rpminstall.c:470
#: lib/rpminstall.c:841
#: lib/rpminstall.c:840
#, c-format
msgid "open of %s failed: %s\n"
msgstr "otwarcie %s nie powiod³o siê\n"
@ -2521,7 +2526,7 @@ msgstr "numer rekordu pakietu: %d\n"
msgid "record %u could not be read\n"
msgstr "nie mo¿na odczytaæ rekordu %d\n"
#: lib/query.c:854 lib/rpminstall.c:629
#: lib/query.c:854 lib/rpminstall.c:628
#, c-format
msgid "package %s is not installed\n"
msgstr "pakiet %s nie jest zainstalowany\n"
@ -2614,7 +2619,7 @@ msgid " %s A %s\tB %s\n"
msgstr " rpm {--version}"
#. @=branchstate@
#: lib/rpmds.c:552
#: lib/rpmds.c:554
#, fuzzy, c-format
msgid "package %s has unsatisfied %s: %s\n"
msgstr "zale¿no¶ci pakietu %s nie zosta³y spe³nione: %s\n"
@ -2660,7 +2665,7 @@ msgstr "b
msgid "file %s requires a newer version of RPM\n"
msgstr "plik %s wymaga nowszej wersji RPM\n"
#: lib/rpminstall.c:462 lib/rpminstall.c:697
#: lib/rpminstall.c:462 lib/rpminstall.c:696
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s nie mo¿e byæ zainstalowany\n"
@ -2678,26 +2683,26 @@ msgstr "niespe
msgid "installing binary packages\n"
msgstr "instalacja pakietów binarnych\n"
#: lib/rpminstall.c:562
#: lib/rpminstall.c:561
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "nie mo¿na otworzyæ pliku %s: %s"
#: lib/rpminstall.c:632
#: lib/rpminstall.c:631
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" okre¶la wiele pakietów\n"
#: lib/rpminstall.c:656
#: lib/rpminstall.c:655
msgid "removing these packages would break dependencies:\n"
msgstr "usuniêcie tych pakietów zerwie zale¿no¶ci:\n"
#: lib/rpminstall.c:683
#: lib/rpminstall.c:682
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "nie mo¿na otworzyæ %s\n"
#: lib/rpminstall.c:689
#: lib/rpminstall.c:688
#, c-format
msgid "Installing %s\n"
msgstr "Instalacja %s\n"
@ -2957,13 +2962,13 @@ msgstr ""
msgid "Signature: UNKNOWN (%d)\n"
msgstr "Blok sygnatury: %d\n"
#: lib/transaction.c:244
#: lib/transaction.c:249
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s pominiêty z powodu flagi missingok\n"
#. @innercontinue@
#: lib/transaction.c:883
#: lib/transaction.c:902
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "tworzenie katalogu: %s\n"

131
po/pt.po
View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-08 16:51-0500\n"
"POT-Creation-Date: 2001-11-09 12:21-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:2144
#: build/pack.c:603 lib/psm.c:2146
#, 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:2409
#: build/pack.c:683 lib/psm.c:2411
#, c-format
msgid "Wrote: %s\n"
msgstr "Gravei: %s\n"
@ -1616,7 +1616,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr "o valor RPM_STRING_TYPE do dataLength() tem de ser 1.\n"
#. @-modfilesys@
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:954
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:956
#, c-format
msgid "Data type %d not supported\n"
msgstr "O tipo de dados %d não é suportado\n"
@ -2147,183 +2147,188 @@ msgstr "assinar um pacote (retira a assinatura actual)"
msgid "generate signature"
msgstr "gerar a assinatura PGP/GPG"
#: lib/problems.c:201
#, fuzzy
msgid "conflicts with"
msgstr " está em conflito com o %s-%s-%s\n"
#. @observer@
#: lib/problems.c:229
msgid "different"
msgstr ""
#: lib/problems.c:201
#, fuzzy
msgid "is needed by"
msgstr " é necessário pelo %s-%s-%s\n"
#: lib/problems.c:244
#, c-format
msgid "package %s is for a different architecture"
#: lib/problems.c:237
#, fuzzy, c-format
msgid "package %s is intended for a %s architecture"
msgstr "o pacote %s é para uma arquitectura diferente"
#: lib/problems.c:249
#, c-format
msgid "package %s is for a different operating system"
#: lib/problems.c:242
#, fuzzy, c-format
msgid "package %s is intended for a %s operating system"
msgstr "o pacote %s é para um sistema operativo diferente"
#: lib/problems.c:254
#: lib/problems.c:247
#, c-format
msgid "package %s is already installed"
msgstr "o pacote %s já está instalado"
#: lib/problems.c:259
#: lib/problems.c:252
#, c-format
msgid "path %s in package %s is not relocateable"
msgstr "a directoria %s no pacote %s não pode ser mudada de sítio"
#: lib/problems.c:264
#: lib/problems.c:257
#, c-format
msgid "file %s conflicts between attempted installs of %s and %s"
msgstr "o ficheiro %s está em conflito com as tentativas de instalação do %s e %s"
#: lib/problems.c:269
#: lib/problems.c:262
#, c-format
msgid "file %s from install of %s conflicts with file from package %s"
msgstr "o ficheiro %s da instalação do %s está em conflito com o ficheiro do pacote %s"
#: lib/problems.c:274
#: lib/problems.c:267
#, c-format
msgid "package %s (which is newer than %s) is already installed"
msgstr "o pacote %s (que é mais recente que o %s) já está instalado"
#: lib/problems.c:279
#: lib/problems.c:272
#, c-format
msgid "installing package %s needs %ld%cb on the %s filesystem"
msgstr "a instalação do pacote %s precisa de %ld%cb no sistema de ficheiros %s"
#: lib/problems.c:289
#: lib/problems.c:282
#, c-format
msgid "installing package %s needs %ld inodes on the %s filesystem"
msgstr "a instalação do pacote %s precisa de %ld 'inodes' no sistema de ficheiros %s"
#: lib/problems.c:294
#: lib/problems.c:287
#, c-format
msgid "package %s pre-transaction syscall(s): %s failed: %s"
msgstr "a(s) chamada(s) de pré-transacção do pacote %s: %s falhou: %s"
#: lib/problems.c:298
#: lib/problems.c:291
#, fuzzy, c-format
msgid "package %s has unsatisfied Requires: %s\n"
msgstr "requisito %s-%s-%s do pacote não satisfeito: %s\n"
#: lib/problems.c:302
#: lib/problems.c:295
#, fuzzy, c-format
msgid "package %s has unsatisfied Conflicts: %s\n"
msgstr "requisito %s-%s-%s do pacote não satisfeito: %s\n"
#: lib/problems.c:307
#: lib/problems.c:300
#, c-format
msgid "unknown error %d encountered while manipulating package %s"
msgstr "encontrado o erro desconhecido %d ao manipular o pacote %s"
#: lib/psm.c:270
#: lib/problems.c:380
#, fuzzy
msgid "conflicts with"
msgstr " está em conflito com o %s-%s-%s\n"
#: lib/problems.c:380
#, fuzzy
msgid "is needed by"
msgstr " é necessário pelo %s-%s-%s\n"
#: lib/psm.c:272
msgid "========== relocations\n"
msgstr "========== mudanças de local\n"
#: lib/psm.c:274
#: lib/psm.c:276
#, c-format
msgid "%5d exclude %s\n"
msgstr "%5d excluir o %s\n"
#: lib/psm.c:277
#: lib/psm.c:279
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%5d mudar de local %s -> %s\n"
#: lib/psm.c:347
#: lib/psm.c:349
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr "a exclur a directoria 'multilib' %s%s\n"
#: lib/psm.c:413
#: lib/psm.c:415
#, c-format
msgid "excluding %s %s\n"
msgstr "a excluir o %s %s\n"
#: lib/psm.c:423
#: lib/psm.c:425
#, c-format
msgid "relocating %s to %s\n"
msgstr "a mudar o %s para %s\n"
#: lib/psm.c:502
#: lib/psm.c:504
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "a mudar a directoria %s para %s\n"
#: lib/psm.c:1151
#: lib/psm.c:1153
#, fuzzy, c-format
msgid "cannot create %%%s %s\n"
msgstr "não consigo criar o %s: %s\n"
#: lib/psm.c:1157
#: lib/psm.c:1159
#, fuzzy, c-format
msgid "cannot write to %%%s %s\n"
msgstr "não consigo escrever em %s\n"
#: lib/psm.c:1198
#: lib/psm.c:1200
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:1322
#: lib/psm.c:1324
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:1432
#: lib/psm.c:1434
#, 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:1600
#: lib/psm.c:1602
#, 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:1607
#: lib/psm.c:1609
#, 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:1949
#: lib/psm.c:1951
#, fuzzy, c-format
msgid "%s: %s-%s-%s has %d files, test = %d\n"
msgstr "pacote: teste dos ficheiros do %s-%s-%s = %d\n"
#: lib/psm.c:2066
#: lib/psm.c:2068
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
msgstr ""
#: lib/psm.c:2180
#: lib/psm.c:2182
#, 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:2189
#: lib/psm.c:2191
#, 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:2230
#: lib/psm.c:2232
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "a abertura do pacote falhou%s%s: %s\n"
#: lib/psm.c:2231
#: lib/psm.c:2233
msgid " on file "
msgstr " no ficheiro "
#: lib/psm.c:2417
#: lib/psm.c:2419
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "falhei ao aceder ao %s: %s\n"
#: lib/psm.c:2420
#: lib/psm.c:2422
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "O %s falhou\n"
@ -2372,7 +2377,7 @@ msgid "can't query %s: %s\n"
msgstr "não consigo pesquisar o %s: %s\n"
#: lib/query.c:600 lib/query.c:638 lib/rpminstall.c:328 lib/rpminstall.c:470
#: lib/rpminstall.c:841
#: lib/rpminstall.c:840
#, c-format
msgid "open of %s failed: %s\n"
msgstr "o acesso ao %s falhou: %s\n"
@ -2445,7 +2450,7 @@ msgstr "n
msgid "record %u could not be read\n"
msgstr "o registo %d não pôde ser lido\n"
#: lib/query.c:854 lib/rpminstall.c:629
#: lib/query.c:854 lib/rpminstall.c:628
#, c-format
msgid "package %s is not installed\n"
msgstr "o pacote %s não está instalado\n"
@ -2539,7 +2544,7 @@ msgid " %s A %s\tB %s\n"
msgstr " %s A %s\tB %s\n"
#. @=branchstate@
#: lib/rpmds.c:552
#: lib/rpmds.c:554
#, fuzzy, c-format
msgid "package %s has unsatisfied %s: %s\n"
msgstr "requisito %s-%s-%s do pacote não satisfeito: %s\n"
@ -2584,7 +2589,7 @@ msgstr "erro ao ler do ficheiros %s\n"
msgid "file %s requires a newer version of RPM\n"
msgstr "o %s precisa duma versão mais recente do RPM\n"
#: lib/rpminstall.c:462 lib/rpminstall.c:697
#: lib/rpminstall.c:462 lib/rpminstall.c:696
#, c-format
msgid "%s cannot be installed\n"
msgstr "o %s não pode ser instalado\n"
@ -2602,26 +2607,26 @@ msgstr "depend
msgid "installing binary packages\n"
msgstr "a instalar os pacotes binários\n"
#: lib/rpminstall.c:562
#: lib/rpminstall.c:561
#, c-format
msgid "cannot open file %s: %s\n"
msgstr "não consigo aceder ao ficheiro %s: %s\n"
#: lib/rpminstall.c:632
#: lib/rpminstall.c:631
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "o \"%s\" especifica vários pacotes\n"
#: lib/rpminstall.c:656
#: lib/rpminstall.c:655
msgid "removing these packages would break dependencies:\n"
msgstr "a remoção destes pacotes irá quebrar dependências:\n"
#: lib/rpminstall.c:683
#: lib/rpminstall.c:682
#, c-format
msgid "cannot open %s: %s\n"
msgstr "não consigo aceder ao %s: %s\n"
#: lib/rpminstall.c:689
#: lib/rpminstall.c:688
#, c-format
msgid "Installing %s\n"
msgstr "A instalar o %s\n"
@ -2871,13 +2876,13 @@ msgstr ""
msgid "Signature: UNKNOWN (%d)\n"
msgstr "'Pad' ou preenchimento da assinatura: %d\n"
#: lib/transaction.c:244
#: lib/transaction.c:249
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s ignorado devido à opção missingok\n"
#. @innercontinue@
#: lib/transaction.c:883
#: lib/transaction.c:902
#, c-format
msgid "excluding directory %s\n"
msgstr "a excluir a directoria %s\n"

View File

@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-08 16:51-0500\n"
"POT-Creation-Date: 2001-11-09 12:21-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:2144
#: build/pack.c:603 lib/psm.c:2146
#, 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:2409
#: build/pack.c:683 lib/psm.c:2411
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1777,7 +1777,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
#. @-modfilesys@
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:954
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:956
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
@ -2342,80 +2342,85 @@ msgstr "assine um pacote (descarte a assinatura corrente)"
msgid "generate signature"
msgstr "gere assinatura PGP"
#: lib/problems.c:201
msgid "conflicts with"
#. @observer@
#: lib/problems.c:229
msgid "different"
msgstr ""
#: lib/problems.c:201
msgid "is needed by"
msgstr ""
#: lib/problems.c:244
#: lib/problems.c:237
#, fuzzy, c-format
msgid "package %s is for a different architecture"
msgid "package %s is intended for a %s architecture"
msgstr "no foi passado pacote para instalao"
#: lib/problems.c:249
#: lib/problems.c:242
#, fuzzy, c-format
msgid "package %s is for a different operating system"
msgid "package %s is intended for a %s operating system"
msgstr "no foi passado pacote para instalao"
#: lib/problems.c:254
#: lib/problems.c:247
#, fuzzy, c-format
msgid "package %s is already installed"
msgstr "no foi passado pacote para instalao"
#: lib/problems.c:259
#: lib/problems.c:252
#, fuzzy, c-format
msgid "path %s in package %s is not relocateable"
msgstr "no foi passado pacote para instalao"
#: lib/problems.c:264
#: lib/problems.c:257
#, c-format
msgid "file %s conflicts between attempted installs of %s and %s"
msgstr ""
#: lib/problems.c:269
#: lib/problems.c:262
#, c-format
msgid "file %s from install of %s conflicts with file from package %s"
msgstr ""
#: lib/problems.c:274
#: lib/problems.c:267
#, fuzzy, c-format
msgid "package %s (which is newer than %s) is already installed"
msgstr "no foi passado pacote para instalao"
#: lib/problems.c:279
#: lib/problems.c:272
#, c-format
msgid "installing package %s needs %ld%cb on the %s filesystem"
msgstr ""
#: lib/problems.c:289
#: lib/problems.c:282
#, c-format
msgid "installing package %s needs %ld inodes on the %s filesystem"
msgstr ""
#: lib/problems.c:294
#: lib/problems.c:287
#, c-format
msgid "package %s pre-transaction syscall(s): %s failed: %s"
msgstr ""
#: lib/problems.c:298
#: lib/problems.c:291
#, fuzzy, c-format
msgid "package %s has unsatisfied Requires: %s\n"
msgstr "no foi passado pacote para instalao"
#: lib/problems.c:302
#: lib/problems.c:295
#, fuzzy, c-format
msgid "package %s has unsatisfied Conflicts: %s\n"
msgstr "no foi passado pacote para instalao"
#: lib/problems.c:307
#: lib/problems.c:300
#, c-format
msgid "unknown error %d encountered while manipulating package %s"
msgstr ""
#: lib/psm.c:270
#: lib/problems.c:380
msgid "conflicts with"
msgstr ""
#: lib/problems.c:380
msgid "is needed by"
msgstr ""
#: lib/psm.c:272
msgid "========== relocations\n"
msgstr ""
@ -2427,13 +2432,13 @@ msgstr ""
# "Content-Type: text/plain; charset=ISO-8859-1\n"
# "Content-Transfer-Encoding: 8-bit\n"
# , c-format
#: lib/psm.c:274
#: lib/psm.c:276
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "RPM verso %s\n"
# , c-format
#: lib/psm.c:277
#: lib/psm.c:279
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "No consegui abrir: %s\n"
@ -2446,7 +2451,7 @@ msgstr "No consegui abrir: %s\n"
# "Content-Type: text/plain; charset=ISO-8859-1\n"
# "Content-Transfer-Encoding: 8-bit\n"
# , c-format
#: lib/psm.c:347
#: lib/psm.c:349
#, fuzzy, c-format
msgid "excluding multilib path %s%s\n"
msgstr "RPM verso %s\n"
@ -2459,94 +2464,94 @@ msgstr "RPM verso %s\n"
# "Content-Type: text/plain; charset=ISO-8859-1\n"
# "Content-Transfer-Encoding: 8-bit\n"
# , c-format
#: lib/psm.c:413
#: lib/psm.c:415
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "RPM verso %s\n"
#: lib/psm.c:423
#: lib/psm.c:425
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
# , c-format
#: lib/psm.c:502
#: lib/psm.c:504
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
#: lib/psm.c:1151
#: lib/psm.c:1153
#, fuzzy, c-format
msgid "cannot create %%%s %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
#: lib/psm.c:1157
#: lib/psm.c:1159
#, fuzzy, c-format
msgid "cannot write to %%%s %s\n"
msgstr "No consegui abrir: %s\n"
#: lib/psm.c:1198
#: lib/psm.c:1200
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:1322
#: lib/psm.c:1324
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "pesquise o pacote ao qual <arquivo> pertence"
#: lib/psm.c:1432
#: lib/psm.c:1434
#, fuzzy, c-format
msgid "%s: running %s scriptlet\n"
msgstr "no execute nenhum estgio"
#: lib/psm.c:1600
#: lib/psm.c:1602
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr ""
#: lib/psm.c:1607
#: lib/psm.c:1609
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1949
#: lib/psm.c:1951
#, fuzzy, c-format
msgid "%s: %s-%s-%s has %d files, test = %d\n"
msgstr "no foi passado pacote para instalao"
#: lib/psm.c:2066
#: lib/psm.c:2068
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
msgstr ""
#: lib/psm.c:2180
#: lib/psm.c:2182
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:2189
#: lib/psm.c:2191
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:2230
#: lib/psm.c:2232
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "Construo falhou.\n"
#: lib/psm.c:2231
#: lib/psm.c:2233
msgid " on file "
msgstr ""
# , c-format
#: lib/psm.c:2417
#: lib/psm.c:2419
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "No consegui abrir: %s\n"
#: lib/psm.c:2420
#: lib/psm.c:2422
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "Construo falhou.\n"
@ -2598,7 +2603,7 @@ msgid "can't query %s: %s\n"
msgstr "No consegui abrir: %s\n"
#: lib/query.c:600 lib/query.c:638 lib/rpminstall.c:328 lib/rpminstall.c:470
#: lib/rpminstall.c:841
#: lib/rpminstall.c:840
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "Construo falhou.\n"
@ -2673,7 +2678,7 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:854 lib/rpminstall.c:629
#: lib/query.c:854 lib/rpminstall.c:628
#, fuzzy, c-format
msgid "package %s is not installed\n"
msgstr "no foi passado pacote para instalao"
@ -2769,7 +2774,7 @@ msgid " %s A %s\tB %s\n"
msgstr ""
#. @=branchstate@
#: lib/rpmds.c:552
#: lib/rpmds.c:554
#, fuzzy, c-format
msgid "package %s has unsatisfied %s: %s\n"
msgstr "no foi passado pacote para instalao"
@ -2823,7 +2828,7 @@ msgstr ""
msgid "file %s requires a newer version of RPM\n"
msgstr ""
#: lib/rpminstall.c:462 lib/rpminstall.c:697
#: lib/rpminstall.c:462 lib/rpminstall.c:696
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "no foi passado pacote para instalao"
@ -2844,28 +2849,28 @@ msgid "installing binary packages\n"
msgstr "instale pacote"
# , c-format
#: lib/rpminstall.c:562
#: lib/rpminstall.c:561
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "No consegui abrir: %s\n"
#: lib/rpminstall.c:632
#: lib/rpminstall.c:631
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
#: lib/rpminstall.c:656
#: lib/rpminstall.c:655
#, fuzzy
msgid "removing these packages would break dependencies:\n"
msgstr "lista dependncias do pacote"
# , c-format
#: lib/rpminstall.c:683
#: lib/rpminstall.c:682
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "No consegui abrir: %s\n"
#: lib/rpminstall.c:689
#: lib/rpminstall.c:688
#, c-format
msgid "Installing %s\n"
msgstr ""
@ -3134,7 +3139,7 @@ msgstr ""
msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#: lib/transaction.c:244
#: lib/transaction.c:249
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
@ -3148,7 +3153,7 @@ msgstr ""
# "Content-Transfer-Encoding: 8-bit\n"
# , c-format
#. @innercontinue@
#: lib/transaction.c:883
#: lib/transaction.c:902
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "RPM verso %s\n"

121
po/ro.po
View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-08 16:51-0500\n"
"POT-Creation-Date: 2001-11-09 12:21-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:2144
#: build/pack.c:603 lib/psm.c:2146
#, 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:2409
#: build/pack.c:683 lib/psm.c:2411
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1593,7 +1593,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
#. @-modfilesys@
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:954
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:956
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
@ -2100,181 +2100,186 @@ msgstr ""
msgid "generate signature"
msgstr ""
#: lib/problems.c:201
msgid "conflicts with"
#. @observer@
#: lib/problems.c:229
msgid "different"
msgstr ""
#: lib/problems.c:201
msgid "is needed by"
msgstr ""
#: lib/problems.c:244
#: lib/problems.c:237
#, c-format
msgid "package %s is for a different architecture"
msgid "package %s is intended for a %s architecture"
msgstr ""
#: lib/problems.c:249
#: lib/problems.c:242
#, c-format
msgid "package %s is for a different operating system"
msgid "package %s is intended for a %s operating system"
msgstr ""
#: lib/problems.c:254
#: lib/problems.c:247
#, c-format
msgid "package %s is already installed"
msgstr ""
#: lib/problems.c:259
#: lib/problems.c:252
#, c-format
msgid "path %s in package %s is not relocateable"
msgstr ""
#: lib/problems.c:264
#: lib/problems.c:257
#, c-format
msgid "file %s conflicts between attempted installs of %s and %s"
msgstr ""
#: lib/problems.c:269
#: lib/problems.c:262
#, c-format
msgid "file %s from install of %s conflicts with file from package %s"
msgstr ""
#: lib/problems.c:274
#: lib/problems.c:267
#, c-format
msgid "package %s (which is newer than %s) is already installed"
msgstr ""
#: lib/problems.c:279
#: lib/problems.c:272
#, c-format
msgid "installing package %s needs %ld%cb on the %s filesystem"
msgstr ""
#: lib/problems.c:289
#: lib/problems.c:282
#, c-format
msgid "installing package %s needs %ld inodes on the %s filesystem"
msgstr ""
#: lib/problems.c:294
#: lib/problems.c:287
#, c-format
msgid "package %s pre-transaction syscall(s): %s failed: %s"
msgstr ""
#: lib/problems.c:298
#: lib/problems.c:291
#, c-format
msgid "package %s has unsatisfied Requires: %s\n"
msgstr ""
#: lib/problems.c:302
#: lib/problems.c:295
#, c-format
msgid "package %s has unsatisfied Conflicts: %s\n"
msgstr ""
#: lib/problems.c:307
#: lib/problems.c:300
#, c-format
msgid "unknown error %d encountered while manipulating package %s"
msgstr ""
#: lib/psm.c:270
#: lib/problems.c:380
msgid "conflicts with"
msgstr ""
#: lib/problems.c:380
msgid "is needed by"
msgstr ""
#: lib/psm.c:272
msgid "========== relocations\n"
msgstr ""
#: lib/psm.c:274
#: lib/psm.c:276
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
#: lib/psm.c:277
#: lib/psm.c:279
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/psm.c:347
#: lib/psm.c:349
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/psm.c:413
#: lib/psm.c:415
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/psm.c:423
#: lib/psm.c:425
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/psm.c:502
#: lib/psm.c:504
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/psm.c:1151
#: lib/psm.c:1153
#, c-format
msgid "cannot create %%%s %s\n"
msgstr ""
#: lib/psm.c:1157
#: lib/psm.c:1159
#, c-format
msgid "cannot write to %%%s %s\n"
msgstr ""
#: lib/psm.c:1198
#: lib/psm.c:1200
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:1322
#: lib/psm.c:1324
msgid "source package contains no .spec file\n"
msgstr ""
#: lib/psm.c:1432
#: lib/psm.c:1434
#, c-format
msgid "%s: running %s scriptlet\n"
msgstr ""
#: lib/psm.c:1600
#: lib/psm.c:1602
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr ""
#: lib/psm.c:1607
#: lib/psm.c:1609
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1949
#: lib/psm.c:1951
#, c-format
msgid "%s: %s-%s-%s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:2066
#: lib/psm.c:2068
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
msgstr ""
#: lib/psm.c:2180
#: lib/psm.c:2182
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:2189
#: lib/psm.c:2191
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:2230
#: lib/psm.c:2232
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:2231
#: lib/psm.c:2233
msgid " on file "
msgstr ""
#: lib/psm.c:2417
#: lib/psm.c:2419
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
#: lib/psm.c:2420
#: lib/psm.c:2422
#, c-format
msgid "%s failed: %s\n"
msgstr ""
@ -2323,7 +2328,7 @@ msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:600 lib/query.c:638 lib/rpminstall.c:328 lib/rpminstall.c:470
#: lib/rpminstall.c:841
#: lib/rpminstall.c:840
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@ -2396,7 +2401,7 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:854 lib/rpminstall.c:629
#: lib/query.c:854 lib/rpminstall.c:628
#, c-format
msgid "package %s is not installed\n"
msgstr ""
@ -2486,7 +2491,7 @@ msgid " %s A %s\tB %s\n"
msgstr ""
#. @=branchstate@
#: lib/rpmds.c:552
#: lib/rpmds.c:554
#, c-format
msgid "package %s has unsatisfied %s: %s\n"
msgstr ""
@ -2531,7 +2536,7 @@ msgstr ""
msgid "file %s requires a newer version of RPM\n"
msgstr ""
#: lib/rpminstall.c:462 lib/rpminstall.c:697
#: lib/rpminstall.c:462 lib/rpminstall.c:696
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
@ -2549,26 +2554,26 @@ msgstr ""
msgid "installing binary packages\n"
msgstr ""
#: lib/rpminstall.c:562
#: lib/rpminstall.c:561
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
#: lib/rpminstall.c:632
#: lib/rpminstall.c:631
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
#: lib/rpminstall.c:656
#: lib/rpminstall.c:655
msgid "removing these packages would break dependencies:\n"
msgstr ""
#: lib/rpminstall.c:683
#: lib/rpminstall.c:682
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
#: lib/rpminstall.c:689
#: lib/rpminstall.c:688
#, c-format
msgid "Installing %s\n"
msgstr ""
@ -2815,13 +2820,13 @@ msgstr ""
msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#: lib/transaction.c:244
#: lib/transaction.c:249
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:883
#: lib/transaction.c:902
#, c-format
msgid "excluding directory %s\n"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2001-11-08 16:51-0500\n"
"POT-Creation-Date: 2001-11-09 12:21-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:2144
#: build/pack.c:603 lib/psm.c:2146
#, 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:2409
#: build/pack.c:683 lib/psm.c:2411
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1598,7 +1598,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
#. @-modfilesys@
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:954
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:956
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
@ -2105,181 +2105,186 @@ msgstr ""
msgid "generate signature"
msgstr ""
#: lib/problems.c:201
msgid "conflicts with"
#. @observer@
#: lib/problems.c:229
msgid "different"
msgstr ""
#: lib/problems.c:201
msgid "is needed by"
msgstr ""
#: lib/problems.c:244
#: lib/problems.c:237
#, c-format
msgid "package %s is for a different architecture"
msgid "package %s is intended for a %s architecture"
msgstr ""
#: lib/problems.c:249
#: lib/problems.c:242
#, c-format
msgid "package %s is for a different operating system"
msgid "package %s is intended for a %s operating system"
msgstr ""
#: lib/problems.c:254
#: lib/problems.c:247
#, c-format
msgid "package %s is already installed"
msgstr ""
#: lib/problems.c:259
#: lib/problems.c:252
#, c-format
msgid "path %s in package %s is not relocateable"
msgstr ""
#: lib/problems.c:264
#: lib/problems.c:257
#, c-format
msgid "file %s conflicts between attempted installs of %s and %s"
msgstr ""
#: lib/problems.c:269
#: lib/problems.c:262
#, c-format
msgid "file %s from install of %s conflicts with file from package %s"
msgstr ""
#: lib/problems.c:274
#: lib/problems.c:267
#, c-format
msgid "package %s (which is newer than %s) is already installed"
msgstr ""
#: lib/problems.c:279
#: lib/problems.c:272
#, c-format
msgid "installing package %s needs %ld%cb on the %s filesystem"
msgstr ""
#: lib/problems.c:289
#: lib/problems.c:282
#, c-format
msgid "installing package %s needs %ld inodes on the %s filesystem"
msgstr ""
#: lib/problems.c:294
#: lib/problems.c:287
#, c-format
msgid "package %s pre-transaction syscall(s): %s failed: %s"
msgstr ""
#: lib/problems.c:298
#: lib/problems.c:291
#, c-format
msgid "package %s has unsatisfied Requires: %s\n"
msgstr ""
#: lib/problems.c:302
#: lib/problems.c:295
#, c-format
msgid "package %s has unsatisfied Conflicts: %s\n"
msgstr ""
#: lib/problems.c:307
#: lib/problems.c:300
#, c-format
msgid "unknown error %d encountered while manipulating package %s"
msgstr ""
#: lib/psm.c:270
#: lib/problems.c:380
msgid "conflicts with"
msgstr ""
#: lib/problems.c:380
msgid "is needed by"
msgstr ""
#: lib/psm.c:272
msgid "========== relocations\n"
msgstr ""
#: lib/psm.c:274
#: lib/psm.c:276
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
#: lib/psm.c:277
#: lib/psm.c:279
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/psm.c:347
#: lib/psm.c:349
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/psm.c:413
#: lib/psm.c:415
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/psm.c:423
#: lib/psm.c:425
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/psm.c:502
#: lib/psm.c:504
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/psm.c:1151
#: lib/psm.c:1153
#, c-format
msgid "cannot create %%%s %s\n"
msgstr ""
#: lib/psm.c:1157
#: lib/psm.c:1159
#, c-format
msgid "cannot write to %%%s %s\n"
msgstr ""
#: lib/psm.c:1198
#: lib/psm.c:1200
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:1322
#: lib/psm.c:1324
msgid "source package contains no .spec file\n"
msgstr ""
#: lib/psm.c:1432
#: lib/psm.c:1434
#, c-format
msgid "%s: running %s scriptlet\n"
msgstr ""
#: lib/psm.c:1600
#: lib/psm.c:1602
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr ""
#: lib/psm.c:1607
#: lib/psm.c:1609
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1949
#: lib/psm.c:1951
#, c-format
msgid "%s: %s-%s-%s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:2066
#: lib/psm.c:2068
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
msgstr ""
#: lib/psm.c:2180
#: lib/psm.c:2182
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:2189
#: lib/psm.c:2191
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:2230
#: lib/psm.c:2232
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:2231
#: lib/psm.c:2233
msgid " on file "
msgstr ""
#: lib/psm.c:2417
#: lib/psm.c:2419
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
#: lib/psm.c:2420
#: lib/psm.c:2422
#, c-format
msgid "%s failed: %s\n"
msgstr ""
@ -2328,7 +2333,7 @@ msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:600 lib/query.c:638 lib/rpminstall.c:328 lib/rpminstall.c:470
#: lib/rpminstall.c:841
#: lib/rpminstall.c:840
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@ -2401,7 +2406,7 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:854 lib/rpminstall.c:629
#: lib/query.c:854 lib/rpminstall.c:628
#, c-format
msgid "package %s is not installed\n"
msgstr ""
@ -2491,7 +2496,7 @@ msgid " %s A %s\tB %s\n"
msgstr ""
#. @=branchstate@
#: lib/rpmds.c:552
#: lib/rpmds.c:554
#, c-format
msgid "package %s has unsatisfied %s: %s\n"
msgstr ""
@ -2536,7 +2541,7 @@ msgstr ""
msgid "file %s requires a newer version of RPM\n"
msgstr ""
#: lib/rpminstall.c:462 lib/rpminstall.c:697
#: lib/rpminstall.c:462 lib/rpminstall.c:696
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
@ -2554,26 +2559,26 @@ msgstr ""
msgid "installing binary packages\n"
msgstr ""
#: lib/rpminstall.c:562
#: lib/rpminstall.c:561
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
#: lib/rpminstall.c:632
#: lib/rpminstall.c:631
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
#: lib/rpminstall.c:656
#: lib/rpminstall.c:655
msgid "removing these packages would break dependencies:\n"
msgstr ""
#: lib/rpminstall.c:683
#: lib/rpminstall.c:682
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
#: lib/rpminstall.c:689
#: lib/rpminstall.c:688
#, c-format
msgid "Installing %s\n"
msgstr ""
@ -2820,13 +2825,13 @@ msgstr ""
msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#: lib/transaction.c:244
#: lib/transaction.c:249
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:883
#: lib/transaction.c:902
#, c-format
msgid "excluding directory %s\n"
msgstr ""

131
po/ru.po
View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-08 16:51-0500\n"
"POT-Creation-Date: 2001-11-09 12:21-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:2144
#: build/pack.c:603 lib/psm.c:2146
#, 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:2409
#: build/pack.c:683 lib/psm.c:2411
#, c-format
msgid "Wrote: %s\n"
msgstr "úÁÐÉÓÁÎ: %s\n"
@ -1639,7 +1639,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr "dataLength() ÄÏÐÕÓÔÉÍ ÔÏÌØËÏ ÏÄÉÎ ÜÌÅÍÅÎÔ ÔÉÐÁ RPM_STRING_TYPE\n"
#. @-modfilesys@
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:954
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:956
#, c-format
msgid "Data type %d not supported\n"
msgstr "ôÉÐ ÄÁÎÎÙÈ %d ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ\n"
@ -2163,183 +2163,188 @@ msgstr "
msgid "generate signature"
msgstr "ÇÅÎÅÒÉÒÏ×ÁÔØ ÐÏÄÐÉÓØ"
#: lib/problems.c:201
#, fuzzy
msgid "conflicts with"
msgstr " ËÏÎÆÌÉËÔÕÅÔ Ó %s-%s-%s\n"
#. @observer@
#: lib/problems.c:229
msgid "different"
msgstr ""
#: lib/problems.c:201
#, fuzzy
msgid "is needed by"
msgstr " ÎÕÖÅÎ ÄÌÑ %s-%s-%s\n"
#: lib/problems.c:244
#, c-format
msgid "package %s is for a different architecture"
#: lib/problems.c:237
#, fuzzy, c-format
msgid "package %s is intended for a %s architecture"
msgstr "ÐÁËÅÔ %s - ÄÌÑ ÄÒÕÇÏÊ ÁÒÈÉÔÅËÔÕÒÙ"
#: lib/problems.c:249
#, c-format
msgid "package %s is for a different operating system"
#: lib/problems.c:242
#, fuzzy, c-format
msgid "package %s is intended for a %s operating system"
msgstr "ÐÁËÅÔ %s - ÄÌÑ ÄÒÕÇÏÊ ÏÐÅÒÁÃÉÏÎÎÏÊ ÓÉÓÔÅÍÙ"
#: lib/problems.c:254
#: lib/problems.c:247
#, c-format
msgid "package %s is already installed"
msgstr "ÐÁËÅÔ %s ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ"
#: lib/problems.c:259
#: lib/problems.c:252
#, c-format
msgid "path %s in package %s is not relocateable"
msgstr "ÐÕÔØ %s × ÐÁËÅÔÅ %s - ÎÅ ÐÅÒÅÍÅÝÁÅÍÙÊ"
#: lib/problems.c:264
#: lib/problems.c:257
#, c-format
msgid "file %s conflicts between attempted installs of %s and %s"
msgstr "ËÏÎÆÌÉËÔ ÆÁÊÌÁ %s ÐÒÉ ÐÏÐÙÔËÁÈ ÕÓÔÁÎÏ×ËÉ %s É %s"
#: lib/problems.c:269
#: lib/problems.c:262
#, c-format
msgid "file %s from install of %s conflicts with file from package %s"
msgstr "ÆÁÊÌ %s ÉÚ ÕÓÔÁÎÏ×ÌÅÎÎÏÇÏ ÐÁËÅÔÁ %s ËÏÎÆÌÉËÔÕÅÔ Ó ÆÁÊÌÏÍ ÉÚ ÐÁËÅÔÁ %s"
#: lib/problems.c:274
#: lib/problems.c:267
#, c-format
msgid "package %s (which is newer than %s) is already installed"
msgstr "ÐÁËÅÔ %s (ËÏÔÏÒÙÊ ÎÏ×ÅÅ, ÞÅÍ %s) ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ"
#: lib/problems.c:279
#: lib/problems.c:272
#, c-format
msgid "installing package %s needs %ld%cb on the %s filesystem"
msgstr "ÄÌÑ ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÁ %s ÎÕÖÎÏ %ld%cb ÎÁ ÆÁÊÌÏ×ÏÊ ÓÉÓÔÅÍÅ %s"
#: lib/problems.c:289
#: lib/problems.c:282
#, c-format
msgid "installing package %s needs %ld inodes on the %s filesystem"
msgstr "ÄÌÑ ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÁ %s ÎÕÖÎÏ %ld inodes ÎÁ ÆÁÊÌÏ×ÏÊ ÓÉÓÔÅÍÅ %s"
#: lib/problems.c:294
#: lib/problems.c:287
#, c-format
msgid "package %s pre-transaction syscall(s): %s failed: %s"
msgstr "ÐÁËÅÔ %s pre-transaction syscall(s): %s: ÏÛÉÂËÁ: %s"
#: lib/problems.c:298
#: lib/problems.c:291
#, fuzzy, c-format
msgid "package %s has unsatisfied Requires: %s\n"
msgstr "ÔÒÅÂÏ×ÁÎÉÑ ÐÁËÅÔÁ %s-%s-%s ÎÅ ÕÄÏ×ÌÅÔ×ÏÒÅÎÙ: %s\n"
#: lib/problems.c:302
#: lib/problems.c:295
#, fuzzy, c-format
msgid "package %s has unsatisfied Conflicts: %s\n"
msgstr "ÔÒÅÂÏ×ÁÎÉÑ ÐÁËÅÔÁ %s-%s-%s ÎÅ ÕÄÏ×ÌÅÔ×ÏÒÅÎÙ: %s\n"
#: lib/problems.c:307
#: lib/problems.c:300
#, c-format
msgid "unknown error %d encountered while manipulating package %s"
msgstr "ÎÅÉÚ×ÅÓÔÎÁÑ ÏÛÉÂËÁ %d ÐÒÉ ÒÁÂÏÔÅ Ó ÐÁËÅÔÏÍ %s"
#: lib/psm.c:270
#: lib/problems.c:380
#, fuzzy
msgid "conflicts with"
msgstr " ËÏÎÆÌÉËÔÕÅÔ Ó %s-%s-%s\n"
#: lib/problems.c:380
#, fuzzy
msgid "is needed by"
msgstr " ÎÕÖÅÎ ÄÌÑ %s-%s-%s\n"
#: lib/psm.c:272
msgid "========== relocations\n"
msgstr "========== ÐÅÒÅÍÅÝÅÎÉÊ\n"
#: lib/psm.c:274
#: lib/psm.c:276
#, c-format
msgid "%5d exclude %s\n"
msgstr "%5d ÉÓËÌÀÞÅÎ %s\n"
#: lib/psm.c:277
#: lib/psm.c:279
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%5d ÐÅÒÅÍÅÝÅÎÉÅ %s -> %s\n"
#: lib/psm.c:347
#: lib/psm.c:349
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr "ÉÓËÌÀÞÁÅÔÓÑ ÍÎÏÇÏÂÉÂÌÉÏÔÅÞÎÙÊ ÐÕÔØ %s%s\n"
#: lib/psm.c:413
#: lib/psm.c:415
#, c-format
msgid "excluding %s %s\n"
msgstr "ÉÓËÌÀÞÁÅÔÓÑ %s %s\n"
#: lib/psm.c:423
#: lib/psm.c:425
#, c-format
msgid "relocating %s to %s\n"
msgstr "ÐÅÒÅÍÅÝÁÅÔÓÑ %s × %s\n"
#: lib/psm.c:502
#: lib/psm.c:504
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "ÐÅÒÅÍÅÝÁÅÔÓÑ ËÁÔÁÌÏÇ %s × %s\n"
#: lib/psm.c:1151
#: lib/psm.c:1153
#, c-format
msgid "cannot create %%%s %s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ %%%s %s\n"
#: lib/psm.c:1157
#: lib/psm.c:1159
#, c-format
msgid "cannot write to %%%s %s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÉÓÁÔØ × %%%s %s\n"
#: lib/psm.c:1198
#: lib/psm.c:1200
msgid "source package expected, binary found\n"
msgstr "ÏÂÎÁÒÕÖÅÎ Ä×ÏÉÞÎÙÊ ÐÁËÅÔ ×ÍÅÓÔÏ ÏÖÉÄÁÅÍÏÇÏ ÉÓÈÏÄÎÏÇÏ\n"
#: lib/psm.c:1322
#: lib/psm.c:1324
msgid "source package contains no .spec file\n"
msgstr "ÉÓÈÏÄÎÙÊ ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ\n"
#: lib/psm.c:1432
#: lib/psm.c:1434
#, fuzzy, c-format
msgid "%s: running %s scriptlet\n"
msgstr "%s: ×ÙÐÏÌÎÑÅÔÓÑ ÓÃÅÎÁÒÉÊ %s (ÅÓÌÉ ÅÓÔØ)\n"
#: lib/psm.c:1600
#: lib/psm.c:1602
#, 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:1607
#: lib/psm.c:1609
#, 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:1949
#: lib/psm.c:1951
#, c-format
msgid "%s: %s-%s-%s has %d files, test = %d\n"
msgstr "%s: %s-%s-%s ÓÏÄÅÒÖÉÔ %d ÆÁÊÌÏ×, test = %d\n"
#: lib/psm.c:2066
#: lib/psm.c:2068
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
msgstr "%s: ÏÛÉÂËÁ ÓÃÅÎÁÒÉÑ %s (%d), %s-%s-%s ÐÒÏÐÕÓËÁÅÔÓÑ\n"
#: lib/psm.c:2180
#: lib/psm.c:2182
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "ÐÏÌØÚÏ×ÁÔÅÌØ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ - ÉÓÐÏÌØÚÕÅÔÓÑ root\n"
#: lib/psm.c:2189
#: lib/psm.c:2191
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "ÇÒÕÐÐÁ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ - ÉÓÐÏÌØÚÕÅÔÓÑ root\n"
#: lib/psm.c:2230
#: lib/psm.c:2232
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "ÒÁÓÐÁËÏ×ËÁ ÁÒÈÉ×Á ÎÅ ÕÄÁÌÁÓØ%s%s: %s\n"
#: lib/psm.c:2231
#: lib/psm.c:2233
msgid " on file "
msgstr " ÎÁ ÆÁÊÌÅ "
#: lib/psm.c:2417
#: lib/psm.c:2419
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s ÏÛÉÂËÁ ÎÁ ÆÁÊÌÅ %s: %s\n"
#: lib/psm.c:2420
#: lib/psm.c:2422
#, c-format
msgid "%s failed: %s\n"
msgstr "%s ÎÅ ÕÄÁÌÏÓØ: %s\n"
@ -2388,7 +2393,7 @@ msgid "can't query %s: %s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÚÁÐÒÏÓÉÔØ %s: %s\n"
#: lib/query.c:600 lib/query.c:638 lib/rpminstall.c:328 lib/rpminstall.c:470
#: lib/rpminstall.c:841
#: lib/rpminstall.c:840
#, c-format
msgid "open of %s failed: %s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
@ -2461,7 +2466,7 @@ msgstr "
msgid "record %u could not be read\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ ÚÁÐÉÓØ %u\n"
#: lib/query.c:854 lib/rpminstall.c:629
#: lib/query.c:854 lib/rpminstall.c:628
#, c-format
msgid "package %s is not installed\n"
msgstr "ÐÁËÅÔ %s ÎÅ ÕÓÔÁÎÏ×ÌÅÎ\n"
@ -2555,7 +2560,7 @@ msgid " %s A %s\tB %s\n"
msgstr " %s A %s\tB %s\n"
#. @=branchstate@
#: lib/rpmds.c:552
#: lib/rpmds.c:554
#, fuzzy, c-format
msgid "package %s has unsatisfied %s: %s\n"
msgstr "ÔÒÅÂÏ×ÁÎÉÑ ÐÁËÅÔÁ %s-%s-%s ÎÅ ÕÄÏ×ÌÅÔ×ÏÒÅÎÙ: %s\n"
@ -2600,7 +2605,7 @@ msgstr "
msgid "file %s requires a newer version of RPM\n"
msgstr "ÄÌÑ ÆÁÊÌÁ %s ÎÅÏÂÈÏÄÉÍÁ ÂÏÌÅÅ ÎÏ×ÁÑ ×ÅÒÓÉÑ RPM\n"
#: lib/rpminstall.c:462 lib/rpminstall.c:697
#: lib/rpminstall.c:462 lib/rpminstall.c:696
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s ÎÅ ÍÏÖÅÔ ÂÙÔØ ÕÓÔÁÎÏ×ÌÅÎ\n"
@ -2618,26 +2623,26 @@ msgstr "
msgid "installing binary packages\n"
msgstr "ÕÓÔÁÎÁ×ÌÉ×ÁÀ ÂÉÎÁÒÎÙÅ ÐÁËÅÔÙ\n"
#: lib/rpminstall.c:562
#: lib/rpminstall.c:561
#, c-format
msgid "cannot open file %s: %s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ %s: %s\n"
#: lib/rpminstall.c:632
#: lib/rpminstall.c:631
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" ÚÁÄÁÅÔ ÎÅÓËÏÌØËÏ ÐÁËÅÔÏ×\n"
#: lib/rpminstall.c:656
#: lib/rpminstall.c:655
msgid "removing these packages would break dependencies:\n"
msgstr "ÕÄÁÌÅÎÉÅ ÜÔÉÈ ÐÁËÅÔÏ× ÎÁÒÕÛÉÔ ÚÁ×ÉÓÉÍÏÓÔÉ:\n"
#: lib/rpminstall.c:683
#: lib/rpminstall.c:682
#, c-format
msgid "cannot open %s: %s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
#: lib/rpminstall.c:689
#: lib/rpminstall.c:688
#, c-format
msgid "Installing %s\n"
msgstr "õÓÔÁÎÁ×ÌÉ×ÁÅÔÓÑ %s\n"
@ -2888,13 +2893,13 @@ msgstr ""
msgid "Signature: UNKNOWN (%d)\n"
msgstr "ðÏÄÐÉÓØ: ÒÁÚÍÅÒ(%d)+ÚÁÐÏÌÎÅÎÉÅ(%d)\n"
#: lib/transaction.c:244
#: lib/transaction.c:249
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s ÐÒÏÐÕÝÅÎ ÉÚ-ÚÁ ÆÌÁÇÁ missingok\n"
#. @innercontinue@
#: lib/transaction.c:883
#: lib/transaction.c:902
#, c-format
msgid "excluding directory %s\n"
msgstr "ÉÓËÌÀÞÁÅÔÓÑ ËÁÔÁÌÏÇ %s\n"

137
po/sk.po
View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-08 16:51-0500\n"
"POT-Creation-Date: 2001-11-09 12:21-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:2144
#: build/pack.c:603 lib/psm.c:2146
#, 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:2409
#: build/pack.c:683 lib/psm.c:2411
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapísané: %s\n"
@ -1661,7 +1661,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr "grabData() RPM_STRING_TYPE poèet musí by» 1.\n"
#. @-modfilesys@
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:954
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:956
#, c-format
msgid "Data type %d not supported\n"
msgstr "Typ údajov %d nie je podorovaný\n"
@ -2216,185 +2216,190 @@ msgstr "podp
msgid "generate signature"
msgstr "vytvori» PGP/GPG podpis"
#: lib/problems.c:201
#, fuzzy
msgid "conflicts with"
msgstr " koliduje s %s-%s-%s\n"
#: lib/problems.c:201
#, fuzzy
msgid "is needed by"
msgstr " je vy¾adované %s-%s-%s\n"
#: lib/problems.c:244
#, fuzzy, c-format
msgid "package %s is for a different architecture"
msgstr "balík %s nie je nain¹talovaný\n"
#: lib/problems.c:249
#, c-format
msgid "package %s is for a different operating system"
#. @observer@
#: lib/problems.c:229
msgid "different"
msgstr ""
#: lib/problems.c:254
#: lib/problems.c:237
#, fuzzy, c-format
msgid "package %s is intended for a %s architecture"
msgstr "balík %s nie je nain¹talovaný\n"
#: lib/problems.c:242
#, c-format
msgid "package %s is intended for a %s operating system"
msgstr ""
#: lib/problems.c:247
#, fuzzy, c-format
msgid "package %s is already installed"
msgstr "balík %s nie je nain¹talovaný\n"
#: lib/problems.c:259
#: lib/problems.c:252
#, fuzzy, c-format
msgid "path %s in package %s is not relocateable"
msgstr "balík %s nie je nain¹talovaný\n"
#: lib/problems.c:264
#: lib/problems.c:257
#, c-format
msgid "file %s conflicts between attempted installs of %s and %s"
msgstr ""
#: lib/problems.c:269
#: lib/problems.c:262
#, c-format
msgid "file %s from install of %s conflicts with file from package %s"
msgstr ""
#: lib/problems.c:274
#: lib/problems.c:267
#, fuzzy, c-format
msgid "package %s (which is newer than %s) is already installed"
msgstr "balík %s nie je nain¹talovaný\n"
#: lib/problems.c:279
#: lib/problems.c:272
#, c-format
msgid "installing package %s needs %ld%cb on the %s filesystem"
msgstr ""
#: lib/problems.c:289
#: lib/problems.c:282
#, c-format
msgid "installing package %s needs %ld inodes on the %s filesystem"
msgstr ""
#: lib/problems.c:294
#: lib/problems.c:287
#, c-format
msgid "package %s pre-transaction syscall(s): %s failed: %s"
msgstr ""
#: lib/problems.c:298
#: lib/problems.c:291
#, fuzzy, c-format
msgid "package %s has unsatisfied Requires: %s\n"
msgstr "po¾iadavka balíka %s nie je uspokojená: %s\n"
#: lib/problems.c:302
#: lib/problems.c:295
#, fuzzy, c-format
msgid "package %s has unsatisfied Conflicts: %s\n"
msgstr "po¾iadavka balíka %s nie je uspokojená: %s\n"
#: lib/problems.c:307
#: lib/problems.c:300
#, c-format
msgid "unknown error %d encountered while manipulating package %s"
msgstr ""
#: lib/psm.c:270
#: lib/problems.c:380
#, fuzzy
msgid "conflicts with"
msgstr " koliduje s %s-%s-%s\n"
#: lib/problems.c:380
#, fuzzy
msgid "is needed by"
msgstr " je vy¾adované %s-%s-%s\n"
#: lib/psm.c:272
msgid "========== relocations\n"
msgstr ""
#: lib/psm.c:274
#: lib/psm.c:276
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "OS je vynechaný: %s"
#: lib/psm.c:277
#: lib/psm.c:279
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "presúva sa %s do %s\n"
#: lib/psm.c:347
#: lib/psm.c:349
#, fuzzy, c-format
msgid "excluding multilib path %s%s\n"
msgstr "vynecháva sa %s\n"
#: lib/psm.c:413
#: lib/psm.c:415
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "vynecháva sa %s\n"
#: lib/psm.c:423
#: lib/psm.c:425
#, c-format
msgid "relocating %s to %s\n"
msgstr "presúva sa %s do %s\n"
#: lib/psm.c:502
#: lib/psm.c:504
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "presúva sa %s do %s\n"
#: lib/psm.c:1151
#: lib/psm.c:1153
#, fuzzy, c-format
msgid "cannot create %%%s %s\n"
msgstr "nie je mo¾né zapísa» do %s: "
#: lib/psm.c:1157
#: lib/psm.c:1159
#, fuzzy, c-format
msgid "cannot write to %%%s %s\n"
msgstr "nie je mo¾né zapísa» do %s: "
#: lib/psm.c:1198
#: lib/psm.c:1200
#, fuzzy
msgid "source package expected, binary found\n"
msgstr "oèakávaný zdrojový balík, nájdený binárny"
#: lib/psm.c:1322
#: lib/psm.c:1324
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "zdrojový balík neobsahuje ¾iadny .spec súbor"
#: lib/psm.c:1432
#: lib/psm.c:1434
#, fuzzy, c-format
msgid "%s: running %s scriptlet\n"
msgstr "vykonávajú sa poin¹talaèné skripty (ak existujú)\n"
#: lib/psm.c:1600
#: lib/psm.c:1602
#, fuzzy, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr "vykonanie skriptu zlyhalo"
#: lib/psm.c:1607
#: lib/psm.c:1609
#, fuzzy, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr "vykonanie skriptu zlyhalo"
#: lib/psm.c:1949
#: lib/psm.c:1951
#, fuzzy, c-format
msgid "%s: %s-%s-%s has %d files, test = %d\n"
msgstr "balík: %s-%s-%s test súborov = %d\n"
#: lib/psm.c:2066
#: lib/psm.c:2068
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
msgstr ""
#: lib/psm.c:2180
#: lib/psm.c:2182
#, fuzzy, c-format
msgid "user %s does not exist - using root\n"
msgstr "pou¾ívateµ %s neexistuje - pou¾ije sa root"
#: lib/psm.c:2189
#: lib/psm.c:2191
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "skupina %s neexistuje - pou¾ije sa root"
#: lib/psm.c:2230
#: lib/psm.c:2232
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "rozbalenie archívu zlyhalo%s%s: %s"
#: lib/psm.c:2231
#: lib/psm.c:2233
msgid " on file "
msgstr " pre súbor "
#: lib/psm.c:2417
#: lib/psm.c:2419
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "nepodarilo sa otvori» %s: %s"
#: lib/psm.c:2420
#: lib/psm.c:2422
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s zlyhalo"
@ -2444,7 +2449,7 @@ msgid "can't query %s: %s\n"
msgstr "zmazanie %s zlyhalo: %s\n"
#: lib/query.c:600 lib/query.c:638 lib/rpminstall.c:328 lib/rpminstall.c:470
#: lib/rpminstall.c:841
#: lib/rpminstall.c:840
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "otvorenie %s zlyhalo\n"
@ -2518,7 +2523,7 @@ msgstr "po
msgid "record %u could not be read\n"
msgstr "záznam %d nie je mo¾né preèíta»\n"
#: lib/query.c:854 lib/rpminstall.c:629
#: lib/query.c:854 lib/rpminstall.c:628
#, c-format
msgid "package %s is not installed\n"
msgstr "balík %s nie je nain¹talovaný\n"
@ -2611,7 +2616,7 @@ msgid " %s A %s\tB %s\n"
msgstr " rpm {--version}"
#. @=branchstate@
#: lib/rpmds.c:552
#: lib/rpmds.c:554
#, fuzzy, c-format
msgid "package %s has unsatisfied %s: %s\n"
msgstr "po¾iadavka balíka %s nie je uspokojená: %s\n"
@ -2657,7 +2662,7 @@ msgstr "chyba pri vytv
msgid "file %s requires a newer version of RPM\n"
msgstr ""
#: lib/rpminstall.c:462 lib/rpminstall.c:697
#: lib/rpminstall.c:462 lib/rpminstall.c:696
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s nie je mo¾né nain¹talova»\n"
@ -2675,26 +2680,26 @@ msgstr "nevyrie
msgid "installing binary packages\n"
msgstr "in¹talujú sa binárne balíky\n"
#: lib/rpminstall.c:562
#: lib/rpminstall.c:561
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "nie je mo¾né otvori» súbor %s: %s"
#: lib/rpminstall.c:632
#: lib/rpminstall.c:631
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" ¹pecifikuje viac balíkov\n"
#: lib/rpminstall.c:656
#: lib/rpminstall.c:655
msgid "removing these packages would break dependencies:\n"
msgstr "odstránenie týchto balíkov by poru¹ilo závislosti:\n"
#: lib/rpminstall.c:683
#: lib/rpminstall.c:682
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "nie je mo¾né otvori» %s\n"
#: lib/rpminstall.c:689
#: lib/rpminstall.c:688
#, c-format
msgid "Installing %s\n"
msgstr "In¹taluje sa %s\n"
@ -2954,13 +2959,13 @@ msgstr ""
msgid "Signature: UNKNOWN (%d)\n"
msgstr "Doplnenie podpisu: %d\n"
#: lib/transaction.c:244
#: lib/transaction.c:249
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s vynechané kvôli príznaku missingok\n"
#. @innercontinue@
#: lib/transaction.c:883
#: lib/transaction.c:902
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "vytvára sa adresár %s\n"

129
po/sl.po
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.194 2001/11/08 22:05:18 jbj Exp $
# $Id: sl.po,v 1.195 2001/11/09 17:22:36 jbj Exp $
#
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-08 16:51-0500\n"
"POT-Creation-Date: 2001-11-09 12:21-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:2144
#: build/pack.c:603 lib/psm.c:2146
#, 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:2409
#: build/pack.c:683 lib/psm.c:2411
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapisano: %s\n"
@ -1662,7 +1662,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr "¹tevec grabData() RPM_STRING_TYPE mora biti 1.\n"
#. @-modfilesys@
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:954
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:956
#, c-format
msgid "Data type %d not supported\n"
msgstr "Tip podatkov %d ni podprt\n"
@ -2214,186 +2214,191 @@ msgstr "podpi
msgid "generate signature"
msgstr "izdelava podpisa PGP/GPG"
#: lib/problems.c:201
#, fuzzy
msgid "conflicts with"
msgstr " je v sporu z %s-%s-%s\n"
#. @observer@
#: lib/problems.c:229
msgid "different"
msgstr ""
#: lib/problems.c:201
#, fuzzy
msgid "is needed by"
msgstr " potrebuje %s-%s-%s\n"
#: lib/problems.c:244
#: lib/problems.c:237
#, fuzzy, c-format
msgid "package %s is for a different architecture"
msgid "package %s is intended for a %s architecture"
msgstr "paket %s-%s-%s je za drug tip arhitekture"
#: lib/problems.c:249
#: lib/problems.c:242
#, fuzzy, c-format
msgid "package %s is for a different operating system"
msgid "package %s is intended for a %s operating system"
msgstr "paket %s-%s-%s je za drug operacijski sistem"
#: lib/problems.c:254
#: lib/problems.c:247
#, fuzzy, c-format
msgid "package %s is already installed"
msgstr "paket %s-%s-%s je ¾e name¹èen"
#: lib/problems.c:259
#: lib/problems.c:252
#, fuzzy, c-format
msgid "path %s in package %s is not relocateable"
msgstr "paketa %s ni mo¾no prestaviti\n"
#: lib/problems.c:264
#: lib/problems.c:257
#, fuzzy, c-format
msgid "file %s conflicts between attempted installs of %s and %s"
msgstr "datoteka %s je v sporu med poskusom namestitve %s in %s"
#: lib/problems.c:269
#: lib/problems.c:262
#, fuzzy, c-format
msgid "file %s from install of %s conflicts with file from package %s"
msgstr ""
"datoteka %s name¹èena z %s-%s-%s je v sporu z datoteko iz paketa %s-%s-%s"
#: lib/problems.c:274
#: lib/problems.c:267
#, fuzzy, c-format
msgid "package %s (which is newer than %s) is already installed"
msgstr "paket %s-%s-%s (ki je novej¹i kot %s-%s-%s) je ¾e name¹èen"
#: lib/problems.c:279
#: lib/problems.c:272
#, fuzzy, c-format
msgid "installing package %s needs %ld%cb on the %s filesystem"
msgstr "namestitev paketa %s-%s-%s zahteva %ld%cb na datoteènem sistemu %s"
#: lib/problems.c:289
#: lib/problems.c:282
#, fuzzy, c-format
msgid "installing package %s needs %ld inodes on the %s filesystem"
msgstr "paket %s pred-prenosljivih sistemskih klicov: %s ni uspelo: %s"
#: lib/problems.c:294
#: lib/problems.c:287
#, c-format
msgid "package %s pre-transaction syscall(s): %s failed: %s"
msgstr ""
#: lib/problems.c:298
#: lib/problems.c:291
#, fuzzy, c-format
msgid "package %s has unsatisfied Requires: %s\n"
msgstr "Za paket %s-%s-%s: zahteva %s ni zadovoljena\n"
#: lib/problems.c:302
#: lib/problems.c:295
#, fuzzy, c-format
msgid "package %s has unsatisfied Conflicts: %s\n"
msgstr "Za paket %s-%s-%s: zahteva %s ni zadovoljena\n"
#: lib/problems.c:307
#: lib/problems.c:300
#, fuzzy, c-format
msgid "unknown error %d encountered while manipulating package %s"
msgstr "neznana napaka %d ob rokovanju s paketom %s-%s-%s"
#: lib/psm.c:270
#: lib/problems.c:380
#, fuzzy
msgid "conflicts with"
msgstr " je v sporu z %s-%s-%s\n"
#: lib/problems.c:380
#, fuzzy
msgid "is needed by"
msgstr " potrebuje %s-%s-%s\n"
#: lib/psm.c:272
msgid "========== relocations\n"
msgstr ""
#: lib/psm.c:274
#: lib/psm.c:276
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "OS je izkljuèen: %s"
#: lib/psm.c:277
#: lib/psm.c:279
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "premikanje %s v %s\n"
#: lib/psm.c:347
#: lib/psm.c:349
#, fuzzy, c-format
msgid "excluding multilib path %s%s\n"
msgstr "izkljuèevanje datoteke %s%s\n"
#: lib/psm.c:413
#: lib/psm.c:415
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "izkljuèevanje datoteke %s%s\n"
#: lib/psm.c:423
#: lib/psm.c:425
#, c-format
msgid "relocating %s to %s\n"
msgstr "premikanje %s v %s\n"
#: lib/psm.c:502
#: lib/psm.c:504
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "premiokanje imenika %s v %s\n"
#: lib/psm.c:1151
#: lib/psm.c:1153
#, fuzzy, c-format
msgid "cannot create %%%s %s\n"
msgstr "ni mo¾no ustvariti %s: %s\n"
#: lib/psm.c:1157
#: lib/psm.c:1159
#, fuzzy, c-format
msgid "cannot write to %%%s %s\n"
msgstr "pisanje na %s ni mo¾no"
#: lib/psm.c:1198
#: lib/psm.c:1200
#, fuzzy
msgid "source package expected, binary found\n"
msgstr "prièakovan je bil izvorni paket, najden binarni"
#: lib/psm.c:1322
#: lib/psm.c:1324
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "izvorni paket ne vsebuje datoteke .spec"
#: lib/psm.c:1432
#: lib/psm.c:1434
#, fuzzy, c-format
msgid "%s: running %s scriptlet\n"
msgstr "poganjanje ponamestitvenih skript (èe obstajajo)\n"
#: lib/psm.c:1600
#: lib/psm.c:1602
#, 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:1607
#: lib/psm.c:1609
#, 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:1949
#: lib/psm.c:1951
#, fuzzy, c-format
msgid "%s: %s-%s-%s has %d files, test = %d\n"
msgstr "paket: %s-%s-%s datoteke test = %d\n"
#: lib/psm.c:2066
#: lib/psm.c:2068
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
msgstr ""
#: lib/psm.c:2180
#: lib/psm.c:2182
#, fuzzy, c-format
msgid "user %s does not exist - using root\n"
msgstr "uporabnik %s ne obstaja - uporabljam root"
#: lib/psm.c:2189
#: lib/psm.c:2191
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "skupina %s ne obstaja - uporabljam root"
#: lib/psm.c:2230
#: lib/psm.c:2232
#, 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:2231
#: lib/psm.c:2233
msgid " on file "
msgstr " za datoteko "
#: lib/psm.c:2417
#: lib/psm.c:2419
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "neuspe¹no odpiranje %s: %s\n"
#: lib/psm.c:2420
#: lib/psm.c:2422
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s neuspe¹en"
@ -2443,7 +2448,7 @@ msgid "can't query %s: %s\n"
msgstr "ni mo¾no poizvedeti o %s: %s\n"
#: lib/query.c:600 lib/query.c:638 lib/rpminstall.c:328 lib/rpminstall.c:470
#: lib/rpminstall.c:841
#: lib/rpminstall.c:840
#, c-format
msgid "open of %s failed: %s\n"
msgstr "odpiranje %s je bilo neuspe¹no: %s\n"
@ -2517,7 +2522,7 @@ msgstr "
msgid "record %u could not be read\n"
msgstr "zapisa %d ni mo¾no prebrati\n"
#: lib/query.c:854 lib/rpminstall.c:629
#: lib/query.c:854 lib/rpminstall.c:628
#, c-format
msgid "package %s is not installed\n"
msgstr "paket %s ni name¹èen\n"
@ -2611,7 +2616,7 @@ msgid " %s A %s\tB %s\n"
msgstr " %s A %s\tB %s\n"
#. @=branchstate@
#: lib/rpmds.c:552
#: lib/rpmds.c:554
#, fuzzy, c-format
msgid "package %s has unsatisfied %s: %s\n"
msgstr "Za paket %s-%s-%s: zahteva %s ni zadovoljena\n"
@ -2657,7 +2662,7 @@ msgstr "napaka pri branju iz datoteke %s\n"
msgid "file %s requires a newer version of RPM\n"
msgstr "datoteka %s zahteva novej¹o razlièico RPM\n"
#: lib/rpminstall.c:462 lib/rpminstall.c:697
#: lib/rpminstall.c:462 lib/rpminstall.c:696
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s ni mo¾no namestiti\n"
@ -2675,26 +2680,26 @@ msgstr "neuspe
msgid "installing binary packages\n"
msgstr "name¹èanje binarnih paketov\n"
#: lib/rpminstall.c:562
#: lib/rpminstall.c:561
#, c-format
msgid "cannot open file %s: %s\n"
msgstr "ni mo¾no odpreti datoteke %s: %s\n"
#: lib/rpminstall.c:632
#: lib/rpminstall.c:631
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" doloèa veè paketov\n"
#: lib/rpminstall.c:656
#: lib/rpminstall.c:655
msgid "removing these packages would break dependencies:\n"
msgstr "odstranitev teh paketov bi podrla soodvisnosti:\n"
#: lib/rpminstall.c:683
#: lib/rpminstall.c:682
#, c-format
msgid "cannot open %s: %s\n"
msgstr "ni mo¾no odpreti %s: %s\n"
#: lib/rpminstall.c:689
#: lib/rpminstall.c:688
#, c-format
msgid "Installing %s\n"
msgstr "Name¹èanje %s\n"
@ -2952,13 +2957,13 @@ msgstr ""
msgid "Signature: UNKNOWN (%d)\n"
msgstr "Dol¾. polnila : %d\n"
#: lib/transaction.c:244
#: lib/transaction.c:249
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s preskoèen zaradi manjkajoèe zastavice OK\n"
#. @innercontinue@
#: lib/transaction.c:883
#: lib/transaction.c:902
#, c-format
msgid "excluding directory %s\n"
msgstr "izkljuèevanje imenika %s\n"

127
po/sr.po
View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-08 16:51-0500\n"
"POT-Creation-Date: 2001-11-09 12:21-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:2144
#: build/pack.c:603 lib/psm.c:2146
#, 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:2409
#: build/pack.c:683 lib/psm.c:2411
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1644,7 +1644,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
#. @-modfilesys@
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:954
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:956
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
@ -2202,184 +2202,189 @@ msgstr "potpi
msgid "generate signature"
msgstr "napravi PGP potpis"
#: lib/problems.c:201
#, fuzzy
msgid "conflicts with"
msgstr " se sudara sa %s-%s-%s\n"
#. @observer@
#: lib/problems.c:229
msgid "different"
msgstr ""
#: lib/problems.c:201
#, fuzzy
msgid "is needed by"
msgstr " je potreban paketu %s-%s-%s\n"
#: lib/problems.c:244
#: lib/problems.c:237
#, fuzzy, c-format
msgid "package %s is for a different architecture"
msgid "package %s is intended for a %s architecture"
msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
#: lib/problems.c:249
#: lib/problems.c:242
#, fuzzy, c-format
msgid "package %s is for a different operating system"
msgid "package %s is intended for a %s operating system"
msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
#: lib/problems.c:254
#: lib/problems.c:247
#, fuzzy, c-format
msgid "package %s is already installed"
msgstr "paket %s nije instaliran\n"
#: lib/problems.c:259
#: lib/problems.c:252
#, fuzzy, c-format
msgid "path %s in package %s is not relocateable"
msgstr "paket %s nije instaliran\n"
#: lib/problems.c:264
#: lib/problems.c:257
#, c-format
msgid "file %s conflicts between attempted installs of %s and %s"
msgstr ""
#: lib/problems.c:269
#: lib/problems.c:262
#, fuzzy, c-format
msgid "file %s from install of %s conflicts with file from package %s"
msgstr " se sudara sa %s-%s-%s\n"
#: lib/problems.c:274
#: lib/problems.c:267
#, fuzzy, c-format
msgid "package %s (which is newer than %s) is already installed"
msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
#: lib/problems.c:279
#: lib/problems.c:272
#, c-format
msgid "installing package %s needs %ld%cb on the %s filesystem"
msgstr ""
#: lib/problems.c:289
#: lib/problems.c:282
#, c-format
msgid "installing package %s needs %ld inodes on the %s filesystem"
msgstr ""
#: lib/problems.c:294
#: lib/problems.c:287
#, fuzzy, c-format
msgid "package %s pre-transaction syscall(s): %s failed: %s"
msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
#: lib/problems.c:298
#: lib/problems.c:291
#, fuzzy, c-format
msgid "package %s has unsatisfied Requires: %s\n"
msgstr "paket %s nije naveden u %s"
#: lib/problems.c:302
#: lib/problems.c:295
#, fuzzy, c-format
msgid "package %s has unsatisfied Conflicts: %s\n"
msgstr "paket %s nije naveden u %s"
#: lib/problems.c:307
#: lib/problems.c:300
#, c-format
msgid "unknown error %d encountered while manipulating package %s"
msgstr ""
#: lib/psm.c:270
#: lib/problems.c:380
#, fuzzy
msgid "conflicts with"
msgstr " se sudara sa %s-%s-%s\n"
#: lib/problems.c:380
#, fuzzy
msgid "is needed by"
msgstr " je potreban paketu %s-%s-%s\n"
#: lib/psm.c:272
msgid "========== relocations\n"
msgstr ""
#: lib/psm.c:274
#: lib/psm.c:276
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "Pribavljam %s\n"
#: lib/psm.c:277
#: lib/psm.c:279
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "Ne mogu da otvorim datoteku %s: "
#: lib/psm.c:347
#: lib/psm.c:349
#, fuzzy, c-format
msgid "excluding multilib path %s%s\n"
msgstr "Pribavljam %s\n"
#: lib/psm.c:413
#: lib/psm.c:415
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "Pribavljam %s\n"
#: lib/psm.c:423
#: lib/psm.c:425
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/psm.c:502
#: lib/psm.c:504
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
#: lib/psm.c:1151
#: lib/psm.c:1153
#, fuzzy, c-format
msgid "cannot create %%%s %s\n"
msgstr "Ne mogu da otvorim datoteku %s: "
#: lib/psm.c:1157
#: lib/psm.c:1159
#, fuzzy, c-format
msgid "cannot write to %%%s %s\n"
msgstr "Ne mogu da otvorim datoteku %s: "
#: lib/psm.c:1198
#: lib/psm.c:1200
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:1322
#: lib/psm.c:1324
#, fuzzy
msgid "source package contains no .spec file\n"
msgstr "upit nad paketom koji ima <datoteku>"
#: lib/psm.c:1432
#: lib/psm.c:1434
#, fuzzy, c-format
msgid "%s: running %s scriptlet\n"
msgstr "nemoj izvr¹iti nijednu fazu"
#: lib/psm.c:1600
#: lib/psm.c:1602
#, 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:1607
#: lib/psm.c:1609
#, 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:1949
#: lib/psm.c:1951
#, fuzzy, c-format
msgid "%s: %s-%s-%s has %d files, test = %d\n"
msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
#: lib/psm.c:2066
#: lib/psm.c:2068
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
msgstr ""
#: lib/psm.c:2180
#: lib/psm.c:2182
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:2189
#: lib/psm.c:2191
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "grupa %s ne sadr¾i nijedan paket\n"
#: lib/psm.c:2230
#: lib/psm.c:2232
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "neuspelo otvaranje %s: %s\n"
#: lib/psm.c:2231
#: lib/psm.c:2233
msgid " on file "
msgstr ""
#: lib/psm.c:2417
#: lib/psm.c:2419
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "neuspelo otvaranje %s: %s"
#: lib/psm.c:2420
#: lib/psm.c:2422
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "PGP omanuo"
@ -2430,7 +2435,7 @@ msgid "can't query %s: %s\n"
msgstr "gre¹ka: ne mogu da otvorim %s\n"
#: lib/query.c:600 lib/query.c:638 lib/rpminstall.c:328 lib/rpminstall.c:470
#: lib/rpminstall.c:841
#: lib/rpminstall.c:840
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "neuspelo otvaranje %s: %s\n"
@ -2504,7 +2509,7 @@ msgstr "pogre
msgid "record %u could not be read\n"
msgstr "ne mogu da proèitam slog %d\n"
#: lib/query.c:854 lib/rpminstall.c:629
#: lib/query.c:854 lib/rpminstall.c:628
#, c-format
msgid "package %s is not installed\n"
msgstr "paket %s nije instaliran\n"
@ -2598,7 +2603,7 @@ msgid " %s A %s\tB %s\n"
msgstr ""
#. @=branchstate@
#: lib/rpmds.c:552
#: lib/rpmds.c:554
#, fuzzy, c-format
msgid "package %s has unsatisfied %s: %s\n"
msgstr "paket %s nije naveden u %s"
@ -2644,7 +2649,7 @@ msgstr "gre
msgid "file %s requires a newer version of RPM\n"
msgstr ""
#: lib/rpminstall.c:462 lib/rpminstall.c:697
#: lib/rpminstall.c:462 lib/rpminstall.c:696
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "gre¹ka: %s se ne mo¾e instalirati\n"
@ -2663,26 +2668,26 @@ msgstr "lo
msgid "installing binary packages\n"
msgstr "instaliraj paket"
#: lib/rpminstall.c:562
#: lib/rpminstall.c:561
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "Ne mogu da otvorim datoteku %s: "
#: lib/rpminstall.c:632
#: lib/rpminstall.c:631
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" odreðuje vi¹e paketa\n"
#: lib/rpminstall.c:656
#: lib/rpminstall.c:655
msgid "removing these packages would break dependencies:\n"
msgstr "uklanjanje oviha paketa æe naru¹iti zavisnosti:\n"
#: lib/rpminstall.c:683
#: lib/rpminstall.c:682
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "gre¹ka: ne mogu da otvorim %s\n"
#: lib/rpminstall.c:689
#: lib/rpminstall.c:688
#, c-format
msgid "Installing %s\n"
msgstr "Instaliram %s\n"
@ -2943,13 +2948,13 @@ msgstr ""
msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#: lib/transaction.c:244
#: lib/transaction.c:249
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:883
#: lib/transaction.c:902
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"

131
po/sv.po
View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-08 16:51-0500\n"
"POT-Creation-Date: 2001-11-09 12:21-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:2144
#: build/pack.c:603 lib/psm.c:2146
#, 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:2409
#: build/pack.c:683 lib/psm.c:2411
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrev: %s\n"
@ -1623,7 +1623,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr "dataLength() RPM_STRING_TYPE antal måste vara 1.\n"
#. @-modfilesys@
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:954
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:956
#, c-format
msgid "Data type %d not supported\n"
msgstr "Datatyp %d stöds inte\n"
@ -2146,184 +2146,189 @@ msgstr "signera ett paket (sl
msgid "generate signature"
msgstr "generera signatur"
#: lib/problems.c:201
#, fuzzy
msgid "conflicts with"
msgstr " står i konflikt med %s-%s-%s\n"
#. @observer@
#: lib/problems.c:229
msgid "different"
msgstr ""
#: lib/problems.c:201
#, fuzzy
msgid "is needed by"
msgstr " behövs av %s-%s-%s\n"
#: lib/problems.c:244
#, c-format
msgid "package %s is for a different architecture"
#: lib/problems.c:237
#, fuzzy, c-format
msgid "package %s is intended for a %s architecture"
msgstr "paket %s är för en annan arkitektur"
#: lib/problems.c:249
#, c-format
msgid "package %s is for a different operating system"
#: lib/problems.c:242
#, fuzzy, c-format
msgid "package %s is intended for a %s operating system"
msgstr "paket %s är för ett annat operativsystem"
#: lib/problems.c:254
#: lib/problems.c:247
#, c-format
msgid "package %s is already installed"
msgstr "paket %s är redan installerat"
#: lib/problems.c:259
#: lib/problems.c:252
#, c-format
msgid "path %s in package %s is not relocateable"
msgstr "sökväg %s i paket %s är inte relokerbar"
#: lib/problems.c:264
#: lib/problems.c:257
#, c-format
msgid "file %s conflicts between attempted installs of %s and %s"
msgstr "fil %s är en konflikt mellan installationsförsök av %s och %s"
#: lib/problems.c:269
#: lib/problems.c:262
#, c-format
msgid "file %s from install of %s conflicts with file from package %s"
msgstr "fil %s från installation av %s står i konflikt med filen från paket %s"
#: lib/problems.c:274
#: lib/problems.c:267
#, c-format
msgid "package %s (which is newer than %s) is already installed"
msgstr "paket %s (som är nyare än %s) är redan installerat"
#: lib/problems.c:279
#: lib/problems.c:272
#, c-format
msgid "installing package %s needs %ld%cb on the %s filesystem"
msgstr "installation av paket %s kräver %ld%cB på filsystem %s"
#: lib/problems.c:289
#: lib/problems.c:282
#, c-format
msgid "installing package %s needs %ld inodes on the %s filesystem"
msgstr "installation av paket %s kräver %ld inoder på filsystem %s"
#: lib/problems.c:294
#: lib/problems.c:287
#, c-format
msgid "package %s pre-transaction syscall(s): %s failed: %s"
msgstr "paket %s systemanrop före transaktion: %s misslyckades: %s"
#: lib/problems.c:298
#: lib/problems.c:291
#, fuzzy, c-format
msgid "package %s has unsatisfied Requires: %s\n"
msgstr "paket %s-%s-%s behov inte uppfyllda: %s\n"
#: lib/problems.c:302
#: lib/problems.c:295
#, fuzzy, c-format
msgid "package %s has unsatisfied Conflicts: %s\n"
msgstr "paket %s-%s-%s behov inte uppfyllda: %s\n"
#: lib/problems.c:307
#: lib/problems.c:300
#, c-format
msgid "unknown error %d encountered while manipulating package %s"
msgstr "okänt fel %d uppträdde under behandling av paket %s"
#: lib/psm.c:270
#: lib/problems.c:380
#, fuzzy
msgid "conflicts with"
msgstr " står i konflikt med %s-%s-%s\n"
#: lib/problems.c:380
#, fuzzy
msgid "is needed by"
msgstr " behövs av %s-%s-%s\n"
#: lib/psm.c:272
msgid "========== relocations\n"
msgstr "========== omflyttningar\n"
#: lib/psm.c:274
#: lib/psm.c:276
#, c-format
msgid "%5d exclude %s\n"
msgstr "%5d utesluter %s\n"
#: lib/psm.c:277
#: lib/psm.c:279
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%5d flyttar om %s -> %s\n"
#: lib/psm.c:347
#: lib/psm.c:349
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr "hoppar över multilib-sökväg %s%s\n"
#: lib/psm.c:413
#: lib/psm.c:415
#, c-format
msgid "excluding %s %s\n"
msgstr "hoppar över %s %s\n"
#: lib/psm.c:423
#: lib/psm.c:425
#, c-format
msgid "relocating %s to %s\n"
msgstr "flyttar %s till %s\n"
#: lib/psm.c:502
#: lib/psm.c:504
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "flyttar katalogen %s till %s\n"
#: lib/psm.c:1151
#: lib/psm.c:1153
#, c-format
msgid "cannot create %%%s %s\n"
msgstr "kan inte skapa %%%s %s\n"
#: lib/psm.c:1157
#: lib/psm.c:1159
#, c-format
msgid "cannot write to %%%s %s\n"
msgstr "kan inte skriva till %%%s %s\n"
#: lib/psm.c:1198
#: lib/psm.c:1200
msgid "source package expected, binary found\n"
msgstr "källpaket förväntades, fann binärpaket\n"
#: lib/psm.c:1322
#: lib/psm.c:1324
msgid "source package contains no .spec file\n"
msgstr "källpaket innehåller ingen .spec-fil\n"
#: lib/psm.c:1432
#: lib/psm.c:1434
#, fuzzy, c-format
msgid "%s: running %s scriptlet\n"
msgstr "%s: kör (eventuellt) %s-skript\n"
#: lib/psm.c:1600
#: lib/psm.c:1602
#, 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:1607
#: lib/psm.c:1609
#, 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:1949
#: lib/psm.c:1951
#, c-format
msgid "%s: %s-%s-%s has %d files, test = %d\n"
msgstr "%s: %s-%s-%s har %d filer, test = %d\n"
#: lib/psm.c:2066
#: lib/psm.c:2068
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
msgstr "%s: %s-skript misslyckades (%d), hoppar över %s-%s-%s\n"
#: lib/psm.c:2180
#: lib/psm.c:2182
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "användare %s finns inte - använder root\n"
#: lib/psm.c:2189
#: lib/psm.c:2191
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "grupp %s finns inte - använder root\n"
#: lib/psm.c:2230
#: lib/psm.c:2232
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "uppackning av arkiv misslyckades%s%s: %s\n"
#: lib/psm.c:2231
#: lib/psm.c:2233
msgid " on file "
msgstr " vid fil "
#: lib/psm.c:2417
#: lib/psm.c:2419
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s misslyckades på fil %s: %s\n"
#: lib/psm.c:2420
#: lib/psm.c:2422
#, c-format
msgid "%s failed: %s\n"
msgstr "%s misslyckades: %s\n"
@ -2372,7 +2377,7 @@ msgid "can't query %s: %s\n"
msgstr "kan inte fråga %s: %s\n"
#: lib/query.c:600 lib/query.c:638 lib/rpminstall.c:328 lib/rpminstall.c:470
#: lib/rpminstall.c:841
#: lib/rpminstall.c:840
#, c-format
msgid "open of %s failed: %s\n"
msgstr "misslyckades med att öppna %s: %s\n"
@ -2445,7 +2450,7 @@ msgstr "paketpost nummer: %u\n"
msgid "record %u could not be read\n"
msgstr "post %u kunde inte läsas\n"
#: lib/query.c:854 lib/rpminstall.c:629
#: lib/query.c:854 lib/rpminstall.c:628
#, c-format
msgid "package %s is not installed\n"
msgstr "paket %s är inte installerat\n"
@ -2539,7 +2544,7 @@ msgid " %s A %s\tB %s\n"
msgstr " %s A %s\tB %s\n"
#. @=branchstate@
#: lib/rpmds.c:552
#: lib/rpmds.c:554
#, fuzzy, c-format
msgid "package %s has unsatisfied %s: %s\n"
msgstr "paket %s-%s-%s behov inte uppfyllda: %s\n"
@ -2584,7 +2589,7 @@ msgstr "fel vid l
msgid "file %s requires a newer version of RPM\n"
msgstr "filen %s behöver en nyare version av RPM\n"
#: lib/rpminstall.c:462 lib/rpminstall.c:697
#: lib/rpminstall.c:462 lib/rpminstall.c:696
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s kan inte installeras\n"
@ -2602,26 +2607,26 @@ msgstr "ouppfyllda beroenden:\n"
msgid "installing binary packages\n"
msgstr "installerar binärpaket\n"
#: lib/rpminstall.c:562
#: lib/rpminstall.c:561
#, c-format
msgid "cannot open file %s: %s\n"
msgstr "kan inte öppna filen %s: %s\n"
#: lib/rpminstall.c:632
#: lib/rpminstall.c:631
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" anger flera paket\n"
#: lib/rpminstall.c:656
#: lib/rpminstall.c:655
msgid "removing these packages would break dependencies:\n"
msgstr "att ta bort dessa paket skulle göra sönder beroenden:\n"
#: lib/rpminstall.c:683
#: lib/rpminstall.c:682
#, c-format
msgid "cannot open %s: %s\n"
msgstr "kan inte öppna %s: %s\n"
#: lib/rpminstall.c:689
#: lib/rpminstall.c:688
#, c-format
msgid "Installing %s\n"
msgstr "Installerar %s\n"
@ -2873,13 +2878,13 @@ msgstr ""
msgid "Signature: UNKNOWN (%d)\n"
msgstr "Signatur: storlek(%d)+utfyllnad(%d)\n"
#: lib/transaction.c:244
#: lib/transaction.c:249
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s överhoppad på grund av missingok-flagga\n"
#. @innercontinue@
#: lib/transaction.c:883
#: lib/transaction.c:902
#, c-format
msgid "excluding directory %s\n"
msgstr "hoppar över katalogen %s\n"

131
po/tr.po
View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-08 16:51-0500\n"
"POT-Creation-Date: 2001-11-09 12:21-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:2144
#: build/pack.c:603 lib/psm.c:2146
#, 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:2409
#: build/pack.c:683 lib/psm.c:2411
#, c-format
msgid "Wrote: %s\n"
msgstr "Yazýldý: %s\n"
@ -1643,7 +1643,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr "dataLength() RPM_STRING_TYPE sayýsý 1 olmalý.\n"
#. @-modfilesys@
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:954
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:956
#, c-format
msgid "Data type %d not supported\n"
msgstr "%d veri türü desteklenmiyor\n"
@ -2170,183 +2170,188 @@ msgstr "paketi imzalar (mevcut imza kald
msgid "generate signature"
msgstr "imza üretir"
#: lib/problems.c:201
#, fuzzy
msgid "conflicts with"
msgstr " %s-%s-%s ile çeliþiyor\n"
#. @observer@
#: lib/problems.c:229
msgid "different"
msgstr ""
#: lib/problems.c:201
#, fuzzy
msgid "is needed by"
msgstr " %s-%s-%s için gerekli\n"
#: lib/problems.c:244
#, c-format
msgid "package %s is for a different architecture"
#: lib/problems.c:237
#, fuzzy, c-format
msgid "package %s is intended for a %s architecture"
msgstr "%s farklý bir mimari için"
#: lib/problems.c:249
#, c-format
msgid "package %s is for a different operating system"
#: lib/problems.c:242
#, fuzzy, c-format
msgid "package %s is intended for a %s operating system"
msgstr "%s farklý bir iþletim sistemi için"
#: lib/problems.c:254
#: lib/problems.c:247
#, c-format
msgid "package %s is already installed"
msgstr "%s zaten kurulu"
#: lib/problems.c:259
#: lib/problems.c:252
#, c-format
msgid "path %s in package %s is not relocateable"
msgstr "%s dosya yolu %s paketinde yeniden konumlandýrýlamaz"
#: lib/problems.c:264
#: lib/problems.c:257
#, c-format
msgid "file %s conflicts between attempted installs of %s and %s"
msgstr "%s dosyasý kalkýþýlan %s ve %s kurulumlarý arasýnda çeliþiyor"
#: lib/problems.c:269
#: lib/problems.c:262
#, c-format
msgid "file %s from install of %s conflicts with file from package %s"
msgstr "%s dosyasýnýn %s kurulumu %s kurulumundaki dosya ile çeliþiyor"
#: lib/problems.c:274
#: lib/problems.c:267
#, c-format
msgid "package %s (which is newer than %s) is already installed"
msgstr "%s paketi zaten yüklü (%s sürümünden daha yeni)"
#: lib/problems.c:279
#: lib/problems.c:272
#, c-format
msgid "installing package %s needs %ld%cb on the %s filesystem"
msgstr "%s kurulumu %ld%cb gerektiriyor (%s dosya sisteminde)"
#: lib/problems.c:289
#: lib/problems.c:282
#, c-format
msgid "installing package %s needs %ld inodes on the %s filesystem"
msgstr "%s kurulumu %ld i-düðüm gerektiriyor (%s dosya sisteminde)"
#: lib/problems.c:294
#: lib/problems.c:287
#, c-format
msgid "package %s pre-transaction syscall(s): %s failed: %s"
msgstr "%s iþlem öncesi sistem çaðrý(sý/larý): %s baþarýsýz: %s"
#: lib/problems.c:298
#: lib/problems.c:291
#, fuzzy, c-format
msgid "package %s has unsatisfied Requires: %s\n"
msgstr "paket %s-%s-%s gereksinimi tatmin edici deðil: %s\n"
#: lib/problems.c:302
#: lib/problems.c:295
#, fuzzy, c-format
msgid "package %s has unsatisfied Conflicts: %s\n"
msgstr "paket %s-%s-%s gereksinimi tatmin edici deðil: %s\n"
#: lib/problems.c:307
#: lib/problems.c:300
#, c-format
msgid "unknown error %d encountered while manipulating package %s"
msgstr "anlaþýlamayan %d hatasý, %s paketi iþlenirken saptandý"
#: lib/psm.c:270
#: lib/problems.c:380
#, fuzzy
msgid "conflicts with"
msgstr " %s-%s-%s ile çeliþiyor\n"
#: lib/problems.c:380
#, fuzzy
msgid "is needed by"
msgstr " %s-%s-%s için gerekli\n"
#: lib/psm.c:272
msgid "========== relocations\n"
msgstr "========== yeniden konumlama\n"
#: lib/psm.c:274
#: lib/psm.c:276
#, c-format
msgid "%5d exclude %s\n"
msgstr "%5d %s'i dýþlýyor\n"
#: lib/psm.c:277
#: lib/psm.c:279
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%5d yeniden konumlandýrýlýyor: %s -> %s\n"
#: lib/psm.c:347
#: lib/psm.c:349
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr "multilib dosya yolu dýþlanýyor %s%s\n"
#: lib/psm.c:413
#: lib/psm.c:415
#, c-format
msgid "excluding %s %s\n"
msgstr "%s %s dýþlanýyor\n"
#: lib/psm.c:423
#: lib/psm.c:425
#, c-format
msgid "relocating %s to %s\n"
msgstr "%s %s'e konumlanýyor\n"
#: lib/psm.c:502
#: lib/psm.c:504
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "%s dizini %s de yeniden konumlanýyor\n"
#: lib/psm.c:1151
#: lib/psm.c:1153
#, c-format
msgid "cannot create %%%s %s\n"
msgstr "%%%s dosyasý oluþturulamýyor: %s\n"
#: lib/psm.c:1157
#: lib/psm.c:1159
#, c-format
msgid "cannot write to %%%s %s\n"
msgstr "%%%s dosyasýna yazýlamaz %s\n"
#: lib/psm.c:1198
#: lib/psm.c:1200
msgid "source package expected, binary found\n"
msgstr "kaynak paketi gerekirken çalýþtýrýlabilir paketi bulundu\n"
#: lib/psm.c:1322
#: lib/psm.c:1324
msgid "source package contains no .spec file\n"
msgstr "kaynak paketi .spec dosyasý içermiyor\n"
#: lib/psm.c:1432
#: lib/psm.c:1434
#, fuzzy, c-format
msgid "%s: running %s scriptlet\n"
msgstr "%s: %s betiði çalýþtýrýlýyor (varsa)\n"
#: lib/psm.c:1600
#: lib/psm.c:1602
#, 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:1607
#: lib/psm.c:1609
#, 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:1949
#: lib/psm.c:1951
#, c-format
msgid "%s: %s-%s-%s has %d files, test = %d\n"
msgstr "%s: %s-%s-%s %d dosya içeriyor, test = %d\n"
#: lib/psm.c:2066
#: lib/psm.c:2068
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
msgstr "%s: %s betiði baþarýsýz (%d), %s-%s-%s atlanýyor\n"
#: lib/psm.c:2180
#: lib/psm.c:2182
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "kullanýcý %s yok - root kullanýlacak\n"
#: lib/psm.c:2189
#: lib/psm.c:2191
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "grup %s yok - root kullanýlacak\n"
#: lib/psm.c:2230
#: lib/psm.c:2232
#, 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:2231
#: lib/psm.c:2233
msgid " on file "
msgstr " dosyada "
#: lib/psm.c:2417
#: lib/psm.c:2419
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s açýlamadý: %s\n"
#: lib/psm.c:2420
#: lib/psm.c:2422
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s baþarýsýz\n"
@ -2395,7 +2400,7 @@ msgid "can't query %s: %s\n"
msgstr "%s sorgulanamýyor: %s\n"
#: lib/query.c:600 lib/query.c:638 lib/rpminstall.c:328 lib/rpminstall.c:470
#: lib/rpminstall.c:841
#: lib/rpminstall.c:840
#, c-format
msgid "open of %s failed: %s\n"
msgstr "%s açýlamadý: %s\n"
@ -2468,7 +2473,7 @@ msgstr "paket kay
msgid "record %u could not be read\n"
msgstr "%u. kayýt okunamadý\n"
#: lib/query.c:854 lib/rpminstall.c:629
#: lib/query.c:854 lib/rpminstall.c:628
#, c-format
msgid "package %s is not installed\n"
msgstr "%s paketi kurulu deðil\n"
@ -2562,7 +2567,7 @@ msgid " %s A %s\tB %s\n"
msgstr " %s A %s\tB %s\n"
#. @=branchstate@
#: lib/rpmds.c:552
#: lib/rpmds.c:554
#, fuzzy, c-format
msgid "package %s has unsatisfied %s: %s\n"
msgstr "paket %s-%s-%s gereksinimi tatmin edici deðil: %s\n"
@ -2607,7 +2612,7 @@ msgstr "%s dosyas
msgid "file %s requires a newer version of RPM\n"
msgstr "%s dosyasý RPM'nin daha yeni bir sürümünü gerektiriyor\n"
#: lib/rpminstall.c:462 lib/rpminstall.c:697
#: lib/rpminstall.c:462 lib/rpminstall.c:696
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s yüklenemedi\n"
@ -2625,26 +2630,26 @@ msgstr "ba
msgid "installing binary packages\n"
msgstr "icra edilebilir paketleri kuruluyor\n"
#: lib/rpminstall.c:562
#: lib/rpminstall.c:561
#, c-format
msgid "cannot open file %s: %s\n"
msgstr "%s dosyasý açýlamadý: %s\n"
#: lib/rpminstall.c:632
#: lib/rpminstall.c:631
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" birden fazla paketi tanýmlýyor\n"
#: lib/rpminstall.c:656
#: lib/rpminstall.c:655
msgid "removing these packages would break dependencies:\n"
msgstr "bu paketin silinmesi aþaðýdakilerin baðýmlýlýklarýný etkileyecektir:\n"
#: lib/rpminstall.c:683
#: lib/rpminstall.c:682
#, c-format
msgid "cannot open %s: %s\n"
msgstr "%s açýlamadý: %s\n"
#: lib/rpminstall.c:689
#: lib/rpminstall.c:688
#, c-format
msgid "Installing %s\n"
msgstr "%s kuruluyor\n"
@ -2894,13 +2899,13 @@ msgstr ""
msgid "Signature: UNKNOWN (%d)\n"
msgstr "Ýmza: boyut(%d)+iz(%d)\n"
#: lib/transaction.c:244
#: lib/transaction.c:249
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "missingok flamasýndan dolayý %s atlandý\n"
#. @innercontinue@
#: lib/transaction.c:883
#: lib/transaction.c:902
#, c-format
msgid "excluding directory %s\n"
msgstr "%s dizini dýþlanýyor\n"

121
po/uk.po
View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-08 16:51-0500\n"
"POT-Creation-Date: 2001-11-09 12:21-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:2144
#: build/pack.c:603 lib/psm.c:2146
#, 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:2409
#: build/pack.c:683 lib/psm.c:2411
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1598,7 +1598,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
#. @-modfilesys@
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:954
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:956
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
@ -2105,181 +2105,186 @@ msgstr ""
msgid "generate signature"
msgstr ""
#: lib/problems.c:201
msgid "conflicts with"
#. @observer@
#: lib/problems.c:229
msgid "different"
msgstr ""
#: lib/problems.c:201
msgid "is needed by"
msgstr ""
#: lib/problems.c:244
#: lib/problems.c:237
#, c-format
msgid "package %s is for a different architecture"
msgid "package %s is intended for a %s architecture"
msgstr ""
#: lib/problems.c:249
#: lib/problems.c:242
#, c-format
msgid "package %s is for a different operating system"
msgid "package %s is intended for a %s operating system"
msgstr ""
#: lib/problems.c:254
#: lib/problems.c:247
#, c-format
msgid "package %s is already installed"
msgstr ""
#: lib/problems.c:259
#: lib/problems.c:252
#, c-format
msgid "path %s in package %s is not relocateable"
msgstr ""
#: lib/problems.c:264
#: lib/problems.c:257
#, c-format
msgid "file %s conflicts between attempted installs of %s and %s"
msgstr ""
#: lib/problems.c:269
#: lib/problems.c:262
#, c-format
msgid "file %s from install of %s conflicts with file from package %s"
msgstr ""
#: lib/problems.c:274
#: lib/problems.c:267
#, c-format
msgid "package %s (which is newer than %s) is already installed"
msgstr ""
#: lib/problems.c:279
#: lib/problems.c:272
#, c-format
msgid "installing package %s needs %ld%cb on the %s filesystem"
msgstr ""
#: lib/problems.c:289
#: lib/problems.c:282
#, c-format
msgid "installing package %s needs %ld inodes on the %s filesystem"
msgstr ""
#: lib/problems.c:294
#: lib/problems.c:287
#, c-format
msgid "package %s pre-transaction syscall(s): %s failed: %s"
msgstr ""
#: lib/problems.c:298
#: lib/problems.c:291
#, c-format
msgid "package %s has unsatisfied Requires: %s\n"
msgstr ""
#: lib/problems.c:302
#: lib/problems.c:295
#, c-format
msgid "package %s has unsatisfied Conflicts: %s\n"
msgstr ""
#: lib/problems.c:307
#: lib/problems.c:300
#, c-format
msgid "unknown error %d encountered while manipulating package %s"
msgstr ""
#: lib/psm.c:270
#: lib/problems.c:380
msgid "conflicts with"
msgstr ""
#: lib/problems.c:380
msgid "is needed by"
msgstr ""
#: lib/psm.c:272
msgid "========== relocations\n"
msgstr ""
#: lib/psm.c:274
#: lib/psm.c:276
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
#: lib/psm.c:277
#: lib/psm.c:279
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/psm.c:347
#: lib/psm.c:349
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/psm.c:413
#: lib/psm.c:415
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/psm.c:423
#: lib/psm.c:425
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/psm.c:502
#: lib/psm.c:504
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/psm.c:1151
#: lib/psm.c:1153
#, c-format
msgid "cannot create %%%s %s\n"
msgstr ""
#: lib/psm.c:1157
#: lib/psm.c:1159
#, c-format
msgid "cannot write to %%%s %s\n"
msgstr ""
#: lib/psm.c:1198
#: lib/psm.c:1200
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:1322
#: lib/psm.c:1324
msgid "source package contains no .spec file\n"
msgstr ""
#: lib/psm.c:1432
#: lib/psm.c:1434
#, c-format
msgid "%s: running %s scriptlet\n"
msgstr ""
#: lib/psm.c:1600
#: lib/psm.c:1602
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr ""
#: lib/psm.c:1607
#: lib/psm.c:1609
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1949
#: lib/psm.c:1951
#, c-format
msgid "%s: %s-%s-%s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:2066
#: lib/psm.c:2068
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
msgstr ""
#: lib/psm.c:2180
#: lib/psm.c:2182
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:2189
#: lib/psm.c:2191
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:2230
#: lib/psm.c:2232
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:2231
#: lib/psm.c:2233
msgid " on file "
msgstr ""
#: lib/psm.c:2417
#: lib/psm.c:2419
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
#: lib/psm.c:2420
#: lib/psm.c:2422
#, c-format
msgid "%s failed: %s\n"
msgstr ""
@ -2328,7 +2333,7 @@ msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:600 lib/query.c:638 lib/rpminstall.c:328 lib/rpminstall.c:470
#: lib/rpminstall.c:841
#: lib/rpminstall.c:840
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@ -2401,7 +2406,7 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:854 lib/rpminstall.c:629
#: lib/query.c:854 lib/rpminstall.c:628
#, c-format
msgid "package %s is not installed\n"
msgstr ""
@ -2491,7 +2496,7 @@ msgid " %s A %s\tB %s\n"
msgstr ""
#. @=branchstate@
#: lib/rpmds.c:552
#: lib/rpmds.c:554
#, c-format
msgid "package %s has unsatisfied %s: %s\n"
msgstr ""
@ -2536,7 +2541,7 @@ msgstr ""
msgid "file %s requires a newer version of RPM\n"
msgstr ""
#: lib/rpminstall.c:462 lib/rpminstall.c:697
#: lib/rpminstall.c:462 lib/rpminstall.c:696
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
@ -2554,26 +2559,26 @@ msgstr ""
msgid "installing binary packages\n"
msgstr ""
#: lib/rpminstall.c:562
#: lib/rpminstall.c:561
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
#: lib/rpminstall.c:632
#: lib/rpminstall.c:631
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
#: lib/rpminstall.c:656
#: lib/rpminstall.c:655
msgid "removing these packages would break dependencies:\n"
msgstr ""
#: lib/rpminstall.c:683
#: lib/rpminstall.c:682
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
#: lib/rpminstall.c:689
#: lib/rpminstall.c:688
#, c-format
msgid "Installing %s\n"
msgstr ""
@ -2820,13 +2825,13 @@ msgstr ""
msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#: lib/transaction.c:244
#: lib/transaction.c:249
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:883
#: lib/transaction.c:902
#, c-format
msgid "excluding directory %s\n"
msgstr ""

121
po/wa.po
View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-08 16:51-0500\n"
"POT-Creation-Date: 2001-11-09 12:21-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:2144
#: build/pack.c:603 lib/psm.c:2146
#, 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:2409
#: build/pack.c:683 lib/psm.c:2411
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1598,7 +1598,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
#. @-modfilesys@
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:954
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:956
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
@ -2105,181 +2105,186 @@ msgstr ""
msgid "generate signature"
msgstr ""
#: lib/problems.c:201
msgid "conflicts with"
#. @observer@
#: lib/problems.c:229
msgid "different"
msgstr ""
#: lib/problems.c:201
msgid "is needed by"
msgstr ""
#: lib/problems.c:244
#: lib/problems.c:237
#, c-format
msgid "package %s is for a different architecture"
msgid "package %s is intended for a %s architecture"
msgstr ""
#: lib/problems.c:249
#: lib/problems.c:242
#, c-format
msgid "package %s is for a different operating system"
msgid "package %s is intended for a %s operating system"
msgstr ""
#: lib/problems.c:254
#: lib/problems.c:247
#, c-format
msgid "package %s is already installed"
msgstr ""
#: lib/problems.c:259
#: lib/problems.c:252
#, c-format
msgid "path %s in package %s is not relocateable"
msgstr ""
#: lib/problems.c:264
#: lib/problems.c:257
#, c-format
msgid "file %s conflicts between attempted installs of %s and %s"
msgstr ""
#: lib/problems.c:269
#: lib/problems.c:262
#, c-format
msgid "file %s from install of %s conflicts with file from package %s"
msgstr ""
#: lib/problems.c:274
#: lib/problems.c:267
#, c-format
msgid "package %s (which is newer than %s) is already installed"
msgstr ""
#: lib/problems.c:279
#: lib/problems.c:272
#, c-format
msgid "installing package %s needs %ld%cb on the %s filesystem"
msgstr ""
#: lib/problems.c:289
#: lib/problems.c:282
#, c-format
msgid "installing package %s needs %ld inodes on the %s filesystem"
msgstr ""
#: lib/problems.c:294
#: lib/problems.c:287
#, c-format
msgid "package %s pre-transaction syscall(s): %s failed: %s"
msgstr ""
#: lib/problems.c:298
#: lib/problems.c:291
#, c-format
msgid "package %s has unsatisfied Requires: %s\n"
msgstr ""
#: lib/problems.c:302
#: lib/problems.c:295
#, c-format
msgid "package %s has unsatisfied Conflicts: %s\n"
msgstr ""
#: lib/problems.c:307
#: lib/problems.c:300
#, c-format
msgid "unknown error %d encountered while manipulating package %s"
msgstr ""
#: lib/psm.c:270
#: lib/problems.c:380
msgid "conflicts with"
msgstr ""
#: lib/problems.c:380
msgid "is needed by"
msgstr ""
#: lib/psm.c:272
msgid "========== relocations\n"
msgstr ""
#: lib/psm.c:274
#: lib/psm.c:276
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
#: lib/psm.c:277
#: lib/psm.c:279
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/psm.c:347
#: lib/psm.c:349
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/psm.c:413
#: lib/psm.c:415
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/psm.c:423
#: lib/psm.c:425
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/psm.c:502
#: lib/psm.c:504
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/psm.c:1151
#: lib/psm.c:1153
#, c-format
msgid "cannot create %%%s %s\n"
msgstr ""
#: lib/psm.c:1157
#: lib/psm.c:1159
#, c-format
msgid "cannot write to %%%s %s\n"
msgstr ""
#: lib/psm.c:1198
#: lib/psm.c:1200
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:1322
#: lib/psm.c:1324
msgid "source package contains no .spec file\n"
msgstr ""
#: lib/psm.c:1432
#: lib/psm.c:1434
#, c-format
msgid "%s: running %s scriptlet\n"
msgstr ""
#: lib/psm.c:1600
#: lib/psm.c:1602
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr ""
#: lib/psm.c:1607
#: lib/psm.c:1609
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1949
#: lib/psm.c:1951
#, c-format
msgid "%s: %s-%s-%s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:2066
#: lib/psm.c:2068
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
msgstr ""
#: lib/psm.c:2180
#: lib/psm.c:2182
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:2189
#: lib/psm.c:2191
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:2230
#: lib/psm.c:2232
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:2231
#: lib/psm.c:2233
msgid " on file "
msgstr ""
#: lib/psm.c:2417
#: lib/psm.c:2419
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
#: lib/psm.c:2420
#: lib/psm.c:2422
#, c-format
msgid "%s failed: %s\n"
msgstr ""
@ -2328,7 +2333,7 @@ msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:600 lib/query.c:638 lib/rpminstall.c:328 lib/rpminstall.c:470
#: lib/rpminstall.c:841
#: lib/rpminstall.c:840
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@ -2401,7 +2406,7 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:854 lib/rpminstall.c:629
#: lib/query.c:854 lib/rpminstall.c:628
#, c-format
msgid "package %s is not installed\n"
msgstr ""
@ -2491,7 +2496,7 @@ msgid " %s A %s\tB %s\n"
msgstr ""
#. @=branchstate@
#: lib/rpmds.c:552
#: lib/rpmds.c:554
#, c-format
msgid "package %s has unsatisfied %s: %s\n"
msgstr ""
@ -2536,7 +2541,7 @@ msgstr ""
msgid "file %s requires a newer version of RPM\n"
msgstr ""
#: lib/rpminstall.c:462 lib/rpminstall.c:697
#: lib/rpminstall.c:462 lib/rpminstall.c:696
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
@ -2554,26 +2559,26 @@ msgstr ""
msgid "installing binary packages\n"
msgstr ""
#: lib/rpminstall.c:562
#: lib/rpminstall.c:561
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
#: lib/rpminstall.c:632
#: lib/rpminstall.c:631
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
#: lib/rpminstall.c:656
#: lib/rpminstall.c:655
msgid "removing these packages would break dependencies:\n"
msgstr ""
#: lib/rpminstall.c:683
#: lib/rpminstall.c:682
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
#: lib/rpminstall.c:689
#: lib/rpminstall.c:688
#, c-format
msgid "Installing %s\n"
msgstr ""
@ -2820,13 +2825,13 @@ msgstr ""
msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#: lib/transaction.c:244
#: lib/transaction.c:249
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:883
#: lib/transaction.c:902
#, c-format
msgid "excluding directory %s\n"
msgstr ""

121
po/zh.po
View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-08 16:51-0500\n"
"POT-Creation-Date: 2001-11-09 12:21-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:2144
#: build/pack.c:603 lib/psm.c:2146
#, 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:2409
#: build/pack.c:683 lib/psm.c:2411
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1598,7 +1598,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
#. @-modfilesys@
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:954
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:956
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
@ -2105,181 +2105,186 @@ msgstr ""
msgid "generate signature"
msgstr ""
#: lib/problems.c:201
msgid "conflicts with"
#. @observer@
#: lib/problems.c:229
msgid "different"
msgstr ""
#: lib/problems.c:201
msgid "is needed by"
msgstr ""
#: lib/problems.c:244
#: lib/problems.c:237
#, c-format
msgid "package %s is for a different architecture"
msgid "package %s is intended for a %s architecture"
msgstr ""
#: lib/problems.c:249
#: lib/problems.c:242
#, c-format
msgid "package %s is for a different operating system"
msgid "package %s is intended for a %s operating system"
msgstr ""
#: lib/problems.c:254
#: lib/problems.c:247
#, c-format
msgid "package %s is already installed"
msgstr ""
#: lib/problems.c:259
#: lib/problems.c:252
#, c-format
msgid "path %s in package %s is not relocateable"
msgstr ""
#: lib/problems.c:264
#: lib/problems.c:257
#, c-format
msgid "file %s conflicts between attempted installs of %s and %s"
msgstr ""
#: lib/problems.c:269
#: lib/problems.c:262
#, c-format
msgid "file %s from install of %s conflicts with file from package %s"
msgstr ""
#: lib/problems.c:274
#: lib/problems.c:267
#, c-format
msgid "package %s (which is newer than %s) is already installed"
msgstr ""
#: lib/problems.c:279
#: lib/problems.c:272
#, c-format
msgid "installing package %s needs %ld%cb on the %s filesystem"
msgstr ""
#: lib/problems.c:289
#: lib/problems.c:282
#, c-format
msgid "installing package %s needs %ld inodes on the %s filesystem"
msgstr ""
#: lib/problems.c:294
#: lib/problems.c:287
#, c-format
msgid "package %s pre-transaction syscall(s): %s failed: %s"
msgstr ""
#: lib/problems.c:298
#: lib/problems.c:291
#, c-format
msgid "package %s has unsatisfied Requires: %s\n"
msgstr ""
#: lib/problems.c:302
#: lib/problems.c:295
#, c-format
msgid "package %s has unsatisfied Conflicts: %s\n"
msgstr ""
#: lib/problems.c:307
#: lib/problems.c:300
#, c-format
msgid "unknown error %d encountered while manipulating package %s"
msgstr ""
#: lib/psm.c:270
#: lib/problems.c:380
msgid "conflicts with"
msgstr ""
#: lib/problems.c:380
msgid "is needed by"
msgstr ""
#: lib/psm.c:272
msgid "========== relocations\n"
msgstr ""
#: lib/psm.c:274
#: lib/psm.c:276
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
#: lib/psm.c:277
#: lib/psm.c:279
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/psm.c:347
#: lib/psm.c:349
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/psm.c:413
#: lib/psm.c:415
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/psm.c:423
#: lib/psm.c:425
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/psm.c:502
#: lib/psm.c:504
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/psm.c:1151
#: lib/psm.c:1153
#, c-format
msgid "cannot create %%%s %s\n"
msgstr ""
#: lib/psm.c:1157
#: lib/psm.c:1159
#, c-format
msgid "cannot write to %%%s %s\n"
msgstr ""
#: lib/psm.c:1198
#: lib/psm.c:1200
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:1322
#: lib/psm.c:1324
msgid "source package contains no .spec file\n"
msgstr ""
#: lib/psm.c:1432
#: lib/psm.c:1434
#, c-format
msgid "%s: running %s scriptlet\n"
msgstr ""
#: lib/psm.c:1600
#: lib/psm.c:1602
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr ""
#: lib/psm.c:1607
#: lib/psm.c:1609
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1949
#: lib/psm.c:1951
#, c-format
msgid "%s: %s-%s-%s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:2066
#: lib/psm.c:2068
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
msgstr ""
#: lib/psm.c:2180
#: lib/psm.c:2182
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:2189
#: lib/psm.c:2191
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:2230
#: lib/psm.c:2232
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:2231
#: lib/psm.c:2233
msgid " on file "
msgstr ""
#: lib/psm.c:2417
#: lib/psm.c:2419
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
#: lib/psm.c:2420
#: lib/psm.c:2422
#, c-format
msgid "%s failed: %s\n"
msgstr ""
@ -2328,7 +2333,7 @@ msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:600 lib/query.c:638 lib/rpminstall.c:328 lib/rpminstall.c:470
#: lib/rpminstall.c:841
#: lib/rpminstall.c:840
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@ -2401,7 +2406,7 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:854 lib/rpminstall.c:629
#: lib/query.c:854 lib/rpminstall.c:628
#, c-format
msgid "package %s is not installed\n"
msgstr ""
@ -2491,7 +2496,7 @@ msgid " %s A %s\tB %s\n"
msgstr ""
#. @=branchstate@
#: lib/rpmds.c:552
#: lib/rpmds.c:554
#, c-format
msgid "package %s has unsatisfied %s: %s\n"
msgstr ""
@ -2536,7 +2541,7 @@ msgstr ""
msgid "file %s requires a newer version of RPM\n"
msgstr ""
#: lib/rpminstall.c:462 lib/rpminstall.c:697
#: lib/rpminstall.c:462 lib/rpminstall.c:696
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
@ -2554,26 +2559,26 @@ msgstr ""
msgid "installing binary packages\n"
msgstr ""
#: lib/rpminstall.c:562
#: lib/rpminstall.c:561
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
#: lib/rpminstall.c:632
#: lib/rpminstall.c:631
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
#: lib/rpminstall.c:656
#: lib/rpminstall.c:655
msgid "removing these packages would break dependencies:\n"
msgstr ""
#: lib/rpminstall.c:683
#: lib/rpminstall.c:682
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
#: lib/rpminstall.c:689
#: lib/rpminstall.c:688
#, c-format
msgid "Installing %s\n"
msgstr ""
@ -2820,13 +2825,13 @@ msgstr ""
msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#: lib/transaction.c:244
#: lib/transaction.c:249
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:883
#: lib/transaction.c:902
#, c-format
msgid "excluding directory %s\n"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2001-11-08 16:51-0500\n"
"POT-Creation-Date: 2001-11-09 12:21-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:2144
#: build/pack.c:603 lib/psm.c:2146
#, 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:2409
#: build/pack.c:683 lib/psm.c:2411
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@ -1598,7 +1598,7 @@ msgid "dataLength() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
#. @-modfilesys@
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:954
#: lib/header.c:383 lib/header_internal.c:161 lib/psm.c:956
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
@ -2105,181 +2105,186 @@ msgstr ""
msgid "generate signature"
msgstr ""
#: lib/problems.c:201
msgid "conflicts with"
#. @observer@
#: lib/problems.c:229
msgid "different"
msgstr ""
#: lib/problems.c:201
msgid "is needed by"
msgstr ""
#: lib/problems.c:244
#: lib/problems.c:237
#, c-format
msgid "package %s is for a different architecture"
msgid "package %s is intended for a %s architecture"
msgstr ""
#: lib/problems.c:249
#: lib/problems.c:242
#, c-format
msgid "package %s is for a different operating system"
msgid "package %s is intended for a %s operating system"
msgstr ""
#: lib/problems.c:254
#: lib/problems.c:247
#, c-format
msgid "package %s is already installed"
msgstr ""
#: lib/problems.c:259
#: lib/problems.c:252
#, c-format
msgid "path %s in package %s is not relocateable"
msgstr ""
#: lib/problems.c:264
#: lib/problems.c:257
#, c-format
msgid "file %s conflicts between attempted installs of %s and %s"
msgstr ""
#: lib/problems.c:269
#: lib/problems.c:262
#, c-format
msgid "file %s from install of %s conflicts with file from package %s"
msgstr ""
#: lib/problems.c:274
#: lib/problems.c:267
#, c-format
msgid "package %s (which is newer than %s) is already installed"
msgstr ""
#: lib/problems.c:279
#: lib/problems.c:272
#, c-format
msgid "installing package %s needs %ld%cb on the %s filesystem"
msgstr ""
#: lib/problems.c:289
#: lib/problems.c:282
#, c-format
msgid "installing package %s needs %ld inodes on the %s filesystem"
msgstr ""
#: lib/problems.c:294
#: lib/problems.c:287
#, c-format
msgid "package %s pre-transaction syscall(s): %s failed: %s"
msgstr ""
#: lib/problems.c:298
#: lib/problems.c:291
#, c-format
msgid "package %s has unsatisfied Requires: %s\n"
msgstr ""
#: lib/problems.c:302
#: lib/problems.c:295
#, c-format
msgid "package %s has unsatisfied Conflicts: %s\n"
msgstr ""
#: lib/problems.c:307
#: lib/problems.c:300
#, c-format
msgid "unknown error %d encountered while manipulating package %s"
msgstr ""
#: lib/psm.c:270
#: lib/problems.c:380
msgid "conflicts with"
msgstr ""
#: lib/problems.c:380
msgid "is needed by"
msgstr ""
#: lib/psm.c:272
msgid "========== relocations\n"
msgstr ""
#: lib/psm.c:274
#: lib/psm.c:276
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
#: lib/psm.c:277
#: lib/psm.c:279
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
#: lib/psm.c:347
#: lib/psm.c:349
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
#: lib/psm.c:413
#: lib/psm.c:415
#, c-format
msgid "excluding %s %s\n"
msgstr ""
#: lib/psm.c:423
#: lib/psm.c:425
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
#: lib/psm.c:502
#: lib/psm.c:504
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
#: lib/psm.c:1151
#: lib/psm.c:1153
#, c-format
msgid "cannot create %%%s %s\n"
msgstr ""
#: lib/psm.c:1157
#: lib/psm.c:1159
#, c-format
msgid "cannot write to %%%s %s\n"
msgstr ""
#: lib/psm.c:1198
#: lib/psm.c:1200
msgid "source package expected, binary found\n"
msgstr ""
#: lib/psm.c:1322
#: lib/psm.c:1324
msgid "source package contains no .spec file\n"
msgstr ""
#: lib/psm.c:1432
#: lib/psm.c:1434
#, c-format
msgid "%s: running %s scriptlet\n"
msgstr ""
#: lib/psm.c:1600
#: lib/psm.c:1602
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
msgstr ""
#: lib/psm.c:1607
#: lib/psm.c:1609
#, c-format
msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
msgstr ""
#: lib/psm.c:1949
#: lib/psm.c:1951
#, c-format
msgid "%s: %s-%s-%s has %d files, test = %d\n"
msgstr ""
#: lib/psm.c:2066
#: lib/psm.c:2068
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n"
msgstr ""
#: lib/psm.c:2180
#: lib/psm.c:2182
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:2189
#: lib/psm.c:2191
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
#: lib/psm.c:2230
#: lib/psm.c:2232
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
#: lib/psm.c:2231
#: lib/psm.c:2233
msgid " on file "
msgstr ""
#: lib/psm.c:2417
#: lib/psm.c:2419
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
#: lib/psm.c:2420
#: lib/psm.c:2422
#, c-format
msgid "%s failed: %s\n"
msgstr ""
@ -2328,7 +2333,7 @@ msgid "can't query %s: %s\n"
msgstr ""
#: lib/query.c:600 lib/query.c:638 lib/rpminstall.c:328 lib/rpminstall.c:470
#: lib/rpminstall.c:841
#: lib/rpminstall.c:840
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
@ -2401,7 +2406,7 @@ msgstr ""
msgid "record %u could not be read\n"
msgstr ""
#: lib/query.c:854 lib/rpminstall.c:629
#: lib/query.c:854 lib/rpminstall.c:628
#, c-format
msgid "package %s is not installed\n"
msgstr ""
@ -2491,7 +2496,7 @@ msgid " %s A %s\tB %s\n"
msgstr ""
#. @=branchstate@
#: lib/rpmds.c:552
#: lib/rpmds.c:554
#, c-format
msgid "package %s has unsatisfied %s: %s\n"
msgstr ""
@ -2536,7 +2541,7 @@ msgstr ""
msgid "file %s requires a newer version of RPM\n"
msgstr ""
#: lib/rpminstall.c:462 lib/rpminstall.c:697
#: lib/rpminstall.c:462 lib/rpminstall.c:696
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
@ -2554,26 +2559,26 @@ msgstr ""
msgid "installing binary packages\n"
msgstr ""
#: lib/rpminstall.c:562
#: lib/rpminstall.c:561
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
#: lib/rpminstall.c:632
#: lib/rpminstall.c:631
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
#: lib/rpminstall.c:656
#: lib/rpminstall.c:655
msgid "removing these packages would break dependencies:\n"
msgstr ""
#: lib/rpminstall.c:683
#: lib/rpminstall.c:682
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
#: lib/rpminstall.c:689
#: lib/rpminstall.c:688
#, c-format
msgid "Installing %s\n"
msgstr ""
@ -2820,13 +2825,13 @@ msgstr ""
msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#: lib/transaction.c:244
#: lib/transaction.c:249
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
#. @innercontinue@
#: lib/transaction.c:883
#: lib/transaction.c:902
#, c-format
msgid "excluding directory %s\n"
msgstr ""

View File

@ -566,3 +566,4 @@ fi
- linear search on added package provides is dumb.
- discarding entire signature header when using --addsign is dumb.
- rip out rpmDependencyConflict, replace with rpmProblem instead.
- no-brainer refcounts for rpmProblemSet object.

View File

@ -566,3 +566,4 @@ fi
- linear search on added package provides is dumb.
- discarding entire signature header when using --addsign is dumb.
- rip out rpmDependencyConflict, replace with rpmProblem instead.
- no-brainer refcounts for rpmProblemSet object.