Create rpmte.[ch].
CVS patchset: 5185 CVS date: 2001/11/16 20:26:01
This commit is contained in:
parent
2bc3326438
commit
bf2a991c67
|
@ -388,6 +388,8 @@ INPUT = \
|
|||
@top_srcdir@/lib/rpmlib.h \
|
||||
@top_srcdir@/lib/rpmlibprov.c \
|
||||
@top_srcdir@/lib/rpmrc.c \
|
||||
@top_srcdir@/lib/rpmte.c \
|
||||
@top_srcdir@/lib/rpmte.h \
|
||||
@top_srcdir@/lib/rpmvercmp.c \
|
||||
@top_srcdir@/lib/signature.c \
|
||||
@top_srcdir@/lib/signature.h \
|
||||
|
|
|
@ -20,7 +20,7 @@ pkginc_HEADERS = \
|
|||
noinst_HEADERS = \
|
||||
cpio.h depends.h fsm.h header_internal.h \
|
||||
manifest.h psm.h \
|
||||
rpmal.h rpmds.h rpmfi.h rpmlead.h signature.h
|
||||
rpmal.h rpmds.h rpmfi.h rpmlead.h rpmte.h signature.h
|
||||
|
||||
mylibpaths = \
|
||||
-L$(top_builddir)/lib/.libs \
|
||||
|
@ -38,7 +38,7 @@ librpm_la_SOURCES = \
|
|||
manifest.c misc.c package.c \
|
||||
problems.c poptI.c poptQV.c psm.c query.c \
|
||||
rpmal.c rpmchecksig.c rpmds.c rpmfi.c rpminstall.c \
|
||||
rpmlead.c rpmlibprov.c rpmrc.c rpmvercmp.c \
|
||||
rpmlead.c rpmlibprov.c rpmrc.c rpmte.c rpmvercmp.c \
|
||||
signature.c stringbuf.c transaction.c \
|
||||
verify.c
|
||||
librpm_la_LDFLAGS = -release @VERSION@
|
||||
|
|
|
@ -38,9 +38,6 @@ struct orderListIndex_s {
|
|||
/*@unchecked@*/
|
||||
int _cacheDependsRC = 1;
|
||||
|
||||
/*@unchecked@*/
|
||||
int _te_debug = 0;
|
||||
|
||||
/*@unchecked@*/
|
||||
int _ts_debug = 0;
|
||||
|
||||
|
@ -1499,7 +1496,7 @@ fprintf(stderr, "\t+++ %p[%d] %s npreds %d\n", p, teiGetOc(pi), teGetNEVR(p), p-
|
|||
rpmMessage(RPMMESS_DEBUG, _("========== tsorting packages (order, #predecessors, #succesors, depth)\n"));
|
||||
|
||||
rescan:
|
||||
if (pi) pi = teFreeIterator(pi);
|
||||
if (pi != NULL) pi = teFreeIterator(pi);
|
||||
q = r = NULL;
|
||||
qlen = 0;
|
||||
pi = teInitIterator(ts);
|
||||
|
|
427
lib/depends.h
427
lib/depends.h
|
@ -13,126 +13,16 @@
|
|||
#include "rpmfi.h"
|
||||
#include "rpmal.h"
|
||||
|
||||
typedef /*@abstract@*/ struct tsortInfo_s * tsortInfo;
|
||||
|
||||
typedef /*@abstract@*/ struct teIterator_s * teIterator;
|
||||
|
||||
/*@unchecked@*/
|
||||
/*@-exportlocal@*/
|
||||
extern int _cacheDependsRC;
|
||||
/*@=exportlocal@*/
|
||||
|
||||
/*@unchecked@*/
|
||||
/*@-exportlocal@*/
|
||||
extern int _te_debug;
|
||||
/*@=exportlocal@*/
|
||||
|
||||
/*@unchecked@*/
|
||||
/*@-exportlocal@*/
|
||||
extern int _ts_debug;
|
||||
/*@=exportlocal@*/
|
||||
|
||||
/**
|
||||
* Iterator across transaction elements, forward on install, backward on erase.
|
||||
*/
|
||||
struct teIterator_s {
|
||||
/*@refcounted@*/
|
||||
rpmTransactionSet ts; /*!< transaction set. */
|
||||
int reverse; /*!< reversed traversal? */
|
||||
int ocsave; /*!< last returned iterator index. */
|
||||
int oc; /*!< iterator index. */
|
||||
};
|
||||
|
||||
/** \ingroup rpmdep
|
||||
* Dependncy ordering information.
|
||||
*/
|
||||
/*@-fielduse@*/ /* LCL: confused by union? */
|
||||
struct tsortInfo_s {
|
||||
union {
|
||||
int count;
|
||||
/*@exposed@*/ /*@dependent@*/ /*@null@*/
|
||||
transactionElement suc;
|
||||
} tsi_u;
|
||||
#define tsi_count tsi_u.count
|
||||
#define tsi_suc tsi_u.suc
|
||||
/*@owned@*/ /*@null@*/
|
||||
struct tsortInfo_s * tsi_next;
|
||||
/*@exposed@*/ /*@dependent@*/ /*@null@*/
|
||||
transactionElement tsi_chain;
|
||||
int tsi_reqx;
|
||||
int tsi_qcnt;
|
||||
};
|
||||
/*@=fielduse@*/
|
||||
|
||||
/** \ingroup rpmdep
|
||||
*/
|
||||
typedef enum rpmTransactionType_e {
|
||||
TR_ADDED, /*!< Package will be installed. */
|
||||
TR_REMOVED /*!< Package will be removed. */
|
||||
} rpmTransactionType;
|
||||
|
||||
/** \ingroup rpmdep
|
||||
* A single package instance to be installed/removed atomically.
|
||||
*/
|
||||
struct transactionElement_s {
|
||||
rpmTransactionType type; /*!< Package disposition (installed/removed). */
|
||||
|
||||
/*@refcounted@*/ /*@null@*/
|
||||
Header h; /*!< Package header. */
|
||||
/*@only@*/
|
||||
const char * NEVR; /*!< Package name-version-release. */
|
||||
/*@owned@*/
|
||||
const char * name; /*!< Name: */
|
||||
/*@only@*/ /*@null@*/
|
||||
char * epoch;
|
||||
/*@dependent@*/ /*@null@*/
|
||||
char * version; /*!< Version: */
|
||||
/*@dependent@*/ /*@null@*/
|
||||
char * release; /*!< Release: */
|
||||
/*@only@*/ /*@null@*/
|
||||
const char * arch; /*!< Architecture hint. */
|
||||
/*@only@*/ /*@null@*/
|
||||
const char * os; /*!< Operating system hint. */
|
||||
|
||||
int npreds; /*!< No. of predecessors. */
|
||||
int depth; /*!< Max. depth in dependency tree. */
|
||||
/*@owned@*/
|
||||
tsortInfo tsi; /*!< Dependency ordering chains. */
|
||||
|
||||
/*@refcounted@*/ /*@null@*/
|
||||
rpmDepSet this; /*!< This package's provided NEVR. */
|
||||
/*@refcounted@*/ /*@null@*/
|
||||
rpmDepSet provides; /*!< Provides: dependencies. */
|
||||
/*@refcounted@*/ /*@null@*/
|
||||
rpmDepSet requires; /*!< Requires: dependencies. */
|
||||
/*@refcounted@*/ /*@null@*/
|
||||
rpmDepSet conflicts; /*!< Conflicts: dependencies. */
|
||||
/*@refcounted@*/ /*@null@*/
|
||||
rpmDepSet obsoletes; /*!< Obsoletes: dependencies. */
|
||||
/*@refcounted@*/ /*@null@*/
|
||||
TFI_t fi; /*!< File information. */
|
||||
|
||||
uint_32 multiLib; /*!< (TR_ADDED) MULTILIB */
|
||||
|
||||
/*@exposed@*/ /*@dependent@*/ /*@null@*/
|
||||
fnpyKey key; /*!< (TR_ADDED) Retrieval key. */
|
||||
/*@owned@*/ /*@null@*/
|
||||
rpmRelocation * relocs; /*!< (TR_ADDED) Payload file relocations. */
|
||||
/*@refcounted@*/ /*@null@*/
|
||||
FD_t fd; /*!< (TR_ADDED) Payload file descriptor. */
|
||||
|
||||
/*@-fielduse@*/ /* LCL: confused by union? */
|
||||
union {
|
||||
/*@unused@*/ alKey addedKey;
|
||||
/*@unused@*/ struct {
|
||||
alKey dependsOnKey;
|
||||
int dboffset;
|
||||
} removed;
|
||||
} u;
|
||||
/*@=fielduse@*/
|
||||
|
||||
};
|
||||
|
||||
/** \ingroup rpmdep
|
||||
* The set of packages to be installed/removed atomically.
|
||||
*/
|
||||
|
@ -198,324 +88,15 @@ struct rpmTransactionSet_s {
|
|||
|
||||
/*@refs@*/ int nrefs; /*!< Reference count. */
|
||||
|
||||
} ;
|
||||
};
|
||||
|
||||
/* XXX FIXME: rpmTransactionSet not opaque */
|
||||
#include "rpmte.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Retrieve type of transaction element.
|
||||
* @param te transaction element
|
||||
* @return type
|
||||
*/
|
||||
/*@unused@*/ static inline
|
||||
rpmTransactionType teGetType(transactionElement te)
|
||||
/*@*/
|
||||
{
|
||||
/*@-type@*/
|
||||
return te->type;
|
||||
/*@=type@*/
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieve name string of transaction element.
|
||||
* @param te transaction element
|
||||
* @return name string
|
||||
*/
|
||||
/*@unused@*/ static inline /*@observer@*/
|
||||
const char * teGetN(transactionElement te)
|
||||
/*@*/
|
||||
{
|
||||
/*@-type@*/
|
||||
return (te != NULL ? te->name : NULL);
|
||||
/*@=type@*/
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieve epoch string of transaction element.
|
||||
* @param te transaction element
|
||||
* @return epoch string
|
||||
*/
|
||||
/*@unused@*/ static inline /*@observer@*/ /*@null@*/
|
||||
const char * teGetE(transactionElement te)
|
||||
/*@*/
|
||||
{
|
||||
/*@-type@*/
|
||||
return (te != NULL ? te->epoch : NULL);
|
||||
/*@=type@*/
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieve version string of transaction element.
|
||||
* @param te transaction element
|
||||
* @return version string
|
||||
*/
|
||||
/*@unused@*/ static inline /*@observer@*/ /*@null@*/
|
||||
const char * teGetV(transactionElement te)
|
||||
/*@*/
|
||||
{
|
||||
/*@-type@*/
|
||||
return (te != NULL ? te->version : NULL);
|
||||
/*@=type@*/
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieve release string of transaction element.
|
||||
* @param te transaction element
|
||||
* @return release string
|
||||
*/
|
||||
/*@unused@*/ static inline /*@observer@*/ /*@null@*/
|
||||
const char * teGetR(transactionElement te)
|
||||
/*@*/
|
||||
{
|
||||
/*@-type@*/
|
||||
return (te != NULL ? te->release : NULL);
|
||||
/*@=type@*/
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieve arch string of transaction element.
|
||||
* @param te transaction element
|
||||
* @return arch string
|
||||
*/
|
||||
/*@unused@*/ static inline /*@observer@*/ /*@null@*/
|
||||
const char * teGetA(transactionElement te)
|
||||
/*@*/
|
||||
{
|
||||
/*@-type@*/
|
||||
return (te != NULL ? te->arch : NULL);
|
||||
/*@=type@*/
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieve os string of transaction element.
|
||||
* @param te transaction element
|
||||
* @return os string
|
||||
*/
|
||||
/*@unused@*/ static inline /*@observer@*/ /*@null@*/
|
||||
const char * teGetO(transactionElement te)
|
||||
/*@*/
|
||||
{
|
||||
/*@-type@*/
|
||||
return (te != NULL ? te->os : NULL);
|
||||
/*@=type@*/
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieve multlib flags of transaction element.
|
||||
* @param te transaction element
|
||||
* @return multilib flags
|
||||
*/
|
||||
/*@unused@*/ static inline
|
||||
int teGetMultiLib(transactionElement te)
|
||||
/*@*/
|
||||
{
|
||||
/*@-type@*/
|
||||
return (te != NULL ? te->multiLib : 0);
|
||||
/*@=type@*/
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieve tsort info for transaction element.
|
||||
* @param te transaction element
|
||||
* @return tsort info
|
||||
*/
|
||||
/*@unused@*/ static inline
|
||||
tsortInfo teGetTSI(transactionElement te)
|
||||
/*@*/
|
||||
{
|
||||
/*@-type@*/
|
||||
return te->tsi;
|
||||
/*@=type@*/
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieve pkgKey of TR_ADDED transaction element.
|
||||
* @param te transaction element
|
||||
* @return pkgKey
|
||||
*/
|
||||
/*@unused@*/ static inline /*@exposed@*/
|
||||
alKey teGetAddedKey(transactionElement te)
|
||||
/*@*/
|
||||
{
|
||||
/*@-type@*/
|
||||
return (te != NULL ? te->u.addedKey : 0);
|
||||
/*@=type@*/
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieve dependent pkgKey of TR_REMOVED transaction element.
|
||||
* @param te transaction element
|
||||
* @return dependent pkgKey
|
||||
*/
|
||||
/*@unused@*/ static inline /*@exposed@*/
|
||||
alKey teGetDependsOnKey(transactionElement te)
|
||||
/*@*/
|
||||
{
|
||||
/*@-type@*/
|
||||
return (te != NULL ? te->u.removed.dependsOnKey : 0);
|
||||
/*@=type@*/
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieve rpmdb instance of TR_REMOVED transaction element.
|
||||
* @param te transaction element
|
||||
* @return rpmdb instance
|
||||
*/
|
||||
/*@unused@*/ static inline
|
||||
int teGetDBOffset(transactionElement te)
|
||||
/*@*/
|
||||
{
|
||||
/*@-type@*/
|
||||
return (te != NULL ? te->u.removed.dboffset : 0);
|
||||
/*@=type@*/
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieve name-version-release string from transaction element.
|
||||
* @param te transaction element
|
||||
* @return name-version-release string
|
||||
*/
|
||||
/*@unused@*/ static inline /*@observer@*/
|
||||
const char * teGetNEVR(transactionElement te)
|
||||
/*@*/
|
||||
{
|
||||
/*@-type@*/
|
||||
return (te != NULL ? te->NEVR : NULL);
|
||||
/*@=type@*/
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieve file handle from transaction element.
|
||||
* @param te transaction element
|
||||
* @return file handle
|
||||
*/
|
||||
/*@unused@*/ static inline
|
||||
FD_t teGetFd(transactionElement te)
|
||||
/*@*/
|
||||
{
|
||||
/*@-type@*/
|
||||
/*@-compdef -refcounttrans -retalias -retexpose -usereleased @*/
|
||||
return (te != NULL ? te->fd : NULL);
|
||||
/*@=compdef =refcounttrans =retalias =retexpose =usereleased @*/
|
||||
/*@=type@*/
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieve key from transaction element.
|
||||
* @param te transaction element
|
||||
* @return key
|
||||
*/
|
||||
/*@unused@*/ static inline /*@exposed@*/
|
||||
fnpyKey teGetKey(transactionElement te)
|
||||
/*@*/
|
||||
{
|
||||
/*@-type@*/
|
||||
return (te != NULL ? te->key : NULL);
|
||||
/*@=type@*/
|
||||
}
|
||||
|
||||
#if defined(_NEED_TEITERATOR)
|
||||
/*@access teIterator @*/
|
||||
|
||||
/*@access rpmTransactionSet @*/
|
||||
|
||||
/**
|
||||
* Return transaction element index.
|
||||
* @param tei transaction element iterator
|
||||
* @return transaction element index
|
||||
*/
|
||||
/*@unused@*/ static inline
|
||||
int teiGetOc(teIterator tei)
|
||||
/*@*/
|
||||
{
|
||||
return tei->ocsave;
|
||||
}
|
||||
|
||||
/**
|
||||
* Destroy transaction element iterator.
|
||||
* @param tei transaction element iterator
|
||||
* @return NULL always
|
||||
*/
|
||||
/*@unused@*/ static inline /*@null@*/
|
||||
teIterator teFreeIterator(/*@only@*//*@null@*/ teIterator tei)
|
||||
/*@*/
|
||||
{
|
||||
if (tei)
|
||||
tei->ts = rpmtsUnlink(tei->ts, "tsIterator");
|
||||
return _free(tei);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create transaction element iterator.
|
||||
* @param ts transaction set
|
||||
* @return transaction element iterator
|
||||
*/
|
||||
/*@unused@*/ static inline /*@only@*/
|
||||
teIterator teInitIterator(rpmTransactionSet ts)
|
||||
/*@modifies ts @*/
|
||||
{
|
||||
teIterator tei = NULL;
|
||||
|
||||
tei = xcalloc(1, sizeof(*tei));
|
||||
tei->ts = rpmtsLink(ts, "teIterator");
|
||||
tei->reverse = ((ts->transFlags & RPMTRANS_FLAG_REVERSE) ? 1 : 0);
|
||||
tei->oc = (tei->reverse ? (ts->orderCount - 1) : 0);
|
||||
tei->ocsave = tei->oc;
|
||||
return tei;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return next transaction element
|
||||
* @param tei transaction element iterator
|
||||
* @return transaction element, NULL on termination
|
||||
*/
|
||||
/*@unused@*/ static inline /*@dependent@*/ /*@null@*/
|
||||
transactionElement teNextIterator(teIterator tei)
|
||||
/*@modifies tei @*/
|
||||
{
|
||||
transactionElement te = NULL;
|
||||
int oc = -1;
|
||||
|
||||
if (tei->reverse) {
|
||||
if (tei->oc >= 0) oc = tei->oc--;
|
||||
} else {
|
||||
if (tei->oc < tei->ts->orderCount) oc = tei->oc++;
|
||||
}
|
||||
tei->ocsave = oc;
|
||||
/*@-abstract @*/
|
||||
if (oc != -1)
|
||||
te = tei->ts->order + oc;
|
||||
/*@=abstract @*/
|
||||
/*@-compdef -usereleased@*/ /* FIX: ts->order may be released */
|
||||
return te;
|
||||
/*@=compdef =usereleased@*/
|
||||
}
|
||||
|
||||
/**
|
||||
* Return next transaction element of type.
|
||||
* @param tei transaction element iterator
|
||||
* @param type transaction element type selector
|
||||
* @return next transaction element of type, NULL on termination
|
||||
*/
|
||||
/*@unused@*/ static inline /*@dependent@*/ /*@null@*/
|
||||
transactionElement teNext(teIterator tei, rpmTransactionType type)
|
||||
/*@modifies tei @*/
|
||||
{
|
||||
transactionElement p;
|
||||
|
||||
while ((p = teNextIterator(tei)) != NULL) {
|
||||
/*@-type@*/
|
||||
if (p->type == type)
|
||||
break;
|
||||
/*@=type@*/
|
||||
}
|
||||
return p;
|
||||
}
|
||||
|
||||
#endif /* defined(_NEED_TEITERATOR) */
|
||||
|
||||
/**
|
||||
* Return (malloc'd) header name-version-release string.
|
||||
* @param h header
|
||||
|
|
|
@ -0,0 +1,155 @@
|
|||
/** \ingroup rpmdep
|
||||
* \file lib/rpmte.c
|
||||
* Routine to handle a transactionElement.
|
||||
*/
|
||||
#include "system.h"
|
||||
|
||||
#define _NEED_TEITERATOR 1
|
||||
#include "psm.h"
|
||||
|
||||
#include "debug.h"
|
||||
|
||||
/*@unchecked@*/
|
||||
int _te_debug = 0;
|
||||
|
||||
/*@access alKey @*/
|
||||
/*@access teIterator @*/
|
||||
/*@access transactionElement @*/
|
||||
/*@access rpmTransactionSet @*/
|
||||
|
||||
rpmTransactionType teGetType(transactionElement te)
|
||||
{
|
||||
return te->type;
|
||||
}
|
||||
|
||||
const char * teGetN(transactionElement te)
|
||||
/*@*/
|
||||
{
|
||||
return (te != NULL ? te->name : NULL);
|
||||
}
|
||||
|
||||
const char * teGetE(transactionElement te)
|
||||
{
|
||||
return (te != NULL ? te->epoch : NULL);
|
||||
}
|
||||
|
||||
const char * teGetV(transactionElement te)
|
||||
{
|
||||
return (te != NULL ? te->version : NULL);
|
||||
}
|
||||
|
||||
const char * teGetR(transactionElement te)
|
||||
{
|
||||
return (te != NULL ? te->release : NULL);
|
||||
}
|
||||
|
||||
const char * teGetA(transactionElement te)
|
||||
{
|
||||
return (te != NULL ? te->arch : NULL);
|
||||
}
|
||||
|
||||
const char * teGetO(transactionElement te)
|
||||
{
|
||||
return (te != NULL ? te->os : NULL);
|
||||
}
|
||||
|
||||
int teGetMultiLib(transactionElement te)
|
||||
{
|
||||
return (te != NULL ? te->multiLib : 0);
|
||||
}
|
||||
|
||||
tsortInfo teGetTSI(transactionElement te)
|
||||
{
|
||||
/*@-compdef -retalias -retexpose -usereleased @*/
|
||||
return te->tsi;
|
||||
/*@=compdef =retalias =retexpose =usereleased @*/
|
||||
}
|
||||
|
||||
alKey teGetAddedKey(transactionElement te)
|
||||
{
|
||||
return (te != NULL ? te->u.addedKey : 0);
|
||||
}
|
||||
|
||||
alKey teGetDependsOnKey(transactionElement te)
|
||||
{
|
||||
return (te != NULL ? te->u.removed.dependsOnKey : 0);
|
||||
}
|
||||
|
||||
int teGetDBOffset(transactionElement te)
|
||||
{
|
||||
return (te != NULL ? te->u.removed.dboffset : 0);
|
||||
}
|
||||
|
||||
const char * teGetNEVR(transactionElement te)
|
||||
{
|
||||
return (te != NULL ? te->NEVR : NULL);
|
||||
}
|
||||
|
||||
FD_t teGetFd(transactionElement te)
|
||||
{
|
||||
/*@-compdef -refcounttrans -retalias -retexpose -usereleased @*/
|
||||
return (te != NULL ? te->fd : NULL);
|
||||
/*@=compdef =refcounttrans =retalias =retexpose =usereleased @*/
|
||||
}
|
||||
|
||||
fnpyKey teGetKey(transactionElement te)
|
||||
{
|
||||
return (te != NULL ? te->key : NULL);
|
||||
}
|
||||
|
||||
int teiGetOc(teIterator tei)
|
||||
{
|
||||
return tei->ocsave;
|
||||
}
|
||||
|
||||
teIterator teFreeIterator(/*@only@*//*@null@*/ teIterator tei)
|
||||
{
|
||||
if (tei)
|
||||
tei->ts = rpmtsUnlink(tei->ts, "tsIterator");
|
||||
return _free(tei);
|
||||
}
|
||||
|
||||
teIterator teInitIterator(rpmTransactionSet ts)
|
||||
{
|
||||
teIterator tei = NULL;
|
||||
|
||||
tei = xcalloc(1, sizeof(*tei));
|
||||
tei->ts = rpmtsLink(ts, "teIterator");
|
||||
tei->reverse = ((ts->transFlags & RPMTRANS_FLAG_REVERSE) ? 1 : 0);
|
||||
tei->oc = (tei->reverse ? (ts->orderCount - 1) : 0);
|
||||
tei->ocsave = tei->oc;
|
||||
return tei;
|
||||
}
|
||||
|
||||
transactionElement teNextIterator(teIterator tei)
|
||||
{
|
||||
transactionElement te = NULL;
|
||||
int oc = -1;
|
||||
|
||||
if (tei->reverse) {
|
||||
if (tei->oc >= 0) oc = tei->oc--;
|
||||
} else {
|
||||
if (tei->oc < tei->ts->orderCount) oc = tei->oc++;
|
||||
}
|
||||
tei->ocsave = oc;
|
||||
/*@-abstract @*/
|
||||
if (oc != -1)
|
||||
te = tei->ts->order + oc;
|
||||
/*@=abstract @*/
|
||||
/*@-compdef -usereleased@*/ /* FIX: ts->order may be released */
|
||||
return te;
|
||||
/*@=compdef =usereleased@*/
|
||||
}
|
||||
|
||||
transactionElement teNext(teIterator tei, rpmTransactionType type)
|
||||
{
|
||||
transactionElement p;
|
||||
|
||||
while ((p = teNextIterator(tei)) != NULL) {
|
||||
/*@-type@*/
|
||||
if (p->type == type)
|
||||
break;
|
||||
/*@=type@*/
|
||||
}
|
||||
return p;
|
||||
}
|
|
@ -0,0 +1,307 @@
|
|||
#ifndef H_RPMTE
|
||||
#define H_RPMTE
|
||||
|
||||
/** \ingroup rpmdep rpmtrans
|
||||
* \file lib/rpmte.h
|
||||
* Structures used for a transactionElement.
|
||||
*/
|
||||
|
||||
typedef /*@abstract@*/ struct tsortInfo_s * tsortInfo;
|
||||
|
||||
typedef /*@abstract@*/ struct teIterator_s * teIterator;
|
||||
|
||||
/*@unchecked@*/
|
||||
/*@-exportlocal@*/
|
||||
extern int _te_debug;
|
||||
/*@=exportlocal@*/
|
||||
|
||||
/** \ingroup rpmdep
|
||||
* Dependncy ordering information.
|
||||
*/
|
||||
/*@-fielduse@*/ /* LCL: confused by union? */
|
||||
struct tsortInfo_s {
|
||||
union {
|
||||
int count;
|
||||
/*@exposed@*/ /*@dependent@*/ /*@null@*/
|
||||
transactionElement suc;
|
||||
} tsi_u;
|
||||
#define tsi_count tsi_u.count
|
||||
#define tsi_suc tsi_u.suc
|
||||
/*@owned@*/ /*@null@*/
|
||||
struct tsortInfo_s * tsi_next;
|
||||
/*@exposed@*/ /*@dependent@*/ /*@null@*/
|
||||
transactionElement tsi_chain;
|
||||
int tsi_reqx;
|
||||
int tsi_qcnt;
|
||||
};
|
||||
/*@=fielduse@*/
|
||||
|
||||
/** \ingroup rpmdep
|
||||
*/
|
||||
typedef enum rpmTransactionType_e {
|
||||
TR_ADDED, /*!< Package will be installed. */
|
||||
TR_REMOVED /*!< Package will be removed. */
|
||||
} rpmTransactionType;
|
||||
|
||||
/** \ingroup rpmdep
|
||||
* A single package instance to be installed/removed atomically.
|
||||
*/
|
||||
struct transactionElement_s {
|
||||
rpmTransactionType type; /*!< Package disposition (installed/removed). */
|
||||
|
||||
/*@refcounted@*/ /*@null@*/
|
||||
Header h; /*!< Package header. */
|
||||
/*@only@*/
|
||||
const char * NEVR; /*!< Package name-version-release. */
|
||||
/*@owned@*/
|
||||
const char * name; /*!< Name: */
|
||||
/*@only@*/ /*@null@*/
|
||||
char * epoch;
|
||||
/*@dependent@*/ /*@null@*/
|
||||
char * version; /*!< Version: */
|
||||
/*@dependent@*/ /*@null@*/
|
||||
char * release; /*!< Release: */
|
||||
/*@only@*/ /*@null@*/
|
||||
const char * arch; /*!< Architecture hint. */
|
||||
/*@only@*/ /*@null@*/
|
||||
const char * os; /*!< Operating system hint. */
|
||||
|
||||
int npreds; /*!< No. of predecessors. */
|
||||
int depth; /*!< Max. depth in dependency tree. */
|
||||
/*@owned@*/
|
||||
tsortInfo tsi; /*!< Dependency ordering chains. */
|
||||
|
||||
/*@refcounted@*/ /*@null@*/
|
||||
rpmDepSet this; /*!< This package's provided NEVR. */
|
||||
/*@refcounted@*/ /*@null@*/
|
||||
rpmDepSet provides; /*!< Provides: dependencies. */
|
||||
/*@refcounted@*/ /*@null@*/
|
||||
rpmDepSet requires; /*!< Requires: dependencies. */
|
||||
/*@refcounted@*/ /*@null@*/
|
||||
rpmDepSet conflicts; /*!< Conflicts: dependencies. */
|
||||
/*@refcounted@*/ /*@null@*/
|
||||
rpmDepSet obsoletes; /*!< Obsoletes: dependencies. */
|
||||
/*@refcounted@*/ /*@null@*/
|
||||
TFI_t fi; /*!< File information. */
|
||||
|
||||
uint_32 multiLib; /*!< (TR_ADDED) MULTILIB */
|
||||
|
||||
/*@exposed@*/ /*@dependent@*/ /*@null@*/
|
||||
fnpyKey key; /*!< (TR_ADDED) Retrieval key. */
|
||||
/*@owned@*/ /*@null@*/
|
||||
rpmRelocation * relocs; /*!< (TR_ADDED) Payload file relocations. */
|
||||
/*@refcounted@*/ /*@null@*/
|
||||
FD_t fd; /*!< (TR_ADDED) Payload file descriptor. */
|
||||
|
||||
/*@-fielduse@*/ /* LCL: confused by union? */
|
||||
union {
|
||||
/*@unused@*/ alKey addedKey;
|
||||
/*@unused@*/ struct {
|
||||
alKey dependsOnKey;
|
||||
int dboffset;
|
||||
} removed;
|
||||
} u;
|
||||
/*@=fielduse@*/
|
||||
|
||||
};
|
||||
|
||||
#if defined(_NEED_TEITERATOR)
|
||||
/**
|
||||
* Iterator across transaction elements, forward on install, backward on erase.
|
||||
*/
|
||||
struct teIterator_s {
|
||||
/*@refcounted@*/
|
||||
rpmTransactionSet ts; /*!< transaction set. */
|
||||
int reverse; /*!< reversed traversal? */
|
||||
int ocsave; /*!< last returned iterator index. */
|
||||
int oc; /*!< iterator index. */
|
||||
};
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Retrieve type of transaction element.
|
||||
* @param te transaction element
|
||||
* @return type
|
||||
*/
|
||||
rpmTransactionType teGetType(transactionElement te)
|
||||
/*@*/;
|
||||
|
||||
/**
|
||||
* Retrieve name string of transaction element.
|
||||
* @param te transaction element
|
||||
* @return name string
|
||||
*/
|
||||
/*@observer@*/
|
||||
const char * teGetN(transactionElement te)
|
||||
/*@*/;
|
||||
|
||||
/**
|
||||
* Retrieve epoch string of transaction element.
|
||||
* @param te transaction element
|
||||
* @return epoch string
|
||||
*/
|
||||
/*@observer@*/ /*@null@*/
|
||||
const char * teGetE(transactionElement te)
|
||||
/*@*/;
|
||||
|
||||
/**
|
||||
* Retrieve version string of transaction element.
|
||||
* @param te transaction element
|
||||
* @return version string
|
||||
*/
|
||||
/*@observer@*/ /*@null@*/
|
||||
const char * teGetV(transactionElement te)
|
||||
/*@*/;
|
||||
|
||||
/**
|
||||
* Retrieve release string of transaction element.
|
||||
* @param te transaction element
|
||||
* @return release string
|
||||
*/
|
||||
/*@observer@*/ /*@null@*/
|
||||
const char * teGetR(transactionElement te)
|
||||
/*@*/;
|
||||
|
||||
/**
|
||||
* Retrieve arch string of transaction element.
|
||||
* @param te transaction element
|
||||
* @return arch string
|
||||
*/
|
||||
/*@observer@*/ /*@null@*/
|
||||
const char * teGetA(transactionElement te)
|
||||
/*@*/;
|
||||
|
||||
/**
|
||||
* Retrieve os string of transaction element.
|
||||
* @param te transaction element
|
||||
* @return os string
|
||||
*/
|
||||
/*@observer@*/ /*@null@*/
|
||||
const char * teGetO(transactionElement te)
|
||||
/*@*/;
|
||||
|
||||
/**
|
||||
* Retrieve multlib flags of transaction element.
|
||||
* @param te transaction element
|
||||
* @return multilib flags
|
||||
*/
|
||||
int teGetMultiLib(transactionElement te)
|
||||
/*@*/;
|
||||
|
||||
/**
|
||||
* Retrieve tsort info for transaction element.
|
||||
* @param te transaction element
|
||||
* @return tsort info
|
||||
*/
|
||||
tsortInfo teGetTSI(transactionElement te)
|
||||
/*@*/;
|
||||
|
||||
/**
|
||||
* Retrieve pkgKey of TR_ADDED transaction element.
|
||||
* @param te transaction element
|
||||
* @return pkgKey
|
||||
*/
|
||||
/*@exposed@*/
|
||||
alKey teGetAddedKey(transactionElement te)
|
||||
/*@*/;
|
||||
|
||||
/**
|
||||
* Retrieve dependent pkgKey of TR_REMOVED transaction element.
|
||||
* @param te transaction element
|
||||
* @return dependent pkgKey
|
||||
*/
|
||||
/*@exposed@*/
|
||||
alKey teGetDependsOnKey(transactionElement te)
|
||||
/*@*/;
|
||||
|
||||
/**
|
||||
* Retrieve rpmdb instance of TR_REMOVED transaction element.
|
||||
* @param te transaction element
|
||||
* @return rpmdb instance
|
||||
*/
|
||||
int teGetDBOffset(transactionElement te)
|
||||
/*@*/;
|
||||
|
||||
/**
|
||||
* Retrieve name-version-release string from transaction element.
|
||||
* @param te transaction element
|
||||
* @return name-version-release string
|
||||
*/
|
||||
/*@observer@*/
|
||||
const char * teGetNEVR(transactionElement te)
|
||||
/*@*/;
|
||||
|
||||
/**
|
||||
* Retrieve file handle from transaction element.
|
||||
* @param te transaction element
|
||||
* @return file handle
|
||||
*/
|
||||
FD_t teGetFd(transactionElement te)
|
||||
/*@*/;
|
||||
|
||||
/**
|
||||
* Retrieve key from transaction element.
|
||||
* @param te transaction element
|
||||
* @return key
|
||||
*/
|
||||
/*@exposed@*/
|
||||
fnpyKey teGetKey(transactionElement te)
|
||||
/*@*/;
|
||||
|
||||
#if defined(_NEED_TEITERATOR)
|
||||
/**
|
||||
* Return transaction element index.
|
||||
* @param tei transaction element iterator
|
||||
* @return transaction element index
|
||||
*/
|
||||
int teiGetOc(teIterator tei)
|
||||
/*@*/;
|
||||
|
||||
/**
|
||||
* Destroy transaction element iterator.
|
||||
* @param tei transaction element iterator
|
||||
* @return NULL always
|
||||
*/
|
||||
/*@null@*/
|
||||
teIterator teFreeIterator(/*@only@*//*@null@*/ teIterator tei)
|
||||
/*@*/;
|
||||
|
||||
/**
|
||||
* Create transaction element iterator.
|
||||
* @param ts transaction set
|
||||
* @return transaction element iterator
|
||||
*/
|
||||
/*@only@*/
|
||||
teIterator teInitIterator(rpmTransactionSet ts)
|
||||
/*@modifies ts @*/;
|
||||
|
||||
/**
|
||||
* Return next transaction element
|
||||
* @param tei transaction element iterator
|
||||
* @return transaction element, NULL on termination
|
||||
*/
|
||||
/*@dependent@*/ /*@null@*/
|
||||
transactionElement teNextIterator(teIterator tei)
|
||||
/*@modifies tei @*/;
|
||||
|
||||
/**
|
||||
* Return next transaction element of type.
|
||||
* @param tei transaction element iterator
|
||||
* @param type transaction element type selector
|
||||
* @return next transaction element of type, NULL on termination
|
||||
*/
|
||||
/*@dependent@*/ /*@null@*/
|
||||
transactionElement teNext(teIterator tei, rpmTransactionType type)
|
||||
/*@modifies tei @*/;
|
||||
|
||||
#endif /* defined(_NEED_TEITERATOR) */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* H_RPMTE */
|
|
@ -45,6 +45,7 @@ lib/rpmds.c
|
|||
lib/rpminstall.c
|
||||
lib/rpmlead.c
|
||||
lib/rpmrc.c
|
||||
lib/rpmte.c
|
||||
lib/rpmvercmp.c
|
||||
lib/signature.c
|
||||
lib/stringbuf.c
|
||||
|
|
38
po/cs.po
38
po/cs.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2001-11-16 14:15-0500\n"
|
||||
"POT-Creation-Date: 2001-11-16 15:03-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"
|
||||
|
@ -1432,89 +1432,89 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr "selhal - "
|
||||
|
||||
#: lib/depends.c:106
|
||||
#: lib/depends.c:103
|
||||
#, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr "nemohu otevøít databázi balíèkù v %s\n"
|
||||
|
||||
#: lib/depends.c:421
|
||||
#: lib/depends.c:418
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr "balíèek %s je ji¾ nainstalován"
|
||||
|
||||
#: lib/depends.c:709
|
||||
#: lib/depends.c:706
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:734
|
||||
#: lib/depends.c:731
|
||||
#, fuzzy
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr "%s: %-45s ANO (rpmrc poskytuje)\n"
|
||||
|
||||
#: lib/depends.c:750
|
||||
#: lib/depends.c:747
|
||||
#, fuzzy
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr "%s: %-45s ANO (rpmlib poskytuje)\n"
|
||||
|
||||
#: lib/depends.c:771
|
||||
#: lib/depends.c:768
|
||||
#, fuzzy
|
||||
msgid "(db files)"
|
||||
msgstr "¹patný db soubor %s\n"
|
||||
|
||||
#: lib/depends.c:783
|
||||
#: lib/depends.c:780
|
||||
#, fuzzy
|
||||
msgid "(db provides)"
|
||||
msgstr "%s: %-45s ANO (db poskytuje)\n"
|
||||
|
||||
#: lib/depends.c:796
|
||||
#: lib/depends.c:793
|
||||
#, fuzzy
|
||||
msgid "(db package)"
|
||||
msgstr "¾ádné balíèky\n"
|
||||
|
||||
#: lib/depends.c:835
|
||||
#: lib/depends.c:832
|
||||
#, fuzzy, c-format
|
||||
msgid "%9s: (%s, %s) added to Depends cache.\n"
|
||||
msgstr "%s: (%s, %s) pøidáno do ke¹e závislostí.\n"
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "NO "
|
||||
msgstr "NE "
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "YES"
|
||||
msgstr "ANO"
|
||||
|
||||
#: lib/depends.c:1178
|
||||
#: lib/depends.c:1175
|
||||
#, fuzzy, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr "odstraòuji %s-%s-%s \"%s\" z tsort relací.\n"
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1423
|
||||
#: lib/depends.c:1420
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr "========== ukládání tsort relací\n"
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1499
|
||||
#: lib/depends.c:1496
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
|
||||
msgstr ""
|
||||
"========== tsorting balíèkù (poøadí, #pøedchùdce, #následovník, hloubka)\n"
|
||||
|
||||
#: lib/depends.c:1576
|
||||
#: lib/depends.c:1573
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr "========== pouze úspì¹né (poøadí dle prezentace)\n"
|
||||
|
||||
#: lib/depends.c:1636
|
||||
#: lib/depends.c:1633
|
||||
msgid "LOOP:\n"
|
||||
msgstr "SMYÈKA:\n"
|
||||
|
||||
#: lib/depends.c:1673
|
||||
#: lib/depends.c:1670
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr "========== pokraèuje tsort ...\n"
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1678
|
||||
#: lib/depends.c:1675
|
||||
#, c-format
|
||||
msgid "rpmdepOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
|
38
po/da.po
38
po/da.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2001-11-16 14:15-0500\n"
|
||||
"POT-Creation-Date: 2001-11-16 15:03-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"
|
||||
|
@ -1433,89 +1433,89 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr " mislykkedes - "
|
||||
|
||||
#: lib/depends.c:106
|
||||
#: lib/depends.c:103
|
||||
#, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr "kunne ikke åbne Packages-database i %s\n"
|
||||
|
||||
#: lib/depends.c:421
|
||||
#: lib/depends.c:418
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr "pakken %s er allerede installeret"
|
||||
|
||||
#: lib/depends.c:709
|
||||
#: lib/depends.c:706
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:734
|
||||
#: lib/depends.c:731
|
||||
#, fuzzy
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr "%s: %-45s JA (rpmrc tilfører)\n"
|
||||
|
||||
#: lib/depends.c:750
|
||||
#: lib/depends.c:747
|
||||
#, fuzzy
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr "%s: %-45s JA (rpmlib tilfører)\n"
|
||||
|
||||
#: lib/depends.c:771
|
||||
#: lib/depends.c:768
|
||||
#, fuzzy
|
||||
msgid "(db files)"
|
||||
msgstr "ugyldig db-fil %s\n"
|
||||
|
||||
#: lib/depends.c:783
|
||||
#: lib/depends.c:780
|
||||
#, fuzzy
|
||||
msgid "(db provides)"
|
||||
msgstr "%s: %-45s JA (db tilfører)\n"
|
||||
|
||||
#: lib/depends.c:796
|
||||
#: lib/depends.c:793
|
||||
#, fuzzy
|
||||
msgid "(db package)"
|
||||
msgstr "ingen pakker\n"
|
||||
|
||||
#: lib/depends.c:835
|
||||
#: lib/depends.c:832
|
||||
#, fuzzy, c-format
|
||||
msgid "%9s: (%s, %s) added to Depends cache.\n"
|
||||
msgstr "%s: (%s, %s) tilføjet til afhængigheds-buffer.\n"
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#, fuzzy
|
||||
msgid "NO "
|
||||
msgstr "IKKE O.K."
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1178
|
||||
#: lib/depends.c:1175
|
||||
#, fuzzy, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr "fjerne %s-%s-%s \"%s\" fra tsort-relationer.\n"
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1423
|
||||
#: lib/depends.c:1420
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr "========== gemmer tsort-relationer\n"
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1499
|
||||
#: lib/depends.c:1496
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1576
|
||||
#: lib/depends.c:1573
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr "========== kun efterfølgere (præsentationsrækkefølge)\n"
|
||||
|
||||
#: lib/depends.c:1636
|
||||
#: lib/depends.c:1633
|
||||
msgid "LOOP:\n"
|
||||
msgstr "LØKKE:\n"
|
||||
|
||||
#: lib/depends.c:1673
|
||||
#: lib/depends.c:1670
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr "========== fortsætter tsort ...\n"
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1678
|
||||
#: lib/depends.c:1675
|
||||
#, c-format
|
||||
msgid "rpmdepOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
|
38
po/de.po
38
po/de.po
|
@ -37,7 +37,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2001-11-16 14:15-0500\n"
|
||||
"POT-Creation-Date: 2001-11-16 15:03-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"
|
||||
|
@ -1568,90 +1568,90 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr "pgp fehlgeschlagen"
|
||||
|
||||
#: lib/depends.c:106
|
||||
#: lib/depends.c:103
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n"
|
||||
|
||||
#: lib/depends.c:421
|
||||
#: lib/depends.c:418
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr "Paket %s ist nicht installiert\n"
|
||||
|
||||
#: lib/depends.c:709
|
||||
#: lib/depends.c:706
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:734
|
||||
#: lib/depends.c:731
|
||||
#, fuzzy
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr "die Datei »%s« gehört zu keinem Paket\n"
|
||||
|
||||
#: lib/depends.c:750
|
||||
#: lib/depends.c:747
|
||||
#, fuzzy
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr "die Datei »%s« gehört zu keinem Paket\n"
|
||||
|
||||
# , c-format
|
||||
#: lib/depends.c:771
|
||||
#: lib/depends.c:768
|
||||
#, fuzzy
|
||||
msgid "(db files)"
|
||||
msgstr "Öffnen von %s fehlgeschlagen: %s"
|
||||
|
||||
#: lib/depends.c:783
|
||||
#: lib/depends.c:780
|
||||
#, fuzzy
|
||||
msgid "(db provides)"
|
||||
msgstr "die Datei »%s« gehört zu keinem Paket\n"
|
||||
|
||||
#: lib/depends.c:796
|
||||
#: lib/depends.c:793
|
||||
#, fuzzy
|
||||
msgid "(db package)"
|
||||
msgstr "Anfrage an alle Pakete"
|
||||
|
||||
#: lib/depends.c:835
|
||||
#: lib/depends.c:832
|
||||
#, fuzzy, c-format
|
||||
msgid "%9s: (%s, %s) added to Depends cache.\n"
|
||||
msgstr "die Datei »%s« gehört zu keinem Paket\n"
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "NO "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
# FIXME
|
||||
#: lib/depends.c:1178
|
||||
#: lib/depends.c:1175
|
||||
#, fuzzy, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr "Fehler beim Löschen des Eintrags %s nach %s"
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1423
|
||||
#: lib/depends.c:1420
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1499
|
||||
#: lib/depends.c:1496
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1576
|
||||
#: lib/depends.c:1573
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1636
|
||||
#: lib/depends.c:1633
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1673
|
||||
#: lib/depends.c:1670
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1678
|
||||
#: lib/depends.c:1675
|
||||
#, c-format
|
||||
msgid "rpmdepOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
|
38
po/en_RN.po
38
po/en_RN.po
|
@ -6,7 +6,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2001-11-16 14:15-0500\n"
|
||||
"POT-Creation-Date: 2001-11-16 15:03-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"
|
||||
|
@ -1410,83 +1410,83 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:106
|
||||
#: lib/depends.c:103
|
||||
#, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:421
|
||||
#: lib/depends.c:418
|
||||
#, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:709
|
||||
#: lib/depends.c:706
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:734
|
||||
#: lib/depends.c:731
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:750
|
||||
#: lib/depends.c:747
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:771
|
||||
#: lib/depends.c:768
|
||||
msgid "(db files)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:783
|
||||
#: lib/depends.c:780
|
||||
msgid "(db provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:796
|
||||
#: lib/depends.c:793
|
||||
msgid "(db package)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:835
|
||||
#: lib/depends.c:832
|
||||
#, c-format
|
||||
msgid "%9s: (%s, %s) added to Depends cache.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "NO "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1178
|
||||
#: lib/depends.c:1175
|
||||
#, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr ""
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1423
|
||||
#: lib/depends.c:1420
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1499
|
||||
#: lib/depends.c:1496
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1576
|
||||
#: lib/depends.c:1573
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1636
|
||||
#: lib/depends.c:1633
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1673
|
||||
#: lib/depends.c:1670
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1678
|
||||
#: lib/depends.c:1675
|
||||
#, c-format
|
||||
msgid "rpmdepOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
|
38
po/es.po
38
po/es.po
|
@ -6,7 +6,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2001-11-16 14:15-0500\n"
|
||||
"POT-Creation-Date: 2001-11-16 15:03-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"
|
||||
|
@ -1410,83 +1410,83 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:106
|
||||
#: lib/depends.c:103
|
||||
#, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:421
|
||||
#: lib/depends.c:418
|
||||
#, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:709
|
||||
#: lib/depends.c:706
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:734
|
||||
#: lib/depends.c:731
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:750
|
||||
#: lib/depends.c:747
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:771
|
||||
#: lib/depends.c:768
|
||||
msgid "(db files)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:783
|
||||
#: lib/depends.c:780
|
||||
msgid "(db provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:796
|
||||
#: lib/depends.c:793
|
||||
msgid "(db package)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:835
|
||||
#: lib/depends.c:832
|
||||
#, c-format
|
||||
msgid "%9s: (%s, %s) added to Depends cache.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "NO "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1178
|
||||
#: lib/depends.c:1175
|
||||
#, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr ""
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1423
|
||||
#: lib/depends.c:1420
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1499
|
||||
#: lib/depends.c:1496
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1576
|
||||
#: lib/depends.c:1573
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1636
|
||||
#: lib/depends.c:1633
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1673
|
||||
#: lib/depends.c:1670
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1678
|
||||
#: lib/depends.c:1675
|
||||
#, c-format
|
||||
msgid "rpmdepOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
|
38
po/eu_ES.po
38
po/eu_ES.po
|
@ -6,7 +6,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2001-11-16 14:15-0500\n"
|
||||
"POT-Creation-Date: 2001-11-16 15:03-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"
|
||||
|
@ -1410,83 +1410,83 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:106
|
||||
#: lib/depends.c:103
|
||||
#, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:421
|
||||
#: lib/depends.c:418
|
||||
#, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:709
|
||||
#: lib/depends.c:706
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:734
|
||||
#: lib/depends.c:731
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:750
|
||||
#: lib/depends.c:747
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:771
|
||||
#: lib/depends.c:768
|
||||
msgid "(db files)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:783
|
||||
#: lib/depends.c:780
|
||||
msgid "(db provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:796
|
||||
#: lib/depends.c:793
|
||||
msgid "(db package)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:835
|
||||
#: lib/depends.c:832
|
||||
#, c-format
|
||||
msgid "%9s: (%s, %s) added to Depends cache.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "NO "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1178
|
||||
#: lib/depends.c:1175
|
||||
#, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr ""
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1423
|
||||
#: lib/depends.c:1420
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1499
|
||||
#: lib/depends.c:1496
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1576
|
||||
#: lib/depends.c:1573
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1636
|
||||
#: lib/depends.c:1633
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1673
|
||||
#: lib/depends.c:1670
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1678
|
||||
#: lib/depends.c:1675
|
||||
#, c-format
|
||||
msgid "rpmdepOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
|
38
po/fi.po
38
po/fi.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2001-11-16 14:15-0500\n"
|
||||
"POT-Creation-Date: 2001-11-16 15:03-0500\n"
|
||||
"Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
|
||||
"Language-Team: Finnish <linux@sot.com>\n"
|
||||
"Content-Type: text/plain; charset=\n"
|
||||
|
@ -1451,88 +1451,88 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr "pgp epäonnistui"
|
||||
|
||||
#: lib/depends.c:106
|
||||
#: lib/depends.c:103
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr "virhe: en voi avata %s%s/packages.rpm\n"
|
||||
|
||||
#: lib/depends.c:421
|
||||
#: lib/depends.c:418
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr "paketti %s ei ole asennettu\n"
|
||||
|
||||
#: lib/depends.c:709
|
||||
#: lib/depends.c:706
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:734
|
||||
#: lib/depends.c:731
|
||||
#, fuzzy
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr "tiedostoa %s ei omista mikään paketti\n"
|
||||
|
||||
#: lib/depends.c:750
|
||||
#: lib/depends.c:747
|
||||
#, fuzzy
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr "tiedostoa %s ei omista mikään paketti\n"
|
||||
|
||||
#: lib/depends.c:771
|
||||
#: lib/depends.c:768
|
||||
#, fuzzy
|
||||
msgid "(db files)"
|
||||
msgstr "en voinut avata %s: %s"
|
||||
|
||||
#: lib/depends.c:783
|
||||
#: lib/depends.c:780
|
||||
#, fuzzy
|
||||
msgid "(db provides)"
|
||||
msgstr "tiedostoa %s ei omista mikään paketti\n"
|
||||
|
||||
#: lib/depends.c:796
|
||||
#: lib/depends.c:793
|
||||
#, fuzzy
|
||||
msgid "(db package)"
|
||||
msgstr "kysele kaikki paketit"
|
||||
|
||||
#: lib/depends.c:835
|
||||
#: lib/depends.c:832
|
||||
#, fuzzy, c-format
|
||||
msgid "%9s: (%s, %s) added to Depends cache.\n"
|
||||
msgstr "tiedostoa %s ei omista mikään paketti\n"
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "NO "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1178
|
||||
#: lib/depends.c:1175
|
||||
#, fuzzy, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr "virhe poistettaessa tietuetta %s %s:stä"
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1423
|
||||
#: lib/depends.c:1420
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1499
|
||||
#: lib/depends.c:1496
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1576
|
||||
#: lib/depends.c:1573
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1636
|
||||
#: lib/depends.c:1633
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1673
|
||||
#: lib/depends.c:1670
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1678
|
||||
#: lib/depends.c:1675
|
||||
#, c-format
|
||||
msgid "rpmdepOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
|
38
po/fr.po
38
po/fr.po
|
@ -6,7 +6,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2001-11-16 14:15-0500\n"
|
||||
"POT-Creation-Date: 2001-11-16 15:03-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"
|
||||
|
@ -1491,85 +1491,85 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr "La construction a chou.\n"
|
||||
|
||||
#: lib/depends.c:106
|
||||
#: lib/depends.c:103
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr "impossible d'ouvrir: %s\n"
|
||||
|
||||
#: lib/depends.c:421
|
||||
#: lib/depends.c:418
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr "aucun package n'a t spcifi pour l'installation"
|
||||
|
||||
#: lib/depends.c:709
|
||||
#: lib/depends.c:706
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:734
|
||||
#: lib/depends.c:731
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:750
|
||||
#: lib/depends.c:747
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:771
|
||||
#: lib/depends.c:768
|
||||
#, fuzzy
|
||||
msgid "(db files)"
|
||||
msgstr "impossible d'ouvrir: %s\n"
|
||||
|
||||
#: lib/depends.c:783
|
||||
#: lib/depends.c:780
|
||||
msgid "(db provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:796
|
||||
#: lib/depends.c:793
|
||||
#, fuzzy
|
||||
msgid "(db package)"
|
||||
msgstr "aucun package n'a t spcifi pour l'installation"
|
||||
|
||||
#: lib/depends.c:835
|
||||
#: lib/depends.c:832
|
||||
#, c-format
|
||||
msgid "%9s: (%s, %s) added to Depends cache.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "NO "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1178
|
||||
#: lib/depends.c:1175
|
||||
#, fuzzy, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr "impossible d'ouvrir: %s\n"
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1423
|
||||
#: lib/depends.c:1420
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1499
|
||||
#: lib/depends.c:1496
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1576
|
||||
#: lib/depends.c:1573
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1636
|
||||
#: lib/depends.c:1633
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1673
|
||||
#: lib/depends.c:1670
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1678
|
||||
#: lib/depends.c:1675
|
||||
#, c-format
|
||||
msgid "rpmdepOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
|
38
po/gl.po
38
po/gl.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.1\n"
|
||||
"POT-Creation-Date: 2001-11-16 14:15-0500\n"
|
||||
"POT-Creation-Date: 2001-11-16 15:03-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"
|
||||
|
@ -1405,83 +1405,83 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:106
|
||||
#: lib/depends.c:103
|
||||
#, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:421
|
||||
#: lib/depends.c:418
|
||||
#, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:709
|
||||
#: lib/depends.c:706
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:734
|
||||
#: lib/depends.c:731
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:750
|
||||
#: lib/depends.c:747
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:771
|
||||
#: lib/depends.c:768
|
||||
msgid "(db files)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:783
|
||||
#: lib/depends.c:780
|
||||
msgid "(db provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:796
|
||||
#: lib/depends.c:793
|
||||
msgid "(db package)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:835
|
||||
#: lib/depends.c:832
|
||||
#, c-format
|
||||
msgid "%9s: (%s, %s) added to Depends cache.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "NO "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1178
|
||||
#: lib/depends.c:1175
|
||||
#, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr ""
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1423
|
||||
#: lib/depends.c:1420
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1499
|
||||
#: lib/depends.c:1496
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1576
|
||||
#: lib/depends.c:1573
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1636
|
||||
#: lib/depends.c:1633
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1673
|
||||
#: lib/depends.c:1670
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1678
|
||||
#: lib/depends.c:1675
|
||||
#, c-format
|
||||
msgid "rpmdepOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
|
38
po/hu.po
38
po/hu.po
|
@ -6,7 +6,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2001-11-16 14:15-0500\n"
|
||||
"POT-Creation-Date: 2001-11-16 15:03-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"
|
||||
|
@ -1410,83 +1410,83 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:106
|
||||
#: lib/depends.c:103
|
||||
#, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:421
|
||||
#: lib/depends.c:418
|
||||
#, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:709
|
||||
#: lib/depends.c:706
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:734
|
||||
#: lib/depends.c:731
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:750
|
||||
#: lib/depends.c:747
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:771
|
||||
#: lib/depends.c:768
|
||||
msgid "(db files)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:783
|
||||
#: lib/depends.c:780
|
||||
msgid "(db provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:796
|
||||
#: lib/depends.c:793
|
||||
msgid "(db package)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:835
|
||||
#: lib/depends.c:832
|
||||
#, c-format
|
||||
msgid "%9s: (%s, %s) added to Depends cache.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "NO "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1178
|
||||
#: lib/depends.c:1175
|
||||
#, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr ""
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1423
|
||||
#: lib/depends.c:1420
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1499
|
||||
#: lib/depends.c:1496
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1576
|
||||
#: lib/depends.c:1573
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1636
|
||||
#: lib/depends.c:1633
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1673
|
||||
#: lib/depends.c:1670
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1678
|
||||
#: lib/depends.c:1675
|
||||
#, c-format
|
||||
msgid "rpmdepOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
|
38
po/id.po
38
po/id.po
|
@ -6,7 +6,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2001-11-16 14:15-0500\n"
|
||||
"POT-Creation-Date: 2001-11-16 15:03-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"
|
||||
|
@ -1410,83 +1410,83 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:106
|
||||
#: lib/depends.c:103
|
||||
#, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:421
|
||||
#: lib/depends.c:418
|
||||
#, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:709
|
||||
#: lib/depends.c:706
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:734
|
||||
#: lib/depends.c:731
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:750
|
||||
#: lib/depends.c:747
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:771
|
||||
#: lib/depends.c:768
|
||||
msgid "(db files)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:783
|
||||
#: lib/depends.c:780
|
||||
msgid "(db provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:796
|
||||
#: lib/depends.c:793
|
||||
msgid "(db package)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:835
|
||||
#: lib/depends.c:832
|
||||
#, c-format
|
||||
msgid "%9s: (%s, %s) added to Depends cache.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "NO "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1178
|
||||
#: lib/depends.c:1175
|
||||
#, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr ""
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1423
|
||||
#: lib/depends.c:1420
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1499
|
||||
#: lib/depends.c:1496
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1576
|
||||
#: lib/depends.c:1573
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1636
|
||||
#: lib/depends.c:1633
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1673
|
||||
#: lib/depends.c:1670
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1678
|
||||
#: lib/depends.c:1675
|
||||
#, c-format
|
||||
msgid "rpmdepOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
|
38
po/is.po
38
po/is.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2001-11-16 14:15-0500\n"
|
||||
"POT-Creation-Date: 2001-11-16 15:03-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"
|
||||
|
@ -1410,84 +1410,84 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:106
|
||||
#: lib/depends.c:103
|
||||
#, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr "get ekki opnað pakka gagnagrunn í\n"
|
||||
|
||||
#: lib/depends.c:421
|
||||
#: lib/depends.c:418
|
||||
#, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:709
|
||||
#: lib/depends.c:706
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:734
|
||||
#: lib/depends.c:731
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:750
|
||||
#: lib/depends.c:747
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:771
|
||||
#: lib/depends.c:768
|
||||
msgid "(db files)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:783
|
||||
#: lib/depends.c:780
|
||||
msgid "(db provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:796
|
||||
#: lib/depends.c:793
|
||||
#, fuzzy
|
||||
msgid "(db package)"
|
||||
msgstr "uppfæra pakka"
|
||||
|
||||
#: lib/depends.c:835
|
||||
#: lib/depends.c:832
|
||||
#, c-format
|
||||
msgid "%9s: (%s, %s) added to Depends cache.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "NO "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1178
|
||||
#: lib/depends.c:1175
|
||||
#, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr ""
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1423
|
||||
#: lib/depends.c:1420
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1499
|
||||
#: lib/depends.c:1496
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1576
|
||||
#: lib/depends.c:1573
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1636
|
||||
#: lib/depends.c:1633
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1673
|
||||
#: lib/depends.c:1670
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1678
|
||||
#: lib/depends.c:1675
|
||||
#, c-format
|
||||
msgid "rpmdepOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
|
38
po/it.po
38
po/it.po
|
@ -6,7 +6,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2001-11-16 14:15-0500\n"
|
||||
"POT-Creation-Date: 2001-11-16 15:03-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"
|
||||
|
@ -1410,83 +1410,83 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:106
|
||||
#: lib/depends.c:103
|
||||
#, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:421
|
||||
#: lib/depends.c:418
|
||||
#, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:709
|
||||
#: lib/depends.c:706
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:734
|
||||
#: lib/depends.c:731
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:750
|
||||
#: lib/depends.c:747
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:771
|
||||
#: lib/depends.c:768
|
||||
msgid "(db files)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:783
|
||||
#: lib/depends.c:780
|
||||
msgid "(db provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:796
|
||||
#: lib/depends.c:793
|
||||
msgid "(db package)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:835
|
||||
#: lib/depends.c:832
|
||||
#, c-format
|
||||
msgid "%9s: (%s, %s) added to Depends cache.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "NO "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1178
|
||||
#: lib/depends.c:1175
|
||||
#, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr ""
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1423
|
||||
#: lib/depends.c:1420
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1499
|
||||
#: lib/depends.c:1496
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1576
|
||||
#: lib/depends.c:1573
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1636
|
||||
#: lib/depends.c:1633
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1673
|
||||
#: lib/depends.c:1670
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1678
|
||||
#: lib/depends.c:1675
|
||||
#, c-format
|
||||
msgid "rpmdepOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
|
38
po/ja.po
38
po/ja.po
|
@ -6,7 +6,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2001-11-16 14:15-0500\n"
|
||||
"POT-Creation-Date: 2001-11-16 15:03-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"
|
||||
|
@ -1483,88 +1483,88 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr "失敗 - "
|
||||
|
||||
#: lib/depends.c:106
|
||||
#: lib/depends.c:103
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr "%s/packages.rpm をオープンできません\n"
|
||||
|
||||
#: lib/depends.c:421
|
||||
#: lib/depends.c:418
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr "パッケージ %s-%s-%s はすでにインストールされています"
|
||||
|
||||
#: lib/depends.c:709
|
||||
#: lib/depends.c:706
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:734
|
||||
#: lib/depends.c:731
|
||||
#, fuzzy
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr "%s: %s は rpmrc が提供することによって満されます。\n"
|
||||
|
||||
#: lib/depends.c:750
|
||||
#: lib/depends.c:747
|
||||
#, fuzzy
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr "%s: %s は rpmrc が提供することによって満されます。\n"
|
||||
|
||||
#: lib/depends.c:771
|
||||
#: lib/depends.c:768
|
||||
#, fuzzy
|
||||
msgid "(db files)"
|
||||
msgstr "不正なファイルの状態: %s"
|
||||
|
||||
#: lib/depends.c:783
|
||||
#: lib/depends.c:780
|
||||
#, fuzzy
|
||||
msgid "(db provides)"
|
||||
msgstr "%s: %s は db が提供することによって満されます。\n"
|
||||
|
||||
#: lib/depends.c:796
|
||||
#: lib/depends.c:793
|
||||
#, fuzzy
|
||||
msgid "(db package)"
|
||||
msgstr "%d 個のパッケージを見つけました\n"
|
||||
|
||||
#: lib/depends.c:835
|
||||
#: lib/depends.c:832
|
||||
#, fuzzy, c-format
|
||||
msgid "%9s: (%s, %s) added to Depends cache.\n"
|
||||
msgstr "%s: %s はパッケージに加えることによって満されます。\n"
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "NO "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1178
|
||||
#: lib/depends.c:1175
|
||||
#, fuzzy, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr "group インデックスを削除します\n"
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1423
|
||||
#: lib/depends.c:1420
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1499
|
||||
#: lib/depends.c:1496
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1576
|
||||
#: lib/depends.c:1573
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1636
|
||||
#: lib/depends.c:1633
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1673
|
||||
#: lib/depends.c:1670
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1678
|
||||
#: lib/depends.c:1675
|
||||
#, c-format
|
||||
msgid "rpmdepOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
|
38
po/ko.po
38
po/ko.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2001-11-16 14:15-0500\n"
|
||||
"POT-Creation-Date: 2001-11-16 15:03-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"
|
||||
|
@ -1423,89 +1423,89 @@ msgstr "
|
|||
msgid " failed - "
|
||||
msgstr " 실패함 - "
|
||||
|
||||
#: lib/depends.c:106
|
||||
#: lib/depends.c:103
|
||||
#, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr "%s 안의 패키지 데이터베이스를 열 수 없습니다\n"
|
||||
|
||||
#: lib/depends.c:421
|
||||
#: lib/depends.c:418
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr "%s 패키지는 이미 설치되어 있습니다"
|
||||
|
||||
#: lib/depends.c:709
|
||||
#: lib/depends.c:706
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:734
|
||||
#: lib/depends.c:731
|
||||
#, fuzzy
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr "%s: %-45s 예 (rpmrc이 제공함)\n"
|
||||
|
||||
#: lib/depends.c:750
|
||||
#: lib/depends.c:747
|
||||
#, fuzzy
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr "%s: %-45s 예 (rpmlib이 제공함)\n"
|
||||
|
||||
#: lib/depends.c:771
|
||||
#: lib/depends.c:768
|
||||
#, fuzzy
|
||||
msgid "(db files)"
|
||||
msgstr "잘못된 db 파일 %s\n"
|
||||
|
||||
#: lib/depends.c:783
|
||||
#: lib/depends.c:780
|
||||
#, fuzzy
|
||||
msgid "(db provides)"
|
||||
msgstr "%s: %-45s 예 (db가 제공함)\n"
|
||||
|
||||
#: lib/depends.c:796
|
||||
#: lib/depends.c:793
|
||||
#, fuzzy
|
||||
msgid "(db package)"
|
||||
msgstr "패키지가 없습니다\n"
|
||||
|
||||
#: lib/depends.c:835
|
||||
#: lib/depends.c:832
|
||||
#, fuzzy, c-format
|
||||
msgid "%9s: (%s, %s) added to Depends cache.\n"
|
||||
msgstr "%s: (%s, %s) 의존(Depends) 캐시에 추가되었습니다.\n"
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "NO "
|
||||
msgstr "아니오"
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "YES"
|
||||
msgstr "예"
|
||||
|
||||
#: lib/depends.c:1178
|
||||
#: lib/depends.c:1175
|
||||
#, fuzzy, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr "tsort 관계에서 %s-%s-%s \"%s\" (을)를 삭제합니다.\n"
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1423
|
||||
#: lib/depends.c:1420
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr "========== tsort 관계를 기록(record)합니다\n"
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1499
|
||||
#: lib/depends.c:1496
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
|
||||
msgstr ""
|
||||
"========== 패키지를 tsort 합니다 (순서, #선임자, #후임자, 깊이[depth])\n"
|
||||
|
||||
#: lib/depends.c:1576
|
||||
#: lib/depends.c:1573
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr "========== 후임자 [successors only] (표현 순)\n"
|
||||
|
||||
#: lib/depends.c:1636
|
||||
#: lib/depends.c:1633
|
||||
msgid "LOOP:\n"
|
||||
msgstr "루프(LOOP):\n"
|
||||
|
||||
#: lib/depends.c:1673
|
||||
#: lib/depends.c:1670
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr "========== tsort를 진행합니다...\n"
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1678
|
||||
#: lib/depends.c:1675
|
||||
#, c-format
|
||||
msgid "rpmdepOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
|
38
po/no.po
38
po/no.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2001-11-16 14:15-0500\n"
|
||||
"POT-Creation-Date: 2001-11-16 15:03-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"
|
||||
|
@ -1424,84 +1424,84 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr " feilet - "
|
||||
|
||||
#: lib/depends.c:106
|
||||
#: lib/depends.c:103
|
||||
#, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr "kan ikke åpne pakkedatabase i %s\n"
|
||||
|
||||
#: lib/depends.c:421
|
||||
#: lib/depends.c:418
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr "pakke %s er allerede installert"
|
||||
|
||||
#: lib/depends.c:709
|
||||
#: lib/depends.c:706
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:734
|
||||
#: lib/depends.c:731
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:750
|
||||
#: lib/depends.c:747
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:771
|
||||
#: lib/depends.c:768
|
||||
msgid "(db files)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:783
|
||||
#: lib/depends.c:780
|
||||
msgid "(db provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:796
|
||||
#: lib/depends.c:793
|
||||
#, fuzzy
|
||||
msgid "(db package)"
|
||||
msgstr "ingen pakker\n"
|
||||
|
||||
#: lib/depends.c:835
|
||||
#: lib/depends.c:832
|
||||
#, c-format
|
||||
msgid "%9s: (%s, %s) added to Depends cache.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "NO "
|
||||
msgstr "NEI"
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "YES"
|
||||
msgstr "JA"
|
||||
|
||||
#: lib/depends.c:1178
|
||||
#: lib/depends.c:1175
|
||||
#, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr ""
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1423
|
||||
#: lib/depends.c:1420
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1499
|
||||
#: lib/depends.c:1496
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1576
|
||||
#: lib/depends.c:1573
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1636
|
||||
#: lib/depends.c:1633
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1673
|
||||
#: lib/depends.c:1670
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1678
|
||||
#: lib/depends.c:1675
|
||||
#, c-format
|
||||
msgid "rpmdepOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
|
38
po/pl.po
38
po/pl.po
|
@ -8,7 +8,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2001-11-16 14:15-0500\n"
|
||||
"POT-Creation-Date: 2001-11-16 15:03-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"
|
||||
|
@ -1465,89 +1465,89 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr " nie powiod³o siê -"
|
||||
|
||||
#: lib/depends.c:106
|
||||
#: lib/depends.c:103
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr "nie mo¿na otworzyæ %s/packages.rpm\n"
|
||||
|
||||
#: lib/depends.c:421
|
||||
#: lib/depends.c:418
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr "pakiet %s-%s-%s jest ju¿ zainstalowany"
|
||||
|
||||
#: lib/depends.c:709
|
||||
#: lib/depends.c:706
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:734
|
||||
#: lib/depends.c:731
|
||||
#, fuzzy
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
|
||||
|
||||
#: lib/depends.c:750
|
||||
#: lib/depends.c:747
|
||||
#, fuzzy
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
|
||||
|
||||
#: lib/depends.c:771
|
||||
#: lib/depends.c:768
|
||||
#, fuzzy
|
||||
msgid "(db files)"
|
||||
msgstr "b³êdny status pliku: %s"
|
||||
|
||||
#: lib/depends.c:783
|
||||
#: lib/depends.c:780
|
||||
#, fuzzy
|
||||
msgid "(db provides)"
|
||||
msgstr "Udostêpniane zasoby:"
|
||||
|
||||
#: lib/depends.c:796
|
||||
#: lib/depends.c:793
|
||||
#, fuzzy
|
||||
msgid "(db package)"
|
||||
msgstr "znaleziono %d pakietów\n"
|
||||
|
||||
#: lib/depends.c:835
|
||||
#: lib/depends.c:832
|
||||
#, fuzzy, c-format
|
||||
msgid "%9s: (%s, %s) added to Depends cache.\n"
|
||||
msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#, fuzzy
|
||||
msgid "NO "
|
||||
msgstr "NIE DOBRZE"
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1178
|
||||
#: lib/depends.c:1175
|
||||
#, fuzzy, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr "usuwanie indeksu grupy\n"
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1423
|
||||
#: lib/depends.c:1420
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1499
|
||||
#: lib/depends.c:1496
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1576
|
||||
#: lib/depends.c:1573
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1636
|
||||
#: lib/depends.c:1633
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1673
|
||||
#: lib/depends.c:1670
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1678
|
||||
#: lib/depends.c:1675
|
||||
#, c-format
|
||||
msgid "rpmdepOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
|
38
po/pt.po
38
po/pt.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2001-11-16 14:15-0500\n"
|
||||
"POT-Creation-Date: 2001-11-16 15:03-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"
|
||||
|
@ -1420,89 +1420,89 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr " falhou - "
|
||||
|
||||
#: lib/depends.c:106
|
||||
#: lib/depends.c:103
|
||||
#, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr "não consigo abrir a base de dados Packages em %s\n"
|
||||
|
||||
#: lib/depends.c:421
|
||||
#: lib/depends.c:418
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr "o pacote %s já está instalado"
|
||||
|
||||
#: lib/depends.c:709
|
||||
#: lib/depends.c:706
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:734
|
||||
#: lib/depends.c:731
|
||||
#, fuzzy
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr "%s: %-45s SIM (oferecidos pelo rpmrc)\n"
|
||||
|
||||
#: lib/depends.c:750
|
||||
#: lib/depends.c:747
|
||||
#, fuzzy
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr "%s: %-45s SIM (oferecidos pela rpmlib)\n"
|
||||
|
||||
#: lib/depends.c:771
|
||||
#: lib/depends.c:768
|
||||
#, fuzzy
|
||||
msgid "(db files)"
|
||||
msgstr "ficheiro db inválido %s\n"
|
||||
|
||||
#: lib/depends.c:783
|
||||
#: lib/depends.c:780
|
||||
#, fuzzy
|
||||
msgid "(db provides)"
|
||||
msgstr "%s: %-45s SI (oferecidos pelo db)\n"
|
||||
|
||||
#: lib/depends.c:796
|
||||
#: lib/depends.c:793
|
||||
#, fuzzy
|
||||
msgid "(db package)"
|
||||
msgstr "nenhum pacote\n"
|
||||
|
||||
#: lib/depends.c:835
|
||||
#: lib/depends.c:832
|
||||
#, fuzzy, c-format
|
||||
msgid "%9s: (%s, %s) added to Depends cache.\n"
|
||||
msgstr "%s: (%s, %s) adicionado à cache de dependências.\n"
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#, fuzzy
|
||||
msgid "NO "
|
||||
msgstr "NÃO-OK"
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1178
|
||||
#: lib/depends.c:1175
|
||||
#, fuzzy, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr "a remover o %s-%s-%s \"%s\" das relações do tsort.\n"
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1423
|
||||
#: lib/depends.c:1420
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr "=========== a guardar as relações do tsort\n"
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1499
|
||||
#: lib/depends.c:1496
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1576
|
||||
#: lib/depends.c:1573
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr "========== só os sucessores (ordem de apresentação)\n"
|
||||
|
||||
#: lib/depends.c:1636
|
||||
#: lib/depends.c:1633
|
||||
msgid "LOOP:\n"
|
||||
msgstr "CICLO:\n"
|
||||
|
||||
#: lib/depends.c:1673
|
||||
#: lib/depends.c:1670
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr "========== a prosseguir o tsort ...\n"
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1678
|
||||
#: lib/depends.c:1675
|
||||
#, c-format
|
||||
msgid "rpmdepOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
|
38
po/pt_BR.po
38
po/pt_BR.po
|
@ -4,7 +4,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2001-11-16 14:15-0500\n"
|
||||
"POT-Creation-Date: 2001-11-16 15:03-0500\n"
|
||||
|
||||
#: build.c:36
|
||||
#, fuzzy
|
||||
|
@ -1578,87 +1578,87 @@ msgid " failed - "
|
|||
msgstr "Construo falhou.\n"
|
||||
|
||||
# , c-format
|
||||
#: lib/depends.c:106
|
||||
#: lib/depends.c:103
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr "No consegui abrir: %s\n"
|
||||
|
||||
#: lib/depends.c:421
|
||||
#: lib/depends.c:418
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr "no foi passado pacote para instalao"
|
||||
|
||||
#: lib/depends.c:709
|
||||
#: lib/depends.c:706
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:734
|
||||
#: lib/depends.c:731
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:750
|
||||
#: lib/depends.c:747
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr ""
|
||||
|
||||
# , c-format
|
||||
#: lib/depends.c:771
|
||||
#: lib/depends.c:768
|
||||
#, fuzzy
|
||||
msgid "(db files)"
|
||||
msgstr "No consegui abrir: %s\n"
|
||||
|
||||
#: lib/depends.c:783
|
||||
#: lib/depends.c:780
|
||||
msgid "(db provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:796
|
||||
#: lib/depends.c:793
|
||||
#, fuzzy
|
||||
msgid "(db package)"
|
||||
msgstr "pesquise todos os pacotes"
|
||||
|
||||
#: lib/depends.c:835
|
||||
#: lib/depends.c:832
|
||||
#, c-format
|
||||
msgid "%9s: (%s, %s) added to Depends cache.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "NO "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
# , c-format
|
||||
#: lib/depends.c:1178
|
||||
#: lib/depends.c:1175
|
||||
#, fuzzy, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr "No consegui abrir: %s\n"
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1423
|
||||
#: lib/depends.c:1420
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1499
|
||||
#: lib/depends.c:1496
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1576
|
||||
#: lib/depends.c:1573
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1636
|
||||
#: lib/depends.c:1633
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1673
|
||||
#: lib/depends.c:1670
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1678
|
||||
#: lib/depends.c:1675
|
||||
#, c-format
|
||||
msgid "rpmdepOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
|
38
po/ro.po
38
po/ro.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2001-11-16 14:15-0500\n"
|
||||
"POT-Creation-Date: 2001-11-16 15:03-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"
|
||||
|
@ -1405,83 +1405,83 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:106
|
||||
#: lib/depends.c:103
|
||||
#, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:421
|
||||
#: lib/depends.c:418
|
||||
#, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:709
|
||||
#: lib/depends.c:706
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:734
|
||||
#: lib/depends.c:731
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:750
|
||||
#: lib/depends.c:747
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:771
|
||||
#: lib/depends.c:768
|
||||
msgid "(db files)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:783
|
||||
#: lib/depends.c:780
|
||||
msgid "(db provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:796
|
||||
#: lib/depends.c:793
|
||||
msgid "(db package)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:835
|
||||
#: lib/depends.c:832
|
||||
#, c-format
|
||||
msgid "%9s: (%s, %s) added to Depends cache.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "NO "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1178
|
||||
#: lib/depends.c:1175
|
||||
#, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr ""
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1423
|
||||
#: lib/depends.c:1420
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1499
|
||||
#: lib/depends.c:1496
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1576
|
||||
#: lib/depends.c:1573
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1636
|
||||
#: lib/depends.c:1633
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1673
|
||||
#: lib/depends.c:1670
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1678
|
||||
#: lib/depends.c:1675
|
||||
#, c-format
|
||||
msgid "rpmdepOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
|
38
po/rpm.pot
38
po/rpm.pot
|
@ -6,7 +6,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2001-11-16 14:15-0500\n"
|
||||
"POT-Creation-Date: 2001-11-16 15:03-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"
|
||||
|
@ -1410,83 +1410,83 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:106
|
||||
#: lib/depends.c:103
|
||||
#, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:421
|
||||
#: lib/depends.c:418
|
||||
#, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:709
|
||||
#: lib/depends.c:706
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:734
|
||||
#: lib/depends.c:731
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:750
|
||||
#: lib/depends.c:747
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:771
|
||||
#: lib/depends.c:768
|
||||
msgid "(db files)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:783
|
||||
#: lib/depends.c:780
|
||||
msgid "(db provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:796
|
||||
#: lib/depends.c:793
|
||||
msgid "(db package)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:835
|
||||
#: lib/depends.c:832
|
||||
#, c-format
|
||||
msgid "%9s: (%s, %s) added to Depends cache.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "NO "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1178
|
||||
#: lib/depends.c:1175
|
||||
#, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr ""
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1423
|
||||
#: lib/depends.c:1420
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1499
|
||||
#: lib/depends.c:1496
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1576
|
||||
#: lib/depends.c:1573
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1636
|
||||
#: lib/depends.c:1633
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1673
|
||||
#: lib/depends.c:1670
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1678
|
||||
#: lib/depends.c:1675
|
||||
#, c-format
|
||||
msgid "rpmdepOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
|
38
po/ru.po
38
po/ru.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2001-11-16 14:15-0500\n"
|
||||
"POT-Creation-Date: 2001-11-16 15:03-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"
|
||||
|
@ -1441,90 +1441,90 @@ msgstr "
|
|||
msgid " failed - "
|
||||
msgstr "ÎÅ ÕÄÁÌÏÓØ - "
|
||||
|
||||
#: lib/depends.c:106
|
||||
#: lib/depends.c:103
|
||||
#, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ ÂÁÚÕ ÄÁÎÎÙÈ Packages × %s\n"
|
||||
|
||||
#: lib/depends.c:421
|
||||
#: lib/depends.c:418
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr "ÐÁËÅÔ %s ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ"
|
||||
|
||||
#: lib/depends.c:709
|
||||
#: lib/depends.c:706
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:734
|
||||
#: lib/depends.c:731
|
||||
#, fuzzy
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr "%s: %-45s YES (rpmrc provides)\n"
|
||||
|
||||
#: lib/depends.c:750
|
||||
#: lib/depends.c:747
|
||||
#, fuzzy
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr "%s: %-45s YES (rpmlib provides)\n"
|
||||
|
||||
#: lib/depends.c:771
|
||||
#: lib/depends.c:768
|
||||
#, fuzzy
|
||||
msgid "(db files)"
|
||||
msgstr "ÎÅ×ÅÒÎÙÊ ÆÁÊÌ ÂÁÚÙ ÄÁÎÎÙÈ %s\n"
|
||||
|
||||
#: lib/depends.c:783
|
||||
#: lib/depends.c:780
|
||||
#, fuzzy
|
||||
msgid "(db provides)"
|
||||
msgstr "%s: %-45s YES (db provides)\n"
|
||||
|
||||
#: lib/depends.c:796
|
||||
#: lib/depends.c:793
|
||||
#, fuzzy
|
||||
msgid "(db package)"
|
||||
msgstr "ÎÅÔ ÐÁËÅÔÏ×\n"
|
||||
|
||||
#: lib/depends.c:835
|
||||
#: lib/depends.c:832
|
||||
#, fuzzy, c-format
|
||||
msgid "%9s: (%s, %s) added to Depends cache.\n"
|
||||
msgstr "%s: (%s, %s) ÄÏÂÁ×ÌÅÎÏ × ËÅÛ ÚÁ×ÉÓÉÍÏÓÔÅÊ\n"
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "NO "
|
||||
msgstr "îåT"
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "YES"
|
||||
msgstr "äá"
|
||||
|
||||
#: lib/depends.c:1178
|
||||
#: lib/depends.c:1175
|
||||
#, fuzzy, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr "ÕÄÁÌÑÅÔÓÑ %s-%s-%s \"%s\" ÉÚ ÕÐÏÒÑÄÏÞÅÎÎÙÈ ÚÁ×ÉÓÉÍÏÓÔÅÊ.\n"
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1423
|
||||
#: lib/depends.c:1420
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr "========== ÚÁÐÉÓØ ÕÐÏÒÑÄÏÞÅÎÎÙÈ ÚÁ×ÉÓÉÍÏÓÔÅÊ\n"
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1499
|
||||
#: lib/depends.c:1496
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
|
||||
msgstr ""
|
||||
"========== ÓÏÒÔÉÒÏ×ËÁ ÐÁËÅÔÏ× (ÏÞÅÒÅÄÎÏÓÔØ, #predecessors, #succesors, "
|
||||
"ÇÌÕÂÉÎÁ)\n"
|
||||
|
||||
#: lib/depends.c:1576
|
||||
#: lib/depends.c:1573
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr "========== ÔÏÌØËÏ ÐÏÓÌÅÄÏ×ÁÔÅÌÉ (× ÐÏÒÑÄËÅ ÐÒÅÄÓÔÁ×ÌÅÎÉÑ)\n"
|
||||
|
||||
#: lib/depends.c:1636
|
||||
#: lib/depends.c:1633
|
||||
msgid "LOOP:\n"
|
||||
msgstr "ãéëì:\n"
|
||||
|
||||
#: lib/depends.c:1673
|
||||
#: lib/depends.c:1670
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr "========== ÐÒÏÄÏÌÖÅÎÉÅ ÕÐÏÒÑÄÏÞÅÎÉÑ ...\n"
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1678
|
||||
#: lib/depends.c:1675
|
||||
#, c-format
|
||||
msgid "rpmdepOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
|
38
po/sk.po
38
po/sk.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2001-11-16 14:15-0500\n"
|
||||
"POT-Creation-Date: 2001-11-16 15:03-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"
|
||||
|
@ -1464,89 +1464,89 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr " zlyhalo - "
|
||||
|
||||
#: lib/depends.c:106
|
||||
#: lib/depends.c:103
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr "nie je mo¾né otvori» %s/packages.rpm\n"
|
||||
|
||||
#: lib/depends.c:421
|
||||
#: lib/depends.c:418
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr "balík %s nie je nain¹talovaný\n"
|
||||
|
||||
#: lib/depends.c:709
|
||||
#: lib/depends.c:706
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:734
|
||||
#: lib/depends.c:731
|
||||
#, fuzzy
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n"
|
||||
|
||||
#: lib/depends.c:750
|
||||
#: lib/depends.c:747
|
||||
#, fuzzy
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n"
|
||||
|
||||
#: lib/depends.c:771
|
||||
#: lib/depends.c:768
|
||||
#, fuzzy
|
||||
msgid "(db files)"
|
||||
msgstr "chybný stav súboru: %s"
|
||||
|
||||
#: lib/depends.c:783
|
||||
#: lib/depends.c:780
|
||||
#, fuzzy
|
||||
msgid "(db provides)"
|
||||
msgstr "Poskytuje:"
|
||||
|
||||
#: lib/depends.c:796
|
||||
#: lib/depends.c:793
|
||||
#, fuzzy
|
||||
msgid "(db package)"
|
||||
msgstr "nájdených %d balíkov\n"
|
||||
|
||||
#: lib/depends.c:835
|
||||
#: lib/depends.c:832
|
||||
#, fuzzy, c-format
|
||||
msgid "%9s: (%s, %s) added to Depends cache.\n"
|
||||
msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n"
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#, fuzzy
|
||||
msgid "NO "
|
||||
msgstr "NIE JE V PORIADKU"
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1178
|
||||
#: lib/depends.c:1175
|
||||
#, fuzzy, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr "odstraòuje sa index skupín\n"
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1423
|
||||
#: lib/depends.c:1420
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1499
|
||||
#: lib/depends.c:1496
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1576
|
||||
#: lib/depends.c:1573
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1636
|
||||
#: lib/depends.c:1633
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1673
|
||||
#: lib/depends.c:1670
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1678
|
||||
#: lib/depends.c:1675
|
||||
#, c-format
|
||||
msgid "rpmdepOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
|
40
po/sl.po
40
po/sl.po
|
@ -1,12 +1,12 @@
|
|||
# -*- mode:po; coding:iso-latin-2; -*- Slovenian messages for Redhat pkg. mngr.
|
||||
# Copyright (C) 2000 Free Software Foundation, Inc.
|
||||
# Primo¾ Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>, 2000.
|
||||
# $Id: sl.po,v 1.206 2001/11/16 19:27:09 jbj Exp $
|
||||
# $Id: sl.po,v 1.207 2001/11/16 20:26:27 jbj Exp $
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2001-11-16 14:15-0500\n"
|
||||
"POT-Creation-Date: 2001-11-16 15:03-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"
|
||||
|
@ -1465,89 +1465,89 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr " neuspe¹no - "
|
||||
|
||||
#: lib/depends.c:106
|
||||
#: lib/depends.c:103
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr "zbirko podatkov paketov ni mo¾no odpreti v %s\n"
|
||||
|
||||
#: lib/depends.c:421
|
||||
#: lib/depends.c:418
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr "paket %s-%s-%s je ¾e name¹èen"
|
||||
|
||||
#: lib/depends.c:709
|
||||
#: lib/depends.c:706
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:734
|
||||
#: lib/depends.c:731
|
||||
#, fuzzy
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr "%s: %-45s DA (rpmrc ponudbe)\n"
|
||||
|
||||
#: lib/depends.c:750
|
||||
#: lib/depends.c:747
|
||||
#, fuzzy
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr "%s: %-45s DA (rpmlib ponudbe)\n"
|
||||
|
||||
#: lib/depends.c:771
|
||||
#: lib/depends.c:768
|
||||
#, fuzzy
|
||||
msgid "(db files)"
|
||||
msgstr "po¹kodovana zbirka podatkov %s"
|
||||
|
||||
#: lib/depends.c:783
|
||||
#: lib/depends.c:780
|
||||
#, fuzzy
|
||||
msgid "(db provides)"
|
||||
msgstr "%s: %-45s DA (db ponudbe)\n"
|
||||
|
||||
#: lib/depends.c:796
|
||||
#: lib/depends.c:793
|
||||
#, fuzzy
|
||||
msgid "(db package)"
|
||||
msgstr "ni paketov\n"
|
||||
|
||||
#: lib/depends.c:835
|
||||
#: lib/depends.c:832
|
||||
#, fuzzy, c-format
|
||||
msgid "%9s: (%s, %s) added to Depends cache.\n"
|
||||
msgstr "%s: (%s, %s) dodano v predpomnilnik Depends.\n"
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#, fuzzy
|
||||
msgid "NO "
|
||||
msgstr "NI DOBRO"
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1178
|
||||
#: lib/depends.c:1175
|
||||
#, fuzzy, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr "odstranjujemo seznam skupin\n"
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1423
|
||||
#: lib/depends.c:1420
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1499
|
||||
#: lib/depends.c:1496
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1576
|
||||
#: lib/depends.c:1573
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1636
|
||||
#: lib/depends.c:1633
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1673
|
||||
#: lib/depends.c:1670
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1678
|
||||
#: lib/depends.c:1675
|
||||
#, c-format
|
||||
msgid "rpmdepOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
|
38
po/sr.po
38
po/sr.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2001-11-16 14:15-0500\n"
|
||||
"POT-Creation-Date: 2001-11-16 15:03-0500\n"
|
||||
"Content-Type: text/plain; charset=\n"
|
||||
"Date: 1998-05-02 21:41:47-0400\n"
|
||||
|
||||
|
@ -1449,88 +1449,88 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr "PGP omanuo"
|
||||
|
||||
#: lib/depends.c:106
|
||||
#: lib/depends.c:103
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr "gre¹ka: ne mogu da otvorim %s%s/packages.rpm\n"
|
||||
|
||||
#: lib/depends.c:421
|
||||
#: lib/depends.c:418
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr "paket %s nije instaliran\n"
|
||||
|
||||
#: lib/depends.c:709
|
||||
#: lib/depends.c:706
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:734
|
||||
#: lib/depends.c:731
|
||||
#, fuzzy
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr "datoteka %s ne pripada nijednom paketu\n"
|
||||
|
||||
#: lib/depends.c:750
|
||||
#: lib/depends.c:747
|
||||
#, fuzzy
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr "datoteka %s ne pripada nijednom paketu\n"
|
||||
|
||||
#: lib/depends.c:771
|
||||
#: lib/depends.c:768
|
||||
#, fuzzy
|
||||
msgid "(db files)"
|
||||
msgstr "neuspelo otvaranje %s: %s"
|
||||
|
||||
#: lib/depends.c:783
|
||||
#: lib/depends.c:780
|
||||
#, fuzzy
|
||||
msgid "(db provides)"
|
||||
msgstr "datoteka %s ne pripada nijednom paketu\n"
|
||||
|
||||
#: lib/depends.c:796
|
||||
#: lib/depends.c:793
|
||||
#, fuzzy
|
||||
msgid "(db package)"
|
||||
msgstr "upit nad svim paketima"
|
||||
|
||||
#: lib/depends.c:835
|
||||
#: lib/depends.c:832
|
||||
#, fuzzy, c-format
|
||||
msgid "%9s: (%s, %s) added to Depends cache.\n"
|
||||
msgstr "datoteka %s ne pripada nijednom paketu\n"
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "NO "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1178
|
||||
#: lib/depends.c:1175
|
||||
#, fuzzy, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr "gre¹ka uklanjanja sloga %s u %s"
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1423
|
||||
#: lib/depends.c:1420
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1499
|
||||
#: lib/depends.c:1496
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1576
|
||||
#: lib/depends.c:1573
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1636
|
||||
#: lib/depends.c:1633
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1673
|
||||
#: lib/depends.c:1670
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1678
|
||||
#: lib/depends.c:1675
|
||||
#, c-format
|
||||
msgid "rpmdepOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
|
38
po/sv.po
38
po/sv.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2001-11-16 14:15-0500\n"
|
||||
"POT-Creation-Date: 2001-11-16 15:03-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"
|
||||
|
@ -1426,89 +1426,89 @@ msgstr "Ingen arkivfilen i huvud"
|
|||
msgid " failed - "
|
||||
msgstr " misslyckades - "
|
||||
|
||||
#: lib/depends.c:106
|
||||
#: lib/depends.c:103
|
||||
#, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr "kan inte öppna paketdatabas i %s\n"
|
||||
|
||||
#: lib/depends.c:421
|
||||
#: lib/depends.c:418
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr "paket %s är redan installerat"
|
||||
|
||||
#: lib/depends.c:709
|
||||
#: lib/depends.c:706
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:734
|
||||
#: lib/depends.c:731
|
||||
#, fuzzy
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr "%s: %-45s JA (rpmrc tillhandahåller)\n"
|
||||
|
||||
#: lib/depends.c:750
|
||||
#: lib/depends.c:747
|
||||
#, fuzzy
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr "%s: %-45s JA (rpmlib tillhandahåller)\n"
|
||||
|
||||
#: lib/depends.c:771
|
||||
#: lib/depends.c:768
|
||||
#, fuzzy
|
||||
msgid "(db files)"
|
||||
msgstr "felaktig db-fil %s\n"
|
||||
|
||||
#: lib/depends.c:783
|
||||
#: lib/depends.c:780
|
||||
#, fuzzy
|
||||
msgid "(db provides)"
|
||||
msgstr "%s: %-45s JA (db-tillhandahållande)\n"
|
||||
|
||||
#: lib/depends.c:796
|
||||
#: lib/depends.c:793
|
||||
#, fuzzy
|
||||
msgid "(db package)"
|
||||
msgstr "inga paket\n"
|
||||
|
||||
#: lib/depends.c:835
|
||||
#: lib/depends.c:832
|
||||
#, fuzzy, c-format
|
||||
msgid "%9s: (%s, %s) added to Depends cache.\n"
|
||||
msgstr "%s: (%s, %s) tillagt till beroendecachen.\n"
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "NO "
|
||||
msgstr "NEJ "
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "YES"
|
||||
msgstr "JA"
|
||||
|
||||
#: lib/depends.c:1178
|
||||
#: lib/depends.c:1175
|
||||
#, fuzzy, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr "tar bort %s-%s-%s \"%s\" från tsort-relationer.\n"
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1423
|
||||
#: lib/depends.c:1420
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr "========== noterar alla relationer\n"
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1499
|
||||
#: lib/depends.c:1496
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
|
||||
msgstr ""
|
||||
"========== tsort:erar paket (ordning, #föregångare, #efterföljare, djup)\n"
|
||||
|
||||
#: lib/depends.c:1576
|
||||
#: lib/depends.c:1573
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr "========== endast efterföljare (presentationsordning)\n"
|
||||
|
||||
#: lib/depends.c:1636
|
||||
#: lib/depends.c:1633
|
||||
msgid "LOOP:\n"
|
||||
msgstr "LOOP:\n"
|
||||
|
||||
#: lib/depends.c:1673
|
||||
#: lib/depends.c:1670
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr "========== fortsätter med tsort ...\n"
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1678
|
||||
#: lib/depends.c:1675
|
||||
#, c-format
|
||||
msgid "rpmdepOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
|
38
po/tr.po
38
po/tr.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2001-11-16 14:15-0500\n"
|
||||
"POT-Creation-Date: 2001-11-16 15:03-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"
|
||||
|
@ -1446,89 +1446,89 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr " baþarýsýz - "
|
||||
|
||||
#: lib/depends.c:106
|
||||
#: lib/depends.c:103
|
||||
#, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr "%s de Paket veritabaný açýlamadý\n"
|
||||
|
||||
#: lib/depends.c:421
|
||||
#: lib/depends.c:418
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr "%s zaten kurulu"
|
||||
|
||||
#: lib/depends.c:709
|
||||
#: lib/depends.c:706
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:734
|
||||
#: lib/depends.c:731
|
||||
#, fuzzy
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr "%s: %-45s EVET (rpmrc saðlar)\n"
|
||||
|
||||
#: lib/depends.c:750
|
||||
#: lib/depends.c:747
|
||||
#, fuzzy
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr "%s: %-45s EVET (rpmlib saðlar)\n"
|
||||
|
||||
#: lib/depends.c:771
|
||||
#: lib/depends.c:768
|
||||
#, fuzzy
|
||||
msgid "(db files)"
|
||||
msgstr "db dosyasý %s hatalý\n"
|
||||
|
||||
#: lib/depends.c:783
|
||||
#: lib/depends.c:780
|
||||
#, fuzzy
|
||||
msgid "(db provides)"
|
||||
msgstr "%s: %-45s EVET (db saðlar)\n"
|
||||
|
||||
#: lib/depends.c:796
|
||||
#: lib/depends.c:793
|
||||
#, fuzzy
|
||||
msgid "(db package)"
|
||||
msgstr "paket yok\n"
|
||||
|
||||
#: lib/depends.c:835
|
||||
#: lib/depends.c:832
|
||||
#, fuzzy, c-format
|
||||
msgid "%9s: (%s, %s) added to Depends cache.\n"
|
||||
msgstr "%s: (%s, %s) Baðýmlýlar alanýna eklendi.\n"
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "NO "
|
||||
msgstr "HAYIR "
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "YES"
|
||||
msgstr "EVET"
|
||||
|
||||
#: lib/depends.c:1178
|
||||
#: lib/depends.c:1175
|
||||
#, fuzzy, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr "tsort baðýntýlarýndan %s-%s-%s \"%s\" kaldýrýlýyor\n"
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1423
|
||||
#: lib/depends.c:1420
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr "========== tsort baðýntýlarý kaydediliyor\n"
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1499
|
||||
#: lib/depends.c:1496
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
|
||||
msgstr ""
|
||||
"========== paketler tsort'lanýyor (sýra, #öncüller, #ardýllar, derinlik)\n"
|
||||
|
||||
#: lib/depends.c:1576
|
||||
#: lib/depends.c:1573
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr "========== sadece ardýllar (sunum sýrasý)\n"
|
||||
|
||||
#: lib/depends.c:1636
|
||||
#: lib/depends.c:1633
|
||||
msgid "LOOP:\n"
|
||||
msgstr "ÇEVRÝM:\n"
|
||||
|
||||
#: lib/depends.c:1673
|
||||
#: lib/depends.c:1670
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr "========== tsort sürüyor ...\n"
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1678
|
||||
#: lib/depends.c:1675
|
||||
#, c-format
|
||||
msgid "rpmdepOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
|
38
po/uk.po
38
po/uk.po
|
@ -6,7 +6,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2001-11-16 14:15-0500\n"
|
||||
"POT-Creation-Date: 2001-11-16 15:03-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"
|
||||
|
@ -1410,83 +1410,83 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:106
|
||||
#: lib/depends.c:103
|
||||
#, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:421
|
||||
#: lib/depends.c:418
|
||||
#, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:709
|
||||
#: lib/depends.c:706
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:734
|
||||
#: lib/depends.c:731
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:750
|
||||
#: lib/depends.c:747
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:771
|
||||
#: lib/depends.c:768
|
||||
msgid "(db files)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:783
|
||||
#: lib/depends.c:780
|
||||
msgid "(db provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:796
|
||||
#: lib/depends.c:793
|
||||
msgid "(db package)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:835
|
||||
#: lib/depends.c:832
|
||||
#, c-format
|
||||
msgid "%9s: (%s, %s) added to Depends cache.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "NO "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1178
|
||||
#: lib/depends.c:1175
|
||||
#, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr ""
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1423
|
||||
#: lib/depends.c:1420
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1499
|
||||
#: lib/depends.c:1496
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1576
|
||||
#: lib/depends.c:1573
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1636
|
||||
#: lib/depends.c:1633
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1673
|
||||
#: lib/depends.c:1670
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1678
|
||||
#: lib/depends.c:1675
|
||||
#, c-format
|
||||
msgid "rpmdepOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
|
38
po/wa.po
38
po/wa.po
|
@ -6,7 +6,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2001-11-16 14:15-0500\n"
|
||||
"POT-Creation-Date: 2001-11-16 15:03-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"
|
||||
|
@ -1410,83 +1410,83 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:106
|
||||
#: lib/depends.c:103
|
||||
#, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:421
|
||||
#: lib/depends.c:418
|
||||
#, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:709
|
||||
#: lib/depends.c:706
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:734
|
||||
#: lib/depends.c:731
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:750
|
||||
#: lib/depends.c:747
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:771
|
||||
#: lib/depends.c:768
|
||||
msgid "(db files)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:783
|
||||
#: lib/depends.c:780
|
||||
msgid "(db provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:796
|
||||
#: lib/depends.c:793
|
||||
msgid "(db package)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:835
|
||||
#: lib/depends.c:832
|
||||
#, c-format
|
||||
msgid "%9s: (%s, %s) added to Depends cache.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "NO "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1178
|
||||
#: lib/depends.c:1175
|
||||
#, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr ""
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1423
|
||||
#: lib/depends.c:1420
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1499
|
||||
#: lib/depends.c:1496
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1576
|
||||
#: lib/depends.c:1573
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1636
|
||||
#: lib/depends.c:1633
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1673
|
||||
#: lib/depends.c:1670
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1678
|
||||
#: lib/depends.c:1675
|
||||
#, c-format
|
||||
msgid "rpmdepOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
|
38
po/zh.po
38
po/zh.po
|
@ -6,7 +6,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2001-11-16 14:15-0500\n"
|
||||
"POT-Creation-Date: 2001-11-16 15:03-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"
|
||||
|
@ -1410,83 +1410,83 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:106
|
||||
#: lib/depends.c:103
|
||||
#, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:421
|
||||
#: lib/depends.c:418
|
||||
#, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:709
|
||||
#: lib/depends.c:706
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:734
|
||||
#: lib/depends.c:731
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:750
|
||||
#: lib/depends.c:747
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:771
|
||||
#: lib/depends.c:768
|
||||
msgid "(db files)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:783
|
||||
#: lib/depends.c:780
|
||||
msgid "(db provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:796
|
||||
#: lib/depends.c:793
|
||||
msgid "(db package)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:835
|
||||
#: lib/depends.c:832
|
||||
#, c-format
|
||||
msgid "%9s: (%s, %s) added to Depends cache.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "NO "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1178
|
||||
#: lib/depends.c:1175
|
||||
#, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr ""
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1423
|
||||
#: lib/depends.c:1420
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1499
|
||||
#: lib/depends.c:1496
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1576
|
||||
#: lib/depends.c:1573
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1636
|
||||
#: lib/depends.c:1633
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1673
|
||||
#: lib/depends.c:1670
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1678
|
||||
#: lib/depends.c:1675
|
||||
#, c-format
|
||||
msgid "rpmdepOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2001-11-16 14:15-0500\n"
|
||||
"POT-Creation-Date: 2001-11-16 15:03-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"
|
||||
|
@ -1410,83 +1410,83 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:106
|
||||
#: lib/depends.c:103
|
||||
#, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:421
|
||||
#: lib/depends.c:418
|
||||
#, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:709
|
||||
#: lib/depends.c:706
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:734
|
||||
#: lib/depends.c:731
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:750
|
||||
#: lib/depends.c:747
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:771
|
||||
#: lib/depends.c:768
|
||||
msgid "(db files)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:783
|
||||
#: lib/depends.c:780
|
||||
msgid "(db provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:796
|
||||
#: lib/depends.c:793
|
||||
msgid "(db package)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:835
|
||||
#: lib/depends.c:832
|
||||
#, c-format
|
||||
msgid "%9s: (%s, %s) added to Depends cache.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "NO "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:837 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
#: lib/depends.c:834 lib/rpmds.c:407 lib/rpmds.c:566
|
||||
msgid "YES"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1178
|
||||
#: lib/depends.c:1175
|
||||
#, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr ""
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1423
|
||||
#: lib/depends.c:1420
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1499
|
||||
#: lib/depends.c:1496
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1576
|
||||
#: lib/depends.c:1573
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1636
|
||||
#: lib/depends.c:1633
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1673
|
||||
#: lib/depends.c:1670
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1678
|
||||
#: lib/depends.c:1675
|
||||
#, c-format
|
||||
msgid "rpmdepOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
|
Loading…
Reference in New Issue