Sanity (bump release).
CVS patchset: 3677 CVS date: 2000/04/13 16:00:34
This commit is contained in:
parent
bd4ce43486
commit
0c83ea489f
|
@ -472,7 +472,6 @@ int packageBinaries(Spec spec)
|
|||
CSA_t csabuf, *csa = &csabuf;
|
||||
int rc;
|
||||
const char *errorString;
|
||||
char *name;
|
||||
Package pkg;
|
||||
|
||||
for (pkg = spec->packages; pkg != NULL; pkg = pkg->next) {
|
||||
|
@ -514,6 +513,7 @@ int packageBinaries(Spec spec)
|
|||
rpmHeaderFormats, &errorString);
|
||||
xfree(binFormat);
|
||||
if (binRpm == NULL) {
|
||||
const char *name;
|
||||
headerNVR(pkg->header, &name, NULL, NULL);
|
||||
rpmError(RPMERR_BADFILENAME, _("Could not generate output "
|
||||
"filename for package %s: %s\n"), name, errorString);
|
||||
|
|
230
lib/depends.c
230
lib/depends.c
|
@ -56,17 +56,23 @@ static /*@only@*/ char *printDepend(const char * key, const char * keyEVR,
|
|||
return tbuf;
|
||||
}
|
||||
|
||||
static /*@only@*/ char *buildEVR(int_32 *e, const char *v, const char *r)
|
||||
#ifdef DYING
|
||||
static /*@only@*/ const char *buildEVR(int_32 *e, const char *v, const char *r)
|
||||
{
|
||||
char *pEVR = xmalloc(21 + strlen(v) + 1 + strlen(r) + 1);
|
||||
*pEVR = '\0';
|
||||
if (e)
|
||||
sprintf(pEVR, "%d:", *e);
|
||||
strcat(pEVR, v);
|
||||
strcat(pEVR, "-");
|
||||
strcat(pEVR, r);
|
||||
const char *pEVR;
|
||||
char *p;
|
||||
|
||||
pEVR = p = xmalloc(21 + strlen(v) + 1 + strlen(r) + 1);
|
||||
*p = '\0';
|
||||
if (e) {
|
||||
sprintf(p, "%d:", *e);
|
||||
while (*p++)
|
||||
;
|
||||
}
|
||||
(void) stpcpy( stpcpy( stpcpy(p, v) , "-") , r);
|
||||
return pEVR;
|
||||
}
|
||||
#endif
|
||||
|
||||
struct orderListIndex {
|
||||
int alIndex;
|
||||
|
@ -143,6 +149,7 @@ static int dirInfoCompare(const void * one, const void * two) {
|
|||
|
||||
if (lenchk)
|
||||
return lenchk;
|
||||
|
||||
/* XXX FIXME: this might do "backward" strcmp for speed */
|
||||
return strcmp(a->dirName, b->dirName);
|
||||
}
|
||||
|
@ -281,12 +288,16 @@ static /*@exposed@*/ struct availablePackage * alAddPackage(struct availableList
|
|||
return p;
|
||||
}
|
||||
|
||||
static int indexcmp(const void * a, const void *b)
|
||||
static int indexcmp(const void * one, const void * two)
|
||||
{
|
||||
const struct availableIndexEntry * aptr = a;
|
||||
const struct availableIndexEntry * bptr = b;
|
||||
const struct availableIndexEntry * a = one;
|
||||
const struct availableIndexEntry * b = two;
|
||||
int lenchk = a->entryLen - b->entryLen;
|
||||
|
||||
return strcmp(aptr->entry, bptr->entry);
|
||||
if (lenchk)
|
||||
return lenchk;
|
||||
|
||||
return strcmp(a->entry, b->entry);
|
||||
}
|
||||
|
||||
static void alMakeIndex(struct availableList * al)
|
||||
|
@ -307,12 +318,14 @@ static void alMakeIndex(struct availableList * al)
|
|||
for (i = 0; i < al->size; i++) {
|
||||
ai->index[k].package = al->list + i;
|
||||
ai->index[k].entry = al->list[i].name;
|
||||
ai->index[k].entryLen = strlen(al->list[i].name);
|
||||
ai->index[k].type = IET_NAME;
|
||||
k++;
|
||||
|
||||
for (j = 0; j < al->list[i].providesCount; j++) {
|
||||
ai->index[k].package = al->list + i;
|
||||
ai->index[k].entry = al->list[i].provides[j];
|
||||
ai->index[k].entryLen = strlen(al->list[i].provides[j]);
|
||||
ai->index[k].type = IET_PROVIDES;
|
||||
k++;
|
||||
}
|
||||
|
@ -504,9 +517,9 @@ int headerMatchesDepFlags(Header h, const char *reqName, const char * reqEVR, in
|
|||
{
|
||||
const char *name, *version, *release;
|
||||
int_32 * epoch;
|
||||
char *pkgEVR;
|
||||
const char *pkgEVR;
|
||||
char *p;
|
||||
int pkgFlags = RPMSENSE_EQUAL;
|
||||
int type, count;
|
||||
|
||||
if (!((reqFlags & RPMSENSE_SENSEMASK) && reqEVR && *reqEVR))
|
||||
return 1;
|
||||
|
@ -514,44 +527,23 @@ int headerMatchesDepFlags(Header h, const char *reqName, const char * reqEVR, in
|
|||
/* Get package information from header */
|
||||
headerNVR(h, &name, &version, &release);
|
||||
|
||||
pkgEVR = alloca(21 + strlen(version) + 1 + strlen(release) + 1);
|
||||
*pkgEVR = '\0';
|
||||
if (headerGetEntry(h, RPMTAG_EPOCH, &type, (void **) &epoch, &count))
|
||||
sprintf(pkgEVR, "%d:", *epoch);
|
||||
strcat(pkgEVR, version);
|
||||
strcat(pkgEVR, "-");
|
||||
strcat(pkgEVR, release);
|
||||
pkgEVR = p = alloca(21 + strlen(version) + 1 + strlen(release) + 1);
|
||||
*p = '\0';
|
||||
if (headerGetEntry(h, RPMTAG_EPOCH, NULL, (void **) &epoch, NULL)) {
|
||||
sprintf(p, "%d:", *epoch);
|
||||
while (*p++)
|
||||
;
|
||||
}
|
||||
(void) stpcpy( stpcpy( stpcpy(p, version) , "-") , release);
|
||||
|
||||
return rangesOverlap(name, pkgEVR, pkgFlags, reqName, reqEVR, reqFlags);
|
||||
|
||||
}
|
||||
|
||||
#ifdef DYING
|
||||
static inline int dbrecMatchesDepFlags(rpmTransactionSet rpmdep, int recOffset,
|
||||
const char * reqName, const char * reqEVR,
|
||||
int reqFlags, dbrecMatch_t matchDepFlags)
|
||||
{
|
||||
Header h;
|
||||
int rc;
|
||||
|
||||
h = rpmdbGetRecord(rpmdep->db, recOffset);
|
||||
if (h == NULL) {
|
||||
rpmMessage(RPMMESS_DEBUG, _("dbrecMatchesDepFlags() failed to read header"));
|
||||
return 0;
|
||||
}
|
||||
|
||||
rc = matchDepFlags(h, reqName, reqEVR, reqFlags);
|
||||
|
||||
headerFree(h);
|
||||
|
||||
return rc;
|
||||
}
|
||||
#endif
|
||||
|
||||
rpmTransactionSet rpmtransCreateSet(rpmdb db, const char * root)
|
||||
{
|
||||
rpmTransactionSet rpmdep;
|
||||
int rootLength;
|
||||
int rootLen;
|
||||
|
||||
if (!root) root = "";
|
||||
|
||||
|
@ -564,14 +556,13 @@ rpmTransactionSet rpmtransCreateSet(rpmdb db, const char * root)
|
|||
sizeof(*rpmdep->removedPackages));
|
||||
|
||||
/* This canonicalizes the root */
|
||||
rootLength = strlen(root);
|
||||
if (root && root[rootLength] == '/') {
|
||||
rootLen = strlen(root);
|
||||
if (!(rootLen && root[rootLen - 1] == '/')) {
|
||||
char * newRootdir;
|
||||
|
||||
newRootdir = alloca(rootLength + 2);
|
||||
strcpy(newRootdir, root);
|
||||
newRootdir[rootLength++] = '/';
|
||||
newRootdir[rootLength] = '\0';
|
||||
newRootdir = alloca(rootLen + 2);
|
||||
*newRootdir = '\0';
|
||||
(void) stpcpy( stpcpy(newRootdir, root), "/");
|
||||
root = newRootdir;
|
||||
}
|
||||
|
||||
|
@ -818,6 +809,7 @@ alFileSatisfiesDepend(struct availableList * al,
|
|||
if (!al->index.size) return NULL;
|
||||
|
||||
needle.entry = keyName;
|
||||
needle.entryLen = strlen(keyName);
|
||||
match = bsearch(&needle, al->index.index, al->index.size,
|
||||
sizeof(*al->index.index), indexcmp);
|
||||
|
||||
|
@ -827,11 +819,19 @@ alFileSatisfiesDepend(struct availableList * al,
|
|||
rc = 0;
|
||||
switch (match->type) {
|
||||
case IET_NAME:
|
||||
{ char *pEVR;
|
||||
{ const char *pEVR;
|
||||
char *t;
|
||||
int pFlags = RPMSENSE_EQUAL;
|
||||
pEVR = buildEVR(p->epoch, p->version, p->release);
|
||||
|
||||
pEVR = t = alloca(21 + strlen(p->version) + 1 + strlen(p->release) + 1);
|
||||
*t = '\0';
|
||||
if (p->epoch) {
|
||||
sprintf(t, "%d:", *p->epoch);
|
||||
while (*t++)
|
||||
;
|
||||
}
|
||||
(void) stpcpy( stpcpy( stpcpy(t, p->version) , "-") , p->release);
|
||||
rc = rangesOverlap(p->name, pEVR, pFlags, keyName, keyEVR, keyFlags);
|
||||
free(pEVR);
|
||||
if (keyType && keyDepend && rc)
|
||||
rpmMessage(RPMMESS_DEBUG, _("%s: %s satisfied by added package.\n"), keyType, keyDepend);
|
||||
} break;
|
||||
|
@ -868,9 +868,8 @@ static int unsatisfiedDepend(rpmTransactionSet rpmdep,
|
|||
const char * keyName, const char * keyEVR, int keyFlags,
|
||||
/*@out@*/ struct availablePackage ** suggestion)
|
||||
{
|
||||
#ifdef DYING
|
||||
dbiIndexSet matches = NULL;
|
||||
#endif
|
||||
rpmdbMatchIterator mi;
|
||||
Header h;
|
||||
int rc = 0; /* assume dependency is satisfied */
|
||||
int i;
|
||||
|
||||
|
@ -878,6 +877,7 @@ static int unsatisfiedDepend(rpmTransactionSet rpmdep,
|
|||
|
||||
{ const char * rcProvidesString;
|
||||
const char * start;
|
||||
|
||||
if (!(keyFlags & RPMSENSE_SENSEMASK) &&
|
||||
(rcProvidesString = rpmGetVar(RPMVAR_PROVIDES))) {
|
||||
i = strlen(keyName);
|
||||
|
@ -898,92 +898,56 @@ static int unsatisfiedDepend(rpmTransactionSet rpmdep,
|
|||
if (rpmdep->db != NULL) {
|
||||
if (*keyName == '/') {
|
||||
/* keyFlags better be 0! */
|
||||
#ifdef DYING
|
||||
if (!rpmdbFindByFile(rpmdep->db, keyName, &matches)) {
|
||||
for (i = 0; i < dbiIndexSetCount(matches); i++) {
|
||||
unsigned int recOffset = dbiIndexRecordOffset(matches, i);
|
||||
if (bsearch(&recOffset,
|
||||
rpmdep->removedPackages,
|
||||
rpmdep->numRemovedPackages,
|
||||
sizeof(int), intcmp))
|
||||
continue;
|
||||
break;
|
||||
}
|
||||
|
||||
if (i < dbiIndexSetCount(matches)) {
|
||||
rpmMessage(RPMMESS_DEBUG, _("%s: %s satisfied by db file lists.\n"), keyType, keyDepend);
|
||||
goto exit;
|
||||
}
|
||||
}
|
||||
#else
|
||||
{ rpmdbMatchIterator mi;
|
||||
Header h2;
|
||||
|
||||
mi = rpmdbInitIterator(rpmdep->db, RPMDBI_FILE, keyName, 0);
|
||||
while ((h2 = rpmdbNextIterator(mi)) != NULL) {
|
||||
unsigned int recOffset = rpmdbGetIteratorOffset(mi);
|
||||
if (bsearch(&recOffset,
|
||||
rpmdep->removedPackages,
|
||||
rpmdep->numRemovedPackages,
|
||||
sizeof(int), intcmp))
|
||||
continue;
|
||||
break;
|
||||
}
|
||||
rpmdbFreeIterator(mi);
|
||||
if (h2) {
|
||||
rpmMessage(RPMMESS_DEBUG, _("%s: %s satisfied by db file lists.\n"), keyType, keyDepend);
|
||||
goto exit;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
#ifdef DYING
|
||||
if (matches) {
|
||||
dbiFreeIndexSet(matches);
|
||||
matches = NULL;
|
||||
}
|
||||
#endif
|
||||
|
||||
{ rpmdbMatchIterator mi;
|
||||
Header h2;
|
||||
|
||||
mi = rpmdbInitIterator(rpmdep->db, RPMDBI_PROVIDES, keyName, 0);
|
||||
while ((h2 = rpmdbNextIterator(mi)) != NULL) {
|
||||
mi = rpmdbInitIterator(rpmdep->db, RPMDBI_FILE, keyName, 0);
|
||||
while ((h = rpmdbNextIterator(mi)) != NULL) {
|
||||
unsigned int recOffset = rpmdbGetIteratorOffset(mi);
|
||||
if (bsearch(&recOffset,
|
||||
rpmdep->removedPackages,
|
||||
rpmdep->numRemovedPackages,
|
||||
sizeof(int), intcmp))
|
||||
continue;
|
||||
if (rangeMatchesDepFlags(h2, keyName, keyEVR, keyFlags))
|
||||
break;
|
||||
break;
|
||||
}
|
||||
rpmdbFreeIterator(mi);
|
||||
if (h2) {
|
||||
rpmMessage(RPMMESS_DEBUG, _("%s: %s satisfied by db provides.\n"), keyType, keyDepend);
|
||||
if (h) {
|
||||
rpmMessage(RPMMESS_DEBUG, _("%s: %s satisfied by db file lists.\n"), keyType, keyDepend);
|
||||
goto exit;
|
||||
}
|
||||
}
|
||||
|
||||
{ rpmdbMatchIterator mi;
|
||||
Header h2;
|
||||
mi = rpmdbInitIterator(rpmdep->db, RPMDBI_PROVIDES, keyName, 0);
|
||||
while ((h = rpmdbNextIterator(mi)) != NULL) {
|
||||
unsigned int recOffset = rpmdbGetIteratorOffset(mi);
|
||||
if (bsearch(&recOffset,
|
||||
rpmdep->removedPackages,
|
||||
rpmdep->numRemovedPackages,
|
||||
sizeof(int), intcmp))
|
||||
continue;
|
||||
if (rangeMatchesDepFlags(h, keyName, keyEVR, keyFlags))
|
||||
break;
|
||||
}
|
||||
rpmdbFreeIterator(mi);
|
||||
if (h) {
|
||||
rpmMessage(RPMMESS_DEBUG, _("%s: %s satisfied by db provides.\n"), keyType, keyDepend);
|
||||
goto exit;
|
||||
}
|
||||
|
||||
mi = rpmdbInitIterator(rpmdep->db, RPMDBI_NAME, keyName, 0);
|
||||
while ((h2 = rpmdbNextIterator(mi)) != NULL) {
|
||||
unsigned int recOffset = rpmdbGetIteratorOffset(mi);
|
||||
if (bsearch(&recOffset,
|
||||
rpmdep->removedPackages,
|
||||
rpmdep->numRemovedPackages,
|
||||
sizeof(int), intcmp))
|
||||
continue;
|
||||
if (headerMatchesDepFlags(h2, keyName, keyEVR, keyFlags))
|
||||
break;
|
||||
}
|
||||
rpmdbFreeIterator(mi);
|
||||
if (h2) {
|
||||
rpmMessage(RPMMESS_DEBUG, _("%s: %s satisfied by db packages.\n"), keyType, keyDepend);
|
||||
goto exit;
|
||||
}
|
||||
mi = rpmdbInitIterator(rpmdep->db, RPMDBI_NAME, keyName, 0);
|
||||
while ((h = rpmdbNextIterator(mi)) != NULL) {
|
||||
unsigned int recOffset = rpmdbGetIteratorOffset(mi);
|
||||
if (bsearch(&recOffset,
|
||||
rpmdep->removedPackages,
|
||||
rpmdep->numRemovedPackages,
|
||||
sizeof(int), intcmp))
|
||||
continue;
|
||||
if (headerMatchesDepFlags(h, keyName, keyEVR, keyFlags))
|
||||
break;
|
||||
}
|
||||
rpmdbFreeIterator(mi);
|
||||
if (h) {
|
||||
rpmMessage(RPMMESS_DEBUG, _("%s: %s satisfied by db packages.\n"), keyType, keyDepend);
|
||||
goto exit;
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -1008,12 +972,6 @@ static int unsatisfiedDepend(rpmTransactionSet rpmdep,
|
|||
rc = 1; /* dependency is unsatisfied */
|
||||
|
||||
exit:
|
||||
#ifdef DYING
|
||||
if (matches) {
|
||||
dbiFreeIndexSet(matches);
|
||||
matches = NULL;
|
||||
}
|
||||
#endif
|
||||
return rc;
|
||||
}
|
||||
|
||||
|
@ -1507,8 +1465,8 @@ int rpmdepCheck(rpmTransactionSet rpmdep,
|
|||
fileAlloced = len * 2;
|
||||
fileName = xrealloc(fileName, fileAlloced);
|
||||
}
|
||||
strcpy(fileName, dirNames[dirIndexes[j]]);
|
||||
strcat(fileName, baseNames[j]);
|
||||
*fileName = '\0';
|
||||
stpcpy( stpcpy(fileName, dirNames[dirIndexes[j]]) , baseNames[j]);
|
||||
/* Erasing: check filename against requiredby matches. */
|
||||
if (checkDependentPackages(rpmdep, &ps, fileName)) {
|
||||
rc = 1;
|
||||
|
|
|
@ -24,6 +24,7 @@ enum indexEntryType { IET_NAME, IET_PROVIDES };
|
|||
struct availableIndexEntry {
|
||||
/*@dependent@*/ struct availablePackage * package;
|
||||
/*@dependent@*/ const char * entry;
|
||||
size_t entryLen;
|
||||
enum indexEntryType type;
|
||||
} ;
|
||||
|
||||
|
|
|
@ -271,7 +271,8 @@ Header rpmdbGetRecord(rpmdb db, unsigned int offset)
|
|||
return headerLoad(uh);
|
||||
}
|
||||
|
||||
static int rpmdbFindByFile(rpmdb db, const char * filespec, dbiIndexSet * matches)
|
||||
static int rpmdbFindByFile(rpmdb db, const char * filespec,
|
||||
/*@out@*/ dbiIndexSet * matches)
|
||||
{
|
||||
const char * dirName;
|
||||
const char * baseName;
|
||||
|
|
|
@ -383,13 +383,6 @@ int rpmdbOpenForTraversal(const char * prefix, /*@out@*/ rpmdb * dbp);
|
|||
*/
|
||||
Header rpmdbGetRecord(rpmdb db, unsigned int offset);
|
||||
|
||||
#ifdef DYING
|
||||
/**
|
||||
* @param db rpm database
|
||||
*/
|
||||
int rpmdbFindByFile(rpmdb db, const char * filespec,
|
||||
/*@out@*/ dbiIndexSet * matches);
|
||||
#endif
|
||||
/**
|
||||
* @param db rpm database
|
||||
*/
|
||||
|
|
|
@ -413,8 +413,7 @@ static Header relocateFileList(struct availablePackage * alp,
|
|||
fileAlloced = len * 2;
|
||||
filespec = xrealloc(filespec, fileAlloced);
|
||||
}
|
||||
strcpy(filespec, dirNames[dirIndexes[i]]);
|
||||
strcat(filespec, baseNames[i]);
|
||||
stpcpy( stpcpy(filespec, dirNames[dirIndexes[i]]) , baseNames[i]);
|
||||
|
||||
for (j = numRelocations - 1; j >= 0; j--)
|
||||
if (!strcmp(relocations[j].oldPath, filespec)) break;
|
||||
|
@ -499,8 +498,7 @@ static Header relocateFileList(struct availablePackage * alp,
|
|||
const char *s = relocations[j].newPath;
|
||||
char *t = alloca(strlen(s) + strlen(dirNames[i]) - oplen + 1);
|
||||
|
||||
strcpy(t, s);
|
||||
strcat(t, dirNames[i] + oplen);
|
||||
stpcpy( stpcpy(t, s) , dirNames[i] + oplen);
|
||||
rpmMessage(RPMMESS_DEBUG, _("relocating directory %s to %s\n"),
|
||||
dirNames[i], t);
|
||||
dirNames[i] = t;
|
||||
|
|
193
po/cs.po
193
po/cs.po
|
@ -6,7 +6,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2000-04-12 09:57-0400\n"
|
||||
"POT-Creation-Date: 2000-04-13 12:17-0400\n"
|
||||
"PO-Revision-Date: 1998-10-10 10:10+0200\n"
|
||||
"Last-Translator: Pavel Makovec <pavelm@terminal.cz>\n"
|
||||
"Language-Team: Czech <pavelm@terminal.cz>\n"
|
||||
|
@ -1694,12 +1694,12 @@ msgstr "Nelze zapsat %s"
|
|||
msgid "Wrote: %s\n"
|
||||
msgstr "rpm: %s\n"
|
||||
|
||||
#: build/pack.c:519
|
||||
#: build/pack.c:518
|
||||
#, c-format
|
||||
msgid "Could not generate output filename for package %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/pack.c:536
|
||||
#: build/pack.c:535
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot create %s: %s\n"
|
||||
msgstr "nelze otevøít soubor %s: "
|
||||
|
@ -1826,7 +1826,7 @@ msgstr ""
|
|||
msgid "line %d: Illegal char '-' in %s: %s"
|
||||
msgstr "nelze otevøít %s: %s"
|
||||
|
||||
#: build/parsePreamble.c:445 build/parseSpec.c:375
|
||||
#: build/parsePreamble.c:445 build/parseSpec.c:374
|
||||
#, c-format
|
||||
msgid "BuildRoot can not be \"/\": %s"
|
||||
msgstr ""
|
||||
|
@ -2015,7 +2015,7 @@ msgstr ""
|
|||
msgid "malformed %%include statement"
|
||||
msgstr ""
|
||||
|
||||
#: build/parseSpec.c:470
|
||||
#: build/parseSpec.c:469
|
||||
#, fuzzy
|
||||
msgid "No buildable architectures"
|
||||
msgstr "neovìøovat architekturu balíèku"
|
||||
|
@ -2030,17 +2030,17 @@ msgstr "bal
|
|||
msgid "archive = %s, fs = %s\n"
|
||||
msgstr "offset archivu je %d\n"
|
||||
|
||||
#: build/spec.c:245
|
||||
#: build/spec.c:244
|
||||
#, fuzzy, c-format
|
||||
msgid "line %d: Bad number: %s"
|
||||
msgstr "neplatné èíslo balíèku: %s\n"
|
||||
|
||||
#: build/spec.c:251
|
||||
#: build/spec.c:250
|
||||
#, c-format
|
||||
msgid "line %d: Bad no%s number: %d"
|
||||
msgstr ""
|
||||
|
||||
#: build/spec.c:310
|
||||
#: build/spec.c:309
|
||||
#, fuzzy, c-format
|
||||
msgid "line %d: Bad %s number: %s\n"
|
||||
msgstr "neplatné èíslo balíèku: %s\n"
|
||||
|
@ -2130,89 +2130,85 @@ msgid "error removing record %s into %s"
|
|||
msgstr "chyba pøi odstraòování záznamu %s do %s"
|
||||
|
||||
#. XXX legacy epoch-less requires/conflicts compatibility
|
||||
#: lib/depends.c:417
|
||||
#: lib/depends.c:430
|
||||
#, c-format
|
||||
msgid ""
|
||||
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
|
||||
"\tA %s\tB %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:446
|
||||
#: lib/depends.c:459
|
||||
#, c-format
|
||||
msgid " %s A %s\tB %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:538
|
||||
msgid "dbrecMatchesDepFlags() failed to read header"
|
||||
msgstr "dbrecMatchesDepFlags() nemù¾e pøeèíst hlavièku"
|
||||
|
||||
#: lib/depends.c:795
|
||||
#: lib/depends.c:788
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by added file list.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:834
|
||||
#: lib/depends.c:836
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s satisfied by added package.\n"
|
||||
msgstr "¾ádný balíèek nevlastní soubor %s\n"
|
||||
|
||||
#: lib/depends.c:851
|
||||
#: lib/depends.c:853
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by added provide.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:882
|
||||
#: lib/depends.c:886
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by rpmrc provides.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:909
|
||||
#: lib/depends.c:914
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by db file lists.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:934
|
||||
#: lib/depends.c:932
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by db provides.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:959
|
||||
#: lib/depends.c:949
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s satisfied by db packages.\n"
|
||||
msgstr "¾ádný balíèek nevlastní soubor %s\n"
|
||||
|
||||
#: lib/depends.c:976
|
||||
#: lib/depends.c:961
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by rpmlib version.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:986
|
||||
#: lib/depends.c:971
|
||||
#, c-format
|
||||
msgid "%s: %s unsatisfied.\n"
|
||||
msgstr ""
|
||||
|
||||
#. requirements are not satisfied.
|
||||
#: lib/depends.c:1038
|
||||
#: lib/depends.c:1019
|
||||
#, c-format
|
||||
msgid "package %s require not satisfied: %s\n"
|
||||
msgstr "polo¾ka 'vy¾aduje' balíèku %s není splnìna: %s\n"
|
||||
|
||||
#. conflicts exist.
|
||||
#: lib/depends.c:1100
|
||||
#: lib/depends.c:1081
|
||||
#, c-format
|
||||
msgid "package %s conflicts: %s\n"
|
||||
msgstr "balíèek %s koliduje: %s\n"
|
||||
|
||||
#: lib/depends.c:1155 lib/depends.c:1450
|
||||
#, c-format
|
||||
msgid "cannot read header at %d for dependency check"
|
||||
msgstr "nelze èíst hlavièku u %d pro kontrolu závislostí"
|
||||
|
||||
#: lib/depends.c:1246
|
||||
#: lib/depends.c:1211
|
||||
#, c-format
|
||||
msgid "loop in prerequisite chain: %s"
|
||||
msgstr "smyèka v øetìzu podmínek: %s"
|
||||
|
||||
#: lib/depends.c:1415
|
||||
#, c-format
|
||||
msgid "cannot read header at %d for dependency check"
|
||||
msgstr "nelze èíst hlavièku u %d pro kontrolu závislostí"
|
||||
|
||||
#: lib/falloc.c:135
|
||||
#, c-format
|
||||
msgid ""
|
||||
|
@ -2398,7 +2394,7 @@ msgstr "bal
|
|||
msgid "renaming %s to %s\n"
|
||||
msgstr "Probíhá získávání %s jako %s\n"
|
||||
|
||||
#: lib/install.c:562 lib/install.c:834 lib/uninstall.c:29
|
||||
#: lib/install.c:562 lib/install.c:838 lib/uninstall.c:29
|
||||
#, c-format
|
||||
msgid "rename of %s to %s failed: %s"
|
||||
msgstr "%s nelze pøejmenovat na %s: %s"
|
||||
|
@ -2412,27 +2408,27 @@ msgstr ""
|
|||
msgid "package: %s-%s-%s files test = %d\n"
|
||||
msgstr "balíèek %s-%s-%s obsahuje sdílení soubory\n"
|
||||
|
||||
#: lib/install.c:764
|
||||
#: lib/install.c:768
|
||||
#, fuzzy
|
||||
msgid "stopping install as we're running --test\n"
|
||||
msgstr "probíhá zastavení zdrojové instalace, nebo» jde jen o testování\n"
|
||||
|
||||
#: lib/install.c:769
|
||||
#: lib/install.c:773
|
||||
#, fuzzy
|
||||
msgid "running preinstall script (if any)\n"
|
||||
msgstr "spou¹tí se pøípadný poinstalaèní skript\n"
|
||||
|
||||
#: lib/install.c:794
|
||||
#: lib/install.c:798
|
||||
#, c-format
|
||||
msgid "warning: %s created as %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/install.c:830
|
||||
#: lib/install.c:834
|
||||
#, c-format
|
||||
msgid "warning: %s saved as %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/install.c:904
|
||||
#: lib/install.c:908
|
||||
#, fuzzy
|
||||
msgid "running postinstall scripts (if any)\n"
|
||||
msgstr "spou¹tí se pøípadný poinstalaèní skript\n"
|
||||
|
@ -2707,144 +2703,140 @@ msgstr "dotaz na %s se nezda
|
|||
msgid "query of specfile %s failed, can't parse\n"
|
||||
msgstr "dotaz na %s se nezdaøil\n"
|
||||
|
||||
#: lib/query.c:586
|
||||
msgid "could not read database record!\n"
|
||||
msgstr "nelze naèíst databázový záznam!\n"
|
||||
|
||||
#: lib/query.c:597
|
||||
#: lib/query.c:581
|
||||
#, fuzzy
|
||||
msgid "no packages\n"
|
||||
msgstr "nalezeno %d balíèkù\n"
|
||||
|
||||
#: lib/query.c:608 lib/query.c:616
|
||||
#: lib/query.c:591
|
||||
#, c-format
|
||||
msgid "group %s does not contain any packages\n"
|
||||
msgstr "skupina %s neobsahuje ¾ádné balíèky\n"
|
||||
|
||||
#: lib/query.c:627 lib/query.c:635
|
||||
#: lib/query.c:601
|
||||
#, c-format
|
||||
msgid "no package triggers %s\n"
|
||||
msgstr "¾ádný balíèek neaktivuje %s\n"
|
||||
|
||||
#: lib/query.c:646 lib/query.c:654
|
||||
#: lib/query.c:611
|
||||
#, c-format
|
||||
msgid "no package requires %s\n"
|
||||
msgstr "¾ádný balíèek nevy¾aduje %s\n"
|
||||
|
||||
#: lib/query.c:666 lib/query.c:674
|
||||
#: lib/query.c:622
|
||||
#, c-format
|
||||
msgid "no package provides %s\n"
|
||||
msgstr "¾ádný balíèek neposkytuje %s\n"
|
||||
|
||||
#: lib/query.c:691 lib/query.c:709
|
||||
#: lib/query.c:638
|
||||
#, c-format
|
||||
msgid "file %s: %s\n"
|
||||
msgstr "soubor %s: %s\n"
|
||||
|
||||
#: lib/query.c:694 lib/query.c:712
|
||||
#: lib/query.c:641
|
||||
#, c-format
|
||||
msgid "file %s is not owned by any package\n"
|
||||
msgstr "¾ádný balíèek nevlastní soubor %s\n"
|
||||
|
||||
#: lib/query.c:735
|
||||
#: lib/query.c:663
|
||||
#, c-format
|
||||
msgid "invalid package number: %s\n"
|
||||
msgstr "neplatné èíslo balíèku: %s\n"
|
||||
|
||||
#: lib/query.c:738
|
||||
#: lib/query.c:666
|
||||
#, fuzzy, c-format
|
||||
msgid "package record number: %d\n"
|
||||
msgstr "probíhá dotaz na záznam èíslo %d\n"
|
||||
|
||||
#: lib/query.c:742 lib/query.c:751
|
||||
#: lib/query.c:669
|
||||
#, c-format
|
||||
msgid "record %d could not be read\n"
|
||||
msgstr "záznam %d nelze naèíst\n"
|
||||
|
||||
#: lib/query.c:763 lib/rpminstall.c:436
|
||||
#: lib/query.c:680 lib/rpminstall.c:436
|
||||
#, c-format
|
||||
msgid "package %s is not installed\n"
|
||||
msgstr "balíèek %s není nainstalován\n"
|
||||
|
||||
#: lib/query.c:766
|
||||
#: lib/query.c:683
|
||||
#, c-format
|
||||
msgid "error looking for package %s\n"
|
||||
msgstr "chyba pøi hledání balíèku %s\n"
|
||||
|
||||
#: lib/query.c:791
|
||||
#: lib/query.c:708
|
||||
#, fuzzy
|
||||
msgid "rpmQuery: rpmdbOpen() failed\n"
|
||||
msgstr "%s: Chybné otevøení\n"
|
||||
|
||||
#: lib/query.c:850
|
||||
#: lib/query.c:767
|
||||
#, fuzzy
|
||||
msgid "query package owning file"
|
||||
msgstr "dotazy na balíèek vlastnící <soubor>"
|
||||
|
||||
#: lib/query.c:852
|
||||
#: lib/query.c:769
|
||||
#, fuzzy
|
||||
msgid "query packages in group"
|
||||
msgstr "balíèek nemá skupinu\n"
|
||||
|
||||
#: lib/query.c:854
|
||||
#: lib/query.c:771
|
||||
#, fuzzy
|
||||
msgid "query a package file"
|
||||
msgstr "dotazovat v¹echny balíèky"
|
||||
|
||||
#: lib/query.c:858
|
||||
#: lib/query.c:775
|
||||
#, fuzzy
|
||||
msgid "query a spec file"
|
||||
msgstr "dotaz na %s se nezdaøil\n"
|
||||
|
||||
#: lib/query.c:860
|
||||
#: lib/query.c:777
|
||||
#, fuzzy
|
||||
msgid "query the pacakges triggered by the package"
|
||||
msgstr "dotazy na balíèky aktivované <balíkem>"
|
||||
|
||||
#: lib/query.c:862
|
||||
#: lib/query.c:779
|
||||
#, fuzzy
|
||||
msgid "query the packages which require a capability"
|
||||
msgstr "dotazovat balíèky vy¾adující schopnost <sch>"
|
||||
|
||||
#: lib/query.c:864
|
||||
#: lib/query.c:781
|
||||
#, fuzzy
|
||||
msgid "query the packages which provide a capability"
|
||||
msgstr "dotazovat balíèky poskytující schopnost <sch>"
|
||||
|
||||
#: lib/query.c:903
|
||||
#: lib/query.c:820
|
||||
#, fuzzy
|
||||
msgid "list all configuration files"
|
||||
msgstr "uvést pouze konfiguraèní soubory (implikuje -l)"
|
||||
|
||||
#: lib/query.c:905
|
||||
#: lib/query.c:822
|
||||
#, fuzzy
|
||||
msgid "list all documentation files"
|
||||
msgstr "nainstalovat dokumentaci"
|
||||
|
||||
#: lib/query.c:907
|
||||
#: lib/query.c:824
|
||||
#, fuzzy
|
||||
msgid "dump basic file information"
|
||||
msgstr "zobrazit informace o balíèku"
|
||||
|
||||
#: lib/query.c:909
|
||||
#: lib/query.c:826
|
||||
#, fuzzy
|
||||
msgid "list files in package"
|
||||
msgstr "binární balíèek starého typu\n"
|
||||
|
||||
#: lib/query.c:913
|
||||
#: lib/query.c:830
|
||||
msgid "use the following query format"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:915
|
||||
#: lib/query.c:832
|
||||
#, fuzzy
|
||||
msgid "substitute i18n sections into spec file"
|
||||
msgstr "balíèek %s neobsahuje soubory"
|
||||
|
||||
#: lib/query.c:917
|
||||
#: lib/query.c:834
|
||||
msgid "display the states of the listed files"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:919
|
||||
#: lib/query.c:836
|
||||
#, fuzzy
|
||||
msgid "display a verbose file listing"
|
||||
msgstr "zobrazit seznam souborù balíèkù"
|
||||
|
@ -2883,40 +2875,30 @@ msgstr "otev
|
|||
msgid "opening new database with dbi_major %d\n"
|
||||
msgstr "otevírá se nová databáze\n"
|
||||
|
||||
#: lib/rebuilddb.c:112
|
||||
#, c-format
|
||||
msgid "record number %d in database is bad -- skipping it"
|
||||
msgstr "záznam èíslo %d v databázi je chybný -- vynechává se"
|
||||
|
||||
#: lib/rebuilddb.c:131
|
||||
#: lib/rebuilddb.c:111
|
||||
#, fuzzy, c-format
|
||||
msgid "record number %d in database is bad -- skipping."
|
||||
msgstr "záznam èíslo %d v databázi je chybný -- vynechává se"
|
||||
|
||||
#: lib/rebuilddb.c:146
|
||||
#, c-format
|
||||
msgid "duplicated database entry: %s-%s-%s -- skipping."
|
||||
msgstr ""
|
||||
|
||||
#: lib/rebuilddb.c:162
|
||||
#: lib/rebuilddb.c:140
|
||||
#, c-format
|
||||
msgid "cannot add record originally at %d"
|
||||
msgstr "nelze pøidat záznam - pùvodnì u %d"
|
||||
|
||||
#: lib/rebuilddb.c:186
|
||||
#: lib/rebuilddb.c:156
|
||||
msgid "failed to rebuild database; original database remains in place\n"
|
||||
msgstr "databázi nelze pøestavit; pùvodní databáze zùstává na svém místì\n"
|
||||
|
||||
#: lib/rebuilddb.c:194
|
||||
#: lib/rebuilddb.c:164
|
||||
msgid "failed to replace old database with new database!\n"
|
||||
msgstr "starou databázi nelze nahradit novou databází!\n"
|
||||
|
||||
#: lib/rebuilddb.c:196
|
||||
#: lib/rebuilddb.c:166
|
||||
#, fuzzy, c-format
|
||||
msgid "replace files in %s with files from %s to recover"
|
||||
msgstr "aby se obnovily, nahrazuje soubory v %s soubory z %s"
|
||||
|
||||
#: lib/rebuilddb.c:202
|
||||
#: lib/rebuilddb.c:172
|
||||
#, fuzzy, c-format
|
||||
msgid "failed to remove directory %s: %s\n"
|
||||
msgstr "nelze odstranit %s: %s\n"
|
||||
|
@ -3013,62 +2995,62 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. error
|
||||
#: lib/rpmdb.c:442
|
||||
#: lib/rpmdb.c:390
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot retrieve package \"%s\" from db"
|
||||
msgstr "chyba: nelze otevøít %s%s/packages.rpm\n"
|
||||
|
||||
#: lib/rpmdb.c:598
|
||||
#: lib/rpmdb.c:613
|
||||
#, fuzzy, c-format
|
||||
msgid "package not found with key \"%s\" in %s"
|
||||
msgstr "balíèek %s nenalezen v %s"
|
||||
|
||||
#: lib/rpmdb.c:607
|
||||
#: lib/rpmdb.c:622
|
||||
#, fuzzy, c-format
|
||||
msgid "key \"%s\" not found in %s"
|
||||
msgstr "balíèek %s nenalezen v %s"
|
||||
|
||||
#: lib/rpmdb.c:625
|
||||
#: lib/rpmdb.c:640
|
||||
#, fuzzy, c-format
|
||||
msgid "rpmdbRemove: cannot read header at 0x%x"
|
||||
msgstr "nelze èíst hlavièku u %d pro vyhledání"
|
||||
|
||||
#: lib/rpmdb.c:650
|
||||
#: lib/rpmdb.c:665
|
||||
#, fuzzy, c-format
|
||||
msgid "removing 0 %s entries.\n"
|
||||
msgstr "odstraòuje se polo¾ka databáze\n"
|
||||
|
||||
#: lib/rpmdb.c:656
|
||||
#: lib/rpmdb.c:671
|
||||
#, fuzzy, c-format
|
||||
msgid "removing \"%s\" from %s index.\n"
|
||||
msgstr "odstraòuje se rejstøík skupin\n"
|
||||
|
||||
#: lib/rpmdb.c:664
|
||||
#: lib/rpmdb.c:679
|
||||
#, fuzzy, c-format
|
||||
msgid "removing %d entries in %s index:\n"
|
||||
msgstr "odstraòuje se rejstøík názvù\n"
|
||||
|
||||
#: lib/rpmdb.c:668 lib/rpmdb.c:865
|
||||
#: lib/rpmdb.c:683 lib/rpmdb.c:880
|
||||
#, c-format
|
||||
msgid "\t%6d %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:803
|
||||
#: lib/rpmdb.c:818
|
||||
#, fuzzy
|
||||
msgid "cannot allocate new instance in database"
|
||||
msgstr "nelze alokovat prostor pro databázi"
|
||||
|
||||
#: lib/rpmdb.c:842
|
||||
#: lib/rpmdb.c:857
|
||||
#, c-format
|
||||
msgid "adding 0 %s entries.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:854
|
||||
#: lib/rpmdb.c:869
|
||||
#, fuzzy, c-format
|
||||
msgid "adding \"%s\" to %s index.\n"
|
||||
msgstr "Probíhá získávání %s jako %s\n"
|
||||
|
||||
#: lib/rpmdb.c:861
|
||||
#: lib/rpmdb.c:876
|
||||
#, c-format
|
||||
msgid "adding %d entries to %s index:\n"
|
||||
msgstr ""
|
||||
|
@ -3485,22 +3467,22 @@ msgstr "V souboru rpmrc se mus
|
|||
msgid "excluding file %s%s\n"
|
||||
msgstr "Probíhá naèítání %s\n"
|
||||
|
||||
#: lib/transaction.c:427 lib/transaction.c:511
|
||||
#: lib/transaction.c:426 lib/transaction.c:509
|
||||
#, fuzzy, c-format
|
||||
msgid "excluding directory %s\n"
|
||||
msgstr "vytváøí se adresáø: %s\n"
|
||||
|
||||
#: lib/transaction.c:432
|
||||
#: lib/transaction.c:431
|
||||
#, fuzzy, c-format
|
||||
msgid "relocating %s to %s\n"
|
||||
msgstr "Probíhá získávání %s jako %s\n"
|
||||
|
||||
#: lib/transaction.c:504
|
||||
#: lib/transaction.c:502
|
||||
#, fuzzy, c-format
|
||||
msgid "relocating directory %s to %s\n"
|
||||
msgstr "Probíhá získávání %s jako %s\n"
|
||||
|
||||
#: lib/transaction.c:656
|
||||
#: lib/transaction.c:654
|
||||
#, c-format
|
||||
msgid "%s skipped due to missingok flag\n"
|
||||
msgstr ""
|
||||
|
@ -3611,6 +3593,15 @@ msgstr "Nevy
|
|||
msgid "rpmVerify: rpmdbOpen() failed\n"
|
||||
msgstr "%s: Chybné otevøení\n"
|
||||
|
||||
#~ msgid "dbrecMatchesDepFlags() failed to read header"
|
||||
#~ msgstr "dbrecMatchesDepFlags() nemù¾e pøeèíst hlavièku"
|
||||
|
||||
#~ msgid "could not read database record!\n"
|
||||
#~ msgstr "nelze naèíst databázový záznam!\n"
|
||||
|
||||
#~ msgid "record number %d in database is bad -- skipping it"
|
||||
#~ msgstr "záznam èíslo %d v databázi je chybný -- vynechává se"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "opening database mode 0x%x in %s\n"
|
||||
#~ msgstr "probíhá otevírání databázového re¾imu: 0%o\n"
|
||||
|
|
192
po/de.po
192
po/de.po
|
@ -37,7 +37,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 2.5.2\n"
|
||||
"POT-Creation-Date: 2000-04-12 09:57-0400\n"
|
||||
"POT-Creation-Date: 2000-04-13 12:17-0400\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"
|
||||
|
@ -1785,12 +1785,12 @@ msgstr "Nicht m
|
|||
msgid "Wrote: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/pack.c:519
|
||||
#: build/pack.c:518
|
||||
#, c-format
|
||||
msgid "Could not generate output filename for package %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/pack.c:536
|
||||
#: build/pack.c:535
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot create %s: %s\n"
|
||||
msgstr "kann Datei %s nicht öffnen: "
|
||||
|
@ -1921,7 +1921,7 @@ msgstr ""
|
|||
msgid "line %d: Illegal char '-' in %s: %s"
|
||||
msgstr "Öffnen von %s fehlgeschlagen: %s"
|
||||
|
||||
#: build/parsePreamble.c:445 build/parseSpec.c:375
|
||||
#: build/parsePreamble.c:445 build/parseSpec.c:374
|
||||
#, c-format
|
||||
msgid "BuildRoot can not be \"/\": %s"
|
||||
msgstr ""
|
||||
|
@ -2115,7 +2115,7 @@ msgstr ""
|
|||
msgid "malformed %%include statement"
|
||||
msgstr ""
|
||||
|
||||
#: build/parseSpec.c:470
|
||||
#: build/parseSpec.c:469
|
||||
#, fuzzy
|
||||
msgid "No buildable architectures"
|
||||
msgstr "Paket-Architektur nicht überprüfen"
|
||||
|
@ -2130,17 +2130,17 @@ msgstr "Paket %s wird nicht in %s aufgef
|
|||
msgid "archive = %s, fs = %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/spec.c:245
|
||||
#: build/spec.c:244
|
||||
#, fuzzy, c-format
|
||||
msgid "line %d: Bad number: %s"
|
||||
msgstr "ungültige Paket-Nummer: %s\n"
|
||||
|
||||
#: build/spec.c:251
|
||||
#: build/spec.c:250
|
||||
#, c-format
|
||||
msgid "line %d: Bad no%s number: %d"
|
||||
msgstr ""
|
||||
|
||||
#: build/spec.c:310
|
||||
#: build/spec.c:309
|
||||
#, fuzzy, c-format
|
||||
msgid "line %d: Bad %s number: %s\n"
|
||||
msgstr "ungültige Paket-Nummer: %s\n"
|
||||
|
@ -2233,89 +2233,85 @@ msgid "error removing record %s into %s"
|
|||
msgstr "Fehler beim Löschen des Eintrags %s nach %s"
|
||||
|
||||
#. XXX legacy epoch-less requires/conflicts compatibility
|
||||
#: lib/depends.c:417
|
||||
#: lib/depends.c:430
|
||||
#, c-format
|
||||
msgid ""
|
||||
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
|
||||
"\tA %s\tB %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:446
|
||||
#: lib/depends.c:459
|
||||
#, c-format
|
||||
msgid " %s A %s\tB %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:538
|
||||
msgid "dbrecMatchesDepFlags() failed to read header"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:795
|
||||
#: lib/depends.c:788
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by added file list.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:834
|
||||
#: lib/depends.c:836
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s satisfied by added package.\n"
|
||||
msgstr "die Datei »%s« gehört zu keinem Paket\n"
|
||||
|
||||
#: lib/depends.c:851
|
||||
#: lib/depends.c:853
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by added provide.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:882
|
||||
#: lib/depends.c:886
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by rpmrc provides.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:909
|
||||
#: lib/depends.c:914
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by db file lists.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:934
|
||||
#: lib/depends.c:932
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by db provides.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:959
|
||||
#: lib/depends.c:949
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s satisfied by db packages.\n"
|
||||
msgstr "die Datei »%s« gehört zu keinem Paket\n"
|
||||
|
||||
#: lib/depends.c:976
|
||||
#: lib/depends.c:961
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by rpmlib version.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:986
|
||||
#: lib/depends.c:971
|
||||
#, c-format
|
||||
msgid "%s: %s unsatisfied.\n"
|
||||
msgstr ""
|
||||
|
||||
#. requirements are not satisfied.
|
||||
#: lib/depends.c:1038
|
||||
#: lib/depends.c:1019
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s require not satisfied: %s\n"
|
||||
msgstr "Paket %s wird nicht in %s aufgeführt"
|
||||
|
||||
#. conflicts exist.
|
||||
#: lib/depends.c:1100
|
||||
#: lib/depends.c:1081
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s conflicts: %s\n"
|
||||
msgstr "Paket %s wird nicht in %s aufgeführt"
|
||||
|
||||
#: lib/depends.c:1155 lib/depends.c:1450
|
||||
#, c-format
|
||||
msgid "cannot read header at %d for dependency check"
|
||||
msgstr "kann Kopfzeilen bei %d nicht lesen, um Abhängigkeiten zu prüfen"
|
||||
|
||||
#: lib/depends.c:1246
|
||||
#: lib/depends.c:1211
|
||||
#, c-format
|
||||
msgid "loop in prerequisite chain: %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1415
|
||||
#, c-format
|
||||
msgid "cannot read header at %d for dependency check"
|
||||
msgstr "kann Kopfzeilen bei %d nicht lesen, um Abhängigkeiten zu prüfen"
|
||||
|
||||
#: lib/falloc.c:135
|
||||
#, c-format
|
||||
msgid ""
|
||||
|
@ -2508,7 +2504,7 @@ msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
|
|||
msgid "renaming %s to %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/install.c:562 lib/install.c:834 lib/uninstall.c:29
|
||||
#: lib/install.c:562 lib/install.c:838 lib/uninstall.c:29
|
||||
#, c-format
|
||||
msgid "rename of %s to %s failed: %s"
|
||||
msgstr "umbennen von %s nach %s fehlgeschlagen: %s"
|
||||
|
@ -2523,25 +2519,25 @@ msgstr ""
|
|||
msgid "package: %s-%s-%s files test = %d\n"
|
||||
msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
|
||||
|
||||
#: lib/install.c:764
|
||||
#: lib/install.c:768
|
||||
msgid "stopping install as we're running --test\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/install.c:769
|
||||
#: lib/install.c:773
|
||||
msgid "running preinstall script (if any)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/install.c:794
|
||||
#: lib/install.c:798
|
||||
#, c-format
|
||||
msgid "warning: %s created as %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/install.c:830
|
||||
#: lib/install.c:834
|
||||
#, c-format
|
||||
msgid "warning: %s saved as %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/install.c:904
|
||||
#: lib/install.c:908
|
||||
msgid "running postinstall scripts (if any)\n"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2821,146 +2817,142 @@ msgstr "Anfrage von %s fehlgeschlagen\n"
|
|||
msgid "query of specfile %s failed, can't parse\n"
|
||||
msgstr "Anfrage von %s fehlgeschlagen\n"
|
||||
|
||||
#: lib/query.c:586
|
||||
msgid "could not read database record!\n"
|
||||
msgstr "kann Datenbank-Eintrag nicht lesen!\n"
|
||||
|
||||
#: lib/query.c:597
|
||||
#: lib/query.c:581
|
||||
#, fuzzy
|
||||
msgid "no packages\n"
|
||||
msgstr "Anfrage an alle Pakete"
|
||||
|
||||
#: lib/query.c:608 lib/query.c:616
|
||||
#: lib/query.c:591
|
||||
#, c-format
|
||||
msgid "group %s does not contain any packages\n"
|
||||
msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
|
||||
|
||||
#: lib/query.c:627 lib/query.c:635
|
||||
#: lib/query.c:601
|
||||
#, c-format
|
||||
msgid "no package triggers %s\n"
|
||||
msgstr "kein Paket triggert %s\n"
|
||||
|
||||
#: lib/query.c:646 lib/query.c:654
|
||||
#: lib/query.c:611
|
||||
#, c-format
|
||||
msgid "no package requires %s\n"
|
||||
msgstr "kein Paket verlangt %s\n"
|
||||
|
||||
# oder besser: ... listet %s auf? -ke-
|
||||
#: lib/query.c:666 lib/query.c:674
|
||||
#: lib/query.c:622
|
||||
#, c-format
|
||||
msgid "no package provides %s\n"
|
||||
msgstr "kein Paket stellt %s bereit\n"
|
||||
|
||||
# , c-format
|
||||
#: lib/query.c:691 lib/query.c:709
|
||||
#: lib/query.c:638
|
||||
#, fuzzy, c-format
|
||||
msgid "file %s: %s\n"
|
||||
msgstr "Öffnen von %s fehlgeschlagen: %s"
|
||||
|
||||
#: lib/query.c:694 lib/query.c:712
|
||||
#: lib/query.c:641
|
||||
#, 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:735
|
||||
#: lib/query.c:663
|
||||
#, c-format
|
||||
msgid "invalid package number: %s\n"
|
||||
msgstr "ungültige Paket-Nummer: %s\n"
|
||||
|
||||
#: lib/query.c:738
|
||||
#: lib/query.c:666
|
||||
#, fuzzy, c-format
|
||||
msgid "package record number: %d\n"
|
||||
msgstr "ungültige Paket-Nummer: %s\n"
|
||||
|
||||
#: lib/query.c:742 lib/query.c:751
|
||||
#: lib/query.c:669
|
||||
#, c-format
|
||||
msgid "record %d could not be read\n"
|
||||
msgstr "Eintrag %d konnte nicht gelesen werden\n"
|
||||
|
||||
#: lib/query.c:763 lib/rpminstall.c:436
|
||||
#: lib/query.c:680 lib/rpminstall.c:436
|
||||
#, c-format
|
||||
msgid "package %s is not installed\n"
|
||||
msgstr "Paket %s ist nicht installiert\n"
|
||||
|
||||
#: lib/query.c:766
|
||||
#: lib/query.c:683
|
||||
#, c-format
|
||||
msgid "error looking for package %s\n"
|
||||
msgstr "Fehler beim Suchen nach Paket %s\n"
|
||||
|
||||
#: lib/query.c:791
|
||||
#: lib/query.c:708
|
||||
#, fuzzy
|
||||
msgid "rpmQuery: rpmdbOpen() failed\n"
|
||||
msgstr "%s: Öffnen fehlgeschlagen\n"
|
||||
|
||||
#: lib/query.c:850
|
||||
#: lib/query.c:767
|
||||
#, fuzzy
|
||||
msgid "query package owning file"
|
||||
msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
|
||||
|
||||
#: lib/query.c:852
|
||||
#: lib/query.c:769
|
||||
#, fuzzy
|
||||
msgid "query packages in group"
|
||||
msgstr "Paket hat keinen Namen"
|
||||
|
||||
#: lib/query.c:854
|
||||
#: lib/query.c:771
|
||||
#, fuzzy
|
||||
msgid "query a package file"
|
||||
msgstr "Anfrage an alle Pakete"
|
||||
|
||||
#: lib/query.c:858
|
||||
#: lib/query.c:775
|
||||
#, fuzzy
|
||||
msgid "query a spec file"
|
||||
msgstr "Anfrage von %s fehlgeschlagen\n"
|
||||
|
||||
#: lib/query.c:860
|
||||
#: lib/query.c:777
|
||||
#, fuzzy
|
||||
msgid "query the pacakges triggered by the package"
|
||||
msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
|
||||
|
||||
#: lib/query.c:862
|
||||
#: lib/query.c:779
|
||||
#, fuzzy
|
||||
msgid "query the packages which require a capability"
|
||||
msgstr "Anfrage nach Paketen, die die Fähigkeit <i> benötigen"
|
||||
|
||||
#: lib/query.c:864
|
||||
#: lib/query.c:781
|
||||
#, fuzzy
|
||||
msgid "query the packages which provide a capability"
|
||||
msgstr "Anfrage nach Paketen, die die Fähigkeit <i> bereitstellen"
|
||||
|
||||
#: lib/query.c:903
|
||||
#: lib/query.c:820
|
||||
#, fuzzy
|
||||
msgid "list all configuration files"
|
||||
msgstr "Nur Konfigurationsdateien auflisten (impliziert -l)"
|
||||
|
||||
#: lib/query.c:905
|
||||
#: lib/query.c:822
|
||||
#, fuzzy
|
||||
msgid "list all documentation files"
|
||||
msgstr "Dokumentation installieren"
|
||||
|
||||
#: lib/query.c:907
|
||||
#: lib/query.c:824
|
||||
#, fuzzy
|
||||
msgid "dump basic file information"
|
||||
msgstr "Paketinformationen anzeigen"
|
||||
|
||||
#: lib/query.c:909
|
||||
#: lib/query.c:826
|
||||
#, fuzzy
|
||||
msgid "list files in package"
|
||||
msgstr "Paket installieren"
|
||||
|
||||
#: lib/query.c:913
|
||||
#: lib/query.c:830
|
||||
msgid "use the following query format"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:915
|
||||
#: lib/query.c:832
|
||||
#, fuzzy
|
||||
msgid "substitute i18n sections into spec file"
|
||||
msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
|
||||
|
||||
#: lib/query.c:917
|
||||
#: lib/query.c:834
|
||||
msgid "display the states of the listed files"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:919
|
||||
#: lib/query.c:836
|
||||
#, fuzzy
|
||||
msgid "display a verbose file listing"
|
||||
msgstr "Dateiliste des Pakets anzeigen"
|
||||
|
@ -2999,43 +2991,32 @@ msgstr "Datenbank aus der vorhandenen neu erstellen"
|
|||
msgid "opening new database with dbi_major %d\n"
|
||||
msgstr "Datenbank aus der vorhandenen neu erstellen"
|
||||
|
||||
#: lib/rebuilddb.c:112
|
||||
#, c-format
|
||||
msgid "record number %d in database is bad -- skipping it"
|
||||
msgstr ""
|
||||
"Eintrag Nummer %d in der Datenback ist nicht in Ordnung -- wird übersprungen"
|
||||
|
||||
#: lib/rebuilddb.c:131
|
||||
#: lib/rebuilddb.c:111
|
||||
#, fuzzy, c-format
|
||||
msgid "record number %d in database is bad -- skipping."
|
||||
msgstr ""
|
||||
"Eintrag Nummer %d in der Datenback ist nicht in Ordnung -- wird übersprungen"
|
||||
|
||||
#: lib/rebuilddb.c:146
|
||||
#, c-format
|
||||
msgid "duplicated database entry: %s-%s-%s -- skipping."
|
||||
msgstr ""
|
||||
|
||||
#: lib/rebuilddb.c:162
|
||||
#: lib/rebuilddb.c:140
|
||||
#, c-format
|
||||
msgid "cannot add record originally at %d"
|
||||
msgstr "kann einen Eintrag hinzufügen, ursprünglich bei %d"
|
||||
|
||||
#: lib/rebuilddb.c:186
|
||||
#: lib/rebuilddb.c:156
|
||||
msgid "failed to rebuild database; original database remains in place\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rebuilddb.c:194
|
||||
#: lib/rebuilddb.c:164
|
||||
msgid "failed to replace old database with new database!\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rebuilddb.c:196
|
||||
#: lib/rebuilddb.c:166
|
||||
#, c-format
|
||||
msgid "replace files in %s with files from %s to recover"
|
||||
msgstr ""
|
||||
|
||||
# , c-format
|
||||
#: lib/rebuilddb.c:202
|
||||
#: lib/rebuilddb.c:172
|
||||
#, fuzzy, c-format
|
||||
msgid "failed to remove directory %s: %s\n"
|
||||
msgstr "Öffnen von %s fehlgeschlagen: %s"
|
||||
|
@ -3132,65 +3113,65 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. error
|
||||
#: lib/rpmdb.c:442
|
||||
#: lib/rpmdb.c:390
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot retrieve package \"%s\" from db"
|
||||
msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n"
|
||||
|
||||
#: lib/rpmdb.c:598
|
||||
#: lib/rpmdb.c:613
|
||||
#, fuzzy, c-format
|
||||
msgid "package not found with key \"%s\" in %s"
|
||||
msgstr "Paket %s in %s nicht gefunden"
|
||||
|
||||
#: lib/rpmdb.c:607
|
||||
#: lib/rpmdb.c:622
|
||||
#, fuzzy, c-format
|
||||
msgid "key \"%s\" not found in %s"
|
||||
msgstr "Paket %s in %s nicht gefunden"
|
||||
|
||||
#: lib/rpmdb.c:625
|
||||
#: lib/rpmdb.c:640
|
||||
#, fuzzy, c-format
|
||||
msgid "rpmdbRemove: cannot read header at 0x%x"
|
||||
msgstr "kann Kopfzeilen bei %d nicht lesen, um danach zu suchen"
|
||||
|
||||
#: lib/rpmdb.c:650
|
||||
#: lib/rpmdb.c:665
|
||||
#, c-format
|
||||
msgid "removing 0 %s entries.\n"
|
||||
msgstr ""
|
||||
|
||||
# FIXME
|
||||
#: lib/rpmdb.c:656
|
||||
#: lib/rpmdb.c:671
|
||||
#, fuzzy, c-format
|
||||
msgid "removing \"%s\" from %s index.\n"
|
||||
msgstr "Fehler beim Löschen des Eintrags %s nach %s"
|
||||
|
||||
# FIXME
|
||||
#: lib/rpmdb.c:664
|
||||
#: lib/rpmdb.c:679
|
||||
#, fuzzy, c-format
|
||||
msgid "removing %d entries in %s index:\n"
|
||||
msgstr "Fehler beim Löschen des Eintrags %s nach %s"
|
||||
|
||||
#: lib/rpmdb.c:668 lib/rpmdb.c:865
|
||||
#: lib/rpmdb.c:683 lib/rpmdb.c:880
|
||||
#, c-format
|
||||
msgid "\t%6d %s\n"
|
||||
msgstr ""
|
||||
|
||||
# reservieren???
|
||||
#: lib/rpmdb.c:803
|
||||
#: lib/rpmdb.c:818
|
||||
#, fuzzy
|
||||
msgid "cannot allocate new instance in database"
|
||||
msgstr "kann keinen Platz für die Datenbank bekommen"
|
||||
|
||||
#: lib/rpmdb.c:842
|
||||
#: lib/rpmdb.c:857
|
||||
#, c-format
|
||||
msgid "adding 0 %s entries.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:854
|
||||
#: lib/rpmdb.c:869
|
||||
#, c-format
|
||||
msgid "adding \"%s\" to %s index.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:861
|
||||
#: lib/rpmdb.c:876
|
||||
#, c-format
|
||||
msgid "adding %d entries to %s index:\n"
|
||||
msgstr ""
|
||||
|
@ -3620,22 +3601,22 @@ msgstr "\"pgp_name:\" muss in der rpmrc-Datei gesetzt sein"
|
|||
msgid "excluding file %s%s\n"
|
||||
msgstr "Hole %s heraus\n"
|
||||
|
||||
#: lib/transaction.c:427 lib/transaction.c:511
|
||||
#: lib/transaction.c:426 lib/transaction.c:509
|
||||
#, fuzzy, c-format
|
||||
msgid "excluding directory %s\n"
|
||||
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
|
||||
|
||||
#: lib/transaction.c:432
|
||||
#: lib/transaction.c:431
|
||||
#, c-format
|
||||
msgid "relocating %s to %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/transaction.c:504
|
||||
#: lib/transaction.c:502
|
||||
#, fuzzy, c-format
|
||||
msgid "relocating directory %s to %s\n"
|
||||
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
|
||||
|
||||
#: lib/transaction.c:656
|
||||
#: lib/transaction.c:654
|
||||
#, c-format
|
||||
msgid "%s skipped due to missingok flag\n"
|
||||
msgstr ""
|
||||
|
@ -3748,6 +3729,13 @@ msgstr "Nicht erf
|
|||
msgid "rpmVerify: rpmdbOpen() failed\n"
|
||||
msgstr "%s: Öffnen fehlgeschlagen\n"
|
||||
|
||||
#~ msgid "could not read database record!\n"
|
||||
#~ msgstr "kann Datenbank-Eintrag nicht lesen!\n"
|
||||
|
||||
#~ msgid "record number %d in database is bad -- skipping it"
|
||||
#~ msgstr ""
|
||||
#~ "Eintrag Nummer %d in der Datenback ist nicht in Ordnung -- wird übersprungen"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "opening database mode 0x%x in %s\n"
|
||||
#~ msgstr "Datenbank aus der vorhandenen neu erstellen"
|
||||
|
|
190
po/fi.po
190
po/fi.po
|
@ -1,6 +1,6 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2000-04-12 09:57-0400\n"
|
||||
"POT-Creation-Date: 2000-04-13 12:17-0400\n"
|
||||
"Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
|
||||
"Language-Team: Finnish <linux@sot.com>\n"
|
||||
"Content-Type: text/plain; charset=\n"
|
||||
|
@ -1732,12 +1732,12 @@ msgstr "%s:n kirjoitus ei onnistu"
|
|||
msgid "Wrote: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/pack.c:519
|
||||
#: build/pack.c:518
|
||||
#, c-format
|
||||
msgid "Could not generate output filename for package %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/pack.c:536
|
||||
#: build/pack.c:535
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot create %s: %s\n"
|
||||
msgstr "en voinut avata tiedostoa %s: "
|
||||
|
@ -1864,7 +1864,7 @@ msgstr ""
|
|||
msgid "line %d: Illegal char '-' in %s: %s"
|
||||
msgstr "en voinut avata %s: %s"
|
||||
|
||||
#: build/parsePreamble.c:445 build/parseSpec.c:375
|
||||
#: build/parsePreamble.c:445 build/parseSpec.c:374
|
||||
#, c-format
|
||||
msgid "BuildRoot can not be \"/\": %s"
|
||||
msgstr ""
|
||||
|
@ -2053,7 +2053,7 @@ msgstr ""
|
|||
msgid "malformed %%include statement"
|
||||
msgstr ""
|
||||
|
||||
#: build/parseSpec.c:470
|
||||
#: build/parseSpec.c:469
|
||||
#, fuzzy
|
||||
msgid "No buildable architectures"
|
||||
msgstr "älä tarkista paketin arkkitehtuuria"
|
||||
|
@ -2068,17 +2068,17 @@ msgstr "paketti %s ei ole %s:ss
|
|||
msgid "archive = %s, fs = %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/spec.c:245
|
||||
#: build/spec.c:244
|
||||
#, fuzzy, c-format
|
||||
msgid "line %d: Bad number: %s"
|
||||
msgstr "virheellinen paketin numero: %s\n"
|
||||
|
||||
#: build/spec.c:251
|
||||
#: build/spec.c:250
|
||||
#, c-format
|
||||
msgid "line %d: Bad no%s number: %d"
|
||||
msgstr ""
|
||||
|
||||
#: build/spec.c:310
|
||||
#: build/spec.c:309
|
||||
#, fuzzy, c-format
|
||||
msgid "line %d: Bad %s number: %s\n"
|
||||
msgstr "virheellinen paketin numero: %s\n"
|
||||
|
@ -2168,89 +2168,85 @@ msgid "error removing record %s into %s"
|
|||
msgstr "virhe poistettaessa tietuetta %s %s:stä"
|
||||
|
||||
#. XXX legacy epoch-less requires/conflicts compatibility
|
||||
#: lib/depends.c:417
|
||||
#: lib/depends.c:430
|
||||
#, c-format
|
||||
msgid ""
|
||||
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
|
||||
"\tA %s\tB %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:446
|
||||
#: lib/depends.c:459
|
||||
#, c-format
|
||||
msgid " %s A %s\tB %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:538
|
||||
msgid "dbrecMatchesDepFlags() failed to read header"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:795
|
||||
#: lib/depends.c:788
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by added file list.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:834
|
||||
#: lib/depends.c:836
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s satisfied by added package.\n"
|
||||
msgstr "tiedostoa %s ei omista mikään paketti\n"
|
||||
|
||||
#: lib/depends.c:851
|
||||
#: lib/depends.c:853
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by added provide.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:882
|
||||
#: lib/depends.c:886
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by rpmrc provides.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:909
|
||||
#: lib/depends.c:914
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by db file lists.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:934
|
||||
#: lib/depends.c:932
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by db provides.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:959
|
||||
#: lib/depends.c:949
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s satisfied by db packages.\n"
|
||||
msgstr "tiedostoa %s ei omista mikään paketti\n"
|
||||
|
||||
#: lib/depends.c:976
|
||||
#: lib/depends.c:961
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by rpmlib version.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:986
|
||||
#: lib/depends.c:971
|
||||
#, c-format
|
||||
msgid "%s: %s unsatisfied.\n"
|
||||
msgstr ""
|
||||
|
||||
#. requirements are not satisfied.
|
||||
#: lib/depends.c:1038
|
||||
#: lib/depends.c:1019
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s require not satisfied: %s\n"
|
||||
msgstr "paketti %s ei ole %s:ssä"
|
||||
|
||||
#. conflicts exist.
|
||||
#: lib/depends.c:1100
|
||||
#: lib/depends.c:1081
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s conflicts: %s\n"
|
||||
msgstr "paketti %s ei ole %s:ssä"
|
||||
|
||||
#: lib/depends.c:1155 lib/depends.c:1450
|
||||
#, c-format
|
||||
msgid "cannot read header at %d for dependency check"
|
||||
msgstr "en voi lukea headeria %d:ssä riippuvuutta tarkistaessa"
|
||||
|
||||
#: lib/depends.c:1246
|
||||
#: lib/depends.c:1211
|
||||
#, c-format
|
||||
msgid "loop in prerequisite chain: %s"
|
||||
msgstr "silmukka edellytysten ketjussa: %s"
|
||||
|
||||
#: lib/depends.c:1415
|
||||
#, c-format
|
||||
msgid "cannot read header at %d for dependency check"
|
||||
msgstr "en voi lukea headeria %d:ssä riippuvuutta tarkistaessa"
|
||||
|
||||
#: lib/falloc.c:135
|
||||
#, c-format
|
||||
msgid ""
|
||||
|
@ -2438,7 +2434,7 @@ msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
|
|||
msgid "renaming %s to %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/install.c:562 lib/install.c:834 lib/uninstall.c:29
|
||||
#: lib/install.c:562 lib/install.c:838 lib/uninstall.c:29
|
||||
#, c-format
|
||||
msgid "rename of %s to %s failed: %s"
|
||||
msgstr "%s:n nimeäminen %s:ksi epäonnistui: %s"
|
||||
|
@ -2452,25 +2448,25 @@ msgstr ""
|
|||
msgid "package: %s-%s-%s files test = %d\n"
|
||||
msgstr "paketti %s-%s-%s sisältää jaettuja tiedostoja\n"
|
||||
|
||||
#: lib/install.c:764
|
||||
#: lib/install.c:768
|
||||
msgid "stopping install as we're running --test\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/install.c:769
|
||||
#: lib/install.c:773
|
||||
msgid "running preinstall script (if any)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/install.c:794
|
||||
#: lib/install.c:798
|
||||
#, c-format
|
||||
msgid "warning: %s created as %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/install.c:830
|
||||
#: lib/install.c:834
|
||||
#, c-format
|
||||
msgid "warning: %s saved as %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/install.c:904
|
||||
#: lib/install.c:908
|
||||
msgid "running postinstall scripts (if any)\n"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2745,144 +2741,140 @@ msgstr "%s:n kysely ei onnistunut\n"
|
|||
msgid "query of specfile %s failed, can't parse\n"
|
||||
msgstr "%s:n kysely ei onnistunut\n"
|
||||
|
||||
#: lib/query.c:586
|
||||
msgid "could not read database record!\n"
|
||||
msgstr "en voinut lukea tietokannan tietuetta!\n"
|
||||
|
||||
#: lib/query.c:597
|
||||
#: lib/query.c:581
|
||||
#, fuzzy
|
||||
msgid "no packages\n"
|
||||
msgstr "kysele kaikki paketit"
|
||||
|
||||
#: lib/query.c:608 lib/query.c:616
|
||||
#: lib/query.c:591
|
||||
#, c-format
|
||||
msgid "group %s does not contain any packages\n"
|
||||
msgstr "ryhmässä %s ei ole paketteja\n"
|
||||
|
||||
#: lib/query.c:627 lib/query.c:635
|
||||
#: lib/query.c:601
|
||||
#, c-format
|
||||
msgid "no package triggers %s\n"
|
||||
msgstr "mikään paketti ei laukaise %s:a\n"
|
||||
|
||||
#: lib/query.c:646 lib/query.c:654
|
||||
#: lib/query.c:611
|
||||
#, c-format
|
||||
msgid "no package requires %s\n"
|
||||
msgstr "mikään pakettie ei tarvitse %s:a\n"
|
||||
|
||||
#: lib/query.c:666 lib/query.c:674
|
||||
#: lib/query.c:622
|
||||
#, c-format
|
||||
msgid "no package provides %s\n"
|
||||
msgstr "mikään paketti ei tarjoa %s:a\n"
|
||||
|
||||
#: lib/query.c:691 lib/query.c:709
|
||||
#: lib/query.c:638
|
||||
#, fuzzy, c-format
|
||||
msgid "file %s: %s\n"
|
||||
msgstr "en voinut avata %s: %s"
|
||||
|
||||
#: lib/query.c:694 lib/query.c:712
|
||||
#: lib/query.c:641
|
||||
#, c-format
|
||||
msgid "file %s is not owned by any package\n"
|
||||
msgstr "tiedostoa %s ei omista mikään paketti\n"
|
||||
|
||||
#: lib/query.c:735
|
||||
#: lib/query.c:663
|
||||
#, c-format
|
||||
msgid "invalid package number: %s\n"
|
||||
msgstr "virheellinen paketin numero: %s\n"
|
||||
|
||||
#: lib/query.c:738
|
||||
#: lib/query.c:666
|
||||
#, fuzzy, c-format
|
||||
msgid "package record number: %d\n"
|
||||
msgstr "virheellinen paketin numero: %s\n"
|
||||
|
||||
#: lib/query.c:742 lib/query.c:751
|
||||
#: lib/query.c:669
|
||||
#, c-format
|
||||
msgid "record %d could not be read\n"
|
||||
msgstr "tietuetta %d ei voitu lukea\n"
|
||||
|
||||
#: lib/query.c:763 lib/rpminstall.c:436
|
||||
#: lib/query.c:680 lib/rpminstall.c:436
|
||||
#, c-format
|
||||
msgid "package %s is not installed\n"
|
||||
msgstr "paketti %s ei ole asennettu\n"
|
||||
|
||||
#: lib/query.c:766
|
||||
#: lib/query.c:683
|
||||
#, c-format
|
||||
msgid "error looking for package %s\n"
|
||||
msgstr "virhe etsittäessä pakettia %s\n"
|
||||
|
||||
#: lib/query.c:791
|
||||
#: lib/query.c:708
|
||||
#, fuzzy
|
||||
msgid "rpmQuery: rpmdbOpen() failed\n"
|
||||
msgstr "%s: avaus ei onnistunut\n"
|
||||
|
||||
#: lib/query.c:850
|
||||
#: lib/query.c:767
|
||||
#, fuzzy
|
||||
msgid "query package owning file"
|
||||
msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
|
||||
|
||||
#: lib/query.c:852
|
||||
#: lib/query.c:769
|
||||
#, fuzzy
|
||||
msgid "query packages in group"
|
||||
msgstr "paketilla ei ole nimeä"
|
||||
|
||||
#: lib/query.c:854
|
||||
#: lib/query.c:771
|
||||
#, fuzzy
|
||||
msgid "query a package file"
|
||||
msgstr "kysele kaikki paketit"
|
||||
|
||||
#: lib/query.c:858
|
||||
#: lib/query.c:775
|
||||
#, fuzzy
|
||||
msgid "query a spec file"
|
||||
msgstr "%s:n kysely ei onnistunut\n"
|
||||
|
||||
#: lib/query.c:860
|
||||
#: lib/query.c:777
|
||||
#, fuzzy
|
||||
msgid "query the pacakges triggered by the package"
|
||||
msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
|
||||
|
||||
#: lib/query.c:862
|
||||
#: lib/query.c:779
|
||||
#, fuzzy
|
||||
msgid "query the packages which require a capability"
|
||||
msgstr "kysele paketteja, jotka vaativat <i> ominaisuutta"
|
||||
|
||||
#: lib/query.c:864
|
||||
#: lib/query.c:781
|
||||
#, fuzzy
|
||||
msgid "query the packages which provide a capability"
|
||||
msgstr "kysele paketteja, jotka tarjoavat <i> ominaisuuden"
|
||||
|
||||
#: lib/query.c:903
|
||||
#: lib/query.c:820
|
||||
#, fuzzy
|
||||
msgid "list all configuration files"
|
||||
msgstr "listaa vain konfigurointiedostot (josta seuraa -l)"
|
||||
|
||||
#: lib/query.c:905
|
||||
#: lib/query.c:822
|
||||
#, fuzzy
|
||||
msgid "list all documentation files"
|
||||
msgstr "asenna dokumentaatio"
|
||||
|
||||
#: lib/query.c:907
|
||||
#: lib/query.c:824
|
||||
#, fuzzy
|
||||
msgid "dump basic file information"
|
||||
msgstr "näytä paketin tiedot"
|
||||
|
||||
#: lib/query.c:909
|
||||
#: lib/query.c:826
|
||||
#, fuzzy
|
||||
msgid "list files in package"
|
||||
msgstr "asenna paketti"
|
||||
|
||||
#: lib/query.c:913
|
||||
#: lib/query.c:830
|
||||
msgid "use the following query format"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:915
|
||||
#: lib/query.c:832
|
||||
#, fuzzy
|
||||
msgid "substitute i18n sections into spec file"
|
||||
msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
|
||||
|
||||
#: lib/query.c:917
|
||||
#: lib/query.c:834
|
||||
msgid "display the states of the listed files"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:919
|
||||
#: lib/query.c:836
|
||||
#, fuzzy
|
||||
msgid "display a verbose file listing"
|
||||
msgstr "näytä paketin tiedostolistaus"
|
||||
|
@ -2921,40 +2913,30 @@ msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
|
|||
msgid "opening new database with dbi_major %d\n"
|
||||
msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
|
||||
|
||||
#: lib/rebuilddb.c:112
|
||||
#, c-format
|
||||
msgid "record number %d in database is bad -- skipping it"
|
||||
msgstr "tietue numero %d tietokannassa viallinen -- ohitan sen"
|
||||
|
||||
#: lib/rebuilddb.c:131
|
||||
#: lib/rebuilddb.c:111
|
||||
#, fuzzy, c-format
|
||||
msgid "record number %d in database is bad -- skipping."
|
||||
msgstr "tietue numero %d tietokannassa viallinen -- ohitan sen"
|
||||
|
||||
#: lib/rebuilddb.c:146
|
||||
#, c-format
|
||||
msgid "duplicated database entry: %s-%s-%s -- skipping."
|
||||
msgstr ""
|
||||
|
||||
#: lib/rebuilddb.c:162
|
||||
#: lib/rebuilddb.c:140
|
||||
#, c-format
|
||||
msgid "cannot add record originally at %d"
|
||||
msgstr "en voi lisätä tietuetta %d:stä"
|
||||
|
||||
#: lib/rebuilddb.c:186
|
||||
#: lib/rebuilddb.c:156
|
||||
msgid "failed to rebuild database; original database remains in place\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rebuilddb.c:194
|
||||
#: lib/rebuilddb.c:164
|
||||
msgid "failed to replace old database with new database!\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rebuilddb.c:196
|
||||
#: lib/rebuilddb.c:166
|
||||
#, c-format
|
||||
msgid "replace files in %s with files from %s to recover"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rebuilddb.c:202
|
||||
#: lib/rebuilddb.c:172
|
||||
#, fuzzy, c-format
|
||||
msgid "failed to remove directory %s: %s\n"
|
||||
msgstr "en voinut avata %s: %s"
|
||||
|
@ -3051,62 +3033,62 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. error
|
||||
#: lib/rpmdb.c:442
|
||||
#: lib/rpmdb.c:390
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot retrieve package \"%s\" from db"
|
||||
msgstr "virhe: en voi avata %s%s/packages.rpm\n"
|
||||
|
||||
#: lib/rpmdb.c:598
|
||||
#: lib/rpmdb.c:613
|
||||
#, fuzzy, c-format
|
||||
msgid "package not found with key \"%s\" in %s"
|
||||
msgstr "paketti %s ei ole %s:ssä"
|
||||
|
||||
#: lib/rpmdb.c:607
|
||||
#: lib/rpmdb.c:622
|
||||
#, fuzzy, c-format
|
||||
msgid "key \"%s\" not found in %s"
|
||||
msgstr "paketti %s ei ole %s:ssä"
|
||||
|
||||
#: lib/rpmdb.c:625
|
||||
#: lib/rpmdb.c:640
|
||||
#, fuzzy, c-format
|
||||
msgid "rpmdbRemove: cannot read header at 0x%x"
|
||||
msgstr "en voi lukea headeria %d:stä päivittäessä"
|
||||
|
||||
#: lib/rpmdb.c:650
|
||||
#: lib/rpmdb.c:665
|
||||
#, c-format
|
||||
msgid "removing 0 %s entries.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:656
|
||||
#: lib/rpmdb.c:671
|
||||
#, fuzzy, c-format
|
||||
msgid "removing \"%s\" from %s index.\n"
|
||||
msgstr "virhe poistettaessa tietuetta %s %s:stä"
|
||||
|
||||
#: lib/rpmdb.c:664
|
||||
#: lib/rpmdb.c:679
|
||||
#, fuzzy, c-format
|
||||
msgid "removing %d entries in %s index:\n"
|
||||
msgstr "virhe poistettaessa tietuetta %s %s:stä"
|
||||
|
||||
#: lib/rpmdb.c:668 lib/rpmdb.c:865
|
||||
#: lib/rpmdb.c:683 lib/rpmdb.c:880
|
||||
#, c-format
|
||||
msgid "\t%6d %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:803
|
||||
#: lib/rpmdb.c:818
|
||||
#, fuzzy
|
||||
msgid "cannot allocate new instance in database"
|
||||
msgstr "en voi varata tilaa tietokannalle"
|
||||
|
||||
#: lib/rpmdb.c:842
|
||||
#: lib/rpmdb.c:857
|
||||
#, c-format
|
||||
msgid "adding 0 %s entries.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:854
|
||||
#: lib/rpmdb.c:869
|
||||
#, c-format
|
||||
msgid "adding \"%s\" to %s index.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:861
|
||||
#: lib/rpmdb.c:876
|
||||
#, c-format
|
||||
msgid "adding %d entries to %s index:\n"
|
||||
msgstr ""
|
||||
|
@ -3530,22 +3512,22 @@ msgstr "Sinun pit
|
|||
msgid "excluding file %s%s\n"
|
||||
msgstr "Haen: %s\n"
|
||||
|
||||
#: lib/transaction.c:427 lib/transaction.c:511
|
||||
#: lib/transaction.c:426 lib/transaction.c:509
|
||||
#, fuzzy, c-format
|
||||
msgid "excluding directory %s\n"
|
||||
msgstr "virhe luotaessa hakemistoa %s: %s"
|
||||
|
||||
#: lib/transaction.c:432
|
||||
#: lib/transaction.c:431
|
||||
#, c-format
|
||||
msgid "relocating %s to %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/transaction.c:504
|
||||
#: lib/transaction.c:502
|
||||
#, fuzzy, c-format
|
||||
msgid "relocating directory %s to %s\n"
|
||||
msgstr "virhe luotaessa hakemistoa %s: %s"
|
||||
|
||||
#: lib/transaction.c:656
|
||||
#: lib/transaction.c:654
|
||||
#, c-format
|
||||
msgid "%s skipped due to missingok flag\n"
|
||||
msgstr ""
|
||||
|
@ -3656,6 +3638,12 @@ msgstr "%s-%s-%s:n tyydytt
|
|||
msgid "rpmVerify: rpmdbOpen() failed\n"
|
||||
msgstr "%s: avaus ei onnistunut\n"
|
||||
|
||||
#~ msgid "could not read database record!\n"
|
||||
#~ msgstr "en voinut lukea tietokannan tietuetta!\n"
|
||||
|
||||
#~ msgid "record number %d in database is bad -- skipping it"
|
||||
#~ msgstr "tietue numero %d tietokannassa viallinen -- ohitan sen"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "opening database mode 0x%x in %s\n"
|
||||
#~ msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
|
||||
|
|
184
po/fr.po
184
po/fr.po
|
@ -1,5 +1,5 @@
|
|||
msgid ""
|
||||
msgstr "POT-Creation-Date: 2000-04-12 09:57-0400\n"
|
||||
msgstr "POT-Creation-Date: 2000-04-13 12:17-0400\n"
|
||||
|
||||
#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:425
|
||||
#, c-format
|
||||
|
@ -1735,12 +1735,12 @@ msgstr "impossible d'ouvrir: %s\n"
|
|||
msgid "Wrote: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/pack.c:519
|
||||
#: build/pack.c:518
|
||||
#, c-format
|
||||
msgid "Could not generate output filename for package %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/pack.c:536
|
||||
#: build/pack.c:535
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot create %s: %s\n"
|
||||
msgstr "impossible d'ouvrir: %s\n"
|
||||
|
@ -1867,7 +1867,7 @@ msgstr ""
|
|||
msgid "line %d: Illegal char '-' in %s: %s"
|
||||
msgstr "impossible d'ouvrir: %s\n"
|
||||
|
||||
#: build/parsePreamble.c:445 build/parseSpec.c:375
|
||||
#: build/parsePreamble.c:445 build/parseSpec.c:374
|
||||
#, c-format
|
||||
msgid "BuildRoot can not be \"/\": %s"
|
||||
msgstr ""
|
||||
|
@ -2056,7 +2056,7 @@ msgstr ""
|
|||
msgid "malformed %%include statement"
|
||||
msgstr ""
|
||||
|
||||
#: build/parseSpec.c:470
|
||||
#: build/parseSpec.c:469
|
||||
#, fuzzy
|
||||
msgid "No buildable architectures"
|
||||
msgstr "%s ne peut être construit sur cette architecture\n"
|
||||
|
@ -2071,17 +2071,17 @@ msgstr "aucun package n'a
|
|||
msgid "archive = %s, fs = %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/spec.c:245
|
||||
#: build/spec.c:244
|
||||
#, c-format
|
||||
msgid "line %d: Bad number: %s"
|
||||
msgstr ""
|
||||
|
||||
#: build/spec.c:251
|
||||
#: build/spec.c:250
|
||||
#, c-format
|
||||
msgid "line %d: Bad no%s number: %d"
|
||||
msgstr ""
|
||||
|
||||
#: build/spec.c:310
|
||||
#: build/spec.c:309
|
||||
#, c-format
|
||||
msgid "line %d: Bad %s number: %s\n"
|
||||
msgstr ""
|
||||
|
@ -2169,89 +2169,85 @@ msgid "error removing record %s into %s"
|
|||
msgstr ""
|
||||
|
||||
#. XXX legacy epoch-less requires/conflicts compatibility
|
||||
#: lib/depends.c:417
|
||||
#: lib/depends.c:430
|
||||
#, c-format
|
||||
msgid ""
|
||||
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
|
||||
"\tA %s\tB %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:446
|
||||
#: lib/depends.c:459
|
||||
#, c-format
|
||||
msgid " %s A %s\tB %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:538
|
||||
msgid "dbrecMatchesDepFlags() failed to read header"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:795
|
||||
#: lib/depends.c:788
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by added file list.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:834
|
||||
#: lib/depends.c:836
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by added package.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:851
|
||||
#: lib/depends.c:853
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by added provide.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:882
|
||||
#: lib/depends.c:886
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by rpmrc provides.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:909
|
||||
#: lib/depends.c:914
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by db file lists.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:934
|
||||
#: lib/depends.c:932
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by db provides.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:959
|
||||
#: lib/depends.c:949
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by db packages.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:976
|
||||
#: lib/depends.c:961
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by rpmlib version.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:986
|
||||
#: lib/depends.c:971
|
||||
#, c-format
|
||||
msgid "%s: %s unsatisfied.\n"
|
||||
msgstr ""
|
||||
|
||||
#. requirements are not satisfied.
|
||||
#: lib/depends.c:1038
|
||||
#: lib/depends.c:1019
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s require not satisfied: %s\n"
|
||||
msgstr "aucun package n'a été spécifié pour l'installation"
|
||||
|
||||
#. conflicts exist.
|
||||
#: lib/depends.c:1100
|
||||
#: lib/depends.c:1081
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s conflicts: %s\n"
|
||||
msgstr "aucun package n'a été spécifié pour la désinstallation"
|
||||
|
||||
#: lib/depends.c:1155 lib/depends.c:1450
|
||||
#, c-format
|
||||
msgid "cannot read header at %d for dependency check"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1246
|
||||
#: lib/depends.c:1211
|
||||
#, c-format
|
||||
msgid "loop in prerequisite chain: %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1415
|
||||
#, c-format
|
||||
msgid "cannot read header at %d for dependency check"
|
||||
msgstr ""
|
||||
|
||||
#: lib/falloc.c:135
|
||||
#, c-format
|
||||
msgid ""
|
||||
|
@ -2439,7 +2435,7 @@ msgstr ""
|
|||
msgid "renaming %s to %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/install.c:562 lib/install.c:834 lib/uninstall.c:29
|
||||
#: lib/install.c:562 lib/install.c:838 lib/uninstall.c:29
|
||||
#, c-format
|
||||
msgid "rename of %s to %s failed: %s"
|
||||
msgstr ""
|
||||
|
@ -2453,25 +2449,25 @@ msgstr ""
|
|||
msgid "package: %s-%s-%s files test = %d\n"
|
||||
msgstr "aucun package n'a été spécifié pour l'installation"
|
||||
|
||||
#: lib/install.c:764
|
||||
#: lib/install.c:768
|
||||
msgid "stopping install as we're running --test\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/install.c:769
|
||||
#: lib/install.c:773
|
||||
msgid "running preinstall script (if any)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/install.c:794
|
||||
#: lib/install.c:798
|
||||
#, c-format
|
||||
msgid "warning: %s created as %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/install.c:830
|
||||
#: lib/install.c:834
|
||||
#, c-format
|
||||
msgid "warning: %s saved as %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/install.c:904
|
||||
#: lib/install.c:908
|
||||
msgid "running postinstall scripts (if any)\n"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2745,148 +2741,144 @@ msgstr ""
|
|||
msgid "query of specfile %s failed, can't parse\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:586
|
||||
msgid "could not read database record!\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:597
|
||||
#: lib/query.c:581
|
||||
#, fuzzy
|
||||
msgid "no packages\n"
|
||||
msgstr "aucun package n'a été spécifié pour l'installation"
|
||||
|
||||
#: lib/query.c:608 lib/query.c:616
|
||||
#: lib/query.c:591
|
||||
#, c-format
|
||||
msgid "group %s does not contain any packages\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:627 lib/query.c:635
|
||||
#: lib/query.c:601
|
||||
#, fuzzy, c-format
|
||||
msgid "no package triggers %s\n"
|
||||
msgstr "aucun package n'a été spécifié pour l'installation"
|
||||
|
||||
#: lib/query.c:646 lib/query.c:654
|
||||
#: lib/query.c:611
|
||||
#, c-format
|
||||
msgid "no package requires %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:666 lib/query.c:674
|
||||
#: lib/query.c:622
|
||||
#, c-format
|
||||
msgid "no package provides %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:691 lib/query.c:709
|
||||
#: lib/query.c:638
|
||||
#, c-format
|
||||
msgid "file %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:694 lib/query.c:712
|
||||
#: lib/query.c:641
|
||||
#, c-format
|
||||
msgid "file %s is not owned by any package\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:735
|
||||
#: lib/query.c:663
|
||||
#, c-format
|
||||
msgid "invalid package number: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:738
|
||||
#: lib/query.c:666
|
||||
#, c-format
|
||||
msgid "package record number: %d\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:742 lib/query.c:751
|
||||
#: lib/query.c:669
|
||||
#, c-format
|
||||
msgid "record %d could not be read\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:763 lib/rpminstall.c:436
|
||||
#: lib/query.c:680 lib/rpminstall.c:436
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s is not installed\n"
|
||||
msgstr "aucun package n'a été spécifié pour l'installation"
|
||||
|
||||
#: lib/query.c:766
|
||||
#: lib/query.c:683
|
||||
#, c-format
|
||||
msgid "error looking for package %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:791
|
||||
#: lib/query.c:708
|
||||
msgid "rpmQuery: rpmdbOpen() failed\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:850
|
||||
#: lib/query.c:767
|
||||
#, fuzzy
|
||||
msgid "query package owning file"
|
||||
msgstr ""
|
||||
" -f <file>+ - interroge le package à qui appartient <file>"
|
||||
|
||||
#: lib/query.c:852
|
||||
#: lib/query.c:769
|
||||
#, fuzzy
|
||||
msgid "query packages in group"
|
||||
msgstr "aucun package n'a été spécifié pour la désinstallation"
|
||||
|
||||
#: lib/query.c:854
|
||||
#: lib/query.c:771
|
||||
#, fuzzy
|
||||
msgid "query a package file"
|
||||
msgstr ""
|
||||
" -f <file>+ - interroge le package à qui appartient <file>"
|
||||
|
||||
#: lib/query.c:858
|
||||
#: lib/query.c:775
|
||||
msgid "query a spec file"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:860
|
||||
#: lib/query.c:777
|
||||
#, fuzzy
|
||||
msgid "query the pacakges triggered by the package"
|
||||
msgstr ""
|
||||
" -f <file>+ - interroge le package à qui appartient <file>"
|
||||
|
||||
#: lib/query.c:862
|
||||
#: lib/query.c:779
|
||||
msgid "query the packages which require a capability"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:864
|
||||
#: lib/query.c:781
|
||||
msgid "query the packages which provide a capability"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:903
|
||||
#: lib/query.c:820
|
||||
#, fuzzy
|
||||
msgid "list all configuration files"
|
||||
msgstr ""
|
||||
" -c - donne uniquement la liste des fichiers de "
|
||||
"configuration (implique -l)"
|
||||
|
||||
#: lib/query.c:905
|
||||
#: lib/query.c:822
|
||||
#, fuzzy
|
||||
msgid "list all documentation files"
|
||||
msgstr ""
|
||||
" -d - donne uniquement la liste des fichiers de "
|
||||
"documentation (implique -l)"
|
||||
|
||||
#: lib/query.c:907
|
||||
#: lib/query.c:824
|
||||
#, fuzzy
|
||||
msgid "dump basic file information"
|
||||
msgstr ""
|
||||
" -i - affiche les informations relatives à un package"
|
||||
|
||||
#: lib/query.c:909
|
||||
#: lib/query.c:826
|
||||
msgid "list files in package"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:913
|
||||
#: lib/query.c:830
|
||||
msgid "use the following query format"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:915
|
||||
#: lib/query.c:832
|
||||
#, fuzzy
|
||||
msgid "substitute i18n sections into spec file"
|
||||
msgstr ""
|
||||
" -f <file>+ - interroge le package à qui appartient <file>"
|
||||
|
||||
#: lib/query.c:917
|
||||
#: lib/query.c:834
|
||||
msgid "display the states of the listed files"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:919
|
||||
#: lib/query.c:836
|
||||
#, fuzzy
|
||||
msgid "display a verbose file listing"
|
||||
msgstr " -l - affiche la liste des packages"
|
||||
|
@ -2925,40 +2917,30 @@ msgstr ""
|
|||
msgid "opening new database with dbi_major %d\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rebuilddb.c:112
|
||||
#, c-format
|
||||
msgid "record number %d in database is bad -- skipping it"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rebuilddb.c:131
|
||||
#: lib/rebuilddb.c:111
|
||||
#, c-format
|
||||
msgid "record number %d in database is bad -- skipping."
|
||||
msgstr ""
|
||||
|
||||
#: lib/rebuilddb.c:146
|
||||
#, c-format
|
||||
msgid "duplicated database entry: %s-%s-%s -- skipping."
|
||||
msgstr ""
|
||||
|
||||
#: lib/rebuilddb.c:162
|
||||
#: lib/rebuilddb.c:140
|
||||
#, c-format
|
||||
msgid "cannot add record originally at %d"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rebuilddb.c:186
|
||||
#: lib/rebuilddb.c:156
|
||||
msgid "failed to rebuild database; original database remains in place\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rebuilddb.c:194
|
||||
#: lib/rebuilddb.c:164
|
||||
msgid "failed to replace old database with new database!\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rebuilddb.c:196
|
||||
#: lib/rebuilddb.c:166
|
||||
#, c-format
|
||||
msgid "replace files in %s with files from %s to recover"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rebuilddb.c:202
|
||||
#: lib/rebuilddb.c:172
|
||||
#, fuzzy, c-format
|
||||
msgid "failed to remove directory %s: %s\n"
|
||||
msgstr "impossible d'ouvrir: %s\n"
|
||||
|
@ -3054,61 +3036,61 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. error
|
||||
#: lib/rpmdb.c:442
|
||||
#: lib/rpmdb.c:390
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot retrieve package \"%s\" from db"
|
||||
msgstr "impossible d'ouvrir: %s\n"
|
||||
|
||||
#: lib/rpmdb.c:598
|
||||
#: lib/rpmdb.c:613
|
||||
#, fuzzy, c-format
|
||||
msgid "package not found with key \"%s\" in %s"
|
||||
msgstr "aucun package n'a été spécifié pour la désinstallation"
|
||||
|
||||
#: lib/rpmdb.c:607
|
||||
#: lib/rpmdb.c:622
|
||||
#, fuzzy, c-format
|
||||
msgid "key \"%s\" not found in %s"
|
||||
msgstr "aucun package n'a été spécifié pour la désinstallation"
|
||||
|
||||
#: lib/rpmdb.c:625
|
||||
#: lib/rpmdb.c:640
|
||||
#, c-format
|
||||
msgid "rpmdbRemove: cannot read header at 0x%x"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:650
|
||||
#: lib/rpmdb.c:665
|
||||
#, c-format
|
||||
msgid "removing 0 %s entries.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:656
|
||||
#: lib/rpmdb.c:671
|
||||
#, c-format
|
||||
msgid "removing \"%s\" from %s index.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:664
|
||||
#: lib/rpmdb.c:679
|
||||
#, c-format
|
||||
msgid "removing %d entries in %s index:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:668 lib/rpmdb.c:865
|
||||
#: lib/rpmdb.c:683 lib/rpmdb.c:880
|
||||
#, c-format
|
||||
msgid "\t%6d %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:803
|
||||
#: lib/rpmdb.c:818
|
||||
msgid "cannot allocate new instance in database"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:842
|
||||
#: lib/rpmdb.c:857
|
||||
#, c-format
|
||||
msgid "adding 0 %s entries.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:854
|
||||
#: lib/rpmdb.c:869
|
||||
#, c-format
|
||||
msgid "adding \"%s\" to %s index.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:861
|
||||
#: lib/rpmdb.c:876
|
||||
#, c-format
|
||||
msgid "adding %d entries to %s index:\n"
|
||||
msgstr ""
|
||||
|
@ -3516,22 +3498,22 @@ msgstr ""
|
|||
msgid "excluding file %s%s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/transaction.c:427 lib/transaction.c:511
|
||||
#: lib/transaction.c:426 lib/transaction.c:509
|
||||
#, c-format
|
||||
msgid "excluding directory %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/transaction.c:432
|
||||
#: lib/transaction.c:431
|
||||
#, c-format
|
||||
msgid "relocating %s to %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/transaction.c:504
|
||||
#: lib/transaction.c:502
|
||||
#, fuzzy, c-format
|
||||
msgid "relocating directory %s to %s\n"
|
||||
msgstr "impossible d'ouvrir: %s\n"
|
||||
|
||||
#: lib/transaction.c:656
|
||||
#: lib/transaction.c:654
|
||||
#, c-format
|
||||
msgid "%s skipped due to missingok flag\n"
|
||||
msgstr ""
|
||||
|
|
195
po/ja.po
195
po/ja.po
|
@ -6,7 +6,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm-3.0.4\n"
|
||||
"POT-Creation-Date: 2000-04-12 09:57-0400\n"
|
||||
"POT-Creation-Date: 2000-04-13 12:17-0400\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"
|
||||
|
@ -193,7 +193,7 @@ msgstr "copyright
|
|||
# build root [BuildRoot]
|
||||
# net share [ネット共有]
|
||||
# reloate [再配置/移動する]
|
||||
# $Id: ja.po,v 1.40 2000/04/12 13:42:58 jbj Exp $
|
||||
# $Id: ja.po,v 1.41 2000/04/13 16:00:35 jbj Exp $
|
||||
#: rpm.c:200
|
||||
#, c-format
|
||||
msgid "rpm: %s\n"
|
||||
|
@ -1699,12 +1699,12 @@ msgstr "
|
|||
msgid "Wrote: %s\n"
|
||||
msgstr "書き込み中: %s\n"
|
||||
|
||||
#: build/pack.c:519
|
||||
#: build/pack.c:518
|
||||
#, c-format
|
||||
msgid "Could not generate output filename for package %s: %s\n"
|
||||
msgstr "パッケージ %s の 出力ファイル名を生成できませんでした: %s\n"
|
||||
|
||||
#: build/pack.c:536
|
||||
#: build/pack.c:535
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot create %s: %s\n"
|
||||
msgstr "%s を作成できません: %s\n"
|
||||
|
@ -1831,7 +1831,7 @@ msgstr "%d
|
|||
msgid "line %d: Illegal char '-' in %s: %s"
|
||||
msgstr "%d 行目: %s 中に不正な文字 '-' : %s"
|
||||
|
||||
#: build/parsePreamble.c:445 build/parseSpec.c:375
|
||||
#: build/parsePreamble.c:445 build/parseSpec.c:374
|
||||
#, fuzzy, c-format
|
||||
msgid "BuildRoot can not be \"/\": %s"
|
||||
msgstr "%d 行目: BuildRoot は \"/\" にすることはできません: %s"
|
||||
|
@ -2023,7 +2023,7 @@ msgstr "%s:%d: if
|
|||
msgid "malformed %%include statement"
|
||||
msgstr "おかしな %%include ステートメントです"
|
||||
|
||||
#: build/parseSpec.c:470
|
||||
#: build/parseSpec.c:469
|
||||
msgid "No buildable architectures"
|
||||
msgstr "作成(build)可能なアーキテクチャはありません"
|
||||
|
||||
|
@ -2036,17 +2036,17 @@ msgstr "
|
|||
msgid "archive = %s, fs = %s\n"
|
||||
msgstr "アーカイブ = %s, fs = %s\n"
|
||||
|
||||
#: build/spec.c:245
|
||||
#: build/spec.c:244
|
||||
#, c-format
|
||||
msgid "line %d: Bad number: %s"
|
||||
msgstr "%d 行目: 不正な番号: %s"
|
||||
|
||||
#: build/spec.c:251
|
||||
#: build/spec.c:250
|
||||
#, c-format
|
||||
msgid "line %d: Bad no%s number: %d"
|
||||
msgstr "%d 行目: 不正な no%s 番号: %d"
|
||||
|
||||
#: build/spec.c:310
|
||||
#: build/spec.c:309
|
||||
#, c-format
|
||||
msgid "line %d: Bad %s number: %s\n"
|
||||
msgstr "%d 行目: 不正な %s 番号: %s\n"
|
||||
|
@ -2136,7 +2136,7 @@ msgid "error removing record %s into %s"
|
|||
msgstr "レコード %s を %s に削除でエラー"
|
||||
|
||||
#. XXX legacy epoch-less requires/conflicts compatibility
|
||||
#: lib/depends.c:417
|
||||
#: lib/depends.c:430
|
||||
#, c-format
|
||||
msgid ""
|
||||
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
|
||||
|
@ -2145,82 +2145,78 @@ msgstr ""
|
|||
"\"B\" の依存性は epoch を必要とします(\"A\"と同じであると仮定して)\n"
|
||||
"\tA %s\tB %s\n"
|
||||
|
||||
#: lib/depends.c:446
|
||||
#: lib/depends.c:459
|
||||
#, c-format
|
||||
msgid " %s A %s\tB %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:538
|
||||
msgid "dbrecMatchesDepFlags() failed to read header"
|
||||
msgstr "dbrecMatchesDepFlags() がヘッダを読むのに失敗しました"
|
||||
|
||||
#: lib/depends.c:795
|
||||
#: lib/depends.c:788
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by added file list.\n"
|
||||
msgstr "%s: %s はファイルリストに加えることによって満されます。\n"
|
||||
|
||||
#: lib/depends.c:834
|
||||
#: lib/depends.c:836
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s satisfied by added package.\n"
|
||||
msgstr "%s: %s はパッケージに加えることによって満されます。\n"
|
||||
|
||||
#: lib/depends.c:851
|
||||
#: lib/depends.c:853
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by added provide.\n"
|
||||
msgstr "%s: %s は provide に加えることによって満されます。\n"
|
||||
|
||||
#: lib/depends.c:882
|
||||
#: lib/depends.c:886
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by rpmrc provides.\n"
|
||||
msgstr "%s: %s は rpmrc が提供することによって満されます。\n"
|
||||
|
||||
#: lib/depends.c:909
|
||||
#: lib/depends.c:914
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by db file lists.\n"
|
||||
msgstr "%s: %s は db ファイルがリストを作ることによって満されます。\n"
|
||||
|
||||
#: lib/depends.c:934
|
||||
#: lib/depends.c:932
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by db provides.\n"
|
||||
msgstr "%s: %s は db が提供することによって満されます。\n"
|
||||
|
||||
#: lib/depends.c:959
|
||||
#: lib/depends.c:949
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s satisfied by db packages.\n"
|
||||
msgstr "%s: %s は db パッケージによって満されています。\n"
|
||||
|
||||
#: lib/depends.c:976
|
||||
#: lib/depends.c:961
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by rpmlib version.\n"
|
||||
msgstr "%s: %s は rpmlib のバージョンによって満されています。\n"
|
||||
|
||||
#: lib/depends.c:986
|
||||
#: lib/depends.c:971
|
||||
#, c-format
|
||||
msgid "%s: %s unsatisfied.\n"
|
||||
msgstr "%s: %s は満されていません。\n"
|
||||
|
||||
#. requirements are not satisfied.
|
||||
#: lib/depends.c:1038
|
||||
#: lib/depends.c:1019
|
||||
#, c-format
|
||||
msgid "package %s require not satisfied: %s\n"
|
||||
msgstr "パッケージ %s は require が満たされていません: %s\n"
|
||||
|
||||
#. conflicts exist.
|
||||
#: lib/depends.c:1100
|
||||
#: lib/depends.c:1081
|
||||
#, c-format
|
||||
msgid "package %s conflicts: %s\n"
|
||||
msgstr "%s と競合するパッケージがあります: %s\n"
|
||||
|
||||
#: lib/depends.c:1155 lib/depends.c:1450
|
||||
#, c-format
|
||||
msgid "cannot read header at %d for dependency check"
|
||||
msgstr "依存性チェックのために %d でヘッダを読めません"
|
||||
|
||||
#: lib/depends.c:1246
|
||||
#: lib/depends.c:1211
|
||||
#, c-format
|
||||
msgid "loop in prerequisite chain: %s"
|
||||
msgstr "prerequisite チェーンのループ: %s"
|
||||
|
||||
#: lib/depends.c:1415
|
||||
#, c-format
|
||||
msgid "cannot read header at %d for dependency check"
|
||||
msgstr "依存性チェックのために %d でヘッダを読めません"
|
||||
|
||||
#: lib/falloc.c:135
|
||||
#, c-format
|
||||
msgid ""
|
||||
|
@ -2413,7 +2409,7 @@ msgstr "
|
|||
msgid "renaming %s to %s\n"
|
||||
msgstr "%s を %s へ名前を変更します\n"
|
||||
|
||||
#: lib/install.c:562 lib/install.c:834 lib/uninstall.c:29
|
||||
#: lib/install.c:562 lib/install.c:838 lib/uninstall.c:29
|
||||
#, c-format
|
||||
msgid "rename of %s to %s failed: %s"
|
||||
msgstr "%s を %s にする名前の変更に失敗: %s"
|
||||
|
@ -2427,25 +2423,25 @@ msgstr "
|
|||
msgid "package: %s-%s-%s files test = %d\n"
|
||||
msgstr "パッケージ: %s-%s-%s ファイルテスト = %d\n"
|
||||
|
||||
#: lib/install.c:764
|
||||
#: lib/install.c:768
|
||||
msgid "stopping install as we're running --test\n"
|
||||
msgstr "--test を実行するようにインストールを中止しています\n"
|
||||
|
||||
#: lib/install.c:769
|
||||
#: lib/install.c:773
|
||||
msgid "running preinstall script (if any)\n"
|
||||
msgstr "プリインストールスクリプト(が有れば)を実行します\n"
|
||||
|
||||
#: lib/install.c:794
|
||||
#: lib/install.c:798
|
||||
#, c-format
|
||||
msgid "warning: %s created as %s"
|
||||
msgstr "警告: %s は %s として作成されます"
|
||||
|
||||
#: lib/install.c:830
|
||||
#: lib/install.c:834
|
||||
#, c-format
|
||||
msgid "warning: %s saved as %s"
|
||||
msgstr "警告: %s は %s として保存されます"
|
||||
|
||||
#: lib/install.c:904
|
||||
#: lib/install.c:908
|
||||
#, fuzzy
|
||||
msgid "running postinstall scripts (if any)\n"
|
||||
msgstr "ポストインストールスクリプト(が有れば)を実行します\n"
|
||||
|
@ -2727,146 +2723,142 @@ msgstr "%s
|
|||
msgid "query of specfile %s failed, can't parse\n"
|
||||
msgstr "スペックファイル %s への問い合わせに失敗しました、パースできません\n"
|
||||
|
||||
#: lib/query.c:586
|
||||
msgid "could not read database record!\n"
|
||||
msgstr "データベースレコードを読むことができませんでした!\n"
|
||||
|
||||
#: lib/query.c:597
|
||||
#: lib/query.c:581
|
||||
#, fuzzy
|
||||
msgid "no packages\n"
|
||||
msgstr "%d 個のパッケージを見つけました\n"
|
||||
|
||||
#: lib/query.c:608 lib/query.c:616
|
||||
#: lib/query.c:591
|
||||
#, c-format
|
||||
msgid "group %s does not contain any packages\n"
|
||||
msgstr "グループ %s に属するパッケージは存在しません\n"
|
||||
|
||||
#: lib/query.c:627 lib/query.c:635
|
||||
#: lib/query.c:601
|
||||
#, c-format
|
||||
msgid "no package triggers %s\n"
|
||||
msgstr "%s をトリガーするパッケージは存在しません\n"
|
||||
|
||||
#: lib/query.c:646 lib/query.c:654
|
||||
#: lib/query.c:611
|
||||
#, c-format
|
||||
msgid "no package requires %s\n"
|
||||
msgstr "%s を必要とするパッケージは存在しません\n"
|
||||
|
||||
#: lib/query.c:666 lib/query.c:674
|
||||
#: lib/query.c:622
|
||||
#, c-format
|
||||
msgid "no package provides %s\n"
|
||||
msgstr "%s を提供するパッケージは存在しません\n"
|
||||
|
||||
#: lib/query.c:691 lib/query.c:709
|
||||
#: lib/query.c:638
|
||||
#, c-format
|
||||
msgid "file %s: %s\n"
|
||||
msgstr "ファイル %s: %s\n"
|
||||
|
||||
#: lib/query.c:694 lib/query.c:712
|
||||
#: lib/query.c:641
|
||||
#, c-format
|
||||
msgid "file %s is not owned by any package\n"
|
||||
msgstr "ファイル %s はどのパッケージにも属していません\n"
|
||||
|
||||
#: lib/query.c:735
|
||||
#: lib/query.c:663
|
||||
#, c-format
|
||||
msgid "invalid package number: %s\n"
|
||||
msgstr "無効なパッケージ番号: %s\n"
|
||||
|
||||
#: lib/query.c:738
|
||||
#: lib/query.c:666
|
||||
#, fuzzy, c-format
|
||||
msgid "package record number: %d\n"
|
||||
msgstr "パッケージレコード番号 %d\n"
|
||||
|
||||
#: lib/query.c:742 lib/query.c:751
|
||||
#: lib/query.c:669
|
||||
#, c-format
|
||||
msgid "record %d could not be read\n"
|
||||
msgstr "レコード %d を読むことができませんでした\n"
|
||||
|
||||
#: lib/query.c:763 lib/rpminstall.c:436
|
||||
#: lib/query.c:680 lib/rpminstall.c:436
|
||||
#, c-format
|
||||
msgid "package %s is not installed\n"
|
||||
msgstr "パッケージ %s はインストールされていません\n"
|
||||
|
||||
#: lib/query.c:766
|
||||
#: lib/query.c:683
|
||||
#, c-format
|
||||
msgid "error looking for package %s\n"
|
||||
msgstr "パッケージ %s の探索エラー\n"
|
||||
|
||||
#: lib/query.c:791
|
||||
#: lib/query.c:708
|
||||
#, fuzzy
|
||||
msgid "rpmQuery: rpmdbOpen() failed\n"
|
||||
msgstr "rpmQuery: rpmdbOpen() に失敗しました\n"
|
||||
|
||||
#: lib/query.c:850
|
||||
#: lib/query.c:767
|
||||
#, fuzzy
|
||||
msgid "query package owning file"
|
||||
msgstr "ファイルを所有しているパッケージを問い合わせます"
|
||||
|
||||
#: lib/query.c:852
|
||||
#: lib/query.c:769
|
||||
#, fuzzy
|
||||
msgid "query packages in group"
|
||||
msgstr "グループ中のパッケージについて問い合わせます\n"
|
||||
|
||||
#: lib/query.c:854
|
||||
#: lib/query.c:771
|
||||
#, fuzzy
|
||||
msgid "query a package file"
|
||||
msgstr "パッケージファイルについて問い合わせます"
|
||||
|
||||
#: lib/query.c:858
|
||||
#: lib/query.c:775
|
||||
#, fuzzy
|
||||
msgid "query a spec file"
|
||||
msgstr "スペックファイルを問い合わせます"
|
||||
|
||||
#: lib/query.c:860
|
||||
#: lib/query.c:777
|
||||
#, fuzzy
|
||||
msgid "query the pacakges triggered by the package"
|
||||
msgstr "パッケージによってトリガーされるパッケージを問い合わせます"
|
||||
|
||||
#: lib/query.c:862
|
||||
#: lib/query.c:779
|
||||
#, fuzzy
|
||||
msgid "query the packages which require a capability"
|
||||
msgstr ""
|
||||
"機能を必要とするパッケージについて\n"
|
||||
"問い合わせます"
|
||||
|
||||
#: lib/query.c:864
|
||||
#: lib/query.c:781
|
||||
#, fuzzy
|
||||
msgid "query the packages which provide a capability"
|
||||
msgstr "機能を提供するパッケージについて問い合わせます"
|
||||
|
||||
#: lib/query.c:903
|
||||
#: lib/query.c:820
|
||||
#, fuzzy
|
||||
msgid "list all configuration files"
|
||||
msgstr "全ての設定ファイルを列挙します"
|
||||
|
||||
#: lib/query.c:905
|
||||
#: lib/query.c:822
|
||||
#, fuzzy
|
||||
msgid "list all documentation files"
|
||||
msgstr "全てのドキュメントファイルを列挙します"
|
||||
|
||||
#: lib/query.c:907
|
||||
#: lib/query.c:824
|
||||
#, fuzzy
|
||||
msgid "dump basic file information"
|
||||
msgstr "基本的なファイル情報をダンプします"
|
||||
|
||||
#: lib/query.c:909
|
||||
#: lib/query.c:826
|
||||
#, fuzzy
|
||||
msgid "list files in package"
|
||||
msgstr "パッケージ中のファイルを列挙します\n"
|
||||
|
||||
#: lib/query.c:913
|
||||
#: lib/query.c:830
|
||||
msgid "use the following query format"
|
||||
msgstr "以下の問い合わせフォーマットを使用します"
|
||||
|
||||
#: lib/query.c:915
|
||||
#: lib/query.c:832
|
||||
#, fuzzy
|
||||
msgid "substitute i18n sections into spec file"
|
||||
msgstr "以下のカタログから i18n セクションを置き換えます"
|
||||
|
||||
#: lib/query.c:917
|
||||
#: lib/query.c:834
|
||||
msgid "display the states of the listed files"
|
||||
msgstr "列挙したファイルの状態を表示します"
|
||||
|
||||
#: lib/query.c:919
|
||||
#: lib/query.c:836
|
||||
#, fuzzy
|
||||
msgid "display a verbose file listing"
|
||||
msgstr "ファイルリストを冗長に表示します"
|
||||
|
@ -2905,41 +2897,31 @@ msgstr "
|
|||
msgid "opening new database with dbi_major %d\n"
|
||||
msgstr "新しいデータベースのオープン\n"
|
||||
|
||||
#: lib/rebuilddb.c:112
|
||||
#, c-format
|
||||
msgid "record number %d in database is bad -- skipping it"
|
||||
msgstr "データベース中のレコード番号 %d は不正です -- スキップします"
|
||||
|
||||
#: lib/rebuilddb.c:131
|
||||
#: lib/rebuilddb.c:111
|
||||
#, fuzzy, c-format
|
||||
msgid "record number %d in database is bad -- skipping."
|
||||
msgstr "データベース中のレコード番号 %d は不正です -- スキップします"
|
||||
|
||||
#: lib/rebuilddb.c:146
|
||||
#, c-format
|
||||
msgid "duplicated database entry: %s-%s-%s -- skipping."
|
||||
msgstr ""
|
||||
|
||||
#: lib/rebuilddb.c:162
|
||||
#: lib/rebuilddb.c:140
|
||||
#, c-format
|
||||
msgid "cannot add record originally at %d"
|
||||
msgstr "%d に オリジナルのレコードを付加できません"
|
||||
|
||||
#: lib/rebuilddb.c:186
|
||||
#: lib/rebuilddb.c:156
|
||||
msgid "failed to rebuild database; original database remains in place\n"
|
||||
msgstr ""
|
||||
"データベースの再構築に失敗; オリジナルデータベースがまだそこに残っています\n"
|
||||
|
||||
#: lib/rebuilddb.c:194
|
||||
#: lib/rebuilddb.c:164
|
||||
msgid "failed to replace old database with new database!\n"
|
||||
msgstr "古いデータベースを新しいデータベースに置き換えるのに失敗!\n"
|
||||
|
||||
#: lib/rebuilddb.c:196
|
||||
#: lib/rebuilddb.c:166
|
||||
#, fuzzy, c-format
|
||||
msgid "replace files in %s with files from %s to recover"
|
||||
msgstr "%s 中のファイルをリカバーするために %s からファイルと置き換えます"
|
||||
|
||||
#: lib/rebuilddb.c:202
|
||||
#: lib/rebuilddb.c:172
|
||||
#, fuzzy, c-format
|
||||
msgid "failed to remove directory %s: %s\n"
|
||||
msgstr "ディレクトリ %s の削除失敗: %s\n"
|
||||
|
@ -3036,62 +3018,62 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. error
|
||||
#: lib/rpmdb.c:442
|
||||
#: lib/rpmdb.c:390
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot retrieve package \"%s\" from db"
|
||||
msgstr "%s/packages.rpm をオープンできません\n"
|
||||
|
||||
#: lib/rpmdb.c:598
|
||||
#: lib/rpmdb.c:613
|
||||
#, fuzzy, c-format
|
||||
msgid "package not found with key \"%s\" in %s"
|
||||
msgstr "パッケージ %s は %s 中に見つかりません"
|
||||
|
||||
#: lib/rpmdb.c:607
|
||||
#: lib/rpmdb.c:622
|
||||
#, fuzzy, c-format
|
||||
msgid "key \"%s\" not found in %s"
|
||||
msgstr "パッケージ %s は %s 中に見つかりません"
|
||||
|
||||
#: lib/rpmdb.c:625
|
||||
#: lib/rpmdb.c:640
|
||||
#, fuzzy, c-format
|
||||
msgid "rpmdbRemove: cannot read header at 0x%x"
|
||||
msgstr "検索のための %d で ヘッダを読むことができません"
|
||||
|
||||
#: lib/rpmdb.c:650
|
||||
#: lib/rpmdb.c:665
|
||||
#, fuzzy, c-format
|
||||
msgid "removing 0 %s entries.\n"
|
||||
msgstr "データベースエントリを削除します\n"
|
||||
|
||||
#: lib/rpmdb.c:656
|
||||
#: lib/rpmdb.c:671
|
||||
#, fuzzy, c-format
|
||||
msgid "removing \"%s\" from %s index.\n"
|
||||
msgstr "group インデックスを削除します\n"
|
||||
|
||||
#: lib/rpmdb.c:664
|
||||
#: lib/rpmdb.c:679
|
||||
#, fuzzy, c-format
|
||||
msgid "removing %d entries in %s index:\n"
|
||||
msgstr "name インデックス削除します\n"
|
||||
|
||||
#: lib/rpmdb.c:668 lib/rpmdb.c:865
|
||||
#: lib/rpmdb.c:683 lib/rpmdb.c:880
|
||||
#, c-format
|
||||
msgid "\t%6d %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:803
|
||||
#: lib/rpmdb.c:818
|
||||
#, fuzzy
|
||||
msgid "cannot allocate new instance in database"
|
||||
msgstr "データベース用の空き容量が足りません"
|
||||
|
||||
#: lib/rpmdb.c:842
|
||||
#: lib/rpmdb.c:857
|
||||
#, c-format
|
||||
msgid "adding 0 %s entries.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:854
|
||||
#: lib/rpmdb.c:869
|
||||
#, fuzzy, c-format
|
||||
msgid "adding \"%s\" to %s index.\n"
|
||||
msgstr "%s を %s へ名前を変更します\n"
|
||||
|
||||
#: lib/rpmdb.c:861
|
||||
#: lib/rpmdb.c:876
|
||||
#, c-format
|
||||
msgid "adding %d entries to %s index:\n"
|
||||
msgstr ""
|
||||
|
@ -3513,22 +3495,22 @@ msgstr "
|
|||
msgid "excluding file %s%s\n"
|
||||
msgstr "ファイルの除外: %s%s\n"
|
||||
|
||||
#: lib/transaction.c:427 lib/transaction.c:511
|
||||
#: lib/transaction.c:426 lib/transaction.c:509
|
||||
#, fuzzy, c-format
|
||||
msgid "excluding directory %s\n"
|
||||
msgstr "ディレクトリの除外: %s\n"
|
||||
|
||||
#: lib/transaction.c:432
|
||||
#: lib/transaction.c:431
|
||||
#, c-format
|
||||
msgid "relocating %s to %s\n"
|
||||
msgstr "%s を %s に再配置しています\n"
|
||||
|
||||
#: lib/transaction.c:504
|
||||
#: lib/transaction.c:502
|
||||
#, fuzzy, c-format
|
||||
msgid "relocating directory %s to %s\n"
|
||||
msgstr "ディレクトリ %s を %s に再配置しています\n"
|
||||
|
||||
#: lib/transaction.c:656
|
||||
#: lib/transaction.c:654
|
||||
#, c-format
|
||||
msgid "%s skipped due to missingok flag\n"
|
||||
msgstr "%s は missingok フラグのためスキップします\n"
|
||||
|
@ -3643,6 +3625,15 @@ msgstr "%s-%s-%s
|
|||
msgid "rpmVerify: rpmdbOpen() failed\n"
|
||||
msgstr "rpmVerify: rpmdbOen() に失敗しました\n"
|
||||
|
||||
#~ msgid "dbrecMatchesDepFlags() failed to read header"
|
||||
#~ msgstr "dbrecMatchesDepFlags() がヘッダを読むのに失敗しました"
|
||||
|
||||
#~ msgid "could not read database record!\n"
|
||||
#~ msgstr "データベースレコードを読むことができませんでした!\n"
|
||||
|
||||
#~ msgid "record number %d in database is bad -- skipping it"
|
||||
#~ msgstr "データベース中のレコード番号 %d は不正です -- スキップします"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "opening database mode 0x%x in %s\n"
|
||||
#~ msgstr "データベースモード 0x%x のオープン (%s)\n"
|
||||
|
|
193
po/pl.po
193
po/pl.po
|
@ -8,7 +8,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm-3.0.2\n"
|
||||
"POT-Creation-Date: 2000-04-12 09:57-0400\n"
|
||||
"POT-Creation-Date: 2000-04-13 12:17-0400\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"
|
||||
|
@ -1657,12 +1657,12 @@ msgstr "Nie mo
|
|||
msgid "Wrote: %s\n"
|
||||
msgstr "Zapisano: %s\n"
|
||||
|
||||
#: build/pack.c:519
|
||||
#: build/pack.c:518
|
||||
#, c-format
|
||||
msgid "Could not generate output filename for package %s: %s\n"
|
||||
msgstr "Nie mo¿na wygenerowaæ wyj¶ciowej nazwy dla pakietu %s: %s\n"
|
||||
|
||||
#: build/pack.c:536
|
||||
#: build/pack.c:535
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot create %s: %s\n"
|
||||
msgstr "nie mo¿na utworzyæ %s"
|
||||
|
@ -1789,7 +1789,7 @@ msgstr "linia %d: Pusta etykieta: %s"
|
|||
msgid "line %d: Illegal char '-' in %s: %s"
|
||||
msgstr "linia %d: Nielegalny znak '-' w %s: %s"
|
||||
|
||||
#: build/parsePreamble.c:445 build/parseSpec.c:375
|
||||
#: build/parsePreamble.c:445 build/parseSpec.c:374
|
||||
#, fuzzy, c-format
|
||||
msgid "BuildRoot can not be \"/\": %s"
|
||||
msgstr "linia %d: wpis BuildRoot nie mo¿e byæ \"/\": %s"
|
||||
|
@ -1979,7 +1979,7 @@ msgstr "%s:%d: Napotkano %%endif bez if"
|
|||
msgid "malformed %%include statement"
|
||||
msgstr "b³ednie sformatowany wpis %%include"
|
||||
|
||||
#: build/parseSpec.c:470
|
||||
#: build/parseSpec.c:469
|
||||
msgid "No buildable architectures"
|
||||
msgstr "Nie mo¿na budowaæ na takie architektury"
|
||||
|
||||
|
@ -1992,17 +1992,17 @@ msgstr "Pakiet nie ma %%description: %s"
|
|||
msgid "archive = %s, fs = %s\n"
|
||||
msgstr "archiwum = %s fs = %s\n"
|
||||
|
||||
#: build/spec.c:245
|
||||
#: build/spec.c:244
|
||||
#, c-format
|
||||
msgid "line %d: Bad number: %s"
|
||||
msgstr "linia %d: B³êdny numer: %s"
|
||||
|
||||
#: build/spec.c:251
|
||||
#: build/spec.c:250
|
||||
#, c-format
|
||||
msgid "line %d: Bad no%s number: %d"
|
||||
msgstr "linia %d: b³êdny numer no%s: %d"
|
||||
|
||||
#: build/spec.c:310
|
||||
#: build/spec.c:309
|
||||
#, c-format
|
||||
msgid "line %d: Bad %s number: %s\n"
|
||||
msgstr "linia %d: B³êdny numer %s: %s\n"
|
||||
|
@ -2089,89 +2089,85 @@ msgid "error removing record %s into %s"
|
|||
msgstr "b³±d usuwania rekordu %s z %s"
|
||||
|
||||
#. XXX legacy epoch-less requires/conflicts compatibility
|
||||
#: lib/depends.c:417
|
||||
#: lib/depends.c:430
|
||||
#, c-format
|
||||
msgid ""
|
||||
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
|
||||
"\tA %s\tB %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:446
|
||||
#: lib/depends.c:459
|
||||
#, c-format
|
||||
msgid " %s A %s\tB %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:538
|
||||
msgid "dbrecMatchesDepFlags() failed to read header"
|
||||
msgstr "dbrecMatchesDepFlags() odczyt nag³ówka nie powiód³ siê"
|
||||
|
||||
#: lib/depends.c:795
|
||||
#: lib/depends.c:788
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by added file list.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:834
|
||||
#: lib/depends.c:836
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s satisfied by added package.\n"
|
||||
msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
|
||||
|
||||
#: lib/depends.c:851
|
||||
#: lib/depends.c:853
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by added provide.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:882
|
||||
#: lib/depends.c:886
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by rpmrc provides.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:909
|
||||
#: lib/depends.c:914
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by db file lists.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:934
|
||||
#: lib/depends.c:932
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by db provides.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:959
|
||||
#: lib/depends.c:949
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s satisfied by db packages.\n"
|
||||
msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
|
||||
|
||||
#: lib/depends.c:976
|
||||
#: lib/depends.c:961
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by rpmlib version.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:986
|
||||
#: lib/depends.c:971
|
||||
#, c-format
|
||||
msgid "%s: %s unsatisfied.\n"
|
||||
msgstr ""
|
||||
|
||||
#. requirements are not satisfied.
|
||||
#: lib/depends.c:1038
|
||||
#: lib/depends.c:1019
|
||||
#, c-format
|
||||
msgid "package %s require not satisfied: %s\n"
|
||||
msgstr "zale¿no¶ci pakietu %s nie zosta³y spe³nione: %s\n"
|
||||
|
||||
#. conflicts exist.
|
||||
#: lib/depends.c:1100
|
||||
#: lib/depends.c:1081
|
||||
#, c-format
|
||||
msgid "package %s conflicts: %s\n"
|
||||
msgstr "pakiet %s jest w konflikcie: %s\n"
|
||||
|
||||
#: lib/depends.c:1155 lib/depends.c:1450
|
||||
#, c-format
|
||||
msgid "cannot read header at %d for dependency check"
|
||||
msgstr "nie mo¿na odczytaæ nag³ówka %d dla sprawdzenia zale¿no¶ci"
|
||||
|
||||
#: lib/depends.c:1246
|
||||
#: lib/depends.c:1211
|
||||
#, c-format
|
||||
msgid "loop in prerequisite chain: %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1415
|
||||
#, c-format
|
||||
msgid "cannot read header at %d for dependency check"
|
||||
msgstr "nie mo¿na odczytaæ nag³ówka %d dla sprawdzenia zale¿no¶ci"
|
||||
|
||||
#: lib/falloc.c:135
|
||||
#, c-format
|
||||
msgid ""
|
||||
|
@ -2355,7 +2351,7 @@ msgstr "pakiet
|
|||
msgid "renaming %s to %s\n"
|
||||
msgstr "zmiana nazwy %s na %s\n"
|
||||
|
||||
#: lib/install.c:562 lib/install.c:834 lib/uninstall.c:29
|
||||
#: lib/install.c:562 lib/install.c:838 lib/uninstall.c:29
|
||||
#, c-format
|
||||
msgid "rename of %s to %s failed: %s"
|
||||
msgstr "zmiana nazwy z %s na %s nie powiod³a sie: %s"
|
||||
|
@ -2369,25 +2365,25 @@ msgstr "spodziewany pakiet
|
|||
msgid "package: %s-%s-%s files test = %d\n"
|
||||
msgstr "pakiet: %s-%s-%s test plików = %d\n"
|
||||
|
||||
#: lib/install.c:764
|
||||
#: lib/install.c:768
|
||||
msgid "stopping install as we're running --test\n"
|
||||
msgstr "przebieg testowy - instalacja zatrzymana\n"
|
||||
|
||||
#: lib/install.c:769
|
||||
#: lib/install.c:773
|
||||
msgid "running preinstall script (if any)\n"
|
||||
msgstr "uruchamianie skryptu preinstall (je¶li istnieje)\n"
|
||||
|
||||
#: lib/install.c:794
|
||||
#: lib/install.c:798
|
||||
#, c-format
|
||||
msgid "warning: %s created as %s"
|
||||
msgstr "ostrze¿enie: %s utworzony jako %s"
|
||||
|
||||
#: lib/install.c:830
|
||||
#: lib/install.c:834
|
||||
#, c-format
|
||||
msgid "warning: %s saved as %s"
|
||||
msgstr "ostrze¿enie: %s zapisany jako %s"
|
||||
|
||||
#: lib/install.c:904
|
||||
#: lib/install.c:908
|
||||
#, fuzzy
|
||||
msgid "running postinstall scripts (if any)\n"
|
||||
msgstr "uruchamianie skryptu postinstall (je¶li istnieje)\n"
|
||||
|
@ -2663,132 +2659,128 @@ msgstr "odpytywanie %s nie powiod
|
|||
msgid "query of specfile %s failed, can't parse\n"
|
||||
msgstr "odpytywanie pliku spec %s nie powiod³o siê, nie mo¿na interpretowaæ\n"
|
||||
|
||||
#: lib/query.c:586
|
||||
msgid "could not read database record!\n"
|
||||
msgstr "nie mo¿na odczytaæ rekordu bazy!\n"
|
||||
|
||||
#: lib/query.c:597
|
||||
#: lib/query.c:581
|
||||
#, fuzzy
|
||||
msgid "no packages\n"
|
||||
msgstr "znaleziono %d pakietów\n"
|
||||
|
||||
#: lib/query.c:608 lib/query.c:616
|
||||
#: lib/query.c:591
|
||||
#, c-format
|
||||
msgid "group %s does not contain any packages\n"
|
||||
msgstr "grupa %s nie zawiera ¿adnych pakietów\n"
|
||||
|
||||
#: lib/query.c:627 lib/query.c:635
|
||||
#: lib/query.c:601
|
||||
#, c-format
|
||||
msgid "no package triggers %s\n"
|
||||
msgstr "¿aden pakiet nie zahacza %s\n"
|
||||
|
||||
#: lib/query.c:646 lib/query.c:654
|
||||
#: lib/query.c:611
|
||||
#, c-format
|
||||
msgid "no package requires %s\n"
|
||||
msgstr "¿aden pakiet nie wymaga %s\n"
|
||||
|
||||
#: lib/query.c:666 lib/query.c:674
|
||||
#: lib/query.c:622
|
||||
#, c-format
|
||||
msgid "no package provides %s\n"
|
||||
msgstr "¿aden pakiet nie udostêpnia %s\n"
|
||||
|
||||
#: lib/query.c:691 lib/query.c:709
|
||||
#: lib/query.c:638
|
||||
#, c-format
|
||||
msgid "file %s: %s\n"
|
||||
msgstr "plik %s: %s\n"
|
||||
|
||||
#: lib/query.c:694 lib/query.c:712
|
||||
#: lib/query.c:641
|
||||
#, 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:735
|
||||
#: lib/query.c:663
|
||||
#, c-format
|
||||
msgid "invalid package number: %s\n"
|
||||
msgstr "b³êdny numer pakietu: %s\n"
|
||||
|
||||
#: lib/query.c:738
|
||||
#: lib/query.c:666
|
||||
#, c-format
|
||||
msgid "package record number: %d\n"
|
||||
msgstr "numer rekordu pakietu: %d\n"
|
||||
|
||||
#: lib/query.c:742 lib/query.c:751
|
||||
#: lib/query.c:669
|
||||
#, c-format
|
||||
msgid "record %d could not be read\n"
|
||||
msgstr "nie mo¿na odczytaæ rekordu %d\n"
|
||||
|
||||
#: lib/query.c:763 lib/rpminstall.c:436
|
||||
#: lib/query.c:680 lib/rpminstall.c:436
|
||||
#, c-format
|
||||
msgid "package %s is not installed\n"
|
||||
msgstr "pakiet %s nie jest zainstalowany\n"
|
||||
|
||||
#: lib/query.c:766
|
||||
#: lib/query.c:683
|
||||
#, c-format
|
||||
msgid "error looking for package %s\n"
|
||||
msgstr "b³±d szukania pakietu %s\n"
|
||||
|
||||
#: lib/query.c:791
|
||||
#: lib/query.c:708
|
||||
msgid "rpmQuery: rpmdbOpen() failed\n"
|
||||
msgstr "rpmQuery: rpmdbOpen() nie powiod³o siê\n"
|
||||
|
||||
#: lib/query.c:850
|
||||
#: lib/query.c:767
|
||||
msgid "query package owning file"
|
||||
msgstr "sprawdzanie do jakiego pakietu nale¿y plik"
|
||||
|
||||
#: lib/query.c:852
|
||||
#: lib/query.c:769
|
||||
msgid "query packages in group"
|
||||
msgstr "odpytywanie pakietów w grupie"
|
||||
|
||||
#: lib/query.c:854
|
||||
#: lib/query.c:771
|
||||
msgid "query a package file"
|
||||
msgstr "odpytywanie pakietu"
|
||||
|
||||
#: lib/query.c:858
|
||||
#: lib/query.c:775
|
||||
msgid "query a spec file"
|
||||
msgstr "odpytywanie pliku spec"
|
||||
|
||||
#: lib/query.c:860
|
||||
#: lib/query.c:777
|
||||
msgid "query the pacakges triggered by the package"
|
||||
msgstr "odpytywanie pakietów zahaczanych przez pakiet"
|
||||
|
||||
#: lib/query.c:862
|
||||
#: lib/query.c:779
|
||||
msgid "query the packages which require a capability"
|
||||
msgstr "odpytywanie pakietów wymagaj±cych zasobu"
|
||||
|
||||
#: lib/query.c:864
|
||||
#: lib/query.c:781
|
||||
msgid "query the packages which provide a capability"
|
||||
msgstr "odpytywanie pakietów udostêpniaj±cych zasób"
|
||||
|
||||
#: lib/query.c:903
|
||||
#: lib/query.c:820
|
||||
msgid "list all configuration files"
|
||||
msgstr "wy¶wietl wszystkie pliki konfiguracyjne"
|
||||
|
||||
#: lib/query.c:905
|
||||
#: lib/query.c:822
|
||||
msgid "list all documentation files"
|
||||
msgstr "wy¶wietl wszystkie pliki dokumentacji"
|
||||
|
||||
#: lib/query.c:907
|
||||
#: lib/query.c:824
|
||||
msgid "dump basic file information"
|
||||
msgstr "podaj postawowe informacje o pliku"
|
||||
|
||||
#: lib/query.c:909
|
||||
#: lib/query.c:826
|
||||
msgid "list files in package"
|
||||
msgstr "wy¶wietl pliki zawarte w pakiecie"
|
||||
|
||||
#: lib/query.c:913
|
||||
#: lib/query.c:830
|
||||
msgid "use the following query format"
|
||||
msgstr "u¿yj nastêpuj±cego formatu zapytania"
|
||||
|
||||
#: lib/query.c:915
|
||||
#: lib/query.c:832
|
||||
#, fuzzy
|
||||
msgid "substitute i18n sections into spec file"
|
||||
msgstr "pakiet ¼ród³owy nie zawiera pliku .spec"
|
||||
|
||||
#: lib/query.c:917
|
||||
#: lib/query.c:834
|
||||
msgid "display the states of the listed files"
|
||||
msgstr "wy¶wietl status pokazywanych plików"
|
||||
|
||||
#: lib/query.c:919
|
||||
#: lib/query.c:836
|
||||
msgid "display a verbose file listing"
|
||||
msgstr "wy¶wietl wiêcej informacji o plikach z listy"
|
||||
|
||||
|
@ -2826,40 +2818,30 @@ msgstr "otwieranie starej bazy danych\n"
|
|||
msgid "opening new database with dbi_major %d\n"
|
||||
msgstr "otwieranie nowej bazy danych\n"
|
||||
|
||||
#: lib/rebuilddb.c:112
|
||||
#, c-format
|
||||
msgid "record number %d in database is bad -- skipping it"
|
||||
msgstr "rekord numer %d w bazie danych jest b³êdny -- rekord pominiêto"
|
||||
|
||||
#: lib/rebuilddb.c:131
|
||||
#: lib/rebuilddb.c:111
|
||||
#, fuzzy, c-format
|
||||
msgid "record number %d in database is bad -- skipping."
|
||||
msgstr "rekord numer %d w bazie danych jest b³êdny -- rekord pominiêto"
|
||||
|
||||
#: lib/rebuilddb.c:146
|
||||
#, c-format
|
||||
msgid "duplicated database entry: %s-%s-%s -- skipping."
|
||||
msgstr ""
|
||||
|
||||
#: lib/rebuilddb.c:162
|
||||
#: lib/rebuilddb.c:140
|
||||
#, c-format
|
||||
msgid "cannot add record originally at %d"
|
||||
msgstr "nie mo¿na dodaæ rekordu oryginalnie przy %d"
|
||||
|
||||
#: lib/rebuilddb.c:186
|
||||
#: lib/rebuilddb.c:156
|
||||
msgid "failed to rebuild database; original database remains in place\n"
|
||||
msgstr "przebudowanie bazy nie powiod³o siê; stara pozosta³a na miejscu\n"
|
||||
|
||||
#: lib/rebuilddb.c:194
|
||||
#: lib/rebuilddb.c:164
|
||||
msgid "failed to replace old database with new database!\n"
|
||||
msgstr "zamiana starej bazy na now± nie powiod³a siê!\n"
|
||||
|
||||
#: lib/rebuilddb.c:196
|
||||
#: lib/rebuilddb.c:166
|
||||
#, fuzzy, c-format
|
||||
msgid "replace files in %s with files from %s to recover"
|
||||
msgstr "naprawcze zastêpowanie plików w %s plikami z %s"
|
||||
|
||||
#: lib/rebuilddb.c:202
|
||||
#: lib/rebuilddb.c:172
|
||||
#, c-format
|
||||
msgid "failed to remove directory %s: %s\n"
|
||||
msgstr "usuniêcie katalogu %s nie powiod³o siê: %s\n"
|
||||
|
@ -2957,62 +2939,62 @@ msgstr ""
|
|||
"nowym formacie"
|
||||
|
||||
#. error
|
||||
#: lib/rpmdb.c:442
|
||||
#: lib/rpmdb.c:390
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot retrieve package \"%s\" from db"
|
||||
msgstr "nie mo¿na otworzyæ %s/packages.rpm\n"
|
||||
|
||||
#: lib/rpmdb.c:598
|
||||
#: lib/rpmdb.c:613
|
||||
#, fuzzy, c-format
|
||||
msgid "package not found with key \"%s\" in %s"
|
||||
msgstr "pakiet %s nie znaleziony w %s"
|
||||
|
||||
#: lib/rpmdb.c:607
|
||||
#: lib/rpmdb.c:622
|
||||
#, fuzzy, c-format
|
||||
msgid "key \"%s\" not found in %s"
|
||||
msgstr "pakiet %s nie znaleziony w %s"
|
||||
|
||||
#: lib/rpmdb.c:625
|
||||
#: lib/rpmdb.c:640
|
||||
#, fuzzy, c-format
|
||||
msgid "rpmdbRemove: cannot read header at 0x%x"
|
||||
msgstr "nie mo¿na odczytaæ nag³ówka przy %d dla poszukiwania"
|
||||
|
||||
#: lib/rpmdb.c:650
|
||||
#: lib/rpmdb.c:665
|
||||
#, fuzzy, c-format
|
||||
msgid "removing 0 %s entries.\n"
|
||||
msgstr "usuwanie wpisu w bazie\n"
|
||||
|
||||
#: lib/rpmdb.c:656
|
||||
#: lib/rpmdb.c:671
|
||||
#, fuzzy, c-format
|
||||
msgid "removing \"%s\" from %s index.\n"
|
||||
msgstr "usuwanie indeksu grupy\n"
|
||||
|
||||
#: lib/rpmdb.c:664
|
||||
#: lib/rpmdb.c:679
|
||||
#, fuzzy, c-format
|
||||
msgid "removing %d entries in %s index:\n"
|
||||
msgstr "usuwanie indeksu nazw\n"
|
||||
|
||||
#: lib/rpmdb.c:668 lib/rpmdb.c:865
|
||||
#: lib/rpmdb.c:683 lib/rpmdb.c:880
|
||||
#, c-format
|
||||
msgid "\t%6d %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:803
|
||||
#: lib/rpmdb.c:818
|
||||
#, fuzzy
|
||||
msgid "cannot allocate new instance in database"
|
||||
msgstr "nie mo¿na alokowaæ przestrzeni dla bazy danych"
|
||||
|
||||
#: lib/rpmdb.c:842
|
||||
#: lib/rpmdb.c:857
|
||||
#, c-format
|
||||
msgid "adding 0 %s entries.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:854
|
||||
#: lib/rpmdb.c:869
|
||||
#, fuzzy, c-format
|
||||
msgid "adding \"%s\" to %s index.\n"
|
||||
msgstr "zmiana nazwy %s na %s\n"
|
||||
|
||||
#: lib/rpmdb.c:861
|
||||
#: lib/rpmdb.c:876
|
||||
#, c-format
|
||||
msgid "adding %d entries to %s index:\n"
|
||||
msgstr ""
|
||||
|
@ -3415,22 +3397,22 @@ msgstr "Musisz ustawi
|
|||
msgid "excluding file %s%s\n"
|
||||
msgstr "wy³±czanie %s\n"
|
||||
|
||||
#: lib/transaction.c:427 lib/transaction.c:511
|
||||
#: lib/transaction.c:426 lib/transaction.c:509
|
||||
#, fuzzy, c-format
|
||||
msgid "excluding directory %s\n"
|
||||
msgstr "tworzenie katalogu: %s\n"
|
||||
|
||||
#: lib/transaction.c:432
|
||||
#: lib/transaction.c:431
|
||||
#, c-format
|
||||
msgid "relocating %s to %s\n"
|
||||
msgstr "przesuwanie %s do %s\n"
|
||||
|
||||
#: lib/transaction.c:504
|
||||
#: lib/transaction.c:502
|
||||
#, fuzzy, c-format
|
||||
msgid "relocating directory %s to %s\n"
|
||||
msgstr "przesuwanie %s do %s\n"
|
||||
|
||||
#: lib/transaction.c:656
|
||||
#: lib/transaction.c:654
|
||||
#, c-format
|
||||
msgid "%s skipped due to missingok flag\n"
|
||||
msgstr "%s pominiêty z powodu flagi missingok\n"
|
||||
|
@ -3542,6 +3524,15 @@ msgstr "Niespe
|
|||
msgid "rpmVerify: rpmdbOpen() failed\n"
|
||||
msgstr "rpmVerify: rpmdbOpen() nie powiod³o siê\n"
|
||||
|
||||
#~ msgid "dbrecMatchesDepFlags() failed to read header"
|
||||
#~ msgstr "dbrecMatchesDepFlags() odczyt nag³ówka nie powiód³ siê"
|
||||
|
||||
#~ msgid "could not read database record!\n"
|
||||
#~ msgstr "nie mo¿na odczytaæ rekordu bazy!\n"
|
||||
|
||||
#~ msgid "record number %d in database is bad -- skipping it"
|
||||
#~ msgstr "rekord numer %d w bazie danych jest b³êdny -- rekord pominiêto"
|
||||
|
||||
#~ msgid "opening database mode 0x%x in %s\n"
|
||||
#~ msgstr "otwiernie bazê danych w trybie 0x%x w %s\n"
|
||||
|
||||
|
|
184
po/pt_BR.po
184
po/pt_BR.po
|
@ -2,7 +2,7 @@
|
|||
# Revised by Arnaldo Carvalho de Melo <acme@conectiva.com.br>, 1998.
|
||||
#
|
||||
msgid ""
|
||||
msgstr "POT-Creation-Date: 2000-04-12 09:57-0400\n"
|
||||
msgstr "POT-Creation-Date: 2000-04-13 12:17-0400\n"
|
||||
|
||||
#: build.c:25 lib/rpminstall.c:250 lib/rpminstall.c:425
|
||||
#, c-format
|
||||
|
@ -1784,13 +1784,13 @@ msgstr "N
|
|||
msgid "Wrote: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/pack.c:519
|
||||
#: build/pack.c:518
|
||||
#, c-format
|
||||
msgid "Could not generate output filename for package %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
# , c-format
|
||||
#: build/pack.c:536
|
||||
#: build/pack.c:535
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot create %s: %s\n"
|
||||
msgstr "Não consegui abrir: %s\n"
|
||||
|
@ -1921,7 +1921,7 @@ msgstr ""
|
|||
msgid "line %d: Illegal char '-' in %s: %s"
|
||||
msgstr "Não consegui abrir: %s\n"
|
||||
|
||||
#: build/parsePreamble.c:445 build/parseSpec.c:375
|
||||
#: build/parsePreamble.c:445 build/parseSpec.c:374
|
||||
#, c-format
|
||||
msgid "BuildRoot can not be \"/\": %s"
|
||||
msgstr ""
|
||||
|
@ -2116,7 +2116,7 @@ msgid "malformed %%include statement"
|
|||
msgstr ""
|
||||
|
||||
# , c-format
|
||||
#: build/parseSpec.c:470
|
||||
#: build/parseSpec.c:469
|
||||
#, fuzzy
|
||||
msgid "No buildable architectures"
|
||||
msgstr "%s não pode ser construido nesta arquitetura\n"
|
||||
|
@ -2131,17 +2131,17 @@ msgstr "n
|
|||
msgid "archive = %s, fs = %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/spec.c:245
|
||||
#: build/spec.c:244
|
||||
#, c-format
|
||||
msgid "line %d: Bad number: %s"
|
||||
msgstr ""
|
||||
|
||||
#: build/spec.c:251
|
||||
#: build/spec.c:250
|
||||
#, c-format
|
||||
msgid "line %d: Bad no%s number: %d"
|
||||
msgstr ""
|
||||
|
||||
#: build/spec.c:310
|
||||
#: build/spec.c:309
|
||||
#, c-format
|
||||
msgid "line %d: Bad %s number: %s\n"
|
||||
msgstr ""
|
||||
|
@ -2232,89 +2232,85 @@ msgid "error removing record %s into %s"
|
|||
msgstr ""
|
||||
|
||||
#. XXX legacy epoch-less requires/conflicts compatibility
|
||||
#: lib/depends.c:417
|
||||
#: lib/depends.c:430
|
||||
#, c-format
|
||||
msgid ""
|
||||
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
|
||||
"\tA %s\tB %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:446
|
||||
#: lib/depends.c:459
|
||||
#, c-format
|
||||
msgid " %s A %s\tB %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:538
|
||||
msgid "dbrecMatchesDepFlags() failed to read header"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:795
|
||||
#: lib/depends.c:788
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by added file list.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:834
|
||||
#: lib/depends.c:836
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by added package.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:851
|
||||
#: lib/depends.c:853
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by added provide.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:882
|
||||
#: lib/depends.c:886
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by rpmrc provides.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:909
|
||||
#: lib/depends.c:914
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by db file lists.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:934
|
||||
#: lib/depends.c:932
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by db provides.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:959
|
||||
#: lib/depends.c:949
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by db packages.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:976
|
||||
#: lib/depends.c:961
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by rpmlib version.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:986
|
||||
#: lib/depends.c:971
|
||||
#, c-format
|
||||
msgid "%s: %s unsatisfied.\n"
|
||||
msgstr ""
|
||||
|
||||
#. requirements are not satisfied.
|
||||
#: lib/depends.c:1038
|
||||
#: lib/depends.c:1019
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s require not satisfied: %s\n"
|
||||
msgstr "não foi passado pacote para instalação"
|
||||
|
||||
#. conflicts exist.
|
||||
#: lib/depends.c:1100
|
||||
#: lib/depends.c:1081
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s conflicts: %s\n"
|
||||
msgstr "não foi passado pacote para desinstalação"
|
||||
|
||||
#: lib/depends.c:1155 lib/depends.c:1450
|
||||
#, c-format
|
||||
msgid "cannot read header at %d for dependency check"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1246
|
||||
#: lib/depends.c:1211
|
||||
#, c-format
|
||||
msgid "loop in prerequisite chain: %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1415
|
||||
#, c-format
|
||||
msgid "cannot read header at %d for dependency check"
|
||||
msgstr ""
|
||||
|
||||
#: lib/falloc.c:135
|
||||
#, c-format
|
||||
msgid ""
|
||||
|
@ -2507,7 +2503,7 @@ msgstr "pesquise o pacote ao qual <arquivo> pertence"
|
|||
msgid "renaming %s to %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/install.c:562 lib/install.c:834 lib/uninstall.c:29
|
||||
#: lib/install.c:562 lib/install.c:838 lib/uninstall.c:29
|
||||
#, c-format
|
||||
msgid "rename of %s to %s failed: %s"
|
||||
msgstr ""
|
||||
|
@ -2521,25 +2517,25 @@ msgstr ""
|
|||
msgid "package: %s-%s-%s files test = %d\n"
|
||||
msgstr "não foi passado pacote para instalação"
|
||||
|
||||
#: lib/install.c:764
|
||||
#: lib/install.c:768
|
||||
msgid "stopping install as we're running --test\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/install.c:769
|
||||
#: lib/install.c:773
|
||||
msgid "running preinstall script (if any)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/install.c:794
|
||||
#: lib/install.c:798
|
||||
#, c-format
|
||||
msgid "warning: %s created as %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/install.c:830
|
||||
#: lib/install.c:834
|
||||
#, c-format
|
||||
msgid "warning: %s saved as %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/install.c:904
|
||||
#: lib/install.c:908
|
||||
msgid "running postinstall scripts (if any)\n"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2816,143 +2812,139 @@ msgstr ""
|
|||
msgid "query of specfile %s failed, can't parse\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:586
|
||||
msgid "could not read database record!\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:597
|
||||
#: lib/query.c:581
|
||||
#, fuzzy
|
||||
msgid "no packages\n"
|
||||
msgstr "pesquise todos os pacotes"
|
||||
|
||||
#: lib/query.c:608 lib/query.c:616
|
||||
#: lib/query.c:591
|
||||
#, c-format
|
||||
msgid "group %s does not contain any packages\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:627 lib/query.c:635
|
||||
#: lib/query.c:601
|
||||
#, fuzzy, c-format
|
||||
msgid "no package triggers %s\n"
|
||||
msgstr "não foram passados pacotes para assinatura"
|
||||
|
||||
#: lib/query.c:646 lib/query.c:654
|
||||
#: lib/query.c:611
|
||||
#, c-format
|
||||
msgid "no package requires %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:666 lib/query.c:674
|
||||
#: lib/query.c:622
|
||||
#, c-format
|
||||
msgid "no package provides %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:691 lib/query.c:709
|
||||
#: lib/query.c:638
|
||||
#, c-format
|
||||
msgid "file %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:694 lib/query.c:712
|
||||
#: lib/query.c:641
|
||||
#, c-format
|
||||
msgid "file %s is not owned by any package\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:735
|
||||
#: lib/query.c:663
|
||||
#, c-format
|
||||
msgid "invalid package number: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:738
|
||||
#: lib/query.c:666
|
||||
#, c-format
|
||||
msgid "package record number: %d\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:742 lib/query.c:751
|
||||
#: lib/query.c:669
|
||||
#, c-format
|
||||
msgid "record %d could not be read\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:763 lib/rpminstall.c:436
|
||||
#: lib/query.c:680 lib/rpminstall.c:436
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s is not installed\n"
|
||||
msgstr "não foi passado pacote para instalação"
|
||||
|
||||
#: lib/query.c:766
|
||||
#: lib/query.c:683
|
||||
#, c-format
|
||||
msgid "error looking for package %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:791
|
||||
#: lib/query.c:708
|
||||
msgid "rpmQuery: rpmdbOpen() failed\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:850
|
||||
#: lib/query.c:767
|
||||
#, fuzzy
|
||||
msgid "query package owning file"
|
||||
msgstr "pesquise o pacote ao qual <arquivo> pertence"
|
||||
|
||||
#: lib/query.c:852
|
||||
#: lib/query.c:769
|
||||
#, fuzzy
|
||||
msgid "query packages in group"
|
||||
msgstr "não foi passado pacote para desinstalação"
|
||||
|
||||
#: lib/query.c:854
|
||||
#: lib/query.c:771
|
||||
#, fuzzy
|
||||
msgid "query a package file"
|
||||
msgstr "pesquise todos os pacotes"
|
||||
|
||||
#: lib/query.c:858
|
||||
#: lib/query.c:775
|
||||
#, fuzzy
|
||||
msgid "query a spec file"
|
||||
msgstr "pesquise todos os pacotes"
|
||||
|
||||
#: lib/query.c:860
|
||||
#: lib/query.c:777
|
||||
#, fuzzy
|
||||
msgid "query the pacakges triggered by the package"
|
||||
msgstr "pesquise o pacote ao qual <arquivo> pertence"
|
||||
|
||||
#: lib/query.c:862
|
||||
#: lib/query.c:779
|
||||
#, fuzzy
|
||||
msgid "query the packages which require a capability"
|
||||
msgstr "pesquise pacotes que requerem capacidade <i>"
|
||||
|
||||
#: lib/query.c:864
|
||||
#: lib/query.c:781
|
||||
#, fuzzy
|
||||
msgid "query the packages which provide a capability"
|
||||
msgstr "pesquise pacotes que fornecem a capacidade <i>"
|
||||
|
||||
#: lib/query.c:903
|
||||
#: lib/query.c:820
|
||||
#, fuzzy
|
||||
msgid "list all configuration files"
|
||||
msgstr "liste somente os arquivos de configuração (implica -l)"
|
||||
|
||||
#: lib/query.c:905
|
||||
#: lib/query.c:822
|
||||
#, fuzzy
|
||||
msgid "list all documentation files"
|
||||
msgstr "instale documentação"
|
||||
|
||||
#: lib/query.c:907
|
||||
#: lib/query.c:824
|
||||
#, fuzzy
|
||||
msgid "dump basic file information"
|
||||
msgstr "mostre informação do pacote"
|
||||
|
||||
#: lib/query.c:909
|
||||
#: lib/query.c:826
|
||||
#, fuzzy
|
||||
msgid "list files in package"
|
||||
msgstr "instale pacote"
|
||||
|
||||
#: lib/query.c:913
|
||||
#: lib/query.c:830
|
||||
msgid "use the following query format"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:915
|
||||
#: lib/query.c:832
|
||||
#, fuzzy
|
||||
msgid "substitute i18n sections into spec file"
|
||||
msgstr "pesquise o pacote ao qual <arquivo> pertence"
|
||||
|
||||
#: lib/query.c:917
|
||||
#: lib/query.c:834
|
||||
msgid "display the states of the listed files"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:919
|
||||
#: lib/query.c:836
|
||||
#, fuzzy
|
||||
msgid "display a verbose file listing"
|
||||
msgstr "mostre a lista de arquivos do pacote"
|
||||
|
@ -2991,41 +2983,31 @@ msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
|
|||
msgid "opening new database with dbi_major %d\n"
|
||||
msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
|
||||
|
||||
#: lib/rebuilddb.c:112
|
||||
#, c-format
|
||||
msgid "record number %d in database is bad -- skipping it"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rebuilddb.c:131
|
||||
#: lib/rebuilddb.c:111
|
||||
#, c-format
|
||||
msgid "record number %d in database is bad -- skipping."
|
||||
msgstr ""
|
||||
|
||||
#: lib/rebuilddb.c:146
|
||||
#, c-format
|
||||
msgid "duplicated database entry: %s-%s-%s -- skipping."
|
||||
msgstr ""
|
||||
|
||||
#: lib/rebuilddb.c:162
|
||||
#: lib/rebuilddb.c:140
|
||||
#, c-format
|
||||
msgid "cannot add record originally at %d"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rebuilddb.c:186
|
||||
#: lib/rebuilddb.c:156
|
||||
msgid "failed to rebuild database; original database remains in place\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rebuilddb.c:194
|
||||
#: lib/rebuilddb.c:164
|
||||
msgid "failed to replace old database with new database!\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rebuilddb.c:196
|
||||
#: lib/rebuilddb.c:166
|
||||
#, c-format
|
||||
msgid "replace files in %s with files from %s to recover"
|
||||
msgstr ""
|
||||
|
||||
# , c-format
|
||||
#: lib/rebuilddb.c:202
|
||||
#: lib/rebuilddb.c:172
|
||||
#, fuzzy, c-format
|
||||
msgid "failed to remove directory %s: %s\n"
|
||||
msgstr "Não consegui abrir: %s\n"
|
||||
|
@ -3126,61 +3108,61 @@ msgstr ""
|
|||
|
||||
# , c-format
|
||||
#. error
|
||||
#: lib/rpmdb.c:442
|
||||
#: lib/rpmdb.c:390
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot retrieve package \"%s\" from db"
|
||||
msgstr "Não consegui abrir: %s\n"
|
||||
|
||||
#: lib/rpmdb.c:598
|
||||
#: lib/rpmdb.c:613
|
||||
#, fuzzy, c-format
|
||||
msgid "package not found with key \"%s\" in %s"
|
||||
msgstr "não foi passado pacote para desinstalação"
|
||||
|
||||
#: lib/rpmdb.c:607
|
||||
#: lib/rpmdb.c:622
|
||||
#, fuzzy, c-format
|
||||
msgid "key \"%s\" not found in %s"
|
||||
msgstr "não foi passado pacote para desinstalação"
|
||||
|
||||
#: lib/rpmdb.c:625
|
||||
#: lib/rpmdb.c:640
|
||||
#, c-format
|
||||
msgid "rpmdbRemove: cannot read header at 0x%x"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:650
|
||||
#: lib/rpmdb.c:665
|
||||
#, c-format
|
||||
msgid "removing 0 %s entries.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:656
|
||||
#: lib/rpmdb.c:671
|
||||
#, c-format
|
||||
msgid "removing \"%s\" from %s index.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:664
|
||||
#: lib/rpmdb.c:679
|
||||
#, c-format
|
||||
msgid "removing %d entries in %s index:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:668 lib/rpmdb.c:865
|
||||
#: lib/rpmdb.c:683 lib/rpmdb.c:880
|
||||
#, c-format
|
||||
msgid "\t%6d %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:803
|
||||
#: lib/rpmdb.c:818
|
||||
msgid "cannot allocate new instance in database"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:842
|
||||
#: lib/rpmdb.c:857
|
||||
#, c-format
|
||||
msgid "adding 0 %s entries.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:854
|
||||
#: lib/rpmdb.c:869
|
||||
#, c-format
|
||||
msgid "adding \"%s\" to %s index.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:861
|
||||
#: lib/rpmdb.c:876
|
||||
#, c-format
|
||||
msgid "adding %d entries to %s index:\n"
|
||||
msgstr ""
|
||||
|
@ -3622,23 +3604,23 @@ msgstr "RPM vers
|
|||
# "Content-Type: text/plain; charset=ISO-8859-1\n"
|
||||
# "Content-Transfer-Encoding: 8-bit\n"
|
||||
# , c-format
|
||||
#: lib/transaction.c:427 lib/transaction.c:511
|
||||
#: lib/transaction.c:426 lib/transaction.c:509
|
||||
#, fuzzy, c-format
|
||||
msgid "excluding directory %s\n"
|
||||
msgstr "RPM versão %s\n"
|
||||
|
||||
#: lib/transaction.c:432
|
||||
#: lib/transaction.c:431
|
||||
#, c-format
|
||||
msgid "relocating %s to %s\n"
|
||||
msgstr ""
|
||||
|
||||
# , c-format
|
||||
#: lib/transaction.c:504
|
||||
#: lib/transaction.c:502
|
||||
#, fuzzy, c-format
|
||||
msgid "relocating directory %s to %s\n"
|
||||
msgstr "Não consegui abrir: %s\n"
|
||||
|
||||
#: lib/transaction.c:656
|
||||
#: lib/transaction.c:654
|
||||
#, c-format
|
||||
msgid "%s skipped due to missingok flag\n"
|
||||
msgstr ""
|
||||
|
|
62
po/rpm.pot
62
po/rpm.pot
|
@ -6,7 +6,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2000-04-13 08:44-0400\n"
|
||||
"POT-Creation-Date: 2000-04-13 12:17-0400\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"
|
||||
|
@ -2020,23 +2020,19 @@ msgid "error removing record %s into %s"
|
|||
msgstr ""
|
||||
|
||||
#. XXX legacy epoch-less requires/conflicts compatibility
|
||||
#: lib/depends.c:417
|
||||
#: lib/depends.c:430
|
||||
#, c-format
|
||||
msgid ""
|
||||
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
|
||||
"\tA %s\tB %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:446
|
||||
#: lib/depends.c:459
|
||||
#, c-format
|
||||
msgid " %s A %s\tB %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:539
|
||||
msgid "dbrecMatchesDepFlags() failed to read header"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:797
|
||||
#: lib/depends.c:788
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by added file list.\n"
|
||||
msgstr ""
|
||||
|
@ -2056,49 +2052,49 @@ msgstr ""
|
|||
msgid "%s: %s satisfied by rpmrc provides.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:914 lib/depends.c:934
|
||||
#: lib/depends.c:914
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by db file lists.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:963
|
||||
#: lib/depends.c:932
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by db provides.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:984
|
||||
#: lib/depends.c:949
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by db packages.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:997
|
||||
#: lib/depends.c:961
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by rpmlib version.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1007
|
||||
#: lib/depends.c:971
|
||||
#, c-format
|
||||
msgid "%s: %s unsatisfied.\n"
|
||||
msgstr ""
|
||||
|
||||
#. requirements are not satisfied.
|
||||
#: lib/depends.c:1061
|
||||
#: lib/depends.c:1019
|
||||
#, c-format
|
||||
msgid "package %s require not satisfied: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#. conflicts exist.
|
||||
#: lib/depends.c:1123
|
||||
#: lib/depends.c:1081
|
||||
#, c-format
|
||||
msgid "package %s conflicts: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1253
|
||||
#: lib/depends.c:1211
|
||||
#, c-format
|
||||
msgid "loop in prerequisite chain: %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:1457
|
||||
#: lib/depends.c:1415
|
||||
#, c-format
|
||||
msgid "cannot read header at %d for dependency check"
|
||||
msgstr ""
|
||||
|
@ -2865,61 +2861,61 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. error
|
||||
#: lib/rpmdb.c:389
|
||||
#: lib/rpmdb.c:390
|
||||
#, c-format
|
||||
msgid "cannot retrieve package \"%s\" from db"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:612
|
||||
#: lib/rpmdb.c:613
|
||||
#, c-format
|
||||
msgid "package not found with key \"%s\" in %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:621
|
||||
#: lib/rpmdb.c:622
|
||||
#, c-format
|
||||
msgid "key \"%s\" not found in %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:639
|
||||
#: lib/rpmdb.c:640
|
||||
#, c-format
|
||||
msgid "rpmdbRemove: cannot read header at 0x%x"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:664
|
||||
#: lib/rpmdb.c:665
|
||||
#, c-format
|
||||
msgid "removing 0 %s entries.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:670
|
||||
#: lib/rpmdb.c:671
|
||||
#, c-format
|
||||
msgid "removing \"%s\" from %s index.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:678
|
||||
#: lib/rpmdb.c:679
|
||||
#, c-format
|
||||
msgid "removing %d entries in %s index:\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:682 lib/rpmdb.c:879
|
||||
#: lib/rpmdb.c:683 lib/rpmdb.c:880
|
||||
#, c-format
|
||||
msgid "\t%6d %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:817
|
||||
#: lib/rpmdb.c:818
|
||||
msgid "cannot allocate new instance in database"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:856
|
||||
#: lib/rpmdb.c:857
|
||||
#, c-format
|
||||
msgid "adding 0 %s entries.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:868
|
||||
#: lib/rpmdb.c:869
|
||||
#, c-format
|
||||
msgid "adding \"%s\" to %s index.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:875
|
||||
#: lib/rpmdb.c:876
|
||||
#, c-format
|
||||
msgid "adding %d entries to %s index:\n"
|
||||
msgstr ""
|
||||
|
@ -3320,22 +3316,22 @@ msgstr ""
|
|||
msgid "excluding file %s%s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/transaction.c:427 lib/transaction.c:511
|
||||
#: lib/transaction.c:426 lib/transaction.c:509
|
||||
#, c-format
|
||||
msgid "excluding directory %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/transaction.c:432
|
||||
#: lib/transaction.c:431
|
||||
#, c-format
|
||||
msgid "relocating %s to %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/transaction.c:504
|
||||
#: lib/transaction.c:502
|
||||
#, c-format
|
||||
msgid "relocating directory %s to %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/transaction.c:656
|
||||
#: lib/transaction.c:654
|
||||
#, c-format
|
||||
msgid "%s skipped due to missingok flag\n"
|
||||
msgstr ""
|
||||
|
|
193
po/ru.po
193
po/ru.po
|
@ -1,6 +1,6 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2000-04-12 09:57-0400\n"
|
||||
"POT-Creation-Date: 2000-04-13 12:17-0400\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=koi8-r\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -1665,12 +1665,12 @@ msgstr "
|
|||
msgid "Wrote: %s\n"
|
||||
msgstr "úÁÐÉÓÁÎ: %s\n"
|
||||
|
||||
#: build/pack.c:519
|
||||
#: build/pack.c:518
|
||||
#, c-format
|
||||
msgid "Could not generate output filename for package %s: %s\n"
|
||||
msgstr "îÅ ÍÏÇÕ ÓÇÅÎÅÒÉÒÏ×ÁÔØ ÉÍÑ ÆÁÊÌÁ ÄÌÑ ÐÁËÅÔÁ %s: %s\n"
|
||||
|
||||
#: build/pack.c:536
|
||||
#: build/pack.c:535
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot create %s: %s\n"
|
||||
msgstr "ÎÅ ÍÏÇÕ ÓÏÚÄÁÔØ %s"
|
||||
|
@ -1797,7 +1797,7 @@ msgstr "
|
|||
msgid "line %d: Illegal char '-' in %s: %s"
|
||||
msgstr "ÓÔÒÏËÁ %d: îÅÄÏÐÕÓÔÉÍÙÊ ÓÉÍ×ÏÌ '-' × %s: %s"
|
||||
|
||||
#: build/parsePreamble.c:445 build/parseSpec.c:375
|
||||
#: build/parsePreamble.c:445 build/parseSpec.c:374
|
||||
#, fuzzy, c-format
|
||||
msgid "BuildRoot can not be \"/\": %s"
|
||||
msgstr "ÓÔÒÏËÁ %d: BuildRoot ÎÅ ÍÏÖÅÔ ÂÙÔØ \"/\": %s"
|
||||
|
@ -1986,7 +1986,7 @@ msgstr "%s:%d:
|
|||
msgid "malformed %%include statement"
|
||||
msgstr "ÎÅ×ÅÒÎÏÅ ÏÂßÑ×ÌÅÎÉÅ %%include"
|
||||
|
||||
#: build/parseSpec.c:470
|
||||
#: build/parseSpec.c:469
|
||||
msgid "No buildable architectures"
|
||||
msgstr "îÅÔ ÁÒÈÉÔÅËÔÕÒ, ËÏÔÏÒÙÅ ÍÏÖÎÏ ÐÏÓÔÒÏÉÔØ"
|
||||
|
||||
|
@ -1999,17 +1999,17 @@ msgstr "
|
|||
msgid "archive = %s, fs = %s\n"
|
||||
msgstr "ÁÒÈÉ× = %s, fs = %s\n"
|
||||
|
||||
#: build/spec.c:245
|
||||
#: build/spec.c:244
|
||||
#, c-format
|
||||
msgid "line %d: Bad number: %s"
|
||||
msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÏÅ ÞÉÓÌÏ: %s"
|
||||
|
||||
#: build/spec.c:251
|
||||
#: build/spec.c:250
|
||||
#, c-format
|
||||
msgid "line %d: Bad no%s number: %d"
|
||||
msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÏÅ ÞÉÓÌÏ no%s: %d"
|
||||
|
||||
#: build/spec.c:310
|
||||
#: build/spec.c:309
|
||||
#, c-format
|
||||
msgid "line %d: Bad %s number: %s\n"
|
||||
msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÏÅ ÞÉÓÌÏ %s: %s\n"
|
||||
|
@ -2096,89 +2096,85 @@ msgid "error removing record %s into %s"
|
|||
msgstr "ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ÚÁÐÉÓÉ %s ÉÚ %s"
|
||||
|
||||
#. XXX legacy epoch-less requires/conflicts compatibility
|
||||
#: lib/depends.c:417
|
||||
#: lib/depends.c:430
|
||||
#, c-format
|
||||
msgid ""
|
||||
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
|
||||
"\tA %s\tB %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:446
|
||||
#: lib/depends.c:459
|
||||
#, c-format
|
||||
msgid " %s A %s\tB %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:538
|
||||
msgid "dbrecMatchesDepFlags() failed to read header"
|
||||
msgstr "ÏÛÉÂËÁ dbrecMatchesDepFlags() ÐÒÉ ÞÔÅÎÉÉ ÈÅÄÅÒÁ"
|
||||
|
||||
#: lib/depends.c:795
|
||||
#: lib/depends.c:788
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by added file list.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:834
|
||||
#: lib/depends.c:836
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s satisfied by added package.\n"
|
||||
msgstr "ÆÁÊÌ %s ÎÅ ÐÒÉÎÁÄÌÅÖÉÔ ÎÉ ÏÄÎÏÍÕ ÉÚ ÐÁËÅÔÏ×\n"
|
||||
|
||||
#: lib/depends.c:851
|
||||
#: lib/depends.c:853
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by added provide.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:882
|
||||
#: lib/depends.c:886
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by rpmrc provides.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:909
|
||||
#: lib/depends.c:914
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by db file lists.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:934
|
||||
#: lib/depends.c:932
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by db provides.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:959
|
||||
#: lib/depends.c:949
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s satisfied by db packages.\n"
|
||||
msgstr "ÆÁÊÌ %s ÎÅ ÐÒÉÎÁÄÌÅÖÉÔ ÎÉ ÏÄÎÏÍÕ ÉÚ ÐÁËÅÔÏ×\n"
|
||||
|
||||
#: lib/depends.c:976
|
||||
#: lib/depends.c:961
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by rpmlib version.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:986
|
||||
#: lib/depends.c:971
|
||||
#, c-format
|
||||
msgid "%s: %s unsatisfied.\n"
|
||||
msgstr ""
|
||||
|
||||
#. requirements are not satisfied.
|
||||
#: lib/depends.c:1038
|
||||
#: lib/depends.c:1019
|
||||
#, c-format
|
||||
msgid "package %s require not satisfied: %s\n"
|
||||
msgstr "ÔÒÅÂÏ×ÁÎÉÑ ÐÁËÅÔÁ %s ÎÅ ÕÄÏ×ÌÅÔ×ÏÒÅÎÙ: %s\n"
|
||||
|
||||
#. conflicts exist.
|
||||
#: lib/depends.c:1100
|
||||
#: lib/depends.c:1081
|
||||
#, c-format
|
||||
msgid "package %s conflicts: %s\n"
|
||||
msgstr "ÐÁËÅÔ %s ËÏÎÆÌÉËÔÕÅÔ Ó: %s\n"
|
||||
|
||||
#: lib/depends.c:1155 lib/depends.c:1450
|
||||
#, c-format
|
||||
msgid "cannot read header at %d for dependency check"
|
||||
msgstr "ÎÅ ÍÏÇÕ ÐÒÏÞÅÓÔØ ÈÅÄÅÒ × %d ÄÌÑ ÐÒÏ×ÅÒËÉ ÚÁ×ÉÓÉÍÏÓÔÅÊ"
|
||||
|
||||
#: lib/depends.c:1246
|
||||
#: lib/depends.c:1211
|
||||
#, c-format
|
||||
msgid "loop in prerequisite chain: %s"
|
||||
msgstr "ÚÁÍËÎÕÔÙÊ ÃÉËÌ × ÃÅÐÏÞËÅ ÔÒÅÂÏ×ÁÎÉÊ ÄÌÑ ÕÓÔÁÎÏ×ËÉ: %s"
|
||||
|
||||
#: lib/depends.c:1415
|
||||
#, c-format
|
||||
msgid "cannot read header at %d for dependency check"
|
||||
msgstr "ÎÅ ÍÏÇÕ ÐÒÏÞÅÓÔØ ÈÅÄÅÒ × %d ÄÌÑ ÐÒÏ×ÅÒËÉ ÚÁ×ÉÓÉÍÏÓÔÅÊ"
|
||||
|
||||
#: lib/falloc.c:135
|
||||
#, c-format
|
||||
msgid ""
|
||||
|
@ -2362,7 +2358,7 @@ msgstr "
|
|||
msgid "renaming %s to %s\n"
|
||||
msgstr "ÐÅÒÅÉÍÅÎÏ×Ù×ÁÀ %s × %s\n"
|
||||
|
||||
#: lib/install.c:562 lib/install.c:834 lib/uninstall.c:29
|
||||
#: lib/install.c:562 lib/install.c:838 lib/uninstall.c:29
|
||||
#, c-format
|
||||
msgid "rename of %s to %s failed: %s"
|
||||
msgstr "ÏÛÉÂËÁ ÐÅÒÅÉÍÅÎÏ×ÁÎÉÑ %s × %s: %s"
|
||||
|
@ -2376,25 +2372,25 @@ msgstr "
|
|||
msgid "package: %s-%s-%s files test = %d\n"
|
||||
msgstr "ÐÁËÅÔ: %s-%s-%s ÆÁÊÌÏ×; test = %d\n"
|
||||
|
||||
#: lib/install.c:764
|
||||
#: lib/install.c:768
|
||||
msgid "stopping install as we're running --test\n"
|
||||
msgstr "ÏÓÔÁÎÁ×ÌÉ×ÁÀ ÕÓÔÁÎÏ×ËÕ, Ô.Ë. ÍÙ ÉÓÐÏÌÎÑÅÍ --test\n"
|
||||
|
||||
#: lib/install.c:769
|
||||
#: lib/install.c:773
|
||||
msgid "running preinstall script (if any)\n"
|
||||
msgstr "ÉÓÐÏÌÎÑÀ ÓËÒÉÐÔ preinstall (ÅÓÌÉ ÅÓÔØ)\n"
|
||||
|
||||
#: lib/install.c:794
|
||||
#: lib/install.c:798
|
||||
#, c-format
|
||||
msgid "warning: %s created as %s"
|
||||
msgstr "ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ: %s ÓÏÚÄÁÎ ËÁË %s"
|
||||
|
||||
#: lib/install.c:830
|
||||
#: lib/install.c:834
|
||||
#, c-format
|
||||
msgid "warning: %s saved as %s"
|
||||
msgstr "ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ: %s ÓÏÈÒÁÎÅÎ ËÁË %s"
|
||||
|
||||
#: lib/install.c:904
|
||||
#: lib/install.c:908
|
||||
#, fuzzy
|
||||
msgid "running postinstall scripts (if any)\n"
|
||||
msgstr "ÉÓÐÏÌÎÑÀ ÓËÒÉÐÔ postinstall (ÅÓÌÉ ÅÓÔØ)\n"
|
||||
|
@ -2667,132 +2663,128 @@ msgstr "
|
|||
msgid "query of specfile %s failed, can't parse\n"
|
||||
msgstr "ÚÁÐÒÏÓ spec-ÆÁÊÌÁ %s ÎÅ ÕÄÁÌÓÑ, ÎÅ ÍÏÇÕ ÒÁÚÏÂÒÁÔØ ÆÁÊÌ\n"
|
||||
|
||||
#: lib/query.c:586
|
||||
msgid "could not read database record!\n"
|
||||
msgstr "ÎÅ ÍÏÇÕ ÐÒÏÞÅÓÔØ ÚÁÐÉÓØ ÂÁÚÙ ÄÁÎÎÙÈ!\n"
|
||||
|
||||
#: lib/query.c:597
|
||||
#: lib/query.c:581
|
||||
#, fuzzy
|
||||
msgid "no packages\n"
|
||||
msgstr "ÎÁÊÄÅÎÏ %d ÐÁËÅÔÏ×\n"
|
||||
|
||||
#: lib/query.c:608 lib/query.c:616
|
||||
#: lib/query.c:591
|
||||
#, c-format
|
||||
msgid "group %s does not contain any packages\n"
|
||||
msgstr "ÇÒÕÐÐÁ %s ÎÅ ÓÏÄÅÒÖÉÔ ÎÉËÁËÉÈ ÐÁËÅÔÏ×\n"
|
||||
|
||||
#: lib/query.c:627 lib/query.c:635
|
||||
#: lib/query.c:601
|
||||
#, c-format
|
||||
msgid "no package triggers %s\n"
|
||||
msgstr "ÎÉ ÏÄÉÎ ÉÚ ÐÁËÅÔÏ× ÎÅ ×Ú×ÏÄÉÔ ÔÒÉÇÇÅÒ %s\n"
|
||||
|
||||
#: lib/query.c:646 lib/query.c:654
|
||||
#: lib/query.c:611
|
||||
#, c-format
|
||||
msgid "no package requires %s\n"
|
||||
msgstr "ÎÉ ÏÄÉÎ ÉÚ ÐÁËÅÔÏ× ÎÅ ÔÒÅÂÕÅÔ %s\n"
|
||||
|
||||
#: lib/query.c:666 lib/query.c:674
|
||||
#: lib/query.c:622
|
||||
#, c-format
|
||||
msgid "no package provides %s\n"
|
||||
msgstr "ÎÉ ÏÄÉÎ ÉÚ ÐÁËÅÔÏ× ÎÅ ÐÒÅÄÏÓÔÁ×ÌÑÅÔ %s\n"
|
||||
|
||||
#: lib/query.c:691 lib/query.c:709
|
||||
#: lib/query.c:638
|
||||
#, c-format
|
||||
msgid "file %s: %s\n"
|
||||
msgstr "ÆÁÊÌ %s: %s\n"
|
||||
|
||||
#: lib/query.c:694 lib/query.c:712
|
||||
#: lib/query.c:641
|
||||
#, c-format
|
||||
msgid "file %s is not owned by any package\n"
|
||||
msgstr "ÆÁÊÌ %s ÎÅ ÐÒÉÎÁÄÌÅÖÉÔ ÎÉ ÏÄÎÏÍÕ ÉÚ ÐÁËÅÔÏ×\n"
|
||||
|
||||
#: lib/query.c:735
|
||||
#: lib/query.c:663
|
||||
#, c-format
|
||||
msgid "invalid package number: %s\n"
|
||||
msgstr "ÎÅ×ÅÒÎÙÊ ÎÏÍÅÒ ÐÁËÅÔÁ: %s\n"
|
||||
|
||||
#: lib/query.c:738
|
||||
#: lib/query.c:666
|
||||
#, c-format
|
||||
msgid "package record number: %d\n"
|
||||
msgstr "ÚÁÐÉÓØ ÐÁËÅÔÁ ÎÏÍÅÒ %d\n"
|
||||
|
||||
#: lib/query.c:742 lib/query.c:751
|
||||
#: lib/query.c:669
|
||||
#, c-format
|
||||
msgid "record %d could not be read\n"
|
||||
msgstr "ÚÁÐÉÓØ %d ÎÅ ÞÉÔÁÅÔÓÑ\n"
|
||||
|
||||
#: lib/query.c:763 lib/rpminstall.c:436
|
||||
#: lib/query.c:680 lib/rpminstall.c:436
|
||||
#, c-format
|
||||
msgid "package %s is not installed\n"
|
||||
msgstr "ÐÁËÅÔ %s ÎÅ ÕÓÔÁÎÏ×ÌÅÎ\n"
|
||||
|
||||
#: lib/query.c:766
|
||||
#: lib/query.c:683
|
||||
#, c-format
|
||||
msgid "error looking for package %s\n"
|
||||
msgstr "ÏÛÉÂËÁ ÐÒÉ ÐÏÉÓËÅ ÐÁËÅÔÁ %s\n"
|
||||
|
||||
#: lib/query.c:791
|
||||
#: lib/query.c:708
|
||||
msgid "rpmQuery: rpmdbOpen() failed\n"
|
||||
msgstr "rpmQuery: ÎÅÕÄÁÞÁ rpmdbOpen()\n"
|
||||
|
||||
#: lib/query.c:850
|
||||
#: lib/query.c:767
|
||||
msgid "query package owning file"
|
||||
msgstr "ÎÁÊÔÉ ÐÁËÅÔ, ËÏÔÏÒÏÍÕ ÐÒÉÎÁÄÌÅÖÉÔ ÆÁÊÌ"
|
||||
|
||||
#: lib/query.c:852
|
||||
#: lib/query.c:769
|
||||
msgid "query packages in group"
|
||||
msgstr "ÚÁÐÒÏÓ ÐÁËÅÔÏ× × ÇÒÕÐÐÅ"
|
||||
|
||||
#: lib/query.c:854
|
||||
#: lib/query.c:771
|
||||
msgid "query a package file"
|
||||
msgstr "ÚÁÐÒÏÓÉÔØ ÆÁÊÌ ÐÁËÅÔÁ"
|
||||
|
||||
#: lib/query.c:858
|
||||
#: lib/query.c:775
|
||||
msgid "query a spec file"
|
||||
msgstr "ÚÁÐÒÏÓÉÔØ spec-ÆÁÊÌ"
|
||||
|
||||
#: lib/query.c:860
|
||||
#: lib/query.c:777
|
||||
msgid "query the pacakges triggered by the package"
|
||||
msgstr "ÚÁÐÒÏÓÉÔØ ÐÁËÅÔÙ Ó ÔÒÉÇÇÅÒ-ÓËÒÉÐÔÁÍÉ ÎÁ ÐÁËÅÔ"
|
||||
|
||||
#: lib/query.c:862
|
||||
#: lib/query.c:779
|
||||
msgid "query the packages which require a capability"
|
||||
msgstr "ÎÁÊÔÉ ÐÁËÅÔÙ, ÔÒÅÂÕÀÝÉÅ ÓÅÒ×ÉÓÁ"
|
||||
|
||||
#: lib/query.c:864
|
||||
#: lib/query.c:781
|
||||
msgid "query the packages which provide a capability"
|
||||
msgstr "ÎÁÊÔÉ ÐÁËÅÔÙ, ÐÒÅÄÏÓÔÁ×ÌÑÀÝÉÅ ÓÅÒ×ÉÓ"
|
||||
|
||||
#: lib/query.c:903
|
||||
#: lib/query.c:820
|
||||
msgid "list all configuration files"
|
||||
msgstr "ÐÏËÁÚÁÔØ ×ÓÅ ËÏÎÆÉÇÕÒÁÃÉÏÎÎÙÅ ÆÁÊÌÙ"
|
||||
|
||||
#: lib/query.c:905
|
||||
#: lib/query.c:822
|
||||
msgid "list all documentation files"
|
||||
msgstr "ÐÏËÁÚÁÔØ ×ÓÅ ÆÁÊÌÙ ÄÏËÕÍÅÎÔÁÃÉÉ"
|
||||
|
||||
#: lib/query.c:907
|
||||
#: lib/query.c:824
|
||||
msgid "dump basic file information"
|
||||
msgstr "×Ù×ÅÓÔÉ ÂÁÚÏ×ÕÀ ÉÎÆÏÒÍÁÃÉÀ Ï ÆÁÊÌÅ"
|
||||
|
||||
#: lib/query.c:909
|
||||
#: lib/query.c:826
|
||||
msgid "list files in package"
|
||||
msgstr "ÐÏËÁÚÁÔØ ÆÁÊÌÙ ÐÁËÅÔÁ"
|
||||
|
||||
#: lib/query.c:913
|
||||
#: lib/query.c:830
|
||||
msgid "use the following query format"
|
||||
msgstr "ÉÓÐ. ÓÌÅÄÕÀÝÉÊ ÆÏÒÍÁÔ ÚÁÐÒÏÓÁ"
|
||||
|
||||
#: lib/query.c:915
|
||||
#: lib/query.c:832
|
||||
#, fuzzy
|
||||
msgid "substitute i18n sections into spec file"
|
||||
msgstr "ÐÏÄÓÔÁ×ÉÔØ ÓÅËÃÉÉ i18n ÉÚ ÓÌÅÄÕÀÝÅÇÏ ËÁÔÁÌÏÇÁ"
|
||||
|
||||
#: lib/query.c:917
|
||||
#: lib/query.c:834
|
||||
msgid "display the states of the listed files"
|
||||
msgstr "ÐÏËÁÚÁÔØ ÓÏÓÔÏÑÎÉÅ ÐÏËÁÚÁÎÎÙÈ ÆÁÊÌÏ×"
|
||||
|
||||
#: lib/query.c:919
|
||||
#: lib/query.c:836
|
||||
msgid "display a verbose file listing"
|
||||
msgstr "×Ù×ÅÓÔÉ ÄÅÔÁÌØÎÙÊ ÓÐÉÓÏË ÆÁÊÌÏ× ÐÁËÅÔÁ"
|
||||
|
||||
|
@ -2830,40 +2822,30 @@ msgstr "
|
|||
msgid "opening new database with dbi_major %d\n"
|
||||
msgstr "ÏÔËÒÙ×ÁÀ ÎÏ×ÕÀ ÂÁÚÕ\n"
|
||||
|
||||
#: lib/rebuilddb.c:112
|
||||
#, c-format
|
||||
msgid "record number %d in database is bad -- skipping it"
|
||||
msgstr "ÚÁÐÉÓØ ÎÏÍÅÒ %d × ÂÁÚÅ ÎÅ×ÅÒÎÁ, ÐÒÏÐÕÓËÁÀ"
|
||||
|
||||
#: lib/rebuilddb.c:131
|
||||
#: lib/rebuilddb.c:111
|
||||
#, fuzzy, c-format
|
||||
msgid "record number %d in database is bad -- skipping."
|
||||
msgstr "ÚÁÐÉÓØ ÎÏÍÅÒ %d × ÂÁÚÅ ÎÅ×ÅÒÎÁ, ÐÒÏÐÕÓËÁÀ"
|
||||
|
||||
#: lib/rebuilddb.c:146
|
||||
#, c-format
|
||||
msgid "duplicated database entry: %s-%s-%s -- skipping."
|
||||
msgstr ""
|
||||
|
||||
#: lib/rebuilddb.c:162
|
||||
#: lib/rebuilddb.c:140
|
||||
#, c-format
|
||||
msgid "cannot add record originally at %d"
|
||||
msgstr "ÎÅ ÍÏÇÕ ÄÏÂÁ×ÉÔØ ÚÁÐÉÓØ (ÐÅÒ×ÏÎÁÞÁÌØÎÏ × %d)"
|
||||
|
||||
#: lib/rebuilddb.c:186
|
||||
#: lib/rebuilddb.c:156
|
||||
msgid "failed to rebuild database; original database remains in place\n"
|
||||
msgstr "ÐÅÒÅÓÔÒÏÅÎÉÅ ÂÁÚÙ ÎÅ ÕÄÁÌÏÓØ, ÓÔÁÒÁÑ ÂÁÚÁ ÏÓÔÁÅÔÓÑ ÎÁ ÍÅÓÔÅ\n"
|
||||
|
||||
#: lib/rebuilddb.c:194
|
||||
#: lib/rebuilddb.c:164
|
||||
msgid "failed to replace old database with new database!\n"
|
||||
msgstr "ÚÁÍÅÎÁ ÓÔÁÒÏÊ ÂÁÚÙ ÎÁ ÎÏ×ÕÀ ÎÅ ÕÄÁÌÁÓØ!\n"
|
||||
|
||||
#: lib/rebuilddb.c:196
|
||||
#: lib/rebuilddb.c:166
|
||||
#, fuzzy, c-format
|
||||
msgid "replace files in %s with files from %s to recover"
|
||||
msgstr "ÄÌÑ ×ÏÓÓÔÁÎÏ×ÌÅÎÉÑ ÚÁÍÅÎÑÅÔ ÆÁÊÌÙ × %s ÆÁÊÌÁÍÉ ÉÚ %s"
|
||||
|
||||
#: lib/rebuilddb.c:202
|
||||
#: lib/rebuilddb.c:172
|
||||
#, c-format
|
||||
msgid "failed to remove directory %s: %s\n"
|
||||
msgstr "ÕÄÁÌÅÎÉÅ ËÁÔÁÌÏÇÁ %s ÎÅ ÕÄÁÌÏÓØ: %s\n"
|
||||
|
@ -2961,62 +2943,62 @@ msgstr ""
|
|||
"ÂÁÚÙ ÎÏ×ÏÇÏ ÆÏÒÍÁÔÁ"
|
||||
|
||||
#. error
|
||||
#: lib/rpmdb.c:442
|
||||
#: lib/rpmdb.c:390
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot retrieve package \"%s\" from db"
|
||||
msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ %s/packages.rpm\n"
|
||||
|
||||
#: lib/rpmdb.c:598
|
||||
#: lib/rpmdb.c:613
|
||||
#, fuzzy, c-format
|
||||
msgid "package not found with key \"%s\" in %s"
|
||||
msgstr "ÐÁËÅÔ %s ÎÅ ÎÁÊÄÅÎ × %s"
|
||||
|
||||
#: lib/rpmdb.c:607
|
||||
#: lib/rpmdb.c:622
|
||||
#, fuzzy, c-format
|
||||
msgid "key \"%s\" not found in %s"
|
||||
msgstr "ÐÁËÅÔ %s ÎÅ ÎÁÊÄÅÎ × %s"
|
||||
|
||||
#: lib/rpmdb.c:625
|
||||
#: lib/rpmdb.c:640
|
||||
#, fuzzy, c-format
|
||||
msgid "rpmdbRemove: cannot read header at 0x%x"
|
||||
msgstr "ÎÅ ÍÏÇÕ ÐÒÏÞÅÓÔØ ÈÅÄÅÒ × %d ÄÌÑ ÐÏÉÓËÁ"
|
||||
|
||||
#: lib/rpmdb.c:650
|
||||
#: lib/rpmdb.c:665
|
||||
#, fuzzy, c-format
|
||||
msgid "removing 0 %s entries.\n"
|
||||
msgstr "ÕÄÁÌÑÀ ÚÁÐÉÓØ ÂÁÚÙ ÄÁÎÎÙÈ\n"
|
||||
|
||||
#: lib/rpmdb.c:656
|
||||
#: lib/rpmdb.c:671
|
||||
#, fuzzy, c-format
|
||||
msgid "removing \"%s\" from %s index.\n"
|
||||
msgstr "ÕÄÁÌÑÀ ÉÎÄÅËÓ ÇÒÕÐÐ\n"
|
||||
|
||||
#: lib/rpmdb.c:664
|
||||
#: lib/rpmdb.c:679
|
||||
#, fuzzy, c-format
|
||||
msgid "removing %d entries in %s index:\n"
|
||||
msgstr "ÕÄÁÌÑÀ ÉÎÄÅËÓ ÉÍÅÎ\n"
|
||||
|
||||
#: lib/rpmdb.c:668 lib/rpmdb.c:865
|
||||
#: lib/rpmdb.c:683 lib/rpmdb.c:880
|
||||
#, c-format
|
||||
msgid "\t%6d %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:803
|
||||
#: lib/rpmdb.c:818
|
||||
#, fuzzy
|
||||
msgid "cannot allocate new instance in database"
|
||||
msgstr "ÎÅ ÍÏÇÕ ×ÙÄÅÌÉÔØ ÍÅÓÔÏ ÄÌÑ ÂÁÚÙ ÄÁÎÎÙÈ"
|
||||
|
||||
#: lib/rpmdb.c:842
|
||||
#: lib/rpmdb.c:857
|
||||
#, c-format
|
||||
msgid "adding 0 %s entries.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:854
|
||||
#: lib/rpmdb.c:869
|
||||
#, fuzzy, c-format
|
||||
msgid "adding \"%s\" to %s index.\n"
|
||||
msgstr "ÐÅÒÅÉÍÅÎÏ×Ù×ÁÀ %s × %s\n"
|
||||
|
||||
#: lib/rpmdb.c:861
|
||||
#: lib/rpmdb.c:876
|
||||
#, c-format
|
||||
msgid "adding %d entries to %s index:\n"
|
||||
msgstr ""
|
||||
|
@ -3422,22 +3404,22 @@ msgstr "
|
|||
msgid "excluding file %s%s\n"
|
||||
msgstr "ÉÓËÌÀÞÁÀ %s\n"
|
||||
|
||||
#: lib/transaction.c:427 lib/transaction.c:511
|
||||
#: lib/transaction.c:426 lib/transaction.c:509
|
||||
#, fuzzy, c-format
|
||||
msgid "excluding directory %s\n"
|
||||
msgstr "ÓÏÚÄÁÀ ËÁÔÁÌÏÇ: %s\n"
|
||||
|
||||
#: lib/transaction.c:432
|
||||
#: lib/transaction.c:431
|
||||
#, c-format
|
||||
msgid "relocating %s to %s\n"
|
||||
msgstr "ÐÅÒÅÍÅÝÁÀ %s × %s\n"
|
||||
|
||||
#: lib/transaction.c:504
|
||||
#: lib/transaction.c:502
|
||||
#, fuzzy, c-format
|
||||
msgid "relocating directory %s to %s\n"
|
||||
msgstr "ÐÅÒÅÍÅÝÁÀ %s × %s\n"
|
||||
|
||||
#: lib/transaction.c:656
|
||||
#: lib/transaction.c:654
|
||||
#, c-format
|
||||
msgid "%s skipped due to missingok flag\n"
|
||||
msgstr "%s ÐÒÏÐÕÝÅÎ ÉÚ-ÚÁ ÆÌÁÇÁ missingok\n"
|
||||
|
@ -3545,6 +3527,15 @@ msgstr "
|
|||
msgid "rpmVerify: rpmdbOpen() failed\n"
|
||||
msgstr "rpmVerify: ÎÅÕÄÁÞÁ rpmdbOpen()\n"
|
||||
|
||||
#~ msgid "dbrecMatchesDepFlags() failed to read header"
|
||||
#~ msgstr "ÏÛÉÂËÁ dbrecMatchesDepFlags() ÐÒÉ ÞÔÅÎÉÉ ÈÅÄÅÒÁ"
|
||||
|
||||
#~ msgid "could not read database record!\n"
|
||||
#~ msgstr "ÎÅ ÍÏÇÕ ÐÒÏÞÅÓÔØ ÚÁÐÉÓØ ÂÁÚÙ ÄÁÎÎÙÈ!\n"
|
||||
|
||||
#~ msgid "record number %d in database is bad -- skipping it"
|
||||
#~ msgstr "ÚÁÐÉÓØ ÎÏÍÅÒ %d × ÂÁÚÅ ÎÅ×ÅÒÎÁ, ÐÒÏÐÕÓËÁÀ"
|
||||
|
||||
#~ msgid "opening database mode 0x%x in %s\n"
|
||||
#~ msgstr "ÏÔËÒÙ×ÁÀ ÂÁÚÕ × ÒÅÖÉÍÅ 0x%x × %s\n"
|
||||
|
||||
|
|
193
po/sk.po
193
po/sk.po
|
@ -1,7 +1,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 2.93\n"
|
||||
"POT-Creation-Date: 2000-04-12 09:57-0400\n"
|
||||
"POT-Creation-Date: 2000-04-13 12:17-0400\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"
|
||||
|
@ -1668,12 +1668,12 @@ msgstr "Nie je mo
|
|||
msgid "Wrote: %s\n"
|
||||
msgstr "Zapísané: %s\n"
|
||||
|
||||
#: build/pack.c:519
|
||||
#: build/pack.c:518
|
||||
#, c-format
|
||||
msgid "Could not generate output filename for package %s: %s\n"
|
||||
msgstr "Nie je mo¾né vytvori» meno výstupného súboru pre balík %s: %s\n"
|
||||
|
||||
#: build/pack.c:536
|
||||
#: build/pack.c:535
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot create %s: %s\n"
|
||||
msgstr "nie je mo¾né zapísa» do %s: "
|
||||
|
@ -1800,7 +1800,7 @@ msgstr "riadok %d: Pr
|
|||
msgid "line %d: Illegal char '-' in %s: %s"
|
||||
msgstr "riadok %d: Neprípustný znak '-' v %s: %s"
|
||||
|
||||
#: build/parsePreamble.c:445 build/parseSpec.c:375
|
||||
#: build/parsePreamble.c:445 build/parseSpec.c:374
|
||||
#, fuzzy, c-format
|
||||
msgid "BuildRoot can not be \"/\": %s"
|
||||
msgstr "riadok %d: BuildRoot nemô¾e by» \"/\": %s"
|
||||
|
@ -1989,7 +1989,7 @@ msgstr "%s:%d: %%endif bez if"
|
|||
msgid "malformed %%include statement"
|
||||
msgstr "znetvorený príkaz %%include"
|
||||
|
||||
#: build/parseSpec.c:470
|
||||
#: build/parseSpec.c:469
|
||||
msgid "No buildable architectures"
|
||||
msgstr "®iadne zostaviteµné architektúry"
|
||||
|
||||
|
@ -2002,17 +2002,17 @@ msgstr "Bal
|
|||
msgid "archive = %s, fs = %s\n"
|
||||
msgstr "archív = %s, fs = %s\n"
|
||||
|
||||
#: build/spec.c:245
|
||||
#: build/spec.c:244
|
||||
#, c-format
|
||||
msgid "line %d: Bad number: %s"
|
||||
msgstr "riadok %d: Chybné èíslo: %s"
|
||||
|
||||
#: build/spec.c:251
|
||||
#: build/spec.c:250
|
||||
#, c-format
|
||||
msgid "line %d: Bad no%s number: %d"
|
||||
msgstr "riadok %d: Chybné no%s èíslo: %d"
|
||||
|
||||
#: build/spec.c:310
|
||||
#: build/spec.c:309
|
||||
#, c-format
|
||||
msgid "line %d: Bad %s number: %s\n"
|
||||
msgstr "riadok %d: Chybné %s èíslo: %s\n"
|
||||
|
@ -2099,89 +2099,85 @@ msgid "error removing record %s into %s"
|
|||
msgstr "chyba pri odstraòovaní záznamu %s z %s"
|
||||
|
||||
#. XXX legacy epoch-less requires/conflicts compatibility
|
||||
#: lib/depends.c:417
|
||||
#: lib/depends.c:430
|
||||
#, c-format
|
||||
msgid ""
|
||||
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
|
||||
"\tA %s\tB %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:446
|
||||
#: lib/depends.c:459
|
||||
#, c-format
|
||||
msgid " %s A %s\tB %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:538
|
||||
msgid "dbrecMatchesDepFlags() failed to read header"
|
||||
msgstr "dbrecMatchesDepFlags() sa nepodarilo preèíta» hlavièku"
|
||||
|
||||
#: lib/depends.c:795
|
||||
#: lib/depends.c:788
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by added file list.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:834
|
||||
#: lib/depends.c:836
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s satisfied by added package.\n"
|
||||
msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n"
|
||||
|
||||
#: lib/depends.c:851
|
||||
#: lib/depends.c:853
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by added provide.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:882
|
||||
#: lib/depends.c:886
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by rpmrc provides.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:909
|
||||
#: lib/depends.c:914
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by db file lists.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:934
|
||||
#: lib/depends.c:932
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by db provides.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:959
|
||||
#: lib/depends.c:949
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s satisfied by db packages.\n"
|
||||
msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n"
|
||||
|
||||
#: lib/depends.c:976
|
||||
#: lib/depends.c:961
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by rpmlib version.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:986
|
||||
#: lib/depends.c:971
|
||||
#, c-format
|
||||
msgid "%s: %s unsatisfied.\n"
|
||||
msgstr ""
|
||||
|
||||
#. requirements are not satisfied.
|
||||
#: lib/depends.c:1038
|
||||
#: lib/depends.c:1019
|
||||
#, c-format
|
||||
msgid "package %s require not satisfied: %s\n"
|
||||
msgstr "po¾iadavka balíka %s nie je uspokojená: %s\n"
|
||||
|
||||
#. conflicts exist.
|
||||
#: lib/depends.c:1100
|
||||
#: lib/depends.c:1081
|
||||
#, c-format
|
||||
msgid "package %s conflicts: %s\n"
|
||||
msgstr "balík %s koliduje: %s\n"
|
||||
|
||||
#: lib/depends.c:1155 lib/depends.c:1450
|
||||
#, c-format
|
||||
msgid "cannot read header at %d for dependency check"
|
||||
msgstr "nie je mo¾né preèíta» hlavièku na %d pre kontrolu závislostí"
|
||||
|
||||
#: lib/depends.c:1246
|
||||
#: lib/depends.c:1211
|
||||
#, c-format
|
||||
msgid "loop in prerequisite chain: %s"
|
||||
msgstr "sluèka v re»azi po¾iadaviek: %s"
|
||||
|
||||
#: lib/depends.c:1415
|
||||
#, c-format
|
||||
msgid "cannot read header at %d for dependency check"
|
||||
msgstr "nie je mo¾né preèíta» hlavièku na %d pre kontrolu závislostí"
|
||||
|
||||
#: lib/falloc.c:135
|
||||
#, c-format
|
||||
msgid ""
|
||||
|
@ -2365,7 +2361,7 @@ msgstr "zdrojov
|
|||
msgid "renaming %s to %s\n"
|
||||
msgstr "premenováva sa %s na %s\n"
|
||||
|
||||
#: lib/install.c:562 lib/install.c:834 lib/uninstall.c:29
|
||||
#: lib/install.c:562 lib/install.c:838 lib/uninstall.c:29
|
||||
#, c-format
|
||||
msgid "rename of %s to %s failed: %s"
|
||||
msgstr "premenovanie %s na %s zlyhalo: %s"
|
||||
|
@ -2379,25 +2375,25 @@ msgstr "o
|
|||
msgid "package: %s-%s-%s files test = %d\n"
|
||||
msgstr "balík: %s-%s-%s test súborov = %d\n"
|
||||
|
||||
#: lib/install.c:764
|
||||
#: lib/install.c:768
|
||||
msgid "stopping install as we're running --test\n"
|
||||
msgstr "in¹talácia zastavená kvôli re¾imu --test\n"
|
||||
|
||||
#: lib/install.c:769
|
||||
#: lib/install.c:773
|
||||
msgid "running preinstall script (if any)\n"
|
||||
msgstr "vykonávajú sa predin¹talaèné skripty (ak existujú)\n"
|
||||
|
||||
#: lib/install.c:794
|
||||
#: lib/install.c:798
|
||||
#, c-format
|
||||
msgid "warning: %s created as %s"
|
||||
msgstr "varovanie: %s vytvorené ako %s"
|
||||
|
||||
#: lib/install.c:830
|
||||
#: lib/install.c:834
|
||||
#, c-format
|
||||
msgid "warning: %s saved as %s"
|
||||
msgstr "varovanie: %s uchovaný ako %s"
|
||||
|
||||
#: lib/install.c:904
|
||||
#: lib/install.c:908
|
||||
#, fuzzy
|
||||
msgid "running postinstall scripts (if any)\n"
|
||||
msgstr "vykonávajú sa poin¹talaèné skripty (ak existujú)\n"
|
||||
|
@ -2670,133 +2666,129 @@ msgstr "ot
|
|||
msgid "query of specfile %s failed, can't parse\n"
|
||||
msgstr "otázka na spec-súbor %s zlyhala, nie je mo¾né analyzova»\n"
|
||||
|
||||
#: lib/query.c:586
|
||||
msgid "could not read database record!\n"
|
||||
msgstr "nie je mo¾né preèíta» záznam v databáze!\n"
|
||||
|
||||
#: lib/query.c:597
|
||||
#: lib/query.c:581
|
||||
#, fuzzy
|
||||
msgid "no packages\n"
|
||||
msgstr "nájdených %d balíkov\n"
|
||||
|
||||
#: lib/query.c:608 lib/query.c:616
|
||||
#: lib/query.c:591
|
||||
#, c-format
|
||||
msgid "group %s does not contain any packages\n"
|
||||
msgstr "skupina %s neobsahuje ¾iadne balíky\n"
|
||||
|
||||
#: lib/query.c:627 lib/query.c:635
|
||||
#: lib/query.c:601
|
||||
#, c-format
|
||||
msgid "no package triggers %s\n"
|
||||
msgstr "¾iadny z balíkov nespú¹»a %s\n"
|
||||
|
||||
#: lib/query.c:646 lib/query.c:654
|
||||
#: lib/query.c:611
|
||||
#, c-format
|
||||
msgid "no package requires %s\n"
|
||||
msgstr "¾iadny z balíkov nevy¾aduje %s\n"
|
||||
|
||||
#: lib/query.c:666 lib/query.c:674
|
||||
#: lib/query.c:622
|
||||
#, c-format
|
||||
msgid "no package provides %s\n"
|
||||
msgstr "¾iadny z balíkov neposkytuje %s\n"
|
||||
|
||||
#: lib/query.c:691 lib/query.c:709
|
||||
#: lib/query.c:638
|
||||
#, c-format
|
||||
msgid "file %s: %s\n"
|
||||
msgstr "súbor %s: %s\n"
|
||||
|
||||
#: lib/query.c:694 lib/query.c:712
|
||||
#: lib/query.c:641
|
||||
#, 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:735
|
||||
#: lib/query.c:663
|
||||
#, c-format
|
||||
msgid "invalid package number: %s\n"
|
||||
msgstr "chybné èíslo balíku: %s\n"
|
||||
|
||||
#: lib/query.c:738
|
||||
#: lib/query.c:666
|
||||
#, fuzzy, c-format
|
||||
msgid "package record number: %d\n"
|
||||
msgstr "po¾aduje sa záznam èíslo %d\n"
|
||||
|
||||
#: lib/query.c:742 lib/query.c:751
|
||||
#: lib/query.c:669
|
||||
#, c-format
|
||||
msgid "record %d could not be read\n"
|
||||
msgstr "záznam %d nie je mo¾né preèíta»\n"
|
||||
|
||||
#: lib/query.c:763 lib/rpminstall.c:436
|
||||
#: lib/query.c:680 lib/rpminstall.c:436
|
||||
#, c-format
|
||||
msgid "package %s is not installed\n"
|
||||
msgstr "balík %s nie je nain¹talovaný\n"
|
||||
|
||||
#: lib/query.c:766
|
||||
#: lib/query.c:683
|
||||
#, c-format
|
||||
msgid "error looking for package %s\n"
|
||||
msgstr "chyba pri hµadaní balíka %s\n"
|
||||
|
||||
#: lib/query.c:791
|
||||
#: lib/query.c:708
|
||||
msgid "rpmQuery: rpmdbOpen() failed\n"
|
||||
msgstr "rpmQuery: rpmdbOpen() zlyhalo\n"
|
||||
|
||||
#: lib/query.c:850
|
||||
#: lib/query.c:767
|
||||
msgid "query package owning file"
|
||||
msgstr "opýta» sa balíku vlastniaceho súbor"
|
||||
|
||||
#: lib/query.c:852
|
||||
#: lib/query.c:769
|
||||
msgid "query packages in group"
|
||||
msgstr "opýta» sa v¹etkých balíkov v skupine"
|
||||
|
||||
#: lib/query.c:854
|
||||
#: lib/query.c:771
|
||||
msgid "query a package file"
|
||||
msgstr "opýta» sa súboru balíka"
|
||||
|
||||
#: lib/query.c:858
|
||||
#: lib/query.c:775
|
||||
msgid "query a spec file"
|
||||
msgstr "opýta» sa spec súboru"
|
||||
|
||||
#: lib/query.c:860
|
||||
#: lib/query.c:777
|
||||
msgid "query the pacakges triggered by the package"
|
||||
msgstr "opýta» sa balíkov spustených balíkom"
|
||||
|
||||
#: lib/query.c:862
|
||||
#: lib/query.c:779
|
||||
msgid "query the packages which require a capability"
|
||||
msgstr "opýta» sa balíkov vy¾adujúcich schopnos»"
|
||||
|
||||
#: lib/query.c:864
|
||||
#: lib/query.c:781
|
||||
msgid "query the packages which provide a capability"
|
||||
msgstr "opýta» sa balíkov poskytujúcich schopnos»"
|
||||
|
||||
#: lib/query.c:903
|
||||
#: lib/query.c:820
|
||||
msgid "list all configuration files"
|
||||
msgstr "zobrazi» v¹etky konfiguraèné súbory"
|
||||
|
||||
#: lib/query.c:905
|
||||
#: lib/query.c:822
|
||||
#, fuzzy
|
||||
msgid "list all documentation files"
|
||||
msgstr "zobrazi» v¹etky dokumentaèné súbory"
|
||||
|
||||
#: lib/query.c:907
|
||||
#: lib/query.c:824
|
||||
msgid "dump basic file information"
|
||||
msgstr "zobrazi» základné informácie o balíku"
|
||||
|
||||
#: lib/query.c:909
|
||||
#: lib/query.c:826
|
||||
msgid "list files in package"
|
||||
msgstr "zobrazi» súbory v balíku"
|
||||
|
||||
#: lib/query.c:913
|
||||
#: lib/query.c:830
|
||||
msgid "use the following query format"
|
||||
msgstr "pou¾i» nasledovný formát otázky"
|
||||
|
||||
#: lib/query.c:915
|
||||
#: lib/query.c:832
|
||||
#, fuzzy
|
||||
msgid "substitute i18n sections into spec file"
|
||||
msgstr "zdrojový balík neobsahuje ¾iadny .spec súbor"
|
||||
|
||||
#: lib/query.c:917
|
||||
#: lib/query.c:834
|
||||
msgid "display the states of the listed files"
|
||||
msgstr "zobrazii» stav daných súborov"
|
||||
|
||||
#: lib/query.c:919
|
||||
#: lib/query.c:836
|
||||
msgid "display a verbose file listing"
|
||||
msgstr "zobrazi» podrobný zoznam súborov balíka"
|
||||
|
||||
|
@ -2834,40 +2826,30 @@ msgstr "otv
|
|||
msgid "opening new database with dbi_major %d\n"
|
||||
msgstr "otvára sa nová databáza\n"
|
||||
|
||||
#: lib/rebuilddb.c:112
|
||||
#, c-format
|
||||
msgid "record number %d in database is bad -- skipping it"
|
||||
msgstr "záznam èíslo %d v databáze je chybný -- bol vynechaný"
|
||||
|
||||
#: lib/rebuilddb.c:131
|
||||
#: lib/rebuilddb.c:111
|
||||
#, fuzzy, c-format
|
||||
msgid "record number %d in database is bad -- skipping."
|
||||
msgstr "záznam èíslo %d v databáze je chybný -- bol vynechaný"
|
||||
|
||||
#: lib/rebuilddb.c:146
|
||||
#, c-format
|
||||
msgid "duplicated database entry: %s-%s-%s -- skipping."
|
||||
msgstr ""
|
||||
|
||||
#: lib/rebuilddb.c:162
|
||||
#: lib/rebuilddb.c:140
|
||||
#, c-format
|
||||
msgid "cannot add record originally at %d"
|
||||
msgstr "nie je mo¾né prida» záznam pôvodne na %d"
|
||||
|
||||
#: lib/rebuilddb.c:186
|
||||
#: lib/rebuilddb.c:156
|
||||
msgid "failed to rebuild database; original database remains in place\n"
|
||||
msgstr "nepodarilo sa znovu vytvori» databázu; zostáva pôvodná\n"
|
||||
|
||||
#: lib/rebuilddb.c:194
|
||||
#: lib/rebuilddb.c:164
|
||||
msgid "failed to replace old database with new database!\n"
|
||||
msgstr "nepodarilo sa nahradi» starú databázu novou!\n"
|
||||
|
||||
#: lib/rebuilddb.c:196
|
||||
#: lib/rebuilddb.c:166
|
||||
#, fuzzy, c-format
|
||||
msgid "replace files in %s with files from %s to recover"
|
||||
msgstr "nahradí súbory v %s súbormi z %s kvôli obnove"
|
||||
|
||||
#: lib/rebuilddb.c:202
|
||||
#: lib/rebuilddb.c:172
|
||||
#, c-format
|
||||
msgid "failed to remove directory %s: %s\n"
|
||||
msgstr "nepodarilo sa odstráni» adresár %s: %s\n"
|
||||
|
@ -2965,62 +2947,62 @@ msgstr ""
|
|||
"databázy v novom formáte"
|
||||
|
||||
#. error
|
||||
#: lib/rpmdb.c:442
|
||||
#: lib/rpmdb.c:390
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot retrieve package \"%s\" from db"
|
||||
msgstr "nie je mo¾né otvori» %s/packages.rpm\n"
|
||||
|
||||
#: lib/rpmdb.c:598
|
||||
#: lib/rpmdb.c:613
|
||||
#, fuzzy, c-format
|
||||
msgid "package not found with key \"%s\" in %s"
|
||||
msgstr "balík %s nebol nájdený v %s"
|
||||
|
||||
#: lib/rpmdb.c:607
|
||||
#: lib/rpmdb.c:622
|
||||
#, fuzzy, c-format
|
||||
msgid "key \"%s\" not found in %s"
|
||||
msgstr "balík %s nebol nájdený v %s"
|
||||
|
||||
#: lib/rpmdb.c:625
|
||||
#: lib/rpmdb.c:640
|
||||
#, fuzzy, c-format
|
||||
msgid "rpmdbRemove: cannot read header at 0x%x"
|
||||
msgstr "nie je mo¾né preèíta» hlavièku na %d pre vyhµadanie"
|
||||
|
||||
#: lib/rpmdb.c:650
|
||||
#: lib/rpmdb.c:665
|
||||
#, fuzzy, c-format
|
||||
msgid "removing 0 %s entries.\n"
|
||||
msgstr "odstraòuje sa záznam z databázy\n"
|
||||
|
||||
#: lib/rpmdb.c:656
|
||||
#: lib/rpmdb.c:671
|
||||
#, fuzzy, c-format
|
||||
msgid "removing \"%s\" from %s index.\n"
|
||||
msgstr "odstraòuje sa index skupín\n"
|
||||
|
||||
#: lib/rpmdb.c:664
|
||||
#: lib/rpmdb.c:679
|
||||
#, fuzzy, c-format
|
||||
msgid "removing %d entries in %s index:\n"
|
||||
msgstr "odstraòuje sa index názvov\n"
|
||||
|
||||
#: lib/rpmdb.c:668 lib/rpmdb.c:865
|
||||
#: lib/rpmdb.c:683 lib/rpmdb.c:880
|
||||
#, c-format
|
||||
msgid "\t%6d %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:803
|
||||
#: lib/rpmdb.c:818
|
||||
#, fuzzy
|
||||
msgid "cannot allocate new instance in database"
|
||||
msgstr "nie je mo¾né prideli» miesto pre databázu"
|
||||
|
||||
#: lib/rpmdb.c:842
|
||||
#: lib/rpmdb.c:857
|
||||
#, c-format
|
||||
msgid "adding 0 %s entries.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:854
|
||||
#: lib/rpmdb.c:869
|
||||
#, fuzzy, c-format
|
||||
msgid "adding \"%s\" to %s index.\n"
|
||||
msgstr "premenováva sa %s na %s\n"
|
||||
|
||||
#: lib/rpmdb.c:861
|
||||
#: lib/rpmdb.c:876
|
||||
#, c-format
|
||||
msgid "adding %d entries to %s index:\n"
|
||||
msgstr ""
|
||||
|
@ -3423,22 +3405,22 @@ msgstr "Mus
|
|||
msgid "excluding file %s%s\n"
|
||||
msgstr "vynecháva sa %s\n"
|
||||
|
||||
#: lib/transaction.c:427 lib/transaction.c:511
|
||||
#: lib/transaction.c:426 lib/transaction.c:509
|
||||
#, fuzzy, c-format
|
||||
msgid "excluding directory %s\n"
|
||||
msgstr "vytvára sa adresár %s\n"
|
||||
|
||||
#: lib/transaction.c:432
|
||||
#: lib/transaction.c:431
|
||||
#, c-format
|
||||
msgid "relocating %s to %s\n"
|
||||
msgstr "presúva sa %s do %s\n"
|
||||
|
||||
#: lib/transaction.c:504
|
||||
#: lib/transaction.c:502
|
||||
#, fuzzy, c-format
|
||||
msgid "relocating directory %s to %s\n"
|
||||
msgstr "presúva sa %s do %s\n"
|
||||
|
||||
#: lib/transaction.c:656
|
||||
#: lib/transaction.c:654
|
||||
#, c-format
|
||||
msgid "%s skipped due to missingok flag\n"
|
||||
msgstr "%s vynechané kvôli príznaku missingok\n"
|
||||
|
@ -3552,6 +3534,15 @@ msgstr "Nevyrie
|
|||
msgid "rpmVerify: rpmdbOpen() failed\n"
|
||||
msgstr "rpmQuery: rpmdbOpen() zlyhalo\n"
|
||||
|
||||
#~ msgid "dbrecMatchesDepFlags() failed to read header"
|
||||
#~ msgstr "dbrecMatchesDepFlags() sa nepodarilo preèíta» hlavièku"
|
||||
|
||||
#~ msgid "could not read database record!\n"
|
||||
#~ msgstr "nie je mo¾né preèíta» záznam v databáze!\n"
|
||||
|
||||
#~ msgid "record number %d in database is bad -- skipping it"
|
||||
#~ msgstr "záznam èíslo %d v databáze je chybný -- bol vynechaný"
|
||||
|
||||
#~ msgid "opening database mode 0x%x in %s\n"
|
||||
#~ msgstr "otvára sa databáza s právami 0x%x v %s\n"
|
||||
|
||||
|
|
198
po/sl.po
198
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.25 2000/04/12 13:42:58 jbj Exp $
|
||||
# $Id: sl.po,v 1.26 2000/04/13 16:00:36 jbj Exp $
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 3.0.4\n"
|
||||
"POT-Creation-Date: 2000-04-12 09:57-0400\n"
|
||||
"POT-Creation-Date: 2000-04-13 12:17-0400\n"
|
||||
"PO-Revision-Date: 2000-02-17 22:25+01:00\n"
|
||||
"Last-Translator: Primo¾ Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>\n"
|
||||
"Language-Team: Slovenian <sl@li.org>\n"
|
||||
|
@ -1647,12 +1647,12 @@ msgstr "Ni mo
|
|||
msgid "Wrote: %s\n"
|
||||
msgstr "Zapisano: %s\n"
|
||||
|
||||
#: build/pack.c:519
|
||||
#: build/pack.c:518
|
||||
#, c-format
|
||||
msgid "Could not generate output filename for package %s: %s\n"
|
||||
msgstr "Neuspe¹no ustvarjanje izhodne datoteke za paket %s: %s\n"
|
||||
|
||||
#: build/pack.c:536
|
||||
#: build/pack.c:535
|
||||
#, c-format
|
||||
msgid "cannot create %s: %s\n"
|
||||
msgstr "ni mo¾no ustvariti %s: %s\n"
|
||||
|
@ -1779,7 +1779,7 @@ msgstr "vrstica %d: Prazna zna
|
|||
msgid "line %d: Illegal char '-' in %s: %s"
|
||||
msgstr "vrstica %d: Neveljaven znak ,-` v %s: %s"
|
||||
|
||||
#: build/parsePreamble.c:445 build/parseSpec.c:375
|
||||
#: build/parsePreamble.c:445 build/parseSpec.c:374
|
||||
#, c-format
|
||||
msgid "BuildRoot can not be \"/\": %s"
|
||||
msgstr "BuildRoot ne more biti \"/\": %s"
|
||||
|
@ -1970,7 +1970,7 @@ msgstr "%s:%d: Najden %%endif brez pripadajo
|
|||
msgid "malformed %%include statement"
|
||||
msgstr "Deformiran stavek %%include"
|
||||
|
||||
#: build/parseSpec.c:470
|
||||
#: build/parseSpec.c:469
|
||||
msgid "No buildable architectures"
|
||||
msgstr "Arhitektura za izgradnjo manjka"
|
||||
|
||||
|
@ -1983,17 +1983,17 @@ msgstr "V paketu manjka %%description: %s"
|
|||
msgid "archive = %s, fs = %s\n"
|
||||
msgstr "arhiv = %s, fs = %s\n"
|
||||
|
||||
#: build/spec.c:245
|
||||
#: build/spec.c:244
|
||||
#, c-format
|
||||
msgid "line %d: Bad number: %s"
|
||||
msgstr "vrstica %d: Okvarjeno ¹tevilo: %s"
|
||||
|
||||
#: build/spec.c:251
|
||||
#: build/spec.c:250
|
||||
#, c-format
|
||||
msgid "line %d: Bad no%s number: %d"
|
||||
msgstr "vrstica %d: Okvarjeno ¹tevilo no%s: %d"
|
||||
|
||||
#: build/spec.c:310
|
||||
#: build/spec.c:309
|
||||
#, c-format
|
||||
msgid "line %d: Bad %s number: %s\n"
|
||||
msgstr "vrstica %d: Okvarjeno ¹tevilo %s: %s\n"
|
||||
|
@ -2080,7 +2080,7 @@ msgid "error removing record %s into %s"
|
|||
msgstr "napaka pri brisanju zapisa %s iz %s"
|
||||
|
||||
#. XXX legacy epoch-less requires/conflicts compatibility
|
||||
#: lib/depends.c:417
|
||||
#: lib/depends.c:430
|
||||
#, c-format
|
||||
msgid ""
|
||||
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
|
||||
|
@ -2089,82 +2089,78 @@ msgstr ""
|
|||
"odvisnost \"B\" potrebuje \"epoch\" (privzeto enak kot \"A\")\n"
|
||||
"\tA %s\tB %s\n"
|
||||
|
||||
#: lib/depends.c:446
|
||||
#: lib/depends.c:459
|
||||
#, c-format
|
||||
msgid " %s A %s\tB %s\n"
|
||||
msgstr " %s A %s\tB %s\n"
|
||||
|
||||
#: lib/depends.c:538
|
||||
msgid "dbrecMatchesDepFlags() failed to read header"
|
||||
msgstr "dbrecMatchesDepFlags() ni uspel prebrati glave"
|
||||
|
||||
#: lib/depends.c:795
|
||||
#: lib/depends.c:788
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by added file list.\n"
|
||||
msgstr "%s: %s zadovoljen ob dodatnem seznamu datotek.\n"
|
||||
|
||||
#: lib/depends.c:834
|
||||
#: lib/depends.c:836
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by added package.\n"
|
||||
msgstr "%s: %s zadovoljen ob dodatnem paketu.\n"
|
||||
|
||||
#: lib/depends.c:851
|
||||
#: lib/depends.c:853
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by added provide.\n"
|
||||
msgstr "%s: %s zadovoljen ob dodatni ponudbi.\n"
|
||||
|
||||
#: lib/depends.c:882
|
||||
#: lib/depends.c:886
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by rpmrc provides.\n"
|
||||
msgstr "%s: %s zadovoljen ob dodatnem ponudbi rpmrc.\n"
|
||||
|
||||
#: lib/depends.c:909
|
||||
#: lib/depends.c:914
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by db file lists.\n"
|
||||
msgstr "%s: %s zadovoljen ob seznamu datotek db.\n"
|
||||
|
||||
#: lib/depends.c:934
|
||||
#: lib/depends.c:932
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by db provides.\n"
|
||||
msgstr "%s: %s zadovoljen ob ponudbi db.\n"
|
||||
|
||||
#: lib/depends.c:959
|
||||
#: lib/depends.c:949
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by db packages.\n"
|
||||
msgstr "%s: %s zadovoljen ob paketih db.\n"
|
||||
|
||||
#: lib/depends.c:976
|
||||
#: lib/depends.c:961
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by rpmlib version.\n"
|
||||
msgstr "%s: %s zadovoljen ob razlièici rpmlib.\n"
|
||||
|
||||
#: lib/depends.c:986
|
||||
#: lib/depends.c:971
|
||||
#, c-format
|
||||
msgid "%s: %s unsatisfied.\n"
|
||||
msgstr "%s: %s nezadovoljen.\n"
|
||||
|
||||
#. requirements are not satisfied.
|
||||
#: lib/depends.c:1038
|
||||
#: lib/depends.c:1019
|
||||
#, c-format
|
||||
msgid "package %s require not satisfied: %s\n"
|
||||
msgstr "paket %s zahteva, a ni zadovoljeno: %s\n"
|
||||
|
||||
#. conflicts exist.
|
||||
#: lib/depends.c:1100
|
||||
#: lib/depends.c:1081
|
||||
#, c-format
|
||||
msgid "package %s conflicts: %s\n"
|
||||
msgstr "paket %s v sporu: %s\n"
|
||||
|
||||
#: lib/depends.c:1155 lib/depends.c:1450
|
||||
#, c-format
|
||||
msgid "cannot read header at %d for dependency check"
|
||||
msgstr "ni mo¾no prebrati glave pri %d za preizkus soodvisnosti"
|
||||
|
||||
#: lib/depends.c:1246
|
||||
#: lib/depends.c:1211
|
||||
#, c-format
|
||||
msgid "loop in prerequisite chain: %s"
|
||||
msgstr "zanka v predpogojevani verigi: %s"
|
||||
|
||||
#: lib/depends.c:1415
|
||||
#, c-format
|
||||
msgid "cannot read header at %d for dependency check"
|
||||
msgstr "ni mo¾no prebrati glave pri %d za preizkus soodvisnosti"
|
||||
|
||||
#: lib/falloc.c:135
|
||||
#, c-format
|
||||
msgid ""
|
||||
|
@ -2352,7 +2348,7 @@ msgstr "izvorni paket ne vsebuje datoteke .spec"
|
|||
msgid "renaming %s to %s\n"
|
||||
msgstr "preimenujemo %s v %s\n"
|
||||
|
||||
#: lib/install.c:562 lib/install.c:834 lib/uninstall.c:29
|
||||
#: lib/install.c:562 lib/install.c:838 lib/uninstall.c:29
|
||||
#, c-format
|
||||
msgid "rename of %s to %s failed: %s"
|
||||
msgstr "preimenovanje %s v %s neuspe¹no: %s"
|
||||
|
@ -2366,25 +2362,25 @@ msgstr "pri
|
|||
msgid "package: %s-%s-%s files test = %d\n"
|
||||
msgstr "paket: %s-%s-%s datoteke test = %d\n"
|
||||
|
||||
#: lib/install.c:764
|
||||
#: lib/install.c:768
|
||||
msgid "stopping install as we're running --test\n"
|
||||
msgstr "ustavljamo namestitev ker teèemo kot --test\n"
|
||||
|
||||
#: lib/install.c:769
|
||||
#: lib/install.c:773
|
||||
msgid "running preinstall script (if any)\n"
|
||||
msgstr "poganjamo prednamestitvene skripte (èe obstajajo)\n"
|
||||
|
||||
#: lib/install.c:794
|
||||
#: lib/install.c:798
|
||||
#, c-format
|
||||
msgid "warning: %s created as %s"
|
||||
msgstr "opozorilo: %s ustvarjen kot %s"
|
||||
|
||||
#: lib/install.c:830
|
||||
#: lib/install.c:834
|
||||
#, c-format
|
||||
msgid "warning: %s saved as %s"
|
||||
msgstr "opozorilo: %s shranjen kot %s"
|
||||
|
||||
#: lib/install.c:904
|
||||
#: lib/install.c:908
|
||||
msgid "running postinstall scripts (if any)\n"
|
||||
msgstr "poganjamo ponamestitvene skripte (èe obstajajo)\n"
|
||||
|
||||
|
@ -2657,132 +2653,128 @@ msgstr "poizvedba po %s neuspe
|
|||
msgid "query of specfile %s failed, can't parse\n"
|
||||
msgstr "poizvedba po datoteki spec %s neuspe¹na, razèlemba ni mo¾na\n"
|
||||
|
||||
#: lib/query.c:586
|
||||
msgid "could not read database record!\n"
|
||||
msgstr "zapisa podatkovne zbirke ni mo¾no prebrati!\n"
|
||||
|
||||
#: lib/query.c:597
|
||||
#: lib/query.c:581
|
||||
#, fuzzy
|
||||
msgid "no packages\n"
|
||||
msgstr "najdeno %d paketov\n"
|
||||
|
||||
#: lib/query.c:608 lib/query.c:616
|
||||
#: lib/query.c:591
|
||||
#, c-format
|
||||
msgid "group %s does not contain any packages\n"
|
||||
msgstr "skupina %s ne vsebuje nobenega paketa\n"
|
||||
|
||||
#: lib/query.c:627 lib/query.c:635
|
||||
#: lib/query.c:601
|
||||
#, c-format
|
||||
msgid "no package triggers %s\n"
|
||||
msgstr "noben paket ne pro¾i %s\n"
|
||||
|
||||
#: lib/query.c:646 lib/query.c:654
|
||||
#: lib/query.c:611
|
||||
#, c-format
|
||||
msgid "no package requires %s\n"
|
||||
msgstr "noben paket ne potrebuje %s\n"
|
||||
|
||||
#: lib/query.c:666 lib/query.c:674
|
||||
#: lib/query.c:622
|
||||
#, c-format
|
||||
msgid "no package provides %s\n"
|
||||
msgstr "noben paket ne nudi %s\n"
|
||||
|
||||
#: lib/query.c:691 lib/query.c:709
|
||||
#: lib/query.c:638
|
||||
#, c-format
|
||||
msgid "file %s: %s\n"
|
||||
msgstr "datoteka %s: %s\n"
|
||||
|
||||
#: lib/query.c:694 lib/query.c:712
|
||||
#: lib/query.c:641
|
||||
#, c-format
|
||||
msgid "file %s is not owned by any package\n"
|
||||
msgstr "datoteka %s ni del nobenega paketa\n"
|
||||
|
||||
#: lib/query.c:735
|
||||
#: lib/query.c:663
|
||||
#, c-format
|
||||
msgid "invalid package number: %s\n"
|
||||
msgstr "neveljavna ¹tevilka paketa: %s\n"
|
||||
|
||||
#: lib/query.c:738
|
||||
#: lib/query.c:666
|
||||
#, c-format
|
||||
msgid "package record number: %d\n"
|
||||
msgstr "¹tevilka zapisa paketa: %d\n"
|
||||
|
||||
#: lib/query.c:742 lib/query.c:751
|
||||
#: lib/query.c:669
|
||||
#, c-format
|
||||
msgid "record %d could not be read\n"
|
||||
msgstr "zapisa %d ni mo¾no prebrati\n"
|
||||
|
||||
#: lib/query.c:763 lib/rpminstall.c:436
|
||||
#: lib/query.c:680 lib/rpminstall.c:436
|
||||
#, c-format
|
||||
msgid "package %s is not installed\n"
|
||||
msgstr "paket %s ni name¹èen\n"
|
||||
|
||||
#: lib/query.c:766
|
||||
#: lib/query.c:683
|
||||
#, c-format
|
||||
msgid "error looking for package %s\n"
|
||||
msgstr "napaka pri iskanju paketa %s\n"
|
||||
|
||||
#: lib/query.c:791
|
||||
#: lib/query.c:708
|
||||
msgid "rpmQuery: rpmdbOpen() failed\n"
|
||||
msgstr "rpmQuery: rpmdbOpen() neuspe¹en\n"
|
||||
|
||||
#: lib/query.c:850
|
||||
#: lib/query.c:767
|
||||
msgid "query package owning file"
|
||||
msgstr "poizvedba po paketu, ki vsebuje datoteko"
|
||||
|
||||
#: lib/query.c:852
|
||||
#: lib/query.c:769
|
||||
msgid "query packages in group"
|
||||
msgstr "poizvedba po paketu v skupini"
|
||||
|
||||
#: lib/query.c:854
|
||||
#: lib/query.c:771
|
||||
msgid "query a package file"
|
||||
msgstr "poizvedba po paketu"
|
||||
|
||||
#: lib/query.c:858
|
||||
#: lib/query.c:775
|
||||
msgid "query a spec file"
|
||||
msgstr "poizvedba po datoteki spec"
|
||||
|
||||
#: lib/query.c:860
|
||||
#: lib/query.c:777
|
||||
msgid "query the pacakges triggered by the package"
|
||||
msgstr "poizvedba po paketih, ki jih spro¾i paket"
|
||||
|
||||
#: lib/query.c:862
|
||||
#: lib/query.c:779
|
||||
msgid "query the packages which require a capability"
|
||||
msgstr "poizvedba po paketih, ki zahtevajo zmo¾nost"
|
||||
|
||||
#: lib/query.c:864
|
||||
#: lib/query.c:781
|
||||
msgid "query the packages which provide a capability"
|
||||
msgstr "poizvedba po paketih, ki nudijo zmo¾nost"
|
||||
|
||||
#: lib/query.c:903
|
||||
#: lib/query.c:820
|
||||
msgid "list all configuration files"
|
||||
msgstr "seznam vseh nastavitvenih datotek"
|
||||
|
||||
#: lib/query.c:905
|
||||
#: lib/query.c:822
|
||||
msgid "list all documentation files"
|
||||
msgstr "seznam vseh dokumentacijskih datotek"
|
||||
|
||||
#: lib/query.c:907
|
||||
#: lib/query.c:824
|
||||
msgid "dump basic file information"
|
||||
msgstr "iznos osnovnih podatkov o datoteki"
|
||||
|
||||
#: lib/query.c:909
|
||||
#: lib/query.c:826
|
||||
msgid "list files in package"
|
||||
msgstr "seznam datotek v paketu"
|
||||
|
||||
#: lib/query.c:913
|
||||
#: lib/query.c:830
|
||||
msgid "use the following query format"
|
||||
msgstr "uporabi naslednjo obliko poizvedbe"
|
||||
|
||||
#: lib/query.c:915
|
||||
#: lib/query.c:832
|
||||
#, fuzzy
|
||||
msgid "substitute i18n sections into spec file"
|
||||
msgstr "zamenjamo razdelje I18N z naslednjim katalogom"
|
||||
|
||||
#: lib/query.c:917
|
||||
#: lib/query.c:834
|
||||
msgid "display the states of the listed files"
|
||||
msgstr "izpis stanja seznama datotek"
|
||||
|
||||
#: lib/query.c:919
|
||||
#: lib/query.c:836
|
||||
msgid "display a verbose file listing"
|
||||
msgstr "izpis ob¹irnega seznama datotek"
|
||||
|
||||
|
@ -2820,41 +2812,31 @@ msgstr "odpiramo staro podatkovno zbirko\n"
|
|||
msgid "opening new database with dbi_major %d\n"
|
||||
msgstr "odpiramo novo podatkovno zbirko\n"
|
||||
|
||||
#: lib/rebuilddb.c:112
|
||||
#, c-format
|
||||
msgid "record number %d in database is bad -- skipping it"
|
||||
msgstr "zapis ¹t. %d v zbirki je okvarjen -- preskakujemo"
|
||||
|
||||
#: lib/rebuilddb.c:131
|
||||
#: lib/rebuilddb.c:111
|
||||
#, c-format
|
||||
msgid "record number %d in database is bad -- skipping."
|
||||
msgstr "zapis ¹t. %d v zbirki je okvarjen -- preskakujemo."
|
||||
|
||||
#: lib/rebuilddb.c:146
|
||||
#, c-format
|
||||
msgid "duplicated database entry: %s-%s-%s -- skipping."
|
||||
msgstr "podvojen zapis v zbirki: %s-%s-%s -- preskakujemo"
|
||||
|
||||
#: lib/rebuilddb.c:162
|
||||
#: lib/rebuilddb.c:140
|
||||
#, c-format
|
||||
msgid "cannot add record originally at %d"
|
||||
msgstr "zapisa ni mo¾no dodati na %d"
|
||||
|
||||
#: lib/rebuilddb.c:186
|
||||
#: lib/rebuilddb.c:156
|
||||
msgid "failed to rebuild database; original database remains in place\n"
|
||||
msgstr ""
|
||||
"ponovna izgradnja podatkovne zbirke neuspe¹na; stara ostaja na istem mestu\n"
|
||||
|
||||
#: lib/rebuilddb.c:194
|
||||
#: lib/rebuilddb.c:164
|
||||
msgid "failed to replace old database with new database!\n"
|
||||
msgstr "zamenjava stare podatkovne zbirke z novo neuspe¹na!\n"
|
||||
|
||||
#: lib/rebuilddb.c:196
|
||||
#: lib/rebuilddb.c:166
|
||||
#, fuzzy, c-format
|
||||
msgid "replace files in %s with files from %s to recover"
|
||||
msgstr "posku¹amo povrniti z nadomestitvijo datotek v %s z datotekami iz %s"
|
||||
|
||||
#: lib/rebuilddb.c:202
|
||||
#: lib/rebuilddb.c:172
|
||||
#, c-format
|
||||
msgid "failed to remove directory %s: %s\n"
|
||||
msgstr "neuspe¹na odstranitev imenika %s: %s\n"
|
||||
|
@ -2949,62 +2931,62 @@ msgid ""
|
|||
msgstr "staro obliko podatkove zbirke pretvorite v novo z --rebuilddb"
|
||||
|
||||
#. error
|
||||
#: lib/rpmdb.c:442
|
||||
#: lib/rpmdb.c:390
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot retrieve package \"%s\" from db"
|
||||
msgstr "paketa ni mo¾no odpreti: %s\n"
|
||||
|
||||
#: lib/rpmdb.c:598
|
||||
#: lib/rpmdb.c:613
|
||||
#, fuzzy, c-format
|
||||
msgid "package not found with key \"%s\" in %s"
|
||||
msgstr "paketa %s ni najti v %s"
|
||||
|
||||
#: lib/rpmdb.c:607
|
||||
#: lib/rpmdb.c:622
|
||||
#, fuzzy, c-format
|
||||
msgid "key \"%s\" not found in %s"
|
||||
msgstr "paketa %s ni najti v %s"
|
||||
|
||||
#: lib/rpmdb.c:625
|
||||
#: lib/rpmdb.c:640
|
||||
#, fuzzy, c-format
|
||||
msgid "rpmdbRemove: cannot read header at 0x%x"
|
||||
msgstr "ni mo¾no prebrati glave pri %d za vpogled"
|
||||
|
||||
#: lib/rpmdb.c:650
|
||||
#: lib/rpmdb.c:665
|
||||
#, fuzzy, c-format
|
||||
msgid "removing 0 %s entries.\n"
|
||||
msgstr "odstranjujemo vnose v podatkovni zbirki\n"
|
||||
|
||||
#: lib/rpmdb.c:656
|
||||
#: lib/rpmdb.c:671
|
||||
#, fuzzy, c-format
|
||||
msgid "removing \"%s\" from %s index.\n"
|
||||
msgstr "odstranjujemo seznam skupin\n"
|
||||
|
||||
#: lib/rpmdb.c:664
|
||||
#: lib/rpmdb.c:679
|
||||
#, fuzzy, c-format
|
||||
msgid "removing %d entries in %s index:\n"
|
||||
msgstr "odstranjujemo seznam imen\n"
|
||||
|
||||
#: lib/rpmdb.c:668 lib/rpmdb.c:865
|
||||
#: lib/rpmdb.c:683 lib/rpmdb.c:880
|
||||
#, c-format
|
||||
msgid "\t%6d %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:803
|
||||
#: lib/rpmdb.c:818
|
||||
#, fuzzy
|
||||
msgid "cannot allocate new instance in database"
|
||||
msgstr "ni mo¾no zagotoviti prostora za podatkovno zbirko"
|
||||
|
||||
#: lib/rpmdb.c:842
|
||||
#: lib/rpmdb.c:857
|
||||
#, c-format
|
||||
msgid "adding 0 %s entries.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:854
|
||||
#: lib/rpmdb.c:869
|
||||
#, fuzzy, c-format
|
||||
msgid "adding \"%s\" to %s index.\n"
|
||||
msgstr "preimenujemo %s v %s\n"
|
||||
|
||||
#: lib/rpmdb.c:861
|
||||
#: lib/rpmdb.c:876
|
||||
#, c-format
|
||||
msgid "adding %d entries to %s index:\n"
|
||||
msgstr ""
|
||||
|
@ -3405,22 +3387,22 @@ msgstr "V makrodatoteki morate nastaviti \"%%_pgp_name\""
|
|||
msgid "excluding file %s%s\n"
|
||||
msgstr "izkljuèujemo datoteko %s%s\n"
|
||||
|
||||
#: lib/transaction.c:427 lib/transaction.c:511
|
||||
#: lib/transaction.c:426 lib/transaction.c:509
|
||||
#, c-format
|
||||
msgid "excluding directory %s\n"
|
||||
msgstr "izkljuèujemo imenik %s\n"
|
||||
|
||||
#: lib/transaction.c:432
|
||||
#: lib/transaction.c:431
|
||||
#, c-format
|
||||
msgid "relocating %s to %s\n"
|
||||
msgstr "prestavljamo %s v %s\n"
|
||||
|
||||
#: lib/transaction.c:504
|
||||
#: lib/transaction.c:502
|
||||
#, c-format
|
||||
msgid "relocating directory %s to %s\n"
|
||||
msgstr "prestavljamo imenik %s v %s\n"
|
||||
|
||||
#: lib/transaction.c:656
|
||||
#: lib/transaction.c:654
|
||||
#, c-format
|
||||
msgid "%s skipped due to missingok flag\n"
|
||||
msgstr "%s preskoèen zaradi manjkajoèe zastavice OK\n"
|
||||
|
@ -3530,6 +3512,18 @@ msgstr "Nezadovoljene soodvisnosti za %s-%s-%s: "
|
|||
msgid "rpmVerify: rpmdbOpen() failed\n"
|
||||
msgstr "rpmVerify: rpmdbOpen() neuspe¹en\n"
|
||||
|
||||
#~ msgid "dbrecMatchesDepFlags() failed to read header"
|
||||
#~ msgstr "dbrecMatchesDepFlags() ni uspel prebrati glave"
|
||||
|
||||
#~ msgid "could not read database record!\n"
|
||||
#~ msgstr "zapisa podatkovne zbirke ni mo¾no prebrati!\n"
|
||||
|
||||
#~ msgid "record number %d in database is bad -- skipping it"
|
||||
#~ msgstr "zapis ¹t. %d v zbirki je okvarjen -- preskakujemo"
|
||||
|
||||
#~ msgid "duplicated database entry: %s-%s-%s -- skipping."
|
||||
#~ msgstr "podvojen zapis v zbirki: %s-%s-%s -- preskakujemo"
|
||||
|
||||
#~ msgid "opening database mode 0x%x in %s\n"
|
||||
#~ msgstr "odpiramo datoteko z naèinom 0x%x v %s\n"
|
||||
|
||||
|
|
190
po/sr.po
190
po/sr.po
|
@ -1,6 +1,6 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"POT-Creation-Date: 2000-04-12 09:57-0400\n"
|
||||
"POT-Creation-Date: 2000-04-13 12:17-0400\n"
|
||||
"Content-Type: text/plain; charset=\n"
|
||||
"Date: 1998-05-02 21:41:47-0400\n"
|
||||
"From: Erik Troan <ewt@lacrosse.redhat.com>\n"
|
||||
|
@ -1693,12 +1693,12 @@ msgstr "Ne mogu da upi
|
|||
msgid "Wrote: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/pack.c:519
|
||||
#: build/pack.c:518
|
||||
#, c-format
|
||||
msgid "Could not generate output filename for package %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/pack.c:536
|
||||
#: build/pack.c:535
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot create %s: %s\n"
|
||||
msgstr "Ne mogu da otvorim datoteku %s: "
|
||||
|
@ -1825,7 +1825,7 @@ msgstr ""
|
|||
msgid "line %d: Illegal char '-' in %s: %s"
|
||||
msgstr "neuspelo otvaranje %s: %s"
|
||||
|
||||
#: build/parsePreamble.c:445 build/parseSpec.c:375
|
||||
#: build/parsePreamble.c:445 build/parseSpec.c:374
|
||||
#, c-format
|
||||
msgid "BuildRoot can not be \"/\": %s"
|
||||
msgstr ""
|
||||
|
@ -2014,7 +2014,7 @@ msgstr ""
|
|||
msgid "malformed %%include statement"
|
||||
msgstr ""
|
||||
|
||||
#: build/parseSpec.c:470
|
||||
#: build/parseSpec.c:469
|
||||
#, fuzzy
|
||||
msgid "No buildable architectures"
|
||||
msgstr "nemoj proveravati arhitekturu paketa"
|
||||
|
@ -2029,17 +2029,17 @@ msgstr "paket %s nije naveden u %s"
|
|||
msgid "archive = %s, fs = %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/spec.c:245
|
||||
#: build/spec.c:244
|
||||
#, fuzzy, c-format
|
||||
msgid "line %d: Bad number: %s"
|
||||
msgstr "pogre¹an broj paketa: %s\n"
|
||||
|
||||
#: build/spec.c:251
|
||||
#: build/spec.c:250
|
||||
#, c-format
|
||||
msgid "line %d: Bad no%s number: %d"
|
||||
msgstr ""
|
||||
|
||||
#: build/spec.c:310
|
||||
#: build/spec.c:309
|
||||
#, fuzzy, c-format
|
||||
msgid "line %d: Bad %s number: %s\n"
|
||||
msgstr "pogre¹an broj paketa: %s\n"
|
||||
|
@ -2129,89 +2129,85 @@ msgid "error removing record %s into %s"
|
|||
msgstr "gre¹ka uklanjanja sloga %s u %s"
|
||||
|
||||
#. XXX legacy epoch-less requires/conflicts compatibility
|
||||
#: lib/depends.c:417
|
||||
#: lib/depends.c:430
|
||||
#, c-format
|
||||
msgid ""
|
||||
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
|
||||
"\tA %s\tB %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:446
|
||||
#: lib/depends.c:459
|
||||
#, c-format
|
||||
msgid " %s A %s\tB %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:538
|
||||
msgid "dbrecMatchesDepFlags() failed to read header"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:795
|
||||
#: lib/depends.c:788
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by added file list.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:834
|
||||
#: lib/depends.c:836
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s satisfied by added package.\n"
|
||||
msgstr "datoteka %s ne pripada nijednom paketu\n"
|
||||
|
||||
#: lib/depends.c:851
|
||||
#: lib/depends.c:853
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by added provide.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:882
|
||||
#: lib/depends.c:886
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by rpmrc provides.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:909
|
||||
#: lib/depends.c:914
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by db file lists.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:934
|
||||
#: lib/depends.c:932
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by db provides.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:959
|
||||
#: lib/depends.c:949
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s satisfied by db packages.\n"
|
||||
msgstr "datoteka %s ne pripada nijednom paketu\n"
|
||||
|
||||
#: lib/depends.c:976
|
||||
#: lib/depends.c:961
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by rpmlib version.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:986
|
||||
#: lib/depends.c:971
|
||||
#, c-format
|
||||
msgid "%s: %s unsatisfied.\n"
|
||||
msgstr ""
|
||||
|
||||
#. requirements are not satisfied.
|
||||
#: lib/depends.c:1038
|
||||
#: lib/depends.c:1019
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s require not satisfied: %s\n"
|
||||
msgstr "paket %s nije naveden u %s"
|
||||
|
||||
#. conflicts exist.
|
||||
#: lib/depends.c:1100
|
||||
#: lib/depends.c:1081
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s conflicts: %s\n"
|
||||
msgstr "paket %s nije naveden u %s"
|
||||
|
||||
#: lib/depends.c:1155 lib/depends.c:1450
|
||||
#, c-format
|
||||
msgid "cannot read header at %d for dependency check"
|
||||
msgstr "ne mogu da proèitam zaglavlje na %s za proveru zavisnosti"
|
||||
|
||||
#: lib/depends.c:1246
|
||||
#: lib/depends.c:1211
|
||||
#, c-format
|
||||
msgid "loop in prerequisite chain: %s"
|
||||
msgstr "petlja u lancu: %s"
|
||||
|
||||
#: lib/depends.c:1415
|
||||
#, c-format
|
||||
msgid "cannot read header at %d for dependency check"
|
||||
msgstr "ne mogu da proèitam zaglavlje na %s za proveru zavisnosti"
|
||||
|
||||
#: lib/falloc.c:135
|
||||
#, c-format
|
||||
msgid ""
|
||||
|
@ -2399,7 +2395,7 @@ msgstr "upit nad paketom koji ima <datoteku>"
|
|||
msgid "renaming %s to %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/install.c:562 lib/install.c:834 lib/uninstall.c:29
|
||||
#: lib/install.c:562 lib/install.c:838 lib/uninstall.c:29
|
||||
#, c-format
|
||||
msgid "rename of %s to %s failed: %s"
|
||||
msgstr "preimenovanje %s u %s nije uspelo: %s"
|
||||
|
@ -2413,25 +2409,25 @@ msgstr ""
|
|||
msgid "package: %s-%s-%s files test = %d\n"
|
||||
msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
|
||||
|
||||
#: lib/install.c:764
|
||||
#: lib/install.c:768
|
||||
msgid "stopping install as we're running --test\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/install.c:769
|
||||
#: lib/install.c:773
|
||||
msgid "running preinstall script (if any)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/install.c:794
|
||||
#: lib/install.c:798
|
||||
#, c-format
|
||||
msgid "warning: %s created as %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/install.c:830
|
||||
#: lib/install.c:834
|
||||
#, c-format
|
||||
msgid "warning: %s saved as %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/install.c:904
|
||||
#: lib/install.c:908
|
||||
msgid "running postinstall scripts (if any)\n"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2705,144 +2701,140 @@ msgstr "upit nad %s neuspeo\n"
|
|||
msgid "query of specfile %s failed, can't parse\n"
|
||||
msgstr "upit nad %s neuspeo\n"
|
||||
|
||||
#: lib/query.c:586
|
||||
msgid "could not read database record!\n"
|
||||
msgstr "neuspelo èitanje sloga baze podataka!\n"
|
||||
|
||||
#: lib/query.c:597
|
||||
#: lib/query.c:581
|
||||
#, fuzzy
|
||||
msgid "no packages\n"
|
||||
msgstr "upit nad svim paketima"
|
||||
|
||||
#: lib/query.c:608 lib/query.c:616
|
||||
#: lib/query.c:591
|
||||
#, c-format
|
||||
msgid "group %s does not contain any packages\n"
|
||||
msgstr "grupa %s ne sadr¾i nijedan paket\n"
|
||||
|
||||
#: lib/query.c:627 lib/query.c:635
|
||||
#: lib/query.c:601
|
||||
#, c-format
|
||||
msgid "no package triggers %s\n"
|
||||
msgstr "nijedan paket ne aktivira %s\n"
|
||||
|
||||
#: lib/query.c:646 lib/query.c:654
|
||||
#: lib/query.c:611
|
||||
#, c-format
|
||||
msgid "no package requires %s\n"
|
||||
msgstr "nijedan paket ne zahteva %s\n"
|
||||
|
||||
#: lib/query.c:666 lib/query.c:674
|
||||
#: lib/query.c:622
|
||||
#, c-format
|
||||
msgid "no package provides %s\n"
|
||||
msgstr "nijedan paket ne obezbeðuje %s\n"
|
||||
|
||||
#: lib/query.c:691 lib/query.c:709
|
||||
#: lib/query.c:638
|
||||
#, fuzzy, c-format
|
||||
msgid "file %s: %s\n"
|
||||
msgstr "neuspelo otvaranje %s: %s"
|
||||
|
||||
#: lib/query.c:694 lib/query.c:712
|
||||
#: lib/query.c:641
|
||||
#, c-format
|
||||
msgid "file %s is not owned by any package\n"
|
||||
msgstr "datoteka %s ne pripada nijednom paketu\n"
|
||||
|
||||
#: lib/query.c:735
|
||||
#: lib/query.c:663
|
||||
#, c-format
|
||||
msgid "invalid package number: %s\n"
|
||||
msgstr "pogre¹an broj paketa: %s\n"
|
||||
|
||||
#: lib/query.c:738
|
||||
#: lib/query.c:666
|
||||
#, fuzzy, c-format
|
||||
msgid "package record number: %d\n"
|
||||
msgstr "pogre¹an broj paketa: %s\n"
|
||||
|
||||
#: lib/query.c:742 lib/query.c:751
|
||||
#: lib/query.c:669
|
||||
#, c-format
|
||||
msgid "record %d could not be read\n"
|
||||
msgstr "ne mogu da proèitam slog %d\n"
|
||||
|
||||
#: lib/query.c:763 lib/rpminstall.c:436
|
||||
#: lib/query.c:680 lib/rpminstall.c:436
|
||||
#, c-format
|
||||
msgid "package %s is not installed\n"
|
||||
msgstr "paket %s nije instaliran\n"
|
||||
|
||||
#: lib/query.c:766
|
||||
#: lib/query.c:683
|
||||
#, c-format
|
||||
msgid "error looking for package %s\n"
|
||||
msgstr "gre¹ka kod potrage za paketom %s\n"
|
||||
|
||||
#: lib/query.c:791
|
||||
#: lib/query.c:708
|
||||
#, fuzzy
|
||||
msgid "rpmQuery: rpmdbOpen() failed\n"
|
||||
msgstr "%s: Neuspelo otvaranje\n"
|
||||
|
||||
#: lib/query.c:850
|
||||
#: lib/query.c:767
|
||||
#, fuzzy
|
||||
msgid "query package owning file"
|
||||
msgstr "upit nad paketom koji ima <datoteku>"
|
||||
|
||||
#: lib/query.c:852
|
||||
#: lib/query.c:769
|
||||
#, fuzzy
|
||||
msgid "query packages in group"
|
||||
msgstr "paket nema imena"
|
||||
|
||||
#: lib/query.c:854
|
||||
#: lib/query.c:771
|
||||
#, fuzzy
|
||||
msgid "query a package file"
|
||||
msgstr "upit nad svim paketima"
|
||||
|
||||
#: lib/query.c:858
|
||||
#: lib/query.c:775
|
||||
#, fuzzy
|
||||
msgid "query a spec file"
|
||||
msgstr "upit nad %s neuspeo\n"
|
||||
|
||||
#: lib/query.c:860
|
||||
#: lib/query.c:777
|
||||
#, fuzzy
|
||||
msgid "query the pacakges triggered by the package"
|
||||
msgstr "upit nad paketom koji ima <datoteku>"
|
||||
|
||||
#: lib/query.c:862
|
||||
#: lib/query.c:779
|
||||
#, fuzzy
|
||||
msgid "query the packages which require a capability"
|
||||
msgstr "upit za pakete koji zahtevaju <i> svojstvo"
|
||||
|
||||
#: lib/query.c:864
|
||||
#: lib/query.c:781
|
||||
#, fuzzy
|
||||
msgid "query the packages which provide a capability"
|
||||
msgstr "upit za pakete koji omoguæavaju <i> svojstvo"
|
||||
|
||||
#: lib/query.c:903
|
||||
#: lib/query.c:820
|
||||
#, fuzzy
|
||||
msgid "list all configuration files"
|
||||
msgstr "prika¾i samo konfiguracione datoteke (povlaèi -i)"
|
||||
|
||||
#: lib/query.c:905
|
||||
#: lib/query.c:822
|
||||
#, fuzzy
|
||||
msgid "list all documentation files"
|
||||
msgstr "instaliraj dokumentaciju"
|
||||
|
||||
#: lib/query.c:907
|
||||
#: lib/query.c:824
|
||||
#, fuzzy
|
||||
msgid "dump basic file information"
|
||||
msgstr "prika¾i informacije o paketu"
|
||||
|
||||
#: lib/query.c:909
|
||||
#: lib/query.c:826
|
||||
#, fuzzy
|
||||
msgid "list files in package"
|
||||
msgstr "instaliraj paket"
|
||||
|
||||
#: lib/query.c:913
|
||||
#: lib/query.c:830
|
||||
msgid "use the following query format"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:915
|
||||
#: lib/query.c:832
|
||||
#, fuzzy
|
||||
msgid "substitute i18n sections into spec file"
|
||||
msgstr "upit nad paketom koji ima <datoteku>"
|
||||
|
||||
#: lib/query.c:917
|
||||
#: lib/query.c:834
|
||||
msgid "display the states of the listed files"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:919
|
||||
#: lib/query.c:836
|
||||
#, fuzzy
|
||||
msgid "display a verbose file listing"
|
||||
msgstr "prika¾i listu datoteka u paketu"
|
||||
|
@ -2881,40 +2873,30 @@ msgstr "rekreiraj bazu podataka iz postoje
|
|||
msgid "opening new database with dbi_major %d\n"
|
||||
msgstr "rekreiraj bazu podataka iz postojeæe baze"
|
||||
|
||||
#: lib/rebuilddb.c:112
|
||||
#, c-format
|
||||
msgid "record number %d in database is bad -- skipping it"
|
||||
msgstr "slog broj %d u bazi podataka je neispravan -- preskaèem ga"
|
||||
|
||||
#: lib/rebuilddb.c:131
|
||||
#: lib/rebuilddb.c:111
|
||||
#, fuzzy, c-format
|
||||
msgid "record number %d in database is bad -- skipping."
|
||||
msgstr "slog broj %d u bazi podataka je neispravan -- preskaèem ga"
|
||||
|
||||
#: lib/rebuilddb.c:146
|
||||
#, c-format
|
||||
msgid "duplicated database entry: %s-%s-%s -- skipping."
|
||||
msgstr ""
|
||||
|
||||
#: lib/rebuilddb.c:162
|
||||
#: lib/rebuilddb.c:140
|
||||
#, c-format
|
||||
msgid "cannot add record originally at %d"
|
||||
msgstr "ne mogu da dodam slog originalno na %d"
|
||||
|
||||
#: lib/rebuilddb.c:186
|
||||
#: lib/rebuilddb.c:156
|
||||
msgid "failed to rebuild database; original database remains in place\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rebuilddb.c:194
|
||||
#: lib/rebuilddb.c:164
|
||||
msgid "failed to replace old database with new database!\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rebuilddb.c:196
|
||||
#: lib/rebuilddb.c:166
|
||||
#, c-format
|
||||
msgid "replace files in %s with files from %s to recover"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rebuilddb.c:202
|
||||
#: lib/rebuilddb.c:172
|
||||
#, fuzzy, c-format
|
||||
msgid "failed to remove directory %s: %s\n"
|
||||
msgstr "neuspelo otvaranje %s: %s"
|
||||
|
@ -3011,62 +2993,62 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. error
|
||||
#: lib/rpmdb.c:442
|
||||
#: lib/rpmdb.c:390
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot retrieve package \"%s\" from db"
|
||||
msgstr "gre¹ka: ne mogu da otvorim %s%s/packages.rpm\n"
|
||||
|
||||
#: lib/rpmdb.c:598
|
||||
#: lib/rpmdb.c:613
|
||||
#, fuzzy, c-format
|
||||
msgid "package not found with key \"%s\" in %s"
|
||||
msgstr "paket %s nije naðen u %s"
|
||||
|
||||
#: lib/rpmdb.c:607
|
||||
#: lib/rpmdb.c:622
|
||||
#, fuzzy, c-format
|
||||
msgid "key \"%s\" not found in %s"
|
||||
msgstr "paket %s nije naðen u %s"
|
||||
|
||||
#: lib/rpmdb.c:625
|
||||
#: lib/rpmdb.c:640
|
||||
#, fuzzy, c-format
|
||||
msgid "rpmdbRemove: cannot read header at 0x%x"
|
||||
msgstr "ne mogu da proèitam zaglavlje na %d za proveru"
|
||||
|
||||
#: lib/rpmdb.c:650
|
||||
#: lib/rpmdb.c:665
|
||||
#, c-format
|
||||
msgid "removing 0 %s entries.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:656
|
||||
#: lib/rpmdb.c:671
|
||||
#, fuzzy, c-format
|
||||
msgid "removing \"%s\" from %s index.\n"
|
||||
msgstr "gre¹ka uklanjanja sloga %s u %s"
|
||||
|
||||
#: lib/rpmdb.c:664
|
||||
#: lib/rpmdb.c:679
|
||||
#, fuzzy, c-format
|
||||
msgid "removing %d entries in %s index:\n"
|
||||
msgstr "gre¹ka uklanjanja sloga %s u %s"
|
||||
|
||||
#: lib/rpmdb.c:668 lib/rpmdb.c:865
|
||||
#: lib/rpmdb.c:683 lib/rpmdb.c:880
|
||||
#, c-format
|
||||
msgid "\t%6d %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:803
|
||||
#: lib/rpmdb.c:818
|
||||
#, fuzzy
|
||||
msgid "cannot allocate new instance in database"
|
||||
msgstr "ne mogu da zauzmem prostor za bazu podataka"
|
||||
|
||||
#: lib/rpmdb.c:842
|
||||
#: lib/rpmdb.c:857
|
||||
#, c-format
|
||||
msgid "adding 0 %s entries.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:854
|
||||
#: lib/rpmdb.c:869
|
||||
#, c-format
|
||||
msgid "adding \"%s\" to %s index.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:861
|
||||
#: lib/rpmdb.c:876
|
||||
#, c-format
|
||||
msgid "adding %d entries to %s index:\n"
|
||||
msgstr ""
|
||||
|
@ -3490,22 +3472,22 @@ msgstr "Morate podesiti \"pgp_name:\" u va
|
|||
msgid "excluding file %s%s\n"
|
||||
msgstr "Pribavljam %s\n"
|
||||
|
||||
#: lib/transaction.c:427 lib/transaction.c:511
|
||||
#: lib/transaction.c:426 lib/transaction.c:509
|
||||
#, fuzzy, c-format
|
||||
msgid "excluding directory %s\n"
|
||||
msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
|
||||
|
||||
#: lib/transaction.c:432
|
||||
#: lib/transaction.c:431
|
||||
#, c-format
|
||||
msgid "relocating %s to %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/transaction.c:504
|
||||
#: lib/transaction.c:502
|
||||
#, fuzzy, c-format
|
||||
msgid "relocating directory %s to %s\n"
|
||||
msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
|
||||
|
||||
#: lib/transaction.c:656
|
||||
#: lib/transaction.c:654
|
||||
#, c-format
|
||||
msgid "%s skipped due to missingok flag\n"
|
||||
msgstr ""
|
||||
|
@ -3616,6 +3598,12 @@ msgstr "Nezadovoljene me
|
|||
msgid "rpmVerify: rpmdbOpen() failed\n"
|
||||
msgstr "%s: Neuspelo otvaranje\n"
|
||||
|
||||
#~ msgid "could not read database record!\n"
|
||||
#~ msgstr "neuspelo èitanje sloga baze podataka!\n"
|
||||
|
||||
#~ msgid "record number %d in database is bad -- skipping it"
|
||||
#~ msgstr "slog broj %d u bazi podataka je neispravan -- preskaèem ga"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "opening database mode 0x%x in %s\n"
|
||||
#~ msgstr "rekreiraj bazu podataka iz postojeæe baze"
|
||||
|
|
195
po/sv.po
195
po/sv.po
|
@ -1,12 +1,12 @@
|
|||
# Swedish messages for RPM
|
||||
# Copyright © 1999 Free Software Foundation, Inc.
|
||||
# Göran Uddeborg <göran@uddeborg.pp.se>, 1999, 2000.
|
||||
# $Revision: 1.85 $
|
||||
# $Revision: 1.86 $
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: rpm 3.0.4\n"
|
||||
"POT-Creation-Date: 2000-04-12 09:57-0400\n"
|
||||
"POT-Creation-Date: 2000-04-13 12:17-0400\n"
|
||||
"PO-Revision-Date: 2000-02-21 12:20+0100\n"
|
||||
"Last-Translator: Göran Uddeborg <göran@uddeborg.pp.se>\n"
|
||||
"Language-Team: Swedish <sv@li.org>\n"
|
||||
|
@ -1638,12 +1638,12 @@ msgstr "Kan inte skriva paket %s: %s"
|
|||
msgid "Wrote: %s\n"
|
||||
msgstr "Skrev: %s\n"
|
||||
|
||||
#: build/pack.c:519
|
||||
#: build/pack.c:518
|
||||
#, c-format
|
||||
msgid "Could not generate output filename for package %s: %s\n"
|
||||
msgstr "Kunde inte generera utfilnamn för paketet %s: %s\n"
|
||||
|
||||
#: build/pack.c:536
|
||||
#: build/pack.c:535
|
||||
#, c-format
|
||||
msgid "cannot create %s: %s\n"
|
||||
msgstr "kan inte skapa %s: %s\n"
|
||||
|
@ -1770,7 +1770,7 @@ msgstr "rad %d: Tom tagg: %s"
|
|||
msgid "line %d: Illegal char '-' in %s: %s"
|
||||
msgstr "rad %d: Otillåtet tecken \"-\" i %s: %s"
|
||||
|
||||
#: build/parsePreamble.c:445 build/parseSpec.c:375
|
||||
#: build/parsePreamble.c:445 build/parseSpec.c:374
|
||||
#, c-format
|
||||
msgid "BuildRoot can not be \"/\": %s"
|
||||
msgstr "BuildRoot kan inte vara \"/\": %s"
|
||||
|
@ -1959,7 +1959,7 @@ msgstr "%s:%d: Fick ett %%endif utan n
|
|||
msgid "malformed %%include statement"
|
||||
msgstr "felformatterad %%include-sats"
|
||||
|
||||
#: build/parseSpec.c:470
|
||||
#: build/parseSpec.c:469
|
||||
msgid "No buildable architectures"
|
||||
msgstr "Inga byggbara arkitekturer"
|
||||
|
||||
|
@ -1972,17 +1972,17 @@ msgstr "Paketet har ingen %%description: %s"
|
|||
msgid "archive = %s, fs = %s\n"
|
||||
msgstr "arkiv = %s, fs = %s\n"
|
||||
|
||||
#: build/spec.c:245
|
||||
#: build/spec.c:244
|
||||
#, c-format
|
||||
msgid "line %d: Bad number: %s"
|
||||
msgstr "rad %d: Felaktigt tal: %s"
|
||||
|
||||
#: build/spec.c:251
|
||||
#: build/spec.c:250
|
||||
#, c-format
|
||||
msgid "line %d: Bad no%s number: %d"
|
||||
msgstr "rad %d: Felaktigt no%s-tal: %d"
|
||||
|
||||
#: build/spec.c:310
|
||||
#: build/spec.c:309
|
||||
#, c-format
|
||||
msgid "line %d: Bad %s number: %s\n"
|
||||
msgstr "rad %d: Felaktigt %s-tal: %s\n"
|
||||
|
@ -2069,7 +2069,7 @@ msgid "error removing record %s into %s"
|
|||
msgstr "fel när post %s togs bort ur %s"
|
||||
|
||||
#. XXX legacy epoch-less requires/conflicts compatibility
|
||||
#: lib/depends.c:417
|
||||
#: lib/depends.c:430
|
||||
#, c-format
|
||||
msgid ""
|
||||
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
|
||||
|
@ -2078,82 +2078,78 @@ msgstr ""
|
|||
"\"B\"-beroendet beghöver en epok (antar samma som \"A\")\n"
|
||||
" A %s B %s\n"
|
||||
|
||||
#: lib/depends.c:446
|
||||
#: lib/depends.c:459
|
||||
#, c-format
|
||||
msgid " %s A %s\tB %s\n"
|
||||
msgstr " %s A %s\tB %s\n"
|
||||
|
||||
#: lib/depends.c:538
|
||||
msgid "dbrecMatchesDepFlags() failed to read header"
|
||||
msgstr "dbrecMatchesDepFlags() kunde inte läsa huvud"
|
||||
|
||||
#: lib/depends.c:795
|
||||
#: lib/depends.c:788
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by added file list.\n"
|
||||
msgstr "%s: %s uppfyllt av tillagd fillista.\n"
|
||||
|
||||
#: lib/depends.c:834
|
||||
#: lib/depends.c:836
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by added package.\n"
|
||||
msgstr "%s: %s uppfyllt av tillagt paket.\n"
|
||||
|
||||
#: lib/depends.c:851
|
||||
#: lib/depends.c:853
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by added provide.\n"
|
||||
msgstr "%s: %s uppfyllt av tillagt tillhandahållande (provide).\n"
|
||||
|
||||
#: lib/depends.c:882
|
||||
#: lib/depends.c:886
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by rpmrc provides.\n"
|
||||
msgstr "%s: %s uppfyllt av tillhandahållanden (provides) från rpmrc.\n"
|
||||
|
||||
#: lib/depends.c:909
|
||||
#: lib/depends.c:914
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by db file lists.\n"
|
||||
msgstr "%s: %s uppfyllt av fillistor från db.\n"
|
||||
|
||||
#: lib/depends.c:934
|
||||
#: lib/depends.c:932
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by db provides.\n"
|
||||
msgstr "%s: %s uppfyllt av tillhandahållanden (provides) från db.\n"
|
||||
|
||||
#: lib/depends.c:959
|
||||
#: lib/depends.c:949
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by db packages.\n"
|
||||
msgstr "%s: %s uppfyllt av db-paket.\n"
|
||||
|
||||
#: lib/depends.c:976
|
||||
#: lib/depends.c:961
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by rpmlib version.\n"
|
||||
msgstr "%s: %s uppfyllt av rpmlib-version.\n"
|
||||
|
||||
#: lib/depends.c:986
|
||||
#: lib/depends.c:971
|
||||
#, c-format
|
||||
msgid "%s: %s unsatisfied.\n"
|
||||
msgstr "%s: %s ej uppfyllt.\n"
|
||||
|
||||
#. requirements are not satisfied.
|
||||
#: lib/depends.c:1038
|
||||
#: lib/depends.c:1019
|
||||
#, c-format
|
||||
msgid "package %s require not satisfied: %s\n"
|
||||
msgstr "paket %s behov inte uppfyllda: %s\n"
|
||||
|
||||
#. conflicts exist.
|
||||
#: lib/depends.c:1100
|
||||
#: lib/depends.c:1081
|
||||
#, c-format
|
||||
msgid "package %s conflicts: %s\n"
|
||||
msgstr "paket %s står i konflikt: %s\n"
|
||||
|
||||
#: lib/depends.c:1155 lib/depends.c:1450
|
||||
#, c-format
|
||||
msgid "cannot read header at %d for dependency check"
|
||||
msgstr "kan inte läsa huvud vid %d för beroendekontroll"
|
||||
|
||||
#: lib/depends.c:1246
|
||||
#: lib/depends.c:1211
|
||||
#, c-format
|
||||
msgid "loop in prerequisite chain: %s"
|
||||
msgstr "cirkularitet i kedja av förutsättningar: %s"
|
||||
|
||||
#: lib/depends.c:1415
|
||||
#, c-format
|
||||
msgid "cannot read header at %d for dependency check"
|
||||
msgstr "kan inte läsa huvud vid %d för beroendekontroll"
|
||||
|
||||
#: lib/falloc.c:135
|
||||
#, c-format
|
||||
msgid ""
|
||||
|
@ -2342,7 +2338,7 @@ msgstr "k
|
|||
msgid "renaming %s to %s\n"
|
||||
msgstr "byter namn på %s till %s\n"
|
||||
|
||||
#: lib/install.c:562 lib/install.c:834 lib/uninstall.c:29
|
||||
#: lib/install.c:562 lib/install.c:838 lib/uninstall.c:29
|
||||
#, c-format
|
||||
msgid "rename of %s to %s failed: %s"
|
||||
msgstr "namnbyte från %s till %s misslyckades: %s"
|
||||
|
@ -2356,25 +2352,25 @@ msgstr "k
|
|||
msgid "package: %s-%s-%s files test = %d\n"
|
||||
msgstr "paket: %s-%s-%s filtest = %d\n"
|
||||
|
||||
#: lib/install.c:764
|
||||
#: lib/install.c:768
|
||||
msgid "stopping install as we're running --test\n"
|
||||
msgstr "avbryter installation eftersom vi kör --test\n"
|
||||
|
||||
#: lib/install.c:769
|
||||
#: lib/install.c:773
|
||||
msgid "running preinstall script (if any)\n"
|
||||
msgstr "kör (eventuellt) preinstalltionsskript\n"
|
||||
|
||||
#: lib/install.c:794
|
||||
#: lib/install.c:798
|
||||
#, c-format
|
||||
msgid "warning: %s created as %s"
|
||||
msgstr "varning: %s skapades som %s"
|
||||
|
||||
#: lib/install.c:830
|
||||
#: lib/install.c:834
|
||||
#, c-format
|
||||
msgid "warning: %s saved as %s"
|
||||
msgstr "varning: %s sparades som %s"
|
||||
|
||||
#: lib/install.c:904
|
||||
#: lib/install.c:908
|
||||
msgid "running postinstall scripts (if any)\n"
|
||||
msgstr "kör (eventuellt) postinstallationsskript\n"
|
||||
|
||||
|
@ -2649,132 +2645,128 @@ msgstr "fr
|
|||
msgid "query of specfile %s failed, can't parse\n"
|
||||
msgstr "fråga om spec-fil %s misslyckades, kan inte parsa\n"
|
||||
|
||||
#: lib/query.c:586
|
||||
msgid "could not read database record!\n"
|
||||
msgstr "kunde inte lästa databaspost!\n"
|
||||
|
||||
#: lib/query.c:597
|
||||
#: lib/query.c:581
|
||||
#, fuzzy
|
||||
msgid "no packages\n"
|
||||
msgstr "hittade %d paket\n"
|
||||
|
||||
#: lib/query.c:608 lib/query.c:616
|
||||
#: lib/query.c:591
|
||||
#, c-format
|
||||
msgid "group %s does not contain any packages\n"
|
||||
msgstr "grupp %s innehåller inga paket\n"
|
||||
|
||||
#: lib/query.c:627 lib/query.c:635
|
||||
#: lib/query.c:601
|
||||
#, c-format
|
||||
msgid "no package triggers %s\n"
|
||||
msgstr "inga paketutlösare %s\n"
|
||||
|
||||
#: lib/query.c:646 lib/query.c:654
|
||||
#: lib/query.c:611
|
||||
#, c-format
|
||||
msgid "no package requires %s\n"
|
||||
msgstr "inget paket behöver %s\n"
|
||||
|
||||
#: lib/query.c:666 lib/query.c:674
|
||||
#: lib/query.c:622
|
||||
#, c-format
|
||||
msgid "no package provides %s\n"
|
||||
msgstr "inget paket tillhandahåller %s\n"
|
||||
|
||||
#: lib/query.c:691 lib/query.c:709
|
||||
#: lib/query.c:638
|
||||
#, c-format
|
||||
msgid "file %s: %s\n"
|
||||
msgstr "fil %s: %s\n"
|
||||
|
||||
#: lib/query.c:694 lib/query.c:712
|
||||
#: lib/query.c:641
|
||||
#, c-format
|
||||
msgid "file %s is not owned by any package\n"
|
||||
msgstr "fil %s ägs inte av något paket\n"
|
||||
|
||||
#: lib/query.c:735
|
||||
#: lib/query.c:663
|
||||
#, c-format
|
||||
msgid "invalid package number: %s\n"
|
||||
msgstr "felaktigt paketnummer: %s\n"
|
||||
|
||||
#: lib/query.c:738
|
||||
#: lib/query.c:666
|
||||
#, c-format
|
||||
msgid "package record number: %d\n"
|
||||
msgstr "paketpost nummer: %d\n"
|
||||
|
||||
#: lib/query.c:742 lib/query.c:751
|
||||
#: lib/query.c:669
|
||||
#, c-format
|
||||
msgid "record %d could not be read\n"
|
||||
msgstr "post %d kunde inte läsas\n"
|
||||
|
||||
#: lib/query.c:763 lib/rpminstall.c:436
|
||||
#: lib/query.c:680 lib/rpminstall.c:436
|
||||
#, c-format
|
||||
msgid "package %s is not installed\n"
|
||||
msgstr "paket %s är inte installerat\n"
|
||||
|
||||
#: lib/query.c:766
|
||||
#: lib/query.c:683
|
||||
#, c-format
|
||||
msgid "error looking for package %s\n"
|
||||
msgstr "fel vid sökning efter paket %s\n"
|
||||
|
||||
#: lib/query.c:791
|
||||
#: lib/query.c:708
|
||||
msgid "rpmQuery: rpmdbOpen() failed\n"
|
||||
msgstr "rpmQuery: rpmdbOpen() misslyckades\n"
|
||||
|
||||
#: lib/query.c:850
|
||||
#: lib/query.c:767
|
||||
msgid "query package owning file"
|
||||
msgstr "undersök paket som äger fil"
|
||||
|
||||
#: lib/query.c:852
|
||||
#: lib/query.c:769
|
||||
msgid "query packages in group"
|
||||
msgstr "undersök paket i grupp"
|
||||
|
||||
#: lib/query.c:854
|
||||
#: lib/query.c:771
|
||||
msgid "query a package file"
|
||||
msgstr "undersök en paketfil"
|
||||
|
||||
#: lib/query.c:858
|
||||
#: lib/query.c:775
|
||||
msgid "query a spec file"
|
||||
msgstr "fråga om en spec-fil"
|
||||
|
||||
#: lib/query.c:860
|
||||
#: lib/query.c:777
|
||||
msgid "query the pacakges triggered by the package"
|
||||
msgstr "undersök paket utlösta av paketet"
|
||||
|
||||
#: lib/query.c:862
|
||||
#: lib/query.c:779
|
||||
msgid "query the packages which require a capability"
|
||||
msgstr "fråga om paket som behöver en egenskap"
|
||||
|
||||
#: lib/query.c:864
|
||||
#: lib/query.c:781
|
||||
msgid "query the packages which provide a capability"
|
||||
msgstr "fråga om paket som tillhandahåller en egenskap"
|
||||
|
||||
#: lib/query.c:903
|
||||
#: lib/query.c:820
|
||||
msgid "list all configuration files"
|
||||
msgstr "lista alla konfigurationsfiler"
|
||||
|
||||
#: lib/query.c:905
|
||||
#: lib/query.c:822
|
||||
msgid "list all documentation files"
|
||||
msgstr "lista alla dokumentationsfiler"
|
||||
|
||||
#: lib/query.c:907
|
||||
#: lib/query.c:824
|
||||
msgid "dump basic file information"
|
||||
msgstr "visa filinformation"
|
||||
|
||||
#: lib/query.c:909
|
||||
#: lib/query.c:826
|
||||
msgid "list files in package"
|
||||
msgstr "lista filer i paketet"
|
||||
|
||||
#: lib/query.c:913
|
||||
#: lib/query.c:830
|
||||
msgid "use the following query format"
|
||||
msgstr "använd följande frågeformat"
|
||||
|
||||
#: lib/query.c:915
|
||||
#: lib/query.c:832
|
||||
#, fuzzy
|
||||
msgid "substitute i18n sections into spec file"
|
||||
msgstr "ersätt översatta sektioner från följande katalog"
|
||||
|
||||
#: lib/query.c:917
|
||||
#: lib/query.c:834
|
||||
msgid "display the states of the listed files"
|
||||
msgstr "visa tillstånd för de listade filerna"
|
||||
|
||||
#: lib/query.c:919
|
||||
#: lib/query.c:836
|
||||
msgid "display a verbose file listing"
|
||||
msgstr "visa en utförlig fillistning"
|
||||
|
||||
|
@ -2812,40 +2804,30 @@ msgstr "
|
|||
msgid "opening new database with dbi_major %d\n"
|
||||
msgstr "öppnar ny databas\n"
|
||||
|
||||
#: lib/rebuilddb.c:112
|
||||
#, c-format
|
||||
msgid "record number %d in database is bad -- skipping it"
|
||||
msgstr "post nummer %d i databasen är felaktig -- hoppar över den"
|
||||
|
||||
#: lib/rebuilddb.c:131
|
||||
#: lib/rebuilddb.c:111
|
||||
#, fuzzy, c-format
|
||||
msgid "record number %d in database is bad -- skipping."
|
||||
msgstr "post nummer %d i databasen är felaktig -- hoppar över den"
|
||||
|
||||
#: lib/rebuilddb.c:146
|
||||
#, c-format
|
||||
msgid "duplicated database entry: %s-%s-%s -- skipping."
|
||||
msgstr ""
|
||||
|
||||
#: lib/rebuilddb.c:162
|
||||
#: lib/rebuilddb.c:140
|
||||
#, c-format
|
||||
msgid "cannot add record originally at %d"
|
||||
msgstr "kan inte lägga till post ursprungligen vid %d"
|
||||
|
||||
#: lib/rebuilddb.c:186
|
||||
#: lib/rebuilddb.c:156
|
||||
msgid "failed to rebuild database; original database remains in place\n"
|
||||
msgstr "kunde inte bygga om databasen; orginaldatabasen finns kvar\n"
|
||||
|
||||
#: lib/rebuilddb.c:194
|
||||
#: lib/rebuilddb.c:164
|
||||
msgid "failed to replace old database with new database!\n"
|
||||
msgstr "kunde inte ersätta gammal databas med ny databas!\n"
|
||||
|
||||
#: lib/rebuilddb.c:196
|
||||
#: lib/rebuilddb.c:166
|
||||
#, fuzzy, c-format
|
||||
msgid "replace files in %s with files from %s to recover"
|
||||
msgstr "byt ut filer i %s med filer från %s för att återställa"
|
||||
|
||||
#: lib/rebuilddb.c:202
|
||||
#: lib/rebuilddb.c:172
|
||||
#, c-format
|
||||
msgid "failed to remove directory %s: %s\n"
|
||||
msgstr "kunde inte ta bort katalogen %s: %s\n"
|
||||
|
@ -2942,62 +2924,62 @@ msgstr ""
|
|||
"i nytt format"
|
||||
|
||||
#. error
|
||||
#: lib/rpmdb.c:442
|
||||
#: lib/rpmdb.c:390
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot retrieve package \"%s\" from db"
|
||||
msgstr "kan inte öppna paket: %s\n"
|
||||
|
||||
#: lib/rpmdb.c:598
|
||||
#: lib/rpmdb.c:613
|
||||
#, fuzzy, c-format
|
||||
msgid "package not found with key \"%s\" in %s"
|
||||
msgstr "fann ej paket %s i %s"
|
||||
|
||||
#: lib/rpmdb.c:607
|
||||
#: lib/rpmdb.c:622
|
||||
#, fuzzy, c-format
|
||||
msgid "key \"%s\" not found in %s"
|
||||
msgstr "fann ej paket %s i %s"
|
||||
|
||||
#: lib/rpmdb.c:625
|
||||
#: lib/rpmdb.c:640
|
||||
#, fuzzy, c-format
|
||||
msgid "rpmdbRemove: cannot read header at 0x%x"
|
||||
msgstr "kan inte läsa huvud vid %d för uppslagning"
|
||||
|
||||
#: lib/rpmdb.c:650
|
||||
#: lib/rpmdb.c:665
|
||||
#, fuzzy, c-format
|
||||
msgid "removing 0 %s entries.\n"
|
||||
msgstr "tar bort databasposter\n"
|
||||
|
||||
#: lib/rpmdb.c:656
|
||||
#: lib/rpmdb.c:671
|
||||
#, fuzzy, c-format
|
||||
msgid "removing \"%s\" from %s index.\n"
|
||||
msgstr "tar bort gruppindex\n"
|
||||
|
||||
#: lib/rpmdb.c:664
|
||||
#: lib/rpmdb.c:679
|
||||
#, fuzzy, c-format
|
||||
msgid "removing %d entries in %s index:\n"
|
||||
msgstr "tar bort namnindex\n"
|
||||
|
||||
#: lib/rpmdb.c:668 lib/rpmdb.c:865
|
||||
#: lib/rpmdb.c:683 lib/rpmdb.c:880
|
||||
#, c-format
|
||||
msgid "\t%6d %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:803
|
||||
#: lib/rpmdb.c:818
|
||||
#, fuzzy
|
||||
msgid "cannot allocate new instance in database"
|
||||
msgstr "kan inte allokera plats för databas"
|
||||
|
||||
#: lib/rpmdb.c:842
|
||||
#: lib/rpmdb.c:857
|
||||
#, c-format
|
||||
msgid "adding 0 %s entries.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:854
|
||||
#: lib/rpmdb.c:869
|
||||
#, fuzzy, c-format
|
||||
msgid "adding \"%s\" to %s index.\n"
|
||||
msgstr "byter namn på %s till %s\n"
|
||||
|
||||
#: lib/rpmdb.c:861
|
||||
#: lib/rpmdb.c:876
|
||||
#, c-format
|
||||
msgid "adding %d entries to %s index:\n"
|
||||
msgstr ""
|
||||
|
@ -3398,22 +3380,22 @@ msgstr "Du m
|
|||
msgid "excluding file %s%s\n"
|
||||
msgstr "hoppar över %s%s\n"
|
||||
|
||||
#: lib/transaction.c:427 lib/transaction.c:511
|
||||
#: lib/transaction.c:426 lib/transaction.c:509
|
||||
#, c-format
|
||||
msgid "excluding directory %s\n"
|
||||
msgstr "hoppar över katalogen %s\n"
|
||||
|
||||
#: lib/transaction.c:432
|
||||
#: lib/transaction.c:431
|
||||
#, c-format
|
||||
msgid "relocating %s to %s\n"
|
||||
msgstr "flyttar %s till %s\n"
|
||||
|
||||
#: lib/transaction.c:504
|
||||
#: lib/transaction.c:502
|
||||
#, c-format
|
||||
msgid "relocating directory %s to %s\n"
|
||||
msgstr "flyttar katalogen %s till %s\n"
|
||||
|
||||
#: lib/transaction.c:656
|
||||
#: lib/transaction.c:654
|
||||
#, c-format
|
||||
msgid "%s skipped due to missingok flag\n"
|
||||
msgstr "%s överhoppad på grund av missingok-flagga\n"
|
||||
|
@ -3523,6 +3505,15 @@ msgstr "Ouppfyllda beroenden f
|
|||
msgid "rpmVerify: rpmdbOpen() failed\n"
|
||||
msgstr "rpmVerify: rpmdbOpen() misslyckades\n"
|
||||
|
||||
#~ msgid "dbrecMatchesDepFlags() failed to read header"
|
||||
#~ msgstr "dbrecMatchesDepFlags() kunde inte läsa huvud"
|
||||
|
||||
#~ msgid "could not read database record!\n"
|
||||
#~ msgstr "kunde inte lästa databaspost!\n"
|
||||
|
||||
#~ msgid "record number %d in database is bad -- skipping it"
|
||||
#~ msgstr "post nummer %d i databasen är felaktig -- hoppar över den"
|
||||
|
||||
#~ msgid "opening database mode 0x%x in %s\n"
|
||||
#~ msgstr "öppnar databas med rättighet 0x%x i %s\n"
|
||||
|
||||
|
|
190
po/tr.po
190
po/tr.po
|
@ -6,7 +6,7 @@
|
|||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2000-04-12 09:57-0400\n"
|
||||
"POT-Creation-Date: 2000-04-13 12:17-0400\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"
|
||||
|
@ -1730,12 +1730,12 @@ msgstr "%s 'nin yaz
|
|||
msgid "Wrote: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/pack.c:519
|
||||
#: build/pack.c:518
|
||||
#, c-format
|
||||
msgid "Could not generate output filename for package %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/pack.c:536
|
||||
#: build/pack.c:535
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot create %s: %s\n"
|
||||
msgstr "%s dosyasý açýlamýyor: "
|
||||
|
@ -1862,7 +1862,7 @@ msgstr ""
|
|||
msgid "line %d: Illegal char '-' in %s: %s"
|
||||
msgstr "%s açýlamadý: %s"
|
||||
|
||||
#: build/parsePreamble.c:445 build/parseSpec.c:375
|
||||
#: build/parsePreamble.c:445 build/parseSpec.c:374
|
||||
#, c-format
|
||||
msgid "BuildRoot can not be \"/\": %s"
|
||||
msgstr ""
|
||||
|
@ -2052,7 +2052,7 @@ msgstr ""
|
|||
msgid "malformed %%include statement"
|
||||
msgstr ""
|
||||
|
||||
#: build/parseSpec.c:470
|
||||
#: build/parseSpec.c:469
|
||||
#, fuzzy
|
||||
msgid "No buildable architectures"
|
||||
msgstr "paket mimarisini doðrulamaz"
|
||||
|
@ -2067,17 +2067,17 @@ msgstr "%s paketi %s alt
|
|||
msgid "archive = %s, fs = %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: build/spec.c:245
|
||||
#: build/spec.c:244
|
||||
#, fuzzy, c-format
|
||||
msgid "line %d: Bad number: %s"
|
||||
msgstr "geçersiz paket numarsý: %s\n"
|
||||
|
||||
#: build/spec.c:251
|
||||
#: build/spec.c:250
|
||||
#, c-format
|
||||
msgid "line %d: Bad no%s number: %d"
|
||||
msgstr ""
|
||||
|
||||
#: build/spec.c:310
|
||||
#: build/spec.c:309
|
||||
#, fuzzy, c-format
|
||||
msgid "line %d: Bad %s number: %s\n"
|
||||
msgstr "geçersiz paket numarsý: %s\n"
|
||||
|
@ -2167,89 +2167,85 @@ msgid "error removing record %s into %s"
|
|||
msgstr "%s kaydýnýn %s dosyasýndan silinmesinde hata"
|
||||
|
||||
#. XXX legacy epoch-less requires/conflicts compatibility
|
||||
#: lib/depends.c:417
|
||||
#: lib/depends.c:430
|
||||
#, c-format
|
||||
msgid ""
|
||||
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
|
||||
"\tA %s\tB %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:446
|
||||
#: lib/depends.c:459
|
||||
#, c-format
|
||||
msgid " %s A %s\tB %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:538
|
||||
msgid "dbrecMatchesDepFlags() failed to read header"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:795
|
||||
#: lib/depends.c:788
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by added file list.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:834
|
||||
#: lib/depends.c:836
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s satisfied by added package.\n"
|
||||
msgstr "%s dosyasý, hiç bir pakete ait deðil\n"
|
||||
|
||||
#: lib/depends.c:851
|
||||
#: lib/depends.c:853
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by added provide.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:882
|
||||
#: lib/depends.c:886
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by rpmrc provides.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:909
|
||||
#: lib/depends.c:914
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by db file lists.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:934
|
||||
#: lib/depends.c:932
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by db provides.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:959
|
||||
#: lib/depends.c:949
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s satisfied by db packages.\n"
|
||||
msgstr "%s dosyasý, hiç bir pakete ait deðil\n"
|
||||
|
||||
#: lib/depends.c:976
|
||||
#: lib/depends.c:961
|
||||
#, c-format
|
||||
msgid "%s: %s satisfied by rpmlib version.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/depends.c:986
|
||||
#: lib/depends.c:971
|
||||
#, c-format
|
||||
msgid "%s: %s unsatisfied.\n"
|
||||
msgstr ""
|
||||
|
||||
#. requirements are not satisfied.
|
||||
#: lib/depends.c:1038
|
||||
#: lib/depends.c:1019
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s require not satisfied: %s\n"
|
||||
msgstr "%s paketi %s altýnda gözükmüyor"
|
||||
|
||||
#. conflicts exist.
|
||||
#: lib/depends.c:1100
|
||||
#: lib/depends.c:1081
|
||||
#, fuzzy, c-format
|
||||
msgid "package %s conflicts: %s\n"
|
||||
msgstr "%s paketi %s altýnda gözükmüyor"
|
||||
|
||||
#: lib/depends.c:1155 lib/depends.c:1450
|
||||
#, c-format
|
||||
msgid "cannot read header at %d for dependency check"
|
||||
msgstr "baðýmlýlýk sorgulamasý için %d numaralý baþlýk okunamýyor"
|
||||
|
||||
#: lib/depends.c:1246
|
||||
#: lib/depends.c:1211
|
||||
#, c-format
|
||||
msgid "loop in prerequisite chain: %s"
|
||||
msgstr "gerekenler zincirinde döngü: %s"
|
||||
|
||||
#: lib/depends.c:1415
|
||||
#, c-format
|
||||
msgid "cannot read header at %d for dependency check"
|
||||
msgstr "baðýmlýlýk sorgulamasý için %d numaralý baþlýk okunamýyor"
|
||||
|
||||
#: lib/falloc.c:135
|
||||
#, c-format
|
||||
msgid ""
|
||||
|
@ -2437,7 +2433,7 @@ msgstr "<dosya> isimli dosyay
|
|||
msgid "renaming %s to %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/install.c:562 lib/install.c:834 lib/uninstall.c:29
|
||||
#: lib/install.c:562 lib/install.c:838 lib/uninstall.c:29
|
||||
#, c-format
|
||||
msgid "rename of %s to %s failed: %s"
|
||||
msgstr "%s 'nin isminin %s 'ye çevrilmesinde belirtilen hata oluþtu: %s"
|
||||
|
@ -2451,25 +2447,25 @@ msgstr ""
|
|||
msgid "package: %s-%s-%s files test = %d\n"
|
||||
msgstr "Paket %s-%s-%s ortak (shared) dosyalar içeriyor\n"
|
||||
|
||||
#: lib/install.c:764
|
||||
#: lib/install.c:768
|
||||
msgid "stopping install as we're running --test\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/install.c:769
|
||||
#: lib/install.c:773
|
||||
msgid "running preinstall script (if any)\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/install.c:794
|
||||
#: lib/install.c:798
|
||||
#, c-format
|
||||
msgid "warning: %s created as %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/install.c:830
|
||||
#: lib/install.c:834
|
||||
#, c-format
|
||||
msgid "warning: %s saved as %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/install.c:904
|
||||
#: lib/install.c:908
|
||||
msgid "running postinstall scripts (if any)\n"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2744,145 +2740,141 @@ msgstr "%s 'nin sorgulamas
|
|||
msgid "query of specfile %s failed, can't parse\n"
|
||||
msgstr "%s 'nin sorgulamasý baþarýsýzlýkla sonuçlandý\n"
|
||||
|
||||
#: lib/query.c:586
|
||||
msgid "could not read database record!\n"
|
||||
msgstr "veritabaný kaydý okunamadý!\n"
|
||||
|
||||
#: lib/query.c:597
|
||||
#: lib/query.c:581
|
||||
#, fuzzy
|
||||
msgid "no packages\n"
|
||||
msgstr "Tüm paketleri sorgulama"
|
||||
|
||||
#: lib/query.c:608 lib/query.c:616
|
||||
#: lib/query.c:591
|
||||
#, c-format
|
||||
msgid "group %s does not contain any packages\n"
|
||||
msgstr "%s grubu hiç paket içermiyor\n"
|
||||
|
||||
#: lib/query.c:627 lib/query.c:635
|
||||
#: lib/query.c:601
|
||||
#, c-format
|
||||
msgid "no package triggers %s\n"
|
||||
msgstr "hiç bir paket %s tetiklemiyor\n"
|
||||
|
||||
#: lib/query.c:646 lib/query.c:654
|
||||
#: lib/query.c:611
|
||||
#, c-format
|
||||
msgid "no package requires %s\n"
|
||||
msgstr "hiç bir paket %s gerektirmiyor\n"
|
||||
|
||||
#: lib/query.c:666 lib/query.c:674
|
||||
#: lib/query.c:622
|
||||
#, c-format
|
||||
msgid "no package provides %s\n"
|
||||
msgstr "hiç bir paket %s saðlamýyor\n"
|
||||
|
||||
#: lib/query.c:691 lib/query.c:709
|
||||
#: lib/query.c:638
|
||||
#, fuzzy, c-format
|
||||
msgid "file %s: %s\n"
|
||||
msgstr "%s açýlamadý: %s"
|
||||
|
||||
#: lib/query.c:694 lib/query.c:712
|
||||
#: lib/query.c:641
|
||||
#, 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:735
|
||||
#: lib/query.c:663
|
||||
#, c-format
|
||||
msgid "invalid package number: %s\n"
|
||||
msgstr "geçersiz paket numarsý: %s\n"
|
||||
|
||||
#: lib/query.c:738
|
||||
#: lib/query.c:666
|
||||
#, fuzzy, c-format
|
||||
msgid "package record number: %d\n"
|
||||
msgstr "geçersiz paket numarsý: %s\n"
|
||||
|
||||
#: lib/query.c:742 lib/query.c:751
|
||||
#: lib/query.c:669
|
||||
#, c-format
|
||||
msgid "record %d could not be read\n"
|
||||
msgstr "%d numaralý kayýt okunamadý\n"
|
||||
|
||||
#: lib/query.c:763 lib/rpminstall.c:436
|
||||
#: lib/query.c:680 lib/rpminstall.c:436
|
||||
#, c-format
|
||||
msgid "package %s is not installed\n"
|
||||
msgstr "%s pakedi yüklenmemiþ\n"
|
||||
|
||||
#: lib/query.c:766
|
||||
#: lib/query.c:683
|
||||
#, c-format
|
||||
msgid "error looking for package %s\n"
|
||||
msgstr "%s pakedi aranýrken hata oluþtu\n"
|
||||
|
||||
#: lib/query.c:791
|
||||
#: lib/query.c:708
|
||||
#, fuzzy
|
||||
msgid "rpmQuery: rpmdbOpen() failed\n"
|
||||
msgstr "%s: Eriþilemedi\n"
|
||||
|
||||
#: lib/query.c:850
|
||||
#: lib/query.c:767
|
||||
#, fuzzy
|
||||
msgid "query package owning file"
|
||||
msgstr "<dosya> isimli dosyayý içeren paketi sorgulamak"
|
||||
|
||||
#: lib/query.c:852
|
||||
#: lib/query.c:769
|
||||
#, fuzzy
|
||||
msgid "query packages in group"
|
||||
msgstr "pakedin adý yok :-)"
|
||||
|
||||
#: lib/query.c:854
|
||||
#: lib/query.c:771
|
||||
#, fuzzy
|
||||
msgid "query a package file"
|
||||
msgstr "Tüm paketleri sorgulama"
|
||||
|
||||
#: lib/query.c:858
|
||||
#: lib/query.c:775
|
||||
#, fuzzy
|
||||
msgid "query a spec file"
|
||||
msgstr "%s 'nin sorgulamasý baþarýsýzlýkla sonuçlandý\n"
|
||||
|
||||
#: lib/query.c:860
|
||||
#: lib/query.c:777
|
||||
#, fuzzy
|
||||
msgid "query the pacakges triggered by the package"
|
||||
msgstr "<dosya> isimli dosyayý içeren paketi sorgulamak"
|
||||
|
||||
#: lib/query.c:862
|
||||
#: lib/query.c:779
|
||||
#, fuzzy
|
||||
msgid "query the packages which require a capability"
|
||||
msgstr "<i> yeteneðine ihtiyaç duyan paketleri sorgulama"
|
||||
|
||||
#: lib/query.c:864
|
||||
#: lib/query.c:781
|
||||
#, fuzzy
|
||||
msgid "query the packages which provide a capability"
|
||||
msgstr "<i> yeteneði olan paketleri sorgulama"
|
||||
|
||||
#: lib/query.c:903
|
||||
#: lib/query.c:820
|
||||
#, fuzzy
|
||||
msgid "list all configuration files"
|
||||
msgstr ""
|
||||
"sadece yapýlandýrma (configuration) dosyalarýný gösterir (impliziert -l)"
|
||||
|
||||
#: lib/query.c:905
|
||||
#: lib/query.c:822
|
||||
#, fuzzy
|
||||
msgid "list all documentation files"
|
||||
msgstr "paket ile gelen belgeleri de yükler"
|
||||
|
||||
#: lib/query.c:907
|
||||
#: lib/query.c:824
|
||||
#, fuzzy
|
||||
msgid "dump basic file information"
|
||||
msgstr "Paket bilgisini gösterme"
|
||||
|
||||
#: lib/query.c:909
|
||||
#: lib/query.c:826
|
||||
#, fuzzy
|
||||
msgid "list files in package"
|
||||
msgstr "paket yüklemek"
|
||||
|
||||
#: lib/query.c:913
|
||||
#: lib/query.c:830
|
||||
msgid "use the following query format"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:915
|
||||
#: lib/query.c:832
|
||||
#, fuzzy
|
||||
msgid "substitute i18n sections into spec file"
|
||||
msgstr "<dosya> isimli dosyayý içeren paketi sorgulamak"
|
||||
|
||||
#: lib/query.c:917
|
||||
#: lib/query.c:834
|
||||
msgid "display the states of the listed files"
|
||||
msgstr ""
|
||||
|
||||
#: lib/query.c:919
|
||||
#: lib/query.c:836
|
||||
#, fuzzy
|
||||
msgid "display a verbose file listing"
|
||||
msgstr "Paketin içerdiði dosyalarý gösterme"
|
||||
|
@ -2921,40 +2913,30 @@ msgstr "mevcut veritaban
|
|||
msgid "opening new database with dbi_major %d\n"
|
||||
msgstr "mevcut veritabanýný kullanýlarak veritabýnýný yeniden oluþturur"
|
||||
|
||||
#: lib/rebuilddb.c:112
|
||||
#, c-format
|
||||
msgid "record number %d in database is bad -- skipping it"
|
||||
msgstr "veritabanýndaki %d numaralý kayýt hatalý -- atlanýyor"
|
||||
|
||||
#: lib/rebuilddb.c:131
|
||||
#: lib/rebuilddb.c:111
|
||||
#, fuzzy, c-format
|
||||
msgid "record number %d in database is bad -- skipping."
|
||||
msgstr "veritabanýndaki %d numaralý kayýt hatalý -- atlanýyor"
|
||||
|
||||
#: lib/rebuilddb.c:146
|
||||
#, c-format
|
||||
msgid "duplicated database entry: %s-%s-%s -- skipping."
|
||||
msgstr ""
|
||||
|
||||
#: lib/rebuilddb.c:162
|
||||
#: lib/rebuilddb.c:140
|
||||
#, c-format
|
||||
msgid "cannot add record originally at %d"
|
||||
msgstr "%d de yer alan kayýt saklayamýyor"
|
||||
|
||||
#: lib/rebuilddb.c:186
|
||||
#: lib/rebuilddb.c:156
|
||||
msgid "failed to rebuild database; original database remains in place\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rebuilddb.c:194
|
||||
#: lib/rebuilddb.c:164
|
||||
msgid "failed to replace old database with new database!\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rebuilddb.c:196
|
||||
#: lib/rebuilddb.c:166
|
||||
#, c-format
|
||||
msgid "replace files in %s with files from %s to recover"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rebuilddb.c:202
|
||||
#: lib/rebuilddb.c:172
|
||||
#, fuzzy, c-format
|
||||
msgid "failed to remove directory %s: %s\n"
|
||||
msgstr "%s açýlamadý: %s"
|
||||
|
@ -3051,63 +3033,63 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#. error
|
||||
#: lib/rpmdb.c:442
|
||||
#: lib/rpmdb.c:390
|
||||
#, fuzzy, c-format
|
||||
msgid "cannot retrieve package \"%s\" from db"
|
||||
msgstr "hata: %s%s/packages.rpm açýlamýyor\n"
|
||||
|
||||
#: lib/rpmdb.c:598
|
||||
#: lib/rpmdb.c:613
|
||||
#, fuzzy, c-format
|
||||
msgid "package not found with key \"%s\" in %s"
|
||||
msgstr "%s pakedi %s içerisinde bulunamadý"
|
||||
|
||||
#: lib/rpmdb.c:607
|
||||
#: lib/rpmdb.c:622
|
||||
#, fuzzy, c-format
|
||||
msgid "key \"%s\" not found in %s"
|
||||
msgstr "%s pakedi %s içerisinde bulunamadý"
|
||||
|
||||
#: lib/rpmdb.c:625
|
||||
#: lib/rpmdb.c:640
|
||||
#, fuzzy, c-format
|
||||
msgid "rpmdbRemove: cannot read header at 0x%x"
|
||||
msgstr "%d kaydýndan baþlýk bilgisi okunamadý"
|
||||
|
||||
#: lib/rpmdb.c:650
|
||||
#: lib/rpmdb.c:665
|
||||
#, c-format
|
||||
msgid "removing 0 %s entries.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:656
|
||||
#: lib/rpmdb.c:671
|
||||
#, fuzzy, c-format
|
||||
msgid "removing \"%s\" from %s index.\n"
|
||||
msgstr "%s kaydýnýn %s dosyasýndan silinmesinde hata"
|
||||
|
||||
#: lib/rpmdb.c:664
|
||||
#: lib/rpmdb.c:679
|
||||
#, fuzzy, c-format
|
||||
msgid "removing %d entries in %s index:\n"
|
||||
msgstr "%s kaydýnýn %s dosyasýndan silinmesinde hata"
|
||||
|
||||
#: lib/rpmdb.c:668 lib/rpmdb.c:865
|
||||
#: lib/rpmdb.c:683 lib/rpmdb.c:880
|
||||
#, c-format
|
||||
msgid "\t%6d %s\n"
|
||||
msgstr ""
|
||||
|
||||
# reservieren???
|
||||
#: lib/rpmdb.c:803
|
||||
#: lib/rpmdb.c:818
|
||||
#, fuzzy
|
||||
msgid "cannot allocate new instance in database"
|
||||
msgstr "Veritabaný için yer bulunamadý"
|
||||
|
||||
#: lib/rpmdb.c:842
|
||||
#: lib/rpmdb.c:857
|
||||
#, c-format
|
||||
msgid "adding 0 %s entries.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:854
|
||||
#: lib/rpmdb.c:869
|
||||
#, c-format
|
||||
msgid "adding \"%s\" to %s index.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/rpmdb.c:861
|
||||
#: lib/rpmdb.c:876
|
||||
#, c-format
|
||||
msgid "adding %d entries to %s index:\n"
|
||||
msgstr ""
|
||||
|
@ -3531,22 +3513,22 @@ msgstr "rpmrc dosyan
|
|||
msgid "excluding file %s%s\n"
|
||||
msgstr "%s alýnýyor\n"
|
||||
|
||||
#: lib/transaction.c:427 lib/transaction.c:511
|
||||
#: lib/transaction.c:426 lib/transaction.c:509
|
||||
#, fuzzy, c-format
|
||||
msgid "excluding directory %s\n"
|
||||
msgstr "%s dizinin oluþturulmasýnda hata: %s"
|
||||
|
||||
#: lib/transaction.c:432
|
||||
#: lib/transaction.c:431
|
||||
#, c-format
|
||||
msgid "relocating %s to %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/transaction.c:504
|
||||
#: lib/transaction.c:502
|
||||
#, fuzzy, c-format
|
||||
msgid "relocating directory %s to %s\n"
|
||||
msgstr "%s dizinin oluþturulmasýnda hata: %s"
|
||||
|
||||
#: lib/transaction.c:656
|
||||
#: lib/transaction.c:654
|
||||
#, c-format
|
||||
msgid "%s skipped due to missingok flag\n"
|
||||
msgstr ""
|
||||
|
@ -3657,6 +3639,12 @@ msgstr "%s-%s-%s 'nin ba
|
|||
msgid "rpmVerify: rpmdbOpen() failed\n"
|
||||
msgstr "%s: Eriþilemedi\n"
|
||||
|
||||
#~ msgid "could not read database record!\n"
|
||||
#~ msgstr "veritabaný kaydý okunamadý!\n"
|
||||
|
||||
#~ msgid "record number %d in database is bad -- skipping it"
|
||||
#~ msgstr "veritabanýndaki %d numaralý kayýt hatalý -- atlanýyor"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "opening database mode 0x%x in %s\n"
|
||||
#~ msgstr "mevcut veritabanýný kullanýlarak veritabýnýný yeniden oluþturur"
|
||||
|
|
17
rpm.spec
17
rpm.spec
|
@ -47,7 +47,7 @@ Requires: rpm = %{version}
|
|||
This package contains scripts and executable programs that are used to
|
||||
build packages using RPM.
|
||||
|
||||
%ifos linux
|
||||
%ifos Xlinux
|
||||
%package python
|
||||
Summary: Python bindings for apps which will manipulate RPM packages.
|
||||
Group: Development/Libraries
|
||||
|
@ -88,7 +88,7 @@ capabilities.
|
|||
%build
|
||||
CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=/usr
|
||||
make
|
||||
%ifos linux
|
||||
%ifos Xlinux
|
||||
make -C python
|
||||
%endif
|
||||
|
||||
|
@ -96,10 +96,10 @@ make -C python
|
|||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
make DESTDIR="$RPM_BUILD_ROOT" install
|
||||
%ifos linux
|
||||
%ifos Xlinux
|
||||
make DESTDIR="$RPM_BUILD_ROOT" install -C python
|
||||
mkdir -p $RPM_BUILD_ROOT/etc/rpm
|
||||
%endif
|
||||
mkdir -p $RPM_BUILD_ROOT/etc/rpm
|
||||
|
||||
{ cd $RPM_BUILD_ROOT
|
||||
strip ./bin/rpm
|
||||
|
@ -134,9 +134,7 @@ fi
|
|||
%defattr(-,root,root)
|
||||
%doc RPM-PGP-KEY CHANGES GROUPS doc/manual/*
|
||||
/bin/rpm
|
||||
%ifos linux
|
||||
%dir /etc/rpm
|
||||
%endif
|
||||
/usr/bin/rpm2cpio
|
||||
/usr/bin/gendiff
|
||||
/usr/lib/librpm.so.*
|
||||
|
@ -190,7 +188,7 @@ fi
|
|||
/usr/lib/rpm/rpmputtext
|
||||
/usr/lib/rpm/u_pkg.sh
|
||||
|
||||
%ifos linux
|
||||
%ifos Xlinux
|
||||
%files python
|
||||
%defattr(-,root,root)
|
||||
/usr/lib/python1.5/site-packages/rpmmodule.so
|
||||
|
@ -219,6 +217,11 @@ fi
|
|||
/usr/include/popt.h
|
||||
|
||||
%changelog
|
||||
* Thu Apr 13 2000 Jeff Johnson <jbj@redhat.com>
|
||||
- API: pass *SearchIndex() length of key (0 will use strlen(key)).
|
||||
- API: remove rpmdb{First,Next}RecNum routines.
|
||||
- drop rpm-python subpackage until bindings are fixed.
|
||||
|
||||
* Tue Apr 11 2000 Jeff Johnson <jbj@redhat.com>
|
||||
- solaris2.6: avoid bsearch with empty dir list (Ric Klaren - klaren@cs.utwente.nl)
|
||||
- db3: save join keys in endian neutral binary format.
|
||||
|
|
Loading…
Reference in New Issue