- duplicate package checks with arch/os checks if colored.
- file conflict checks with colors. CVS patchset: 6013 CVS date: 2003/01/17 17:43:04
This commit is contained in:
parent
e5c6b0d28d
commit
f49f99df00
2
CHANGES
2
CHANGES
|
@ -109,6 +109,8 @@
|
|||
- file: *really* read elf64 notes correctly.
|
||||
- python: restore thread context on errorCB (#80744).
|
||||
- teach rpmquery to return "owning" package(s) in spite of alternatives.
|
||||
- duplicate package checks with arch/os checks if colored.
|
||||
- file conflict checks with colors.
|
||||
|
||||
4.0.4 -> 4.1:
|
||||
- loosely wire beecrypt library into rpm.
|
||||
|
|
|
@ -132,6 +132,9 @@ int rpmtsAddInstallElement(rpmts ts, Header h,
|
|||
int isSource;
|
||||
int duplicate = 0;
|
||||
rpmtsi pi; rpmte p;
|
||||
HGE_t hge = (HGE_t)headerGetEntryMinMemory;
|
||||
const char * arch;
|
||||
const char * os;
|
||||
rpmds add;
|
||||
rpmds obsoletes;
|
||||
alKey pkgKey; /* addedPackages key */
|
||||
|
@ -141,18 +144,33 @@ int rpmtsAddInstallElement(rpmts ts, Header h,
|
|||
int oc;
|
||||
|
||||
/*
|
||||
* Check for previously added versions with the same name.
|
||||
* Check for previously added versions with the same name and arch/os.
|
||||
* FIXME: only catches previously added, older packages.
|
||||
*/
|
||||
add = rpmdsThis(h, RPMTAG_REQUIRENAME, (RPMSENSE_EQUAL|RPMSENSE_LESS));
|
||||
arch = NULL;
|
||||
xx = hge(h, RPMTAG_ARCH, NULL, (void **)&arch, NULL);
|
||||
os = NULL;
|
||||
xx = hge(h, RPMTAG_OS, NULL, (void **)&os, NULL);
|
||||
pkgKey = RPMAL_NOMATCH;
|
||||
for (pi = rpmtsiInit(ts), oc = 0; (p = rpmtsiNext(pi, 0)) != NULL; oc++) {
|
||||
const char * parch;
|
||||
const char * pos;
|
||||
rpmds this;
|
||||
|
||||
/* XXX Only added packages need be checked for dupes. */
|
||||
if (rpmteType(p) == TR_REMOVED)
|
||||
continue;
|
||||
|
||||
if (tscolor) {
|
||||
if (arch == NULL || (parch = rpmteA(p)) == NULL)
|
||||
continue;
|
||||
if (os == NULL || (pos = rpmteO(p)) == NULL)
|
||||
continue;
|
||||
if (strcmp(arch, parch) || strcmp(os, pos))
|
||||
continue;
|
||||
}
|
||||
|
||||
if ((this = rpmteDS(p, RPMTAG_NAME)) == NULL)
|
||||
continue; /* XXX can't happen */
|
||||
|
||||
|
|
|
@ -1405,6 +1405,7 @@ rpmpsm rpmpsmNew(rpmts ts, rpmte te, rpmfi fi)
|
|||
rpmRC rpmpsmStage(rpmpsm psm, pkgStage stage)
|
||||
{
|
||||
const rpmts ts = psm->ts;
|
||||
uint_32 tscolor = rpmtsColor(ts);
|
||||
rpmfi fi = psm->fi;
|
||||
HGE_t hge = fi->hge;
|
||||
HFD_t hfd = (fi->hfd ? fi->hfd : headerFreeData);
|
||||
|
@ -1445,8 +1446,14 @@ assert(psm->mi == NULL);
|
|||
rpmteV(psm->te));
|
||||
xx = rpmdbSetIteratorRE(psm->mi, RPMTAG_RELEASE, RPMMIRE_DEFAULT,
|
||||
rpmteR(psm->te));
|
||||
if (tscolor) {
|
||||
xx = rpmdbSetIteratorRE(psm->mi, RPMTAG_ARCH, RPMMIRE_DEFAULT,
|
||||
rpmteA(psm->te));
|
||||
xx = rpmdbSetIteratorRE(psm->mi, RPMTAG_OS, RPMMIRE_DEFAULT,
|
||||
rpmteO(psm->te));
|
||||
}
|
||||
|
||||
while ((psm->oh = rpmdbNextIterator(psm->mi))) {
|
||||
while ((psm->oh = rpmdbNextIterator(psm->mi)) != NULL) {
|
||||
fi->record = rpmdbGetIteratorOffset(psm->mi);
|
||||
psm->oh = NULL;
|
||||
/*@loopbreak@*/ break;
|
||||
|
|
17
lib/query.c
17
lib/query.c
|
@ -123,14 +123,17 @@ static inline /*@null@*/ const char * queryHeader(Header h, const char * qfmt)
|
|||
return str;
|
||||
}
|
||||
|
||||
int showQueryPackage(QVA_t qva, /*@unused@*/ rpmts ts, Header h)
|
||||
int showQueryPackage(QVA_t qva, rpmts ts, Header h)
|
||||
{
|
||||
uint_32 tscolor = rpmtsColor(ts);
|
||||
HGE_t hge = (HGE_t)headerGetEntryMinMemory;
|
||||
int scareMem = 1;
|
||||
rpmfi fi = NULL;
|
||||
char * t, * te;
|
||||
char * prefix = NULL;
|
||||
int rc = 0; /* XXX FIXME: need real return code */
|
||||
int nonewline = 0;
|
||||
int xx;
|
||||
int i;
|
||||
|
||||
te = t = xmalloc(BUFSIZ);
|
||||
|
@ -140,12 +143,14 @@ int showQueryPackage(QVA_t qva, /*@unused@*/ rpmts ts, Header h)
|
|||
|
||||
if (!(qva->qva_flags & _QUERY_FOR_BITS) && qva->qva_queryFormat == NULL)
|
||||
{
|
||||
const char * name, * version, * release;
|
||||
(void) headerNVR(h, &name, &version, &release);
|
||||
const char * n, * v, * r, * a;
|
||||
(void) headerNEVRA(h, &n, NULL, &v, &r, &a);
|
||||
/*@-boundswrite@*/
|
||||
te = stpcpy(te, name);
|
||||
te = stpcpy( stpcpy(te, "-"), version);
|
||||
te = stpcpy( stpcpy(te, "-"), release);
|
||||
te = stpcpy(te, n);
|
||||
te = stpcpy( stpcpy(te, "-"), v);
|
||||
te = stpcpy( stpcpy(te, "-"), r);
|
||||
if (tscolor)
|
||||
te = stpcpy( stpcpy(te, "."), a);
|
||||
/*@=boundswrite@*/
|
||||
goto exit;
|
||||
}
|
||||
|
|
24
lib/rpmlib.h
24
lib/rpmlib.h
|
@ -112,9 +112,9 @@ typedef /*@abstract@*/ struct _rpmdbMatchIterator * rpmdbMatchIterator;
|
|||
/** \ingroup header
|
||||
* Return name, version, release strings from header.
|
||||
* @param h header
|
||||
* @retval np address of name pointer (or NULL)
|
||||
* @retval vp address of version pointer (or NULL)
|
||||
* @retval rp address of release pointer (or NULL)
|
||||
* @retval *np name pointer (or NULL)
|
||||
* @retval *vp version pointer (or NULL)
|
||||
* @retval *rp release pointer (or NULL)
|
||||
* @return 0 always
|
||||
*/
|
||||
int headerNVR(Header h,
|
||||
|
@ -123,6 +123,24 @@ int headerNVR(Header h,
|
|||
/*@null@*/ /*@out@*/ const char ** rp)
|
||||
/*@modifies *np, *vp, *rp @*/;
|
||||
|
||||
/** \ingroup header
|
||||
* Return name, epoch, version, release, arch strings from header.
|
||||
* @param h header
|
||||
* @retval *np name pointer (or NULL)
|
||||
* @retval *ep epoch pointer (or NULL)
|
||||
* @retval *vp version pointer (or NULL)
|
||||
* @retval *rp release pointer (or NULL)
|
||||
* @retval *ap arch pointer (or NULL)
|
||||
* @return 0 always
|
||||
*/
|
||||
int headerNEVRA(Header h,
|
||||
/*@null@*/ /*@out@*/ const char ** np,
|
||||
/*@null@*/ /*@out@*/ /*@unused@*/ const char ** ep,
|
||||
/*@null@*/ /*@out@*/ const char ** vp,
|
||||
/*@null@*/ /*@out@*/ const char ** rp,
|
||||
/*@null@*/ /*@out@*/ const char ** ap)
|
||||
/*@modifies *np, *vp, *rp, *ap @*/;
|
||||
|
||||
/** \ingroup header
|
||||
* Translate and merge legacy signature tags into header.
|
||||
* @todo Remove headerSort() through headerInitIterator() modifies sig.
|
||||
|
|
14
lib/rpmte.c
14
lib/rpmte.c
|
@ -64,6 +64,7 @@ static void delTE(rpmte p)
|
|||
p->epoch = _free(p->epoch);
|
||||
p->name = _free(p->name);
|
||||
p->NEVR = _free(p->NEVR);
|
||||
p->NEVRA = _free(p->NEVRA);
|
||||
|
||||
p->h = headerFree(p->h);
|
||||
|
||||
|
@ -95,6 +96,8 @@ static void addTE(rpmts ts, rpmte p, Header h,
|
|||
rpmte savep;
|
||||
int_32 * ep;
|
||||
const char * arch, * os;
|
||||
char * t;
|
||||
size_t nb;
|
||||
int xx;
|
||||
|
||||
p->NEVR = hGetNEVR(h, NULL);
|
||||
|
@ -111,6 +114,12 @@ static void addTE(rpmts ts, rpmte p, Header h,
|
|||
xx = hge(h, RPMTAG_OS, NULL, (void **)&os, NULL);
|
||||
p->os = (os != NULL ? xstrdup(os) : NULL);
|
||||
|
||||
nb = strlen(p->NEVR) + 1;
|
||||
if (p->arch)
|
||||
nb += strlen(arch) + 1;
|
||||
p->NEVRA = t = xmalloc(nb);
|
||||
(void) stpcpy( stpcpy( stpcpy(t, p->NEVR), "."), p->arch);
|
||||
|
||||
ep = NULL;
|
||||
xx = hge(h, RPMTAG_EPOCH, NULL, (void **)&ep, NULL);
|
||||
/*@-branchstate@*/
|
||||
|
@ -384,6 +393,11 @@ const char * rpmteNEVR(rpmte te)
|
|||
return (te != NULL ? te->NEVR : NULL);
|
||||
}
|
||||
|
||||
const char * rpmteNEVRA(rpmte te)
|
||||
{
|
||||
return (te != NULL ? te->NEVRA : NULL);
|
||||
}
|
||||
|
||||
FD_t rpmteFd(rpmte te)
|
||||
{
|
||||
/*@-compdef -refcounttrans -retalias -retexpose -usereleased @*/
|
||||
|
|
11
lib/rpmte.h
11
lib/rpmte.h
|
@ -63,6 +63,8 @@ struct rpmte_s {
|
|||
Header h; /*!< Package header. */
|
||||
/*@only@*/
|
||||
const char * NEVR; /*!< Package name-version-release. */
|
||||
/*@only@*/
|
||||
const char * NEVRA; /*!< Package name-version-release.arch. */
|
||||
/*@owned@*/
|
||||
const char * name; /*!< Name: */
|
||||
/*@only@*/ /*@null@*/
|
||||
|
@ -408,6 +410,15 @@ int rpmteDBOffset(rpmte te)
|
|||
extern const char * rpmteNEVR(rpmte te)
|
||||
/*@*/;
|
||||
|
||||
/**
|
||||
* Retrieve name-version-release.arch string from transaction element.
|
||||
* @param te transaction element
|
||||
* @return name-version-release.arch string
|
||||
*/
|
||||
/*@observer@*/
|
||||
extern const char * rpmteNEVRA(rpmte te)
|
||||
/*@*/;
|
||||
|
||||
/**
|
||||
* Retrieve file handle from transaction element.
|
||||
* @param te transaction element
|
||||
|
|
21
lib/rpmts.c
21
lib/rpmts.c
|
@ -84,6 +84,27 @@ char * hGetNEVR(Header h, const char ** np)
|
|||
return NVR;
|
||||
}
|
||||
|
||||
uint_32 hGetColor(Header h)
|
||||
{
|
||||
HGE_t hge = (HGE_t)headerGetEntryMinMemory;
|
||||
uint_32 hcolor = 0;
|
||||
uint_32 * fcolors;
|
||||
int_32 ncolors;
|
||||
int i;
|
||||
|
||||
fcolors = NULL;
|
||||
ncolors = 0;
|
||||
if (hge(h, RPMTAG_FILECOLORS, NULL, (void **)&fcolors, &ncolors)
|
||||
&& fcolors != NULL && ncolors > 0)
|
||||
{
|
||||
for (i = 0; i < ncolors; i++)
|
||||
hcolor |= fcolors[i];
|
||||
}
|
||||
hcolor &= 0x0f;
|
||||
|
||||
return hcolor;
|
||||
}
|
||||
|
||||
rpmts XrpmtsUnlink(rpmts ts, const char * msg, const char * fn, unsigned ln)
|
||||
{
|
||||
/*@-modfilesys@*/
|
||||
|
|
|
@ -894,6 +894,14 @@ int rpmtsGetKeys(rpmts ts,
|
|||
/*@only@*/ char * hGetNEVR(Header h, /*@null@*/ /*@out@*/ const char ** np )
|
||||
/*@modifies *np @*/;
|
||||
|
||||
/**
|
||||
* Return header color.
|
||||
* @param h header
|
||||
* @return header color
|
||||
*/
|
||||
uint_32 hGetColor(Header h)
|
||||
/*@modifies h @*/;
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -215,6 +215,9 @@ static int handleInstInstalledFiles(const rpmts ts,
|
|||
/*@globals rpmGlobalMacroContext, fileSystem, internalState @*/
|
||||
/*@modifies ts, fi, rpmGlobalMacroContext, fileSystem, internalState @*/
|
||||
{
|
||||
uint_32 tscolor = rpmtsColor(ts);
|
||||
uint_32 otecolor, tecolor;
|
||||
uint_32 oficolor, ficolor;
|
||||
const char * altNEVR = NULL;
|
||||
rpmfi otherFi = NULL;
|
||||
int numReplaced = 0;
|
||||
|
@ -238,6 +241,18 @@ static int handleInstInstalledFiles(const rpmts ts,
|
|||
if (otherFi == NULL)
|
||||
return 1;
|
||||
|
||||
/* Compute package color. */
|
||||
tecolor = rpmteColor(p);
|
||||
tecolor &= tscolor;
|
||||
|
||||
/* Compute other pkg color. */
|
||||
otecolor = 0;
|
||||
otherFi = rpmfiInit(otherFi, 0);
|
||||
if (otherFi != NULL)
|
||||
while (rpmfiNext(otherFi) >= 0)
|
||||
otecolor |= rpmfiFColor(otherFi);
|
||||
otecolor &= tscolor;
|
||||
|
||||
fi->replaced = xcalloc(sharedCount, sizeof(*fi->replaced));
|
||||
|
||||
ps = rpmtsProblems(ts);
|
||||
|
@ -247,9 +262,13 @@ static int handleInstInstalledFiles(const rpmts ts,
|
|||
|
||||
otherFileNum = shared->otherFileNum;
|
||||
(void) rpmfiSetFX(otherFi, otherFileNum);
|
||||
oficolor = rpmfiFColor(otherFi);
|
||||
oficolor &= tscolor;
|
||||
|
||||
fileNum = shared->pkgFileNum;
|
||||
(void) rpmfiSetFX(fi, fileNum);
|
||||
ficolor = rpmfiFColor(fi);
|
||||
ficolor &= tscolor;
|
||||
|
||||
isCfgFile = ((rpmfiFFlags(otherFi) | rpmfiFFlags(fi)) & RPMFILE_CONFIG);
|
||||
|
||||
|
@ -263,6 +282,8 @@ static int handleInstInstalledFiles(const rpmts ts,
|
|||
continue;
|
||||
|
||||
if (filecmp(otherFi, fi)) {
|
||||
/* Report conflicts only for packages/files of same color. */
|
||||
if (tscolor == 0 || (tecolor == otecolor && ficolor == oficolor))
|
||||
if (reportConflicts) {
|
||||
rpmpsAppend(ps, RPMPROB_FILE_CONFLICT,
|
||||
rpmteNEVR(p), rpmteKey(p),
|
||||
|
@ -1086,6 +1107,12 @@ rpmMessage(RPMMESS_DEBUG, _("sanity checking %d elements\n"), rpmtsNElements(ts)
|
|||
rpmteV(p));
|
||||
xx = rpmdbSetIteratorRE(mi, RPMTAG_RELEASE, RPMMIRE_DEFAULT,
|
||||
rpmteR(p));
|
||||
if (tscolor) {
|
||||
xx = rpmdbSetIteratorRE(mi, RPMTAG_ARCH, RPMMIRE_DEFAULT,
|
||||
rpmteA(p));
|
||||
xx = rpmdbSetIteratorRE(mi, RPMTAG_OS, RPMMIRE_DEFAULT,
|
||||
rpmteO(p));
|
||||
}
|
||||
|
||||
while (rpmdbNextIterator(mi) != NULL) {
|
||||
rpmpsAppend(ps, RPMPROB_PKG_INSTALLED,
|
||||
|
|
130
po/cs.po
130
po/cs.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2003-01-13 15:26-0500\n"
|
||||
"POT-Creation-Date: 2003-01-17 12:33-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"
|
||||
|
@ -725,7 +725,7 @@ msgstr "Nemohu p
|
|||
msgid "Could not open %s: %s\n"
|
||||
msgstr "Nemohu otevøít %s: %s\n"
|
||||
|
||||
#: build/pack.c:632 lib/psm.c:1650
|
||||
#: build/pack.c:632 lib/psm.c:1657
|
||||
#, c-format
|
||||
msgid "Unable to write package: %s\n"
|
||||
msgstr "Nemohu zapsat balíèek: %s\n"
|
||||
|
@ -755,7 +755,7 @@ msgstr "Nemohu p
|
|||
msgid "Unable to write payload to %s: %s\n"
|
||||
msgstr "Nemohu zapsat payload do %s: %s\n"
|
||||
|
||||
#: build/pack.c:725 lib/psm.c:1941
|
||||
#: build/pack.c:725 lib/psm.c:1948
|
||||
#, c-format
|
||||
msgid "Wrote: %s\n"
|
||||
msgstr "Zapsáno: %s\n"
|
||||
|
@ -1354,57 +1354,57 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr "selhal - "
|
||||
|
||||
#: lib/depends.c:164
|
||||
#: lib/depends.c:182
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr "balíèek %s je ji¾ nainstalován"
|
||||
|
||||
#: lib/depends.c:362
|
||||
#: lib/depends.c:380
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:389
|
||||
#: lib/depends.c:407
|
||||
#, fuzzy
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr "%s: %-45s ANO (rpmrc poskytuje)\n"
|
||||
|
||||
#: lib/depends.c:406
|
||||
#: lib/depends.c:424
|
||||
#, fuzzy
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr "%s: %-45s ANO (rpmlib poskytuje)\n"
|
||||
|
||||
#: lib/depends.c:435
|
||||
#: lib/depends.c:453
|
||||
#, fuzzy
|
||||
msgid "(db files)"
|
||||
msgstr "©patný soubor: %s: %s\n"
|
||||
|
||||
#: lib/depends.c:448
|
||||
#: lib/depends.c:466
|
||||
#, fuzzy
|
||||
msgid "(db provides)"
|
||||
msgstr "%s: %-45s ANO (db poskytuje)\n"
|
||||
|
||||
#: lib/depends.c:461
|
||||
#: lib/depends.c:479
|
||||
#, fuzzy
|
||||
msgid "(db package)"
|
||||
msgstr "¾ádné balíèky\n"
|
||||
|
||||
#: lib/depends.c:815
|
||||
#: lib/depends.c:833
|
||||
#, c-format
|
||||
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:937
|
||||
#: lib/depends.c:955
|
||||
#, 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:1167
|
||||
#: lib/depends.c:1185
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr "========== ukládání tsort relací\n"
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1267
|
||||
#: lib/depends.c:1285
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, tree, "
|
||||
|
@ -1412,20 +1412,20 @@ msgid ""
|
|||
msgstr ""
|
||||
"========== tsorting balíèkù (poøadí, #pøedchùdce, #následovník, hloubka)\n"
|
||||
|
||||
#: lib/depends.c:1351
|
||||
#: lib/depends.c:1369
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr "========== pouze úspì¹né (poøadí dle prezentace)\n"
|
||||
|
||||
#: lib/depends.c:1421
|
||||
#: lib/depends.c:1439
|
||||
msgid "LOOP:\n"
|
||||
msgstr "SMYÈKA:\n"
|
||||
|
||||
#: lib/depends.c:1456
|
||||
#: lib/depends.c:1474
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr "========== pokraèuje tsort ...\n"
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1461
|
||||
#: lib/depends.c:1479
|
||||
#, c-format
|
||||
msgid "rpmtsOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
@ -2204,179 +2204,179 @@ msgstr "%s: scriptlet %s selhal (%d), p
|
|||
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
|
||||
msgstr "provedení %s skripletu z %s-%s-%s selhalo, návratový kód: %d\n"
|
||||
|
||||
#: lib/psm.c:1420
|
||||
#: lib/psm.c:1421
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s has %d files, test = %d\n"
|
||||
msgstr "%s: %s-%s-%s obsahuje %d souborù, test = %d\n"
|
||||
|
||||
#: lib/psm.c:1553
|
||||
#: lib/psm.c:1560
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
|
||||
msgstr "%s: scriptlet %s selhal (%d), pøeskakuji %s-%s-%s\n"
|
||||
|
||||
#: lib/psm.c:1662
|
||||
#: lib/psm.c:1669
|
||||
#, fuzzy
|
||||
msgid "Unable to reload signature header\n"
|
||||
msgstr "Nemohu pøeèíst hlavièku z %s: %s\n"
|
||||
|
||||
#: lib/psm.c:1708
|
||||
#: lib/psm.c:1715
|
||||
#, c-format
|
||||
msgid "user %s does not exist - using root\n"
|
||||
msgstr "u¾ivatel %s neexistuje - pou¾it u¾ivatel root\n"
|
||||
|
||||
#: lib/psm.c:1717
|
||||
#: lib/psm.c:1724
|
||||
#, c-format
|
||||
msgid "group %s does not exist - using root\n"
|
||||
msgstr "skupina %s neexistuje - pou¾ita skupina root\n"
|
||||
|
||||
#: lib/psm.c:1765
|
||||
#: lib/psm.c:1772
|
||||
#, c-format
|
||||
msgid "unpacking of archive failed%s%s: %s\n"
|
||||
msgstr "rozbalování archívu selhalo %s%s: %s\n"
|
||||
|
||||
#: lib/psm.c:1766
|
||||
#: lib/psm.c:1773
|
||||
msgid " on file "
|
||||
msgstr " na souboru "
|
||||
|
||||
#: lib/psm.c:1949
|
||||
#: lib/psm.c:1956
|
||||
#, fuzzy, c-format
|
||||
msgid "%s failed on file %s: %s\n"
|
||||
msgstr "nemohu otevøít %s: %s\n"
|
||||
|
||||
#: lib/psm.c:1952
|
||||
#: lib/psm.c:1959
|
||||
#, fuzzy, c-format
|
||||
msgid "%s failed: %s\n"
|
||||
msgstr "%s selhalo\n"
|
||||
|
||||
#: lib/query.c:122 lib/rpmts.c:430
|
||||
#: lib/query.c:122 lib/rpmts.c:451
|
||||
#, c-format
|
||||
msgid "incorrect format: %s\n"
|
||||
msgstr "nesprávný formát: %s\n"
|
||||
|
||||
#. @-boundswrite@
|
||||
#: lib/query.c:181
|
||||
#: lib/query.c:186
|
||||
msgid "(contains no files)"
|
||||
msgstr "(neobsahuje ¾ádné soubory)"
|
||||
|
||||
#: lib/query.c:246
|
||||
#: lib/query.c:251
|
||||
msgid "normal "
|
||||
msgstr "normální "
|
||||
|
||||
#: lib/query.c:249
|
||||
#: lib/query.c:254
|
||||
msgid "replaced "
|
||||
msgstr "nahrazen "
|
||||
|
||||
#: lib/query.c:252
|
||||
#: lib/query.c:257
|
||||
msgid "not installed "
|
||||
msgstr "neinstalován "
|
||||
|
||||
#: lib/query.c:255
|
||||
#: lib/query.c:260
|
||||
msgid "net shared "
|
||||
msgstr "sdílen v síti "
|
||||
|
||||
#: lib/query.c:258
|
||||
#: lib/query.c:263
|
||||
msgid "wrong color "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:261
|
||||
#: lib/query.c:266
|
||||
msgid "(no state) "
|
||||
msgstr "(chybí stav) "
|
||||
|
||||
#: lib/query.c:264
|
||||
#: lib/query.c:269
|
||||
#, c-format
|
||||
msgid "(unknown %3d) "
|
||||
msgstr "(neznámý %3d) "
|
||||
|
||||
#: lib/query.c:282
|
||||
#: lib/query.c:287
|
||||
#, fuzzy
|
||||
msgid "package has not file owner/group lists\n"
|
||||
msgstr "balíèek nemá vlastníka souboru ani seznamy id\n"
|
||||
|
||||
#: lib/query.c:315
|
||||
#: lib/query.c:320
|
||||
msgid "package has neither file owner or id lists\n"
|
||||
msgstr "balíèek nemá vlastníka souboru ani seznamy id\n"
|
||||
|
||||
#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
|
||||
#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
|
||||
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
|
||||
#, c-format
|
||||
msgid "open of %s failed: %s\n"
|
||||
msgstr "otevøení %s selhalo: %s\n"
|
||||
|
||||
#: lib/query.c:459
|
||||
#: lib/query.c:464
|
||||
#, c-format
|
||||
msgid "query of %s failed\n"
|
||||
msgstr "dotaz na %s se nezdaøil\n"
|
||||
|
||||
#: lib/query.c:469
|
||||
#: lib/query.c:474
|
||||
msgid "old format source packages cannot be queried\n"
|
||||
msgstr "nelze provést dotaz na zdrojové balíèky starého formátu\n"
|
||||
|
||||
#: lib/query.c:502 lib/rpminstall.c:608
|
||||
#: lib/query.c:507 lib/rpminstall.c:608
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: not an rpm package (or package manifest): %s\n"
|
||||
msgstr "¾ádný balíèek neaktivuje %s\n"
|
||||
|
||||
#: lib/query.c:531
|
||||
#: lib/query.c:536
|
||||
msgid "no packages\n"
|
||||
msgstr "¾ádné balíèky\n"
|
||||
|
||||
#: lib/query.c:551
|
||||
#: lib/query.c:556
|
||||
#, c-format
|
||||
msgid "group %s does not contain any packages\n"
|
||||
msgstr "skupina %s neobsahuje ¾ádné balíèky\n"
|
||||
|
||||
#: lib/query.c:560
|
||||
#: lib/query.c:565
|
||||
#, c-format
|
||||
msgid "no package triggers %s\n"
|
||||
msgstr "¾ádný balíèek neaktivuje %s\n"
|
||||
|
||||
#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
|
||||
#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
|
||||
#, fuzzy, c-format
|
||||
msgid "malformed %s: %s\n"
|
||||
msgstr "nemohu zjistit stav %s: %s\n"
|
||||
|
||||
#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
|
||||
#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
|
||||
#, fuzzy, c-format
|
||||
msgid "no package matches %s: %s\n"
|
||||
msgstr "¾ádný balíèek neaktivuje %s\n"
|
||||
|
||||
#: lib/query.c:663
|
||||
#: lib/query.c:668
|
||||
#, c-format
|
||||
msgid "no package requires %s\n"
|
||||
msgstr "¾ádný balíèek nevy¾aduje %s\n"
|
||||
|
||||
#: lib/query.c:674
|
||||
#: lib/query.c:679
|
||||
#, c-format
|
||||
msgid "no package provides %s\n"
|
||||
msgstr "¾ádný balíèek neposkytuje %s\n"
|
||||
|
||||
#: lib/query.c:709
|
||||
#: lib/query.c:714
|
||||
#, c-format
|
||||
msgid "file %s: %s\n"
|
||||
msgstr "soubor %s: %s\n"
|
||||
|
||||
#: lib/query.c:713
|
||||
#: lib/query.c:718
|
||||
#, c-format
|
||||
msgid "file %s is not owned by any package\n"
|
||||
msgstr "soubor %s nevlastní ¾ádný balíèek\n"
|
||||
|
||||
#: lib/query.c:738
|
||||
#: lib/query.c:743
|
||||
#, c-format
|
||||
msgid "invalid package number: %s\n"
|
||||
msgstr "neplatné èíslo balíèku: %s\n"
|
||||
|
||||
#: lib/query.c:741
|
||||
#: lib/query.c:746
|
||||
#, c-format
|
||||
msgid "package record number: %u\n"
|
||||
msgstr "záznam balíèku èíslo: %u\n"
|
||||
|
||||
#: lib/query.c:746
|
||||
#: lib/query.c:751
|
||||
#, c-format
|
||||
msgid "record %u could not be read\n"
|
||||
msgstr "záznam %u nelze pøeèíst\n"
|
||||
|
||||
#: lib/query.c:756 lib/rpminstall.c:779
|
||||
#: lib/query.c:761 lib/rpminstall.c:779
|
||||
#, c-format
|
||||
msgid "package %s is not installed\n"
|
||||
msgstr "balíèek %s není nainstalován\n"
|
||||
|
@ -2863,28 +2863,28 @@ msgstr ""
|
|||
msgid "Unable to open %s for reading: %s.\n"
|
||||
msgstr "Nemohu otevøít %s: %s\n"
|
||||
|
||||
#: lib/rpmts.c:135
|
||||
#: lib/rpmts.c:156
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr "nemohu otevøít RPM databázi v %s\n"
|
||||
|
||||
#: lib/rpmts.c:320
|
||||
#: lib/rpmts.c:341
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot open Solve database in %s\n"
|
||||
msgstr "nemohu otevøít RPM databázi v %s\n"
|
||||
|
||||
#: lib/rpmts.c:462
|
||||
#: lib/rpmts.c:483
|
||||
#, fuzzy, c-format
|
||||
msgid "Adding: %s\n"
|
||||
msgstr "øádek: %s\n"
|
||||
|
||||
#: lib/rpmts.c:474
|
||||
#: lib/rpmts.c:495
|
||||
#, fuzzy, c-format
|
||||
msgid "Suggesting: %s\n"
|
||||
msgstr "RPM verze %s\n"
|
||||
|
||||
#. Get available space on mounted file systems.
|
||||
#: lib/rpmts.c:906
|
||||
#: lib/rpmts.c:927
|
||||
msgid "getting list of mounted filesystems\n"
|
||||
msgstr "získávám seznam pøipojených systémù souborù\n"
|
||||
|
||||
|
@ -3062,7 +3062,7 @@ msgid "%s skipped due to missingok flag\n"
|
|||
msgstr ""
|
||||
|
||||
#. @innercontinue@
|
||||
#: lib/transaction.c:935
|
||||
#: lib/transaction.c:956
|
||||
#, c-format
|
||||
msgid "excluding directory %s\n"
|
||||
msgstr ""
|
||||
|
@ -3075,7 +3075,7 @@ msgstr ""
|
|||
#. * For packages being removed:
|
||||
#. * - count files.
|
||||
#.
|
||||
#: lib/transaction.c:1047
|
||||
#: lib/transaction.c:1068
|
||||
#, c-format
|
||||
msgid "sanity checking %d elements\n"
|
||||
msgstr ""
|
||||
|
@ -3088,7 +3088,7 @@ msgstr ""
|
|||
#. * calling fpLookupList only once. I'm not sure that the speedup is
|
||||
#. * worth the trouble though.
|
||||
#.
|
||||
#: lib/transaction.c:1129
|
||||
#: lib/transaction.c:1156
|
||||
#, c-format
|
||||
msgid "computing %d file fingerprints\n"
|
||||
msgstr ""
|
||||
|
@ -3096,7 +3096,7 @@ msgstr ""
|
|||
#. ===============================================
|
||||
#. * Compute file disposition for each package in transaction set.
|
||||
#.
|
||||
#: lib/transaction.c:1206
|
||||
#: lib/transaction.c:1233
|
||||
msgid "computing file dispositions\n"
|
||||
msgstr ""
|
||||
|
||||
|
|
130
po/da.po
130
po/da.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2003-01-13 15:26-0500\n"
|
||||
"POT-Creation-Date: 2003-01-17 12:33-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"
|
||||
|
@ -722,7 +722,7 @@ msgstr "Kunne ikke l
|
|||
msgid "Could not open %s: %s\n"
|
||||
msgstr "Kunne ikke åbne %s: %s\n"
|
||||
|
||||
#: build/pack.c:632 lib/psm.c:1650
|
||||
#: build/pack.c:632 lib/psm.c:1657
|
||||
#, c-format
|
||||
msgid "Unable to write package: %s\n"
|
||||
msgstr "Kunne ikke skrive pakke: %s\n"
|
||||
|
@ -752,7 +752,7 @@ msgstr "Kunne ikke l
|
|||
msgid "Unable to write payload to %s: %s\n"
|
||||
msgstr "Kunne ikke skrive pakkeindhold til %s: %s\n"
|
||||
|
||||
#: build/pack.c:725 lib/psm.c:1941
|
||||
#: build/pack.c:725 lib/psm.c:1948
|
||||
#, c-format
|
||||
msgid "Wrote: %s\n"
|
||||
msgstr "Skrev: %s\n"
|
||||
|
@ -1355,76 +1355,76 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr " mislykkedes - "
|
||||
|
||||
#: lib/depends.c:164
|
||||
#: lib/depends.c:182
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr "pakken %s er allerede installeret"
|
||||
|
||||
#: lib/depends.c:362
|
||||
#: lib/depends.c:380
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:389
|
||||
#: lib/depends.c:407
|
||||
#, fuzzy
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr "%s: %-45s JA (rpmrc tilfører)\n"
|
||||
|
||||
#: lib/depends.c:406
|
||||
#: lib/depends.c:424
|
||||
#, fuzzy
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr "%s: %-45s JA (rpmlib tilfører)\n"
|
||||
|
||||
#: lib/depends.c:435
|
||||
#: lib/depends.c:453
|
||||
#, fuzzy
|
||||
msgid "(db files)"
|
||||
msgstr "ugyldig db-fil %s\n"
|
||||
|
||||
#: lib/depends.c:448
|
||||
#: lib/depends.c:466
|
||||
#, fuzzy
|
||||
msgid "(db provides)"
|
||||
msgstr "%s: %-45s JA (db tilfører)\n"
|
||||
|
||||
#: lib/depends.c:461
|
||||
#: lib/depends.c:479
|
||||
#, fuzzy
|
||||
msgid "(db package)"
|
||||
msgstr "ingen pakker\n"
|
||||
|
||||
#: lib/depends.c:815
|
||||
#: lib/depends.c:833
|
||||
#, c-format
|
||||
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:937
|
||||
#: lib/depends.c:955
|
||||
#, 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:1167
|
||||
#: lib/depends.c:1185
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr "========== gemmer tsort-relationer\n"
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1267
|
||||
#: lib/depends.c:1285
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, tree, "
|
||||
"depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1351
|
||||
#: lib/depends.c:1369
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr "========== kun efterfølgere (præsentationsrækkefølge)\n"
|
||||
|
||||
#: lib/depends.c:1421
|
||||
#: lib/depends.c:1439
|
||||
msgid "LOOP:\n"
|
||||
msgstr "LØKKE:\n"
|
||||
|
||||
#: lib/depends.c:1456
|
||||
#: lib/depends.c:1474
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr "========== fortsætter tsort ...\n"
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1461
|
||||
#: lib/depends.c:1479
|
||||
#, c-format
|
||||
msgid "rpmtsOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
@ -2217,179 +2217,179 @@ msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
|
|||
msgstr ""
|
||||
"kørsel af småskriptet %s fra %s-%s-%s mislykkedes, afslutningsstatus %d\n"
|
||||
|
||||
#: lib/psm.c:1420
|
||||
#: lib/psm.c:1421
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s has %d files, test = %d\n"
|
||||
msgstr "pakke: %s-%s-%s filer test = %d\n"
|
||||
|
||||
#: lib/psm.c:1553
|
||||
#: lib/psm.c:1560
|
||||
#, c-format
|
||||
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1662
|
||||
#: lib/psm.c:1669
|
||||
#, fuzzy
|
||||
msgid "Unable to reload signature header\n"
|
||||
msgstr "Kunne ikke læse hoved fra %s: %s\n"
|
||||
|
||||
#: lib/psm.c:1708
|
||||
#: lib/psm.c:1715
|
||||
#, c-format
|
||||
msgid "user %s does not exist - using root\n"
|
||||
msgstr "bruger %s eksisterer ikke - bruger root\n"
|
||||
|
||||
#: lib/psm.c:1717
|
||||
#: lib/psm.c:1724
|
||||
#, c-format
|
||||
msgid "group %s does not exist - using root\n"
|
||||
msgstr "gruppe %s eksisterer ikke - bruger root\n"
|
||||
|
||||
#: lib/psm.c:1765
|
||||
#: lib/psm.c:1772
|
||||
#, c-format
|
||||
msgid "unpacking of archive failed%s%s: %s\n"
|
||||
msgstr "udpakning af arkiv mislykkedes%s%s: %s\n"
|
||||
|
||||
#: lib/psm.c:1766
|
||||
#: lib/psm.c:1773
|
||||
msgid " on file "
|
||||
msgstr " for fil "
|
||||
|
||||
#: lib/psm.c:1949
|
||||
#: lib/psm.c:1956
|
||||
#, fuzzy, c-format
|
||||
msgid "%s failed on file %s: %s\n"
|
||||
msgstr "kunne ikke åbne %s: %s\n"
|
||||
|
||||
#: lib/psm.c:1952
|
||||
#: lib/psm.c:1959
|
||||
#, fuzzy, c-format
|
||||
msgid "%s failed: %s\n"
|
||||
msgstr "%s mislykkedes\n"
|
||||
|
||||
#: lib/query.c:122 lib/rpmts.c:430
|
||||
#: lib/query.c:122 lib/rpmts.c:451
|
||||
#, c-format
|
||||
msgid "incorrect format: %s\n"
|
||||
msgstr "ugyldigt format: %s\n"
|
||||
|
||||
#. @-boundswrite@
|
||||
#: lib/query.c:181
|
||||
#: lib/query.c:186
|
||||
msgid "(contains no files)"
|
||||
msgstr "(indeholder ingen filer)"
|
||||
|
||||
#: lib/query.c:246
|
||||
#: lib/query.c:251
|
||||
msgid "normal "
|
||||
msgstr "normal "
|
||||
|
||||
#: lib/query.c:249
|
||||
#: lib/query.c:254
|
||||
msgid "replaced "
|
||||
msgstr "erstattet "
|
||||
|
||||
#: lib/query.c:252
|
||||
#: lib/query.c:257
|
||||
msgid "not installed "
|
||||
msgstr "ej installeret"
|
||||
|
||||
#: lib/query.c:255
|
||||
#: lib/query.c:260
|
||||
msgid "net shared "
|
||||
msgstr "ej delt "
|
||||
|
||||
#: lib/query.c:258
|
||||
#: lib/query.c:263
|
||||
msgid "wrong color "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:261
|
||||
#: lib/query.c:266
|
||||
msgid "(no state) "
|
||||
msgstr "(ingen status)"
|
||||
|
||||
#: lib/query.c:264
|
||||
#: lib/query.c:269
|
||||
#, c-format
|
||||
msgid "(unknown %3d) "
|
||||
msgstr "(ukendt %3d) "
|
||||
|
||||
#: lib/query.c:282
|
||||
#: lib/query.c:287
|
||||
#, fuzzy
|
||||
msgid "package has not file owner/group lists\n"
|
||||
msgstr "pakke har hverken filejerskabs- eller id-lister\n"
|
||||
|
||||
#: lib/query.c:315
|
||||
#: lib/query.c:320
|
||||
msgid "package has neither file owner or id lists\n"
|
||||
msgstr "pakke har hverken filejerskabs- eller id-lister\n"
|
||||
|
||||
#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
|
||||
#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
|
||||
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
|
||||
#, c-format
|
||||
msgid "open of %s failed: %s\n"
|
||||
msgstr "åbning af %s mislykkedes %s\n"
|
||||
|
||||
#: lib/query.c:459
|
||||
#: lib/query.c:464
|
||||
#, c-format
|
||||
msgid "query of %s failed\n"
|
||||
msgstr "forespørgsel af %s mislykkedes\n"
|
||||
|
||||
#: lib/query.c:469
|
||||
#: lib/query.c:474
|
||||
msgid "old format source packages cannot be queried\n"
|
||||
msgstr "pakke med gammelt kildeformat kan ikke forespørges\n"
|
||||
|
||||
#: lib/query.c:502 lib/rpminstall.c:608
|
||||
#: lib/query.c:507 lib/rpminstall.c:608
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: not an rpm package (or package manifest): %s\n"
|
||||
msgstr "ingen pakker udløser %s\n"
|
||||
|
||||
#: lib/query.c:531
|
||||
#: lib/query.c:536
|
||||
msgid "no packages\n"
|
||||
msgstr "ingen pakker\n"
|
||||
|
||||
#: lib/query.c:551
|
||||
#: lib/query.c:556
|
||||
#, c-format
|
||||
msgid "group %s does not contain any packages\n"
|
||||
msgstr "gruppe %s indeholder ingen pakker\n"
|
||||
|
||||
#: lib/query.c:560
|
||||
#: lib/query.c:565
|
||||
#, c-format
|
||||
msgid "no package triggers %s\n"
|
||||
msgstr "ingen pakker udløser %s\n"
|
||||
|
||||
#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
|
||||
#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
|
||||
#, fuzzy, c-format
|
||||
msgid "malformed %s: %s\n"
|
||||
msgstr "Kunne ikke læse %s: %s.\n"
|
||||
|
||||
#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
|
||||
#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
|
||||
#, fuzzy, c-format
|
||||
msgid "no package matches %s: %s\n"
|
||||
msgstr "ingen pakker udløser %s\n"
|
||||
|
||||
#: lib/query.c:663
|
||||
#: lib/query.c:668
|
||||
#, c-format
|
||||
msgid "no package requires %s\n"
|
||||
msgstr "ingen pakker kræver %s\n"
|
||||
|
||||
#: lib/query.c:674
|
||||
#: lib/query.c:679
|
||||
#, c-format
|
||||
msgid "no package provides %s\n"
|
||||
msgstr "ingen pakker tilfører %s\n"
|
||||
|
||||
#: lib/query.c:709
|
||||
#: lib/query.c:714
|
||||
#, c-format
|
||||
msgid "file %s: %s\n"
|
||||
msgstr "fil %s: %s\n"
|
||||
|
||||
#: lib/query.c:713
|
||||
#: lib/query.c:718
|
||||
#, c-format
|
||||
msgid "file %s is not owned by any package\n"
|
||||
msgstr "filen %s tilhører ingen pakke\n"
|
||||
|
||||
#: lib/query.c:738
|
||||
#: lib/query.c:743
|
||||
#, c-format
|
||||
msgid "invalid package number: %s\n"
|
||||
msgstr "ugyldigt pakkenummer: %s\n"
|
||||
|
||||
#: lib/query.c:741
|
||||
#: lib/query.c:746
|
||||
#, c-format
|
||||
msgid "package record number: %u\n"
|
||||
msgstr "pakkens post-nummer: %u\n"
|
||||
|
||||
#: lib/query.c:746
|
||||
#: lib/query.c:751
|
||||
#, fuzzy, c-format
|
||||
msgid "record %u could not be read\n"
|
||||
msgstr "post %d kunne ikke læses\n"
|
||||
|
||||
#: lib/query.c:756 lib/rpminstall.c:779
|
||||
#: lib/query.c:761 lib/rpminstall.c:779
|
||||
#, c-format
|
||||
msgid "package %s is not installed\n"
|
||||
msgstr "pakken %s er ikke installeret\n"
|
||||
|
@ -2878,22 +2878,22 @@ msgstr "Kunne ikke l
|
|||
msgid "Unable to open %s for reading: %s.\n"
|
||||
msgstr "Kunne ikke åbne %s for læsning: %s.\n"
|
||||
|
||||
#: lib/rpmts.c:135
|
||||
#: lib/rpmts.c:156
|
||||
#, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr "kunne ikke åbne Packages-database i %s\n"
|
||||
|
||||
#: lib/rpmts.c:320
|
||||
#: lib/rpmts.c:341
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot open Solve database in %s\n"
|
||||
msgstr "kan ikke åbne rpm-database i %s\n"
|
||||
|
||||
#: lib/rpmts.c:462
|
||||
#: lib/rpmts.c:483
|
||||
#, fuzzy, c-format
|
||||
msgid "Adding: %s\n"
|
||||
msgstr "linie: %s\n"
|
||||
|
||||
#: lib/rpmts.c:474
|
||||
#: lib/rpmts.c:495
|
||||
#, fuzzy, c-format
|
||||
msgid "Suggesting: %s\n"
|
||||
msgstr ""
|
||||
|
@ -2901,7 +2901,7 @@ msgstr ""
|
|||
"\n"
|
||||
|
||||
#. Get available space on mounted file systems.
|
||||
#: lib/rpmts.c:906
|
||||
#: lib/rpmts.c:927
|
||||
msgid "getting list of mounted filesystems\n"
|
||||
msgstr "henter liste over monterede filsystemer\n"
|
||||
|
||||
|
@ -3074,7 +3074,7 @@ msgid "%s skipped due to missingok flag\n"
|
|||
msgstr "%s oversprunget grundet manglende ok-flag\n"
|
||||
|
||||
#. @innercontinue@
|
||||
#: lib/transaction.c:935
|
||||
#: lib/transaction.c:956
|
||||
#, c-format
|
||||
msgid "excluding directory %s\n"
|
||||
msgstr "ekskluderer kataloget %s\n"
|
||||
|
@ -3087,7 +3087,7 @@ msgstr "ekskluderer kataloget %s\n"
|
|||
#. * For packages being removed:
|
||||
#. * - count files.
|
||||
#.
|
||||
#: lib/transaction.c:1047
|
||||
#: lib/transaction.c:1068
|
||||
#, c-format
|
||||
msgid "sanity checking %d elements\n"
|
||||
msgstr ""
|
||||
|
@ -3100,7 +3100,7 @@ msgstr ""
|
|||
#. * calling fpLookupList only once. I'm not sure that the speedup is
|
||||
#. * worth the trouble though.
|
||||
#.
|
||||
#: lib/transaction.c:1129
|
||||
#: lib/transaction.c:1156
|
||||
#, c-format
|
||||
msgid "computing %d file fingerprints\n"
|
||||
msgstr ""
|
||||
|
@ -3108,7 +3108,7 @@ msgstr ""
|
|||
#. ===============================================
|
||||
#. * Compute file disposition for each package in transaction set.
|
||||
#.
|
||||
#: lib/transaction.c:1206
|
||||
#: lib/transaction.c:1233
|
||||
msgid "computing file dispositions\n"
|
||||
msgstr ""
|
||||
|
||||
|
|
130
po/de.po
130
po/de.po
|
@ -37,7 +37,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2003-01-13 15:26-0500\n"
|
||||
"POT-Creation-Date: 2003-01-17 12:33-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"
|
||||
|
@ -807,7 +807,7 @@ msgid "Could not open %s: %s\n"
|
|||
msgstr "Öffnen von %s fehlgeschlagen\n"
|
||||
|
||||
# , c-format
|
||||
#: build/pack.c:632 lib/psm.c:1650
|
||||
#: build/pack.c:632 lib/psm.c:1657
|
||||
#, fuzzy, c-format
|
||||
msgid "Unable to write package: %s\n"
|
||||
msgstr "Nicht möglich %s zu schreiben"
|
||||
|
@ -842,7 +842,7 @@ msgstr "Nicht m
|
|||
msgid "Unable to write payload to %s: %s\n"
|
||||
msgstr "Nicht möglich %s zu schreiben"
|
||||
|
||||
#: build/pack.c:725 lib/psm.c:1941
|
||||
#: build/pack.c:725 lib/psm.c:1948
|
||||
#, c-format
|
||||
msgid "Wrote: %s\n"
|
||||
msgstr ""
|
||||
|
@ -1482,76 +1482,76 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr "pgp fehlgeschlagen"
|
||||
|
||||
#: lib/depends.c:164
|
||||
#: lib/depends.c:182
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr "Paket %s ist nicht installiert\n"
|
||||
|
||||
#: lib/depends.c:362
|
||||
#: lib/depends.c:380
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:389
|
||||
#: lib/depends.c:407
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:406
|
||||
#: lib/depends.c:424
|
||||
#, fuzzy
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr "die Datei »%s« gehört zu keinem Paket\n"
|
||||
|
||||
# , c-format
|
||||
#: lib/depends.c:435
|
||||
#: lib/depends.c:453
|
||||
#, fuzzy
|
||||
msgid "(db files)"
|
||||
msgstr "Öffnen von %s fehlgeschlagen: %s"
|
||||
|
||||
#: lib/depends.c:448
|
||||
#: lib/depends.c:466
|
||||
msgid "(db provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:461
|
||||
#: lib/depends.c:479
|
||||
#, fuzzy
|
||||
msgid "(db package)"
|
||||
msgstr "Anfrage an alle Pakete"
|
||||
|
||||
#: lib/depends.c:815
|
||||
#: lib/depends.c:833
|
||||
#, c-format
|
||||
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
|
||||
msgstr ""
|
||||
|
||||
# FIXME
|
||||
#: lib/depends.c:937
|
||||
#: lib/depends.c:955
|
||||
#, 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:1167
|
||||
#: lib/depends.c:1185
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1267
|
||||
#: lib/depends.c:1285
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, tree, "
|
||||
"depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1351
|
||||
#: lib/depends.c:1369
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1421
|
||||
#: lib/depends.c:1439
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1456
|
||||
#: lib/depends.c:1474
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1461
|
||||
#: lib/depends.c:1479
|
||||
#, c-format
|
||||
msgid "rpmtsOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
@ -2374,187 +2374,187 @@ msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
|
|||
msgstr "Ausführung des Skripts fehlgeschlagen"
|
||||
|
||||
# FIXME shared, besser: "mit anderen geteilte ..."
|
||||
#: lib/psm.c:1420
|
||||
#: lib/psm.c:1421
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s has %d files, test = %d\n"
|
||||
msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
|
||||
|
||||
#: lib/psm.c:1553
|
||||
#: lib/psm.c:1560
|
||||
#, c-format
|
||||
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
|
||||
msgstr ""
|
||||
|
||||
# , c-format
|
||||
#: lib/psm.c:1662
|
||||
#: lib/psm.c:1669
|
||||
#, fuzzy
|
||||
msgid "Unable to reload signature header\n"
|
||||
msgstr "Nicht möglich %s zu schreiben"
|
||||
|
||||
#: lib/psm.c:1708
|
||||
#: lib/psm.c:1715
|
||||
#, c-format
|
||||
msgid "user %s does not exist - using root\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1717
|
||||
#: lib/psm.c:1724
|
||||
#, fuzzy, c-format
|
||||
msgid "group %s does not exist - using root\n"
|
||||
msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
|
||||
|
||||
#: lib/psm.c:1765
|
||||
#: lib/psm.c:1772
|
||||
#, fuzzy, c-format
|
||||
msgid "unpacking of archive failed%s%s: %s\n"
|
||||
msgstr "öffnen von %s fehlgeschlagen: %s\n"
|
||||
|
||||
#: lib/psm.c:1766
|
||||
#: lib/psm.c:1773
|
||||
msgid " on file "
|
||||
msgstr ""
|
||||
|
||||
# , c-format
|
||||
#: lib/psm.c:1949
|
||||
#: lib/psm.c:1956
|
||||
#, fuzzy, c-format
|
||||
msgid "%s failed on file %s: %s\n"
|
||||
msgstr "Öffnen von %s fehlgeschlagen: %s"
|
||||
|
||||
#: lib/psm.c:1952
|
||||
#: lib/psm.c:1959
|
||||
#, fuzzy, c-format
|
||||
msgid "%s failed: %s\n"
|
||||
msgstr "pgp fehlgeschlagen"
|
||||
|
||||
#: lib/query.c:122 lib/rpmts.c:430
|
||||
#: lib/query.c:122 lib/rpmts.c:451
|
||||
#, fuzzy, c-format
|
||||
msgid "incorrect format: %s\n"
|
||||
msgstr "Fehler beim Format %s\n"
|
||||
|
||||
#. @-boundswrite@
|
||||
#: lib/query.c:181
|
||||
#: lib/query.c:186
|
||||
msgid "(contains no files)"
|
||||
msgstr "(beinhaltet keine Dateien)"
|
||||
|
||||
#: lib/query.c:246
|
||||
#: lib/query.c:251
|
||||
msgid "normal "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:249
|
||||
#: lib/query.c:254
|
||||
msgid "replaced "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:252
|
||||
#: lib/query.c:257
|
||||
#, fuzzy
|
||||
msgid "not installed "
|
||||
msgstr "Paket %s ist nicht installiert\n"
|
||||
|
||||
#: lib/query.c:255
|
||||
#: lib/query.c:260
|
||||
msgid "net shared "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:258
|
||||
#: lib/query.c:263
|
||||
msgid "wrong color "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:261
|
||||
#: lib/query.c:266
|
||||
msgid "(no state) "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:264
|
||||
#: lib/query.c:269
|
||||
#, fuzzy, c-format
|
||||
msgid "(unknown %3d) "
|
||||
msgstr "(unbekannter Typ)"
|
||||
|
||||
#: lib/query.c:282
|
||||
#: lib/query.c:287
|
||||
#, fuzzy
|
||||
msgid "package has not file owner/group lists\n"
|
||||
msgstr "Paket hat keinen Namen"
|
||||
|
||||
#: lib/query.c:315
|
||||
#: lib/query.c:320
|
||||
#, fuzzy
|
||||
msgid "package has neither file owner or id lists\n"
|
||||
msgstr "Paket hat keinen Namen"
|
||||
|
||||
#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
|
||||
#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
|
||||
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
|
||||
#, fuzzy, c-format
|
||||
msgid "open of %s failed: %s\n"
|
||||
msgstr "öffnen von %s fehlgeschlagen: %s\n"
|
||||
|
||||
#: lib/query.c:459
|
||||
#: lib/query.c:464
|
||||
#, c-format
|
||||
msgid "query of %s failed\n"
|
||||
msgstr "Anfrage von %s fehlgeschlagen\n"
|
||||
|
||||
#: lib/query.c:469
|
||||
#: lib/query.c:474
|
||||
msgid "old format source packages cannot be queried\n"
|
||||
msgstr "altes Sourceformat-Paket kann nicht angefragt werden\n"
|
||||
|
||||
#: lib/query.c:502 lib/rpminstall.c:608
|
||||
#: lib/query.c:507 lib/rpminstall.c:608
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: not an rpm package (or package manifest): %s\n"
|
||||
msgstr "kein Paket triggert %s\n"
|
||||
|
||||
#: lib/query.c:531
|
||||
#: lib/query.c:536
|
||||
#, fuzzy
|
||||
msgid "no packages\n"
|
||||
msgstr "Anfrage an alle Pakete"
|
||||
|
||||
#: lib/query.c:551
|
||||
#: lib/query.c:556
|
||||
#, c-format
|
||||
msgid "group %s does not contain any packages\n"
|
||||
msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
|
||||
|
||||
#: lib/query.c:560
|
||||
#: lib/query.c:565
|
||||
#, c-format
|
||||
msgid "no package triggers %s\n"
|
||||
msgstr "kein Paket triggert %s\n"
|
||||
|
||||
# , c-format
|
||||
#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
|
||||
#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
|
||||
#, fuzzy, c-format
|
||||
msgid "malformed %s: %s\n"
|
||||
msgstr "Lesen von %s fehlgeschlagen: %s."
|
||||
|
||||
#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
|
||||
#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
|
||||
#, fuzzy, c-format
|
||||
msgid "no package matches %s: %s\n"
|
||||
msgstr "kein Paket triggert %s\n"
|
||||
|
||||
#: lib/query.c:663
|
||||
#: lib/query.c:668
|
||||
#, c-format
|
||||
msgid "no package requires %s\n"
|
||||
msgstr "kein Paket verlangt %s\n"
|
||||
|
||||
# oder besser: ... listet %s auf? -ke-
|
||||
#: lib/query.c:674
|
||||
#: lib/query.c:679
|
||||
#, c-format
|
||||
msgid "no package provides %s\n"
|
||||
msgstr "kein Paket stellt %s bereit\n"
|
||||
|
||||
# , c-format
|
||||
#: lib/query.c:709
|
||||
#: lib/query.c:714
|
||||
#, fuzzy, c-format
|
||||
msgid "file %s: %s\n"
|
||||
msgstr "Öffnen von %s fehlgeschlagen: %s"
|
||||
|
||||
#: lib/query.c:713
|
||||
#: lib/query.c:718
|
||||
#, c-format
|
||||
msgid "file %s is not owned by any package\n"
|
||||
msgstr "die Datei »%s« gehört zu keinem Paket\n"
|
||||
|
||||
#: lib/query.c:738
|
||||
#: lib/query.c:743
|
||||
#, c-format
|
||||
msgid "invalid package number: %s\n"
|
||||
msgstr "ungültige Paket-Nummer: %s\n"
|
||||
|
||||
#: lib/query.c:741
|
||||
#: lib/query.c:746
|
||||
#, fuzzy, c-format
|
||||
msgid "package record number: %u\n"
|
||||
msgstr "ungültige Paket-Nummer: %s\n"
|
||||
|
||||
#: lib/query.c:746
|
||||
#: lib/query.c:751
|
||||
#, fuzzy, c-format
|
||||
msgid "record %u could not be read\n"
|
||||
msgstr "Eintrag %d konnte nicht gelesen werden\n"
|
||||
|
||||
#: lib/query.c:756 lib/rpminstall.c:779
|
||||
#: lib/query.c:761 lib/rpminstall.c:779
|
||||
#, c-format
|
||||
msgid "package %s is not installed\n"
|
||||
msgstr "Paket %s ist nicht installiert\n"
|
||||
|
@ -3050,30 +3050,30 @@ msgstr ""
|
|||
msgid "Unable to open %s for reading: %s.\n"
|
||||
msgstr "Datei %s kann nicht zum Lesen geöffnet werden: %s."
|
||||
|
||||
#: lib/rpmts.c:135
|
||||
#: lib/rpmts.c:156
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n"
|
||||
|
||||
#: lib/rpmts.c:320
|
||||
#: lib/rpmts.c:341
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot open Solve database in %s\n"
|
||||
msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n"
|
||||
|
||||
# , c-format
|
||||
#: lib/rpmts.c:462
|
||||
#: lib/rpmts.c:483
|
||||
#, fuzzy, c-format
|
||||
msgid "Adding: %s\n"
|
||||
msgstr "Öffnen von %s fehlgeschlagen: %s"
|
||||
|
||||
# , c-format
|
||||
#: lib/rpmts.c:474
|
||||
#: lib/rpmts.c:495
|
||||
#, fuzzy, c-format
|
||||
msgid "Suggesting: %s\n"
|
||||
msgstr "Hole %s heraus\n"
|
||||
|
||||
#. Get available space on mounted file systems.
|
||||
#: lib/rpmts.c:906
|
||||
#: lib/rpmts.c:927
|
||||
msgid "getting list of mounted filesystems\n"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3250,7 +3250,7 @@ msgid "%s skipped due to missingok flag\n"
|
|||
msgstr ""
|
||||
|
||||
#. @innercontinue@
|
||||
#: lib/transaction.c:935
|
||||
#: lib/transaction.c:956
|
||||
#, fuzzy, c-format
|
||||
msgid "excluding directory %s\n"
|
||||
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
|
||||
|
@ -3263,7 +3263,7 @@ msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
|
|||
#. * For packages being removed:
|
||||
#. * - count files.
|
||||
#.
|
||||
#: lib/transaction.c:1047
|
||||
#: lib/transaction.c:1068
|
||||
#, c-format
|
||||
msgid "sanity checking %d elements\n"
|
||||
msgstr ""
|
||||
|
@ -3276,7 +3276,7 @@ msgstr ""
|
|||
#. * calling fpLookupList only once. I'm not sure that the speedup is
|
||||
#. * worth the trouble though.
|
||||
#.
|
||||
#: lib/transaction.c:1129
|
||||
#: lib/transaction.c:1156
|
||||
#, c-format
|
||||
msgid "computing %d file fingerprints\n"
|
||||
msgstr ""
|
||||
|
@ -3284,7 +3284,7 @@ msgstr ""
|
|||
#. ===============================================
|
||||
#. * Compute file disposition for each package in transaction set.
|
||||
#.
|
||||
#: lib/transaction.c:1206
|
||||
#: lib/transaction.c:1233
|
||||
msgid "computing file dispositions\n"
|
||||
msgstr ""
|
||||
|
||||
|
|
130
po/fi.po
130
po/fi.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2003-01-13 15:26-0500\n"
|
||||
"POT-Creation-Date: 2003-01-17 12:33-0500\n"
|
||||
"PO-Revision-Date: 1998-05-02 21:41:47-0400\n"
|
||||
"Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
|
||||
"Language-Team: Finnish <linux@sot.com>\n"
|
||||
|
@ -735,7 +735,7 @@ msgstr "%s:n kirjoitus ei onnistu"
|
|||
msgid "Could not open %s: %s\n"
|
||||
msgstr "%s:n avaus epäonnistui\n"
|
||||
|
||||
#: build/pack.c:632 lib/psm.c:1650
|
||||
#: build/pack.c:632 lib/psm.c:1657
|
||||
#, fuzzy, c-format
|
||||
msgid "Unable to write package: %s\n"
|
||||
msgstr "%s:n kirjoitus ei onnistu"
|
||||
|
@ -765,7 +765,7 @@ msgstr "%s:n kirjoitus ei onnistu"
|
|||
msgid "Unable to write payload to %s: %s\n"
|
||||
msgstr "%s:n kirjoitus ei onnistu"
|
||||
|
||||
#: build/pack.c:725 lib/psm.c:1941
|
||||
#: build/pack.c:725 lib/psm.c:1948
|
||||
#, c-format
|
||||
msgid "Wrote: %s\n"
|
||||
msgstr ""
|
||||
|
@ -1379,74 +1379,74 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr "pgp epäonnistui"
|
||||
|
||||
#: lib/depends.c:164
|
||||
#: lib/depends.c:182
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr "paketti %s ei ole asennettu\n"
|
||||
|
||||
#: lib/depends.c:362
|
||||
#: lib/depends.c:380
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:389
|
||||
#: lib/depends.c:407
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:406
|
||||
#: lib/depends.c:424
|
||||
#, fuzzy
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr "tiedostoa %s ei omista mikään paketti\n"
|
||||
|
||||
#: lib/depends.c:435
|
||||
#: lib/depends.c:453
|
||||
#, fuzzy
|
||||
msgid "(db files)"
|
||||
msgstr "en voinut avata %s: %s"
|
||||
|
||||
#: lib/depends.c:448
|
||||
#: lib/depends.c:466
|
||||
msgid "(db provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:461
|
||||
#: lib/depends.c:479
|
||||
#, fuzzy
|
||||
msgid "(db package)"
|
||||
msgstr "kysele kaikki paketit"
|
||||
|
||||
#: lib/depends.c:815
|
||||
#: lib/depends.c:833
|
||||
#, c-format
|
||||
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:937
|
||||
#: lib/depends.c:955
|
||||
#, fuzzy, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr "virhe poistettaessa tietuetta %s %s:stä"
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1167
|
||||
#: lib/depends.c:1185
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1267
|
||||
#: lib/depends.c:1285
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, tree, "
|
||||
"depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1351
|
||||
#: lib/depends.c:1369
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1421
|
||||
#: lib/depends.c:1439
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1456
|
||||
#: lib/depends.c:1474
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1461
|
||||
#: lib/depends.c:1479
|
||||
#, c-format
|
||||
msgid "rpmtsOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
@ -2259,182 +2259,182 @@ msgstr "virhe: ohitan %s:n, siirto ep
|
|||
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
|
||||
msgstr "skriptin ajo epäonnistui"
|
||||
|
||||
#: lib/psm.c:1420
|
||||
#: lib/psm.c:1421
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s has %d files, test = %d\n"
|
||||
msgstr "paketti %s-%s-%s sisältää jaettuja tiedostoja\n"
|
||||
|
||||
#: lib/psm.c:1553
|
||||
#: lib/psm.c:1560
|
||||
#, c-format
|
||||
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1662
|
||||
#: lib/psm.c:1669
|
||||
#, fuzzy
|
||||
msgid "Unable to reload signature header\n"
|
||||
msgstr "%s:n kirjoitus ei onnistu"
|
||||
|
||||
#: lib/psm.c:1708
|
||||
#: lib/psm.c:1715
|
||||
#, c-format
|
||||
msgid "user %s does not exist - using root\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1717
|
||||
#: lib/psm.c:1724
|
||||
#, fuzzy, c-format
|
||||
msgid "group %s does not exist - using root\n"
|
||||
msgstr "ryhmässä %s ei ole paketteja\n"
|
||||
|
||||
#: lib/psm.c:1765
|
||||
#: lib/psm.c:1772
|
||||
#, fuzzy, c-format
|
||||
msgid "unpacking of archive failed%s%s: %s\n"
|
||||
msgstr "%s:n avaus ei onnistunut: %s\n"
|
||||
|
||||
#: lib/psm.c:1766
|
||||
#: lib/psm.c:1773
|
||||
msgid " on file "
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1949
|
||||
#: lib/psm.c:1956
|
||||
#, fuzzy, c-format
|
||||
msgid "%s failed on file %s: %s\n"
|
||||
msgstr "en voinut avata %s: %s"
|
||||
|
||||
#: lib/psm.c:1952
|
||||
#: lib/psm.c:1959
|
||||
#, fuzzy, c-format
|
||||
msgid "%s failed: %s\n"
|
||||
msgstr "pgp epäonnistui"
|
||||
|
||||
#: lib/query.c:122 lib/rpmts.c:430
|
||||
#: lib/query.c:122 lib/rpmts.c:451
|
||||
#, fuzzy, c-format
|
||||
msgid "incorrect format: %s\n"
|
||||
msgstr "virhe formaatissa: %s\n"
|
||||
|
||||
#. @-boundswrite@
|
||||
#: lib/query.c:181
|
||||
#: lib/query.c:186
|
||||
msgid "(contains no files)"
|
||||
msgstr "(ei tiedostoja)"
|
||||
|
||||
#: lib/query.c:246
|
||||
#: lib/query.c:251
|
||||
msgid "normal "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:249
|
||||
#: lib/query.c:254
|
||||
msgid "replaced "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:252
|
||||
#: lib/query.c:257
|
||||
#, fuzzy
|
||||
msgid "not installed "
|
||||
msgstr "paketti %s ei ole asennettu\n"
|
||||
|
||||
#: lib/query.c:255
|
||||
#: lib/query.c:260
|
||||
msgid "net shared "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:258
|
||||
#: lib/query.c:263
|
||||
msgid "wrong color "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:261
|
||||
#: lib/query.c:266
|
||||
msgid "(no state) "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:264
|
||||
#: lib/query.c:269
|
||||
#, fuzzy, c-format
|
||||
msgid "(unknown %3d) "
|
||||
msgstr "(tuntematon tyyppi)"
|
||||
|
||||
#: lib/query.c:282
|
||||
#: lib/query.c:287
|
||||
#, fuzzy
|
||||
msgid "package has not file owner/group lists\n"
|
||||
msgstr "paketilla ei ole nimeä"
|
||||
|
||||
#: lib/query.c:315
|
||||
#: lib/query.c:320
|
||||
#, fuzzy
|
||||
msgid "package has neither file owner or id lists\n"
|
||||
msgstr "paketilla ei ole nimeä"
|
||||
|
||||
#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
|
||||
#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
|
||||
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
|
||||
#, fuzzy, c-format
|
||||
msgid "open of %s failed: %s\n"
|
||||
msgstr "%s:n avaus ei onnistunut: %s\n"
|
||||
|
||||
#: lib/query.c:459
|
||||
#: lib/query.c:464
|
||||
#, c-format
|
||||
msgid "query of %s failed\n"
|
||||
msgstr "%s:n kysely ei onnistunut\n"
|
||||
|
||||
#: lib/query.c:469
|
||||
#: lib/query.c:474
|
||||
msgid "old format source packages cannot be queried\n"
|
||||
msgstr "vanhan formaatin lähdekoodipaketteja ei voi kysellä\n"
|
||||
|
||||
#: lib/query.c:502 lib/rpminstall.c:608
|
||||
#: lib/query.c:507 lib/rpminstall.c:608
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: not an rpm package (or package manifest): %s\n"
|
||||
msgstr "mikään paketti ei laukaise %s:a\n"
|
||||
|
||||
#: lib/query.c:531
|
||||
#: lib/query.c:536
|
||||
#, fuzzy
|
||||
msgid "no packages\n"
|
||||
msgstr "kysele kaikki paketit"
|
||||
|
||||
#: lib/query.c:551
|
||||
#: lib/query.c:556
|
||||
#, c-format
|
||||
msgid "group %s does not contain any packages\n"
|
||||
msgstr "ryhmässä %s ei ole paketteja\n"
|
||||
|
||||
#: lib/query.c:560
|
||||
#: lib/query.c:565
|
||||
#, c-format
|
||||
msgid "no package triggers %s\n"
|
||||
msgstr "mikään paketti ei laukaise %s:a\n"
|
||||
|
||||
#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
|
||||
#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
|
||||
#, fuzzy, c-format
|
||||
msgid "malformed %s: %s\n"
|
||||
msgstr "En voi lukea %s: %s."
|
||||
|
||||
#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
|
||||
#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
|
||||
#, fuzzy, c-format
|
||||
msgid "no package matches %s: %s\n"
|
||||
msgstr "mikään paketti ei laukaise %s:a\n"
|
||||
|
||||
#: lib/query.c:663
|
||||
#: lib/query.c:668
|
||||
#, c-format
|
||||
msgid "no package requires %s\n"
|
||||
msgstr "mikään pakettie ei tarvitse %s:a\n"
|
||||
|
||||
#: lib/query.c:674
|
||||
#: lib/query.c:679
|
||||
#, c-format
|
||||
msgid "no package provides %s\n"
|
||||
msgstr "mikään paketti ei tarjoa %s:a\n"
|
||||
|
||||
#: lib/query.c:709
|
||||
#: lib/query.c:714
|
||||
#, fuzzy, c-format
|
||||
msgid "file %s: %s\n"
|
||||
msgstr "en voinut avata %s: %s"
|
||||
|
||||
#: lib/query.c:713
|
||||
#: lib/query.c:718
|
||||
#, c-format
|
||||
msgid "file %s is not owned by any package\n"
|
||||
msgstr "tiedostoa %s ei omista mikään paketti\n"
|
||||
|
||||
#: lib/query.c:738
|
||||
#: lib/query.c:743
|
||||
#, c-format
|
||||
msgid "invalid package number: %s\n"
|
||||
msgstr "virheellinen paketin numero: %s\n"
|
||||
|
||||
#: lib/query.c:741
|
||||
#: lib/query.c:746
|
||||
#, fuzzy, c-format
|
||||
msgid "package record number: %u\n"
|
||||
msgstr "virheellinen paketin numero: %s\n"
|
||||
|
||||
#: lib/query.c:746
|
||||
#: lib/query.c:751
|
||||
#, fuzzy, c-format
|
||||
msgid "record %u could not be read\n"
|
||||
msgstr "tietuetta %d ei voitu lukea\n"
|
||||
|
||||
#: lib/query.c:756 lib/rpminstall.c:779
|
||||
#: lib/query.c:761 lib/rpminstall.c:779
|
||||
#, c-format
|
||||
msgid "package %s is not installed\n"
|
||||
msgstr "paketti %s ei ole asennettu\n"
|
||||
|
@ -2918,28 +2918,28 @@ msgstr ""
|
|||
msgid "Unable to open %s for reading: %s.\n"
|
||||
msgstr "En voi avata %s luettavaksi: %s."
|
||||
|
||||
#: lib/rpmts.c:135
|
||||
#: lib/rpmts.c:156
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr "virhe: en voi avata %s%s/packages.rpm\n"
|
||||
|
||||
#: lib/rpmts.c:320
|
||||
#: lib/rpmts.c:341
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot open Solve database in %s\n"
|
||||
msgstr "virhe: en voi avata %s%s/packages.rpm\n"
|
||||
|
||||
#: lib/rpmts.c:462
|
||||
#: lib/rpmts.c:483
|
||||
#, fuzzy, c-format
|
||||
msgid "Adding: %s\n"
|
||||
msgstr "en voinut avata %s: %s"
|
||||
|
||||
#: lib/rpmts.c:474
|
||||
#: lib/rpmts.c:495
|
||||
#, fuzzy, c-format
|
||||
msgid "Suggesting: %s\n"
|
||||
msgstr "Haen: %s\n"
|
||||
|
||||
#. Get available space on mounted file systems.
|
||||
#: lib/rpmts.c:906
|
||||
#: lib/rpmts.c:927
|
||||
msgid "getting list of mounted filesystems\n"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3116,7 +3116,7 @@ msgid "%s skipped due to missingok flag\n"
|
|||
msgstr ""
|
||||
|
||||
#. @innercontinue@
|
||||
#: lib/transaction.c:935
|
||||
#: lib/transaction.c:956
|
||||
#, fuzzy, c-format
|
||||
msgid "excluding directory %s\n"
|
||||
msgstr "virhe luotaessa hakemistoa %s: %s"
|
||||
|
@ -3129,7 +3129,7 @@ msgstr "virhe luotaessa hakemistoa %s: %s"
|
|||
#. * For packages being removed:
|
||||
#. * - count files.
|
||||
#.
|
||||
#: lib/transaction.c:1047
|
||||
#: lib/transaction.c:1068
|
||||
#, c-format
|
||||
msgid "sanity checking %d elements\n"
|
||||
msgstr ""
|
||||
|
@ -3142,7 +3142,7 @@ msgstr ""
|
|||
#. * calling fpLookupList only once. I'm not sure that the speedup is
|
||||
#. * worth the trouble though.
|
||||
#.
|
||||
#: lib/transaction.c:1129
|
||||
#: lib/transaction.c:1156
|
||||
#, c-format
|
||||
msgid "computing %d file fingerprints\n"
|
||||
msgstr ""
|
||||
|
@ -3150,7 +3150,7 @@ msgstr ""
|
|||
#. ===============================================
|
||||
#. * Compute file disposition for each package in transaction set.
|
||||
#.
|
||||
#: lib/transaction.c:1206
|
||||
#: lib/transaction.c:1233
|
||||
msgid "computing file dispositions\n"
|
||||
msgstr ""
|
||||
|
||||
|
|
130
po/fr.po
130
po/fr.po
|
@ -6,7 +6,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2003-01-13 15:26-0500\n"
|
||||
"POT-Creation-Date: 2003-01-17 12:33-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"
|
||||
|
@ -756,7 +756,7 @@ msgstr "impossible d'ouvrir: %s\n"
|
|||
msgid "Could not open %s: %s\n"
|
||||
msgstr "impossible d'ouvrir: %s\n"
|
||||
|
||||
#: build/pack.c:632 lib/psm.c:1650
|
||||
#: build/pack.c:632 lib/psm.c:1657
|
||||
#, fuzzy, c-format
|
||||
msgid "Unable to write package: %s\n"
|
||||
msgstr "impossible d'ouvrir: %s\n"
|
||||
|
@ -786,7 +786,7 @@ msgstr "impossible d'ouvrir: %s\n"
|
|||
msgid "Unable to write payload to %s: %s\n"
|
||||
msgstr "impossible d'ouvrir: %s\n"
|
||||
|
||||
#: build/pack.c:725 lib/psm.c:1941
|
||||
#: build/pack.c:725 lib/psm.c:1948
|
||||
#, c-format
|
||||
msgid "Wrote: %s\n"
|
||||
msgstr ""
|
||||
|
@ -1406,73 +1406,73 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr "La construction a chou.\n"
|
||||
|
||||
#: lib/depends.c:164
|
||||
#: lib/depends.c:182
|
||||
#, 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:362
|
||||
#: lib/depends.c:380
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:389
|
||||
#: lib/depends.c:407
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:406
|
||||
#: lib/depends.c:424
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:435
|
||||
#: lib/depends.c:453
|
||||
#, fuzzy
|
||||
msgid "(db files)"
|
||||
msgstr "impossible d'ouvrir: %s\n"
|
||||
|
||||
#: lib/depends.c:448
|
||||
#: lib/depends.c:466
|
||||
msgid "(db provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:461
|
||||
#: lib/depends.c:479
|
||||
#, fuzzy
|
||||
msgid "(db package)"
|
||||
msgstr "aucun package n'a t spcifi pour l'installation"
|
||||
|
||||
#: lib/depends.c:815
|
||||
#: lib/depends.c:833
|
||||
#, c-format
|
||||
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:937
|
||||
#: lib/depends.c:955
|
||||
#, fuzzy, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr "impossible d'ouvrir: %s\n"
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1167
|
||||
#: lib/depends.c:1185
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1267
|
||||
#: lib/depends.c:1285
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, tree, "
|
||||
"depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1351
|
||||
#: lib/depends.c:1369
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1421
|
||||
#: lib/depends.c:1439
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1456
|
||||
#: lib/depends.c:1474
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1461
|
||||
#: lib/depends.c:1479
|
||||
#, c-format
|
||||
msgid "rpmtsOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
@ -2300,182 +2300,182 @@ msgstr ""
|
|||
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1420
|
||||
#: lib/psm.c:1421
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s has %d files, test = %d\n"
|
||||
msgstr "aucun package n'a t spcifi pour l'installation"
|
||||
|
||||
#: lib/psm.c:1553
|
||||
#: lib/psm.c:1560
|
||||
#, c-format
|
||||
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1662
|
||||
#: lib/psm.c:1669
|
||||
#, fuzzy
|
||||
msgid "Unable to reload signature header\n"
|
||||
msgstr "impossible d'ouvrir: %s\n"
|
||||
|
||||
#: lib/psm.c:1708
|
||||
#: lib/psm.c:1715
|
||||
#, c-format
|
||||
msgid "user %s does not exist - using root\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1717
|
||||
#: lib/psm.c:1724
|
||||
#, c-format
|
||||
msgid "group %s does not exist - using root\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1765
|
||||
#: lib/psm.c:1772
|
||||
#, fuzzy, c-format
|
||||
msgid "unpacking of archive failed%s%s: %s\n"
|
||||
msgstr "La construction a chou.\n"
|
||||
|
||||
#: lib/psm.c:1766
|
||||
#: lib/psm.c:1773
|
||||
msgid " on file "
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1949
|
||||
#: lib/psm.c:1956
|
||||
#, fuzzy, c-format
|
||||
msgid "%s failed on file %s: %s\n"
|
||||
msgstr "impossible d'ouvrir: %s\n"
|
||||
|
||||
#: lib/psm.c:1952
|
||||
#: lib/psm.c:1959
|
||||
#, fuzzy, c-format
|
||||
msgid "%s failed: %s\n"
|
||||
msgstr "La construction a chou.\n"
|
||||
|
||||
#: lib/query.c:122 lib/rpmts.c:430
|
||||
#: lib/query.c:122 lib/rpmts.c:451
|
||||
#, c-format
|
||||
msgid "incorrect format: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#. @-boundswrite@
|
||||
#: lib/query.c:181
|
||||
#: lib/query.c:186
|
||||
msgid "(contains no files)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:246
|
||||
#: lib/query.c:251
|
||||
msgid "normal "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:249
|
||||
#: lib/query.c:254
|
||||
msgid "replaced "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:252
|
||||
#: lib/query.c:257
|
||||
#, fuzzy
|
||||
msgid "not installed "
|
||||
msgstr "aucun package n'a t spcifi pour l'installation"
|
||||
|
||||
#: lib/query.c:255
|
||||
#: lib/query.c:260
|
||||
msgid "net shared "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:258
|
||||
#: lib/query.c:263
|
||||
msgid "wrong color "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:261
|
||||
#: lib/query.c:266
|
||||
msgid "(no state) "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:264
|
||||
#: lib/query.c:269
|
||||
#, c-format
|
||||
msgid "(unknown %3d) "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:282
|
||||
#: lib/query.c:287
|
||||
#, fuzzy
|
||||
msgid "package has not file owner/group lists\n"
|
||||
msgstr "aucun package n'a t spcifi pour l'installation"
|
||||
|
||||
#: lib/query.c:315
|
||||
#: lib/query.c:320
|
||||
#, fuzzy
|
||||
msgid "package has neither file owner or id lists\n"
|
||||
msgstr "aucun package n'a t spcifi pour l'installation"
|
||||
|
||||
#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
|
||||
#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
|
||||
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
|
||||
#, fuzzy, c-format
|
||||
msgid "open of %s failed: %s\n"
|
||||
msgstr "La construction a chou.\n"
|
||||
|
||||
#: lib/query.c:459
|
||||
#: lib/query.c:464
|
||||
#, c-format
|
||||
msgid "query of %s failed\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:469
|
||||
#: lib/query.c:474
|
||||
msgid "old format source packages cannot be queried\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:502 lib/rpminstall.c:608
|
||||
#: lib/query.c:507 lib/rpminstall.c:608
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: not an rpm package (or package manifest): %s\n"
|
||||
msgstr "aucun package n'a t spcifi pour l'installation"
|
||||
|
||||
#: lib/query.c:531
|
||||
#: lib/query.c:536
|
||||
#, fuzzy
|
||||
msgid "no packages\n"
|
||||
msgstr "aucun package n'a t spcifi pour l'installation"
|
||||
|
||||
#: lib/query.c:551
|
||||
#: lib/query.c:556
|
||||
#, c-format
|
||||
msgid "group %s does not contain any packages\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:560
|
||||
#: lib/query.c:565
|
||||
#, fuzzy, c-format
|
||||
msgid "no package triggers %s\n"
|
||||
msgstr "aucun package n'a t spcifi pour l'installation"
|
||||
|
||||
#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
|
||||
#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
|
||||
#, fuzzy, c-format
|
||||
msgid "malformed %s: %s\n"
|
||||
msgstr "impossible d'ouvrir: %s\n"
|
||||
|
||||
#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
|
||||
#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
|
||||
#, fuzzy, c-format
|
||||
msgid "no package matches %s: %s\n"
|
||||
msgstr "aucun package n'a t spcifi pour l'installation"
|
||||
|
||||
#: lib/query.c:663
|
||||
#: lib/query.c:668
|
||||
#, c-format
|
||||
msgid "no package requires %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:674
|
||||
#: lib/query.c:679
|
||||
#, c-format
|
||||
msgid "no package provides %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:709
|
||||
#: lib/query.c:714
|
||||
#, c-format
|
||||
msgid "file %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:713
|
||||
#: lib/query.c:718
|
||||
#, c-format
|
||||
msgid "file %s is not owned by any package\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:738
|
||||
#: lib/query.c:743
|
||||
#, c-format
|
||||
msgid "invalid package number: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:741
|
||||
#: lib/query.c:746
|
||||
#, c-format
|
||||
msgid "package record number: %u\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:746
|
||||
#: lib/query.c:751
|
||||
#, c-format
|
||||
msgid "record %u could not be read\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:756 lib/rpminstall.c:779
|
||||
#: lib/query.c:761 lib/rpminstall.c:779
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s is not installed\n"
|
||||
msgstr "aucun package n'a t spcifi pour l'installation"
|
||||
|
@ -2958,28 +2958,28 @@ msgstr ""
|
|||
msgid "Unable to open %s for reading: %s.\n"
|
||||
msgstr "impossible d'ouvrir: %s\n"
|
||||
|
||||
#: lib/rpmts.c:135
|
||||
#: lib/rpmts.c:156
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr "impossible d'ouvrir: %s\n"
|
||||
|
||||
#: lib/rpmts.c:320
|
||||
#: lib/rpmts.c:341
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot open Solve database in %s\n"
|
||||
msgstr "impossible d'ouvrir: %s\n"
|
||||
|
||||
#: lib/rpmts.c:462
|
||||
#: lib/rpmts.c:483
|
||||
#, fuzzy, c-format
|
||||
msgid "Adding: %s\n"
|
||||
msgstr "impossible d'ouvrir: %s\n"
|
||||
|
||||
#: lib/rpmts.c:474
|
||||
#: lib/rpmts.c:495
|
||||
#, c-format
|
||||
msgid "Suggesting: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#. Get available space on mounted file systems.
|
||||
#: lib/rpmts.c:906
|
||||
#: lib/rpmts.c:927
|
||||
msgid "getting list of mounted filesystems\n"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3154,7 +3154,7 @@ msgid "%s skipped due to missingok flag\n"
|
|||
msgstr ""
|
||||
|
||||
#. @innercontinue@
|
||||
#: lib/transaction.c:935
|
||||
#: lib/transaction.c:956
|
||||
#, c-format
|
||||
msgid "excluding directory %s\n"
|
||||
msgstr ""
|
||||
|
@ -3167,7 +3167,7 @@ msgstr ""
|
|||
#. * For packages being removed:
|
||||
#. * - count files.
|
||||
#.
|
||||
#: lib/transaction.c:1047
|
||||
#: lib/transaction.c:1068
|
||||
#, c-format
|
||||
msgid "sanity checking %d elements\n"
|
||||
msgstr ""
|
||||
|
@ -3180,7 +3180,7 @@ msgstr ""
|
|||
#. * calling fpLookupList only once. I'm not sure that the speedup is
|
||||
#. * worth the trouble though.
|
||||
#.
|
||||
#: lib/transaction.c:1129
|
||||
#: lib/transaction.c:1156
|
||||
#, c-format
|
||||
msgid "computing %d file fingerprints\n"
|
||||
msgstr ""
|
||||
|
@ -3188,7 +3188,7 @@ msgstr ""
|
|||
#. ===============================================
|
||||
#. * Compute file disposition for each package in transaction set.
|
||||
#.
|
||||
#: lib/transaction.c:1206
|
||||
#: lib/transaction.c:1233
|
||||
msgid "computing file dispositions\n"
|
||||
msgstr ""
|
||||
|
||||
|
|
130
po/gl.po
130
po/gl.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.1\n"
|
||||
"POT-Creation-Date: 2003-01-13 15:26-0500\n"
|
||||
"POT-Creation-Date: 2003-01-17 12:33-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"
|
||||
|
@ -701,7 +701,7 @@ msgstr ""
|
|||
msgid "Could not open %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/pack.c:632 lib/psm.c:1650
|
||||
#: build/pack.c:632 lib/psm.c:1657
|
||||
#, c-format
|
||||
msgid "Unable to write package: %s\n"
|
||||
msgstr ""
|
||||
|
@ -731,7 +731,7 @@ msgstr ""
|
|||
msgid "Unable to write payload to %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/pack.c:725 lib/psm.c:1941
|
||||
#: build/pack.c:725 lib/psm.c:1948
|
||||
#, c-format
|
||||
msgid "Wrote: %s\n"
|
||||
msgstr ""
|
||||
|
@ -1320,71 +1320,71 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:164
|
||||
#: lib/depends.c:182
|
||||
#, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:362
|
||||
#: lib/depends.c:380
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:389
|
||||
#: lib/depends.c:407
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:406
|
||||
#: lib/depends.c:424
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:435
|
||||
#: lib/depends.c:453
|
||||
msgid "(db files)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:448
|
||||
#: lib/depends.c:466
|
||||
msgid "(db provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:461
|
||||
#: lib/depends.c:479
|
||||
msgid "(db package)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:815
|
||||
#: lib/depends.c:833
|
||||
#, c-format
|
||||
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:937
|
||||
#: lib/depends.c:955
|
||||
#, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr ""
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1167
|
||||
#: lib/depends.c:1185
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1267
|
||||
#: lib/depends.c:1285
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, tree, "
|
||||
"depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1351
|
||||
#: lib/depends.c:1369
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1421
|
||||
#: lib/depends.c:1439
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1456
|
||||
#: lib/depends.c:1474
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1461
|
||||
#: lib/depends.c:1479
|
||||
#, c-format
|
||||
msgid "rpmtsOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
@ -2129,177 +2129,177 @@ msgstr ""
|
|||
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1420
|
||||
#: lib/psm.c:1421
|
||||
#, c-format
|
||||
msgid "%s: %s has %d files, test = %d\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1553
|
||||
#: lib/psm.c:1560
|
||||
#, c-format
|
||||
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1662
|
||||
#: lib/psm.c:1669
|
||||
msgid "Unable to reload signature header\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1708
|
||||
#: lib/psm.c:1715
|
||||
#, c-format
|
||||
msgid "user %s does not exist - using root\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1717
|
||||
#: lib/psm.c:1724
|
||||
#, c-format
|
||||
msgid "group %s does not exist - using root\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1765
|
||||
#: lib/psm.c:1772
|
||||
#, c-format
|
||||
msgid "unpacking of archive failed%s%s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1766
|
||||
#: lib/psm.c:1773
|
||||
msgid " on file "
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1949
|
||||
#: lib/psm.c:1956
|
||||
#, c-format
|
||||
msgid "%s failed on file %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1952
|
||||
#: lib/psm.c:1959
|
||||
#, c-format
|
||||
msgid "%s failed: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:122 lib/rpmts.c:430
|
||||
#: lib/query.c:122 lib/rpmts.c:451
|
||||
#, c-format
|
||||
msgid "incorrect format: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#. @-boundswrite@
|
||||
#: lib/query.c:181
|
||||
#: lib/query.c:186
|
||||
msgid "(contains no files)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:246
|
||||
#: lib/query.c:251
|
||||
msgid "normal "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:249
|
||||
#: lib/query.c:254
|
||||
msgid "replaced "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:252
|
||||
#: lib/query.c:257
|
||||
msgid "not installed "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:255
|
||||
#: lib/query.c:260
|
||||
msgid "net shared "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:258
|
||||
#: lib/query.c:263
|
||||
msgid "wrong color "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:261
|
||||
#: lib/query.c:266
|
||||
msgid "(no state) "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:264
|
||||
#: lib/query.c:269
|
||||
#, c-format
|
||||
msgid "(unknown %3d) "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:282
|
||||
#: lib/query.c:287
|
||||
msgid "package has not file owner/group lists\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:315
|
||||
#: lib/query.c:320
|
||||
msgid "package has neither file owner or id lists\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
|
||||
#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
|
||||
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
|
||||
#, c-format
|
||||
msgid "open of %s failed: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:459
|
||||
#: lib/query.c:464
|
||||
#, c-format
|
||||
msgid "query of %s failed\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:469
|
||||
#: lib/query.c:474
|
||||
msgid "old format source packages cannot be queried\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:502 lib/rpminstall.c:608
|
||||
#: lib/query.c:507 lib/rpminstall.c:608
|
||||
#, c-format
|
||||
msgid "%s: not an rpm package (or package manifest): %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:531
|
||||
#: lib/query.c:536
|
||||
msgid "no packages\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:551
|
||||
#: lib/query.c:556
|
||||
#, c-format
|
||||
msgid "group %s does not contain any packages\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:560
|
||||
#: lib/query.c:565
|
||||
#, c-format
|
||||
msgid "no package triggers %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
|
||||
#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
|
||||
#, c-format
|
||||
msgid "malformed %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
|
||||
#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
|
||||
#, c-format
|
||||
msgid "no package matches %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:663
|
||||
#: lib/query.c:668
|
||||
#, c-format
|
||||
msgid "no package requires %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:674
|
||||
#: lib/query.c:679
|
||||
#, c-format
|
||||
msgid "no package provides %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:709
|
||||
#: lib/query.c:714
|
||||
#, c-format
|
||||
msgid "file %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:713
|
||||
#: lib/query.c:718
|
||||
#, c-format
|
||||
msgid "file %s is not owned by any package\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:738
|
||||
#: lib/query.c:743
|
||||
#, c-format
|
||||
msgid "invalid package number: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:741
|
||||
#: lib/query.c:746
|
||||
#, c-format
|
||||
msgid "package record number: %u\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:746
|
||||
#: lib/query.c:751
|
||||
#, c-format
|
||||
msgid "record %u could not be read\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:756 lib/rpminstall.c:779
|
||||
#: lib/query.c:761 lib/rpminstall.c:779
|
||||
#, c-format
|
||||
msgid "package %s is not installed\n"
|
||||
msgstr ""
|
||||
|
@ -2775,28 +2775,28 @@ msgstr ""
|
|||
msgid "Unable to open %s for reading: %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmts.c:135
|
||||
#: lib/rpmts.c:156
|
||||
#, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmts.c:320
|
||||
#: lib/rpmts.c:341
|
||||
#, c-format
|
||||
msgid "cannot open Solve database in %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmts.c:462
|
||||
#: lib/rpmts.c:483
|
||||
#, c-format
|
||||
msgid "Adding: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmts.c:474
|
||||
#: lib/rpmts.c:495
|
||||
#, c-format
|
||||
msgid "Suggesting: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#. Get available space on mounted file systems.
|
||||
#: lib/rpmts.c:906
|
||||
#: lib/rpmts.c:927
|
||||
msgid "getting list of mounted filesystems\n"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2965,7 +2965,7 @@ msgid "%s skipped due to missingok flag\n"
|
|||
msgstr ""
|
||||
|
||||
#. @innercontinue@
|
||||
#: lib/transaction.c:935
|
||||
#: lib/transaction.c:956
|
||||
#, c-format
|
||||
msgid "excluding directory %s\n"
|
||||
msgstr ""
|
||||
|
@ -2978,7 +2978,7 @@ msgstr ""
|
|||
#. * For packages being removed:
|
||||
#. * - count files.
|
||||
#.
|
||||
#: lib/transaction.c:1047
|
||||
#: lib/transaction.c:1068
|
||||
#, c-format
|
||||
msgid "sanity checking %d elements\n"
|
||||
msgstr ""
|
||||
|
@ -2991,7 +2991,7 @@ msgstr ""
|
|||
#. * calling fpLookupList only once. I'm not sure that the speedup is
|
||||
#. * worth the trouble though.
|
||||
#.
|
||||
#: lib/transaction.c:1129
|
||||
#: lib/transaction.c:1156
|
||||
#, c-format
|
||||
msgid "computing %d file fingerprints\n"
|
||||
msgstr ""
|
||||
|
@ -2999,7 +2999,7 @@ msgstr ""
|
|||
#. ===============================================
|
||||
#. * Compute file disposition for each package in transaction set.
|
||||
#.
|
||||
#: lib/transaction.c:1206
|
||||
#: lib/transaction.c:1233
|
||||
msgid "computing file dispositions\n"
|
||||
msgstr ""
|
||||
|
||||
|
|
130
po/is.po
130
po/is.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2003-01-13 15:26-0500\n"
|
||||
"POT-Creation-Date: 2003-01-17 12:33-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"
|
||||
|
@ -708,7 +708,7 @@ msgstr "Get ekki lesi
|
|||
msgid "Could not open %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/pack.c:632 lib/psm.c:1650
|
||||
#: build/pack.c:632 lib/psm.c:1657
|
||||
#, c-format
|
||||
msgid "Unable to write package: %s\n"
|
||||
msgstr "Get ekki ritað í pakka: %s\n"
|
||||
|
@ -738,7 +738,7 @@ msgstr "Get ekki lesi
|
|||
msgid "Unable to write payload to %s: %s\n"
|
||||
msgstr "Get ekki ritað innihald í %s: %s\n"
|
||||
|
||||
#: build/pack.c:725 lib/psm.c:1941
|
||||
#: build/pack.c:725 lib/psm.c:1948
|
||||
#, c-format
|
||||
msgid "Wrote: %s\n"
|
||||
msgstr "Skrifaði: %s\n"
|
||||
|
@ -1331,72 +1331,72 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:164
|
||||
#: lib/depends.c:182
|
||||
#, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:362
|
||||
#: lib/depends.c:380
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:389
|
||||
#: lib/depends.c:407
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:406
|
||||
#: lib/depends.c:424
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:435
|
||||
#: lib/depends.c:453
|
||||
msgid "(db files)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:448
|
||||
#: lib/depends.c:466
|
||||
msgid "(db provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:461
|
||||
#: lib/depends.c:479
|
||||
#, fuzzy
|
||||
msgid "(db package)"
|
||||
msgstr "uppfæra pakka"
|
||||
|
||||
#: lib/depends.c:815
|
||||
#: lib/depends.c:833
|
||||
#, c-format
|
||||
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:937
|
||||
#: lib/depends.c:955
|
||||
#, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr ""
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1167
|
||||
#: lib/depends.c:1185
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1267
|
||||
#: lib/depends.c:1285
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, tree, "
|
||||
"depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1351
|
||||
#: lib/depends.c:1369
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1421
|
||||
#: lib/depends.c:1439
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1456
|
||||
#: lib/depends.c:1474
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1461
|
||||
#: lib/depends.c:1479
|
||||
#, c-format
|
||||
msgid "rpmtsOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
@ -2156,178 +2156,178 @@ msgstr ""
|
|||
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1420
|
||||
#: lib/psm.c:1421
|
||||
#, c-format
|
||||
msgid "%s: %s has %d files, test = %d\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1553
|
||||
#: lib/psm.c:1560
|
||||
#, c-format
|
||||
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1662
|
||||
#: lib/psm.c:1669
|
||||
#, fuzzy
|
||||
msgid "Unable to reload signature header\n"
|
||||
msgstr "Get ekki lesið haus úr %s: %s\n"
|
||||
|
||||
#: lib/psm.c:1708
|
||||
#: lib/psm.c:1715
|
||||
#, c-format
|
||||
msgid "user %s does not exist - using root\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1717
|
||||
#: lib/psm.c:1724
|
||||
#, c-format
|
||||
msgid "group %s does not exist - using root\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1765
|
||||
#: lib/psm.c:1772
|
||||
#, c-format
|
||||
msgid "unpacking of archive failed%s%s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1766
|
||||
#: lib/psm.c:1773
|
||||
msgid " on file "
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1949
|
||||
#: lib/psm.c:1956
|
||||
#, fuzzy, c-format
|
||||
msgid "%s failed on file %s: %s\n"
|
||||
msgstr "gat ekki opnað %s: %s\n"
|
||||
|
||||
#: lib/psm.c:1952
|
||||
#: lib/psm.c:1959
|
||||
#, fuzzy, c-format
|
||||
msgid "%s failed: %s\n"
|
||||
msgstr "%s brást\n"
|
||||
|
||||
#: lib/query.c:122 lib/rpmts.c:430
|
||||
#: lib/query.c:122 lib/rpmts.c:451
|
||||
#, c-format
|
||||
msgid "incorrect format: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#. @-boundswrite@
|
||||
#: lib/query.c:181
|
||||
#: lib/query.c:186
|
||||
msgid "(contains no files)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:246
|
||||
#: lib/query.c:251
|
||||
msgid "normal "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:249
|
||||
#: lib/query.c:254
|
||||
msgid "replaced "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:252
|
||||
#: lib/query.c:257
|
||||
msgid "not installed "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:255
|
||||
#: lib/query.c:260
|
||||
msgid "net shared "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:258
|
||||
#: lib/query.c:263
|
||||
msgid "wrong color "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:261
|
||||
#: lib/query.c:266
|
||||
msgid "(no state) "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:264
|
||||
#: lib/query.c:269
|
||||
#, c-format
|
||||
msgid "(unknown %3d) "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:282
|
||||
#: lib/query.c:287
|
||||
msgid "package has not file owner/group lists\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:315
|
||||
#: lib/query.c:320
|
||||
msgid "package has neither file owner or id lists\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
|
||||
#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
|
||||
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
|
||||
#, c-format
|
||||
msgid "open of %s failed: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:459
|
||||
#: lib/query.c:464
|
||||
#, c-format
|
||||
msgid "query of %s failed\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:469
|
||||
#: lib/query.c:474
|
||||
msgid "old format source packages cannot be queried\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:502 lib/rpminstall.c:608
|
||||
#: lib/query.c:507 lib/rpminstall.c:608
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: not an rpm package (or package manifest): %s\n"
|
||||
msgstr "get ekki opnað pakka gagnagrunn í\n"
|
||||
|
||||
#: lib/query.c:531
|
||||
#: lib/query.c:536
|
||||
msgid "no packages\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:551
|
||||
#: lib/query.c:556
|
||||
#, c-format
|
||||
msgid "group %s does not contain any packages\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:560
|
||||
#: lib/query.c:565
|
||||
#, c-format
|
||||
msgid "no package triggers %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
|
||||
#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
|
||||
#, fuzzy, c-format
|
||||
msgid "malformed %s: %s\n"
|
||||
msgstr "Get ekki lesið %s: %s.\n"
|
||||
|
||||
#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
|
||||
#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
|
||||
#, fuzzy, c-format
|
||||
msgid "no package matches %s: %s\n"
|
||||
msgstr "get ekki opnað pakka gagnagrunn í\n"
|
||||
|
||||
#: lib/query.c:663
|
||||
#: lib/query.c:668
|
||||
#, c-format
|
||||
msgid "no package requires %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:674
|
||||
#: lib/query.c:679
|
||||
#, c-format
|
||||
msgid "no package provides %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:709
|
||||
#: lib/query.c:714
|
||||
#, c-format
|
||||
msgid "file %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:713
|
||||
#: lib/query.c:718
|
||||
#, c-format
|
||||
msgid "file %s is not owned by any package\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:738
|
||||
#: lib/query.c:743
|
||||
#, c-format
|
||||
msgid "invalid package number: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:741
|
||||
#: lib/query.c:746
|
||||
#, c-format
|
||||
msgid "package record number: %u\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:746
|
||||
#: lib/query.c:751
|
||||
#, c-format
|
||||
msgid "record %u could not be read\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:756 lib/rpminstall.c:779
|
||||
#: lib/query.c:761 lib/rpminstall.c:779
|
||||
#, c-format
|
||||
msgid "package %s is not installed\n"
|
||||
msgstr ""
|
||||
|
@ -2805,28 +2805,28 @@ msgstr ""
|
|||
msgid "Unable to open %s for reading: %s.\n"
|
||||
msgstr "Get ekki opnað %s til lesturs: %s.\n"
|
||||
|
||||
#: lib/rpmts.c:135
|
||||
#: lib/rpmts.c:156
|
||||
#, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr "get ekki opnað pakka gagnagrunn í %s\n"
|
||||
|
||||
#: lib/rpmts.c:320
|
||||
#: lib/rpmts.c:341
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot open Solve database in %s\n"
|
||||
msgstr "get ekki opnað pakka gagnagrunn í %s\n"
|
||||
|
||||
#: lib/rpmts.c:462
|
||||
#: lib/rpmts.c:483
|
||||
#, fuzzy, c-format
|
||||
msgid "Adding: %s\n"
|
||||
msgstr "lína: %s\n"
|
||||
|
||||
#: lib/rpmts.c:474
|
||||
#: lib/rpmts.c:495
|
||||
#, c-format
|
||||
msgid "Suggesting: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#. Get available space on mounted file systems.
|
||||
#: lib/rpmts.c:906
|
||||
#: lib/rpmts.c:927
|
||||
msgid "getting list of mounted filesystems\n"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2996,7 +2996,7 @@ msgid "%s skipped due to missingok flag\n"
|
|||
msgstr ""
|
||||
|
||||
#. @innercontinue@
|
||||
#: lib/transaction.c:935
|
||||
#: lib/transaction.c:956
|
||||
#, c-format
|
||||
msgid "excluding directory %s\n"
|
||||
msgstr ""
|
||||
|
@ -3009,7 +3009,7 @@ msgstr ""
|
|||
#. * For packages being removed:
|
||||
#. * - count files.
|
||||
#.
|
||||
#: lib/transaction.c:1047
|
||||
#: lib/transaction.c:1068
|
||||
#, c-format
|
||||
msgid "sanity checking %d elements\n"
|
||||
msgstr ""
|
||||
|
@ -3022,7 +3022,7 @@ msgstr ""
|
|||
#. * calling fpLookupList only once. I'm not sure that the speedup is
|
||||
#. * worth the trouble though.
|
||||
#.
|
||||
#: lib/transaction.c:1129
|
||||
#: lib/transaction.c:1156
|
||||
#, c-format
|
||||
msgid "computing %d file fingerprints\n"
|
||||
msgstr ""
|
||||
|
@ -3030,7 +3030,7 @@ msgstr ""
|
|||
#. ===============================================
|
||||
#. * Compute file disposition for each package in transaction set.
|
||||
#.
|
||||
#: lib/transaction.c:1206
|
||||
#: lib/transaction.c:1233
|
||||
msgid "computing file dispositions\n"
|
||||
msgstr ""
|
||||
|
||||
|
|
130
po/ja.po
130
po/ja.po
|
@ -6,7 +6,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2003-01-13 15:26-0500\n"
|
||||
"POT-Creation-Date: 2003-01-17 12:33-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"
|
||||
|
@ -751,7 +751,7 @@ msgstr "
|
|||
msgid "Could not open %s: %s\n"
|
||||
msgstr "%s のオープンに失敗しました\n"
|
||||
|
||||
#: build/pack.c:632 lib/psm.c:1650
|
||||
#: build/pack.c:632 lib/psm.c:1657
|
||||
#, fuzzy, c-format
|
||||
msgid "Unable to write package: %s\n"
|
||||
msgstr "パッケージの書き込みに失敗しました: %s"
|
||||
|
@ -781,7 +781,7 @@ msgstr "
|
|||
msgid "Unable to write payload to %s: %s\n"
|
||||
msgstr "パッケージの書き込みに失敗しました: %s"
|
||||
|
||||
#: build/pack.c:725 lib/psm.c:1941
|
||||
#: build/pack.c:725 lib/psm.c:1948
|
||||
#, c-format
|
||||
msgid "Wrote: %s\n"
|
||||
msgstr "書き込み中: %s\n"
|
||||
|
@ -1400,76 +1400,76 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr "失敗 - "
|
||||
|
||||
#: lib/depends.c:164
|
||||
#: lib/depends.c:182
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr "パッケージ %s-%s-%s はすでにインストールされています"
|
||||
|
||||
#: lib/depends.c:362
|
||||
#: lib/depends.c:380
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:389
|
||||
#: lib/depends.c:407
|
||||
#, fuzzy
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr "%s: %s は rpmrc が提供することによって満されます。\n"
|
||||
|
||||
#: lib/depends.c:406
|
||||
#: lib/depends.c:424
|
||||
#, fuzzy
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr "%s: %s は rpmrc が提供することによって満されます。\n"
|
||||
|
||||
#: lib/depends.c:435
|
||||
#: lib/depends.c:453
|
||||
#, fuzzy
|
||||
msgid "(db files)"
|
||||
msgstr "不正なファイルの状態: %s"
|
||||
|
||||
#: lib/depends.c:448
|
||||
#: lib/depends.c:466
|
||||
#, fuzzy
|
||||
msgid "(db provides)"
|
||||
msgstr "%s: %s は db が提供することによって満されます。\n"
|
||||
|
||||
#: lib/depends.c:461
|
||||
#: lib/depends.c:479
|
||||
#, fuzzy
|
||||
msgid "(db package)"
|
||||
msgstr "%d 個のパッケージを見つけました\n"
|
||||
|
||||
#: lib/depends.c:815
|
||||
#: lib/depends.c:833
|
||||
#, c-format
|
||||
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:937
|
||||
#: lib/depends.c:955
|
||||
#, fuzzy, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr "group インデックスを削除します\n"
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1167
|
||||
#: lib/depends.c:1185
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1267
|
||||
#: lib/depends.c:1285
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, tree, "
|
||||
"depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1351
|
||||
#: lib/depends.c:1369
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1421
|
||||
#: lib/depends.c:1439
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1456
|
||||
#: lib/depends.c:1474
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1461
|
||||
#: lib/depends.c:1479
|
||||
#, c-format
|
||||
msgid "rpmtsOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
@ -2295,182 +2295,182 @@ msgstr "%s
|
|||
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
|
||||
msgstr "スクリプトの実行に失敗"
|
||||
|
||||
#: lib/psm.c:1420
|
||||
#: lib/psm.c:1421
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s has %d files, test = %d\n"
|
||||
msgstr "パッケージ: %s-%s-%s ファイルテスト = %d\n"
|
||||
|
||||
#: lib/psm.c:1553
|
||||
#: lib/psm.c:1560
|
||||
#, c-format
|
||||
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1662
|
||||
#: lib/psm.c:1669
|
||||
#, fuzzy
|
||||
msgid "Unable to reload signature header\n"
|
||||
msgstr "アイコンを読むことができません: %s"
|
||||
|
||||
#: lib/psm.c:1708
|
||||
#: lib/psm.c:1715
|
||||
#, fuzzy, c-format
|
||||
msgid "user %s does not exist - using root\n"
|
||||
msgstr "ユーザ %s は存在しません - root を使用します"
|
||||
|
||||
#: lib/psm.c:1717
|
||||
#: lib/psm.c:1724
|
||||
#, fuzzy, c-format
|
||||
msgid "group %s does not exist - using root\n"
|
||||
msgstr "グループ %s は存在しません - root を使用します"
|
||||
|
||||
#: lib/psm.c:1765
|
||||
#: lib/psm.c:1772
|
||||
#, fuzzy, c-format
|
||||
msgid "unpacking of archive failed%s%s: %s\n"
|
||||
msgstr "ファイル %s のアーカイブの伸長に失敗 %s%s: %s"
|
||||
|
||||
#: lib/psm.c:1766
|
||||
#: lib/psm.c:1773
|
||||
#, fuzzy
|
||||
msgid " on file "
|
||||
msgstr "ファイル上"
|
||||
|
||||
#: lib/psm.c:1949
|
||||
#: lib/psm.c:1956
|
||||
#, fuzzy, c-format
|
||||
msgid "%s failed on file %s: %s\n"
|
||||
msgstr "%s のオープンに失敗: %s"
|
||||
|
||||
#: lib/psm.c:1952
|
||||
#: lib/psm.c:1959
|
||||
#, fuzzy, c-format
|
||||
msgid "%s failed: %s\n"
|
||||
msgstr "%s 失敗"
|
||||
|
||||
#: lib/query.c:122 lib/rpmts.c:430
|
||||
#: lib/query.c:122 lib/rpmts.c:451
|
||||
#, fuzzy, c-format
|
||||
msgid "incorrect format: %s\n"
|
||||
msgstr "フォーマット中のエラー: %s\n"
|
||||
|
||||
#. @-boundswrite@
|
||||
#: lib/query.c:181
|
||||
#: lib/query.c:186
|
||||
msgid "(contains no files)"
|
||||
msgstr "ファイルを含んでいません"
|
||||
|
||||
#: lib/query.c:246
|
||||
#: lib/query.c:251
|
||||
msgid "normal "
|
||||
msgstr "通常"
|
||||
|
||||
#: lib/query.c:249
|
||||
#: lib/query.c:254
|
||||
msgid "replaced "
|
||||
msgstr "置き換えられています"
|
||||
|
||||
#: lib/query.c:252
|
||||
#: lib/query.c:257
|
||||
msgid "not installed "
|
||||
msgstr "インストールされていません"
|
||||
|
||||
#: lib/query.c:255
|
||||
#: lib/query.c:260
|
||||
msgid "net shared "
|
||||
msgstr "ネット共有"
|
||||
|
||||
#: lib/query.c:258
|
||||
#: lib/query.c:263
|
||||
msgid "wrong color "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:261
|
||||
#: lib/query.c:266
|
||||
msgid "(no state) "
|
||||
msgstr "(何の状態もありません)"
|
||||
|
||||
#: lib/query.c:264
|
||||
#: lib/query.c:269
|
||||
#, c-format
|
||||
msgid "(unknown %3d) "
|
||||
msgstr "(未知の %3d)"
|
||||
|
||||
#: lib/query.c:282
|
||||
#: lib/query.c:287
|
||||
#, fuzzy
|
||||
msgid "package has not file owner/group lists\n"
|
||||
msgstr "パッケージはファイル所有者や id リストをどちらも持っていません"
|
||||
|
||||
#: lib/query.c:315
|
||||
#: lib/query.c:320
|
||||
#, fuzzy
|
||||
msgid "package has neither file owner or id lists\n"
|
||||
msgstr "パッケージはファイル所有者や id リストをどちらも持っていません"
|
||||
|
||||
#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
|
||||
#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
|
||||
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
|
||||
#, c-format
|
||||
msgid "open of %s failed: %s\n"
|
||||
msgstr "%s のオープンに失敗: %s\n"
|
||||
|
||||
#: lib/query.c:459
|
||||
#: lib/query.c:464
|
||||
#, c-format
|
||||
msgid "query of %s failed\n"
|
||||
msgstr "%s への問い合わせに失敗しました\n"
|
||||
|
||||
#: lib/query.c:469
|
||||
#: lib/query.c:474
|
||||
msgid "old format source packages cannot be queried\n"
|
||||
msgstr "旧形式のソースパッケージを問い合わせることはできません\n"
|
||||
|
||||
#: lib/query.c:502 lib/rpminstall.c:608
|
||||
#: lib/query.c:507 lib/rpminstall.c:608
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: not an rpm package (or package manifest): %s\n"
|
||||
msgstr "%s をトリガーするパッケージは存在しません\n"
|
||||
|
||||
#: lib/query.c:531
|
||||
#: lib/query.c:536
|
||||
#, fuzzy
|
||||
msgid "no packages\n"
|
||||
msgstr "%d 個のパッケージを見つけました\n"
|
||||
|
||||
#: lib/query.c:551
|
||||
#: lib/query.c:556
|
||||
#, c-format
|
||||
msgid "group %s does not contain any packages\n"
|
||||
msgstr "グループ %s に属するパッケージは存在しません\n"
|
||||
|
||||
#: lib/query.c:560
|
||||
#: lib/query.c:565
|
||||
#, c-format
|
||||
msgid "no package triggers %s\n"
|
||||
msgstr "%s をトリガーするパッケージは存在しません\n"
|
||||
|
||||
#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
|
||||
#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
|
||||
#, fuzzy, c-format
|
||||
msgid "malformed %s: %s\n"
|
||||
msgstr "%s を読むのに失敗: $s。"
|
||||
|
||||
#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
|
||||
#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
|
||||
#, fuzzy, c-format
|
||||
msgid "no package matches %s: %s\n"
|
||||
msgstr "%s をトリガーするパッケージは存在しません\n"
|
||||
|
||||
#: lib/query.c:663
|
||||
#: lib/query.c:668
|
||||
#, c-format
|
||||
msgid "no package requires %s\n"
|
||||
msgstr "%s を必要とするパッケージは存在しません\n"
|
||||
|
||||
#: lib/query.c:674
|
||||
#: lib/query.c:679
|
||||
#, c-format
|
||||
msgid "no package provides %s\n"
|
||||
msgstr "%s を提供するパッケージは存在しません\n"
|
||||
|
||||
#: lib/query.c:709
|
||||
#: lib/query.c:714
|
||||
#, c-format
|
||||
msgid "file %s: %s\n"
|
||||
msgstr "ファイル %s: %s\n"
|
||||
|
||||
#: lib/query.c:713
|
||||
#: lib/query.c:718
|
||||
#, c-format
|
||||
msgid "file %s is not owned by any package\n"
|
||||
msgstr "ファイル %s はどのパッケージにも属していません\n"
|
||||
|
||||
#: lib/query.c:738
|
||||
#: lib/query.c:743
|
||||
#, c-format
|
||||
msgid "invalid package number: %s\n"
|
||||
msgstr "無効なパッケージ番号: %s\n"
|
||||
|
||||
#: lib/query.c:741
|
||||
#: lib/query.c:746
|
||||
#, fuzzy, c-format
|
||||
msgid "package record number: %u\n"
|
||||
msgstr "パッケージレコード番号 %d\n"
|
||||
|
||||
#: lib/query.c:746
|
||||
#: lib/query.c:751
|
||||
#, fuzzy, c-format
|
||||
msgid "record %u could not be read\n"
|
||||
msgstr "レコード %d を読むことができませんでした\n"
|
||||
|
||||
#: lib/query.c:756 lib/rpminstall.c:779
|
||||
#: lib/query.c:761 lib/rpminstall.c:779
|
||||
#, c-format
|
||||
msgid "package %s is not installed\n"
|
||||
msgstr "パッケージ %s はインストールされていません\n"
|
||||
|
@ -2966,28 +2966,28 @@ msgstr ""
|
|||
msgid "Unable to open %s for reading: %s.\n"
|
||||
msgstr "読み込むために %s をオープンできません: %s。"
|
||||
|
||||
#: lib/rpmts.c:135
|
||||
#: lib/rpmts.c:156
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr "%s/packages.rpm をオープンできません\n"
|
||||
|
||||
#: lib/rpmts.c:320
|
||||
#: lib/rpmts.c:341
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot open Solve database in %s\n"
|
||||
msgstr "%s/packages.rpm をオープンできません\n"
|
||||
|
||||
#: lib/rpmts.c:462
|
||||
#: lib/rpmts.c:483
|
||||
#, fuzzy, c-format
|
||||
msgid "Adding: %s\n"
|
||||
msgstr "行目: %s"
|
||||
|
||||
#: lib/rpmts.c:474
|
||||
#: lib/rpmts.c:495
|
||||
#, fuzzy, c-format
|
||||
msgid "Suggesting: %s\n"
|
||||
msgstr "ソースは: %s\n"
|
||||
|
||||
#. Get available space on mounted file systems.
|
||||
#: lib/rpmts.c:906
|
||||
#: lib/rpmts.c:927
|
||||
msgid "getting list of mounted filesystems\n"
|
||||
msgstr "マウントされたファイルシステムのリストを取得しています\n"
|
||||
|
||||
|
@ -3165,7 +3165,7 @@ msgid "%s skipped due to missingok flag\n"
|
|||
msgstr "%s は missingok フラグのためスキップします\n"
|
||||
|
||||
#. @innercontinue@
|
||||
#: lib/transaction.c:935
|
||||
#: lib/transaction.c:956
|
||||
#, fuzzy, c-format
|
||||
msgid "excluding directory %s\n"
|
||||
msgstr "ディレクトリの除外: %s\n"
|
||||
|
@ -3178,7 +3178,7 @@ msgstr "
|
|||
#. * For packages being removed:
|
||||
#. * - count files.
|
||||
#.
|
||||
#: lib/transaction.c:1047
|
||||
#: lib/transaction.c:1068
|
||||
#, c-format
|
||||
msgid "sanity checking %d elements\n"
|
||||
msgstr ""
|
||||
|
@ -3191,7 +3191,7 @@ msgstr ""
|
|||
#. * calling fpLookupList only once. I'm not sure that the speedup is
|
||||
#. * worth the trouble though.
|
||||
#.
|
||||
#: lib/transaction.c:1129
|
||||
#: lib/transaction.c:1156
|
||||
#, c-format
|
||||
msgid "computing %d file fingerprints\n"
|
||||
msgstr ""
|
||||
|
@ -3199,7 +3199,7 @@ msgstr ""
|
|||
#. ===============================================
|
||||
#. * Compute file disposition for each package in transaction set.
|
||||
#.
|
||||
#: lib/transaction.c:1206
|
||||
#: lib/transaction.c:1233
|
||||
msgid "computing file dispositions\n"
|
||||
msgstr ""
|
||||
|
||||
|
|
130
po/ko.po
130
po/ko.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.4\n"
|
||||
"POT-Creation-Date: 2003-01-13 15:26-0500\n"
|
||||
"POT-Creation-Date: 2003-01-17 12:33-0500\n"
|
||||
"PO-Revision-Date: 2002-03-04 17:17+0900\n"
|
||||
"Last-Translator: Jong-Hoon Ryu <redhat4u@netian.com>\n"
|
||||
"Language-Team: GNU Translation project <ko@li.org>\n"
|
||||
|
@ -715,7 +715,7 @@ msgstr "
|
|||
msgid "Could not open %s: %s\n"
|
||||
msgstr "%s(을)를 열 수 없음: %s\n"
|
||||
|
||||
#: build/pack.c:632 lib/psm.c:1650
|
||||
#: build/pack.c:632 lib/psm.c:1657
|
||||
#, c-format
|
||||
msgid "Unable to write package: %s\n"
|
||||
msgstr "패키지를 작성할 수 없음: %s\n"
|
||||
|
@ -745,7 +745,7 @@ msgstr "%s
|
|||
msgid "Unable to write payload to %s: %s\n"
|
||||
msgstr "%s에 payload를 작성할 수 없음: %s\n"
|
||||
|
||||
#: build/pack.c:725 lib/psm.c:1941
|
||||
#: build/pack.c:725 lib/psm.c:1948
|
||||
#, c-format
|
||||
msgid "Wrote: %s\n"
|
||||
msgstr "작성: %s\n"
|
||||
|
@ -1341,57 +1341,57 @@ msgstr "
|
|||
msgid " failed - "
|
||||
msgstr " 실패함 - "
|
||||
|
||||
#: lib/depends.c:164
|
||||
#: lib/depends.c:182
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr "%s 패키지는 이미 설치되어 있습니다"
|
||||
|
||||
#: lib/depends.c:362
|
||||
#: lib/depends.c:380
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:389
|
||||
#: lib/depends.c:407
|
||||
#, fuzzy
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr "%s: %-45s 예 (rpmrc이 제공함)\n"
|
||||
|
||||
#: lib/depends.c:406
|
||||
#: lib/depends.c:424
|
||||
#, fuzzy
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr "%s: %-45s 예 (rpmlib이 제공함)\n"
|
||||
|
||||
#: lib/depends.c:435
|
||||
#: lib/depends.c:453
|
||||
#, fuzzy
|
||||
msgid "(db files)"
|
||||
msgstr "잘못된 db 파일 %s\n"
|
||||
|
||||
#: lib/depends.c:448
|
||||
#: lib/depends.c:466
|
||||
#, fuzzy
|
||||
msgid "(db provides)"
|
||||
msgstr "%s: %-45s 예 (db가 제공함)\n"
|
||||
|
||||
#: lib/depends.c:461
|
||||
#: lib/depends.c:479
|
||||
#, fuzzy
|
||||
msgid "(db package)"
|
||||
msgstr "패키지가 없습니다\n"
|
||||
|
||||
#: lib/depends.c:815
|
||||
#: lib/depends.c:833
|
||||
#, c-format
|
||||
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
|
||||
msgstr "다음과 관련된 패키지 이름을 무시합니다 [%d]\t%s -> %s\n"
|
||||
|
||||
#: lib/depends.c:937
|
||||
#: lib/depends.c:955
|
||||
#, fuzzy, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr "tsort 관계에서 %s-%s-%s \"%s\"(을)를 삭제합니다.\n"
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1167
|
||||
#: lib/depends.c:1185
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr "========== tsort 관계를 기록(record)합니다\n"
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1267
|
||||
#: lib/depends.c:1285
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, tree, "
|
||||
"depth)\n"
|
||||
|
@ -1399,20 +1399,20 @@ msgstr ""
|
|||
"========== 패키지를 tsort 합니다 (순서, #선임자, #후임자, 트리, 깊이"
|
||||
"[depth])\n"
|
||||
|
||||
#: lib/depends.c:1351
|
||||
#: lib/depends.c:1369
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr "========== 후임자만 [successors only] (표현 순)\n"
|
||||
|
||||
#: lib/depends.c:1421
|
||||
#: lib/depends.c:1439
|
||||
msgid "LOOP:\n"
|
||||
msgstr "루프(LOOP):\n"
|
||||
|
||||
#: lib/depends.c:1456
|
||||
#: lib/depends.c:1474
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr "========== tsort를 진행합니다...\n"
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1461
|
||||
#: lib/depends.c:1479
|
||||
#, c-format
|
||||
msgid "rpmtsOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
@ -2192,180 +2192,180 @@ msgstr ""
|
|||
"%2$s-%3$s-%4$s의 %1$s 스크립틀릿(scriptlet) 실행에 실패했습니다, 종료 상황 %5"
|
||||
"$d\n"
|
||||
|
||||
#: lib/psm.c:1420
|
||||
#: lib/psm.c:1421
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s has %d files, test = %d\n"
|
||||
msgstr "%s: %s-%s-%s에 %d의 파일이 있습니다, 테스트 = %d\n"
|
||||
|
||||
#: lib/psm.c:1553
|
||||
#: lib/psm.c:1560
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
|
||||
msgstr ""
|
||||
"%s: %s 스크립틀릿(scriptlet)이 실패했습니다 (%d), %s-%s-%s(을)를 생략합니다\n"
|
||||
|
||||
#: lib/psm.c:1662
|
||||
#: lib/psm.c:1669
|
||||
#, fuzzy
|
||||
msgid "Unable to reload signature header\n"
|
||||
msgstr "서명(signature) 헤더를 다시 읽어올 수 없습니다.\n"
|
||||
|
||||
#: lib/psm.c:1708
|
||||
#: lib/psm.c:1715
|
||||
#, c-format
|
||||
msgid "user %s does not exist - using root\n"
|
||||
msgstr "%s 사용자가 존재하지 않습니다 - root를 이용합니다\n"
|
||||
|
||||
#: lib/psm.c:1717
|
||||
#: lib/psm.c:1724
|
||||
#, c-format
|
||||
msgid "group %s does not exist - using root\n"
|
||||
msgstr "%s 그룹이 존재하지 않습니다 - root를 이용합니다\n"
|
||||
|
||||
#: lib/psm.c:1765
|
||||
#: lib/psm.c:1772
|
||||
#, c-format
|
||||
msgid "unpacking of archive failed%s%s: %s\n"
|
||||
msgstr "아카이브를 푸는데 실패함%s%s: %s\n"
|
||||
|
||||
#: lib/psm.c:1766
|
||||
#: lib/psm.c:1773
|
||||
msgid " on file "
|
||||
msgstr " 다음 파일의 "
|
||||
|
||||
#: lib/psm.c:1949
|
||||
#: lib/psm.c:1956
|
||||
#, c-format
|
||||
msgid "%s failed on file %s: %s\n"
|
||||
msgstr "%2$s 파일의 %1$s(이)가 실패함: %3$s\n"
|
||||
|
||||
#: lib/psm.c:1952
|
||||
#: lib/psm.c:1959
|
||||
#, c-format
|
||||
msgid "%s failed: %s\n"
|
||||
msgstr "%s(이)가 실패함: %s\n"
|
||||
|
||||
#: lib/query.c:122 lib/rpmts.c:430
|
||||
#: lib/query.c:122 lib/rpmts.c:451
|
||||
#, c-format
|
||||
msgid "incorrect format: %s\n"
|
||||
msgstr "올바르지 못한 형식: %s\n"
|
||||
|
||||
#. @-boundswrite@
|
||||
#: lib/query.c:181
|
||||
#: lib/query.c:186
|
||||
msgid "(contains no files)"
|
||||
msgstr "(파일이 포함되어 있지 않음)"
|
||||
|
||||
#: lib/query.c:246
|
||||
#: lib/query.c:251
|
||||
msgid "normal "
|
||||
msgstr "정상(normal) "
|
||||
|
||||
#: lib/query.c:249
|
||||
#: lib/query.c:254
|
||||
msgid "replaced "
|
||||
msgstr "교체됨(replaced) "
|
||||
|
||||
#: lib/query.c:252
|
||||
#: lib/query.c:257
|
||||
msgid "not installed "
|
||||
msgstr "설치되어 있지 않음 "
|
||||
|
||||
#: lib/query.c:255
|
||||
#: lib/query.c:260
|
||||
msgid "net shared "
|
||||
msgstr "net 공유됨 "
|
||||
|
||||
#: lib/query.c:258
|
||||
#: lib/query.c:263
|
||||
msgid "wrong color "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:261
|
||||
#: lib/query.c:266
|
||||
msgid "(no state) "
|
||||
msgstr "(상태를 알 수 없음) "
|
||||
|
||||
#: lib/query.c:264
|
||||
#: lib/query.c:269
|
||||
#, c-format
|
||||
msgid "(unknown %3d) "
|
||||
msgstr "(알 수 없는 %3d) "
|
||||
|
||||
#: lib/query.c:282
|
||||
#: lib/query.c:287
|
||||
#, fuzzy
|
||||
msgid "package has not file owner/group lists\n"
|
||||
msgstr "패키지에 파일 소유자 또는 id 목록이 없습니다\n"
|
||||
|
||||
#: lib/query.c:315
|
||||
#: lib/query.c:320
|
||||
msgid "package has neither file owner or id lists\n"
|
||||
msgstr "패키지에 파일 소유자 또는 id 목록이 없습니다\n"
|
||||
|
||||
#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
|
||||
#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
|
||||
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
|
||||
#, c-format
|
||||
msgid "open of %s failed: %s\n"
|
||||
msgstr "%s(을)를 여는데 실패함: %s\n"
|
||||
|
||||
#: lib/query.c:459
|
||||
#: lib/query.c:464
|
||||
#, c-format
|
||||
msgid "query of %s failed\n"
|
||||
msgstr "%s(을)를 질의하는데 실패했습니다\n"
|
||||
|
||||
#: lib/query.c:469
|
||||
#: lib/query.c:474
|
||||
msgid "old format source packages cannot be queried\n"
|
||||
msgstr "이전 형식의 소스 패키지는 질의할 수 없습니다\n"
|
||||
|
||||
#: lib/query.c:502 lib/rpminstall.c:608
|
||||
#: lib/query.c:507 lib/rpminstall.c:608
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: not an rpm package (or package manifest): %s\n"
|
||||
msgstr "%s(와)과 일치하는 패키지가 없음: %s\n"
|
||||
|
||||
#: lib/query.c:531
|
||||
#: lib/query.c:536
|
||||
msgid "no packages\n"
|
||||
msgstr "패키지가 없습니다\n"
|
||||
|
||||
#: lib/query.c:551
|
||||
#: lib/query.c:556
|
||||
#, c-format
|
||||
msgid "group %s does not contain any packages\n"
|
||||
msgstr "%s 그룹은 어떤 패키지에도 포함되어 있지 않습니다\n"
|
||||
|
||||
#: lib/query.c:560
|
||||
#: lib/query.c:565
|
||||
#, c-format
|
||||
msgid "no package triggers %s\n"
|
||||
msgstr "%s(을)를 생성하는(trigger) 패키지가 없습니다\n"
|
||||
|
||||
#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
|
||||
#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
|
||||
#, c-format
|
||||
msgid "malformed %s: %s\n"
|
||||
msgstr "%s(이)가 잘못됨: %s\n"
|
||||
|
||||
#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
|
||||
#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
|
||||
#, c-format
|
||||
msgid "no package matches %s: %s\n"
|
||||
msgstr "%s(와)과 일치하는 패키지가 없음: %s\n"
|
||||
|
||||
#: lib/query.c:663
|
||||
#: lib/query.c:668
|
||||
#, c-format
|
||||
msgid "no package requires %s\n"
|
||||
msgstr "%s(을)를 필요로 하는 패키지가 없습니다\n"
|
||||
|
||||
#: lib/query.c:674
|
||||
#: lib/query.c:679
|
||||
#, c-format
|
||||
msgid "no package provides %s\n"
|
||||
msgstr "%s(을)를 제공하는 패키지가 없습니다\n"
|
||||
|
||||
#: lib/query.c:709
|
||||
#: lib/query.c:714
|
||||
#, c-format
|
||||
msgid "file %s: %s\n"
|
||||
msgstr "%s 파일: %s\n"
|
||||
|
||||
#: lib/query.c:713
|
||||
#: lib/query.c:718
|
||||
#, c-format
|
||||
msgid "file %s is not owned by any package\n"
|
||||
msgstr "%s 파일은 어떤 패키지에도 들어있지 않습니다\n"
|
||||
|
||||
#: lib/query.c:738
|
||||
#: lib/query.c:743
|
||||
#, c-format
|
||||
msgid "invalid package number: %s\n"
|
||||
msgstr "부적합한 패키지 번호: %s\n"
|
||||
|
||||
#: lib/query.c:741
|
||||
#: lib/query.c:746
|
||||
#, c-format
|
||||
msgid "package record number: %u\n"
|
||||
msgstr "패키지 기록(record) 번호: %u\n"
|
||||
|
||||
#: lib/query.c:746
|
||||
#: lib/query.c:751
|
||||
#, c-format
|
||||
msgid "record %u could not be read\n"
|
||||
msgstr "기록(record) 번호 %u(은)는 읽을 수 없습니다\n"
|
||||
|
||||
#: lib/query.c:756 lib/rpminstall.c:779
|
||||
#: lib/query.c:761 lib/rpminstall.c:779
|
||||
#, c-format
|
||||
msgid "package %s is not installed\n"
|
||||
msgstr "%s 패키지가 설치되어 있지 않습니다\n"
|
||||
|
@ -2856,28 +2856,28 @@ msgstr "%s(
|
|||
msgid "Unable to open %s for reading: %s.\n"
|
||||
msgstr "%s(을)를 열 수 없음: %s.\n"
|
||||
|
||||
#: lib/rpmts.c:135
|
||||
#: lib/rpmts.c:156
|
||||
#, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr "%s 안의 패키지 데이터베이스를 열 수 없습니다\n"
|
||||
|
||||
#: lib/rpmts.c:320
|
||||
#: lib/rpmts.c:341
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot open Solve database in %s\n"
|
||||
msgstr "%s의 rpm 데이터베이스를 열 수 없습니다\n"
|
||||
|
||||
#: lib/rpmts.c:462
|
||||
#: lib/rpmts.c:483
|
||||
#, fuzzy, c-format
|
||||
msgid "Adding: %s\n"
|
||||
msgstr "행: %s\n"
|
||||
|
||||
#: lib/rpmts.c:474
|
||||
#: lib/rpmts.c:495
|
||||
#, fuzzy, c-format
|
||||
msgid "Suggesting: %s\n"
|
||||
msgstr "%s(을)를 복구합니다\n"
|
||||
|
||||
#. Get available space on mounted file systems.
|
||||
#: lib/rpmts.c:906
|
||||
#: lib/rpmts.c:927
|
||||
msgid "getting list of mounted filesystems\n"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3050,7 +3050,7 @@ msgid "%s skipped due to missingok flag\n"
|
|||
msgstr "missingok 플래그로 인해 %s(을)를 생략합니다\n"
|
||||
|
||||
#. @innercontinue@
|
||||
#: lib/transaction.c:935
|
||||
#: lib/transaction.c:956
|
||||
#, c-format
|
||||
msgid "excluding directory %s\n"
|
||||
msgstr "%s 디렉토리를 제외시킵니다\n"
|
||||
|
@ -3063,7 +3063,7 @@ msgstr "%s
|
|||
#. * For packages being removed:
|
||||
#. * - count files.
|
||||
#.
|
||||
#: lib/transaction.c:1047
|
||||
#: lib/transaction.c:1068
|
||||
#, c-format
|
||||
msgid "sanity checking %d elements\n"
|
||||
msgstr ""
|
||||
|
@ -3076,7 +3076,7 @@ msgstr ""
|
|||
#. * calling fpLookupList only once. I'm not sure that the speedup is
|
||||
#. * worth the trouble though.
|
||||
#.
|
||||
#: lib/transaction.c:1129
|
||||
#: lib/transaction.c:1156
|
||||
#, c-format
|
||||
msgid "computing %d file fingerprints\n"
|
||||
msgstr ""
|
||||
|
@ -3084,7 +3084,7 @@ msgstr ""
|
|||
#. ===============================================
|
||||
#. * Compute file disposition for each package in transaction set.
|
||||
#.
|
||||
#: lib/transaction.c:1206
|
||||
#: lib/transaction.c:1233
|
||||
msgid "computing file dispositions\n"
|
||||
msgstr ""
|
||||
|
||||
|
|
130
po/no.po
130
po/no.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2003-01-13 15:26-0500\n"
|
||||
"POT-Creation-Date: 2003-01-17 12:33-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"
|
||||
|
@ -719,7 +719,7 @@ msgstr "Kunne ikke
|
|||
msgid "Could not open %s: %s\n"
|
||||
msgstr "Kunne ikke åpne %s: %s\n"
|
||||
|
||||
#: build/pack.c:632 lib/psm.c:1650
|
||||
#: build/pack.c:632 lib/psm.c:1657
|
||||
#, c-format
|
||||
msgid "Unable to write package: %s\n"
|
||||
msgstr "Kunne ikke skrive pakke: %s\n"
|
||||
|
@ -749,7 +749,7 @@ msgstr "Kunne ikke lese \"payload\" fra %s: %s\n"
|
|||
msgid "Unable to write payload to %s: %s\n"
|
||||
msgstr "Kunne ikke skrive \"payload\" til %s: %s\n"
|
||||
|
||||
#: build/pack.c:725 lib/psm.c:1941
|
||||
#: build/pack.c:725 lib/psm.c:1948
|
||||
#, c-format
|
||||
msgid "Wrote: %s\n"
|
||||
msgstr "Skrev: %s\n"
|
||||
|
@ -1346,72 +1346,72 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr " feilet - "
|
||||
|
||||
#: lib/depends.c:164
|
||||
#: lib/depends.c:182
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr "pakke %s er allerede installert"
|
||||
|
||||
#: lib/depends.c:362
|
||||
#: lib/depends.c:380
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:389
|
||||
#: lib/depends.c:407
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:406
|
||||
#: lib/depends.c:424
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:435
|
||||
#: lib/depends.c:453
|
||||
msgid "(db files)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:448
|
||||
#: lib/depends.c:466
|
||||
msgid "(db provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:461
|
||||
#: lib/depends.c:479
|
||||
#, fuzzy
|
||||
msgid "(db package)"
|
||||
msgstr "ingen pakker\n"
|
||||
|
||||
#: lib/depends.c:815
|
||||
#: lib/depends.c:833
|
||||
#, c-format
|
||||
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:937
|
||||
#: lib/depends.c:955
|
||||
#, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr ""
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1167
|
||||
#: lib/depends.c:1185
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1267
|
||||
#: lib/depends.c:1285
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, tree, "
|
||||
"depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1351
|
||||
#: lib/depends.c:1369
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1421
|
||||
#: lib/depends.c:1439
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1456
|
||||
#: lib/depends.c:1474
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1461
|
||||
#: lib/depends.c:1479
|
||||
#, c-format
|
||||
msgid "rpmtsOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
@ -2182,179 +2182,179 @@ msgstr ""
|
|||
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1420
|
||||
#: lib/psm.c:1421
|
||||
#, c-format
|
||||
msgid "%s: %s has %d files, test = %d\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1553
|
||||
#: lib/psm.c:1560
|
||||
#, c-format
|
||||
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1662
|
||||
#: lib/psm.c:1669
|
||||
#, fuzzy
|
||||
msgid "Unable to reload signature header\n"
|
||||
msgstr "Kunne ikke åpne spec fil %s: %s\n"
|
||||
|
||||
#: lib/psm.c:1708
|
||||
#: lib/psm.c:1715
|
||||
#, c-format
|
||||
msgid "user %s does not exist - using root\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1717
|
||||
#: lib/psm.c:1724
|
||||
#, c-format
|
||||
msgid "group %s does not exist - using root\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1765
|
||||
#: lib/psm.c:1772
|
||||
#, c-format
|
||||
msgid "unpacking of archive failed%s%s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1766
|
||||
#: lib/psm.c:1773
|
||||
msgid " on file "
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1949
|
||||
#: lib/psm.c:1956
|
||||
#, fuzzy, c-format
|
||||
msgid "%s failed on file %s: %s\n"
|
||||
msgstr "klarte ikke å åpne %s: %s\n"
|
||||
|
||||
#: lib/psm.c:1952
|
||||
#: lib/psm.c:1959
|
||||
#, fuzzy, c-format
|
||||
msgid "%s failed: %s\n"
|
||||
msgstr "%s feilet\n"
|
||||
|
||||
#: lib/query.c:122 lib/rpmts.c:430
|
||||
#: lib/query.c:122 lib/rpmts.c:451
|
||||
#, c-format
|
||||
msgid "incorrect format: %s\n"
|
||||
msgstr "ukorrekt format: %s\n"
|
||||
|
||||
#. @-boundswrite@
|
||||
#: lib/query.c:181
|
||||
#: lib/query.c:186
|
||||
msgid "(contains no files)"
|
||||
msgstr "(inneholder ingen filer)"
|
||||
|
||||
#: lib/query.c:246
|
||||
#: lib/query.c:251
|
||||
msgid "normal "
|
||||
msgstr "normal "
|
||||
|
||||
#: lib/query.c:249
|
||||
#: lib/query.c:254
|
||||
msgid "replaced "
|
||||
msgstr "erstattet "
|
||||
|
||||
#: lib/query.c:252
|
||||
#: lib/query.c:257
|
||||
msgid "not installed "
|
||||
msgstr "ikke installert"
|
||||
|
||||
#: lib/query.c:255
|
||||
#: lib/query.c:260
|
||||
msgid "net shared "
|
||||
msgstr "delt via nett "
|
||||
|
||||
#: lib/query.c:258
|
||||
#: lib/query.c:263
|
||||
msgid "wrong color "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:261
|
||||
#: lib/query.c:266
|
||||
msgid "(no state) "
|
||||
msgstr "(ingen tilstand)"
|
||||
|
||||
#: lib/query.c:264
|
||||
#: lib/query.c:269
|
||||
#, c-format
|
||||
msgid "(unknown %3d) "
|
||||
msgstr "(ukjent %3d) "
|
||||
|
||||
#: lib/query.c:282
|
||||
#: lib/query.c:287
|
||||
#, fuzzy
|
||||
msgid "package has not file owner/group lists\n"
|
||||
msgstr "pakken har verken fileier eller id-lister\n"
|
||||
|
||||
#: lib/query.c:315
|
||||
#: lib/query.c:320
|
||||
msgid "package has neither file owner or id lists\n"
|
||||
msgstr "pakken har verken fileier eller id-lister\n"
|
||||
|
||||
#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
|
||||
#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
|
||||
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
|
||||
#, c-format
|
||||
msgid "open of %s failed: %s\n"
|
||||
msgstr "feil under åpning av %s: %s\n"
|
||||
|
||||
#: lib/query.c:459
|
||||
#: lib/query.c:464
|
||||
#, c-format
|
||||
msgid "query of %s failed\n"
|
||||
msgstr "spørring på %s feilet\n"
|
||||
|
||||
#: lib/query.c:469
|
||||
#: lib/query.c:474
|
||||
msgid "old format source packages cannot be queried\n"
|
||||
msgstr "kildepakker i gammelt format kan ikke spørres\n"
|
||||
|
||||
#: lib/query.c:502 lib/rpminstall.c:608
|
||||
#: lib/query.c:507 lib/rpminstall.c:608
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: not an rpm package (or package manifest): %s\n"
|
||||
msgstr "ingen pakke utløser %s\n"
|
||||
|
||||
#: lib/query.c:531
|
||||
#: lib/query.c:536
|
||||
msgid "no packages\n"
|
||||
msgstr "ingen pakker\n"
|
||||
|
||||
#: lib/query.c:551
|
||||
#: lib/query.c:556
|
||||
#, c-format
|
||||
msgid "group %s does not contain any packages\n"
|
||||
msgstr "gruppe %s inneholder ingen pakker\n"
|
||||
|
||||
#: lib/query.c:560
|
||||
#: lib/query.c:565
|
||||
#, c-format
|
||||
msgid "no package triggers %s\n"
|
||||
msgstr "ingen pakke utløser %s\n"
|
||||
|
||||
#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
|
||||
#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
|
||||
#, fuzzy, c-format
|
||||
msgid "malformed %s: %s\n"
|
||||
msgstr "kunne ikke opprette %s: %s\n"
|
||||
|
||||
#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
|
||||
#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
|
||||
#, fuzzy, c-format
|
||||
msgid "no package matches %s: %s\n"
|
||||
msgstr "ingen pakke utløser %s\n"
|
||||
|
||||
#: lib/query.c:663
|
||||
#: lib/query.c:668
|
||||
#, c-format
|
||||
msgid "no package requires %s\n"
|
||||
msgstr "ingen pakke krever %s\n"
|
||||
|
||||
#: lib/query.c:674
|
||||
#: lib/query.c:679
|
||||
#, c-format
|
||||
msgid "no package provides %s\n"
|
||||
msgstr "ingen pakke gir %s\n"
|
||||
|
||||
#: lib/query.c:709
|
||||
#: lib/query.c:714
|
||||
#, c-format
|
||||
msgid "file %s: %s\n"
|
||||
msgstr "fil %s: %s\n"
|
||||
|
||||
#: lib/query.c:713
|
||||
#: lib/query.c:718
|
||||
#, c-format
|
||||
msgid "file %s is not owned by any package\n"
|
||||
msgstr "filen %s eies ikke av noen pakke\n"
|
||||
|
||||
#: lib/query.c:738
|
||||
#: lib/query.c:743
|
||||
#, c-format
|
||||
msgid "invalid package number: %s\n"
|
||||
msgstr "ugyldig pakkenummer: %s\n"
|
||||
|
||||
#: lib/query.c:741
|
||||
#: lib/query.c:746
|
||||
#, c-format
|
||||
msgid "package record number: %u\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:746
|
||||
#: lib/query.c:751
|
||||
#, c-format
|
||||
msgid "record %u could not be read\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:756 lib/rpminstall.c:779
|
||||
#: lib/query.c:761 lib/rpminstall.c:779
|
||||
#, c-format
|
||||
msgid "package %s is not installed\n"
|
||||
msgstr "pakke %s er ikke installert\n"
|
||||
|
@ -2835,28 +2835,28 @@ msgstr ""
|
|||
msgid "Unable to open %s for reading: %s.\n"
|
||||
msgstr "Kunne ikke åpne spec fil %s: %s\n"
|
||||
|
||||
#: lib/rpmts.c:135
|
||||
#: lib/rpmts.c:156
|
||||
#, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr "kan ikke åpne pakkedatabase i %s\n"
|
||||
|
||||
#: lib/rpmts.c:320
|
||||
#: lib/rpmts.c:341
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot open Solve database in %s\n"
|
||||
msgstr "kan ikke åpne database i %s\n"
|
||||
|
||||
#: lib/rpmts.c:462
|
||||
#: lib/rpmts.c:483
|
||||
#, fuzzy, c-format
|
||||
msgid "Adding: %s\n"
|
||||
msgstr "Installerer %s\n"
|
||||
|
||||
#: lib/rpmts.c:474
|
||||
#: lib/rpmts.c:495
|
||||
#, fuzzy, c-format
|
||||
msgid "Suggesting: %s\n"
|
||||
msgstr "Henter %s\n"
|
||||
|
||||
#. Get available space on mounted file systems.
|
||||
#: lib/rpmts.c:906
|
||||
#: lib/rpmts.c:927
|
||||
msgid "getting list of mounted filesystems\n"
|
||||
msgstr "henter liste over monterte filsystemer\n"
|
||||
|
||||
|
@ -3028,7 +3028,7 @@ msgid "%s skipped due to missingok flag\n"
|
|||
msgstr ""
|
||||
|
||||
#. @innercontinue@
|
||||
#: lib/transaction.c:935
|
||||
#: lib/transaction.c:956
|
||||
#, c-format
|
||||
msgid "excluding directory %s\n"
|
||||
msgstr "ekskluderer katalog %s\n"
|
||||
|
@ -3041,7 +3041,7 @@ msgstr "ekskluderer katalog %s\n"
|
|||
#. * For packages being removed:
|
||||
#. * - count files.
|
||||
#.
|
||||
#: lib/transaction.c:1047
|
||||
#: lib/transaction.c:1068
|
||||
#, c-format
|
||||
msgid "sanity checking %d elements\n"
|
||||
msgstr ""
|
||||
|
@ -3054,7 +3054,7 @@ msgstr ""
|
|||
#. * calling fpLookupList only once. I'm not sure that the speedup is
|
||||
#. * worth the trouble though.
|
||||
#.
|
||||
#: lib/transaction.c:1129
|
||||
#: lib/transaction.c:1156
|
||||
#, c-format
|
||||
msgid "computing %d file fingerprints\n"
|
||||
msgstr ""
|
||||
|
@ -3062,7 +3062,7 @@ msgstr ""
|
|||
#. ===============================================
|
||||
#. * Compute file disposition for each package in transaction set.
|
||||
#.
|
||||
#: lib/transaction.c:1206
|
||||
#: lib/transaction.c:1233
|
||||
msgid "computing file dispositions\n"
|
||||
msgstr ""
|
||||
|
||||
|
|
130
po/pl.po
130
po/pl.po
|
@ -8,7 +8,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2003-01-13 15:26-0500\n"
|
||||
"POT-Creation-Date: 2003-01-17 12:33-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"
|
||||
|
@ -742,7 +742,7 @@ msgstr "Nie mo
|
|||
msgid "Could not open %s: %s\n"
|
||||
msgstr "Nie mo¿na otworzyæ %s\n"
|
||||
|
||||
#: build/pack.c:632 lib/psm.c:1650
|
||||
#: build/pack.c:632 lib/psm.c:1657
|
||||
#, fuzzy, c-format
|
||||
msgid "Unable to write package: %s\n"
|
||||
msgstr "Nie mo¿na zapisaæ pakietu: %s"
|
||||
|
@ -772,7 +772,7 @@ msgstr "Nie mo
|
|||
msgid "Unable to write payload to %s: %s\n"
|
||||
msgstr "Nie mo¿na zapisaæ pakietu: %s"
|
||||
|
||||
#: build/pack.c:725 lib/psm.c:1941
|
||||
#: build/pack.c:725 lib/psm.c:1948
|
||||
#, c-format
|
||||
msgid "Wrote: %s\n"
|
||||
msgstr "Zapisano: %s\n"
|
||||
|
@ -1383,75 +1383,75 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr " nie powiod³o siê -"
|
||||
|
||||
#: lib/depends.c:164
|
||||
#: lib/depends.c:182
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr "pakiet %s-%s-%s jest ju¿ zainstalowany"
|
||||
|
||||
#: lib/depends.c:362
|
||||
#: lib/depends.c:380
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:389
|
||||
#: lib/depends.c:407
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:406
|
||||
#: lib/depends.c:424
|
||||
#, fuzzy
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
|
||||
|
||||
#: lib/depends.c:435
|
||||
#: lib/depends.c:453
|
||||
#, fuzzy
|
||||
msgid "(db files)"
|
||||
msgstr "b³êdny status pliku: %s"
|
||||
|
||||
#: lib/depends.c:448
|
||||
#: lib/depends.c:466
|
||||
#, fuzzy
|
||||
msgid "(db provides)"
|
||||
msgstr "Udostêpniane zasoby:"
|
||||
|
||||
#: lib/depends.c:461
|
||||
#: lib/depends.c:479
|
||||
#, fuzzy
|
||||
msgid "(db package)"
|
||||
msgstr "znaleziono %d pakietów\n"
|
||||
|
||||
#: lib/depends.c:815
|
||||
#: lib/depends.c:833
|
||||
#, c-format
|
||||
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:937
|
||||
#: lib/depends.c:955
|
||||
#, fuzzy, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr "usuwanie indeksu grupy\n"
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1167
|
||||
#: lib/depends.c:1185
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1267
|
||||
#: lib/depends.c:1285
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, tree, "
|
||||
"depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1351
|
||||
#: lib/depends.c:1369
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1421
|
||||
#: lib/depends.c:1439
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1456
|
||||
#: lib/depends.c:1474
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1461
|
||||
#: lib/depends.c:1479
|
||||
#, c-format
|
||||
msgid "rpmtsOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
@ -2260,181 +2260,181 @@ msgstr "%s pomijany - transmisja %s nie powiod
|
|||
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
|
||||
msgstr "wykonanie skryptu nie powiod³o siê"
|
||||
|
||||
#: lib/psm.c:1420
|
||||
#: lib/psm.c:1421
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s has %d files, test = %d\n"
|
||||
msgstr "pakiet: %s-%s-%s test plików = %d\n"
|
||||
|
||||
#: lib/psm.c:1553
|
||||
#: lib/psm.c:1560
|
||||
#, c-format
|
||||
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1662
|
||||
#: lib/psm.c:1669
|
||||
#, fuzzy
|
||||
msgid "Unable to reload signature header\n"
|
||||
msgstr "Nie mo¿na odczytaæ ikony: %s"
|
||||
|
||||
#: lib/psm.c:1708
|
||||
#: lib/psm.c:1715
|
||||
#, fuzzy, c-format
|
||||
msgid "user %s does not exist - using root\n"
|
||||
msgstr "u¿ytkownik %s nie istnieje - u¿yto konta root"
|
||||
|
||||
#: lib/psm.c:1717
|
||||
#: lib/psm.c:1724
|
||||
#, fuzzy, c-format
|
||||
msgid "group %s does not exist - using root\n"
|
||||
msgstr "grupa %s nie istnieje - u¿yto grupy root"
|
||||
|
||||
#: lib/psm.c:1765
|
||||
#: lib/psm.c:1772
|
||||
#, fuzzy, c-format
|
||||
msgid "unpacking of archive failed%s%s: %s\n"
|
||||
msgstr "rozpakowanie archiwum nie powiod³o siê %s%s: %s"
|
||||
|
||||
#: lib/psm.c:1766
|
||||
#: lib/psm.c:1773
|
||||
msgid " on file "
|
||||
msgstr " na pliku "
|
||||
|
||||
#: lib/psm.c:1949
|
||||
#: lib/psm.c:1956
|
||||
#, fuzzy, c-format
|
||||
msgid "%s failed on file %s: %s\n"
|
||||
msgstr "nie mo¿na otworzyæ %s: %s"
|
||||
|
||||
#: lib/psm.c:1952
|
||||
#: lib/psm.c:1959
|
||||
#, fuzzy, c-format
|
||||
msgid "%s failed: %s\n"
|
||||
msgstr "%s nie powiod³o siê"
|
||||
|
||||
#: lib/query.c:122 lib/rpmts.c:430
|
||||
#: lib/query.c:122 lib/rpmts.c:451
|
||||
#, fuzzy, c-format
|
||||
msgid "incorrect format: %s\n"
|
||||
msgstr "b³±d w formacie: %s\n"
|
||||
|
||||
#. @-boundswrite@
|
||||
#: lib/query.c:181
|
||||
#: lib/query.c:186
|
||||
msgid "(contains no files)"
|
||||
msgstr "(nie zawiera plików)"
|
||||
|
||||
#: lib/query.c:246
|
||||
#: lib/query.c:251
|
||||
msgid "normal "
|
||||
msgstr "normalny "
|
||||
|
||||
#: lib/query.c:249
|
||||
#: lib/query.c:254
|
||||
msgid "replaced "
|
||||
msgstr "zast±piony "
|
||||
|
||||
#: lib/query.c:252
|
||||
#: lib/query.c:257
|
||||
msgid "not installed "
|
||||
msgstr "niezainstalowany"
|
||||
|
||||
#: lib/query.c:255
|
||||
#: lib/query.c:260
|
||||
msgid "net shared "
|
||||
msgstr "udostêpniony w sieci"
|
||||
|
||||
#: lib/query.c:258
|
||||
#: lib/query.c:263
|
||||
msgid "wrong color "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:261
|
||||
#: lib/query.c:266
|
||||
msgid "(no state) "
|
||||
msgstr "(brak statusu)"
|
||||
|
||||
#: lib/query.c:264
|
||||
#: lib/query.c:269
|
||||
#, c-format
|
||||
msgid "(unknown %3d) "
|
||||
msgstr "(nieznany %3d)"
|
||||
|
||||
#: lib/query.c:282
|
||||
#: lib/query.c:287
|
||||
#, fuzzy
|
||||
msgid "package has not file owner/group lists\n"
|
||||
msgstr "pakiet nie ma ani w³a¶ciciela pliku ani list id"
|
||||
|
||||
#: lib/query.c:315
|
||||
#: lib/query.c:320
|
||||
#, fuzzy
|
||||
msgid "package has neither file owner or id lists\n"
|
||||
msgstr "pakiet nie ma ani w³a¶ciciela pliku ani list id"
|
||||
|
||||
#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
|
||||
#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
|
||||
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
|
||||
#, c-format
|
||||
msgid "open of %s failed: %s\n"
|
||||
msgstr "otwarcie %s nie powiod³o siê: %s\n"
|
||||
|
||||
#: lib/query.c:459
|
||||
#: lib/query.c:464
|
||||
#, c-format
|
||||
msgid "query of %s failed\n"
|
||||
msgstr "odpytywanie %s nie powiod³o siê\n"
|
||||
|
||||
#: lib/query.c:469
|
||||
#: lib/query.c:474
|
||||
msgid "old format source packages cannot be queried\n"
|
||||
msgstr "pakiety w starym formacie nie mog± byæ odpytywane\n"
|
||||
|
||||
#: lib/query.c:502 lib/rpminstall.c:608
|
||||
#: lib/query.c:507 lib/rpminstall.c:608
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: not an rpm package (or package manifest): %s\n"
|
||||
msgstr "¿aden pakiet nie zahacza %s\n"
|
||||
|
||||
#: lib/query.c:531
|
||||
#: lib/query.c:536
|
||||
#, fuzzy
|
||||
msgid "no packages\n"
|
||||
msgstr "znaleziono %d pakietów\n"
|
||||
|
||||
#: lib/query.c:551
|
||||
#: lib/query.c:556
|
||||
#, c-format
|
||||
msgid "group %s does not contain any packages\n"
|
||||
msgstr "grupa %s nie zawiera ¿adnych pakietów\n"
|
||||
|
||||
#: lib/query.c:560
|
||||
#: lib/query.c:565
|
||||
#, c-format
|
||||
msgid "no package triggers %s\n"
|
||||
msgstr "¿aden pakiet nie zahacza %s\n"
|
||||
|
||||
#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
|
||||
#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
|
||||
#, fuzzy, c-format
|
||||
msgid "malformed %s: %s\n"
|
||||
msgstr "Odczytanie %s nie powiod³o siê: %s."
|
||||
|
||||
#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
|
||||
#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
|
||||
#, fuzzy, c-format
|
||||
msgid "no package matches %s: %s\n"
|
||||
msgstr "¿aden pakiet nie zahacza %s\n"
|
||||
|
||||
#: lib/query.c:663
|
||||
#: lib/query.c:668
|
||||
#, c-format
|
||||
msgid "no package requires %s\n"
|
||||
msgstr "¿aden pakiet nie wymaga %s\n"
|
||||
|
||||
#: lib/query.c:674
|
||||
#: lib/query.c:679
|
||||
#, c-format
|
||||
msgid "no package provides %s\n"
|
||||
msgstr "¿aden pakiet nie udostêpnia %s\n"
|
||||
|
||||
#: lib/query.c:709
|
||||
#: lib/query.c:714
|
||||
#, c-format
|
||||
msgid "file %s: %s\n"
|
||||
msgstr "plik %s: %s\n"
|
||||
|
||||
#: lib/query.c:713
|
||||
#: lib/query.c:718
|
||||
#, c-format
|
||||
msgid "file %s is not owned by any package\n"
|
||||
msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
|
||||
|
||||
#: lib/query.c:738
|
||||
#: lib/query.c:743
|
||||
#, c-format
|
||||
msgid "invalid package number: %s\n"
|
||||
msgstr "b³êdny numer pakietu: %s\n"
|
||||
|
||||
#: lib/query.c:741
|
||||
#: lib/query.c:746
|
||||
#, fuzzy, c-format
|
||||
msgid "package record number: %u\n"
|
||||
msgstr "numer rekordu pakietu: %d\n"
|
||||
|
||||
#: lib/query.c:746
|
||||
#: lib/query.c:751
|
||||
#, fuzzy, c-format
|
||||
msgid "record %u could not be read\n"
|
||||
msgstr "nie mo¿na odczytaæ rekordu %d\n"
|
||||
|
||||
#: lib/query.c:756 lib/rpminstall.c:779
|
||||
#: lib/query.c:761 lib/rpminstall.c:779
|
||||
#, c-format
|
||||
msgid "package %s is not installed\n"
|
||||
msgstr "pakiet %s nie jest zainstalowany\n"
|
||||
|
@ -2920,28 +2920,28 @@ msgstr ""
|
|||
msgid "Unable to open %s for reading: %s.\n"
|
||||
msgstr "Nie mo¿na otworzyæ %s do odczytu: %s."
|
||||
|
||||
#: lib/rpmts.c:135
|
||||
#: lib/rpmts.c:156
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr "nie mo¿na otworzyæ %s/packages.rpm\n"
|
||||
|
||||
#: lib/rpmts.c:320
|
||||
#: lib/rpmts.c:341
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot open Solve database in %s\n"
|
||||
msgstr "nie mo¿na otworzyæ %s/packages.rpm\n"
|
||||
|
||||
#: lib/rpmts.c:462
|
||||
#: lib/rpmts.c:483
|
||||
#, fuzzy, c-format
|
||||
msgid "Adding: %s\n"
|
||||
msgstr "linia: %s"
|
||||
|
||||
#: lib/rpmts.c:474
|
||||
#: lib/rpmts.c:495
|
||||
#, fuzzy, c-format
|
||||
msgid "Suggesting: %s\n"
|
||||
msgstr "¼ród³a w: %s\n"
|
||||
|
||||
#. Get available space on mounted file systems.
|
||||
#: lib/rpmts.c:906
|
||||
#: lib/rpmts.c:927
|
||||
msgid "getting list of mounted filesystems\n"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3119,7 +3119,7 @@ msgid "%s skipped due to missingok flag\n"
|
|||
msgstr "%s pominiêty z powodu flagi missingok\n"
|
||||
|
||||
#. @innercontinue@
|
||||
#: lib/transaction.c:935
|
||||
#: lib/transaction.c:956
|
||||
#, fuzzy, c-format
|
||||
msgid "excluding directory %s\n"
|
||||
msgstr "tworzenie katalogu: %s\n"
|
||||
|
@ -3132,7 +3132,7 @@ msgstr "tworzenie katalogu: %s\n"
|
|||
#. * For packages being removed:
|
||||
#. * - count files.
|
||||
#.
|
||||
#: lib/transaction.c:1047
|
||||
#: lib/transaction.c:1068
|
||||
#, c-format
|
||||
msgid "sanity checking %d elements\n"
|
||||
msgstr ""
|
||||
|
@ -3145,7 +3145,7 @@ msgstr ""
|
|||
#. * calling fpLookupList only once. I'm not sure that the speedup is
|
||||
#. * worth the trouble though.
|
||||
#.
|
||||
#: lib/transaction.c:1129
|
||||
#: lib/transaction.c:1156
|
||||
#, c-format
|
||||
msgid "computing %d file fingerprints\n"
|
||||
msgstr ""
|
||||
|
@ -3153,7 +3153,7 @@ msgstr ""
|
|||
#. ===============================================
|
||||
#. * Compute file disposition for each package in transaction set.
|
||||
#.
|
||||
#: lib/transaction.c:1206
|
||||
#: lib/transaction.c:1233
|
||||
msgid "computing file dispositions\n"
|
||||
msgstr ""
|
||||
|
||||
|
|
130
po/pt.po
130
po/pt.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm\n"
|
||||
"POT-Creation-Date: 2003-01-13 15:26-0500\n"
|
||||
"POT-Creation-Date: 2003-01-17 12:33-0500\n"
|
||||
"PO-Revision-Date: 2002-02-14 10:51+0000\n"
|
||||
"Last-Translator: José Nuno Coelho Sanarra Pires <jncp@rnl.ist.utl.pt>\n"
|
||||
"Language-Team: pt <morais@kde.org\n"
|
||||
|
@ -725,7 +725,7 @@ msgstr "N
|
|||
msgid "Could not open %s: %s\n"
|
||||
msgstr "Não consigo aceder ao %s: %s\n"
|
||||
|
||||
#: build/pack.c:632 lib/psm.c:1650
|
||||
#: build/pack.c:632 lib/psm.c:1657
|
||||
#, c-format
|
||||
msgid "Unable to write package: %s\n"
|
||||
msgstr "Não consegui gravar o pacote: %s\n"
|
||||
|
@ -755,7 +755,7 @@ msgstr "N
|
|||
msgid "Unable to write payload to %s: %s\n"
|
||||
msgstr "Não consegui escrever o conteúdo de %s: %s\n"
|
||||
|
||||
#: build/pack.c:725 lib/psm.c:1941
|
||||
#: build/pack.c:725 lib/psm.c:1948
|
||||
#, c-format
|
||||
msgid "Wrote: %s\n"
|
||||
msgstr "Gravei: %s\n"
|
||||
|
@ -1356,77 +1356,77 @@ msgstr "Ficheiro de arquivo n
|
|||
msgid " failed - "
|
||||
msgstr " falhou - "
|
||||
|
||||
#: lib/depends.c:164
|
||||
#: lib/depends.c:182
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr "o pacote %s já está instalado"
|
||||
|
||||
#: lib/depends.c:362
|
||||
#: lib/depends.c:380
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:389
|
||||
#: lib/depends.c:407
|
||||
#, fuzzy
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr "%s: %-45s SIM (oferecidos pelo rpmrc)\n"
|
||||
|
||||
#: lib/depends.c:406
|
||||
#: lib/depends.c:424
|
||||
#, fuzzy
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr "%s: %-45s SIM (oferecidos pela rpmlib)\n"
|
||||
|
||||
#: lib/depends.c:435
|
||||
#: lib/depends.c:453
|
||||
#, fuzzy
|
||||
msgid "(db files)"
|
||||
msgstr "ficheiro db inválido %s\n"
|
||||
|
||||
#: lib/depends.c:448
|
||||
#: lib/depends.c:466
|
||||
#, fuzzy
|
||||
msgid "(db provides)"
|
||||
msgstr "%s: %-45s SI (oferecidos pelo db)\n"
|
||||
|
||||
#: lib/depends.c:461
|
||||
#: lib/depends.c:479
|
||||
#, fuzzy
|
||||
msgid "(db package)"
|
||||
msgstr "nenhum pacote\n"
|
||||
|
||||
#: lib/depends.c:815
|
||||
#: lib/depends.c:833
|
||||
#, c-format
|
||||
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
|
||||
msgstr "ignorar relações entre o nome do pacote [%d]\t%s -> %s\n"
|
||||
|
||||
#: lib/depends.c:937
|
||||
#: lib/depends.c:955
|
||||
#, 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:1167
|
||||
#: lib/depends.c:1185
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr "=========== a guardar as relações do tsort\n"
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1267
|
||||
#: lib/depends.c:1285
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, tree, "
|
||||
"depth)\n"
|
||||
msgstr ""
|
||||
"========== ordenar pacotes (order, #predecessors, #succesors, tree, depth)\n"
|
||||
|
||||
#: lib/depends.c:1351
|
||||
#: lib/depends.c:1369
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr "========== só os sucessores (ordem de apresentação)\n"
|
||||
|
||||
#: lib/depends.c:1421
|
||||
#: lib/depends.c:1439
|
||||
msgid "LOOP:\n"
|
||||
msgstr "CICLO:\n"
|
||||
|
||||
#: lib/depends.c:1456
|
||||
#: lib/depends.c:1474
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr "========== a prosseguir o tsort ...\n"
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1461
|
||||
#: lib/depends.c:1479
|
||||
#, c-format
|
||||
msgid "rpmtsOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
@ -2204,180 +2204,180 @@ msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
|
|||
msgstr ""
|
||||
"a execução do 'scriptlet' %s do %s-%s-%s falhou com código de erro %d\n"
|
||||
|
||||
#: lib/psm.c:1420
|
||||
#: lib/psm.c:1421
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s has %d files, test = %d\n"
|
||||
msgstr "%s: %s-%s-%s tem %d ficheiros, teste = %d\n"
|
||||
|
||||
#: lib/psm.c:1553
|
||||
#: lib/psm.c:1560
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
|
||||
msgstr "%s: %s script falhou (%d), a saltar %s-%s-%s\n"
|
||||
|
||||
#: lib/psm.c:1662
|
||||
#: lib/psm.c:1669
|
||||
#, fuzzy
|
||||
msgid "Unable to reload signature header\n"
|
||||
msgstr "Não consegui reler o cabeçalho do assinatura.\n"
|
||||
|
||||
#: lib/psm.c:1708
|
||||
#: lib/psm.c:1715
|
||||
#, c-format
|
||||
msgid "user %s does not exist - using root\n"
|
||||
msgstr "o utilizador %s não existe - a usar o root\n"
|
||||
|
||||
#: lib/psm.c:1717
|
||||
#: lib/psm.c:1724
|
||||
#, c-format
|
||||
msgid "group %s does not exist - using root\n"
|
||||
msgstr "o grupo %s não existe - a usar o root\n"
|
||||
|
||||
#: lib/psm.c:1765
|
||||
#: lib/psm.c:1772
|
||||
#, c-format
|
||||
msgid "unpacking of archive failed%s%s: %s\n"
|
||||
msgstr "a abertura do pacote falhou%s%s: %s\n"
|
||||
|
||||
#: lib/psm.c:1766
|
||||
#: lib/psm.c:1773
|
||||
msgid " on file "
|
||||
msgstr " no ficheiro "
|
||||
|
||||
#: lib/psm.c:1949
|
||||
#: lib/psm.c:1956
|
||||
#, c-format
|
||||
msgid "%s failed on file %s: %s\n"
|
||||
msgstr "%s falhou no ficheiro %s: %s\n"
|
||||
|
||||
#: lib/psm.c:1952
|
||||
#: lib/psm.c:1959
|
||||
#, c-format
|
||||
msgid "%s failed: %s\n"
|
||||
msgstr "%s falhou: %s\n"
|
||||
|
||||
#: lib/query.c:122 lib/rpmts.c:430
|
||||
#: lib/query.c:122 lib/rpmts.c:451
|
||||
#, c-format
|
||||
msgid "incorrect format: %s\n"
|
||||
msgstr "formato incorrecto: %s\n"
|
||||
|
||||
#. @-boundswrite@
|
||||
#: lib/query.c:181
|
||||
#: lib/query.c:186
|
||||
msgid "(contains no files)"
|
||||
msgstr "(não contém ficheiros)"
|
||||
|
||||
#: lib/query.c:246
|
||||
#: lib/query.c:251
|
||||
msgid "normal "
|
||||
msgstr "normal "
|
||||
|
||||
#: lib/query.c:249
|
||||
#: lib/query.c:254
|
||||
msgid "replaced "
|
||||
msgstr "substituído "
|
||||
|
||||
#: lib/query.c:252
|
||||
#: lib/query.c:257
|
||||
msgid "not installed "
|
||||
msgstr "não instalado "
|
||||
|
||||
#: lib/query.c:255
|
||||
#: lib/query.c:260
|
||||
msgid "net shared "
|
||||
msgstr "partilhado"
|
||||
|
||||
#: lib/query.c:258
|
||||
#: lib/query.c:263
|
||||
msgid "wrong color "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:261
|
||||
#: lib/query.c:266
|
||||
msgid "(no state) "
|
||||
msgstr "(sem estado) "
|
||||
|
||||
#: lib/query.c:264
|
||||
#: lib/query.c:269
|
||||
#, c-format
|
||||
msgid "(unknown %3d) "
|
||||
msgstr "(desconhecido %3d)"
|
||||
|
||||
#: lib/query.c:282
|
||||
#: lib/query.c:287
|
||||
#, fuzzy
|
||||
msgid "package has not file owner/group lists\n"
|
||||
msgstr "o pacote nem tem um dono do ficheiro ou as listas de IDs\n"
|
||||
|
||||
#: lib/query.c:315
|
||||
#: lib/query.c:320
|
||||
msgid "package has neither file owner or id lists\n"
|
||||
msgstr "o pacote nem tem um dono do ficheiro ou as listas de IDs\n"
|
||||
|
||||
#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
|
||||
#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
|
||||
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
|
||||
#, c-format
|
||||
msgid "open of %s failed: %s\n"
|
||||
msgstr "o acesso ao %s falhou: %s\n"
|
||||
|
||||
#: lib/query.c:459
|
||||
#: lib/query.c:464
|
||||
#, c-format
|
||||
msgid "query of %s failed\n"
|
||||
msgstr "a pesquisa do %s falhou\n"
|
||||
|
||||
#: lib/query.c:469
|
||||
#: lib/query.c:474
|
||||
msgid "old format source packages cannot be queried\n"
|
||||
msgstr ""
|
||||
"os pacotes com código-fonte no formato antigo não podem ser pesquisados\n"
|
||||
|
||||
#: lib/query.c:502 lib/rpminstall.c:608
|
||||
#: lib/query.c:507 lib/rpminstall.c:608
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: not an rpm package (or package manifest): %s\n"
|
||||
msgstr "nenhum pacote coincide com %s: %s\n"
|
||||
|
||||
#: lib/query.c:531
|
||||
#: lib/query.c:536
|
||||
msgid "no packages\n"
|
||||
msgstr "nenhum pacote\n"
|
||||
|
||||
#: lib/query.c:551
|
||||
#: lib/query.c:556
|
||||
#, c-format
|
||||
msgid "group %s does not contain any packages\n"
|
||||
msgstr "o grupo %s não contém nenhum pacote\n"
|
||||
|
||||
#: lib/query.c:560
|
||||
#: lib/query.c:565
|
||||
#, c-format
|
||||
msgid "no package triggers %s\n"
|
||||
msgstr "nenhum pacote activa o %s\n"
|
||||
|
||||
#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
|
||||
#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
|
||||
#, c-format
|
||||
msgid "malformed %s: %s\n"
|
||||
msgstr "malformado %s: %s\n"
|
||||
|
||||
#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
|
||||
#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
|
||||
#, c-format
|
||||
msgid "no package matches %s: %s\n"
|
||||
msgstr "nenhum pacote coincide com %s: %s\n"
|
||||
|
||||
#: lib/query.c:663
|
||||
#: lib/query.c:668
|
||||
#, c-format
|
||||
msgid "no package requires %s\n"
|
||||
msgstr "nenhum pacote precisa do %s\n"
|
||||
|
||||
#: lib/query.c:674
|
||||
#: lib/query.c:679
|
||||
#, c-format
|
||||
msgid "no package provides %s\n"
|
||||
msgstr "nenhum pacote oferece o %s\n"
|
||||
|
||||
#: lib/query.c:709
|
||||
#: lib/query.c:714
|
||||
#, c-format
|
||||
msgid "file %s: %s\n"
|
||||
msgstr "ficheiro %s: %s\n"
|
||||
|
||||
#: lib/query.c:713
|
||||
#: lib/query.c:718
|
||||
#, c-format
|
||||
msgid "file %s is not owned by any package\n"
|
||||
msgstr "o ficheiro %s não pertence a nenhum pacote\n"
|
||||
|
||||
#: lib/query.c:738
|
||||
#: lib/query.c:743
|
||||
#, c-format
|
||||
msgid "invalid package number: %s\n"
|
||||
msgstr "número de pacote inválido: %s\n"
|
||||
|
||||
#: lib/query.c:741
|
||||
#: lib/query.c:746
|
||||
#, c-format
|
||||
msgid "package record number: %u\n"
|
||||
msgstr "número de registo do pacote: %u\n"
|
||||
|
||||
#: lib/query.c:746
|
||||
#: lib/query.c:751
|
||||
#, c-format
|
||||
msgid "record %u could not be read\n"
|
||||
msgstr "o registo %u não pôde ser lido\n"
|
||||
|
||||
#: lib/query.c:756 lib/rpminstall.c:779
|
||||
#: lib/query.c:761 lib/rpminstall.c:779
|
||||
#, c-format
|
||||
msgid "package %s is not installed\n"
|
||||
msgstr "o pacote %s não está instalado\n"
|
||||
|
@ -2866,28 +2866,28 @@ msgstr "N
|
|||
msgid "Unable to open %s for reading: %s.\n"
|
||||
msgstr "Não consegui abrir o %s para leitura: %s.\n"
|
||||
|
||||
#: lib/rpmts.c:135
|
||||
#: lib/rpmts.c:156
|
||||
#, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr "não consigo abrir a base de dados Packages em %s\n"
|
||||
|
||||
#: lib/rpmts.c:320
|
||||
#: lib/rpmts.c:341
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot open Solve database in %s\n"
|
||||
msgstr "não consigo a base de dados do RPM em %s\n"
|
||||
|
||||
#: lib/rpmts.c:462
|
||||
#: lib/rpmts.c:483
|
||||
#, fuzzy, c-format
|
||||
msgid "Adding: %s\n"
|
||||
msgstr "linha: %s\n"
|
||||
|
||||
#: lib/rpmts.c:474
|
||||
#: lib/rpmts.c:495
|
||||
#, fuzzy, c-format
|
||||
msgid "Suggesting: %s\n"
|
||||
msgstr "A obter o %s\n"
|
||||
|
||||
#. Get available space on mounted file systems.
|
||||
#: lib/rpmts.c:906
|
||||
#: lib/rpmts.c:927
|
||||
msgid "getting list of mounted filesystems\n"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3061,7 +3061,7 @@ msgid "%s skipped due to missingok flag\n"
|
|||
msgstr "%s ignorado devido à opção missingok\n"
|
||||
|
||||
#. @innercontinue@
|
||||
#: lib/transaction.c:935
|
||||
#: lib/transaction.c:956
|
||||
#, c-format
|
||||
msgid "excluding directory %s\n"
|
||||
msgstr "a excluir a directoria %s\n"
|
||||
|
@ -3074,7 +3074,7 @@ msgstr "a excluir a directoria %s\n"
|
|||
#. * For packages being removed:
|
||||
#. * - count files.
|
||||
#.
|
||||
#: lib/transaction.c:1047
|
||||
#: lib/transaction.c:1068
|
||||
#, c-format
|
||||
msgid "sanity checking %d elements\n"
|
||||
msgstr ""
|
||||
|
@ -3087,7 +3087,7 @@ msgstr ""
|
|||
#. * calling fpLookupList only once. I'm not sure that the speedup is
|
||||
#. * worth the trouble though.
|
||||
#.
|
||||
#: lib/transaction.c:1129
|
||||
#: lib/transaction.c:1156
|
||||
#, c-format
|
||||
msgid "computing %d file fingerprints\n"
|
||||
msgstr ""
|
||||
|
@ -3095,7 +3095,7 @@ msgstr ""
|
|||
#. ===============================================
|
||||
#. * Compute file disposition for each package in transaction set.
|
||||
#.
|
||||
#: lib/transaction.c:1206
|
||||
#: lib/transaction.c:1233
|
||||
msgid "computing file dispositions\n"
|
||||
msgstr ""
|
||||
|
||||
|
|
130
po/pt_BR.po
130
po/pt_BR.po
|
@ -4,7 +4,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2003-01-13 15:26-0500\n"
|
||||
"POT-Creation-Date: 2003-01-17 12:33-0500\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ISO-8859-1\n"
|
||||
"Content-Transfer-Encoding: 8-bit\n"
|
||||
|
@ -799,7 +799,7 @@ msgid "Could not open %s: %s\n"
|
|||
msgstr "No consegui abrir: %s\n"
|
||||
|
||||
# , c-format
|
||||
#: build/pack.c:632 lib/psm.c:1650
|
||||
#: build/pack.c:632 lib/psm.c:1657
|
||||
#, fuzzy, c-format
|
||||
msgid "Unable to write package: %s\n"
|
||||
msgstr "No consegui abrir: %s\n"
|
||||
|
@ -834,7 +834,7 @@ msgstr "No consegui abrir: %s\n"
|
|||
msgid "Unable to write payload to %s: %s\n"
|
||||
msgstr "No consegui abrir: %s\n"
|
||||
|
||||
#: build/pack.c:725 lib/psm.c:1941
|
||||
#: build/pack.c:725 lib/psm.c:1948
|
||||
#, c-format
|
||||
msgid "Wrote: %s\n"
|
||||
msgstr ""
|
||||
|
@ -1494,75 +1494,75 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr "Construo falhou.\n"
|
||||
|
||||
#: lib/depends.c:164
|
||||
#: lib/depends.c:182
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr "no foi passado pacote para instalao"
|
||||
|
||||
#: lib/depends.c:362
|
||||
#: lib/depends.c:380
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:389
|
||||
#: lib/depends.c:407
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:406
|
||||
#: lib/depends.c:424
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr ""
|
||||
|
||||
# , c-format
|
||||
#: lib/depends.c:435
|
||||
#: lib/depends.c:453
|
||||
#, fuzzy
|
||||
msgid "(db files)"
|
||||
msgstr "No consegui abrir: %s\n"
|
||||
|
||||
#: lib/depends.c:448
|
||||
#: lib/depends.c:466
|
||||
msgid "(db provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:461
|
||||
#: lib/depends.c:479
|
||||
#, fuzzy
|
||||
msgid "(db package)"
|
||||
msgstr "pesquise todos os pacotes"
|
||||
|
||||
#: lib/depends.c:815
|
||||
#: lib/depends.c:833
|
||||
#, c-format
|
||||
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
|
||||
msgstr ""
|
||||
|
||||
# , c-format
|
||||
#: lib/depends.c:937
|
||||
#: lib/depends.c:955
|
||||
#, fuzzy, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr "No consegui abrir: %s\n"
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1167
|
||||
#: lib/depends.c:1185
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1267
|
||||
#: lib/depends.c:1285
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, tree, "
|
||||
"depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1351
|
||||
#: lib/depends.c:1369
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1421
|
||||
#: lib/depends.c:1439
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1456
|
||||
#: lib/depends.c:1474
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1461
|
||||
#: lib/depends.c:1479
|
||||
#, c-format
|
||||
msgid "rpmtsOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
@ -2386,185 +2386,185 @@ msgstr ""
|
|||
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1420
|
||||
#: lib/psm.c:1421
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s has %d files, test = %d\n"
|
||||
msgstr "no foi passado pacote para instalao"
|
||||
|
||||
#: lib/psm.c:1553
|
||||
#: lib/psm.c:1560
|
||||
#, c-format
|
||||
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
|
||||
msgstr ""
|
||||
|
||||
# , c-format
|
||||
#: lib/psm.c:1662
|
||||
#: lib/psm.c:1669
|
||||
#, fuzzy
|
||||
msgid "Unable to reload signature header\n"
|
||||
msgstr "No consegui abrir: %s\n"
|
||||
|
||||
#: lib/psm.c:1708
|
||||
#: lib/psm.c:1715
|
||||
#, c-format
|
||||
msgid "user %s does not exist - using root\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1717
|
||||
#: lib/psm.c:1724
|
||||
#, c-format
|
||||
msgid "group %s does not exist - using root\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1765
|
||||
#: lib/psm.c:1772
|
||||
#, fuzzy, c-format
|
||||
msgid "unpacking of archive failed%s%s: %s\n"
|
||||
msgstr "Construo falhou.\n"
|
||||
|
||||
#: lib/psm.c:1766
|
||||
#: lib/psm.c:1773
|
||||
msgid " on file "
|
||||
msgstr ""
|
||||
|
||||
# , c-format
|
||||
#: lib/psm.c:1949
|
||||
#: lib/psm.c:1956
|
||||
#, fuzzy, c-format
|
||||
msgid "%s failed on file %s: %s\n"
|
||||
msgstr "No consegui abrir: %s\n"
|
||||
|
||||
#: lib/psm.c:1952
|
||||
#: lib/psm.c:1959
|
||||
#, fuzzy, c-format
|
||||
msgid "%s failed: %s\n"
|
||||
msgstr "Construo falhou.\n"
|
||||
|
||||
#: lib/query.c:122 lib/rpmts.c:430
|
||||
#: lib/query.c:122 lib/rpmts.c:451
|
||||
#, c-format
|
||||
msgid "incorrect format: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#. @-boundswrite@
|
||||
#: lib/query.c:181
|
||||
#: lib/query.c:186
|
||||
msgid "(contains no files)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:246
|
||||
#: lib/query.c:251
|
||||
msgid "normal "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:249
|
||||
#: lib/query.c:254
|
||||
msgid "replaced "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:252
|
||||
#: lib/query.c:257
|
||||
#, fuzzy
|
||||
msgid "not installed "
|
||||
msgstr "no foi passado pacote para instalao"
|
||||
|
||||
#: lib/query.c:255
|
||||
#: lib/query.c:260
|
||||
msgid "net shared "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:258
|
||||
#: lib/query.c:263
|
||||
msgid "wrong color "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:261
|
||||
#: lib/query.c:266
|
||||
msgid "(no state) "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:264
|
||||
#: lib/query.c:269
|
||||
#, c-format
|
||||
msgid "(unknown %3d) "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:282
|
||||
#: lib/query.c:287
|
||||
#, fuzzy
|
||||
msgid "package has not file owner/group lists\n"
|
||||
msgstr "no foi passado pacote para instalao"
|
||||
|
||||
#: lib/query.c:315
|
||||
#: lib/query.c:320
|
||||
#, fuzzy
|
||||
msgid "package has neither file owner or id lists\n"
|
||||
msgstr "no foi passado pacote para instalao"
|
||||
|
||||
#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
|
||||
#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
|
||||
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
|
||||
#, fuzzy, c-format
|
||||
msgid "open of %s failed: %s\n"
|
||||
msgstr "Construo falhou.\n"
|
||||
|
||||
#: lib/query.c:459
|
||||
#: lib/query.c:464
|
||||
#, c-format
|
||||
msgid "query of %s failed\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:469
|
||||
#: lib/query.c:474
|
||||
msgid "old format source packages cannot be queried\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:502 lib/rpminstall.c:608
|
||||
#: lib/query.c:507 lib/rpminstall.c:608
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: not an rpm package (or package manifest): %s\n"
|
||||
msgstr "no foram passados pacotes para assinatura"
|
||||
|
||||
#: lib/query.c:531
|
||||
#: lib/query.c:536
|
||||
#, fuzzy
|
||||
msgid "no packages\n"
|
||||
msgstr "pesquise todos os pacotes"
|
||||
|
||||
#: lib/query.c:551
|
||||
#: lib/query.c:556
|
||||
#, c-format
|
||||
msgid "group %s does not contain any packages\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:560
|
||||
#: lib/query.c:565
|
||||
#, fuzzy, c-format
|
||||
msgid "no package triggers %s\n"
|
||||
msgstr "no foram passados pacotes para assinatura"
|
||||
|
||||
# , c-format
|
||||
#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
|
||||
#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
|
||||
#, fuzzy, c-format
|
||||
msgid "malformed %s: %s\n"
|
||||
msgstr "No consegui ler o arquivo spec de %s\n"
|
||||
|
||||
#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
|
||||
#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
|
||||
#, fuzzy, c-format
|
||||
msgid "no package matches %s: %s\n"
|
||||
msgstr "no foram passados pacotes para assinatura"
|
||||
|
||||
#: lib/query.c:663
|
||||
#: lib/query.c:668
|
||||
#, c-format
|
||||
msgid "no package requires %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:674
|
||||
#: lib/query.c:679
|
||||
#, c-format
|
||||
msgid "no package provides %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:709
|
||||
#: lib/query.c:714
|
||||
#, c-format
|
||||
msgid "file %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:713
|
||||
#: lib/query.c:718
|
||||
#, c-format
|
||||
msgid "file %s is not owned by any package\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:738
|
||||
#: lib/query.c:743
|
||||
#, c-format
|
||||
msgid "invalid package number: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:741
|
||||
#: lib/query.c:746
|
||||
#, c-format
|
||||
msgid "package record number: %u\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:746
|
||||
#: lib/query.c:751
|
||||
#, c-format
|
||||
msgid "record %u could not be read\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:756 lib/rpminstall.c:779
|
||||
#: lib/query.c:761 lib/rpminstall.c:779
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s is not installed\n"
|
||||
msgstr "no foi passado pacote para instalao"
|
||||
|
@ -3093,19 +3093,19 @@ msgid "Unable to open %s for reading: %s.\n"
|
|||
msgstr "No consegui abrir: %s\n"
|
||||
|
||||
# , c-format
|
||||
#: lib/rpmts.c:135
|
||||
#: lib/rpmts.c:156
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr "No consegui abrir: %s\n"
|
||||
|
||||
# , c-format
|
||||
#: lib/rpmts.c:320
|
||||
#: lib/rpmts.c:341
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot open Solve database in %s\n"
|
||||
msgstr "No consegui abrir: %s\n"
|
||||
|
||||
# , c-format
|
||||
#: lib/rpmts.c:462
|
||||
#: lib/rpmts.c:483
|
||||
#, fuzzy, c-format
|
||||
msgid "Adding: %s\n"
|
||||
msgstr "No consegui ler o arquivo spec de %s\n"
|
||||
|
@ -3118,13 +3118,13 @@ msgstr "No consegui ler o arquivo spec de %s\n"
|
|||
# "Content-Type: text/plain; charset=ISO-8859-1\n"
|
||||
# "Content-Transfer-Encoding: 8-bit\n"
|
||||
# , c-format
|
||||
#: lib/rpmts.c:474
|
||||
#: lib/rpmts.c:495
|
||||
#, fuzzy, c-format
|
||||
msgid "Suggesting: %s\n"
|
||||
msgstr "RPM verso %s\n"
|
||||
|
||||
#. Get available space on mounted file systems.
|
||||
#: lib/rpmts.c:906
|
||||
#: lib/rpmts.c:927
|
||||
msgid "getting list of mounted filesystems\n"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3310,7 +3310,7 @@ msgstr ""
|
|||
# "Content-Transfer-Encoding: 8-bit\n"
|
||||
# , c-format
|
||||
#. @innercontinue@
|
||||
#: lib/transaction.c:935
|
||||
#: lib/transaction.c:956
|
||||
#, fuzzy, c-format
|
||||
msgid "excluding directory %s\n"
|
||||
msgstr "RPM verso %s\n"
|
||||
|
@ -3323,7 +3323,7 @@ msgstr "RPM verso %s\n"
|
|||
#. * For packages being removed:
|
||||
#. * - count files.
|
||||
#.
|
||||
#: lib/transaction.c:1047
|
||||
#: lib/transaction.c:1068
|
||||
#, c-format
|
||||
msgid "sanity checking %d elements\n"
|
||||
msgstr ""
|
||||
|
@ -3336,7 +3336,7 @@ msgstr ""
|
|||
#. * calling fpLookupList only once. I'm not sure that the speedup is
|
||||
#. * worth the trouble though.
|
||||
#.
|
||||
#: lib/transaction.c:1129
|
||||
#: lib/transaction.c:1156
|
||||
#, c-format
|
||||
msgid "computing %d file fingerprints\n"
|
||||
msgstr ""
|
||||
|
@ -3344,7 +3344,7 @@ msgstr ""
|
|||
#. ===============================================
|
||||
#. * Compute file disposition for each package in transaction set.
|
||||
#.
|
||||
#: lib/transaction.c:1206
|
||||
#: lib/transaction.c:1233
|
||||
msgid "computing file dispositions\n"
|
||||
msgstr ""
|
||||
|
||||
|
|
130
po/ro.po
130
po/ro.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2003-01-13 15:26-0500\n"
|
||||
"POT-Creation-Date: 2003-01-17 12:33-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"
|
||||
|
@ -701,7 +701,7 @@ msgstr ""
|
|||
msgid "Could not open %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/pack.c:632 lib/psm.c:1650
|
||||
#: build/pack.c:632 lib/psm.c:1657
|
||||
#, c-format
|
||||
msgid "Unable to write package: %s\n"
|
||||
msgstr ""
|
||||
|
@ -731,7 +731,7 @@ msgstr ""
|
|||
msgid "Unable to write payload to %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/pack.c:725 lib/psm.c:1941
|
||||
#: build/pack.c:725 lib/psm.c:1948
|
||||
#, c-format
|
||||
msgid "Wrote: %s\n"
|
||||
msgstr ""
|
||||
|
@ -1320,71 +1320,71 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:164
|
||||
#: lib/depends.c:182
|
||||
#, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:362
|
||||
#: lib/depends.c:380
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:389
|
||||
#: lib/depends.c:407
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:406
|
||||
#: lib/depends.c:424
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:435
|
||||
#: lib/depends.c:453
|
||||
msgid "(db files)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:448
|
||||
#: lib/depends.c:466
|
||||
msgid "(db provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:461
|
||||
#: lib/depends.c:479
|
||||
msgid "(db package)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:815
|
||||
#: lib/depends.c:833
|
||||
#, c-format
|
||||
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:937
|
||||
#: lib/depends.c:955
|
||||
#, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr ""
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1167
|
||||
#: lib/depends.c:1185
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1267
|
||||
#: lib/depends.c:1285
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, tree, "
|
||||
"depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1351
|
||||
#: lib/depends.c:1369
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1421
|
||||
#: lib/depends.c:1439
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1456
|
||||
#: lib/depends.c:1474
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1461
|
||||
#: lib/depends.c:1479
|
||||
#, c-format
|
||||
msgid "rpmtsOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
@ -2129,177 +2129,177 @@ msgstr ""
|
|||
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1420
|
||||
#: lib/psm.c:1421
|
||||
#, c-format
|
||||
msgid "%s: %s has %d files, test = %d\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1553
|
||||
#: lib/psm.c:1560
|
||||
#, c-format
|
||||
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1662
|
||||
#: lib/psm.c:1669
|
||||
msgid "Unable to reload signature header\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1708
|
||||
#: lib/psm.c:1715
|
||||
#, c-format
|
||||
msgid "user %s does not exist - using root\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1717
|
||||
#: lib/psm.c:1724
|
||||
#, c-format
|
||||
msgid "group %s does not exist - using root\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1765
|
||||
#: lib/psm.c:1772
|
||||
#, c-format
|
||||
msgid "unpacking of archive failed%s%s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1766
|
||||
#: lib/psm.c:1773
|
||||
msgid " on file "
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1949
|
||||
#: lib/psm.c:1956
|
||||
#, c-format
|
||||
msgid "%s failed on file %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1952
|
||||
#: lib/psm.c:1959
|
||||
#, c-format
|
||||
msgid "%s failed: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:122 lib/rpmts.c:430
|
||||
#: lib/query.c:122 lib/rpmts.c:451
|
||||
#, c-format
|
||||
msgid "incorrect format: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#. @-boundswrite@
|
||||
#: lib/query.c:181
|
||||
#: lib/query.c:186
|
||||
msgid "(contains no files)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:246
|
||||
#: lib/query.c:251
|
||||
msgid "normal "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:249
|
||||
#: lib/query.c:254
|
||||
msgid "replaced "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:252
|
||||
#: lib/query.c:257
|
||||
msgid "not installed "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:255
|
||||
#: lib/query.c:260
|
||||
msgid "net shared "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:258
|
||||
#: lib/query.c:263
|
||||
msgid "wrong color "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:261
|
||||
#: lib/query.c:266
|
||||
msgid "(no state) "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:264
|
||||
#: lib/query.c:269
|
||||
#, c-format
|
||||
msgid "(unknown %3d) "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:282
|
||||
#: lib/query.c:287
|
||||
msgid "package has not file owner/group lists\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:315
|
||||
#: lib/query.c:320
|
||||
msgid "package has neither file owner or id lists\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
|
||||
#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
|
||||
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
|
||||
#, c-format
|
||||
msgid "open of %s failed: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:459
|
||||
#: lib/query.c:464
|
||||
#, c-format
|
||||
msgid "query of %s failed\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:469
|
||||
#: lib/query.c:474
|
||||
msgid "old format source packages cannot be queried\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:502 lib/rpminstall.c:608
|
||||
#: lib/query.c:507 lib/rpminstall.c:608
|
||||
#, c-format
|
||||
msgid "%s: not an rpm package (or package manifest): %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:531
|
||||
#: lib/query.c:536
|
||||
msgid "no packages\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:551
|
||||
#: lib/query.c:556
|
||||
#, c-format
|
||||
msgid "group %s does not contain any packages\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:560
|
||||
#: lib/query.c:565
|
||||
#, c-format
|
||||
msgid "no package triggers %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
|
||||
#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
|
||||
#, c-format
|
||||
msgid "malformed %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
|
||||
#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
|
||||
#, c-format
|
||||
msgid "no package matches %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:663
|
||||
#: lib/query.c:668
|
||||
#, c-format
|
||||
msgid "no package requires %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:674
|
||||
#: lib/query.c:679
|
||||
#, c-format
|
||||
msgid "no package provides %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:709
|
||||
#: lib/query.c:714
|
||||
#, c-format
|
||||
msgid "file %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:713
|
||||
#: lib/query.c:718
|
||||
#, c-format
|
||||
msgid "file %s is not owned by any package\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:738
|
||||
#: lib/query.c:743
|
||||
#, c-format
|
||||
msgid "invalid package number: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:741
|
||||
#: lib/query.c:746
|
||||
#, c-format
|
||||
msgid "package record number: %u\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:746
|
||||
#: lib/query.c:751
|
||||
#, c-format
|
||||
msgid "record %u could not be read\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:756 lib/rpminstall.c:779
|
||||
#: lib/query.c:761 lib/rpminstall.c:779
|
||||
#, c-format
|
||||
msgid "package %s is not installed\n"
|
||||
msgstr ""
|
||||
|
@ -2775,28 +2775,28 @@ msgstr ""
|
|||
msgid "Unable to open %s for reading: %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmts.c:135
|
||||
#: lib/rpmts.c:156
|
||||
#, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmts.c:320
|
||||
#: lib/rpmts.c:341
|
||||
#, c-format
|
||||
msgid "cannot open Solve database in %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmts.c:462
|
||||
#: lib/rpmts.c:483
|
||||
#, c-format
|
||||
msgid "Adding: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmts.c:474
|
||||
#: lib/rpmts.c:495
|
||||
#, c-format
|
||||
msgid "Suggesting: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#. Get available space on mounted file systems.
|
||||
#: lib/rpmts.c:906
|
||||
#: lib/rpmts.c:927
|
||||
msgid "getting list of mounted filesystems\n"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2965,7 +2965,7 @@ msgid "%s skipped due to missingok flag\n"
|
|||
msgstr ""
|
||||
|
||||
#. @innercontinue@
|
||||
#: lib/transaction.c:935
|
||||
#: lib/transaction.c:956
|
||||
#, c-format
|
||||
msgid "excluding directory %s\n"
|
||||
msgstr ""
|
||||
|
@ -2978,7 +2978,7 @@ msgstr ""
|
|||
#. * For packages being removed:
|
||||
#. * - count files.
|
||||
#.
|
||||
#: lib/transaction.c:1047
|
||||
#: lib/transaction.c:1068
|
||||
#, c-format
|
||||
msgid "sanity checking %d elements\n"
|
||||
msgstr ""
|
||||
|
@ -2991,7 +2991,7 @@ msgstr ""
|
|||
#. * calling fpLookupList only once. I'm not sure that the speedup is
|
||||
#. * worth the trouble though.
|
||||
#.
|
||||
#: lib/transaction.c:1129
|
||||
#: lib/transaction.c:1156
|
||||
#, c-format
|
||||
msgid "computing %d file fingerprints\n"
|
||||
msgstr ""
|
||||
|
@ -2999,7 +2999,7 @@ msgstr ""
|
|||
#. ===============================================
|
||||
#. * Compute file disposition for each package in transaction set.
|
||||
#.
|
||||
#: lib/transaction.c:1206
|
||||
#: lib/transaction.c:1233
|
||||
msgid "computing file dispositions\n"
|
||||
msgstr ""
|
||||
|
||||
|
|
130
po/rpm.pot
130
po/rpm.pot
|
@ -7,7 +7,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2003-01-13 15:26-0500\n"
|
||||
"POT-Creation-Date: 2003-01-17 12:33-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"
|
||||
|
@ -707,7 +707,7 @@ msgstr ""
|
|||
msgid "Could not open %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/pack.c:632 lib/psm.c:1650
|
||||
#: build/pack.c:632 lib/psm.c:1657
|
||||
#, c-format
|
||||
msgid "Unable to write package: %s\n"
|
||||
msgstr ""
|
||||
|
@ -737,7 +737,7 @@ msgstr ""
|
|||
msgid "Unable to write payload to %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/pack.c:725 lib/psm.c:1941
|
||||
#: build/pack.c:725 lib/psm.c:1948
|
||||
#, c-format
|
||||
msgid "Wrote: %s\n"
|
||||
msgstr ""
|
||||
|
@ -1326,71 +1326,71 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:164
|
||||
#: lib/depends.c:182
|
||||
#, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:362
|
||||
#: lib/depends.c:380
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:389
|
||||
#: lib/depends.c:407
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:406
|
||||
#: lib/depends.c:424
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:435
|
||||
#: lib/depends.c:453
|
||||
msgid "(db files)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:448
|
||||
#: lib/depends.c:466
|
||||
msgid "(db provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:461
|
||||
#: lib/depends.c:479
|
||||
msgid "(db package)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:815
|
||||
#: lib/depends.c:833
|
||||
#, c-format
|
||||
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:937
|
||||
#: lib/depends.c:955
|
||||
#, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr ""
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1167
|
||||
#: lib/depends.c:1185
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1267
|
||||
#: lib/depends.c:1285
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, tree, "
|
||||
"depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1351
|
||||
#: lib/depends.c:1369
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1421
|
||||
#: lib/depends.c:1439
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1456
|
||||
#: lib/depends.c:1474
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1461
|
||||
#: lib/depends.c:1479
|
||||
#, c-format
|
||||
msgid "rpmtsOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
@ -2135,177 +2135,177 @@ msgstr ""
|
|||
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1420
|
||||
#: lib/psm.c:1421
|
||||
#, c-format
|
||||
msgid "%s: %s has %d files, test = %d\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1553
|
||||
#: lib/psm.c:1560
|
||||
#, c-format
|
||||
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1662
|
||||
#: lib/psm.c:1669
|
||||
msgid "Unable to reload signature header\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1708
|
||||
#: lib/psm.c:1715
|
||||
#, c-format
|
||||
msgid "user %s does not exist - using root\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1717
|
||||
#: lib/psm.c:1724
|
||||
#, c-format
|
||||
msgid "group %s does not exist - using root\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1765
|
||||
#: lib/psm.c:1772
|
||||
#, c-format
|
||||
msgid "unpacking of archive failed%s%s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1766
|
||||
#: lib/psm.c:1773
|
||||
msgid " on file "
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1949
|
||||
#: lib/psm.c:1956
|
||||
#, c-format
|
||||
msgid "%s failed on file %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1952
|
||||
#: lib/psm.c:1959
|
||||
#, c-format
|
||||
msgid "%s failed: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:122 lib/rpmts.c:430
|
||||
#: lib/query.c:122 lib/rpmts.c:451
|
||||
#, c-format
|
||||
msgid "incorrect format: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#. @-boundswrite@
|
||||
#: lib/query.c:181
|
||||
#: lib/query.c:186
|
||||
msgid "(contains no files)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:246
|
||||
#: lib/query.c:251
|
||||
msgid "normal "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:249
|
||||
#: lib/query.c:254
|
||||
msgid "replaced "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:252
|
||||
#: lib/query.c:257
|
||||
msgid "not installed "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:255
|
||||
#: lib/query.c:260
|
||||
msgid "net shared "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:258
|
||||
#: lib/query.c:263
|
||||
msgid "wrong color "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:261
|
||||
#: lib/query.c:266
|
||||
msgid "(no state) "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:264
|
||||
#: lib/query.c:269
|
||||
#, c-format
|
||||
msgid "(unknown %3d) "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:282
|
||||
#: lib/query.c:287
|
||||
msgid "package has not file owner/group lists\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:315
|
||||
#: lib/query.c:320
|
||||
msgid "package has neither file owner or id lists\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
|
||||
#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
|
||||
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
|
||||
#, c-format
|
||||
msgid "open of %s failed: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:459
|
||||
#: lib/query.c:464
|
||||
#, c-format
|
||||
msgid "query of %s failed\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:469
|
||||
#: lib/query.c:474
|
||||
msgid "old format source packages cannot be queried\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:502 lib/rpminstall.c:608
|
||||
#: lib/query.c:507 lib/rpminstall.c:608
|
||||
#, c-format
|
||||
msgid "%s: not an rpm package (or package manifest): %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:531
|
||||
#: lib/query.c:536
|
||||
msgid "no packages\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:551
|
||||
#: lib/query.c:556
|
||||
#, c-format
|
||||
msgid "group %s does not contain any packages\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:560
|
||||
#: lib/query.c:565
|
||||
#, c-format
|
||||
msgid "no package triggers %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
|
||||
#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
|
||||
#, c-format
|
||||
msgid "malformed %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
|
||||
#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
|
||||
#, c-format
|
||||
msgid "no package matches %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:663
|
||||
#: lib/query.c:668
|
||||
#, c-format
|
||||
msgid "no package requires %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:674
|
||||
#: lib/query.c:679
|
||||
#, c-format
|
||||
msgid "no package provides %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:709
|
||||
#: lib/query.c:714
|
||||
#, c-format
|
||||
msgid "file %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:713
|
||||
#: lib/query.c:718
|
||||
#, c-format
|
||||
msgid "file %s is not owned by any package\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:738
|
||||
#: lib/query.c:743
|
||||
#, c-format
|
||||
msgid "invalid package number: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:741
|
||||
#: lib/query.c:746
|
||||
#, c-format
|
||||
msgid "package record number: %u\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:746
|
||||
#: lib/query.c:751
|
||||
#, c-format
|
||||
msgid "record %u could not be read\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:756 lib/rpminstall.c:779
|
||||
#: lib/query.c:761 lib/rpminstall.c:779
|
||||
#, c-format
|
||||
msgid "package %s is not installed\n"
|
||||
msgstr ""
|
||||
|
@ -2781,28 +2781,28 @@ msgstr ""
|
|||
msgid "Unable to open %s for reading: %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmts.c:135
|
||||
#: lib/rpmts.c:156
|
||||
#, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmts.c:320
|
||||
#: lib/rpmts.c:341
|
||||
#, c-format
|
||||
msgid "cannot open Solve database in %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmts.c:462
|
||||
#: lib/rpmts.c:483
|
||||
#, c-format
|
||||
msgid "Adding: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmts.c:474
|
||||
#: lib/rpmts.c:495
|
||||
#, c-format
|
||||
msgid "Suggesting: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#. Get available space on mounted file systems.
|
||||
#: lib/rpmts.c:906
|
||||
#: lib/rpmts.c:927
|
||||
msgid "getting list of mounted filesystems\n"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2971,7 +2971,7 @@ msgid "%s skipped due to missingok flag\n"
|
|||
msgstr ""
|
||||
|
||||
#. @innercontinue@
|
||||
#: lib/transaction.c:935
|
||||
#: lib/transaction.c:956
|
||||
#, c-format
|
||||
msgid "excluding directory %s\n"
|
||||
msgstr ""
|
||||
|
@ -2984,7 +2984,7 @@ msgstr ""
|
|||
#. * For packages being removed:
|
||||
#. * - count files.
|
||||
#.
|
||||
#: lib/transaction.c:1047
|
||||
#: lib/transaction.c:1068
|
||||
#, c-format
|
||||
msgid "sanity checking %d elements\n"
|
||||
msgstr ""
|
||||
|
@ -2997,7 +2997,7 @@ msgstr ""
|
|||
#. * calling fpLookupList only once. I'm not sure that the speedup is
|
||||
#. * worth the trouble though.
|
||||
#.
|
||||
#: lib/transaction.c:1129
|
||||
#: lib/transaction.c:1156
|
||||
#, c-format
|
||||
msgid "computing %d file fingerprints\n"
|
||||
msgstr ""
|
||||
|
@ -3005,7 +3005,7 @@ msgstr ""
|
|||
#. ===============================================
|
||||
#. * Compute file disposition for each package in transaction set.
|
||||
#.
|
||||
#: lib/transaction.c:1206
|
||||
#: lib/transaction.c:1233
|
||||
msgid "computing file dispositions\n"
|
||||
msgstr ""
|
||||
|
||||
|
|
130
po/ru.po
130
po/ru.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2003-01-13 15:26-0500\n"
|
||||
"POT-Creation-Date: 2003-01-17 12:33-0500\n"
|
||||
"PO-Revision-Date: 2002-08-27 13:36-0400\n"
|
||||
"Last-Translator: Eugene Kanter, <eugene@blackcatlinux.com>\n"
|
||||
"Language-Team: Black Cat Linux Team <blackcat-support@blackcatlinux.com>\n"
|
||||
|
@ -724,7 +724,7 @@ msgstr "
|
|||
msgid "Could not open %s: %s\n"
|
||||
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
|
||||
|
||||
#: build/pack.c:632 lib/psm.c:1650
|
||||
#: build/pack.c:632 lib/psm.c:1657
|
||||
#, c-format
|
||||
msgid "Unable to write package: %s\n"
|
||||
msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÐÁËÅÔ: %s\n"
|
||||
|
@ -754,7 +754,7 @@ msgstr "
|
|||
msgid "Unable to write payload to %s: %s\n"
|
||||
msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÓÏÄÅÒÖÉÍÏÅ × %s: %s\n"
|
||||
|
||||
#: build/pack.c:725 lib/psm.c:1941
|
||||
#: build/pack.c:725 lib/psm.c:1948
|
||||
#, c-format
|
||||
msgid "Wrote: %s\n"
|
||||
msgstr "úÁÐÉÓÁÎ: %s\n"
|
||||
|
@ -1356,52 +1356,52 @@ msgstr "
|
|||
msgid " failed - "
|
||||
msgstr "ÎÅ ÕÄÁÌÏÓØ - "
|
||||
|
||||
#: lib/depends.c:164
|
||||
#: lib/depends.c:182
|
||||
#, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr "ÐÁËÅÔ %s ÕÖÅ ÂÙÌ ÄÏÂÁ×ÌÅÎ, ÚÁÍÅÎÑÅÔÓÑ %s\n"
|
||||
|
||||
#: lib/depends.c:362
|
||||
#: lib/depends.c:380
|
||||
msgid "(cached)"
|
||||
msgstr "(ËÜÛÉÒÏ×ÁÎ)"
|
||||
|
||||
#: lib/depends.c:389
|
||||
#: lib/depends.c:407
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr "(rpmrc provides)"
|
||||
|
||||
#: lib/depends.c:406
|
||||
#: lib/depends.c:424
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr "(rpmlib provides)"
|
||||
|
||||
#: lib/depends.c:435
|
||||
#: lib/depends.c:453
|
||||
msgid "(db files)"
|
||||
msgstr "(db files)"
|
||||
|
||||
#: lib/depends.c:448
|
||||
#: lib/depends.c:466
|
||||
msgid "(db provides)"
|
||||
msgstr "(db provides)"
|
||||
|
||||
#: lib/depends.c:461
|
||||
#: lib/depends.c:479
|
||||
msgid "(db package)"
|
||||
msgstr "(db package)"
|
||||
|
||||
#: lib/depends.c:815
|
||||
#: lib/depends.c:833
|
||||
#, c-format
|
||||
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
|
||||
msgstr "ÉÇÎÏÒÉÒÏ×ÁÔØ ÚÁ×ÉÓÉÍÏÓÔ(É) ÉͣΠÐÁËÅÔÁ(Ï×) [%d]\t%s -> %s\n"
|
||||
|
||||
#: lib/depends.c:937
|
||||
#: lib/depends.c:955
|
||||
#, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr "ÕÄÁÌÑÅÔÓÑ %s \"%s\" ÉÚ ÓÏÒÔÉÒÏ×ÁÎÎÙÈ Ó×ÑÚÅÊ.\n"
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1167
|
||||
#: lib/depends.c:1185
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr "========== ÚÁÐÉÓØ ÕÐÏÒÑÄÏÞÅÎÎÙÈ ÚÁ×ÉÓÉÍÏÓÔÅÊ\n"
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1267
|
||||
#: lib/depends.c:1285
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, tree, "
|
||||
"depth)\n"
|
||||
|
@ -1409,20 +1409,20 @@ msgstr ""
|
|||
"========== ÓÏÒÔÉÒÏ×ËÁ ÐÁËÅÔÏ× (ÏÞÅÒÅÄÎÏÓÔØ, #predecessors, #succesors, "
|
||||
"ÄÅÒÅ×Ï, ÇÌÕÂÉÎÁ)\n"
|
||||
|
||||
#: lib/depends.c:1351
|
||||
#: lib/depends.c:1369
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr "========== ÔÏÌØËÏ ÐÏÓÌÅÄÏ×ÁÔÅÌÉ (× ÐÏÒÑÄËÅ ÐÒÅÄÓÔÁ×ÌÅÎÉÑ)\n"
|
||||
|
||||
#: lib/depends.c:1421
|
||||
#: lib/depends.c:1439
|
||||
msgid "LOOP:\n"
|
||||
msgstr "ãéëì:\n"
|
||||
|
||||
#: lib/depends.c:1456
|
||||
#: lib/depends.c:1474
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr "========== ÐÒÏÄÏÌÖÅÎÉÅ ÕÐÏÒÑÄÏÞÅÎÉÑ ...\n"
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1461
|
||||
#: lib/depends.c:1479
|
||||
#, c-format
|
||||
msgid "rpmtsOrder failed, %d elements remain\n"
|
||||
msgstr "ÏÛÉÂËÁ rpmtsOrder, ÏÓÔÁÌÏÓØ %d ÜÌÅÍÅÎÔÏ×\n"
|
||||
|
@ -2177,177 +2177,177 @@ msgstr "%s(%s-%s-%s)
|
|||
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
|
||||
msgstr "%s(%s-%s-%s) ÏÛÉÂËÁ ×ÙÐÏÌÎÅÎÉÑ ÓÃÅÎÁÒÉÑ, ËÏÄ ×ÏÚ×ÒÁÔÁ %d\n"
|
||||
|
||||
#: lib/psm.c:1420
|
||||
#: lib/psm.c:1421
|
||||
#, c-format
|
||||
msgid "%s: %s has %d files, test = %d\n"
|
||||
msgstr "%s: %s ÓÏÄÅÒÖÉÔ %d ÆÁÊÌÏ×, ÒÅÚÕÌØÔÁÔ ÐÒÏ×ÅÒËÉ: %d\n"
|
||||
|
||||
#: lib/psm.c:1553
|
||||
#: lib/psm.c:1560
|
||||
#, c-format
|
||||
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
|
||||
msgstr "%s: %s ÏÛÉÂËÁ ÓÃÅÎÁÒÉÑ (%d), ÐÒÏÐÕÓËÁÅÔÓÑ %s\n"
|
||||
|
||||
#: lib/psm.c:1662
|
||||
#: lib/psm.c:1669
|
||||
msgid "Unable to reload signature header\n"
|
||||
msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÅÒÅÚÁÇÒÕÚÉÔØ ÚÁÇÏÌÏ×ÏË ÐÏÄÐÉÓÉ\n"
|
||||
|
||||
#: lib/psm.c:1708
|
||||
#: lib/psm.c:1715
|
||||
#, c-format
|
||||
msgid "user %s does not exist - using root\n"
|
||||
msgstr "ÐÏÌØÚÏ×ÁÔÅÌØ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ - ÉÓÐÏÌØÚÕÅÔÓÑ root\n"
|
||||
|
||||
#: lib/psm.c:1717
|
||||
#: lib/psm.c:1724
|
||||
#, c-format
|
||||
msgid "group %s does not exist - using root\n"
|
||||
msgstr "ÇÒÕÐÐÁ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ - ÉÓÐÏÌØÚÕÅÔÓÑ root\n"
|
||||
|
||||
#: lib/psm.c:1765
|
||||
#: lib/psm.c:1772
|
||||
#, c-format
|
||||
msgid "unpacking of archive failed%s%s: %s\n"
|
||||
msgstr "ÒÁÓÐÁËÏ×ËÁ ÁÒÈÉ×Á ÎÅ ÕÄÁÌÁÓØ%s%s: %s\n"
|
||||
|
||||
#: lib/psm.c:1766
|
||||
#: lib/psm.c:1773
|
||||
msgid " on file "
|
||||
msgstr " ÎÁ ÆÁÊÌÅ "
|
||||
|
||||
#: lib/psm.c:1949
|
||||
#: lib/psm.c:1956
|
||||
#, c-format
|
||||
msgid "%s failed on file %s: %s\n"
|
||||
msgstr "%s ÏÛÉÂËÁ ÎÁ ÆÁÊÌÅ %s: %s\n"
|
||||
|
||||
#: lib/psm.c:1952
|
||||
#: lib/psm.c:1959
|
||||
#, c-format
|
||||
msgid "%s failed: %s\n"
|
||||
msgstr "%s ÎÅ ÕÄÁÌÏÓØ: %s\n"
|
||||
|
||||
#: lib/query.c:122 lib/rpmts.c:430
|
||||
#: lib/query.c:122 lib/rpmts.c:451
|
||||
#, c-format
|
||||
msgid "incorrect format: %s\n"
|
||||
msgstr "ÏÛÉÂËÁ × ÆÏÒÍÁÔÅ: %s\n"
|
||||
|
||||
#. @-boundswrite@
|
||||
#: lib/query.c:181
|
||||
#: lib/query.c:186
|
||||
msgid "(contains no files)"
|
||||
msgstr "(ÎÅ ÓÏÄÅÒÖÉÔ ÆÁÊÌÏ×)"
|
||||
|
||||
#: lib/query.c:246
|
||||
#: lib/query.c:251
|
||||
msgid "normal "
|
||||
msgstr "ÎÏÒÍÁÌØÎÙÊ "
|
||||
|
||||
#: lib/query.c:249
|
||||
#: lib/query.c:254
|
||||
msgid "replaced "
|
||||
msgstr "ÚÁÍÅÎÅÎÎÙÊ "
|
||||
|
||||
#: lib/query.c:252
|
||||
#: lib/query.c:257
|
||||
msgid "not installed "
|
||||
msgstr "ÎÅ ÕÓÔÁÎÏ×ÌÅÎ "
|
||||
|
||||
#: lib/query.c:255
|
||||
#: lib/query.c:260
|
||||
msgid "net shared "
|
||||
msgstr "ÓÅÔÅ×ÏÊ "
|
||||
|
||||
#: lib/query.c:258
|
||||
#: lib/query.c:263
|
||||
msgid "wrong color "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:261
|
||||
#: lib/query.c:266
|
||||
msgid "(no state) "
|
||||
msgstr "(ÓÏÓÔ. ÎÅÔ) "
|
||||
|
||||
#: lib/query.c:264
|
||||
#: lib/query.c:269
|
||||
#, c-format
|
||||
msgid "(unknown %3d) "
|
||||
msgstr "(ÎÅÉÚ×. %3d) "
|
||||
|
||||
#: lib/query.c:282
|
||||
#: lib/query.c:287
|
||||
msgid "package has not file owner/group lists\n"
|
||||
msgstr "ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÓÐÉÓËÏ× ×ÌÁÄÅÌØÃÅ×/ÇÒÕÐÐ-×ÌÁÄÅÌØÃÅ× ÆÁÊÌÏ×\n"
|
||||
|
||||
#: lib/query.c:315
|
||||
#: lib/query.c:320
|
||||
msgid "package has neither file owner or id lists\n"
|
||||
msgstr "ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÓÐÉÓËÏ× ÎÉ ÈÏÚÑÅ× ÆÁÊÌÏ×, ÎÉ ÉÈ ID\n"
|
||||
|
||||
#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
|
||||
#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
|
||||
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
|
||||
#, c-format
|
||||
msgid "open of %s failed: %s\n"
|
||||
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
|
||||
|
||||
#: lib/query.c:459
|
||||
#: lib/query.c:464
|
||||
#, c-format
|
||||
msgid "query of %s failed\n"
|
||||
msgstr "ÏÛÉÂËÁ ÚÁÐÒÏÓÁ %s\n"
|
||||
|
||||
#: lib/query.c:469
|
||||
#: lib/query.c:474
|
||||
msgid "old format source packages cannot be queried\n"
|
||||
msgstr "ÚÁÐÒÏÓÙ Ë ÉÓÈÏÄÎÙÍ ÐÁËÅÔÁÍ × ÓÔÁÒÏÍ ÆÏÒÍÁÔÅ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ\n"
|
||||
|
||||
#: lib/query.c:502 lib/rpminstall.c:608
|
||||
#: lib/query.c:507 lib/rpminstall.c:608
|
||||
#, c-format
|
||||
msgid "%s: not an rpm package (or package manifest): %s\n"
|
||||
msgstr "%s: ÎÅ ÐÁËÅÔ (ÉÌÉ ÍÁÎÉÆÅÓÔ ÐÁËÅÔÁ) rpm : %s\n"
|
||||
|
||||
#: lib/query.c:531
|
||||
#: lib/query.c:536
|
||||
msgid "no packages\n"
|
||||
msgstr "ÎÅÔ ÐÁËÅÔÏ×\n"
|
||||
|
||||
#: lib/query.c:551
|
||||
#: lib/query.c:556
|
||||
#, c-format
|
||||
msgid "group %s does not contain any packages\n"
|
||||
msgstr "ÇÒÕÐÐÁ %s ÎÅ ÓÏÄÅÒÖÉÔ ÎÉËÁËÉÈ ÐÁËÅÔÏ×\n"
|
||||
|
||||
#: lib/query.c:560
|
||||
#: lib/query.c:565
|
||||
#, c-format
|
||||
msgid "no package triggers %s\n"
|
||||
msgstr "ÎÉ ÏÄÉÎ ÉÚ ÐÁËÅÔÏ× ÎÅ ×Ú×ÏÄÉÔ ÔÒÉÇÇÅÒ %s\n"
|
||||
|
||||
#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
|
||||
#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
|
||||
#, c-format
|
||||
msgid "malformed %s: %s\n"
|
||||
msgstr "ÏÛÉÂËÁ ÆÏÒÍÁÔÁ %s: %s.\n"
|
||||
|
||||
#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
|
||||
#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
|
||||
#, c-format
|
||||
msgid "no package matches %s: %s\n"
|
||||
msgstr "ÎÉ ÏÄÉÎ ÐÁËÅÔ ÎÅ ÐÏÄÈÏÄÉÔ Ë %s: %s\n"
|
||||
|
||||
#: lib/query.c:663
|
||||
#: lib/query.c:668
|
||||
#, c-format
|
||||
msgid "no package requires %s\n"
|
||||
msgstr "ÎÉ ÏÄÉÎ ÉÚ ÐÁËÅÔÏ× ÎÅ ÔÒÅÂÕÅÔ %s\n"
|
||||
|
||||
#: lib/query.c:674
|
||||
#: lib/query.c:679
|
||||
#, c-format
|
||||
msgid "no package provides %s\n"
|
||||
msgstr "ÎÉ ÏÄÉÎ ÉÚ ÐÁËÅÔÏ× ÎÅ ÐÒÅÄÏÓÔÁ×ÌÑÅÔ %s\n"
|
||||
|
||||
#: lib/query.c:709
|
||||
#: lib/query.c:714
|
||||
#, c-format
|
||||
msgid "file %s: %s\n"
|
||||
msgstr "ÆÁÊÌ %s: %s\n"
|
||||
|
||||
#: lib/query.c:713
|
||||
#: lib/query.c:718
|
||||
#, c-format
|
||||
msgid "file %s is not owned by any package\n"
|
||||
msgstr "ÆÁÊÌ %s ÎÅ ÐÒÉÎÁÄÌÅÖÉÔ ÎÉ ÏÄÎÏÍÕ ÉÚ ÐÁËÅÔÏ×\n"
|
||||
|
||||
#: lib/query.c:738
|
||||
#: lib/query.c:743
|
||||
#, c-format
|
||||
msgid "invalid package number: %s\n"
|
||||
msgstr "ÎÅ×ÅÒÎÙÊ ÎÏÍÅÒ ÐÁËÅÔÁ: %s\n"
|
||||
|
||||
#: lib/query.c:741
|
||||
#: lib/query.c:746
|
||||
#, c-format
|
||||
msgid "package record number: %u\n"
|
||||
msgstr "ÎÏÍÅÒ ÚÁÐÉÓÉ ÐÁËÅÔÁ: %u\n"
|
||||
|
||||
#: lib/query.c:746
|
||||
#: lib/query.c:751
|
||||
#, c-format
|
||||
msgid "record %u could not be read\n"
|
||||
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ ÚÁÐÉÓØ %u\n"
|
||||
|
||||
#: lib/query.c:756 lib/rpminstall.c:779
|
||||
#: lib/query.c:761 lib/rpminstall.c:779
|
||||
#, c-format
|
||||
msgid "package %s is not installed\n"
|
||||
msgstr "ÐÁËÅÔ %s ÎÅ ÕÓÔÁÎÏ×ÌÅÎ\n"
|
||||
|
@ -2827,28 +2827,28 @@ msgstr "
|
|||
msgid "Unable to open %s for reading: %s.\n"
|
||||
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s ÄÌÑ ÞÔÅÎÉÑ: %s.\n"
|
||||
|
||||
#: lib/rpmts.c:135
|
||||
#: lib/rpmts.c:156
|
||||
#, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ ÂÁÚÕ ÄÁÎÎÙÈ Packages × %s\n"
|
||||
|
||||
#: lib/rpmts.c:320
|
||||
#: lib/rpmts.c:341
|
||||
#, c-format
|
||||
msgid "cannot open Solve database in %s\n"
|
||||
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÂÁÚÕ ÄÁÎÎÙÈ ÒÁÚÒÅÛÅÎÉÑ ÚÁ×ÉÓÉÍÏÓÔÅÊ × %s\n"
|
||||
|
||||
#: lib/rpmts.c:462
|
||||
#: lib/rpmts.c:483
|
||||
#, c-format
|
||||
msgid "Adding: %s\n"
|
||||
msgstr "äÏÂÁ×ÌÑÅÔÓÑ: %s\n"
|
||||
|
||||
#: lib/rpmts.c:474
|
||||
#: lib/rpmts.c:495
|
||||
#, c-format
|
||||
msgid "Suggesting: %s\n"
|
||||
msgstr "ðÒÅÄÌÁÇÁÅÔÓÑ: %s\n"
|
||||
|
||||
#. Get available space on mounted file systems.
|
||||
#: lib/rpmts.c:906
|
||||
#: lib/rpmts.c:927
|
||||
msgid "getting list of mounted filesystems\n"
|
||||
msgstr "ÓÔÒÏÉÔÓÑ ÓÐÉÓÏË ÓÍÏÎÔÉÒÏ×ÁÎÎÙÈ ÆÁÊÌÏ×ÙÈ ÓÉÓÔÅÍ\n"
|
||||
|
||||
|
@ -3017,7 +3017,7 @@ msgid "%s skipped due to missingok flag\n"
|
|||
msgstr "%s ÐÒÏÐÕÝÅÎ ÉÚ-ÚÁ ÆÌÁÇÁ missingok\n"
|
||||
|
||||
#. @innercontinue@
|
||||
#: lib/transaction.c:935
|
||||
#: lib/transaction.c:956
|
||||
#, c-format
|
||||
msgid "excluding directory %s\n"
|
||||
msgstr "ÉÓËÌÀÞÁÅÔÓÑ ËÁÔÁÌÏÇ %s\n"
|
||||
|
@ -3030,7 +3030,7 @@ msgstr "
|
|||
#. * For packages being removed:
|
||||
#. * - count files.
|
||||
#.
|
||||
#: lib/transaction.c:1047
|
||||
#: lib/transaction.c:1068
|
||||
#, fuzzy, c-format
|
||||
msgid "sanity checking %d elements\n"
|
||||
msgstr "ÐÒÏ×eÒÑÅÔÓÑ %d ÜÌÅÍÅÎÔÏ×\n"
|
||||
|
@ -3043,7 +3043,7 @@ msgstr "
|
|||
#. * calling fpLookupList only once. I'm not sure that the speedup is
|
||||
#. * worth the trouble though.
|
||||
#.
|
||||
#: lib/transaction.c:1129
|
||||
#: lib/transaction.c:1156
|
||||
#, c-format
|
||||
msgid "computing %d file fingerprints\n"
|
||||
msgstr "ÐÏÄÓÞÉÔÙ×ÁÅÔÓÑ ÏÔÐÅÞÁÔÏË(ËÉ) %d ÆÁÊÌÁ(Ï×)\n"
|
||||
|
@ -3051,7 +3051,7 @@ msgstr "
|
|||
#. ===============================================
|
||||
#. * Compute file disposition for each package in transaction set.
|
||||
#.
|
||||
#: lib/transaction.c:1206
|
||||
#: lib/transaction.c:1233
|
||||
msgid "computing file dispositions\n"
|
||||
msgstr "ÐÏÄÓÞÉÔÙ×ÁÅÔÓÑ ÄÉÓÐÏÚÉÃÉÑ ÆÁÊÌÏ×\n"
|
||||
|
||||
|
|
130
po/sk.po
130
po/sk.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2003-01-13 15:26-0500\n"
|
||||
"POT-Creation-Date: 2003-01-17 12:33-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"
|
||||
|
@ -739,7 +739,7 @@ msgstr "Nie je mo
|
|||
msgid "Could not open %s: %s\n"
|
||||
msgstr "Otvorenie %s zlyhalo\n"
|
||||
|
||||
#: build/pack.c:632 lib/psm.c:1650
|
||||
#: build/pack.c:632 lib/psm.c:1657
|
||||
#, fuzzy, c-format
|
||||
msgid "Unable to write package: %s\n"
|
||||
msgstr "Nie je mo¾né zapísa» balík: %s"
|
||||
|
@ -769,7 +769,7 @@ msgstr "Nie je mo
|
|||
msgid "Unable to write payload to %s: %s\n"
|
||||
msgstr "Nie je mo¾né zapísa» balík: %s"
|
||||
|
||||
#: build/pack.c:725 lib/psm.c:1941
|
||||
#: build/pack.c:725 lib/psm.c:1948
|
||||
#, c-format
|
||||
msgid "Wrote: %s\n"
|
||||
msgstr "Zapísané: %s\n"
|
||||
|
@ -1381,75 +1381,75 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr " zlyhalo - "
|
||||
|
||||
#: lib/depends.c:164
|
||||
#: lib/depends.c:182
|
||||
#, 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:362
|
||||
#: lib/depends.c:380
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:389
|
||||
#: lib/depends.c:407
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:406
|
||||
#: lib/depends.c:424
|
||||
#, fuzzy
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n"
|
||||
|
||||
#: lib/depends.c:435
|
||||
#: lib/depends.c:453
|
||||
#, fuzzy
|
||||
msgid "(db files)"
|
||||
msgstr "chybný stav súboru: %s"
|
||||
|
||||
#: lib/depends.c:448
|
||||
#: lib/depends.c:466
|
||||
#, fuzzy
|
||||
msgid "(db provides)"
|
||||
msgstr "Poskytuje:"
|
||||
|
||||
#: lib/depends.c:461
|
||||
#: lib/depends.c:479
|
||||
#, fuzzy
|
||||
msgid "(db package)"
|
||||
msgstr "nájdených %d balíkov\n"
|
||||
|
||||
#: lib/depends.c:815
|
||||
#: lib/depends.c:833
|
||||
#, c-format
|
||||
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:937
|
||||
#: lib/depends.c:955
|
||||
#, 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:1167
|
||||
#: lib/depends.c:1185
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1267
|
||||
#: lib/depends.c:1285
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, tree, "
|
||||
"depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1351
|
||||
#: lib/depends.c:1369
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1421
|
||||
#: lib/depends.c:1439
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1456
|
||||
#: lib/depends.c:1474
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1461
|
||||
#: lib/depends.c:1479
|
||||
#, c-format
|
||||
msgid "rpmtsOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
@ -2258,181 +2258,181 @@ msgstr "%s vynechan
|
|||
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
|
||||
msgstr "vykonanie skriptu zlyhalo"
|
||||
|
||||
#: lib/psm.c:1420
|
||||
#: lib/psm.c:1421
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s has %d files, test = %d\n"
|
||||
msgstr "balík: %s-%s-%s test súborov = %d\n"
|
||||
|
||||
#: lib/psm.c:1553
|
||||
#: lib/psm.c:1560
|
||||
#, c-format
|
||||
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1662
|
||||
#: lib/psm.c:1669
|
||||
#, fuzzy
|
||||
msgid "Unable to reload signature header\n"
|
||||
msgstr "Nie je mo¾né preèíta» ikonu: %s"
|
||||
|
||||
#: lib/psm.c:1708
|
||||
#: lib/psm.c:1715
|
||||
#, fuzzy, c-format
|
||||
msgid "user %s does not exist - using root\n"
|
||||
msgstr "pou¾ívateµ %s neexistuje - pou¾ije sa root"
|
||||
|
||||
#: lib/psm.c:1717
|
||||
#: lib/psm.c:1724
|
||||
#, fuzzy, c-format
|
||||
msgid "group %s does not exist - using root\n"
|
||||
msgstr "skupina %s neexistuje - pou¾ije sa root"
|
||||
|
||||
#: lib/psm.c:1765
|
||||
#: lib/psm.c:1772
|
||||
#, fuzzy, c-format
|
||||
msgid "unpacking of archive failed%s%s: %s\n"
|
||||
msgstr "rozbalenie archívu zlyhalo%s%s: %s"
|
||||
|
||||
#: lib/psm.c:1766
|
||||
#: lib/psm.c:1773
|
||||
msgid " on file "
|
||||
msgstr " pre súbor "
|
||||
|
||||
#: lib/psm.c:1949
|
||||
#: lib/psm.c:1956
|
||||
#, fuzzy, c-format
|
||||
msgid "%s failed on file %s: %s\n"
|
||||
msgstr "nepodarilo sa otvori» %s: %s"
|
||||
|
||||
#: lib/psm.c:1952
|
||||
#: lib/psm.c:1959
|
||||
#, fuzzy, c-format
|
||||
msgid "%s failed: %s\n"
|
||||
msgstr "%s zlyhalo"
|
||||
|
||||
#: lib/query.c:122 lib/rpmts.c:430
|
||||
#: lib/query.c:122 lib/rpmts.c:451
|
||||
#, fuzzy, c-format
|
||||
msgid "incorrect format: %s\n"
|
||||
msgstr "chyba formátu: %s\n"
|
||||
|
||||
#. @-boundswrite@
|
||||
#: lib/query.c:181
|
||||
#: lib/query.c:186
|
||||
msgid "(contains no files)"
|
||||
msgstr "(neobsahuje ¾iadne súbory)"
|
||||
|
||||
#: lib/query.c:246
|
||||
#: lib/query.c:251
|
||||
msgid "normal "
|
||||
msgstr "normálny "
|
||||
|
||||
#: lib/query.c:249
|
||||
#: lib/query.c:254
|
||||
msgid "replaced "
|
||||
msgstr "nahradený "
|
||||
|
||||
#: lib/query.c:252
|
||||
#: lib/query.c:257
|
||||
msgid "not installed "
|
||||
msgstr "nein¹talovaný "
|
||||
|
||||
#: lib/query.c:255
|
||||
#: lib/query.c:260
|
||||
msgid "net shared "
|
||||
msgstr "zdieµaný "
|
||||
|
||||
#: lib/query.c:258
|
||||
#: lib/query.c:263
|
||||
msgid "wrong color "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:261
|
||||
#: lib/query.c:266
|
||||
msgid "(no state) "
|
||||
msgstr "(¾iadny stav) "
|
||||
|
||||
#: lib/query.c:264
|
||||
#: lib/query.c:269
|
||||
#, c-format
|
||||
msgid "(unknown %3d) "
|
||||
msgstr "(neznámy %d) "
|
||||
|
||||
#: lib/query.c:282
|
||||
#: lib/query.c:287
|
||||
#, fuzzy
|
||||
msgid "package has not file owner/group lists\n"
|
||||
msgstr "balík neobsahuje ani vlastníka súboru, ani zoznamy identifikácií"
|
||||
|
||||
#: lib/query.c:315
|
||||
#: lib/query.c:320
|
||||
#, fuzzy
|
||||
msgid "package has neither file owner or id lists\n"
|
||||
msgstr "balík neobsahuje ani vlastníka súboru, ani zoznamy identifikácií"
|
||||
|
||||
#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
|
||||
#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
|
||||
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
|
||||
#, fuzzy, c-format
|
||||
msgid "open of %s failed: %s\n"
|
||||
msgstr "otvorenie %s zlyhalo\n"
|
||||
|
||||
#: lib/query.c:459
|
||||
#: lib/query.c:464
|
||||
#, c-format
|
||||
msgid "query of %s failed\n"
|
||||
msgstr "otázka na %s zlyhala\n"
|
||||
|
||||
#: lib/query.c:469
|
||||
#: lib/query.c:474
|
||||
msgid "old format source packages cannot be queried\n"
|
||||
msgstr "nie je mo¾né pýta» sa zdrojových balíkov v starom formáte\n"
|
||||
|
||||
#: lib/query.c:502 lib/rpminstall.c:608
|
||||
#: lib/query.c:507 lib/rpminstall.c:608
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: not an rpm package (or package manifest): %s\n"
|
||||
msgstr "¾iadny z balíkov nespú¹»a %s\n"
|
||||
|
||||
#: lib/query.c:531
|
||||
#: lib/query.c:536
|
||||
#, fuzzy
|
||||
msgid "no packages\n"
|
||||
msgstr "nájdených %d balíkov\n"
|
||||
|
||||
#: lib/query.c:551
|
||||
#: lib/query.c:556
|
||||
#, c-format
|
||||
msgid "group %s does not contain any packages\n"
|
||||
msgstr "skupina %s neobsahuje ¾iadne balíky\n"
|
||||
|
||||
#: lib/query.c:560
|
||||
#: lib/query.c:565
|
||||
#, c-format
|
||||
msgid "no package triggers %s\n"
|
||||
msgstr "¾iadny z balíkov nespú¹»a %s\n"
|
||||
|
||||
#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
|
||||
#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
|
||||
#, fuzzy, c-format
|
||||
msgid "malformed %s: %s\n"
|
||||
msgstr "Nie je mo¾né preèíta» %s: %s."
|
||||
|
||||
#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
|
||||
#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
|
||||
#, fuzzy, c-format
|
||||
msgid "no package matches %s: %s\n"
|
||||
msgstr "¾iadny z balíkov nespú¹»a %s\n"
|
||||
|
||||
#: lib/query.c:663
|
||||
#: lib/query.c:668
|
||||
#, c-format
|
||||
msgid "no package requires %s\n"
|
||||
msgstr "¾iadny z balíkov nevy¾aduje %s\n"
|
||||
|
||||
#: lib/query.c:674
|
||||
#: lib/query.c:679
|
||||
#, c-format
|
||||
msgid "no package provides %s\n"
|
||||
msgstr "¾iadny z balíkov neposkytuje %s\n"
|
||||
|
||||
#: lib/query.c:709
|
||||
#: lib/query.c:714
|
||||
#, c-format
|
||||
msgid "file %s: %s\n"
|
||||
msgstr "súbor %s: %s\n"
|
||||
|
||||
#: lib/query.c:713
|
||||
#: lib/query.c:718
|
||||
#, c-format
|
||||
msgid "file %s is not owned by any package\n"
|
||||
msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n"
|
||||
|
||||
#: lib/query.c:738
|
||||
#: lib/query.c:743
|
||||
#, c-format
|
||||
msgid "invalid package number: %s\n"
|
||||
msgstr "chybné èíslo balíku: %s\n"
|
||||
|
||||
#: lib/query.c:741
|
||||
#: lib/query.c:746
|
||||
#, fuzzy, c-format
|
||||
msgid "package record number: %u\n"
|
||||
msgstr "po¾aduje sa záznam èíslo %d\n"
|
||||
|
||||
#: lib/query.c:746
|
||||
#: lib/query.c:751
|
||||
#, fuzzy, c-format
|
||||
msgid "record %u could not be read\n"
|
||||
msgstr "záznam %d nie je mo¾né preèíta»\n"
|
||||
|
||||
#: lib/query.c:756 lib/rpminstall.c:779
|
||||
#: lib/query.c:761 lib/rpminstall.c:779
|
||||
#, c-format
|
||||
msgid "package %s is not installed\n"
|
||||
msgstr "balík %s nie je nain¹talovaný\n"
|
||||
|
@ -2916,28 +2916,28 @@ msgstr ""
|
|||
msgid "Unable to open %s for reading: %s.\n"
|
||||
msgstr "Nie je mo¾né otvori» %s pre èítanie: %s."
|
||||
|
||||
#: lib/rpmts.c:135
|
||||
#: lib/rpmts.c:156
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr "nie je mo¾né otvori» %s/packages.rpm\n"
|
||||
|
||||
#: lib/rpmts.c:320
|
||||
#: lib/rpmts.c:341
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot open Solve database in %s\n"
|
||||
msgstr "nie je mo¾né otvori» %s/packages.rpm\n"
|
||||
|
||||
#: lib/rpmts.c:462
|
||||
#: lib/rpmts.c:483
|
||||
#, fuzzy, c-format
|
||||
msgid "Adding: %s\n"
|
||||
msgstr "riadok: %s"
|
||||
|
||||
#: lib/rpmts.c:474
|
||||
#: lib/rpmts.c:495
|
||||
#, fuzzy, c-format
|
||||
msgid "Suggesting: %s\n"
|
||||
msgstr "zdroje v: %s\n"
|
||||
|
||||
#. Get available space on mounted file systems.
|
||||
#: lib/rpmts.c:906
|
||||
#: lib/rpmts.c:927
|
||||
msgid "getting list of mounted filesystems\n"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3115,7 +3115,7 @@ msgid "%s skipped due to missingok flag\n"
|
|||
msgstr "%s vynechané kvôli príznaku missingok\n"
|
||||
|
||||
#. @innercontinue@
|
||||
#: lib/transaction.c:935
|
||||
#: lib/transaction.c:956
|
||||
#, fuzzy, c-format
|
||||
msgid "excluding directory %s\n"
|
||||
msgstr "vytvára sa adresár %s\n"
|
||||
|
@ -3128,7 +3128,7 @@ msgstr "vytv
|
|||
#. * For packages being removed:
|
||||
#. * - count files.
|
||||
#.
|
||||
#: lib/transaction.c:1047
|
||||
#: lib/transaction.c:1068
|
||||
#, c-format
|
||||
msgid "sanity checking %d elements\n"
|
||||
msgstr ""
|
||||
|
@ -3141,7 +3141,7 @@ msgstr ""
|
|||
#. * calling fpLookupList only once. I'm not sure that the speedup is
|
||||
#. * worth the trouble though.
|
||||
#.
|
||||
#: lib/transaction.c:1129
|
||||
#: lib/transaction.c:1156
|
||||
#, c-format
|
||||
msgid "computing %d file fingerprints\n"
|
||||
msgstr ""
|
||||
|
@ -3149,7 +3149,7 @@ msgstr ""
|
|||
#. ===============================================
|
||||
#. * Compute file disposition for each package in transaction set.
|
||||
#.
|
||||
#: lib/transaction.c:1206
|
||||
#: lib/transaction.c:1233
|
||||
msgid "computing file dispositions\n"
|
||||
msgstr ""
|
||||
|
||||
|
|
132
po/sl.po
132
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.364 2003/01/13 20:59:04 jbj Exp $
|
||||
# $Id: sl.po,v 1.365 2003/01/17 17:43:32 jbj Exp $
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2003-01-13 15:26-0500\n"
|
||||
"POT-Creation-Date: 2003-01-17 12:33-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"
|
||||
|
@ -738,7 +738,7 @@ msgstr "Ikone %s ni mo
|
|||
msgid "Could not open %s: %s\n"
|
||||
msgstr "Ni mo¾no odpreti %s: %s\n"
|
||||
|
||||
#: build/pack.c:632 lib/psm.c:1650
|
||||
#: build/pack.c:632 lib/psm.c:1657
|
||||
#, fuzzy, c-format
|
||||
msgid "Unable to write package: %s\n"
|
||||
msgstr "Ni mo¾no zapisati paketa: %s"
|
||||
|
@ -768,7 +768,7 @@ msgstr "Ikone %s ni mo
|
|||
msgid "Unable to write payload to %s: %s\n"
|
||||
msgstr "Ni mo¾no zapisati paketa %s: %s"
|
||||
|
||||
#: build/pack.c:725 lib/psm.c:1941
|
||||
#: build/pack.c:725 lib/psm.c:1948
|
||||
#, c-format
|
||||
msgid "Wrote: %s\n"
|
||||
msgstr "Zapisano: %s\n"
|
||||
|
@ -1383,76 +1383,76 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr " neuspe¹no - "
|
||||
|
||||
#: lib/depends.c:164
|
||||
#: lib/depends.c:182
|
||||
#, 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:362
|
||||
#: lib/depends.c:380
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:389
|
||||
#: lib/depends.c:407
|
||||
#, fuzzy
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr "%s: %-45s DA (rpmrc ponudbe)\n"
|
||||
|
||||
#: lib/depends.c:406
|
||||
#: lib/depends.c:424
|
||||
#, fuzzy
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr "%s: %-45s DA (rpmlib ponudbe)\n"
|
||||
|
||||
#: lib/depends.c:435
|
||||
#: lib/depends.c:453
|
||||
#, fuzzy
|
||||
msgid "(db files)"
|
||||
msgstr "po¹kodovana zbirka podatkov %s"
|
||||
|
||||
#: lib/depends.c:448
|
||||
#: lib/depends.c:466
|
||||
#, fuzzy
|
||||
msgid "(db provides)"
|
||||
msgstr "%s: %-45s DA (db ponudbe)\n"
|
||||
|
||||
#: lib/depends.c:461
|
||||
#: lib/depends.c:479
|
||||
#, fuzzy
|
||||
msgid "(db package)"
|
||||
msgstr "ni paketov\n"
|
||||
|
||||
#: lib/depends.c:815
|
||||
#: lib/depends.c:833
|
||||
#, c-format
|
||||
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:937
|
||||
#: lib/depends.c:955
|
||||
#, fuzzy, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr "odstranjujemo seznam skupin\n"
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1167
|
||||
#: lib/depends.c:1185
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1267
|
||||
#: lib/depends.c:1285
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, tree, "
|
||||
"depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1351
|
||||
#: lib/depends.c:1369
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1421
|
||||
#: lib/depends.c:1439
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1456
|
||||
#: lib/depends.c:1474
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1461
|
||||
#: lib/depends.c:1479
|
||||
#, c-format
|
||||
msgid "rpmtsOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
@ -2258,181 +2258,181 @@ msgstr "presko
|
|||
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
|
||||
msgstr "skript se ni uspe¹no izvedel"
|
||||
|
||||
#: lib/psm.c:1420
|
||||
#: lib/psm.c:1421
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s has %d files, test = %d\n"
|
||||
msgstr "paket: %s-%s-%s datoteke test = %d\n"
|
||||
|
||||
#: lib/psm.c:1553
|
||||
#: lib/psm.c:1560
|
||||
#, c-format
|
||||
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1662
|
||||
#: lib/psm.c:1669
|
||||
#, fuzzy
|
||||
msgid "Unable to reload signature header\n"
|
||||
msgstr "Ikone %s ni mo¾no prebrati: %s"
|
||||
|
||||
#: lib/psm.c:1708
|
||||
#: lib/psm.c:1715
|
||||
#, fuzzy, c-format
|
||||
msgid "user %s does not exist - using root\n"
|
||||
msgstr "uporabnik %s ne obstaja - uporabljam root"
|
||||
|
||||
#: lib/psm.c:1717
|
||||
#: lib/psm.c:1724
|
||||
#, fuzzy, c-format
|
||||
msgid "group %s does not exist - using root\n"
|
||||
msgstr "skupina %s ne obstaja - uporabljam root"
|
||||
|
||||
#: lib/psm.c:1765
|
||||
#: lib/psm.c:1772
|
||||
#, fuzzy, c-format
|
||||
msgid "unpacking of archive failed%s%s: %s\n"
|
||||
msgstr "raz¹iritev arhiva je bilo neuspe¹no%s%s: %s"
|
||||
|
||||
#: lib/psm.c:1766
|
||||
#: lib/psm.c:1773
|
||||
msgid " on file "
|
||||
msgstr " za datoteko "
|
||||
|
||||
#: lib/psm.c:1949
|
||||
#: lib/psm.c:1956
|
||||
#, fuzzy, c-format
|
||||
msgid "%s failed on file %s: %s\n"
|
||||
msgstr "neuspe¹no odpiranje %s: %s\n"
|
||||
|
||||
#: lib/psm.c:1952
|
||||
#: lib/psm.c:1959
|
||||
#, fuzzy, c-format
|
||||
msgid "%s failed: %s\n"
|
||||
msgstr "%s neuspe¹en"
|
||||
|
||||
#: lib/query.c:122 lib/rpmts.c:430
|
||||
#: lib/query.c:122 lib/rpmts.c:451
|
||||
#, fuzzy, c-format
|
||||
msgid "incorrect format: %s\n"
|
||||
msgstr "napaka v obliki: %s\n"
|
||||
|
||||
#. @-boundswrite@
|
||||
#: lib/query.c:181
|
||||
#: lib/query.c:186
|
||||
msgid "(contains no files)"
|
||||
msgstr "(ne vsebuje datotek)"
|
||||
|
||||
#: lib/query.c:246
|
||||
#: lib/query.c:251
|
||||
msgid "normal "
|
||||
msgstr "normalno "
|
||||
|
||||
#: lib/query.c:249
|
||||
#: lib/query.c:254
|
||||
msgid "replaced "
|
||||
msgstr "nadome¹èeno "
|
||||
|
||||
#: lib/query.c:252
|
||||
#: lib/query.c:257
|
||||
msgid "not installed "
|
||||
msgstr "ni name¹èeno "
|
||||
|
||||
#: lib/query.c:255
|
||||
#: lib/query.c:260
|
||||
msgid "net shared "
|
||||
msgstr "omre¾ni "
|
||||
|
||||
#: lib/query.c:258
|
||||
#: lib/query.c:263
|
||||
msgid "wrong color "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:261
|
||||
#: lib/query.c:266
|
||||
msgid "(no state) "
|
||||
msgstr "(brez stanja) "
|
||||
|
||||
#: lib/query.c:264
|
||||
#: lib/query.c:269
|
||||
#, c-format
|
||||
msgid "(unknown %3d) "
|
||||
msgstr "(neznano %3d) "
|
||||
|
||||
#: lib/query.c:282
|
||||
#: lib/query.c:287
|
||||
#, fuzzy
|
||||
msgid "package has not file owner/group lists\n"
|
||||
msgstr "paket ne vsebuje ne lastnika datotek niti seznamov id"
|
||||
|
||||
#: lib/query.c:315
|
||||
#: lib/query.c:320
|
||||
#, fuzzy
|
||||
msgid "package has neither file owner or id lists\n"
|
||||
msgstr "paket ne vsebuje ne lastnika datotek niti seznamov id"
|
||||
|
||||
#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
|
||||
#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
|
||||
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
|
||||
#, c-format
|
||||
msgid "open of %s failed: %s\n"
|
||||
msgstr "odpiranje %s je bilo neuspe¹no: %s\n"
|
||||
|
||||
#: lib/query.c:459
|
||||
#: lib/query.c:464
|
||||
#, c-format
|
||||
msgid "query of %s failed\n"
|
||||
msgstr "poizvedba po %s je bila neuspe¹na\n"
|
||||
|
||||
#: lib/query.c:469
|
||||
#: lib/query.c:474
|
||||
msgid "old format source packages cannot be queried\n"
|
||||
msgstr "poizvedba po izvornih paketih v stari obliki ni mo¾na\n"
|
||||
|
||||
#: lib/query.c:502 lib/rpminstall.c:608
|
||||
#: lib/query.c:507 lib/rpminstall.c:608
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: not an rpm package (or package manifest): %s\n"
|
||||
msgstr "noben paket ne pro¾i %s\n"
|
||||
|
||||
#: lib/query.c:531
|
||||
#: lib/query.c:536
|
||||
#, fuzzy
|
||||
msgid "no packages\n"
|
||||
msgstr "ni paketov\n"
|
||||
|
||||
#: lib/query.c:551
|
||||
#: lib/query.c:556
|
||||
#, c-format
|
||||
msgid "group %s does not contain any packages\n"
|
||||
msgstr "skupina %s ne vsebuje nobenega paketa\n"
|
||||
|
||||
#: lib/query.c:560
|
||||
#: lib/query.c:565
|
||||
#, c-format
|
||||
msgid "no package triggers %s\n"
|
||||
msgstr "noben paket ne pro¾i %s\n"
|
||||
|
||||
#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
|
||||
#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
|
||||
#, fuzzy, c-format
|
||||
msgid "malformed %s: %s\n"
|
||||
msgstr "Neuspe¹no branje %s: %s."
|
||||
|
||||
#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
|
||||
#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
|
||||
#, fuzzy, c-format
|
||||
msgid "no package matches %s: %s\n"
|
||||
msgstr "noben paket ne pro¾i %s\n"
|
||||
|
||||
#: lib/query.c:663
|
||||
#: lib/query.c:668
|
||||
#, c-format
|
||||
msgid "no package requires %s\n"
|
||||
msgstr "noben paket ne potrebuje %s\n"
|
||||
|
||||
#: lib/query.c:674
|
||||
#: lib/query.c:679
|
||||
#, c-format
|
||||
msgid "no package provides %s\n"
|
||||
msgstr "noben paket ne nudi %s\n"
|
||||
|
||||
#: lib/query.c:709
|
||||
#: lib/query.c:714
|
||||
#, c-format
|
||||
msgid "file %s: %s\n"
|
||||
msgstr "datoteka %s: %s\n"
|
||||
|
||||
#: lib/query.c:713
|
||||
#: lib/query.c:718
|
||||
#, c-format
|
||||
msgid "file %s is not owned by any package\n"
|
||||
msgstr "datoteka %s ni del nobenega paketa\n"
|
||||
|
||||
#: lib/query.c:738
|
||||
#: lib/query.c:743
|
||||
#, c-format
|
||||
msgid "invalid package number: %s\n"
|
||||
msgstr "neveljavna ¹tevilka paketa: %s\n"
|
||||
|
||||
#: lib/query.c:741
|
||||
#: lib/query.c:746
|
||||
#, fuzzy, c-format
|
||||
msgid "package record number: %u\n"
|
||||
msgstr "¹tevilka zapisa paketa: %d\n"
|
||||
|
||||
#: lib/query.c:746
|
||||
#: lib/query.c:751
|
||||
#, fuzzy, c-format
|
||||
msgid "record %u could not be read\n"
|
||||
msgstr "zapisa %d ni mo¾no prebrati\n"
|
||||
|
||||
#: lib/query.c:756 lib/rpminstall.c:779
|
||||
#: lib/query.c:761 lib/rpminstall.c:779
|
||||
#, c-format
|
||||
msgid "package %s is not installed\n"
|
||||
msgstr "paket %s ni name¹èen\n"
|
||||
|
@ -2919,28 +2919,28 @@ msgstr "Ni mo
|
|||
msgid "Unable to open %s for reading: %s.\n"
|
||||
msgstr "%s ni mo¾no odpreti za branje: %s."
|
||||
|
||||
#: lib/rpmts.c:135
|
||||
#: lib/rpmts.c:156
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr "zbirko podatkov paketov ni mo¾no odpreti v %s\n"
|
||||
|
||||
#: lib/rpmts.c:320
|
||||
#: lib/rpmts.c:341
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot open Solve database in %s\n"
|
||||
msgstr "datoteke %s/packages.rpm ni mogo¾no odpreti\n"
|
||||
|
||||
#: lib/rpmts.c:462
|
||||
#: lib/rpmts.c:483
|
||||
#, fuzzy, c-format
|
||||
msgid "Adding: %s\n"
|
||||
msgstr "vrstica: %s"
|
||||
|
||||
#: lib/rpmts.c:474
|
||||
#: lib/rpmts.c:495
|
||||
#, fuzzy, c-format
|
||||
msgid "Suggesting: %s\n"
|
||||
msgstr "izvori v: %s\n"
|
||||
|
||||
#. Get available space on mounted file systems.
|
||||
#: lib/rpmts.c:906
|
||||
#: lib/rpmts.c:927
|
||||
msgid "getting list of mounted filesystems\n"
|
||||
msgstr "zbiranje seznama priklopljenih datoteènih sistemov.\n"
|
||||
|
||||
|
@ -3118,7 +3118,7 @@ msgid "%s skipped due to missingok flag\n"
|
|||
msgstr "%s preskoèen zaradi manjkajoèe zastavice OK\n"
|
||||
|
||||
#. @innercontinue@
|
||||
#: lib/transaction.c:935
|
||||
#: lib/transaction.c:956
|
||||
#, c-format
|
||||
msgid "excluding directory %s\n"
|
||||
msgstr "izkljuèevanje imenika %s\n"
|
||||
|
@ -3131,7 +3131,7 @@ msgstr "izklju
|
|||
#. * For packages being removed:
|
||||
#. * - count files.
|
||||
#.
|
||||
#: lib/transaction.c:1047
|
||||
#: lib/transaction.c:1068
|
||||
#, c-format
|
||||
msgid "sanity checking %d elements\n"
|
||||
msgstr ""
|
||||
|
@ -3144,7 +3144,7 @@ msgstr ""
|
|||
#. * calling fpLookupList only once. I'm not sure that the speedup is
|
||||
#. * worth the trouble though.
|
||||
#.
|
||||
#: lib/transaction.c:1129
|
||||
#: lib/transaction.c:1156
|
||||
#, c-format
|
||||
msgid "computing %d file fingerprints\n"
|
||||
msgstr ""
|
||||
|
@ -3152,7 +3152,7 @@ msgstr ""
|
|||
#. ===============================================
|
||||
#. * Compute file disposition for each package in transaction set.
|
||||
#.
|
||||
#: lib/transaction.c:1206
|
||||
#: lib/transaction.c:1233
|
||||
msgid "computing file dispositions\n"
|
||||
msgstr ""
|
||||
|
||||
|
|
130
po/sr.po
130
po/sr.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2003-01-13 15:26-0500\n"
|
||||
"POT-Creation-Date: 2003-01-17 12:33-0500\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=iso-8859-2\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -728,7 +728,7 @@ msgstr "Ne mogu da upi
|
|||
msgid "Could not open %s: %s\n"
|
||||
msgstr "neuspelo otvaranje %s\n"
|
||||
|
||||
#: build/pack.c:632 lib/psm.c:1650
|
||||
#: build/pack.c:632 lib/psm.c:1657
|
||||
#, fuzzy, c-format
|
||||
msgid "Unable to write package: %s\n"
|
||||
msgstr "Ne mogu da upi¹em %s"
|
||||
|
@ -758,7 +758,7 @@ msgstr "Ne mogu da upi
|
|||
msgid "Unable to write payload to %s: %s\n"
|
||||
msgstr "Ne mogu da upi¹em %s"
|
||||
|
||||
#: build/pack.c:725 lib/psm.c:1941
|
||||
#: build/pack.c:725 lib/psm.c:1948
|
||||
#, c-format
|
||||
msgid "Wrote: %s\n"
|
||||
msgstr ""
|
||||
|
@ -1372,74 +1372,74 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr "PGP omanuo"
|
||||
|
||||
#: lib/depends.c:164
|
||||
#: lib/depends.c:182
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr "paket %s nije instaliran\n"
|
||||
|
||||
#: lib/depends.c:362
|
||||
#: lib/depends.c:380
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:389
|
||||
#: lib/depends.c:407
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:406
|
||||
#: lib/depends.c:424
|
||||
#, fuzzy
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr "datoteka %s ne pripada nijednom paketu\n"
|
||||
|
||||
#: lib/depends.c:435
|
||||
#: lib/depends.c:453
|
||||
#, fuzzy
|
||||
msgid "(db files)"
|
||||
msgstr "neuspelo otvaranje %s: %s"
|
||||
|
||||
#: lib/depends.c:448
|
||||
#: lib/depends.c:466
|
||||
msgid "(db provides)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:461
|
||||
#: lib/depends.c:479
|
||||
#, fuzzy
|
||||
msgid "(db package)"
|
||||
msgstr "upit nad svim paketima"
|
||||
|
||||
#: lib/depends.c:815
|
||||
#: lib/depends.c:833
|
||||
#, c-format
|
||||
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:937
|
||||
#: lib/depends.c:955
|
||||
#, 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:1167
|
||||
#: lib/depends.c:1185
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr ""
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1267
|
||||
#: lib/depends.c:1285
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, tree, "
|
||||
"depth)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1351
|
||||
#: lib/depends.c:1369
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1421
|
||||
#: lib/depends.c:1439
|
||||
msgid "LOOP:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1456
|
||||
#: lib/depends.c:1474
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr ""
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1461
|
||||
#: lib/depends.c:1479
|
||||
#, c-format
|
||||
msgid "rpmtsOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
@ -2250,182 +2250,182 @@ msgstr "gre
|
|||
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
|
||||
msgstr "neuspelo izvr¹avanje skripta"
|
||||
|
||||
#: lib/psm.c:1420
|
||||
#: lib/psm.c:1421
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s has %d files, test = %d\n"
|
||||
msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
|
||||
|
||||
#: lib/psm.c:1553
|
||||
#: lib/psm.c:1560
|
||||
#, c-format
|
||||
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1662
|
||||
#: lib/psm.c:1669
|
||||
#, fuzzy
|
||||
msgid "Unable to reload signature header\n"
|
||||
msgstr "Ne mogu da upi¹em %s"
|
||||
|
||||
#: lib/psm.c:1708
|
||||
#: lib/psm.c:1715
|
||||
#, c-format
|
||||
msgid "user %s does not exist - using root\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1717
|
||||
#: lib/psm.c:1724
|
||||
#, fuzzy, c-format
|
||||
msgid "group %s does not exist - using root\n"
|
||||
msgstr "grupa %s ne sadr¾i nijedan paket\n"
|
||||
|
||||
#: lib/psm.c:1765
|
||||
#: lib/psm.c:1772
|
||||
#, fuzzy, c-format
|
||||
msgid "unpacking of archive failed%s%s: %s\n"
|
||||
msgstr "neuspelo otvaranje %s: %s\n"
|
||||
|
||||
#: lib/psm.c:1766
|
||||
#: lib/psm.c:1773
|
||||
msgid " on file "
|
||||
msgstr ""
|
||||
|
||||
#: lib/psm.c:1949
|
||||
#: lib/psm.c:1956
|
||||
#, fuzzy, c-format
|
||||
msgid "%s failed on file %s: %s\n"
|
||||
msgstr "neuspelo otvaranje %s: %s"
|
||||
|
||||
#: lib/psm.c:1952
|
||||
#: lib/psm.c:1959
|
||||
#, fuzzy, c-format
|
||||
msgid "%s failed: %s\n"
|
||||
msgstr "PGP omanuo"
|
||||
|
||||
#: lib/query.c:122 lib/rpmts.c:430
|
||||
#: lib/query.c:122 lib/rpmts.c:451
|
||||
#, fuzzy, c-format
|
||||
msgid "incorrect format: %s\n"
|
||||
msgstr "gre¹ka u formatu: %s\n"
|
||||
|
||||
#. @-boundswrite@
|
||||
#: lib/query.c:181
|
||||
#: lib/query.c:186
|
||||
msgid "(contains no files)"
|
||||
msgstr "(nema datoteka)"
|
||||
|
||||
#: lib/query.c:246
|
||||
#: lib/query.c:251
|
||||
msgid "normal "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:249
|
||||
#: lib/query.c:254
|
||||
msgid "replaced "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:252
|
||||
#: lib/query.c:257
|
||||
#, fuzzy
|
||||
msgid "not installed "
|
||||
msgstr "paket %s nije instaliran\n"
|
||||
|
||||
#: lib/query.c:255
|
||||
#: lib/query.c:260
|
||||
msgid "net shared "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:258
|
||||
#: lib/query.c:263
|
||||
msgid "wrong color "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:261
|
||||
#: lib/query.c:266
|
||||
msgid "(no state) "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:264
|
||||
#: lib/query.c:269
|
||||
#, fuzzy, c-format
|
||||
msgid "(unknown %3d) "
|
||||
msgstr "(nepoznat tip)"
|
||||
|
||||
#: lib/query.c:282
|
||||
#: lib/query.c:287
|
||||
#, fuzzy
|
||||
msgid "package has not file owner/group lists\n"
|
||||
msgstr "paket nema imena"
|
||||
|
||||
#: lib/query.c:315
|
||||
#: lib/query.c:320
|
||||
#, fuzzy
|
||||
msgid "package has neither file owner or id lists\n"
|
||||
msgstr "paket nema imena"
|
||||
|
||||
#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
|
||||
#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
|
||||
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
|
||||
#, fuzzy, c-format
|
||||
msgid "open of %s failed: %s\n"
|
||||
msgstr "neuspelo otvaranje %s: %s\n"
|
||||
|
||||
#: lib/query.c:459
|
||||
#: lib/query.c:464
|
||||
#, c-format
|
||||
msgid "query of %s failed\n"
|
||||
msgstr "upit nad %s neuspeo\n"
|
||||
|
||||
#: lib/query.c:469
|
||||
#: lib/query.c:474
|
||||
msgid "old format source packages cannot be queried\n"
|
||||
msgstr "Upit se ne mo¾e izvesti nad izvorni paketima u starom formatu\n"
|
||||
|
||||
#: lib/query.c:502 lib/rpminstall.c:608
|
||||
#: lib/query.c:507 lib/rpminstall.c:608
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: not an rpm package (or package manifest): %s\n"
|
||||
msgstr "nijedan paket ne aktivira %s\n"
|
||||
|
||||
#: lib/query.c:531
|
||||
#: lib/query.c:536
|
||||
#, fuzzy
|
||||
msgid "no packages\n"
|
||||
msgstr "upit nad svim paketima"
|
||||
|
||||
#: lib/query.c:551
|
||||
#: lib/query.c:556
|
||||
#, c-format
|
||||
msgid "group %s does not contain any packages\n"
|
||||
msgstr "grupa %s ne sadr¾i nijedan paket\n"
|
||||
|
||||
#: lib/query.c:560
|
||||
#: lib/query.c:565
|
||||
#, c-format
|
||||
msgid "no package triggers %s\n"
|
||||
msgstr "nijedan paket ne aktivira %s\n"
|
||||
|
||||
#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
|
||||
#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
|
||||
#, fuzzy, c-format
|
||||
msgid "malformed %s: %s\n"
|
||||
msgstr "Neuspelo èitanje %s: %s."
|
||||
|
||||
#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
|
||||
#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
|
||||
#, fuzzy, c-format
|
||||
msgid "no package matches %s: %s\n"
|
||||
msgstr "nijedan paket ne aktivira %s\n"
|
||||
|
||||
#: lib/query.c:663
|
||||
#: lib/query.c:668
|
||||
#, c-format
|
||||
msgid "no package requires %s\n"
|
||||
msgstr "nijedan paket ne zahteva %s\n"
|
||||
|
||||
#: lib/query.c:674
|
||||
#: lib/query.c:679
|
||||
#, c-format
|
||||
msgid "no package provides %s\n"
|
||||
msgstr "nijedan paket ne obezbeðuje %s\n"
|
||||
|
||||
#: lib/query.c:709
|
||||
#: lib/query.c:714
|
||||
#, fuzzy, c-format
|
||||
msgid "file %s: %s\n"
|
||||
msgstr "neuspelo otvaranje %s: %s"
|
||||
|
||||
#: lib/query.c:713
|
||||
#: lib/query.c:718
|
||||
#, c-format
|
||||
msgid "file %s is not owned by any package\n"
|
||||
msgstr "datoteka %s ne pripada nijednom paketu\n"
|
||||
|
||||
#: lib/query.c:738
|
||||
#: lib/query.c:743
|
||||
#, c-format
|
||||
msgid "invalid package number: %s\n"
|
||||
msgstr "pogre¹an broj paketa: %s\n"
|
||||
|
||||
#: lib/query.c:741
|
||||
#: lib/query.c:746
|
||||
#, fuzzy, c-format
|
||||
msgid "package record number: %u\n"
|
||||
msgstr "pogre¹an broj paketa: %s\n"
|
||||
|
||||
#: lib/query.c:746
|
||||
#: lib/query.c:751
|
||||
#, fuzzy, c-format
|
||||
msgid "record %u could not be read\n"
|
||||
msgstr "ne mogu da proèitam slog %d\n"
|
||||
|
||||
#: lib/query.c:756 lib/rpminstall.c:779
|
||||
#: lib/query.c:761 lib/rpminstall.c:779
|
||||
#, c-format
|
||||
msgid "package %s is not installed\n"
|
||||
msgstr "paket %s nije instaliran\n"
|
||||
|
@ -2909,28 +2909,28 @@ msgstr ""
|
|||
msgid "Unable to open %s for reading: %s.\n"
|
||||
msgstr "Ne mogu da otvorim %s za èitanje: %s"
|
||||
|
||||
#: lib/rpmts.c:135
|
||||
#: lib/rpmts.c:156
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr "gre¹ka: ne mogu da otvorim %s%s/packages.rpm\n"
|
||||
|
||||
#: lib/rpmts.c:320
|
||||
#: lib/rpmts.c:341
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot open Solve database in %s\n"
|
||||
msgstr "gre¹ka: ne mogu da otvorim %s%s/packages.rpm\n"
|
||||
|
||||
#: lib/rpmts.c:462
|
||||
#: lib/rpmts.c:483
|
||||
#, fuzzy, c-format
|
||||
msgid "Adding: %s\n"
|
||||
msgstr "neuspelo otvaranje %s: %s"
|
||||
|
||||
#: lib/rpmts.c:474
|
||||
#: lib/rpmts.c:495
|
||||
#, fuzzy, c-format
|
||||
msgid "Suggesting: %s\n"
|
||||
msgstr "Pribavljam %s\n"
|
||||
|
||||
#. Get available space on mounted file systems.
|
||||
#: lib/rpmts.c:906
|
||||
#: lib/rpmts.c:927
|
||||
msgid "getting list of mounted filesystems\n"
|
||||
msgstr ""
|
||||
|
||||
|
@ -3107,7 +3107,7 @@ msgid "%s skipped due to missingok flag\n"
|
|||
msgstr ""
|
||||
|
||||
#. @innercontinue@
|
||||
#: lib/transaction.c:935
|
||||
#: lib/transaction.c:956
|
||||
#, fuzzy, c-format
|
||||
msgid "excluding directory %s\n"
|
||||
msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
|
||||
|
@ -3120,7 +3120,7 @@ msgstr "gre
|
|||
#. * For packages being removed:
|
||||
#. * - count files.
|
||||
#.
|
||||
#: lib/transaction.c:1047
|
||||
#: lib/transaction.c:1068
|
||||
#, c-format
|
||||
msgid "sanity checking %d elements\n"
|
||||
msgstr ""
|
||||
|
@ -3133,7 +3133,7 @@ msgstr ""
|
|||
#. * calling fpLookupList only once. I'm not sure that the speedup is
|
||||
#. * worth the trouble though.
|
||||
#.
|
||||
#: lib/transaction.c:1129
|
||||
#: lib/transaction.c:1156
|
||||
#, c-format
|
||||
msgid "computing %d file fingerprints\n"
|
||||
msgstr ""
|
||||
|
@ -3141,7 +3141,7 @@ msgstr ""
|
|||
#. ===============================================
|
||||
#. * Compute file disposition for each package in transaction set.
|
||||
#.
|
||||
#: lib/transaction.c:1206
|
||||
#: lib/transaction.c:1233
|
||||
msgid "computing file dispositions\n"
|
||||
msgstr ""
|
||||
|
||||
|
|
130
po/sv.po
130
po/sv.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.1\n"
|
||||
"POT-Creation-Date: 2003-01-13 15:26-0500\n"
|
||||
"POT-Creation-Date: 2003-01-17 12:33-0500\n"
|
||||
"PO-Revision-Date: 2002-08-19 22:26+0200\n"
|
||||
"Last-Translator: Göran Uddeborg <goeran@uddeborg.pp.se>\n"
|
||||
"Language-Team: Swedish <sv@li.org>\n"
|
||||
|
@ -716,7 +716,7 @@ msgstr "Kan inte l
|
|||
msgid "Could not open %s: %s\n"
|
||||
msgstr "Kunde inte öppna %s: %s\n"
|
||||
|
||||
#: build/pack.c:632 lib/psm.c:1650
|
||||
#: build/pack.c:632 lib/psm.c:1657
|
||||
#, c-format
|
||||
msgid "Unable to write package: %s\n"
|
||||
msgstr "Kunde inte skriva paket: %s\n"
|
||||
|
@ -746,7 +746,7 @@ msgstr "Kan inte l
|
|||
msgid "Unable to write payload to %s: %s\n"
|
||||
msgstr "Kan inte skriva last till %s: %s\n"
|
||||
|
||||
#: build/pack.c:725 lib/psm.c:1941
|
||||
#: build/pack.c:725 lib/psm.c:1948
|
||||
#, c-format
|
||||
msgid "Wrote: %s\n"
|
||||
msgstr "Skrev: %s\n"
|
||||
|
@ -1342,52 +1342,52 @@ msgstr "Ingen arkivfilen i huvud"
|
|||
msgid " failed - "
|
||||
msgstr " misslyckades - "
|
||||
|
||||
#: lib/depends.c:164
|
||||
#: lib/depends.c:182
|
||||
#, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr "paket %s är redan tillagt, ersäetter med %s\n"
|
||||
|
||||
#: lib/depends.c:362
|
||||
#: lib/depends.c:380
|
||||
msgid "(cached)"
|
||||
msgstr "(cachad)"
|
||||
|
||||
#: lib/depends.c:389
|
||||
#: lib/depends.c:407
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr "(rpmrc tillhandahåller)"
|
||||
|
||||
#: lib/depends.c:406
|
||||
#: lib/depends.c:424
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr "(rpmlib tillhandahåller)"
|
||||
|
||||
#: lib/depends.c:435
|
||||
#: lib/depends.c:453
|
||||
msgid "(db files)"
|
||||
msgstr "(db-filer)"
|
||||
|
||||
#: lib/depends.c:448
|
||||
#: lib/depends.c:466
|
||||
msgid "(db provides)"
|
||||
msgstr "(db tillhandahåller)"
|
||||
|
||||
#: lib/depends.c:461
|
||||
#: lib/depends.c:479
|
||||
msgid "(db package)"
|
||||
msgstr "(db-paket)"
|
||||
|
||||
#: lib/depends.c:815
|
||||
#: lib/depends.c:833
|
||||
#, c-format
|
||||
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
|
||||
msgstr "ignorera paketnamnsrelation(er) [%d]\t%s -> %s\n"
|
||||
|
||||
#: lib/depends.c:937
|
||||
#: lib/depends.c:955
|
||||
#, c-format
|
||||
msgid "removing %s \"%s\" from tsort relations.\n"
|
||||
msgstr "tar bort %s \"%s\" från tsort-relationer.\n"
|
||||
|
||||
#. Record all relations.
|
||||
#: lib/depends.c:1167
|
||||
#: lib/depends.c:1185
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr "========== noterar alla relationer\n"
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1267
|
||||
#: lib/depends.c:1285
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, tree, "
|
||||
"depth)\n"
|
||||
|
@ -1395,20 +1395,20 @@ msgstr ""
|
|||
"========== tsort:erar paket (ordning, #föregångare, #efterföljare, träd, "
|
||||
"djup)\n"
|
||||
|
||||
#: lib/depends.c:1351
|
||||
#: lib/depends.c:1369
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr "========== endast efterföljare (presentationsordning)\n"
|
||||
|
||||
#: lib/depends.c:1421
|
||||
#: lib/depends.c:1439
|
||||
msgid "LOOP:\n"
|
||||
msgstr "LOOP:\n"
|
||||
|
||||
#: lib/depends.c:1456
|
||||
#: lib/depends.c:1474
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr "========== fortsätter med tsort ...\n"
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1461
|
||||
#: lib/depends.c:1479
|
||||
#, c-format
|
||||
msgid "rpmtsOrder failed, %d elements remain\n"
|
||||
msgstr "rpmtsOrder misslyckades, %d element återstår\n"
|
||||
|
@ -2161,177 +2161,177 @@ msgstr "%s: %s-skript misslyckades (%d), hoppar
|
|||
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
|
||||
msgstr "körning av %s-skript från %s-%s-%s misslyckades, slutstatus %d\n"
|
||||
|
||||
#: lib/psm.c:1420
|
||||
#: lib/psm.c:1421
|
||||
#, c-format
|
||||
msgid "%s: %s has %d files, test = %d\n"
|
||||
msgstr "%s: %s har %d filer, test = %d\n"
|
||||
|
||||
#: lib/psm.c:1553
|
||||
#: lib/psm.c:1560
|
||||
#, c-format
|
||||
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
|
||||
msgstr "%s: %s-skript misslyckades (%d), hoppar över %s\n"
|
||||
|
||||
#: lib/psm.c:1662
|
||||
#: lib/psm.c:1669
|
||||
msgid "Unable to reload signature header\n"
|
||||
msgstr "Kan inte läsa om signaturhuvud\n"
|
||||
|
||||
#: lib/psm.c:1708
|
||||
#: lib/psm.c:1715
|
||||
#, c-format
|
||||
msgid "user %s does not exist - using root\n"
|
||||
msgstr "användare %s finns inte - använder root\n"
|
||||
|
||||
#: lib/psm.c:1717
|
||||
#: lib/psm.c:1724
|
||||
#, c-format
|
||||
msgid "group %s does not exist - using root\n"
|
||||
msgstr "grupp %s finns inte - använder root\n"
|
||||
|
||||
#: lib/psm.c:1765
|
||||
#: lib/psm.c:1772
|
||||
#, c-format
|
||||
msgid "unpacking of archive failed%s%s: %s\n"
|
||||
msgstr "uppackning av arkiv misslyckades%s%s: %s\n"
|
||||
|
||||
#: lib/psm.c:1766
|
||||
#: lib/psm.c:1773
|
||||
msgid " on file "
|
||||
msgstr " vid fil "
|
||||
|
||||
#: lib/psm.c:1949
|
||||
#: lib/psm.c:1956
|
||||
#, c-format
|
||||
msgid "%s failed on file %s: %s\n"
|
||||
msgstr "%s misslyckades på fil %s: %s\n"
|
||||
|
||||
#: lib/psm.c:1952
|
||||
#: lib/psm.c:1959
|
||||
#, c-format
|
||||
msgid "%s failed: %s\n"
|
||||
msgstr "%s misslyckades: %s\n"
|
||||
|
||||
#: lib/query.c:122 lib/rpmts.c:430
|
||||
#: lib/query.c:122 lib/rpmts.c:451
|
||||
#, c-format
|
||||
msgid "incorrect format: %s\n"
|
||||
msgstr "fel format: %s\n"
|
||||
|
||||
#. @-boundswrite@
|
||||
#: lib/query.c:181
|
||||
#: lib/query.c:186
|
||||
msgid "(contains no files)"
|
||||
msgstr "(innehåller inga filer)"
|
||||
|
||||
#: lib/query.c:246
|
||||
#: lib/query.c:251
|
||||
msgid "normal "
|
||||
msgstr "normal "
|
||||
|
||||
#: lib/query.c:249
|
||||
#: lib/query.c:254
|
||||
msgid "replaced "
|
||||
msgstr "ersatt "
|
||||
|
||||
#: lib/query.c:252
|
||||
#: lib/query.c:257
|
||||
msgid "not installed "
|
||||
msgstr "oinstallerat "
|
||||
|
||||
#: lib/query.c:255
|
||||
#: lib/query.c:260
|
||||
msgid "net shared "
|
||||
msgstr "nätdelad "
|
||||
|
||||
#: lib/query.c:258
|
||||
#: lib/query.c:263
|
||||
msgid "wrong color "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:261
|
||||
#: lib/query.c:266
|
||||
msgid "(no state) "
|
||||
msgstr "(ej tillstnd) "
|
||||
|
||||
#: lib/query.c:264
|
||||
#: lib/query.c:269
|
||||
#, c-format
|
||||
msgid "(unknown %3d) "
|
||||
msgstr "(okänd %3d) "
|
||||
|
||||
#: lib/query.c:282
|
||||
#: lib/query.c:287
|
||||
msgid "package has not file owner/group lists\n"
|
||||
msgstr "paketet har inte filägare-/-grupplistor\n"
|
||||
|
||||
#: lib/query.c:315
|
||||
#: lib/query.c:320
|
||||
msgid "package has neither file owner or id lists\n"
|
||||
msgstr "paketet har varken filägare eller id-listor\n"
|
||||
|
||||
#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
|
||||
#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
|
||||
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
|
||||
#, c-format
|
||||
msgid "open of %s failed: %s\n"
|
||||
msgstr "misslyckades med att öppna %s: %s\n"
|
||||
|
||||
#: lib/query.c:459
|
||||
#: lib/query.c:464
|
||||
#, c-format
|
||||
msgid "query of %s failed\n"
|
||||
msgstr "fråga av %s misslyckades\n"
|
||||
|
||||
#: lib/query.c:469
|
||||
#: lib/query.c:474
|
||||
msgid "old format source packages cannot be queried\n"
|
||||
msgstr "källpaket i gammalt format går inte att fråga om\n"
|
||||
|
||||
#: lib/query.c:502 lib/rpminstall.c:608
|
||||
#: lib/query.c:507 lib/rpminstall.c:608
|
||||
#, c-format
|
||||
msgid "%s: not an rpm package (or package manifest): %s\n"
|
||||
msgstr "%s: inte ett rpm-paket (eller paketspecifikation): %s\n"
|
||||
|
||||
#: lib/query.c:531
|
||||
#: lib/query.c:536
|
||||
msgid "no packages\n"
|
||||
msgstr "inga paket\n"
|
||||
|
||||
#: lib/query.c:551
|
||||
#: lib/query.c:556
|
||||
#, c-format
|
||||
msgid "group %s does not contain any packages\n"
|
||||
msgstr "grupp %s innehåller inga paket\n"
|
||||
|
||||
#: lib/query.c:560
|
||||
#: lib/query.c:565
|
||||
#, c-format
|
||||
msgid "no package triggers %s\n"
|
||||
msgstr "inga paketutlösare %s\n"
|
||||
|
||||
#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
|
||||
#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
|
||||
#, c-format
|
||||
msgid "malformed %s: %s\n"
|
||||
msgstr "felformaterad %s: %s\n"
|
||||
|
||||
#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
|
||||
#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
|
||||
#, c-format
|
||||
msgid "no package matches %s: %s\n"
|
||||
msgstr "inga paket matchar %s: %s\n"
|
||||
|
||||
#: lib/query.c:663
|
||||
#: lib/query.c:668
|
||||
#, c-format
|
||||
msgid "no package requires %s\n"
|
||||
msgstr "inget paket behöver %s\n"
|
||||
|
||||
#: lib/query.c:674
|
||||
#: lib/query.c:679
|
||||
#, c-format
|
||||
msgid "no package provides %s\n"
|
||||
msgstr "inget paket tillhandahåller %s\n"
|
||||
|
||||
#: lib/query.c:709
|
||||
#: lib/query.c:714
|
||||
#, c-format
|
||||
msgid "file %s: %s\n"
|
||||
msgstr "fil %s: %s\n"
|
||||
|
||||
#: lib/query.c:713
|
||||
#: lib/query.c:718
|
||||
#, c-format
|
||||
msgid "file %s is not owned by any package\n"
|
||||
msgstr "filen %s tillhör inget paket\n"
|
||||
|
||||
#: lib/query.c:738
|
||||
#: lib/query.c:743
|
||||
#, c-format
|
||||
msgid "invalid package number: %s\n"
|
||||
msgstr "felaktigt paketnummer: %s\n"
|
||||
|
||||
#: lib/query.c:741
|
||||
#: lib/query.c:746
|
||||
#, c-format
|
||||
msgid "package record number: %u\n"
|
||||
msgstr "paketpost nummer: %u\n"
|
||||
|
||||
#: lib/query.c:746
|
||||
#: lib/query.c:751
|
||||
#, c-format
|
||||
msgid "record %u could not be read\n"
|
||||
msgstr "post %u kunde inte läsas\n"
|
||||
|
||||
#: lib/query.c:756 lib/rpminstall.c:779
|
||||
#: lib/query.c:761 lib/rpminstall.c:779
|
||||
#, c-format
|
||||
msgid "package %s is not installed\n"
|
||||
msgstr "paket %s är inte installerat\n"
|
||||
|
@ -2809,28 +2809,28 @@ msgstr "Kan inte l
|
|||
msgid "Unable to open %s for reading: %s.\n"
|
||||
msgstr "Kan inte öppna %s för läsning: %s.\n"
|
||||
|
||||
#: lib/rpmts.c:135
|
||||
#: lib/rpmts.c:156
|
||||
#, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr "kan inte öppna paketdatabas i %s\n"
|
||||
|
||||
#: lib/rpmts.c:320
|
||||
#: lib/rpmts.c:341
|
||||
#, c-format
|
||||
msgid "cannot open Solve database in %s\n"
|
||||
msgstr "kan inte öppna Solve-databas i %s\n"
|
||||
|
||||
#: lib/rpmts.c:462
|
||||
#: lib/rpmts.c:483
|
||||
#, c-format
|
||||
msgid "Adding: %s\n"
|
||||
msgstr "Lägger till: %s\n"
|
||||
|
||||
#: lib/rpmts.c:474
|
||||
#: lib/rpmts.c:495
|
||||
#, c-format
|
||||
msgid "Suggesting: %s\n"
|
||||
msgstr "Föreslår %s\n"
|
||||
|
||||
#. Get available space on mounted file systems.
|
||||
#: lib/rpmts.c:906
|
||||
#: lib/rpmts.c:927
|
||||
msgid "getting list of mounted filesystems\n"
|
||||
msgstr "hämtar lista över monterade filsystem\n"
|
||||
|
||||
|
@ -3001,7 +3001,7 @@ msgid "%s skipped due to missingok flag\n"
|
|||
msgstr "%s överhoppad på grund av missingok-flagga\n"
|
||||
|
||||
#. @innercontinue@
|
||||
#: lib/transaction.c:935
|
||||
#: lib/transaction.c:956
|
||||
#, c-format
|
||||
msgid "excluding directory %s\n"
|
||||
msgstr "hoppar över katalogen %s\n"
|
||||
|
@ -3014,7 +3014,7 @@ msgstr "hoppar
|
|||
#. * For packages being removed:
|
||||
#. * - count files.
|
||||
#.
|
||||
#: lib/transaction.c:1047
|
||||
#: lib/transaction.c:1068
|
||||
#, fuzzy, c-format
|
||||
msgid "sanity checking %d elements\n"
|
||||
msgstr "rimlighetskontrollerar %d element\n"
|
||||
|
@ -3027,7 +3027,7 @@ msgstr "rimlighetskontrollerar %d element\n"
|
|||
#. * calling fpLookupList only once. I'm not sure that the speedup is
|
||||
#. * worth the trouble though.
|
||||
#.
|
||||
#: lib/transaction.c:1129
|
||||
#: lib/transaction.c:1156
|
||||
#, c-format
|
||||
msgid "computing %d file fingerprints\n"
|
||||
msgstr "beräknar %d filfingeravtryck\n"
|
||||
|
@ -3035,7 +3035,7 @@ msgstr "ber
|
|||
#. ===============================================
|
||||
#. * Compute file disposition for each package in transaction set.
|
||||
#.
|
||||
#: lib/transaction.c:1206
|
||||
#: lib/transaction.c:1233
|
||||
msgid "computing file dispositions\n"
|
||||
msgstr "beräknar filåtgärder\n"
|
||||
|
||||
|
|
130
po/tr.po
130
po/tr.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 4.0.3\n"
|
||||
"POT-Creation-Date: 2003-01-13 15:26-0500\n"
|
||||
"POT-Creation-Date: 2003-01-17 12:33-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"
|
||||
|
@ -730,7 +730,7 @@ msgstr "%s'den ba
|
|||
msgid "Could not open %s: %s\n"
|
||||
msgstr "%s açýlamadý: %s\n"
|
||||
|
||||
#: build/pack.c:632 lib/psm.c:1650
|
||||
#: build/pack.c:632 lib/psm.c:1657
|
||||
#, c-format
|
||||
msgid "Unable to write package: %s\n"
|
||||
msgstr "paket yazýlamadý: %s\n"
|
||||
|
@ -760,7 +760,7 @@ msgstr "%s'den payload okunamad
|
|||
msgid "Unable to write payload to %s: %s\n"
|
||||
msgstr "%s'e payload yazýlamadý: %s\n"
|
||||
|
||||
#: build/pack.c:725 lib/psm.c:1941
|
||||
#: build/pack.c:725 lib/psm.c:1948
|
||||
#, c-format
|
||||
msgid "Wrote: %s\n"
|
||||
msgstr "Yazýldý: %s\n"
|
||||
|
@ -1368,57 +1368,57 @@ msgstr ""
|
|||
msgid " failed - "
|
||||
msgstr " baþarýsýz - "
|
||||
|
||||
#: lib/depends.c:164
|
||||
#: lib/depends.c:182
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s was already added, replacing with %s\n"
|
||||
msgstr "%s zaten kurulu"
|
||||
|
||||
#: lib/depends.c:362
|
||||
#: lib/depends.c:380
|
||||
msgid "(cached)"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:389
|
||||
#: lib/depends.c:407
|
||||
#, fuzzy
|
||||
msgid "(rpmrc provides)"
|
||||
msgstr "%s: %-45s EVET (rpmrc saðlar)\n"
|
||||
|
||||
#: lib/depends.c:406
|
||||
#: lib/depends.c:424
|
||||
#, fuzzy
|
||||
msgid "(rpmlib provides)"
|
||||
msgstr "%s: %-45s EVET (rpmlib saðlar)\n"
|
||||
|
||||
#: lib/depends.c:435
|
||||
#: lib/depends.c:453
|
||||
#, fuzzy
|
||||
msgid "(db files)"
|
||||
msgstr "db dosyasý %s hatalý\n"
|
||||
|
||||
#: lib/depends.c:448
|
||||
#: lib/depends.c:466
|
||||
#, fuzzy
|
||||
msgid "(db provides)"
|
||||
msgstr "%s: %-45s EVET (db saðlar)\n"
|
||||
|
||||
#: lib/depends.c:461
|
||||
#: lib/depends.c:479
|
||||
#, fuzzy
|
||||
msgid "(db package)"
|
||||
msgstr "paket yok\n"
|
||||
|
||||
#: lib/depends.c:815
|
||||
#: lib/depends.c:833
|
||||
#, c-format
|
||||
msgid "ignore package name relation(s) [%d]\t%s -> %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:937
|
||||
#: lib/depends.c:955
|
||||
#, 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:1167
|
||||
#: lib/depends.c:1185
|
||||
msgid "========== recording tsort relations\n"
|
||||
msgstr "========== tsort baðýntýlarý kaydediliyor\n"
|
||||
|
||||
#. T4. Scan for zeroes.
|
||||
#: lib/depends.c:1267
|
||||
#: lib/depends.c:1285
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"========== tsorting packages (order, #predecessors, #succesors, tree, "
|
||||
|
@ -1426,20 +1426,20 @@ msgid ""
|
|||
msgstr ""
|
||||
"========== paketler tsort'lanýyor (sýra, #öncüller, #ardýllar, derinlik)\n"
|
||||
|
||||
#: lib/depends.c:1351
|
||||
#: lib/depends.c:1369
|
||||
msgid "========== successors only (presentation order)\n"
|
||||
msgstr "========== sadece ardýllar (sunum sýrasý)\n"
|
||||
|
||||
#: lib/depends.c:1421
|
||||
#: lib/depends.c:1439
|
||||
msgid "LOOP:\n"
|
||||
msgstr "ÇEVRÝM:\n"
|
||||
|
||||
#: lib/depends.c:1456
|
||||
#: lib/depends.c:1474
|
||||
msgid "========== continuing tsort ...\n"
|
||||
msgstr "========== tsort sürüyor ...\n"
|
||||
|
||||
#. Return no. of packages that could not be ordered.
|
||||
#: lib/depends.c:1461
|
||||
#: lib/depends.c:1479
|
||||
#, c-format
|
||||
msgid "rpmtsOrder failed, %d elements remain\n"
|
||||
msgstr ""
|
||||
|
@ -2222,179 +2222,179 @@ msgstr "%s: %s beti
|
|||
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
|
||||
msgstr "%s betiðinin %s-%s-%s'den icrasý baþarýsýz, çýkýþta durum %d\n"
|
||||
|
||||
#: lib/psm.c:1420
|
||||
#: lib/psm.c:1421
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s has %d files, test = %d\n"
|
||||
msgstr "%s: %s-%s-%s %d dosya içeriyor, test = %d\n"
|
||||
|
||||
#: lib/psm.c:1553
|
||||
#: lib/psm.c:1560
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
|
||||
msgstr "%s: %s betiði baþarýsýz (%d), %s-%s-%s atlanýyor\n"
|
||||
|
||||
#: lib/psm.c:1662
|
||||
#: lib/psm.c:1669
|
||||
#, fuzzy
|
||||
msgid "Unable to reload signature header\n"
|
||||
msgstr "%s'den baþlýk okunamadý: %s\n"
|
||||
|
||||
#: lib/psm.c:1708
|
||||
#: lib/psm.c:1715
|
||||
#, c-format
|
||||
msgid "user %s does not exist - using root\n"
|
||||
msgstr "kullanýcý %s yok - root kullanýlacak\n"
|
||||
|
||||
#: lib/psm.c:1717
|
||||
#: lib/psm.c:1724
|
||||
#, c-format
|
||||
msgid "group %s does not exist - using root\n"
|
||||
msgstr "grup %s yok - root kullanýlacak\n"
|
||||
|
||||
#: lib/psm.c:1765
|
||||
#: lib/psm.c:1772
|
||||
#, c-format
|
||||
msgid "unpacking of archive failed%s%s: %s\n"
|
||||
msgstr "arþiv paketi açýlýrken baþarýsýz%s%s: %s\n"
|
||||
|
||||
#: lib/psm.c:1766
|
||||
#: lib/psm.c:1773
|
||||
msgid " on file "
|
||||
msgstr " dosyada "
|
||||
|
||||
#: lib/psm.c:1949
|
||||
#: lib/psm.c:1956
|
||||
#, fuzzy, c-format
|
||||
msgid "%s failed on file %s: %s\n"
|
||||
msgstr "%s açýlamadý: %s\n"
|
||||
|
||||
#: lib/psm.c:1952
|
||||
#: lib/psm.c:1959
|
||||
#, fuzzy, c-format
|
||||
msgid "%s failed: %s\n"
|
||||
msgstr "%s baþarýsýz\n"
|
||||
|
||||
#: lib/query.c:122 lib/rpmts.c:430
|
||||
#: lib/query.c:122 lib/rpmts.c:451
|
||||
#, c-format
|
||||
msgid "incorrect format: %s\n"
|
||||
msgstr "biçem yanlýþ: %s\n"
|
||||
|
||||
#. @-boundswrite@
|
||||
#: lib/query.c:181
|
||||
#: lib/query.c:186
|
||||
msgid "(contains no files)"
|
||||
msgstr "(hiç dosya içermiyor)"
|
||||
|
||||
#: lib/query.c:246
|
||||
#: lib/query.c:251
|
||||
msgid "normal "
|
||||
msgstr "normal "
|
||||
|
||||
#: lib/query.c:249
|
||||
#: lib/query.c:254
|
||||
msgid "replaced "
|
||||
msgstr "yerine "
|
||||
|
||||
#: lib/query.c:252
|
||||
#: lib/query.c:257
|
||||
msgid "not installed "
|
||||
msgstr "yüklenmedi "
|
||||
|
||||
#: lib/query.c:255
|
||||
#: lib/query.c:260
|
||||
msgid "net shared "
|
||||
msgstr "að paylaþýmlý "
|
||||
|
||||
#: lib/query.c:258
|
||||
#: lib/query.c:263
|
||||
msgid "wrong color "
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:261
|
||||
#: lib/query.c:266
|
||||
msgid "(no state) "
|
||||
msgstr "(durumsuz) "
|
||||
|
||||
#: lib/query.c:264
|
||||
#: lib/query.c:269
|
||||
#, c-format
|
||||
msgid "(unknown %3d) "
|
||||
msgstr "(bilinmeyen %3d)"
|
||||
|
||||
#: lib/query.c:282
|
||||
#: lib/query.c:287
|
||||
#, fuzzy
|
||||
msgid "package has not file owner/group lists\n"
|
||||
msgstr "paket ne dosya sahibi ne de kimlik listesi içeriyor\n"
|
||||
|
||||
#: lib/query.c:315
|
||||
#: lib/query.c:320
|
||||
msgid "package has neither file owner or id lists\n"
|
||||
msgstr "paket ne dosya sahibi ne de kimlik listesi içeriyor\n"
|
||||
|
||||
#: lib/query.c:444 lib/query.c:491 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:441
|
||||
#: lib/query.c:449 lib/query.c:496 lib/rpminstall.c:127 lib/rpminstall.c:464
|
||||
#: lib/rpminstall.c:595 lib/rpminstall.c:1011 lib/rpmts.c:462
|
||||
#: tools/rpmgraph.c:127 tools/rpmgraph.c:164
|
||||
#, c-format
|
||||
msgid "open of %s failed: %s\n"
|
||||
msgstr "%s açýlamadý: %s\n"
|
||||
|
||||
#: lib/query.c:459
|
||||
#: lib/query.c:464
|
||||
#, c-format
|
||||
msgid "query of %s failed\n"
|
||||
msgstr "%s 'nin sorgulamasý baþarýsýzlýkla sonuçlandý\n"
|
||||
|
||||
#: lib/query.c:469
|
||||
#: lib/query.c:474
|
||||
msgid "old format source packages cannot be queried\n"
|
||||
msgstr "eski biçem kaynak paketleri sorgulanamaz\n"
|
||||
|
||||
#: lib/query.c:502 lib/rpminstall.c:608
|
||||
#: lib/query.c:507 lib/rpminstall.c:608
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: not an rpm package (or package manifest): %s\n"
|
||||
msgstr "%s tetikleyen paket yok\n"
|
||||
|
||||
#: lib/query.c:531
|
||||
#: lib/query.c:536
|
||||
msgid "no packages\n"
|
||||
msgstr "paket yok\n"
|
||||
|
||||
#: lib/query.c:551
|
||||
#: lib/query.c:556
|
||||
#, c-format
|
||||
msgid "group %s does not contain any packages\n"
|
||||
msgstr "%s grubu hiç paket içermiyor\n"
|
||||
|
||||
#: lib/query.c:560
|
||||
#: lib/query.c:565
|
||||
#, c-format
|
||||
msgid "no package triggers %s\n"
|
||||
msgstr "%s tetikleyen paket yok\n"
|
||||
|
||||
#: lib/query.c:573 lib/query.c:594 lib/query.c:614 lib/query.c:648
|
||||
#: lib/query.c:578 lib/query.c:599 lib/query.c:619 lib/query.c:653
|
||||
#, fuzzy, c-format
|
||||
msgid "malformed %s: %s\n"
|
||||
msgstr "%s okunamadý: %s.\n"
|
||||
|
||||
#: lib/query.c:583 lib/query.c:600 lib/query.c:624 lib/query.c:653
|
||||
#: lib/query.c:588 lib/query.c:605 lib/query.c:629 lib/query.c:658
|
||||
#, fuzzy, c-format
|
||||
msgid "no package matches %s: %s\n"
|
||||
msgstr "%s tetikleyen paket yok\n"
|
||||
|
||||
#: lib/query.c:663
|
||||
#: lib/query.c:668
|
||||
#, c-format
|
||||
msgid "no package requires %s\n"
|
||||
msgstr "%s gerektiren paket yok\n"
|
||||
|
||||
#: lib/query.c:674
|
||||
#: lib/query.c:679
|
||||
#, c-format
|
||||
msgid "no package provides %s\n"
|
||||
msgstr "%s saðlayan paket yok\n"
|
||||
|
||||
#: lib/query.c:709
|
||||
#: lib/query.c:714
|
||||
#, c-format
|
||||
msgid "file %s: %s\n"
|
||||
msgstr "dosya %s: %s\n"
|
||||
|
||||
#: lib/query.c:713
|
||||
#: lib/query.c:718
|
||||
#, c-format
|
||||
msgid "file %s is not owned by any package\n"
|
||||
msgstr "%s dosyasý, hiç bir pakete ait deðil\n"
|
||||
|
||||
#: lib/query.c:738
|
||||
#: lib/query.c:743
|
||||
#, c-format
|
||||
msgid "invalid package number: %s\n"
|
||||
msgstr "geçersiz paket numarasý: %s\n"
|
||||
|
||||
#: lib/query.c:741
|
||||
#: lib/query.c:746
|
||||
#, c-format
|
||||
msgid "package record number: %u\n"
|
||||
msgstr "paket kayýt numarasý: %u\n"
|
||||
|
||||
#: lib/query.c:746
|
||||
#: lib/query.c:751
|
||||
#, c-format
|
||||
msgid "record %u could not be read\n"
|
||||
msgstr "%u. kayýt okunamadý\n"
|
||||
|
||||
#: lib/query.c:756 lib/rpminstall.c:779
|
||||
#: lib/query.c:761 lib/rpminstall.c:779
|
||||
#, c-format
|
||||
msgid "package %s is not installed\n"
|
||||
msgstr "%s paketi kurulu deðil\n"
|
||||
|
@ -2879,28 +2879,28 @@ msgstr "%s okunam
|
|||
msgid "Unable to open %s for reading: %s.\n"
|
||||
msgstr "%s okuma eriþimi için açýlamadý: %s.\n"
|
||||
|
||||
#: lib/rpmts.c:135
|
||||
#: lib/rpmts.c:156
|
||||
#, c-format
|
||||
msgid "cannot open Packages database in %s\n"
|
||||
msgstr "%s de Paket veritabaný açýlamadý\n"
|
||||
|
||||
#: lib/rpmts.c:320
|
||||
#: lib/rpmts.c:341
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot open Solve database in %s\n"
|
||||
msgstr "%s dizininde rpm veritabaný açýlamýyor\n"
|
||||
|
||||
#: lib/rpmts.c:462
|
||||
#: lib/rpmts.c:483
|
||||
#, fuzzy, c-format
|
||||
msgid "Adding: %s\n"
|
||||
msgstr "satýr: %s\n"
|
||||
|
||||
#: lib/rpmts.c:474
|
||||
#: lib/rpmts.c:495
|
||||
#, fuzzy, c-format
|
||||
msgid "Suggesting: %s\n"
|
||||
msgstr "%s alýnýyor\n"
|
||||
|
||||
#. Get available space on mounted file systems.
|
||||
#: lib/rpmts.c:906
|
||||
#: lib/rpmts.c:927
|
||||
msgid "getting list of mounted filesystems\n"
|
||||
msgstr "baðlý dosya sistemlerinin listesi alýnýyor\n"
|
||||
|
||||
|
@ -3073,7 +3073,7 @@ msgid "%s skipped due to missingok flag\n"
|
|||
msgstr "missingok flamasýndan dolayý %s atlandý\n"
|
||||
|
||||
#. @innercontinue@
|
||||
#: lib/transaction.c:935
|
||||
#: lib/transaction.c:956
|
||||
#, c-format
|
||||
msgid "excluding directory %s\n"
|
||||
msgstr "%s dizini dýþlanýyor\n"
|
||||
|
@ -3086,7 +3086,7 @@ msgstr "%s dizini d
|
|||
#. * For packages being removed:
|
||||
#. * - count files.
|
||||
#.
|
||||
#: lib/transaction.c:1047
|
||||
#: lib/transaction.c:1068
|
||||
#, c-format
|
||||
msgid "sanity checking %d elements\n"
|
||||
msgstr ""
|
||||
|
@ -3099,7 +3099,7 @@ msgstr ""
|
|||
#. * calling fpLookupList only once. I'm not sure that the speedup is
|
||||
#. * worth the trouble though.
|
||||
#.
|
||||
#: lib/transaction.c:1129
|
||||
#: lib/transaction.c:1156
|
||||
#, c-format
|
||||
msgid "computing %d file fingerprints\n"
|
||||
msgstr ""
|
||||
|
@ -3107,7 +3107,7 @@ msgstr ""
|
|||
#. ===============================================
|
||||
#. * Compute file disposition for each package in transaction set.
|
||||
#.
|
||||
#: lib/transaction.c:1206
|
||||
#: lib/transaction.c:1233
|
||||
msgid "computing file dispositions\n"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@ Name: rpm
|
|||
%define version @VERSION@
|
||||
Version: %{version}
|
||||
%{expand: %%define rpm_version %{version}}
|
||||
Release: 0.56
|
||||
Release: 0.58
|
||||
Group: System Environment/Base
|
||||
Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/rpm-%{rpm_version}.tar.gz
|
||||
Copyright: GPL
|
||||
|
@ -464,6 +464,10 @@ exit 0
|
|||
%{__includedir}/popt.h
|
||||
|
||||
%changelog
|
||||
* Fri Jan 17 2003 Jeff Johnson <jbj@redhat.com> 4.2-0.58
|
||||
- duplicate package checks with arch/os checks if colored.
|
||||
- file conflict checks with colors.
|
||||
|
||||
* Mon Jan 13 2003 Jeff Johnson <jbj@redhat.com> 4.2-0.57
|
||||
- teach rpmquery to return "owning" package(s) in spite of alternatives.
|
||||
|
||||
|
|
|
@ -30,3 +30,35 @@ int headerNVR(Header h, const char **np, const char **vp, const char **rp)
|
|||
/*@=boundswrite@*/
|
||||
return 0;
|
||||
}
|
||||
|
||||
int headerNEVRA(Header h, const char **np,
|
||||
/*@unused@*/ const char **ep, const char **vp, const char **rp,
|
||||
const char **ap)
|
||||
{
|
||||
int type;
|
||||
int count;
|
||||
|
||||
/*@-boundswrite@*/
|
||||
if (np) {
|
||||
if (!(headerGetEntry(h, RPMTAG_NAME, &type, (void **) np, &count)
|
||||
&& type == RPM_STRING_TYPE && count == 1))
|
||||
*np = NULL;
|
||||
}
|
||||
if (vp) {
|
||||
if (!(headerGetEntry(h, RPMTAG_VERSION, &type, (void **) vp, &count)
|
||||
&& type == RPM_STRING_TYPE && count == 1))
|
||||
*vp = NULL;
|
||||
}
|
||||
if (rp) {
|
||||
if (!(headerGetEntry(h, RPMTAG_RELEASE, &type, (void **) rp, &count)
|
||||
&& type == RPM_STRING_TYPE && count == 1))
|
||||
*rp = NULL;
|
||||
}
|
||||
if (ap) {
|
||||
if (!(headerGetEntry(h, RPMTAG_ARCH, &type, (void **) ap, &count)
|
||||
&& type == RPM_STRING_TYPE && count == 1))
|
||||
*ap = NULL;
|
||||
}
|
||||
/*@=boundswrite@*/
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue