- fix: remove rpmfi scareMem so that headers can be reloaded on ia64.

- fix: set DB_PRIVATE, not DB_ENV_PRIVATE, if unshared posix mutexes.
- remove useless kernel/glibc dependencies (#79872).
- add matching "config(N) = EVR"  dependencies iff %%config is found.

CVS patchset: 5963
CVS date: 2002/12/24 07:21:04
This commit is contained in:
jbj 2002-12-24 07:21:04 +00:00
parent b7129ca898
commit e788b7c1f3
32 changed files with 1073 additions and 919 deletions

View File

@ -70,6 +70,10 @@
- add %check scriptlet to run after %install (#64137).
- simplify specfile query linkage loop.
- drill rpmts into parseSpec(), carrying Spec along.
- fix: remove rpmfi scareMem so that headers can be reloaded on ia64.
- fix: set DB_PRIVATE, not DB_ENV_PRIVATE, if unshared posix mutexes.
- remove useless kernel/glibc dependencies (#79872).
- add matching "config(N) = EVR" dependencies iff %%config is found.
4.0.4 -> 4.1:
- loosely wire beecrypt library into rpm.

View File

@ -280,7 +280,7 @@ static int buildForTarget(rpmts ts, const char * arg, BTA_t ba)
goto exit;
}
if (buildSpec(spec, buildAmount, ba->noBuild)) {
if (buildSpec(ts, spec, buildAmount, ba->noBuild)) {
rc = 1;
goto exit;
}

View File

@ -270,7 +270,7 @@ fprintf(stderr, "*** delMacros\n");
return rc;
}
int buildSpec(Spec spec, int what, int test)
int buildSpec(rpmts ts, Spec spec, int what, int test)
{
int rc = 0;
@ -281,7 +281,7 @@ int buildSpec(Spec spec, int what, int test)
if (spec->BASpecs != NULL)
for (x = 0; x < spec->BACount; x++) {
/*@-boundsread@*/
if ((rc = buildSpec(spec->BASpecs[x],
if ((rc = buildSpec(ts, spec->BASpecs[x],
(what & ~RPMBUILD_RMSOURCE) |
(x ? 0 : (what & RPMBUILD_PACKAGESOURCE)),
test))) {

View File

@ -2362,7 +2362,7 @@ int processBinaryFiles(Spec spec, int installSpecialDoc, int test)
}
/* Now we have in fileList list of files from all packages.
* We pass it to a script which do the work of finding missing
* We pass it to a script which does the work of finding missing
* and duplicated files.
*/

View File

@ -10,6 +10,7 @@ static int _debug = 0;
#include <rpmio_internal.h>
#include <rpmbuild.h>
#include "rpmds.h"
#include "rpmts.h"
#include "debug.h"
@ -617,6 +618,9 @@ int parseSpec(rpmts ts, const char *specFile, const char *rootURL,
RPM_STRING_TYPE, arch, 1);
(void) headerAddEntry(pkg->header, RPMTAG_PLATFORM,
RPM_STRING_TYPE, platform, 1);
pkg->ds = rpmdsThis(pkg->header, RPMTAG_REQUIRENAME, RPMSENSE_EQUAL);
}
#ifdef DYING

View File

@ -476,12 +476,13 @@ int parseSpec(rpmts ts, const char * specFile,
/** \ingroup rpmbuild
* Build stages state machine driver.
* @param ts transaction set
* @param spec spec file control structure
* @param what bit(s) to enable stages of build
* @param test don't execute scripts or package if testing
* @return 0 on success
*/
int buildSpec(Spec spec, int what, int test)
int buildSpec(rpmts ts, Spec spec, int what, int test)
/*@globals rpmGlobalMacroContext, fileSystem, internalState @*/
/*@modifies spec->sourceHeader, spec->sourceCpioList, spec->cookie,
spec->sourceRpmName, spec->sourcePkgId,

View File

@ -1335,6 +1335,11 @@ int rpmfcGenerateDepends(const Spec spec, Package pkg)
ARGV_t av;
int ac = rpmfiFC(fi);
const void ** p;
char buf[BUFSIZ];
const char * N;
const char * EVR;
int_32 Flags;
int genConfigDeps;
int c;
int rc = 0;
int xx;
@ -1360,10 +1365,18 @@ int rpmfcGenerateDepends(const Spec spec, Package pkg)
/* Extract absolute file paths in argv format. */
av = xcalloc(ac+1, sizeof(*av));
genConfigDeps = 0;
fi = rpmfiInit(fi, 0);
if (fi != NULL)
while ((c = rpmfiNext(fi)) >= 0)
while ((c = rpmfiNext(fi)) >= 0) {
rpmfileAttrs fileAttrs;
/* Does package have any %config files? */
fileAttrs = rpmfiFFlags(fi);
genConfigDeps |= (fileAttrs & RPMFILE_CONFIG);
av[c] = xstrdup(rpmfiFN(fi));
}
av[ac] = NULL;
fc = rpmfcNew();
@ -1379,6 +1392,16 @@ int rpmfcGenerateDepends(const Spec spec, Package pkg)
xx = headerRemoveEntry(pkg->header, RPMTAG_PROVIDENAME);
xx = headerRemoveEntry(pkg->header, RPMTAG_PROVIDEVERSION);
xx = headerRemoveEntry(pkg->header, RPMTAG_PROVIDEFLAGS);
/* Add config dependency, Provides: config(N) = EVR */
if (genConfigDeps) {
N = rpmdsN(pkg->ds);
EVR = rpmdsEVR(pkg->ds);
sprintf(buf, "config(%s)", N);
ds = rpmdsSingle(RPMTAG_PROVIDENAME, buf, EVR, RPMSENSE_EQUAL);
xx = rpmdsMerge(&fc->provides, ds);
ds = rpmdsFree(ds);
}
}
if (!fc->skipReq) {
@ -1388,6 +1411,16 @@ int rpmfcGenerateDepends(const Spec spec, Package pkg)
xx = headerRemoveEntry(pkg->header, RPMTAG_REQUIRENAME);
xx = headerRemoveEntry(pkg->header, RPMTAG_REQUIREVERSION);
xx = headerRemoveEntry(pkg->header, RPMTAG_REQUIREFLAGS);
/* Add config dependency, Requires: config(N) = EVR */
if (genConfigDeps) {
N = rpmdsN(pkg->ds);
EVR = rpmdsEVR(pkg->ds);
sprintf(buf, "config(%s)", N);
ds = rpmdsSingle(RPMTAG_REQUIRENAME, buf, EVR, RPMSENSE_EQUAL);
xx = rpmdsMerge(&fc->requires, ds);
ds = rpmdsFree(ds);
}
}
/* Build file class dictionary. */

View File

@ -175,7 +175,7 @@ struct Package_s {
/*@refcounted@*/
Header header;
/*@refcounted@*/
rpmds this;
rpmds ds; /*!< Requires: N = EVR */
/*@refcounted@*/
rpmfi cpioList;

View File

@ -6,6 +6,7 @@
#include "system.h"
#include "buildio.h"
#include "rpmds.h"
#include "rpmfi.h"
#include "rpmts.h"
@ -113,6 +114,7 @@ Package newPackage(Spec spec)
p = xcalloc(1, sizeof(*p));
p->header = headerNew();
p->ds = NULL;
p->icon = NULL;
p->autoProv = 1;
@ -163,6 +165,7 @@ Package freePackage(Package pkg)
pkg->verifyFile = _free(pkg->verifyFile);
pkg->header = headerFree(pkg->header);
pkg->ds = rpmdsFree(pkg->ds);
pkg->fileList = freeStringBuf(pkg->fileList);
pkg->fileFile = _free(pkg->fileFile);
if (pkg->cpioList) {

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-12-23 15:42-0500\n"
"POT-Creation-Date: 2002-12-24 02:13-0500\n"
"PO-Revision-Date: 2001-07-24 10:02+0100\n"
"Last-Translator: Milan Kerslager <kerslage@linux.cz>\n"
"Language-Team: Czech <cs@li.org>\n"
@ -515,64 +515,64 @@ msgstr "Soubor uveden dvakr
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr "Symbolická linka ukazuje na BuildRoot: %s -> %s\n"
#: build/files.c:1523
#: build/files.c:1527
#, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr "Soubor nesouhlasí s prefixem (%s): %s\n"
#: build/files.c:1547
#: build/files.c:1551
#, c-format
msgid "File not found: %s\n"
msgstr "Soubor nenalezen: %s\n"
#: build/files.c:1747
#: build/files.c:1751
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "Soubor potøebuje úvodní \"/\": %s\n"
#: build/files.c:1771
#: build/files.c:1775
#, c-format
msgid "Glob not permitted: %s\n"
msgstr "Glob není dovolen: %s\n"
#: build/files.c:1788 lib/rpminstall.c:343
#: build/files.c:1792 lib/rpminstall.c:343
#, c-format
msgid "File not found by glob: %s\n"
msgstr "Soubor nenalezen globem: %s\n"
#: build/files.c:1848
#: build/files.c:1852
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "Nemohu otevøít %%files soubor %s: %s\n"
#: build/files.c:1859 build/pack.c:156
#: build/files.c:1863 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr "øádek: %s\n"
#: build/files.c:2246
#: build/files.c:2250
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "©patný soubor: %s: %s\n"
#: build/files.c:2258 build/parsePrep.c:50
#: build/files.c:2262 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "©patný vlastník/skupina: %s\n"
#: build/files.c:2302
#: build/files.c:2306
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "rozbalování archívu selhalo %s%s: %s\n"
#: build/files.c:2323
#: build/files.c:2327
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
#: build/files.c:2351
#: build/files.c:2355
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Zpracovávám soubory: %s-%s-%s\n"
@ -710,52 +710,52 @@ msgstr "Generuji podpis: %d\n"
msgid "Unable to reload signature header.\n"
msgstr "Nemohu pøeèíst hlavièku z %s: %s\n"
#: build/pack.c:599
#: build/pack.c:596
#, c-format
msgid "Could not open %s: %s\n"
msgstr "Nemohu otevøít %s: %s\n"
#: build/pack.c:635 lib/psm.c:1841
#: build/pack.c:632 lib/psm.c:1841
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Nemohu zapsat balíèek: %s\n"
#: build/pack.c:650
#: build/pack.c:647
#, c-format
msgid "Unable to open sigtarget %s: %s\n"
msgstr "Nemohu otevøít cíl pro podepsání %s: %s\n"
#: build/pack.c:661
#: build/pack.c:658
#, c-format
msgid "Unable to read header from %s: %s\n"
msgstr "Nemohu pøeèíst hlavièku z %s: %s\n"
#: build/pack.c:675
#: build/pack.c:672
#, c-format
msgid "Unable to write header to %s: %s\n"
msgstr "Nemohu zapsat hlavièku do %s: %s\n"
#: build/pack.c:685
#: build/pack.c:682
#, c-format
msgid "Unable to read payload from %s: %s\n"
msgstr "Nemohu pøeèíst payload z %s: %s\n"
#: build/pack.c:691
#: build/pack.c:688
#, c-format
msgid "Unable to write payload to %s: %s\n"
msgstr "Nemohu zapsat payload do %s: %s\n"
#: build/pack.c:716 lib/psm.c:2146
#: build/pack.c:725 lib/psm.c:2146
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapsáno: %s\n"
#: build/pack.c:789
#: build/pack.c:798
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr "Nemohu vygenerovat jméno souboru pro balíèek %s: %s\n"
#: build/pack.c:806
#: build/pack.c:815
#, c-format
msgid "cannot create %s: %s\n"
msgstr "nemohu vytvoøit %s: %s\n"
@ -896,7 +896,7 @@ msgstr "
msgid "line %d: Illegal char '-' in %s: %s\n"
msgstr "øádek %d: Nepøípustný znak '-' v %s: %s\n"
#: build/parsePreamble.c:588 build/parseSpec.c:426
#: build/parsePreamble.c:588 build/parseSpec.c:427
#, c-format
msgid "BuildRoot can not be \"/\": %s\n"
msgstr "BuildRoot nemù¾e být \"/\": %s\n"
@ -1062,47 +1062,47 @@ msgstr "
msgid "line %d: Second %s\n"
msgstr "øádek %d: Druhý %s\n"
#: build/parseSpec.c:160
#: build/parseSpec.c:161
#, c-format
msgid "line %d: %s\n"
msgstr "øádek %d: %s\n"
#. XXX Fstrerror
#: build/parseSpec.c:212
#: build/parseSpec.c:213
#, c-format
msgid "Unable to open %s: %s\n"
msgstr "Nemohu otevøít %s: %s\n"
#: build/parseSpec.c:228
#: build/parseSpec.c:229
#, c-format
msgid "Unclosed %%if\n"
msgstr "Neuzavøený %%if\n"
#: build/parseSpec.c:300
#: build/parseSpec.c:301
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr "%s:%d: parseExpressionBoolean vrátil %d\n"
#: build/parseSpec.c:309
#: build/parseSpec.c:310
#, c-format
msgid "%s:%d: Got a %%else with no %%if\n"
msgstr "%s:%d: %%else bez poèíteèního %%if\n"
#: build/parseSpec.c:321
#: build/parseSpec.c:322
#, c-format
msgid "%s:%d: Got a %%endif with no %%if\n"
msgstr "%s:%d: %%endif bez poèáteèního %%if\n"
#: build/parseSpec.c:335 build/parseSpec.c:344
#: build/parseSpec.c:336 build/parseSpec.c:345
#, c-format
msgid "malformed %%include statement\n"
msgstr "po¹kozený pøíkaz %%include\n"
#: build/parseSpec.c:544
#: build/parseSpec.c:546
msgid "No compatible architectures found for build\n"
msgstr "Nenalezeny ¾ádné kompatibilní architektury pro sestavení\n"
#: build/parseSpec.c:602
#: build/parseSpec.c:607
#, c-format
msgid "Package has no %%description: %s\n"
msgstr "Balíèek nemá ¾ádné %%description: %s\n"
@ -1278,27 +1278,27 @@ msgstr "c
msgid "lookup i18N strings in specfile catalog"
msgstr "vyhledat i18N øetìzce ve specfile katalogu"
#: build/spec.c:234
#: build/spec.c:237
#, c-format
msgid "line %d: Bad number: %s\n"
msgstr "øádek %d: ©patné èíslo: %s\n"
#: build/spec.c:240
#: build/spec.c:243
#, c-format
msgid "line %d: Bad no%s number: %d\n"
msgstr "øádek %d: ©patné èíslo %s: %d\n"
#: build/spec.c:303
#: build/spec.c:306
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "øádek %d: ©patné èíslo %s: %s\n"
#: build/spec.c:639
#: build/spec.c:642
#, c-format
msgid "can't query %s: %s\n"
msgstr "nemohu provést dotaz %s: %s\n"
#: build/spec.c:714
#: build/spec.c:718
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr "dotaz na spec soubor %s selhal, nemohu parsovat\n"
@ -3141,26 +3141,31 @@ msgstr ""
msgid "verified db index %s/%s\n"
msgstr ""
#: rpmdb/db3.c:1069
#: rpmdb/db3.c:968
#, c-format
msgid "\tunshared posix mutexes found(%d), adding DB_PRIVATE\n"
msgstr ""
#: rpmdb/db3.c:1071
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
#: rpmdb/db3.c:1306
#: rpmdb/db3.c:1308
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "nemohu vytvoøit %s: %s\n"
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "exclusive"
msgstr ""
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
#, fuzzy
msgid "shared"
msgstr "sdílen v síti "
#: rpmdb/db3.c:1312
#: rpmdb/db3.c:1314
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-12-23 15:42-0500\n"
"POT-Creation-Date: 2002-12-24 02:13-0500\n"
"PO-Revision-Date: 2001-04-05 23:03GMT\n"
"Last-Translator: Claus Hindsgaul <claus_h@image.dk>\n"
"Language-Team: Danish <dansk@klid.dk>\n"
@ -510,64 +510,64 @@ msgstr "Fil angivet to gange: %s\n"
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr "Symbolsk lænke peger på BuildRoot: %s -> %s\n"
#: build/files.c:1523
#: build/files.c:1527
#, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr "Fil passer ikke til præfiks (%s): %s\n"
#: build/files.c:1547
#: build/files.c:1551
#, c-format
msgid "File not found: %s\n"
msgstr "Fil ikke fundet: %s\n"
#: build/files.c:1747
#: build/files.c:1751
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "Fil kræver foranstillet \"/\": %s\n"
#: build/files.c:1771
#: build/files.c:1775
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "linie %d: Filnavn ikke tilladt: %s\n"
#: build/files.c:1788 lib/rpminstall.c:343
#: build/files.c:1792 lib/rpminstall.c:343
#, c-format
msgid "File not found by glob: %s\n"
msgstr "Fil ikke fundet med glob: %s\n"
#: build/files.c:1848
#: build/files.c:1852
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "Kunne ikke åbne '%%files'-fil %s: %s\n"
#: build/files.c:1859 build/pack.c:156
#: build/files.c:1863 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr "linie: %s\n"
#: build/files.c:2246
#: build/files.c:2250
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "Ugyldig fil: %s: %s\n"
#: build/files.c:2258 build/parsePrep.c:50
#: build/files.c:2262 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Ugyldig ejer/gruppe: %s\n"
#: build/files.c:2302
#: build/files.c:2306
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "udpakning af arkiv mislykkedes%s%s: %s\n"
#: build/files.c:2323
#: build/files.c:2327
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
#: build/files.c:2351
#: build/files.c:2355
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Gennemløber filer: %s-%s-%s\n"
@ -707,52 +707,52 @@ msgstr "Genererer signatur: %d\n"
msgid "Unable to reload signature header.\n"
msgstr "Kunne ikke læse hoved fra %s: %s\n"
#: build/pack.c:599
#: build/pack.c:596
#, c-format
msgid "Could not open %s: %s\n"
msgstr "Kunne ikke åbne %s: %s\n"
#: build/pack.c:635 lib/psm.c:1841
#: build/pack.c:632 lib/psm.c:1841
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Kunne ikke skrive pakke: %s\n"
#: build/pack.c:650
#: build/pack.c:647
#, c-format
msgid "Unable to open sigtarget %s: %s\n"
msgstr "Kunne ikke åbne sigtarget %s: %s\n"
#: build/pack.c:661
#: build/pack.c:658
#, c-format
msgid "Unable to read header from %s: %s\n"
msgstr "Kunne ikke læse hoved fra %s: %s\n"
#: build/pack.c:675
#: build/pack.c:672
#, c-format
msgid "Unable to write header to %s: %s\n"
msgstr "Kunne ikke skrive hoved til %s: %s\n"
#: build/pack.c:685
#: build/pack.c:682
#, c-format
msgid "Unable to read payload from %s: %s\n"
msgstr "Kunne ikke læse pakkeindhold fra %s: %s\n"
#: build/pack.c:691
#: build/pack.c:688
#, c-format
msgid "Unable to write payload to %s: %s\n"
msgstr "Kunne ikke skrive pakkeindhold til %s: %s\n"
#: build/pack.c:716 lib/psm.c:2146
#: build/pack.c:725 lib/psm.c:2146
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrev: %s\n"
#: build/pack.c:789
#: build/pack.c:798
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr "Kunne ikke generere filnavn til oprettelse af pakke %s: %s\n"
#: build/pack.c:806
#: build/pack.c:815
#, c-format
msgid "cannot create %s: %s\n"
msgstr "kan ikke oprette %s: %s\n"
@ -893,7 +893,7 @@ msgstr "linie %d: Tomt m
msgid "line %d: Illegal char '-' in %s: %s\n"
msgstr "linie %d: Ugyldigt tegn '-' i %s: %s\n"
#: build/parsePreamble.c:588 build/parseSpec.c:426
#: build/parsePreamble.c:588 build/parseSpec.c:427
#, c-format
msgid "BuildRoot can not be \"/\": %s\n"
msgstr "BuildRoot kan ikke være \"/\": %s\n"
@ -1059,50 +1059,50 @@ msgstr "linie %d: skriptprogram skal starte med '/': %s\n"
msgid "line %d: Second %s\n"
msgstr "linie %d: Anden %s\n"
#: build/parseSpec.c:160
#: build/parseSpec.c:161
#, c-format
msgid "line %d: %s\n"
msgstr "linie %d: %s\n"
#. XXX Fstrerror
#: build/parseSpec.c:212
#: build/parseSpec.c:213
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
"Kunne ikke åbne %s: %s\n"
"\n"
#: build/parseSpec.c:228
#: build/parseSpec.c:229
#, c-format
msgid "Unclosed %%if\n"
msgstr "Ikke-lukket %%if\n"
#: build/parseSpec.c:300
#: build/parseSpec.c:301
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr "%s:%d: parseExpressionBoolean returnerer %d\n"
#: build/parseSpec.c:309
#: build/parseSpec.c:310
#, c-format
msgid "%s:%d: Got a %%else with no %%if\n"
msgstr "%s:%d: Fik et %%else uden et %%if\n"
#: build/parseSpec.c:321
#: build/parseSpec.c:322
#, c-format
msgid "%s:%d: Got a %%endif with no %%if\n"
msgstr "%s:%d: Fik et %%endif uden et %%if\n"
#: build/parseSpec.c:335 build/parseSpec.c:344
#: build/parseSpec.c:336 build/parseSpec.c:345
#, c-format
msgid "malformed %%include statement\n"
msgstr "forkert udført '%%include'-kommando\n"
#: build/parseSpec.c:544
#: build/parseSpec.c:546
#, fuzzy
msgid "No compatible architectures found for build\n"
msgstr "Ingen arkitekturer, der kan opbygges\n"
#: build/parseSpec.c:602
#: build/parseSpec.c:607
#, c-format
msgid "Package has no %%description: %s\n"
msgstr "Pakke har ingen %%description: %s\n"
@ -1278,27 +1278,27 @@ msgstr "gennemtving m
msgid "lookup i18N strings in specfile catalog"
msgstr "slå i18N-strenge op i spec-fil katalog"
#: build/spec.c:234
#: build/spec.c:237
#, c-format
msgid "line %d: Bad number: %s\n"
msgstr "linie %d: Ugyldigt tal: %s\n"
#: build/spec.c:240
#: build/spec.c:243
#, c-format
msgid "line %d: Bad no%s number: %d\n"
msgstr "linie %d: Ugyldigt 'no%s'-tal: %d\n"
#: build/spec.c:303
#: build/spec.c:306
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "linie %d: Ugyldigt %s-tal: %s\n"
#: build/spec.c:639
#: build/spec.c:642
#, c-format
msgid "can't query %s: %s\n"
msgstr "kunne ikke forespørge %s: %s\n"
#: build/spec.c:714
#: build/spec.c:718
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr "forespørgsel af spec-fil %s mislykkedes, kunne ikke tolkes\n"
@ -3153,25 +3153,30 @@ msgstr "lukkede db-indeks %s/%s\n"
msgid "verified db index %s/%s\n"
msgstr "lukkede db-indeks %s/%s\n"
#: rpmdb/db3.c:1069
#: rpmdb/db3.c:968
#, c-format
msgid "\tunshared posix mutexes found(%d), adding DB_PRIVATE\n"
msgstr ""
#: rpmdb/db3.c:1071
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "åbner db-indeks %s/%s %s mode=0x%x\n"
#: rpmdb/db3.c:1306
#: rpmdb/db3.c:1308
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "kan ikke opnå %s lås på %s/%s\n"
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "exclusive"
msgstr "eksklusiv"
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "shared"
msgstr "delt"
#: rpmdb/db3.c:1312
#: rpmdb/db3.c:1314
#, fuzzy, c-format
msgid "locked db index %s/%s\n"
msgstr "låste db-index %s/%s\n"

View File

@ -37,7 +37,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-12-23 15:42-0500\n"
"POT-Creation-Date: 2002-12-24 02:13-0500\n"
"PO-Revision-Date: 1998-08-03 18:02+02:00\n"
"Last-Translator: Karl Eichwalder <ke@SuSE.DE>\n"
"Language-Team: German <de@li.org>\n"
@ -584,59 +584,59 @@ msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr ""
# , c-format
#: build/files.c:1523
#: build/files.c:1527
#, fuzzy, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr "Lesen von %s fehlgeschlagen: %s."
#: build/files.c:1547
#: build/files.c:1551
#, fuzzy, c-format
msgid "File not found: %s\n"
msgstr "Datei auf dem Server nicht gefunden"
#: build/files.c:1747
#: build/files.c:1751
#, fuzzy, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "Verschiebungen müssen mit einem »/« beginnen"
#: build/files.c:1771
#: build/files.c:1775
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "Paket %s wird nicht in %s aufgeführt"
#: build/files.c:1788 lib/rpminstall.c:343
#: build/files.c:1792 lib/rpminstall.c:343
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "Datei auf dem Server nicht gefunden"
#: build/files.c:1848
#: build/files.c:1852
#, fuzzy, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "Fehler: kann Datei %s nicht öffnen\n"
# , c-format
#: build/files.c:1859 build/pack.c:156
#: build/files.c:1863 build/pack.c:156
#, fuzzy, c-format
msgid "line: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
# , c-format
#: build/files.c:2246
#: build/files.c:2250
#, fuzzy, c-format
msgid "Bad file: %s: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
#: build/files.c:2258 build/parsePrep.c:50
#: build/files.c:2262 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
#: build/files.c:2302
#: build/files.c:2306
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "Fehler beim Suchen nach Paket %s\n"
#: build/files.c:2323
#: build/files.c:2327
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
@ -644,7 +644,7 @@ msgid ""
msgstr ""
# , c-format
#: build/files.c:2351
#: build/files.c:2355
#, fuzzy, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
@ -791,58 +791,58 @@ msgid "Unable to reload signature header.\n"
msgstr "Nicht möglich %s zu schreiben"
# , c-format
#: build/pack.c:599
#: build/pack.c:596
#, fuzzy, c-format
msgid "Could not open %s: %s\n"
msgstr "Öffnen von %s fehlgeschlagen\n"
# , c-format
#: build/pack.c:635 lib/psm.c:1841
#: build/pack.c:632 lib/psm.c:1841
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "Nicht möglich %s zu schreiben"
# , c-format
#: build/pack.c:650
#: build/pack.c:647
#, fuzzy, c-format
msgid "Unable to open sigtarget %s: %s\n"
msgstr "Nicht möglich %s zu schreiben"
# , c-format
#: build/pack.c:661
#: build/pack.c:658
#, fuzzy, c-format
msgid "Unable to read header from %s: %s\n"
msgstr "Nicht möglich %s zu schreiben"
# , c-format
#: build/pack.c:675
#: build/pack.c:672
#, fuzzy, c-format
msgid "Unable to write header to %s: %s\n"
msgstr "Nicht möglich %s zu schreiben"
# , c-format
#: build/pack.c:685
#: build/pack.c:682
#, fuzzy, c-format
msgid "Unable to read payload from %s: %s\n"
msgstr "Nicht möglich %s zu schreiben"
# , c-format
#: build/pack.c:691
#: build/pack.c:688
#, fuzzy, c-format
msgid "Unable to write payload to %s: %s\n"
msgstr "Nicht möglich %s zu schreiben"
#: build/pack.c:716 lib/psm.c:2146
#: build/pack.c:725 lib/psm.c:2146
#, c-format
msgid "Wrote: %s\n"
msgstr ""
#: build/pack.c:789
#: build/pack.c:798
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
#: build/pack.c:806
#: build/pack.c:815
#, fuzzy, c-format
msgid "cannot create %s: %s\n"
msgstr "kann Datei %s nicht öffnen: "
@ -992,7 +992,7 @@ msgstr "
msgid "line %d: Illegal char '-' in %s: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
#: build/parsePreamble.c:588 build/parseSpec.c:426
#: build/parsePreamble.c:588 build/parseSpec.c:427
#, c-format
msgid "BuildRoot can not be \"/\": %s\n"
msgstr ""
@ -1169,49 +1169,49 @@ msgid "line %d: Second %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
# , c-format
#: build/parseSpec.c:160
#: build/parseSpec.c:161
#, fuzzy, c-format
msgid "line %d: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
# , c-format
#. XXX Fstrerror
#: build/parseSpec.c:212
#: build/parseSpec.c:213
#, fuzzy, c-format
msgid "Unable to open %s: %s\n"
msgstr "Öffnen von %s fehlgeschlagen\n"
#: build/parseSpec.c:228
#: build/parseSpec.c:229
#, c-format
msgid "Unclosed %%if\n"
msgstr ""
#: build/parseSpec.c:300
#: build/parseSpec.c:301
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr ""
#: build/parseSpec.c:309
#: build/parseSpec.c:310
#, c-format
msgid "%s:%d: Got a %%else with no %%if\n"
msgstr ""
#: build/parseSpec.c:321
#: build/parseSpec.c:322
#, c-format
msgid "%s:%d: Got a %%endif with no %%if\n"
msgstr ""
#: build/parseSpec.c:335 build/parseSpec.c:344
#: build/parseSpec.c:336 build/parseSpec.c:345
#, c-format
msgid "malformed %%include statement\n"
msgstr ""
#: build/parseSpec.c:544
#: build/parseSpec.c:546
#, fuzzy
msgid "No compatible architectures found for build\n"
msgstr "Paket-Architektur nicht überprüfen"
#: build/parseSpec.c:602
#: build/parseSpec.c:607
#, fuzzy, c-format
msgid "Package has no %%description: %s\n"
msgstr "Paket %s wird nicht in %s aufgeführt"
@ -1402,27 +1402,27 @@ msgstr ""
msgid "lookup i18N strings in specfile catalog"
msgstr ""
#: build/spec.c:234
#: build/spec.c:237
#, fuzzy, c-format
msgid "line %d: Bad number: %s\n"
msgstr "ungültige Paket-Nummer: %s\n"
#: build/spec.c:240
#: build/spec.c:243
#, fuzzy, c-format
msgid "line %d: Bad no%s number: %d\n"
msgstr "ungültige Paket-Nummer: %s\n"
#: build/spec.c:303
#: build/spec.c:306
#, fuzzy, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "ungültige Paket-Nummer: %s\n"
#: build/spec.c:639
#: build/spec.c:642
#, fuzzy, c-format
msgid "can't query %s: %s\n"
msgstr "Fehler: kann %s nicht öffnen\n"
#: build/spec.c:714
#: build/spec.c:718
#, fuzzy, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr "Anfrage von %s fehlgeschlagen\n"
@ -3330,25 +3330,30 @@ msgstr "Datenbank aus der vorhandenen neu erstellen"
msgid "verified db index %s/%s\n"
msgstr "Datenbank aus der vorhandenen neu erstellen"
#: rpmdb/db3.c:1069
#: rpmdb/db3.c:968
#, c-format
msgid "\tunshared posix mutexes found(%d), adding DB_PRIVATE\n"
msgstr ""
#: rpmdb/db3.c:1071
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "Datenbank aus der vorhandenen neu erstellen"
#: rpmdb/db3.c:1306
#: rpmdb/db3.c:1308
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "kann %s lock für die Datenbank nicht bekommen"
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "exclusive"
msgstr "exklusiv"
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "shared"
msgstr "geteilt"
#: rpmdb/db3.c:1312
#: rpmdb/db3.c:1314
#, fuzzy, c-format
msgid "locked db index %s/%s\n"
msgstr "Datenbank aus der vorhandenen neu erstellen"

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-12-23 15:42-0500\n"
"POT-Creation-Date: 2002-12-24 02:13-0500\n"
"PO-Revision-Date: 1998-05-02 21:41:47-0400\n"
"Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
"Language-Team: Finnish <linux@sot.com>\n"
@ -525,64 +525,64 @@ msgstr "En voi lukea %s: %s."
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr ""
#: build/files.c:1523
#: build/files.c:1527
#, fuzzy, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr "En voi lukea %s: %s."
#: build/files.c:1547
#: build/files.c:1551
#, fuzzy, c-format
msgid "File not found: %s\n"
msgstr "Tiedostoa ei löytynyt palvelimelta"
#: build/files.c:1747
#: build/files.c:1751
#, fuzzy, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "siirtojen pitää alkaa /-merkillä"
#: build/files.c:1771
#: build/files.c:1775
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "paketti %s ei ole %s:ssä"
#: build/files.c:1788 lib/rpminstall.c:343
#: build/files.c:1792 lib/rpminstall.c:343
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "Tiedostoa ei löytynyt palvelimelta"
#: build/files.c:1848
#: build/files.c:1852
#, fuzzy, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "virhe: tiedostoa %s ei voi avata\n"
#: build/files.c:1859 build/pack.c:156
#: build/files.c:1863 build/pack.c:156
#, fuzzy, c-format
msgid "line: %s\n"
msgstr "en voinut avata %s: %s"
#: build/files.c:2246
#: build/files.c:2250
#, fuzzy, c-format
msgid "Bad file: %s: %s\n"
msgstr "en voinut avata %s: %s"
#: build/files.c:2258 build/parsePrep.c:50
#: build/files.c:2262 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
#: build/files.c:2302
#: build/files.c:2306
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "virhe etsittäessä pakettia %s\n"
#: build/files.c:2323
#: build/files.c:2327
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
#: build/files.c:2351
#: build/files.c:2355
#, fuzzy, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "en voinut avata %s: %s"
@ -720,52 +720,52 @@ msgstr "generoi PGP-allekirjoitus"
msgid "Unable to reload signature header.\n"
msgstr "%s:n kirjoitus ei onnistu"
#: build/pack.c:599
#: build/pack.c:596
#, fuzzy, c-format
msgid "Could not open %s: %s\n"
msgstr "%s:n avaus epäonnistui\n"
#: build/pack.c:635 lib/psm.c:1841
#: build/pack.c:632 lib/psm.c:1841
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "%s:n kirjoitus ei onnistu"
#: build/pack.c:650
#: build/pack.c:647
#, fuzzy, c-format
msgid "Unable to open sigtarget %s: %s\n"
msgstr "%s:n kirjoitus ei onnistu"
#: build/pack.c:661
#: build/pack.c:658
#, fuzzy, c-format
msgid "Unable to read header from %s: %s\n"
msgstr "%s:n kirjoitus ei onnistu"
#: build/pack.c:675
#: build/pack.c:672
#, fuzzy, c-format
msgid "Unable to write header to %s: %s\n"
msgstr "%s:n kirjoitus ei onnistu"
#: build/pack.c:685
#: build/pack.c:682
#, fuzzy, c-format
msgid "Unable to read payload from %s: %s\n"
msgstr "%s:n kirjoitus ei onnistu"
#: build/pack.c:691
#: build/pack.c:688
#, fuzzy, c-format
msgid "Unable to write payload to %s: %s\n"
msgstr "%s:n kirjoitus ei onnistu"
#: build/pack.c:716 lib/psm.c:2146
#: build/pack.c:725 lib/psm.c:2146
#, c-format
msgid "Wrote: %s\n"
msgstr ""
#: build/pack.c:789
#: build/pack.c:798
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
#: build/pack.c:806
#: build/pack.c:815
#, fuzzy, c-format
msgid "cannot create %s: %s\n"
msgstr "en voinut avata tiedostoa %s: "
@ -906,7 +906,7 @@ msgstr "en voinut avata %s: %s"
msgid "line %d: Illegal char '-' in %s: %s\n"
msgstr "en voinut avata %s: %s"
#: build/parsePreamble.c:588 build/parseSpec.c:426
#: build/parsePreamble.c:588 build/parseSpec.c:427
#, c-format
msgid "BuildRoot can not be \"/\": %s\n"
msgstr ""
@ -1070,48 +1070,48 @@ msgstr "siirtojen pit
msgid "line %d: Second %s\n"
msgstr "en voinut avata %s: %s"
#: build/parseSpec.c:160
#: build/parseSpec.c:161
#, fuzzy, c-format
msgid "line %d: %s\n"
msgstr "en voinut avata %s: %s"
#. XXX Fstrerror
#: build/parseSpec.c:212
#: build/parseSpec.c:213
#, fuzzy, c-format
msgid "Unable to open %s: %s\n"
msgstr "%s:n avaus epäonnistui\n"
#: build/parseSpec.c:228
#: build/parseSpec.c:229
#, c-format
msgid "Unclosed %%if\n"
msgstr ""
#: build/parseSpec.c:300
#: build/parseSpec.c:301
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr ""
#: build/parseSpec.c:309
#: build/parseSpec.c:310
#, c-format
msgid "%s:%d: Got a %%else with no %%if\n"
msgstr ""
#: build/parseSpec.c:321
#: build/parseSpec.c:322
#, c-format
msgid "%s:%d: Got a %%endif with no %%if\n"
msgstr ""
#: build/parseSpec.c:335 build/parseSpec.c:344
#: build/parseSpec.c:336 build/parseSpec.c:345
#, c-format
msgid "malformed %%include statement\n"
msgstr ""
#: build/parseSpec.c:544
#: build/parseSpec.c:546
#, fuzzy
msgid "No compatible architectures found for build\n"
msgstr "älä tarkista paketin arkkitehtuuria"
#: build/parseSpec.c:602
#: build/parseSpec.c:607
#, fuzzy, c-format
msgid "Package has no %%description: %s\n"
msgstr "paketti %s ei ole %s:ssä"
@ -1299,27 +1299,27 @@ msgstr ""
msgid "lookup i18N strings in specfile catalog"
msgstr ""
#: build/spec.c:234
#: build/spec.c:237
#, fuzzy, c-format
msgid "line %d: Bad number: %s\n"
msgstr "virheellinen paketin numero: %s\n"
#: build/spec.c:240
#: build/spec.c:243
#, fuzzy, c-format
msgid "line %d: Bad no%s number: %d\n"
msgstr "virheellinen paketin numero: %s\n"
#: build/spec.c:303
#: build/spec.c:306
#, fuzzy, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "virheellinen paketin numero: %s\n"
#: build/spec.c:639
#: build/spec.c:642
#, fuzzy, c-format
msgid "can't query %s: %s\n"
msgstr "virhe: en voi avata %s\n"
#: build/spec.c:714
#: build/spec.c:718
#, fuzzy, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr "%s:n kysely ei onnistunut\n"
@ -3195,25 +3195,30 @@ msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
msgid "verified db index %s/%s\n"
msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
#: rpmdb/db3.c:1069
#: rpmdb/db3.c:968
#, c-format
msgid "\tunshared posix mutexes found(%d), adding DB_PRIVATE\n"
msgstr ""
#: rpmdb/db3.c:1071
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
#: rpmdb/db3.c:1306
#: rpmdb/db3.c:1308
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "en voi saada %s lukitusta tietokantaan"
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "exclusive"
msgstr "poissulkevaa"
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "shared"
msgstr "jaettua"
#: rpmdb/db3.c:1312
#: rpmdb/db3.c:1314
#, fuzzy, c-format
msgid "locked db index %s/%s\n"
msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-12-23 15:42-0500\n"
"POT-Creation-Date: 2002-12-24 02:13-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -546,64 +546,64 @@ msgstr "impossible d'ouvrir: %s\n"
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr ""
#: build/files.c:1523
#: build/files.c:1527
#, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr ""
#: build/files.c:1547
#: build/files.c:1551
#, fuzzy, c-format
msgid "File not found: %s\n"
msgstr "aucun package n'a t spcifi pour la dsinstallation"
#: build/files.c:1747
#: build/files.c:1751
#, fuzzy, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "les arguments de --root (-r) doivent commencer par un /"
#: build/files.c:1771
#: build/files.c:1775
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: build/files.c:1788 lib/rpminstall.c:343
#: build/files.c:1792 lib/rpminstall.c:343
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "aucun package n'a t spcifi pour la dsinstallation"
#: build/files.c:1848
#: build/files.c:1852
#, fuzzy, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: build/files.c:1859 build/pack.c:156
#: build/files.c:1863 build/pack.c:156
#, fuzzy, c-format
msgid "line: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: build/files.c:2246
#: build/files.c:2250
#, fuzzy, c-format
msgid "Bad file: %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: build/files.c:2258 build/parsePrep.c:50
#: build/files.c:2262 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
#: build/files.c:2302
#: build/files.c:2306
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "La construction a chou.\n"
#: build/files.c:2323
#: build/files.c:2327
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
#: build/files.c:2351
#: build/files.c:2355
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@ -741,52 +741,52 @@ msgstr " --sign - genre une signature PGP"
msgid "Unable to reload signature header.\n"
msgstr "impossible d'ouvrir: %s\n"
#: build/pack.c:599
#: build/pack.c:596
#, fuzzy, c-format
msgid "Could not open %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: build/pack.c:635 lib/psm.c:1841
#: build/pack.c:632 lib/psm.c:1841
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: build/pack.c:650
#: build/pack.c:647
#, fuzzy, c-format
msgid "Unable to open sigtarget %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: build/pack.c:661
#: build/pack.c:658
#, fuzzy, c-format
msgid "Unable to read header from %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: build/pack.c:675
#: build/pack.c:672
#, fuzzy, c-format
msgid "Unable to write header to %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: build/pack.c:685
#: build/pack.c:682
#, fuzzy, c-format
msgid "Unable to read payload from %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: build/pack.c:691
#: build/pack.c:688
#, fuzzy, c-format
msgid "Unable to write payload to %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: build/pack.c:716 lib/psm.c:2146
#: build/pack.c:725 lib/psm.c:2146
#, c-format
msgid "Wrote: %s\n"
msgstr ""
#: build/pack.c:789
#: build/pack.c:798
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
#: build/pack.c:806
#: build/pack.c:815
#, fuzzy, c-format
msgid "cannot create %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
@ -927,7 +927,7 @@ msgstr "impossible d'ouvrir: %s\n"
msgid "line %d: Illegal char '-' in %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: build/parsePreamble.c:588 build/parseSpec.c:426
#: build/parsePreamble.c:588 build/parseSpec.c:427
#, c-format
msgid "BuildRoot can not be \"/\": %s\n"
msgstr ""
@ -1091,48 +1091,48 @@ msgstr "les arguments de --root (-r) doivent commencer par un /"
msgid "line %d: Second %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: build/parseSpec.c:160
#: build/parseSpec.c:161
#, fuzzy, c-format
msgid "line %d: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#. XXX Fstrerror
#: build/parseSpec.c:212
#: build/parseSpec.c:213
#, fuzzy, c-format
msgid "Unable to open %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: build/parseSpec.c:228
#: build/parseSpec.c:229
#, c-format
msgid "Unclosed %%if\n"
msgstr ""
#: build/parseSpec.c:300
#: build/parseSpec.c:301
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr ""
#: build/parseSpec.c:309
#: build/parseSpec.c:310
#, c-format
msgid "%s:%d: Got a %%else with no %%if\n"
msgstr ""
#: build/parseSpec.c:321
#: build/parseSpec.c:322
#, c-format
msgid "%s:%d: Got a %%endif with no %%if\n"
msgstr ""
#: build/parseSpec.c:335 build/parseSpec.c:344
#: build/parseSpec.c:336 build/parseSpec.c:345
#, c-format
msgid "malformed %%include statement\n"
msgstr ""
#: build/parseSpec.c:544
#: build/parseSpec.c:546
#, fuzzy
msgid "No compatible architectures found for build\n"
msgstr "%s ne peut tre construit sur cette architecture\n"
#: build/parseSpec.c:602
#: build/parseSpec.c:607
#, fuzzy, c-format
msgid "Package has no %%description: %s\n"
msgstr "aucun package n'a t spcifi pour la dsinstallation"
@ -1329,27 +1329,27 @@ msgstr ""
msgid "lookup i18N strings in specfile catalog"
msgstr ""
#: build/spec.c:234
#: build/spec.c:237
#, fuzzy, c-format
msgid "line %d: Bad number: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: build/spec.c:240
#: build/spec.c:243
#, fuzzy, c-format
msgid "line %d: Bad no%s number: %d\n"
msgstr "impossible d'ouvrir: %s\n"
#: build/spec.c:303
#: build/spec.c:306
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
#: build/spec.c:639
#: build/spec.c:642
#, fuzzy, c-format
msgid "can't query %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: build/spec.c:714
#: build/spec.c:718
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr ""
@ -3231,25 +3231,30 @@ msgstr "impossible d'ouvrir: %s\n"
msgid "verified db index %s/%s\n"
msgstr "impossible d'ouvrir: %s\n"
#: rpmdb/db3.c:1069
#: rpmdb/db3.c:968
#, c-format
msgid "\tunshared posix mutexes found(%d), adding DB_PRIVATE\n"
msgstr ""
#: rpmdb/db3.c:1071
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "impossible d'ouvrir: %s\n"
#: rpmdb/db3.c:1306
#: rpmdb/db3.c:1308
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "aucun package n'a t spcifi pour la dsinstallation"
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "exclusive"
msgstr ""
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "shared"
msgstr ""
#: rpmdb/db3.c:1312
#: rpmdb/db3.c:1314
#, fuzzy, c-format
msgid "locked db index %s/%s\n"
msgstr "impossible d'ouvrir: %s\n"

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
"POT-Creation-Date: 2002-12-23 15:42-0500\n"
"POT-Creation-Date: 2002-12-24 02:13-0500\n"
"PO-Revision-Date: 2001-01-13 22:31+0100\n"
"Last-Translator: Jesús Bravo Álvarez <jba@pobox.com>\n"
"Language-Team: Galician <trasno@ceu.fi.udc.es>\n"
@ -495,64 +495,64 @@ msgstr ""
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr ""
#: build/files.c:1523
#: build/files.c:1527
#, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr ""
#: build/files.c:1547
#: build/files.c:1551
#, c-format
msgid "File not found: %s\n"
msgstr ""
#: build/files.c:1747
#: build/files.c:1751
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr ""
#: build/files.c:1771
#: build/files.c:1775
#, c-format
msgid "Glob not permitted: %s\n"
msgstr ""
#: build/files.c:1788 lib/rpminstall.c:343
#: build/files.c:1792 lib/rpminstall.c:343
#, c-format
msgid "File not found by glob: %s\n"
msgstr ""
#: build/files.c:1848
#: build/files.c:1852
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr ""
#: build/files.c:1859 build/pack.c:156
#: build/files.c:1863 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr ""
#: build/files.c:2246
#: build/files.c:2250
#, c-format
msgid "Bad file: %s: %s\n"
msgstr ""
#: build/files.c:2258 build/parsePrep.c:50
#: build/files.c:2262 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
#: build/files.c:2302
#: build/files.c:2306
#, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr ""
#: build/files.c:2323
#: build/files.c:2327
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
#: build/files.c:2351
#: build/files.c:2355
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@ -686,52 +686,52 @@ msgstr ""
msgid "Unable to reload signature header.\n"
msgstr ""
#: build/pack.c:599
#: build/pack.c:596
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
#: build/pack.c:635 lib/psm.c:1841
#: build/pack.c:632 lib/psm.c:1841
#, c-format
msgid "Unable to write package: %s\n"
msgstr ""
#: build/pack.c:650
#: build/pack.c:647
#, c-format
msgid "Unable to open sigtarget %s: %s\n"
msgstr ""
#: build/pack.c:661
#: build/pack.c:658
#, c-format
msgid "Unable to read header from %s: %s\n"
msgstr ""
#: build/pack.c:675
#: build/pack.c:672
#, c-format
msgid "Unable to write header to %s: %s\n"
msgstr ""
#: build/pack.c:685
#: build/pack.c:682
#, c-format
msgid "Unable to read payload from %s: %s\n"
msgstr ""
#: build/pack.c:691
#: build/pack.c:688
#, c-format
msgid "Unable to write payload to %s: %s\n"
msgstr ""
#: build/pack.c:716 lib/psm.c:2146
#: build/pack.c:725 lib/psm.c:2146
#, c-format
msgid "Wrote: %s\n"
msgstr ""
#: build/pack.c:789
#: build/pack.c:798
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
#: build/pack.c:806
#: build/pack.c:815
#, c-format
msgid "cannot create %s: %s\n"
msgstr ""
@ -872,7 +872,7 @@ msgstr ""
msgid "line %d: Illegal char '-' in %s: %s\n"
msgstr ""
#: build/parsePreamble.c:588 build/parseSpec.c:426
#: build/parsePreamble.c:588 build/parseSpec.c:427
#, c-format
msgid "BuildRoot can not be \"/\": %s\n"
msgstr ""
@ -1036,47 +1036,47 @@ msgstr ""
msgid "line %d: Second %s\n"
msgstr ""
#: build/parseSpec.c:160
#: build/parseSpec.c:161
#, c-format
msgid "line %d: %s\n"
msgstr ""
#. XXX Fstrerror
#: build/parseSpec.c:212
#: build/parseSpec.c:213
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
#: build/parseSpec.c:228
#: build/parseSpec.c:229
#, c-format
msgid "Unclosed %%if\n"
msgstr ""
#: build/parseSpec.c:300
#: build/parseSpec.c:301
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr ""
#: build/parseSpec.c:309
#: build/parseSpec.c:310
#, c-format
msgid "%s:%d: Got a %%else with no %%if\n"
msgstr ""
#: build/parseSpec.c:321
#: build/parseSpec.c:322
#, c-format
msgid "%s:%d: Got a %%endif with no %%if\n"
msgstr ""
#: build/parseSpec.c:335 build/parseSpec.c:344
#: build/parseSpec.c:336 build/parseSpec.c:345
#, c-format
msgid "malformed %%include statement\n"
msgstr ""
#: build/parseSpec.c:544
#: build/parseSpec.c:546
msgid "No compatible architectures found for build\n"
msgstr ""
#: build/parseSpec.c:602
#: build/parseSpec.c:607
#, c-format
msgid "Package has no %%description: %s\n"
msgstr ""
@ -1244,27 +1244,27 @@ msgstr ""
msgid "lookup i18N strings in specfile catalog"
msgstr ""
#: build/spec.c:234
#: build/spec.c:237
#, c-format
msgid "line %d: Bad number: %s\n"
msgstr ""
#: build/spec.c:240
#: build/spec.c:243
#, c-format
msgid "line %d: Bad no%s number: %d\n"
msgstr ""
#: build/spec.c:303
#: build/spec.c:306
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
#: build/spec.c:639
#: build/spec.c:642
#, c-format
msgid "can't query %s: %s\n"
msgstr ""
#: build/spec.c:714
#: build/spec.c:718
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr ""
@ -3045,25 +3045,30 @@ msgstr ""
msgid "verified db index %s/%s\n"
msgstr ""
#: rpmdb/db3.c:1069
#: rpmdb/db3.c:968
#, c-format
msgid "\tunshared posix mutexes found(%d), adding DB_PRIVATE\n"
msgstr ""
#: rpmdb/db3.c:1071
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
#: rpmdb/db3.c:1306
#: rpmdb/db3.c:1308
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "exclusive"
msgstr ""
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "shared"
msgstr ""
#: rpmdb/db3.c:1312
#: rpmdb/db3.c:1314
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-12-23 15:42-0500\n"
"POT-Creation-Date: 2002-12-24 02:13-0500\n"
"PO-Revision-Date: 2001-07-12 13:25+0000\n"
"Last-Translator: Richard Allen <ra@hp.is>\n"
"Language-Team: is <kde-isl@mmedia.is>\n"
@ -498,64 +498,64 @@ msgstr "Skr
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr ""
#: build/files.c:1523
#: build/files.c:1527
#, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr ""
#: build/files.c:1547
#: build/files.c:1551
#, c-format
msgid "File not found: %s\n"
msgstr "Skráin fannst ekki: %s\n"
#: build/files.c:1747
#: build/files.c:1751
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr ""
#: build/files.c:1771
#: build/files.c:1775
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "Gat ekki opnað PreUn skrá: %s\n"
#: build/files.c:1788 lib/rpminstall.c:343
#: build/files.c:1792 lib/rpminstall.c:343
#, c-format
msgid "File not found by glob: %s\n"
msgstr "Skráin fannst ekki með 'glob': %s\n"
#: build/files.c:1848
#: build/files.c:1852
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "Gat ekki opnað %%files skrána %s: %s\n"
#: build/files.c:1859 build/pack.c:156
#: build/files.c:1863 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr "lína: %s\n"
#: build/files.c:2246
#: build/files.c:2250
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "Ógild skrá %s: %s\n"
#: build/files.c:2258 build/parsePrep.c:50
#: build/files.c:2262 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
#: build/files.c:2302
#: build/files.c:2306
#, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr ""
#: build/files.c:2323
#: build/files.c:2327
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
#: build/files.c:2351
#: build/files.c:2355
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@ -693,52 +693,52 @@ msgstr ""
msgid "Unable to reload signature header.\n"
msgstr "Get ekki lesið haus úr %s: %s\n"
#: build/pack.c:599
#: build/pack.c:596
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
#: build/pack.c:635 lib/psm.c:1841
#: build/pack.c:632 lib/psm.c:1841
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Get ekki ritað í pakka: %s\n"
#: build/pack.c:650
#: build/pack.c:647
#, c-format
msgid "Unable to open sigtarget %s: %s\n"
msgstr "Get ekki opnað sigtarget %s: %s\n"
#: build/pack.c:661
#: build/pack.c:658
#, c-format
msgid "Unable to read header from %s: %s\n"
msgstr "Get ekki lesið haus úr %s: %s\n"
#: build/pack.c:675
#: build/pack.c:672
#, c-format
msgid "Unable to write header to %s: %s\n"
msgstr "Gat ekki ritað haus í %s: %s\n"
#: build/pack.c:685
#: build/pack.c:682
#, c-format
msgid "Unable to read payload from %s: %s\n"
msgstr "Get ekki lesið innihald %s: %s\n"
#: build/pack.c:691
#: build/pack.c:688
#, c-format
msgid "Unable to write payload to %s: %s\n"
msgstr "Get ekki ritað innihald í %s: %s\n"
#: build/pack.c:716 lib/psm.c:2146
#: build/pack.c:725 lib/psm.c:2146
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrifaði: %s\n"
#: build/pack.c:789
#: build/pack.c:798
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
#: build/pack.c:806
#: build/pack.c:815
#, c-format
msgid "cannot create %s: %s\n"
msgstr ""
@ -879,7 +879,7 @@ msgstr "l
msgid "line %d: Illegal char '-' in %s: %s\n"
msgstr "lína %d: Ólöglegt tákn '-' í %s: %s\n"
#: build/parsePreamble.c:588 build/parseSpec.c:426
#: build/parsePreamble.c:588 build/parseSpec.c:427
#, c-format
msgid "BuildRoot can not be \"/\": %s\n"
msgstr ""
@ -1043,47 +1043,47 @@ msgstr ""
msgid "line %d: Second %s\n"
msgstr ""
#: build/parseSpec.c:160
#: build/parseSpec.c:161
#, c-format
msgid "line %d: %s\n"
msgstr "lína %d: %s\n"
#. XXX Fstrerror
#: build/parseSpec.c:212
#: build/parseSpec.c:213
#, c-format
msgid "Unable to open %s: %s\n"
msgstr "Get ekki opnað %s: %s\n"
#: build/parseSpec.c:228
#: build/parseSpec.c:229
#, c-format
msgid "Unclosed %%if\n"
msgstr ""
#: build/parseSpec.c:300
#: build/parseSpec.c:301
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr ""
#: build/parseSpec.c:309
#: build/parseSpec.c:310
#, c-format
msgid "%s:%d: Got a %%else with no %%if\n"
msgstr ""
#: build/parseSpec.c:321
#: build/parseSpec.c:322
#, c-format
msgid "%s:%d: Got a %%endif with no %%if\n"
msgstr ""
#: build/parseSpec.c:335 build/parseSpec.c:344
#: build/parseSpec.c:336 build/parseSpec.c:345
#, c-format
msgid "malformed %%include statement\n"
msgstr ""
#: build/parseSpec.c:544
#: build/parseSpec.c:546
msgid "No compatible architectures found for build\n"
msgstr ""
#: build/parseSpec.c:602
#: build/parseSpec.c:607
#, c-format
msgid "Package has no %%description: %s\n"
msgstr ""
@ -1255,27 +1255,27 @@ msgstr ""
msgid "lookup i18N strings in specfile catalog"
msgstr ""
#: build/spec.c:234
#: build/spec.c:237
#, c-format
msgid "line %d: Bad number: %s\n"
msgstr ""
#: build/spec.c:240
#: build/spec.c:243
#, c-format
msgid "line %d: Bad no%s number: %d\n"
msgstr ""
#: build/spec.c:303
#: build/spec.c:306
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
#: build/spec.c:639
#: build/spec.c:642
#, c-format
msgid "can't query %s: %s\n"
msgstr ""
#: build/spec.c:714
#: build/spec.c:718
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr ""
@ -3075,25 +3075,30 @@ msgstr ""
msgid "verified db index %s/%s\n"
msgstr ""
#: rpmdb/db3.c:1069
#: rpmdb/db3.c:968
#, c-format
msgid "\tunshared posix mutexes found(%d), adding DB_PRIVATE\n"
msgstr ""
#: rpmdb/db3.c:1071
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
#: rpmdb/db3.c:1306
#: rpmdb/db3.c:1308
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "exclusive"
msgstr "einka"
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "shared"
msgstr "deildann"
#: rpmdb/db3.c:1312
#: rpmdb/db3.c:1314
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-12-23 15:42-0500\n"
"POT-Creation-Date: 2002-12-24 02:13-0500\n"
"PO-Revision-Date: 1999-12-01 22:49 +JST\n"
"Last-Translator: Kanda Mitsuru <kanda@nn.iij4u.or.jp>\n"
"Language-Team: JRPM <jrpm@linux.or.jp>\n"
@ -540,64 +540,64 @@ msgstr "
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr ""
#: build/files.c:1523
#: build/files.c:1527
#, fuzzy, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr "ファイルは prefix (%s) と一致しません: %s"
#: build/files.c:1547
#: build/files.c:1551
#, fuzzy, c-format
msgid "File not found: %s\n"
msgstr "ファイルが見つかりません: %s"
#: build/files.c:1747
#: build/files.c:1751
#, fuzzy, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "ファイルは先頭に \"/\" が必要です: %s"
#: build/files.c:1771
#: build/files.c:1775
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "%d 行目: バージョンは許可されていません: %s"
#: build/files.c:1788 lib/rpminstall.c:343
#: build/files.c:1792 lib/rpminstall.c:343
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "ファイルが見つかりません(by glob): %s"
#: build/files.c:1848
#: build/files.c:1852
#, fuzzy, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "%%files をオープンできません: %s"
#: build/files.c:1859 build/pack.c:156
#: build/files.c:1863 build/pack.c:156
#, fuzzy, c-format
msgid "line: %s\n"
msgstr "行目: %s"
#: build/files.c:2246
#: build/files.c:2250
#, fuzzy, c-format
msgid "Bad file: %s: %s\n"
msgstr "ファイル %s: %s\n"
#: build/files.c:2258 build/parsePrep.c:50
#: build/files.c:2262 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "不正な所有者/グループ: %s\n"
#: build/files.c:2302
#: build/files.c:2306
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "パッケージ %s の探索中\n"
#: build/files.c:2323
#: build/files.c:2327
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
#: build/files.c:2351
#: build/files.c:2355
#, fuzzy, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "ファイルの処理中: %s-%s-%s\n"
@ -736,52 +736,52 @@ msgstr "
msgid "Unable to reload signature header.\n"
msgstr "アイコンを読むことができません: %s"
#: build/pack.c:599
#: build/pack.c:596
#, fuzzy, c-format
msgid "Could not open %s: %s\n"
msgstr "%s のオープンに失敗しました\n"
#: build/pack.c:635 lib/psm.c:1841
#: build/pack.c:632 lib/psm.c:1841
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "パッケージの書き込みに失敗しました: %s"
#: build/pack.c:650
#: build/pack.c:647
#, fuzzy, c-format
msgid "Unable to open sigtarget %s: %s\n"
msgstr "sigtarget の読み込みができませんでした: %s"
#: build/pack.c:661
#: build/pack.c:658
#, fuzzy, c-format
msgid "Unable to read header from %s: %s\n"
msgstr "アイコンを読むことができません: %s"
#: build/pack.c:675
#: build/pack.c:672
#, fuzzy, c-format
msgid "Unable to write header to %s: %s\n"
msgstr "パッケージの書き込みに失敗しました: %s"
#: build/pack.c:685
#: build/pack.c:682
#, fuzzy, c-format
msgid "Unable to read payload from %s: %s\n"
msgstr "アイコンを読むことができません: %s"
#: build/pack.c:691
#: build/pack.c:688
#, fuzzy, c-format
msgid "Unable to write payload to %s: %s\n"
msgstr "パッケージの書き込みに失敗しました: %s"
#: build/pack.c:716 lib/psm.c:2146
#: build/pack.c:725 lib/psm.c:2146
#, c-format
msgid "Wrote: %s\n"
msgstr "書き込み中: %s\n"
#: build/pack.c:789
#: build/pack.c:798
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr "パッケージ %s の 出力ファイル名を生成できませんでした: %s\n"
#: build/pack.c:806
#: build/pack.c:815
#, fuzzy, c-format
msgid "cannot create %s: %s\n"
msgstr "%s を作成できません: %s\n"
@ -922,7 +922,7 @@ msgstr "%d
msgid "line %d: Illegal char '-' in %s: %s\n"
msgstr "%d 行目: %s 中に不正な文字 '-' : %s"
#: build/parsePreamble.c:588 build/parseSpec.c:426
#: build/parsePreamble.c:588 build/parseSpec.c:427
#, fuzzy, c-format
msgid "BuildRoot can not be \"/\": %s\n"
msgstr "%d 行目: BuildRoot は \"/\" にすることはできません: %s"
@ -1089,48 +1089,48 @@ msgstr "%d
msgid "line %d: Second %s\n"
msgstr "%d 行目: 2番目の %s"
#: build/parseSpec.c:160
#: build/parseSpec.c:161
#, fuzzy, c-format
msgid "line %d: %s\n"
msgstr "%d 行目: %s"
#. XXX Fstrerror
#: build/parseSpec.c:212
#: build/parseSpec.c:213
#, fuzzy, c-format
msgid "Unable to open %s: %s\n"
msgstr "オープンできません: %s\n"
#: build/parseSpec.c:228
#: build/parseSpec.c:229
#, fuzzy, c-format
msgid "Unclosed %%if\n"
msgstr "%%if が閉じていません"
#: build/parseSpec.c:300
#: build/parseSpec.c:301
#, fuzzy, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr "%s%d: parseExpressionBoolean が %d を返しました"
#: build/parseSpec.c:309
#: build/parseSpec.c:310
#, fuzzy, c-format
msgid "%s:%d: Got a %%else with no %%if\n"
msgstr "%s:%d: if がないのに %%else があります"
#: build/parseSpec.c:321
#: build/parseSpec.c:322
#, fuzzy, c-format
msgid "%s:%d: Got a %%endif with no %%if\n"
msgstr "%s:%d: if がないのに %%endif があります"
#: build/parseSpec.c:335 build/parseSpec.c:344
#: build/parseSpec.c:336 build/parseSpec.c:345
#, fuzzy, c-format
msgid "malformed %%include statement\n"
msgstr "おかしな %%include ステートメントです"
#: build/parseSpec.c:544
#: build/parseSpec.c:546
#, fuzzy
msgid "No compatible architectures found for build\n"
msgstr "作成(build)可能なアーキテクチャはありません"
#: build/parseSpec.c:602
#: build/parseSpec.c:607
#, fuzzy, c-format
msgid "Package has no %%description: %s\n"
msgstr "パッケージには %%description がありません: %s"
@ -1320,27 +1320,27 @@ msgstr "
msgid "lookup i18N strings in specfile catalog"
msgstr "スペックファイルカタログ中の I18N 文字列を探しています"
#: build/spec.c:234
#: build/spec.c:237
#, fuzzy, c-format
msgid "line %d: Bad number: %s\n"
msgstr "%d 行目: 不正な番号: %s"
#: build/spec.c:240
#: build/spec.c:243
#, fuzzy, c-format
msgid "line %d: Bad no%s number: %d\n"
msgstr "%d 行目: 不正な no%s 番号: %d"
#: build/spec.c:303
#: build/spec.c:306
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "%d 行目: 不正な %s 番号: %s\n"
#: build/spec.c:639
#: build/spec.c:642
#, fuzzy, c-format
msgid "can't query %s: %s\n"
msgstr "%s を削除(unlink)できません: %s\n"
#: build/spec.c:714
#: build/spec.c:718
#, fuzzy, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr "スペックファイル %s への問い合わせに失敗しました、パースできません\n"
@ -3244,25 +3244,30 @@ msgstr "%s
msgid "verified db index %s/%s\n"
msgstr "%s 用の file インデックスを削除します\n"
#: rpmdb/db3.c:1069
#: rpmdb/db3.c:968
#, c-format
msgid "\tunshared posix mutexes found(%d), adding DB_PRIVATE\n"
msgstr ""
#: rpmdb/db3.c:1071
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "データベースモード 0x%x のオープン (%s)\n"
#: rpmdb/db3.c:1306
#: rpmdb/db3.c:1308
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "データベースの %s をロックできません"
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "exclusive"
msgstr "除外"
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "shared"
msgstr "共有"
#: rpmdb/db3.c:1312
#: rpmdb/db3.c:1314
#, fuzzy, c-format
msgid "locked db index %s/%s\n"
msgstr "%s 用の file インデックスを削除します\n"

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.4\n"
"POT-Creation-Date: 2002-12-23 15:42-0500\n"
"POT-Creation-Date: 2002-12-24 02:13-0500\n"
"PO-Revision-Date: 2002-03-04 17:17+0900\n"
"Last-Translator: Jong-Hoon Ryu <redhat4u@netian.com>\n"
"Language-Team: GNU Translation project <ko@li.org>\n"
@ -509,64 +509,64 @@ msgstr "
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr "BuildRoot에 심볼릭링크함: %s -> %s\n"
#: build/files.c:1523
#: build/files.c:1527
#, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr "파일이 prefix (%s)와 일치하지 않음: %s\n"
#: build/files.c:1547
#: build/files.c:1551
#, c-format
msgid "File not found: %s\n"
msgstr "파일을 찾을 수 없음: %s\n"
#: build/files.c:1747
#: build/files.c:1751
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "파일은 \"/\" 로 시작해야함: %s\n"
#: build/files.c:1771
#: build/files.c:1775
#, c-format
msgid "Glob not permitted: %s\n"
msgstr "Glob을 사용할 수 없음: %s\n"
#: build/files.c:1788 lib/rpminstall.c:343
#: build/files.c:1792 lib/rpminstall.c:343
#, c-format
msgid "File not found by glob: %s\n"
msgstr "glob으로 파일을 찾을 수 없음: %s\n"
#: build/files.c:1848
#: build/files.c:1852
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "%s 파일의 %%files를 열 수 없음: %s\n"
#: build/files.c:1859 build/pack.c:156
#: build/files.c:1863 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr "행: %s\n"
#: build/files.c:2246
#: build/files.c:2250
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "잘못된 파일: %s: %s\n"
#: build/files.c:2258 build/parsePrep.c:50
#: build/files.c:2262 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "잘못된 소유자/그룹: %s\n"
#: build/files.c:2302
#: build/files.c:2306
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "아카이브를 푸는데 실패함%s%s: %s\n"
#: build/files.c:2323
#: build/files.c:2327
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
#: build/files.c:2351
#: build/files.c:2355
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "파일 처리 중: %s-%s-%s\n"
@ -700,52 +700,52 @@ msgstr "
msgid "Unable to reload signature header.\n"
msgstr "서명(signature) 헤더를 다시 읽어올 수 없습니다.\n"
#: build/pack.c:599
#: build/pack.c:596
#, c-format
msgid "Could not open %s: %s\n"
msgstr "%s(을)를 열 수 없음: %s\n"
#: build/pack.c:635 lib/psm.c:1841
#: build/pack.c:632 lib/psm.c:1841
#, c-format
msgid "Unable to write package: %s\n"
msgstr "패키지를 작성할 수 없음: %s\n"
#: build/pack.c:650
#: build/pack.c:647
#, c-format
msgid "Unable to open sigtarget %s: %s\n"
msgstr "서명할 대상 %s(을)를 열 수 없음: %s\n"
#: build/pack.c:661
#: build/pack.c:658
#, c-format
msgid "Unable to read header from %s: %s\n"
msgstr "%s의 헤더를 읽을 수 없음: %s\n"
#: build/pack.c:675
#: build/pack.c:672
#, c-format
msgid "Unable to write header to %s: %s\n"
msgstr "%s에 헤더를 작성할 수 없음: %s\n"
#: build/pack.c:685
#: build/pack.c:682
#, c-format
msgid "Unable to read payload from %s: %s\n"
msgstr "%s의 payload를 읽을 수 없음: %s\n"
#: build/pack.c:691
#: build/pack.c:688
#, c-format
msgid "Unable to write payload to %s: %s\n"
msgstr "%s에 payload를 작성할 수 없음: %s\n"
#: build/pack.c:716 lib/psm.c:2146
#: build/pack.c:725 lib/psm.c:2146
#, c-format
msgid "Wrote: %s\n"
msgstr "작성: %s\n"
#: build/pack.c:789
#: build/pack.c:798
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr "%s 패키지의 출력 파일명을 생성할 수 없음: %s\n"
#: build/pack.c:806
#: build/pack.c:815
#, c-format
msgid "cannot create %s: %s\n"
msgstr "%s(을)를 생성할 수 없음: %s\n"
@ -886,7 +886,7 @@ msgstr "%d
msgid "line %d: Illegal char '-' in %s: %s\n"
msgstr "%d 번째 행: %s에 부적합한 문자 '-' 가 있음: %s\n"
#: build/parsePreamble.c:588 build/parseSpec.c:426
#: build/parsePreamble.c:588 build/parseSpec.c:427
#, c-format
msgid "BuildRoot can not be \"/\": %s\n"
msgstr "BuildRoot를 \"/\" 로 지정할 수 없음: %s\n"
@ -1052,47 +1052,47 @@ msgstr "%d
msgid "line %d: Second %s\n"
msgstr "%d 번째 행: 두번째 %s\n"
#: build/parseSpec.c:160
#: build/parseSpec.c:161
#, c-format
msgid "line %d: %s\n"
msgstr "%d 번째 행: %s\n"
#. XXX Fstrerror
#: build/parseSpec.c:212
#: build/parseSpec.c:213
#, c-format
msgid "Unable to open %s: %s\n"
msgstr "%s(을)를 열 수 없음: %s\n"
#: build/parseSpec.c:228
#: build/parseSpec.c:229
#, c-format
msgid "Unclosed %%if\n"
msgstr "%%if가 닫히지 않았습니다\n"
#: build/parseSpec.c:300
#: build/parseSpec.c:301
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr "%s:%d: parseExpressionBoolean에서 %d 값이 반환되었습니다\n"
#: build/parseSpec.c:309
#: build/parseSpec.c:310
#, c-format
msgid "%s:%d: Got a %%else with no %%if\n"
msgstr "%s:%d: %%else가 %%if 없이 사용되었습니다\n"
#: build/parseSpec.c:321
#: build/parseSpec.c:322
#, c-format
msgid "%s:%d: Got a %%endif with no %%if\n"
msgstr "%s:%d: %%endif가 %%if 없이 사용되었습니다\n"
#: build/parseSpec.c:335 build/parseSpec.c:344
#: build/parseSpec.c:336 build/parseSpec.c:345
#, c-format
msgid "malformed %%include statement\n"
msgstr "%%include 문이 올바르지 않습니다\n"
#: build/parseSpec.c:544
#: build/parseSpec.c:546
msgid "No compatible architectures found for build\n"
msgstr "패키지 제작에 호환하는 아키텍쳐를 찾을 수 없습니다\n"
#: build/parseSpec.c:602
#: build/parseSpec.c:607
#, c-format
msgid "Package has no %%description: %s\n"
msgstr "패키지에 %%description이 없음: %s\n"
@ -1264,27 +1264,27 @@ msgstr "
msgid "lookup i18N strings in specfile catalog"
msgstr "spec파일 목록(catalog)에서 i18N 문자열을 검색합니다"
#: build/spec.c:234
#: build/spec.c:237
#, c-format
msgid "line %d: Bad number: %s\n"
msgstr "%d 번째 행: 잘못된 숫자입니다: %s\n"
#: build/spec.c:240
#: build/spec.c:243
#, c-format
msgid "line %d: Bad no%s number: %d\n"
msgstr "%d 번째 행: no%s(은)는 잘못된 숫자입니다: %d\n"
#: build/spec.c:303
#: build/spec.c:306
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "%d 번째 행: %s(은)는 잘못된 숫자입니다: %s\n"
#: build/spec.c:639
#: build/spec.c:642
#, c-format
msgid "can't query %s: %s\n"
msgstr "%s(을)를 질의할 수 없음: %s\n"
#: build/spec.c:714
#: build/spec.c:718
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr ""
@ -3129,25 +3129,30 @@ msgstr "
msgid "verified db index %s/%s\n"
msgstr "검증된 db 인덱스 %s/%s\n"
#: rpmdb/db3.c:1069
#: rpmdb/db3.c:968
#, c-format
msgid "\tunshared posix mutexes found(%d), adding DB_PRIVATE\n"
msgstr ""
#: rpmdb/db3.c:1071
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "여는중 db 인덱스 %s/%s %s 모드=0x%x\n"
#: rpmdb/db3.c:1306
#: rpmdb/db3.c:1308
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "%2$s/%3$s의 잠금된(lock) %1$s(을)를 얻을 수 없습니다\n"
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "exclusive"
msgstr "폐쇄적(exclusive)"
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "shared"
msgstr "공유됨"
#: rpmdb/db3.c:1312
#: rpmdb/db3.c:1314
#, c-format
msgid "locked db index %s/%s\n"
msgstr "잠금된 db 인덱스 %s/%s\n"

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-12-23 15:42-0500\n"
"POT-Creation-Date: 2002-12-24 02:13-0500\n"
"PO-Revision-Date: 2001-06-27 12:24+0200\n"
"Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
"Language-Team: Norwegian <no@li.org>\n"
@ -509,64 +509,64 @@ msgstr "Fil listet to ganger: %s\n"
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr "Symbolsk lenke peker til BuildRoot: %s -> %s\n"
#: build/files.c:1523
#: build/files.c:1527
#, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr ""
#: build/files.c:1547
#: build/files.c:1551
#, c-format
msgid "File not found: %s\n"
msgstr "Fil ikke funnet: %s\n"
#: build/files.c:1747
#: build/files.c:1751
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr ""
#: build/files.c:1771
#: build/files.c:1775
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "linje %d: Filnavn ikke tillatt: %s\n"
#: build/files.c:1788 lib/rpminstall.c:343
#: build/files.c:1792 lib/rpminstall.c:343
#, c-format
msgid "File not found by glob: %s\n"
msgstr ""
#: build/files.c:1848
#: build/files.c:1852
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "Kunne ikke åpne spec fil %s: %s\n"
#: build/files.c:1859 build/pack.c:156
#: build/files.c:1863 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr "Installerer %s\n"
#: build/files.c:2246
#: build/files.c:2250
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "Ugyldig fil %s: %s\n"
#: build/files.c:2258 build/parsePrep.c:50
#: build/files.c:2262 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Ugyldig eier/gruppe: %s\n"
#: build/files.c:2302
#: build/files.c:2306
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "ingen pakke utløser %s\n"
#: build/files.c:2323
#: build/files.c:2327
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
#: build/files.c:2351
#: build/files.c:2355
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@ -704,52 +704,52 @@ msgstr "Genererer signatur: %d\n"
msgid "Unable to reload signature header.\n"
msgstr "Kunne ikke åpne spec fil %s: %s\n"
#: build/pack.c:599
#: build/pack.c:596
#, c-format
msgid "Could not open %s: %s\n"
msgstr "Kunne ikke åpne %s: %s\n"
#: build/pack.c:635 lib/psm.c:1841
#: build/pack.c:632 lib/psm.c:1841
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Kunne ikke skrive pakke: %s\n"
#: build/pack.c:650
#: build/pack.c:647
#, c-format
msgid "Unable to open sigtarget %s: %s\n"
msgstr "Kunne ikke åpne sigmål %s: %s\n"
#: build/pack.c:661
#: build/pack.c:658
#, c-format
msgid "Unable to read header from %s: %s\n"
msgstr "Kunne ikke åpne spec fil %s: %s\n"
#: build/pack.c:675
#: build/pack.c:672
#, c-format
msgid "Unable to write header to %s: %s\n"
msgstr "Kunne ikke skrive header til %s: %s\n"
#: build/pack.c:685
#: build/pack.c:682
#, c-format
msgid "Unable to read payload from %s: %s\n"
msgstr "Kunne ikke lese \"payload\" fra %s: %s\n"
#: build/pack.c:691
#: build/pack.c:688
#, c-format
msgid "Unable to write payload to %s: %s\n"
msgstr "Kunne ikke skrive \"payload\" til %s: %s\n"
#: build/pack.c:716 lib/psm.c:2146
#: build/pack.c:725 lib/psm.c:2146
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrev: %s\n"
#: build/pack.c:789
#: build/pack.c:798
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
#: build/pack.c:806
#: build/pack.c:815
#, c-format
msgid "cannot create %s: %s\n"
msgstr ""
@ -890,7 +890,7 @@ msgstr "linje %d: Tom tagg: %s\n"
msgid "line %d: Illegal char '-' in %s: %s\n"
msgstr "linje %d: Ugyldig tegn '-' i %s: %s\n"
#: build/parsePreamble.c:588 build/parseSpec.c:426
#: build/parsePreamble.c:588 build/parseSpec.c:427
#, c-format
msgid "BuildRoot can not be \"/\": %s\n"
msgstr "BuildRoot kan ikke være \"/\": %s\n"
@ -1056,47 +1056,47 @@ msgstr "linje %d: skriptprogram m
msgid "line %d: Second %s\n"
msgstr "linje %d: Andre %s\n"
#: build/parseSpec.c:160
#: build/parseSpec.c:161
#, c-format
msgid "line %d: %s\n"
msgstr "linje %d: %s\n"
#. XXX Fstrerror
#: build/parseSpec.c:212
#: build/parseSpec.c:213
#, c-format
msgid "Unable to open %s: %s\n"
msgstr "Kan ikke åpne %s: %s\n"
#: build/parseSpec.c:228
#: build/parseSpec.c:229
#, c-format
msgid "Unclosed %%if\n"
msgstr "Åpen %%if\n"
#: build/parseSpec.c:300
#: build/parseSpec.c:301
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr "%s:%d: parseExpressionBoolean returnerer %d\n"
#: build/parseSpec.c:309
#: build/parseSpec.c:310
#, c-format
msgid "%s:%d: Got a %%else with no %%if\n"
msgstr "%s:%d: %%else uten %%if\n"
#: build/parseSpec.c:321
#: build/parseSpec.c:322
#, c-format
msgid "%s:%d: Got a %%endif with no %%if\n"
msgstr "%s:%d: %%endif uten %%if\n"
#: build/parseSpec.c:335 build/parseSpec.c:344
#: build/parseSpec.c:336 build/parseSpec.c:345
#, c-format
msgid "malformed %%include statement\n"
msgstr "ugyldig %%include utsagn\n"
#: build/parseSpec.c:544
#: build/parseSpec.c:546
msgid "No compatible architectures found for build\n"
msgstr "Ingen kompatible arkitekturer funnet for bygging\n"
#: build/parseSpec.c:602
#: build/parseSpec.c:607
#, c-format
msgid "Package has no %%description: %s\n"
msgstr "Pakken har ingen %%description: %s\n"
@ -1270,27 +1270,27 @@ msgstr ""
msgid "lookup i18N strings in specfile catalog"
msgstr ""
#: build/spec.c:234
#: build/spec.c:237
#, c-format
msgid "line %d: Bad number: %s\n"
msgstr "linje %d: Ugyldig nummer: %s\n"
#: build/spec.c:240
#: build/spec.c:243
#, c-format
msgid "line %d: Bad no%s number: %d\n"
msgstr "linje %d: Ugyldig no%s nummer: %d\n"
#: build/spec.c:303
#: build/spec.c:306
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "linje %d: Ugyldig %s-nummer: %s\n"
#: build/spec.c:639
#: build/spec.c:642
#, c-format
msgid "can't query %s: %s\n"
msgstr "kan ikke spørre på %s: %s\n"
#: build/spec.c:714
#: build/spec.c:718
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr ""
@ -3107,25 +3107,30 @@ msgstr ""
msgid "verified db index %s/%s\n"
msgstr ""
#: rpmdb/db3.c:1069
#: rpmdb/db3.c:968
#, c-format
msgid "\tunshared posix mutexes found(%d), adding DB_PRIVATE\n"
msgstr ""
#: rpmdb/db3.c:1071
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
#: rpmdb/db3.c:1306
#: rpmdb/db3.c:1308
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "exclusive"
msgstr ""
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "shared"
msgstr ""
#: rpmdb/db3.c:1312
#: rpmdb/db3.c:1314
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""

View File

@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-12-23 15:42-0500\n"
"POT-Creation-Date: 2002-12-24 02:13-0500\n"
"PO-Revision-Date: 1999-05-25 17:00+0100\n"
"Last-Translator: Pawe³ Dziekoñski <pdziekonski@mml.ch.pwr.wroc.pl>\n"
"Language-Team: Polish <pl@li.org>\n"
@ -531,64 +531,64 @@ msgstr "Plik podany dwukrotnie: %s"
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr ""
#: build/files.c:1523
#: build/files.c:1527
#, fuzzy, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr "Plik nie zgadza siê z prefiksem (%s): %s"
#: build/files.c:1547
#: build/files.c:1551
#, fuzzy, c-format
msgid "File not found: %s\n"
msgstr "Nie znaleziono pliku: %s"
#: build/files.c:1747
#: build/files.c:1751
#, fuzzy, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "Plik musi siê zaczynaæ od \"/\": %s"
#: build/files.c:1771
#: build/files.c:1775
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "linia %d: Wersja niedozwolona: %s"
#: build/files.c:1788 lib/rpminstall.c:343
#: build/files.c:1792 lib/rpminstall.c:343
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "Nie znaleziono pliku: %s"
#: build/files.c:1848
#: build/files.c:1852
#, fuzzy, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "Nie mo¿na otworzyæ %%files pliku: %s"
#: build/files.c:1859 build/pack.c:156
#: build/files.c:1863 build/pack.c:156
#, fuzzy, c-format
msgid "line: %s\n"
msgstr "linia: %s"
#: build/files.c:2246
#: build/files.c:2250
#, fuzzy, c-format
msgid "Bad file: %s: %s\n"
msgstr "plik %s: %s\n"
#: build/files.c:2258 build/parsePrep.c:50
#: build/files.c:2262 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "B³êdny u¿ytkownik/grupa: %s\n"
#: build/files.c:2302
#: build/files.c:2306
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "poszukiwanie pakietu %s\n"
#: build/files.c:2323
#: build/files.c:2327
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
#: build/files.c:2351
#: build/files.c:2355
#, fuzzy, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Przetwarzanie plików: %s\n"
@ -727,52 +727,52 @@ msgstr "Generowanie sygnatury: %d\n"
msgid "Unable to reload signature header.\n"
msgstr "Nie mo¿na odczytaæ ikony: %s"
#: build/pack.c:599
#: build/pack.c:596
#, fuzzy, c-format
msgid "Could not open %s: %s\n"
msgstr "Nie mo¿na otworzyæ %s\n"
#: build/pack.c:635 lib/psm.c:1841
#: build/pack.c:632 lib/psm.c:1841
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "Nie mo¿na zapisaæ pakietu: %s"
#: build/pack.c:650
#: build/pack.c:647
#, fuzzy, c-format
msgid "Unable to open sigtarget %s: %s\n"
msgstr "Nie mo¿na odczytaæ sigtarget: %s"
#: build/pack.c:661
#: build/pack.c:658
#, fuzzy, c-format
msgid "Unable to read header from %s: %s\n"
msgstr "Nie mo¿na odczytaæ ikony: %s"
#: build/pack.c:675
#: build/pack.c:672
#, fuzzy, c-format
msgid "Unable to write header to %s: %s\n"
msgstr "Nie mo¿na zapisaæ pakietu: %s"
#: build/pack.c:685
#: build/pack.c:682
#, fuzzy, c-format
msgid "Unable to read payload from %s: %s\n"
msgstr "Nie mo¿na odczytaæ ikony: %s"
#: build/pack.c:691
#: build/pack.c:688
#, fuzzy, c-format
msgid "Unable to write payload to %s: %s\n"
msgstr "Nie mo¿na zapisaæ pakietu: %s"
#: build/pack.c:716 lib/psm.c:2146
#: build/pack.c:725 lib/psm.c:2146
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapisano: %s\n"
#: build/pack.c:789
#: build/pack.c:798
#, 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:806
#: build/pack.c:815
#, fuzzy, c-format
msgid "cannot create %s: %s\n"
msgstr "nie mo¿na utworzyæ %s"
@ -913,7 +913,7 @@ msgstr "linia %d: Pusta etykieta: %s"
msgid "line %d: Illegal char '-' in %s: %s\n"
msgstr "linia %d: Nielegalny znak '-' w %s: %s"
#: build/parsePreamble.c:588 build/parseSpec.c:426
#: build/parsePreamble.c:588 build/parseSpec.c:427
#, fuzzy, c-format
msgid "BuildRoot can not be \"/\": %s\n"
msgstr "linia %d: wpis BuildRoot nie mo¿e byæ \"/\": %s"
@ -1080,48 +1080,48 @@ msgstr "linia %d: skrypt (tu jako program) musi si
msgid "line %d: Second %s\n"
msgstr "linia %d: Drugi %s"
#: build/parseSpec.c:160
#: build/parseSpec.c:161
#, fuzzy, c-format
msgid "line %d: %s\n"
msgstr "linia %d: %s"
#. XXX Fstrerror
#: build/parseSpec.c:212
#: build/parseSpec.c:213
#, fuzzy, c-format
msgid "Unable to open %s: %s\n"
msgstr "Nie mo¿na otworzyæ: %s\n"
#: build/parseSpec.c:228
#: build/parseSpec.c:229
#, fuzzy, c-format
msgid "Unclosed %%if\n"
msgstr "Niedomkniête %%if"
#: build/parseSpec.c:300
#: build/parseSpec.c:301
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr ""
#: build/parseSpec.c:309
#: build/parseSpec.c:310
#, fuzzy, c-format
msgid "%s:%d: Got a %%else with no %%if\n"
msgstr "%s:%d: Napotkano %%else bez if"
#: build/parseSpec.c:321
#: build/parseSpec.c:322
#, fuzzy, c-format
msgid "%s:%d: Got a %%endif with no %%if\n"
msgstr "%s:%d: Napotkano %%endif bez if"
#: build/parseSpec.c:335 build/parseSpec.c:344
#: build/parseSpec.c:336 build/parseSpec.c:345
#, fuzzy, c-format
msgid "malformed %%include statement\n"
msgstr "b³ednie sformatowany wpis %%include"
#: build/parseSpec.c:544
#: build/parseSpec.c:546
#, fuzzy
msgid "No compatible architectures found for build\n"
msgstr "Nie mo¿na budowaæ na takie architektury"
#: build/parseSpec.c:602
#: build/parseSpec.c:607
#, fuzzy, c-format
msgid "Package has no %%description: %s\n"
msgstr "Pakiet nie ma %%description: %s"
@ -1306,27 +1306,27 @@ msgstr "wymu
msgid "lookup i18N strings in specfile catalog"
msgstr "wyszukaj wpisy I18N w katalogu speca"
#: build/spec.c:234
#: build/spec.c:237
#, fuzzy, c-format
msgid "line %d: Bad number: %s\n"
msgstr "linia %d: B³êdny numer: %s"
#: build/spec.c:240
#: build/spec.c:243
#, fuzzy, c-format
msgid "line %d: Bad no%s number: %d\n"
msgstr "linia %d: b³êdny numer no%s: %d"
#: build/spec.c:303
#: build/spec.c:306
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "linia %d: B³êdny numer %s: %s\n"
#: build/spec.c:639
#: build/spec.c:642
#, fuzzy, c-format
msgid "can't query %s: %s\n"
msgstr "nie mo¿na odwi±zaæ %s: %s\n"
#: build/spec.c:714
#: build/spec.c:718
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr "odpytywanie pliku spec %s nie powiod³o siê, nie mo¿na interpretowaæ\n"
@ -3198,25 +3198,30 @@ msgstr "usuwanie indeksu plik
msgid "verified db index %s/%s\n"
msgstr "usuwanie indeksu plików dla %s\n"
#: rpmdb/db3.c:1069
#: rpmdb/db3.c:968
#, c-format
msgid "\tunshared posix mutexes found(%d), adding DB_PRIVATE\n"
msgstr ""
#: rpmdb/db3.c:1071
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "otwiernie bazê danych w trybie 0x%x w %s\n"
#: rpmdb/db3.c:1306
#: rpmdb/db3.c:1308
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "utworzenie blokady %s na bazie danych nie jest mo¿liwe"
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "exclusive"
msgstr ""
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "shared"
msgstr ""
#: rpmdb/db3.c:1312
#: rpmdb/db3.c:1314
#, fuzzy, c-format
msgid "locked db index %s/%s\n"
msgstr "usuwanie indeksu plików dla %s\n"

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm\n"
"POT-Creation-Date: 2002-12-23 15:42-0500\n"
"POT-Creation-Date: 2002-12-24 02:13-0500\n"
"PO-Revision-Date: 2002-02-14 10:51+0000\n"
"Last-Translator: José Nuno Coelho Sanarra Pires <jncp@rnl.ist.utl.pt>\n"
"Language-Team: pt <morais@kde.org\n"
@ -517,64 +517,64 @@ msgstr "Ficheiro listado duas vezes: %s\n"
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr "A 'symlink' aponta para a BuildRoot: %s -> %s\n"
#: build/files.c:1523
#: build/files.c:1527
#, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr "O ficheiro não corresponde ao prefixo (%s): %s\n"
#: build/files.c:1547
#: build/files.c:1551
#, c-format
msgid "File not found: %s\n"
msgstr "Ficheiro não encontrado: %s\n"
#: build/files.c:1747
#: build/files.c:1751
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "O ficheiro precisa de começar por \"/\": %s\n"
#: build/files.c:1771
#: build/files.c:1775
#, c-format
msgid "Glob not permitted: %s\n"
msgstr "Glob não permitido: %s\n"
#: build/files.c:1788 lib/rpminstall.c:343
#: build/files.c:1792 lib/rpminstall.c:343
#, c-format
msgid "File not found by glob: %s\n"
msgstr "Ficheiro não encontrado pelo glob: %s\n"
#: build/files.c:1848
#: build/files.c:1852
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "Não consegui abrir o ficheiro do %%files %s: %s\n"
#: build/files.c:1859 build/pack.c:156
#: build/files.c:1863 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr "linha: %s\n"
#: build/files.c:2246
#: build/files.c:2250
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "Ficheiro inválido: %s: %s\n"
#: build/files.c:2258 build/parsePrep.c:50
#: build/files.c:2262 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Dono/grupo inválido: %s\n"
#: build/files.c:2302
#: build/files.c:2306
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "a abertura do pacote falhou%s%s: %s\n"
#: build/files.c:2323
#: build/files.c:2327
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
#: build/files.c:2351
#: build/files.c:2355
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "A processar os ficheiros: %s-%s-%s\n"
@ -710,52 +710,52 @@ msgstr "A gerar a assinatura: %d\n"
msgid "Unable to reload signature header.\n"
msgstr "Não consegui reler o cabeçalho do assinatura.\n"
#: build/pack.c:599
#: build/pack.c:596
#, c-format
msgid "Could not open %s: %s\n"
msgstr "Não consigo aceder ao %s: %s\n"
#: build/pack.c:635 lib/psm.c:1841
#: build/pack.c:632 lib/psm.c:1841
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Não consegui gravar o pacote: %s\n"
#: build/pack.c:650
#: build/pack.c:647
#, c-format
msgid "Unable to open sigtarget %s: %s\n"
msgstr "Não consegui abrir o sigtarget %s: %s\n"
#: build/pack.c:661
#: build/pack.c:658
#, c-format
msgid "Unable to read header from %s: %s\n"
msgstr "Não consegui ler o cabeçalho de %s: %s\n"
#: build/pack.c:675
#: build/pack.c:672
#, c-format
msgid "Unable to write header to %s: %s\n"
msgstr "Não consegui gravar o cabeçalho de %s: %s\n"
#: build/pack.c:685
#: build/pack.c:682
#, c-format
msgid "Unable to read payload from %s: %s\n"
msgstr "Não consegui ler o conteúdo de %s: %s\n"
#: build/pack.c:691
#: build/pack.c:688
#, c-format
msgid "Unable to write payload to %s: %s\n"
msgstr "Não consegui escrever o conteúdo de %s: %s\n"
#: build/pack.c:716 lib/psm.c:2146
#: build/pack.c:725 lib/psm.c:2146
#, c-format
msgid "Wrote: %s\n"
msgstr "Gravei: %s\n"
#: build/pack.c:789
#: build/pack.c:798
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr "Não consigo gerar o ficheiro de saída para o pacote %s: %s\n"
#: build/pack.c:806
#: build/pack.c:815
#, c-format
msgid "cannot create %s: %s\n"
msgstr "não consigo criar o %s: %s\n"
@ -896,7 +896,7 @@ msgstr "linha %d: Op
msgid "line %d: Illegal char '-' in %s: %s\n"
msgstr "linha %d: Carácter '-' ilegal no %s: %s\n"
#: build/parsePreamble.c:588 build/parseSpec.c:426
#: build/parsePreamble.c:588 build/parseSpec.c:427
#, c-format
msgid "BuildRoot can not be \"/\": %s\n"
msgstr "O BuildRoot não pode ser o \"/\": %s\n"
@ -1062,47 +1062,47 @@ msgstr "linha %d: o programa de 'script' tem de come
msgid "line %d: Second %s\n"
msgstr "linha %d: Segundo %s\n"
#: build/parseSpec.c:160
#: build/parseSpec.c:161
#, c-format
msgid "line %d: %s\n"
msgstr "linha %d: %s\n"
#. XXX Fstrerror
#: build/parseSpec.c:212
#: build/parseSpec.c:213
#, c-format
msgid "Unable to open %s: %s\n"
msgstr "Incapaz de aceder ao %s: %s\n"
#: build/parseSpec.c:228
#: build/parseSpec.c:229
#, c-format
msgid "Unclosed %%if\n"
msgstr "%%if não fechado\n"
#: build/parseSpec.c:300
#: build/parseSpec.c:301
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr "%s:%d: o parseExpressionBoolean devolve %d\n"
#: build/parseSpec.c:309
#: build/parseSpec.c:310
#, c-format
msgid "%s:%d: Got a %%else with no %%if\n"
msgstr "%s:%d: Descobri um %%else sem um %%if\n"
#: build/parseSpec.c:321
#: build/parseSpec.c:322
#, c-format
msgid "%s:%d: Got a %%endif with no %%if\n"
msgstr "%s:%d: Descobri um %%endif sem um %%if\n"
#: build/parseSpec.c:335 build/parseSpec.c:344
#: build/parseSpec.c:336 build/parseSpec.c:345
#, c-format
msgid "malformed %%include statement\n"
msgstr "instrução %%include desorganizada\n"
#: build/parseSpec.c:544
#: build/parseSpec.c:546
msgid "No compatible architectures found for build\n"
msgstr "Não foram encontradas arquitecturas compatíveis para as quais criar\n"
#: build/parseSpec.c:602
#: build/parseSpec.c:607
#, c-format
msgid "Package has no %%description: %s\n"
msgstr "O pacote não tem uma %%description: %s\n"
@ -1280,27 +1280,27 @@ msgstr "ignorar a plataforma-alvo"
msgid "lookup i18N strings in specfile catalog"
msgstr "procurar as mensagens de i18N no catálogo do ficheiro spec"
#: build/spec.c:234
#: build/spec.c:237
#, c-format
msgid "line %d: Bad number: %s\n"
msgstr "linha %d: Número inválido: %s\n"
#: build/spec.c:240
#: build/spec.c:243
#, c-format
msgid "line %d: Bad no%s number: %d\n"
msgstr "linha %d: Número no%s inválido: %d\n"
#: build/spec.c:303
#: build/spec.c:306
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "linha %d: Número %s inválido: %s\n"
#: build/spec.c:639
#: build/spec.c:642
#, c-format
msgid "can't query %s: %s\n"
msgstr "não consigo pesquisar o %s: %s\n"
#: build/spec.c:714
#: build/spec.c:718
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr "a pesquisa do ficheiro spec %s falhou, não consigo analisar\n"
@ -3140,25 +3140,30 @@ msgstr "fechei o
msgid "verified db index %s/%s\n"
msgstr "verifiquei o índice do db %s/%s\n"
#: rpmdb/db3.c:1069
#: rpmdb/db3.c:968
#, c-format
msgid "\tunshared posix mutexes found(%d), adding DB_PRIVATE\n"
msgstr ""
#: rpmdb/db3.c:1071
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "a abrir o índice do db %s/%s %s modo=0x%x\n"
#: rpmdb/db3.c:1306
#: rpmdb/db3.c:1308
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "não consigo trancar o %s no %s/%s\n"
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "exclusive"
msgstr "exclusivo"
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "shared"
msgstr "partilhado"
#: rpmdb/db3.c:1312
#: rpmdb/db3.c:1314
#, c-format
msgid "locked db index %s/%s\n"
msgstr "tranquei o índice do db %s/%s\n"

View File

@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-12-23 15:42-0500\n"
"POT-Creation-Date: 2002-12-24 02:13-0500\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8-bit\n"
@ -565,68 +565,68 @@ msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr ""
# , c-format
#: build/files.c:1523
#: build/files.c:1527
#, fuzzy, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr "No consegui ler o arquivo spec de %s\n"
#: build/files.c:1547
#: build/files.c:1551
#, fuzzy, c-format
msgid "File not found: %s\n"
msgstr "no foi passado pacote para desinstalao"
#: build/files.c:1747
#: build/files.c:1751
#, fuzzy, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "argumentos para o --dbpath devem comear com uma /"
# , c-format
#: build/files.c:1771
#: build/files.c:1775
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "No consegui abrir: %s\n"
#: build/files.c:1788 lib/rpminstall.c:343
#: build/files.c:1792 lib/rpminstall.c:343
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "no foi passado pacote para desinstalao"
# , c-format
#: build/files.c:1848
#: build/files.c:1852
#, fuzzy, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
#: build/files.c:1859 build/pack.c:156
#: build/files.c:1863 build/pack.c:156
#, fuzzy, c-format
msgid "line: %s\n"
msgstr "No consegui ler o arquivo spec de %s\n"
# , c-format
#: build/files.c:2246
#: build/files.c:2250
#, fuzzy, c-format
msgid "Bad file: %s: %s\n"
msgstr "No consegui ler o arquivo spec de %s\n"
#: build/files.c:2258 build/parsePrep.c:50
#: build/files.c:2262 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
#: build/files.c:2302
#: build/files.c:2306
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "instale pacote"
#: build/files.c:2323
#: build/files.c:2327
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
#: build/files.c:2351
#: build/files.c:2355
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@ -782,59 +782,59 @@ msgid "Unable to reload signature header.\n"
msgstr "No consegui abrir: %s\n"
# , c-format
#: build/pack.c:599
#: build/pack.c:596
#, fuzzy, c-format
msgid "Could not open %s: %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
#: build/pack.c:635 lib/psm.c:1841
#: build/pack.c:632 lib/psm.c:1841
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
#: build/pack.c:650
#: build/pack.c:647
#, fuzzy, c-format
msgid "Unable to open sigtarget %s: %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
#: build/pack.c:661
#: build/pack.c:658
#, fuzzy, c-format
msgid "Unable to read header from %s: %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
#: build/pack.c:675
#: build/pack.c:672
#, fuzzy, c-format
msgid "Unable to write header to %s: %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
#: build/pack.c:685
#: build/pack.c:682
#, fuzzy, c-format
msgid "Unable to read payload from %s: %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
#: build/pack.c:691
#: build/pack.c:688
#, fuzzy, c-format
msgid "Unable to write payload to %s: %s\n"
msgstr "No consegui abrir: %s\n"
#: build/pack.c:716 lib/psm.c:2146
#: build/pack.c:725 lib/psm.c:2146
#, c-format
msgid "Wrote: %s\n"
msgstr ""
#: build/pack.c:789
#: build/pack.c:798
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
# , c-format
#: build/pack.c:806
#: build/pack.c:815
#, fuzzy, c-format
msgid "cannot create %s: %s\n"
msgstr "No consegui abrir: %s\n"
@ -998,7 +998,7 @@ msgstr "No consegui abrir: %s\n"
msgid "line %d: Illegal char '-' in %s: %s\n"
msgstr "No consegui abrir: %s\n"
#: build/parsePreamble.c:588 build/parseSpec.c:426
#: build/parsePreamble.c:588 build/parseSpec.c:427
#, c-format
msgid "BuildRoot can not be \"/\": %s\n"
msgstr ""
@ -1180,50 +1180,50 @@ msgid "line %d: Second %s\n"
msgstr "No consegui ler o arquivo spec de %s\n"
# , c-format
#: build/parseSpec.c:160
#: build/parseSpec.c:161
#, fuzzy, c-format
msgid "line %d: %s\n"
msgstr "No consegui ler o arquivo spec de %s\n"
# , c-format
#. XXX Fstrerror
#: build/parseSpec.c:212
#: build/parseSpec.c:213
#, fuzzy, c-format
msgid "Unable to open %s: %s\n"
msgstr "No consegui abrir: %s\n"
#: build/parseSpec.c:228
#: build/parseSpec.c:229
#, c-format
msgid "Unclosed %%if\n"
msgstr ""
#: build/parseSpec.c:300
#: build/parseSpec.c:301
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr ""
#: build/parseSpec.c:309
#: build/parseSpec.c:310
#, c-format
msgid "%s:%d: Got a %%else with no %%if\n"
msgstr ""
#: build/parseSpec.c:321
#: build/parseSpec.c:322
#, c-format
msgid "%s:%d: Got a %%endif with no %%if\n"
msgstr ""
#: build/parseSpec.c:335 build/parseSpec.c:344
#: build/parseSpec.c:336 build/parseSpec.c:345
#, c-format
msgid "malformed %%include statement\n"
msgstr ""
# , c-format
#: build/parseSpec.c:544
#: build/parseSpec.c:546
#, fuzzy
msgid "No compatible architectures found for build\n"
msgstr "%s no pode ser construido nesta arquitetura\n"
#: build/parseSpec.c:602
#: build/parseSpec.c:607
#, fuzzy, c-format
msgid "Package has no %%description: %s\n"
msgstr "no foi passado pacote para desinstalao"
@ -1414,29 +1414,29 @@ msgid "lookup i18N strings in specfile catalog"
msgstr ""
# , c-format
#: build/spec.c:234
#: build/spec.c:237
#, fuzzy, c-format
msgid "line %d: Bad number: %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
#: build/spec.c:240
#: build/spec.c:243
#, fuzzy, c-format
msgid "line %d: Bad no%s number: %d\n"
msgstr "No consegui abrir: %s\n"
#: build/spec.c:303
#: build/spec.c:306
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
# , c-format
#: build/spec.c:639
#: build/spec.c:642
#, fuzzy, c-format
msgid "can't query %s: %s\n"
msgstr "No consegui abrir: %s\n"
#: build/spec.c:714
#: build/spec.c:718
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr ""
@ -3396,25 +3396,30 @@ msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
msgid "verified db index %s/%s\n"
msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
#: rpmdb/db3.c:1069
#: rpmdb/db3.c:968
#, c-format
msgid "\tunshared posix mutexes found(%d), adding DB_PRIVATE\n"
msgstr ""
#: rpmdb/db3.c:1071
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
#: rpmdb/db3.c:1306
#: rpmdb/db3.c:1308
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "no foi passado pacote para desinstalao"
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "exclusive"
msgstr ""
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "shared"
msgstr ""
#: rpmdb/db3.c:1312
#: rpmdb/db3.c:1314
#, fuzzy, c-format
msgid "locked db index %s/%s\n"
msgstr "reconstrua o banco de dados a partir de um banco de dados existente"

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-12-23 15:42-0500\n"
"POT-Creation-Date: 2002-12-24 02:13-0500\n"
"PO-Revision-Date: 1999-04-10 12:00+EST\n"
"Last-Translator: Cristian Gafton <gafton@redhat.com>\n"
"Language-Team: Romanian <ro@li.org>\n"
@ -495,64 +495,64 @@ msgstr ""
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr ""
#: build/files.c:1523
#: build/files.c:1527
#, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr ""
#: build/files.c:1547
#: build/files.c:1551
#, c-format
msgid "File not found: %s\n"
msgstr ""
#: build/files.c:1747
#: build/files.c:1751
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr ""
#: build/files.c:1771
#: build/files.c:1775
#, c-format
msgid "Glob not permitted: %s\n"
msgstr ""
#: build/files.c:1788 lib/rpminstall.c:343
#: build/files.c:1792 lib/rpminstall.c:343
#, c-format
msgid "File not found by glob: %s\n"
msgstr ""
#: build/files.c:1848
#: build/files.c:1852
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr ""
#: build/files.c:1859 build/pack.c:156
#: build/files.c:1863 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr ""
#: build/files.c:2246
#: build/files.c:2250
#, c-format
msgid "Bad file: %s: %s\n"
msgstr ""
#: build/files.c:2258 build/parsePrep.c:50
#: build/files.c:2262 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
#: build/files.c:2302
#: build/files.c:2306
#, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr ""
#: build/files.c:2323
#: build/files.c:2327
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
#: build/files.c:2351
#: build/files.c:2355
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@ -686,52 +686,52 @@ msgstr ""
msgid "Unable to reload signature header.\n"
msgstr ""
#: build/pack.c:599
#: build/pack.c:596
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
#: build/pack.c:635 lib/psm.c:1841
#: build/pack.c:632 lib/psm.c:1841
#, c-format
msgid "Unable to write package: %s\n"
msgstr ""
#: build/pack.c:650
#: build/pack.c:647
#, c-format
msgid "Unable to open sigtarget %s: %s\n"
msgstr ""
#: build/pack.c:661
#: build/pack.c:658
#, c-format
msgid "Unable to read header from %s: %s\n"
msgstr ""
#: build/pack.c:675
#: build/pack.c:672
#, c-format
msgid "Unable to write header to %s: %s\n"
msgstr ""
#: build/pack.c:685
#: build/pack.c:682
#, c-format
msgid "Unable to read payload from %s: %s\n"
msgstr ""
#: build/pack.c:691
#: build/pack.c:688
#, c-format
msgid "Unable to write payload to %s: %s\n"
msgstr ""
#: build/pack.c:716 lib/psm.c:2146
#: build/pack.c:725 lib/psm.c:2146
#, c-format
msgid "Wrote: %s\n"
msgstr ""
#: build/pack.c:789
#: build/pack.c:798
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
#: build/pack.c:806
#: build/pack.c:815
#, c-format
msgid "cannot create %s: %s\n"
msgstr ""
@ -872,7 +872,7 @@ msgstr ""
msgid "line %d: Illegal char '-' in %s: %s\n"
msgstr ""
#: build/parsePreamble.c:588 build/parseSpec.c:426
#: build/parsePreamble.c:588 build/parseSpec.c:427
#, c-format
msgid "BuildRoot can not be \"/\": %s\n"
msgstr ""
@ -1036,47 +1036,47 @@ msgstr ""
msgid "line %d: Second %s\n"
msgstr ""
#: build/parseSpec.c:160
#: build/parseSpec.c:161
#, c-format
msgid "line %d: %s\n"
msgstr ""
#. XXX Fstrerror
#: build/parseSpec.c:212
#: build/parseSpec.c:213
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
#: build/parseSpec.c:228
#: build/parseSpec.c:229
#, c-format
msgid "Unclosed %%if\n"
msgstr ""
#: build/parseSpec.c:300
#: build/parseSpec.c:301
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr ""
#: build/parseSpec.c:309
#: build/parseSpec.c:310
#, c-format
msgid "%s:%d: Got a %%else with no %%if\n"
msgstr ""
#: build/parseSpec.c:321
#: build/parseSpec.c:322
#, c-format
msgid "%s:%d: Got a %%endif with no %%if\n"
msgstr ""
#: build/parseSpec.c:335 build/parseSpec.c:344
#: build/parseSpec.c:336 build/parseSpec.c:345
#, c-format
msgid "malformed %%include statement\n"
msgstr ""
#: build/parseSpec.c:544
#: build/parseSpec.c:546
msgid "No compatible architectures found for build\n"
msgstr ""
#: build/parseSpec.c:602
#: build/parseSpec.c:607
#, c-format
msgid "Package has no %%description: %s\n"
msgstr ""
@ -1244,27 +1244,27 @@ msgstr ""
msgid "lookup i18N strings in specfile catalog"
msgstr ""
#: build/spec.c:234
#: build/spec.c:237
#, c-format
msgid "line %d: Bad number: %s\n"
msgstr ""
#: build/spec.c:240
#: build/spec.c:243
#, c-format
msgid "line %d: Bad no%s number: %d\n"
msgstr ""
#: build/spec.c:303
#: build/spec.c:306
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
#: build/spec.c:639
#: build/spec.c:642
#, c-format
msgid "can't query %s: %s\n"
msgstr ""
#: build/spec.c:714
#: build/spec.c:718
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr ""
@ -3045,25 +3045,30 @@ msgstr ""
msgid "verified db index %s/%s\n"
msgstr ""
#: rpmdb/db3.c:1069
#: rpmdb/db3.c:968
#, c-format
msgid "\tunshared posix mutexes found(%d), adding DB_PRIVATE\n"
msgstr ""
#: rpmdb/db3.c:1071
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
#: rpmdb/db3.c:1306
#: rpmdb/db3.c:1308
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "exclusive"
msgstr ""
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "shared"
msgstr ""
#: rpmdb/db3.c:1312
#: rpmdb/db3.c:1314
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""

View File

@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2002-12-23 15:42-0500\n"
"POT-Creation-Date: 2002-12-24 02:13-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -501,64 +501,64 @@ msgstr ""
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr ""
#: build/files.c:1523
#: build/files.c:1527
#, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr ""
#: build/files.c:1547
#: build/files.c:1551
#, c-format
msgid "File not found: %s\n"
msgstr ""
#: build/files.c:1747
#: build/files.c:1751
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr ""
#: build/files.c:1771
#: build/files.c:1775
#, c-format
msgid "Glob not permitted: %s\n"
msgstr ""
#: build/files.c:1788 lib/rpminstall.c:343
#: build/files.c:1792 lib/rpminstall.c:343
#, c-format
msgid "File not found by glob: %s\n"
msgstr ""
#: build/files.c:1848
#: build/files.c:1852
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr ""
#: build/files.c:1859 build/pack.c:156
#: build/files.c:1863 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr ""
#: build/files.c:2246
#: build/files.c:2250
#, c-format
msgid "Bad file: %s: %s\n"
msgstr ""
#: build/files.c:2258 build/parsePrep.c:50
#: build/files.c:2262 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
#: build/files.c:2302
#: build/files.c:2306
#, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr ""
#: build/files.c:2323
#: build/files.c:2327
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
#: build/files.c:2351
#: build/files.c:2355
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@ -692,52 +692,52 @@ msgstr ""
msgid "Unable to reload signature header.\n"
msgstr ""
#: build/pack.c:599
#: build/pack.c:596
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
#: build/pack.c:635 lib/psm.c:1841
#: build/pack.c:632 lib/psm.c:1841
#, c-format
msgid "Unable to write package: %s\n"
msgstr ""
#: build/pack.c:650
#: build/pack.c:647
#, c-format
msgid "Unable to open sigtarget %s: %s\n"
msgstr ""
#: build/pack.c:661
#: build/pack.c:658
#, c-format
msgid "Unable to read header from %s: %s\n"
msgstr ""
#: build/pack.c:675
#: build/pack.c:672
#, c-format
msgid "Unable to write header to %s: %s\n"
msgstr ""
#: build/pack.c:685
#: build/pack.c:682
#, c-format
msgid "Unable to read payload from %s: %s\n"
msgstr ""
#: build/pack.c:691
#: build/pack.c:688
#, c-format
msgid "Unable to write payload to %s: %s\n"
msgstr ""
#: build/pack.c:716 lib/psm.c:2146
#: build/pack.c:725 lib/psm.c:2146
#, c-format
msgid "Wrote: %s\n"
msgstr ""
#: build/pack.c:789
#: build/pack.c:798
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
#: build/pack.c:806
#: build/pack.c:815
#, c-format
msgid "cannot create %s: %s\n"
msgstr ""
@ -878,7 +878,7 @@ msgstr ""
msgid "line %d: Illegal char '-' in %s: %s\n"
msgstr ""
#: build/parsePreamble.c:588 build/parseSpec.c:426
#: build/parsePreamble.c:588 build/parseSpec.c:427
#, c-format
msgid "BuildRoot can not be \"/\": %s\n"
msgstr ""
@ -1042,47 +1042,47 @@ msgstr ""
msgid "line %d: Second %s\n"
msgstr ""
#: build/parseSpec.c:160
#: build/parseSpec.c:161
#, c-format
msgid "line %d: %s\n"
msgstr ""
#. XXX Fstrerror
#: build/parseSpec.c:212
#: build/parseSpec.c:213
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
#: build/parseSpec.c:228
#: build/parseSpec.c:229
#, c-format
msgid "Unclosed %%if\n"
msgstr ""
#: build/parseSpec.c:300
#: build/parseSpec.c:301
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr ""
#: build/parseSpec.c:309
#: build/parseSpec.c:310
#, c-format
msgid "%s:%d: Got a %%else with no %%if\n"
msgstr ""
#: build/parseSpec.c:321
#: build/parseSpec.c:322
#, c-format
msgid "%s:%d: Got a %%endif with no %%if\n"
msgstr ""
#: build/parseSpec.c:335 build/parseSpec.c:344
#: build/parseSpec.c:336 build/parseSpec.c:345
#, c-format
msgid "malformed %%include statement\n"
msgstr ""
#: build/parseSpec.c:544
#: build/parseSpec.c:546
msgid "No compatible architectures found for build\n"
msgstr ""
#: build/parseSpec.c:602
#: build/parseSpec.c:607
#, c-format
msgid "Package has no %%description: %s\n"
msgstr ""
@ -1250,27 +1250,27 @@ msgstr ""
msgid "lookup i18N strings in specfile catalog"
msgstr ""
#: build/spec.c:234
#: build/spec.c:237
#, c-format
msgid "line %d: Bad number: %s\n"
msgstr ""
#: build/spec.c:240
#: build/spec.c:243
#, c-format
msgid "line %d: Bad no%s number: %d\n"
msgstr ""
#: build/spec.c:303
#: build/spec.c:306
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
#: build/spec.c:639
#: build/spec.c:642
#, c-format
msgid "can't query %s: %s\n"
msgstr ""
#: build/spec.c:714
#: build/spec.c:718
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr ""
@ -3051,25 +3051,30 @@ msgstr ""
msgid "verified db index %s/%s\n"
msgstr ""
#: rpmdb/db3.c:1069
#: rpmdb/db3.c:968
#, c-format
msgid "\tunshared posix mutexes found(%d), adding DB_PRIVATE\n"
msgstr ""
#: rpmdb/db3.c:1071
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
#: rpmdb/db3.c:1306
#: rpmdb/db3.c:1308
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "exclusive"
msgstr ""
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "shared"
msgstr ""
#: rpmdb/db3.c:1312
#: rpmdb/db3.c:1314
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-12-23 15:42-0500\n"
"POT-Creation-Date: 2002-12-24 02:13-0500\n"
"PO-Revision-Date: 2002-08-27 13:36-0400\n"
"Last-Translator: Eugene Kanter, <eugene@blackcatlinux.com>\n"
"Language-Team: Black Cat Linux Team <blackcat-support@blackcatlinux.com>\n"
@ -516,57 +516,57 @@ msgstr "
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr "óÉÍ×ÏÌÉÞÅÓËÁÑ ÓÓÙÌËÁ ÕËÁÚÙ×ÁÅÔ ÎÁ BuildRoot: %s -> %s\n"
#: build/files.c:1523
#: build/files.c:1527
#, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr "æÁÊÌ ÎÅ ÓÏÏÔ×ÅÔÓÔÕÅÔ ÐÒÅÆÉËÓÕ (%s): %s\n"
#: build/files.c:1547
#: build/files.c:1551
#, c-format
msgid "File not found: %s\n"
msgstr "æÁÊÌ ÎÅ ÎÁÊÄÅÎ: %s\n"
#: build/files.c:1747
#: build/files.c:1751
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "æÁÊÌ ÄÏÌÖÅÎ ÎÁÞÉÎÁÔØÓÑ Ó \"/\": %s\n"
#: build/files.c:1771
#: build/files.c:1775
#, c-format
msgid "Glob not permitted: %s\n"
msgstr "Glob ÎÅ ÒÁÚÒÅÛÁÀÔÓÑ: %s\n"
#: build/files.c:1788 lib/rpminstall.c:343
#: build/files.c:1792 lib/rpminstall.c:343
#, c-format
msgid "File not found by glob: %s\n"
msgstr "æÁÊÌ ÎÅ ÎÁÊÄÅÎ: %s\n"
#: build/files.c:1848
#: build/files.c:1852
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ %%files %s: %s\n"
#: build/files.c:1859 build/pack.c:156
#: build/files.c:1863 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr "ÓÔÒÏËÁ: %s\n"
#: build/files.c:2246
#: build/files.c:2250
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "îÅ×ÅÒÎÙÊ ÆÁÊÌ %s: %s\n"
#: build/files.c:2258 build/parsePrep.c:50
#: build/files.c:2262 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "îÅ×ÅÒÎÁÑ ÐÁÒÁ ×ÌÁÄÅÌÅÃ/ÇÒÕÐÐÁ: %s\n"
#: build/files.c:2302
#: build/files.c:2306
#, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "ðÒÏ×ÅÒËÁ ÎÁ ÎÅÕÐÁËÏ×ÁÎÎÙÊ(Å) ÆÁÊÌ(Ù): %s\n"
#: build/files.c:2323
#: build/files.c:2327
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
@ -575,7 +575,7 @@ msgstr ""
"ïÂÎÁÒÕÖÅÎ(Ù) ÕÓÔÁÎÏ×ÌÅÎÎÙÊ(Å) (ÎÏ ÎÅ ÕÐÁËÏ×ÁÎÎÙÊ(Å)) ÆÁÊÌ(Ù):\n"
"%s"
#: build/files.c:2351
#: build/files.c:2355
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "ïÂÒÁÂÁÔÙ×ÁÀÔÓÑ ÆÁÊÌÙ: %s-%s-%s\n"
@ -709,52 +709,52 @@ msgstr "
msgid "Unable to reload signature header.\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÅÒÅÚÁÇÒÕÚÉÔØ ÚÁÇÏÌÏ×ÏË ÐÏÄÐÉÓÉ.\n"
#: build/pack.c:599
#: build/pack.c:596
#, c-format
msgid "Could not open %s: %s\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
#: build/pack.c:635 lib/psm.c:1841
#: build/pack.c:632 lib/psm.c:1841
#, c-format
msgid "Unable to write package: %s\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÐÁËÅÔ: %s\n"
#: build/pack.c:650
#: build/pack.c:647
#, c-format
msgid "Unable to open sigtarget %s: %s\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÃÅÌØ ÐÏÄÐÉÓÉ %s: %s\n"
#: build/pack.c:661
#: build/pack.c:658
#, c-format
msgid "Unable to read header from %s: %s\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ ÚÁÇÏÌÏ×ÏË ÉÚ %s: %s\n"
#: build/pack.c:675
#: build/pack.c:672
#, c-format
msgid "Unable to write header to %s: %s\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÚÁÇÏÌÏ×ÏË × %s: %s\n"
#: build/pack.c:685
#: build/pack.c:682
#, c-format
msgid "Unable to read payload from %s: %s\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ ÓÏÄÅÒÖÉÍÏÅ ÉÚ %s: %s\n"
#: build/pack.c:691
#: build/pack.c:688
#, c-format
msgid "Unable to write payload to %s: %s\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÓÏÄÅÒÖÉÍÏÅ × %s: %s\n"
#: build/pack.c:716 lib/psm.c:2146
#: build/pack.c:725 lib/psm.c:2146
#, c-format
msgid "Wrote: %s\n"
msgstr "úÁÐÉÓÁÎ: %s\n"
#: build/pack.c:789
#: build/pack.c:798
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ ÉÍÑ ÆÁÊÌÁ ÄÌÑ ÐÁËÅÔÁ %s: %s\n"
#: build/pack.c:806
#: build/pack.c:815
#, c-format
msgid "cannot create %s: %s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ %s: %s\n"
@ -895,7 +895,7 @@ msgstr "
msgid "line %d: Illegal char '-' in %s: %s\n"
msgstr "ÓÔÒÏËÁ %d: îÅÄÏÐÕÓÔÉÍÙÊ ÓÉÍ×ÏÌ '-' × %s: %s\n"
#: build/parsePreamble.c:588 build/parseSpec.c:426
#: build/parsePreamble.c:588 build/parseSpec.c:427
#, c-format
msgid "BuildRoot can not be \"/\": %s\n"
msgstr "BuildRoot ÎÅ ÍÏÖÅÔ ÂÙÔØ \"/\": %s\n"
@ -1061,47 +1061,47 @@ msgstr "
msgid "line %d: Second %s\n"
msgstr "ÓÔÒÏËÁ %d: ÷ÔÏÒÏÅ %s\n"
#: build/parseSpec.c:160
#: build/parseSpec.c:161
#, c-format
msgid "line %d: %s\n"
msgstr "ÓÔÒÏËÁ %d: %s\n"
#. XXX Fstrerror
#: build/parseSpec.c:212
#: build/parseSpec.c:213
#, c-format
msgid "Unable to open %s: %s\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
#: build/parseSpec.c:228
#: build/parseSpec.c:229
#, c-format
msgid "Unclosed %%if\n"
msgstr "îÅÚÁËÒÙÔÙÊ %%if\n"
#: build/parseSpec.c:300
#: build/parseSpec.c:301
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr "%s:%d: parseExpressionBoolean ËÏÄ ×ÏÚ×ÒÁÔÁ: %d\n"
#: build/parseSpec.c:309
#: build/parseSpec.c:310
#, c-format
msgid "%s:%d: Got a %%else with no %%if\n"
msgstr "%s:%d: îÁÊÄÅÎ %%else ÂÅÚ %%if\n"
#: build/parseSpec.c:321
#: build/parseSpec.c:322
#, c-format
msgid "%s:%d: Got a %%endif with no %%if\n"
msgstr "%s:%d: îÁÊÄÅÎ %%endif ÂÅÚ %%if\n"
#: build/parseSpec.c:335 build/parseSpec.c:344
#: build/parseSpec.c:336 build/parseSpec.c:345
#, c-format
msgid "malformed %%include statement\n"
msgstr "ÎÅ×ÅÒÎÏÅ ÏÂßÑ×ÌÅÎÉÅ %%include\n"
#: build/parseSpec.c:544
#: build/parseSpec.c:546
msgid "No compatible architectures found for build\n"
msgstr "îÅ ÎÁÊÄÅÎÙ ÓÏ×ÍÅÓÔÉÍÙÅ ÁÒÈÉÔÅËÔÕÒÙ ÄÌÑ ÓÂÏÒËÉ.\n"
#: build/parseSpec.c:602
#: build/parseSpec.c:607
#, c-format
msgid "Package has no %%description: %s\n"
msgstr "ðÁËÅÔ ÎÅ ÉÍÅÅÔ %%description: %s\n"
@ -1280,27 +1280,27 @@ msgstr "
msgid "lookup i18N strings in specfile catalog"
msgstr "ÉÓËÁÔØ ÓÔÒÏËÉ I18N × ËÁÔÁÌÏÇÅ ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ"
#: build/spec.c:234
#: build/spec.c:237
#, c-format
msgid "line %d: Bad number: %s\n"
msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÏÅ ÞÉÓÌÏ: %s\n"
#: build/spec.c:240
#: build/spec.c:243
#, c-format
msgid "line %d: Bad no%s number: %d\n"
msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÏÅ ÞÉÓÌÏ no%s: %d\n"
#: build/spec.c:303
#: build/spec.c:306
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÏÅ ÞÉÓÌÏ %s: %s\n"
#: build/spec.c:639
#: build/spec.c:642
#, c-format
msgid "can't query %s: %s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÚÁÐÒÏÓÉÔØ %s: %s\n"
#: build/spec.c:714
#: build/spec.c:718
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr "ÚÁÐÒÏÓ ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ %s ÎÅ ÕÄÁÌÓÑ, ÎÅ×ÏÚÍÏÖÎÏ ÒÁÚÏÂÒÁÔØ ÆÁÊÌ\n"
@ -3096,25 +3096,30 @@ msgstr "
msgid "verified db index %s/%s\n"
msgstr "ÐÒÏ×ÅÒÅÎ ÉÎÄÅËÓ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s\n"
#: rpmdb/db3.c:1069
#: rpmdb/db3.c:968
#, c-format
msgid "\tunshared posix mutexes found(%d), adding DB_PRIVATE\n"
msgstr ""
#: rpmdb/db3.c:1071
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "ÏÔËÒÙ×ÁÅÔÓÑ ÉÎÄÅËÓ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s %s mode=0x%x\n"
#: rpmdb/db3.c:1306
#: rpmdb/db3.c:1308
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÏÌÕÞÉÔØ ÂÌÏËÉÒÏ×ËÕ %s ÎÁ %s/%s\n"
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "exclusive"
msgstr "ÉÓËÌÀÞÉÔÅÌØÎÙÊ"
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "shared"
msgstr "ÒÁÚÄÅÌÑÅÍÙÊ"
#: rpmdb/db3.c:1312
#: rpmdb/db3.c:1314
#, c-format
msgid "locked db index %s/%s\n"
msgstr "ÚÁÂÌÏËÉÒÏ×ÁÎ ÉÎÄÅËÓ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s\n"

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-12-23 15:42-0500\n"
"POT-Creation-Date: 2002-12-24 02:13-0500\n"
"PO-Revision-Date: 1999-04-08 21:37+02:00\n"
"Last-Translator: Stanislav Meduna <stano@eunet.sk>\n"
"Language-Team: Slovak <sk-i18n@rak.isternet.sk>\n"
@ -528,64 +528,64 @@ msgstr "S
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr ""
#: build/files.c:1523
#: build/files.c:1527
#, fuzzy, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr "Súbor nesúhlasí s prefixom (%s): %s."
#: build/files.c:1547
#: build/files.c:1551
#, fuzzy, c-format
msgid "File not found: %s\n"
msgstr "Súbor nebol nájdený: %s"
#: build/files.c:1747
#: build/files.c:1751
#, fuzzy, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "Súbor potrebuje na zaèiatku \"/\": %s"
#: build/files.c:1771
#: build/files.c:1775
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "riadok %d: V %s sú vy¾adované verzie: %s"
#: build/files.c:1788 lib/rpminstall.c:343
#: build/files.c:1792 lib/rpminstall.c:343
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "Súbor nebol nájdený: %s"
#: build/files.c:1848
#: build/files.c:1852
#, fuzzy, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "chybe: nie je mo¾né otvori» %%files súbor: %s"
#: build/files.c:1859 build/pack.c:156
#: build/files.c:1863 build/pack.c:156
#, fuzzy, c-format
msgid "line: %s\n"
msgstr "riadok: %s"
#: build/files.c:2246
#: build/files.c:2250
#, fuzzy, c-format
msgid "Bad file: %s: %s\n"
msgstr "súbor %s: %s\n"
#: build/files.c:2258 build/parsePrep.c:50
#: build/files.c:2262 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Chybný vlastník/skupina: %s\n"
#: build/files.c:2302
#: build/files.c:2306
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "vyhµadáva sa balík %s\n"
#: build/files.c:2323
#: build/files.c:2327
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
#: build/files.c:2351
#: build/files.c:2355
#, fuzzy, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Spracovávajú sa súbory: %s\n"
@ -724,52 +724,52 @@ msgstr "Vytv
msgid "Unable to reload signature header.\n"
msgstr "Nie je mo¾né preèíta» ikonu: %s"
#: build/pack.c:599
#: build/pack.c:596
#, fuzzy, c-format
msgid "Could not open %s: %s\n"
msgstr "Otvorenie %s zlyhalo\n"
#: build/pack.c:635 lib/psm.c:1841
#: build/pack.c:632 lib/psm.c:1841
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "Nie je mo¾né zapísa» balík: %s"
#: build/pack.c:650
#: build/pack.c:647
#, fuzzy, c-format
msgid "Unable to open sigtarget %s: %s\n"
msgstr "Nie je preèíta» sigtarget: %s"
#: build/pack.c:661
#: build/pack.c:658
#, fuzzy, c-format
msgid "Unable to read header from %s: %s\n"
msgstr "Nie je mo¾né preèíta» ikonu: %s"
#: build/pack.c:675
#: build/pack.c:672
#, fuzzy, c-format
msgid "Unable to write header to %s: %s\n"
msgstr "Nie je mo¾né zapísa» balík: %s"
#: build/pack.c:685
#: build/pack.c:682
#, fuzzy, c-format
msgid "Unable to read payload from %s: %s\n"
msgstr "Nie je mo¾né preèíta» ikonu: %s"
#: build/pack.c:691
#: build/pack.c:688
#, fuzzy, c-format
msgid "Unable to write payload to %s: %s\n"
msgstr "Nie je mo¾né zapísa» balík: %s"
#: build/pack.c:716 lib/psm.c:2146
#: build/pack.c:725 lib/psm.c:2146
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapísané: %s\n"
#: build/pack.c:789
#: build/pack.c:798
#, 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:806
#: build/pack.c:815
#, fuzzy, c-format
msgid "cannot create %s: %s\n"
msgstr "nie je mo¾né zapísa» do %s: "
@ -910,7 +910,7 @@ msgstr "riadok %d: Pr
msgid "line %d: Illegal char '-' in %s: %s\n"
msgstr "riadok %d: Neprípustný znak '-' v %s: %s"
#: build/parsePreamble.c:588 build/parseSpec.c:426
#: build/parsePreamble.c:588 build/parseSpec.c:427
#, fuzzy, c-format
msgid "BuildRoot can not be \"/\": %s\n"
msgstr "riadok %d: BuildRoot nemô¾e by» \"/\": %s"
@ -1076,48 +1076,48 @@ msgstr "riadok %d: program skriptu mus
msgid "line %d: Second %s\n"
msgstr "riadok %d: Druhý %s"
#: build/parseSpec.c:160
#: build/parseSpec.c:161
#, fuzzy, c-format
msgid "line %d: %s\n"
msgstr "riadok %d: %s"
#. XXX Fstrerror
#: build/parseSpec.c:212
#: build/parseSpec.c:213
#, fuzzy, c-format
msgid "Unable to open %s: %s\n"
msgstr "otvorenie zlyhalo: %s\n"
#: build/parseSpec.c:228
#: build/parseSpec.c:229
#, fuzzy, c-format
msgid "Unclosed %%if\n"
msgstr "Neuzavretý %%if"
#: build/parseSpec.c:300
#: build/parseSpec.c:301
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr ""
#: build/parseSpec.c:309
#: build/parseSpec.c:310
#, fuzzy, c-format
msgid "%s:%d: Got a %%else with no %%if\n"
msgstr "%s:%d: %%else bez if"
#: build/parseSpec.c:321
#: build/parseSpec.c:322
#, fuzzy, c-format
msgid "%s:%d: Got a %%endif with no %%if\n"
msgstr "%s:%d: %%endif bez if"
#: build/parseSpec.c:335 build/parseSpec.c:344
#: build/parseSpec.c:336 build/parseSpec.c:345
#, fuzzy, c-format
msgid "malformed %%include statement\n"
msgstr "znetvorený príkaz %%include"
#: build/parseSpec.c:544
#: build/parseSpec.c:546
#, fuzzy
msgid "No compatible architectures found for build\n"
msgstr "®iadne zostaviteµné architektúry"
#: build/parseSpec.c:602
#: build/parseSpec.c:607
#, fuzzy, c-format
msgid "Package has no %%description: %s\n"
msgstr "Balík neobsahuje %%description: %s"
@ -1304,27 +1304,27 @@ msgstr "predefinova
msgid "lookup i18N strings in specfile catalog"
msgstr "pre preklad re»azcov pou¾i» katalóg správ spec-súborov"
#: build/spec.c:234
#: build/spec.c:237
#, fuzzy, c-format
msgid "line %d: Bad number: %s\n"
msgstr "riadok %d: Chybné èíslo: %s"
#: build/spec.c:240
#: build/spec.c:243
#, fuzzy, c-format
msgid "line %d: Bad no%s number: %d\n"
msgstr "riadok %d: Chybné no%s èíslo: %d"
#: build/spec.c:303
#: build/spec.c:306
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "riadok %d: Chybné %s èíslo: %s\n"
#: build/spec.c:639
#: build/spec.c:642
#, fuzzy, c-format
msgid "can't query %s: %s\n"
msgstr "zmazanie %s zlyhalo: %s\n"
#: build/spec.c:714
#: build/spec.c:718
#, c-format
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"
@ -3194,25 +3194,30 @@ msgstr "odstra
msgid "verified db index %s/%s\n"
msgstr "odstraòuje sa index súborov pre %s\n"
#: rpmdb/db3.c:1069
#: rpmdb/db3.c:968
#, c-format
msgid "\tunshared posix mutexes found(%d), adding DB_PRIVATE\n"
msgstr ""
#: rpmdb/db3.c:1071
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "otvára sa databáza s právami 0x%x v %s\n"
#: rpmdb/db3.c:1306
#: rpmdb/db3.c:1308
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "nie je mo¾né získa» %s zámok pre databázu"
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "exclusive"
msgstr "výhradný"
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "shared"
msgstr "zdieµaný"
#: rpmdb/db3.c:1312
#: rpmdb/db3.c:1314
#, fuzzy, c-format
msgid "locked db index %s/%s\n"
msgstr "odstraòuje sa index súborov pre %s\n"

View File

@ -1,12 +1,12 @@
# -*- mode:po; coding:iso-latin-2; -*- Slovenian messages for Redhat pkg. mngr.
# Copyright (C) 2000 Free Software Foundation, Inc.
# Primo¾ Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>, 2000.
# $Id: sl.po,v 1.345 2002/12/23 20:59:03 jbj Exp $
# $Id: sl.po,v 1.346 2002/12/24 07:21:42 jbj Exp $
#
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-12-23 15:42-0500\n"
"POT-Creation-Date: 2002-12-24 02:13-0500\n"
"PO-Revision-Date: 2000-10-08 19:05+0200\n"
"Last-Translator: Grega Fajdiga <gregor.fajdiga@telemach.net>\n"
"Language-Team: Slovenian <sl@li.org>\n"
@ -527,64 +527,64 @@ msgstr "Datoteka je navedena dvakrat: %s"
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr "Simbolna povezava ka¾e na BuildRoot: %s -> %s"
#: build/files.c:1523
#: build/files.c:1527
#, fuzzy, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr "Datoteka se ne ujema s predpono (%s): %s"
#: build/files.c:1547
#: build/files.c:1551
#, fuzzy, c-format
msgid "File not found: %s\n"
msgstr "Datoteke ni mogoèe najti: %s"
#: build/files.c:1747
#: build/files.c:1751
#, fuzzy, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "Datoteki manjka uvodni \"/\": %s"
#: build/files.c:1771
#: build/files.c:1775
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "vrstica %d: Razlièica ni dovoljena: %s"
#: build/files.c:1788 lib/rpminstall.c:343
#: build/files.c:1792 lib/rpminstall.c:343
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "Datoteke ni mo¾no najti z raz¹iritvijo metaznakov v imenu: %s"
#: build/files.c:1848
#: build/files.c:1852
#, fuzzy, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "Datoteke %s iz %%files ni mo¾no odpreti: %s"
#: build/files.c:1859 build/pack.c:156
#: build/files.c:1863 build/pack.c:156
#, fuzzy, c-format
msgid "line: %s\n"
msgstr "vrstica: %s"
#: build/files.c:2246
#: build/files.c:2250
#, fuzzy, c-format
msgid "Bad file: %s: %s\n"
msgstr "Po¹kodovana datoteka: %s: %s"
#: build/files.c:2258 build/parsePrep.c:50
#: build/files.c:2262 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Neobstojeè lastnik/skupina: %s\n"
#: build/files.c:2302
#: build/files.c:2306
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "i¹èemo paket %s\n"
#: build/files.c:2323
#: build/files.c:2327
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
#: build/files.c:2351
#: build/files.c:2355
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Obdeloavnje datotek: %s-%s-%s\n"
@ -723,52 +723,52 @@ msgstr "Izdelujemo podpis: %d\n"
msgid "Unable to reload signature header.\n"
msgstr "Ikone %s ni mo¾no prebrati: %s"
#: build/pack.c:599
#: build/pack.c:596
#, c-format
msgid "Could not open %s: %s\n"
msgstr "Ni mo¾no odpreti %s: %s\n"
#: build/pack.c:635 lib/psm.c:1841
#: build/pack.c:632 lib/psm.c:1841
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "Ni mo¾no zapisati paketa: %s"
#: build/pack.c:650
#: build/pack.c:647
#, fuzzy, c-format
msgid "Unable to open sigtarget %s: %s\n"
msgstr "Ciljnega podpisa %s ni mo¾no odpreti: %s"
#: build/pack.c:661
#: build/pack.c:658
#, fuzzy, c-format
msgid "Unable to read header from %s: %s\n"
msgstr "Ikone %s ni mo¾no prebrati: %s"
#: build/pack.c:675
#: build/pack.c:672
#, fuzzy, c-format
msgid "Unable to write header to %s: %s\n"
msgstr "Ni mo¾no zapisati paketa %s: %s"
#: build/pack.c:685
#: build/pack.c:682
#, fuzzy, c-format
msgid "Unable to read payload from %s: %s\n"
msgstr "Ikone %s ni mo¾no prebrati: %s"
#: build/pack.c:691
#: build/pack.c:688
#, fuzzy, c-format
msgid "Unable to write payload to %s: %s\n"
msgstr "Ni mo¾no zapisati paketa %s: %s"
#: build/pack.c:716 lib/psm.c:2146
#: build/pack.c:725 lib/psm.c:2146
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapisano: %s\n"
#: build/pack.c:789
#: build/pack.c:798
#, 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:806
#: build/pack.c:815
#, c-format
msgid "cannot create %s: %s\n"
msgstr "ni mo¾no ustvariti %s: %s\n"
@ -909,7 +909,7 @@ msgstr "vrstica %d: Prazna zna
msgid "line %d: Illegal char '-' in %s: %s\n"
msgstr "vrstica %d: Neveljaven znak ,-` v %s: %s"
#: build/parsePreamble.c:588 build/parseSpec.c:426
#: build/parsePreamble.c:588 build/parseSpec.c:427
#, fuzzy, c-format
msgid "BuildRoot can not be \"/\": %s\n"
msgstr "BuildRoot ne more biti \"/\": %s"
@ -1077,48 +1077,48 @@ msgstr "vrstica %d: skriptni program se mora za
msgid "line %d: Second %s\n"
msgstr "vrstica %d: Drugi %s"
#: build/parseSpec.c:160
#: build/parseSpec.c:161
#, fuzzy, c-format
msgid "line %d: %s\n"
msgstr "vrstica %d: %s"
#. XXX Fstrerror
#: build/parseSpec.c:212
#: build/parseSpec.c:213
#, c-format
msgid "Unable to open %s: %s\n"
msgstr "Ni mo¾no odpreti %s: %s\n"
#: build/parseSpec.c:228
#: build/parseSpec.c:229
#, fuzzy, c-format
msgid "Unclosed %%if\n"
msgstr "Nezakljuèeni %%if"
#: build/parseSpec.c:300
#: build/parseSpec.c:301
#, fuzzy, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr "%s:%d: parseExpressionBoolean vrne %d"
#: build/parseSpec.c:309
#: build/parseSpec.c:310
#, fuzzy, c-format
msgid "%s:%d: Got a %%else with no %%if\n"
msgstr "%s:%d: Najden je bil %%else brez pripadajoèega if"
#: build/parseSpec.c:321
#: build/parseSpec.c:322
#, fuzzy, c-format
msgid "%s:%d: Got a %%endif with no %%if\n"
msgstr "%s:%d: Najden je bil %%endif brez pripadajoèega if"
#: build/parseSpec.c:335 build/parseSpec.c:344
#: build/parseSpec.c:336 build/parseSpec.c:345
#, fuzzy, c-format
msgid "malformed %%include statement\n"
msgstr "Deformiran stavek %%include"
#: build/parseSpec.c:544
#: build/parseSpec.c:546
#, fuzzy
msgid "No compatible architectures found for build\n"
msgstr "Arhitektura za izgradnjo ni prisotna"
#: build/parseSpec.c:602
#: build/parseSpec.c:607
#, fuzzy, c-format
msgid "Package has no %%description: %s\n"
msgstr "V paketu manjka %%description: %s"
@ -1306,27 +1306,27 @@ msgstr "brez upo
msgid "lookup i18N strings in specfile catalog"
msgstr "upo¹tevanje internacionalizirana sporoèila v katalogu spec"
#: build/spec.c:234
#: build/spec.c:237
#, fuzzy, c-format
msgid "line %d: Bad number: %s\n"
msgstr "vrstica %d: Napaèno ¹tevilo: %s"
#: build/spec.c:240
#: build/spec.c:243
#, fuzzy, c-format
msgid "line %d: Bad no%s number: %d\n"
msgstr "vrstica %d: Napaèno ¹tevilo no%s: %d"
#: build/spec.c:303
#: build/spec.c:306
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "vrstica %d: Napaèno ¹tevilo %s: %s\n"
#: build/spec.c:639
#: build/spec.c:642
#, fuzzy, c-format
msgid "can't query %s: %s\n"
msgstr "ni mo¾no poizvedeti o %s: %s\n"
#: build/spec.c:714
#: build/spec.c:718
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr "poizvedba po datoteki spec. %s je bila neuspe¹na, razèlemba ni mo¾na\n"
@ -3197,25 +3197,30 @@ msgstr "zaprto db kazalo %s/%s\n"
msgid "verified db index %s/%s\n"
msgstr "zaprto db kazalo %s/%s\n"
#: rpmdb/db3.c:1069
#: rpmdb/db3.c:968
#, c-format
msgid "\tunshared posix mutexes found(%d), adding DB_PRIVATE\n"
msgstr ""
#: rpmdb/db3.c:1071
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "odpiranje db kazala %s/%s %s naèin=0x%x\n"
#: rpmdb/db3.c:1306
#: rpmdb/db3.c:1308
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "ni mo¾no zakleniti z %s datotek %s/%s\n"
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "exclusive"
msgstr "izkljuèujoèe"
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "shared"
msgstr "skupno"
#: rpmdb/db3.c:1312
#: rpmdb/db3.c:1314
#, fuzzy, c-format
msgid "locked db index %s/%s\n"
msgstr "zaklenjeno db kazalo %s/%s\n"

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-12-23 15:42-0500\n"
"POT-Creation-Date: 2002-12-24 02:13-0500\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
@ -518,64 +518,64 @@ msgstr "Neuspelo
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr ""
#: build/files.c:1523
#: build/files.c:1527
#, fuzzy, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr "Neuspelo èitanje %s: %s."
#: build/files.c:1547
#: build/files.c:1551
#, fuzzy, c-format
msgid "File not found: %s\n"
msgstr "Datoteka nije pronaðena na serveru"
#: build/files.c:1747
#: build/files.c:1751
#, fuzzy, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "preme¹tanja moraju poèeti znakom '/'"
#: build/files.c:1771
#: build/files.c:1775
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "paket %s nije naveden u %s"
#: build/files.c:1788 lib/rpminstall.c:343
#: build/files.c:1792 lib/rpminstall.c:343
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "Datoteka nije pronaðena na serveru"
#: build/files.c:1848
#: build/files.c:1852
#, fuzzy, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "gre¹ka: ne mogu da otvorim datoteku %s\n"
#: build/files.c:1859 build/pack.c:156
#: build/files.c:1863 build/pack.c:156
#, fuzzy, c-format
msgid "line: %s\n"
msgstr "neuspelo otvaranje %s: %s"
#: build/files.c:2246
#: build/files.c:2250
#, fuzzy, c-format
msgid "Bad file: %s: %s\n"
msgstr "neuspelo otvaranje %s: %s"
#: build/files.c:2258 build/parsePrep.c:50
#: build/files.c:2262 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
#: build/files.c:2302
#: build/files.c:2306
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "gre¹ka potrage za paketom %s\n"
#: build/files.c:2323
#: build/files.c:2327
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
#: build/files.c:2351
#: build/files.c:2355
#, fuzzy, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "neuspelo otvaranje %s: %s"
@ -713,52 +713,52 @@ msgstr "napravi PGP potpis"
msgid "Unable to reload signature header.\n"
msgstr "Ne mogu da upi¹em %s"
#: build/pack.c:599
#: build/pack.c:596
#, fuzzy, c-format
msgid "Could not open %s: %s\n"
msgstr "neuspelo otvaranje %s\n"
#: build/pack.c:635 lib/psm.c:1841
#: build/pack.c:632 lib/psm.c:1841
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "Ne mogu da upi¹em %s"
#: build/pack.c:650
#: build/pack.c:647
#, fuzzy, c-format
msgid "Unable to open sigtarget %s: %s\n"
msgstr "Ne mogu da upi¹em %s"
#: build/pack.c:661
#: build/pack.c:658
#, fuzzy, c-format
msgid "Unable to read header from %s: %s\n"
msgstr "Ne mogu da upi¹em %s"
#: build/pack.c:675
#: build/pack.c:672
#, fuzzy, c-format
msgid "Unable to write header to %s: %s\n"
msgstr "Ne mogu da upi¹em %s"
#: build/pack.c:685
#: build/pack.c:682
#, fuzzy, c-format
msgid "Unable to read payload from %s: %s\n"
msgstr "Ne mogu da upi¹em %s"
#: build/pack.c:691
#: build/pack.c:688
#, fuzzy, c-format
msgid "Unable to write payload to %s: %s\n"
msgstr "Ne mogu da upi¹em %s"
#: build/pack.c:716 lib/psm.c:2146
#: build/pack.c:725 lib/psm.c:2146
#, c-format
msgid "Wrote: %s\n"
msgstr ""
#: build/pack.c:789
#: build/pack.c:798
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
#: build/pack.c:806
#: build/pack.c:815
#, fuzzy, c-format
msgid "cannot create %s: %s\n"
msgstr "Ne mogu da otvorim datoteku %s: "
@ -899,7 +899,7 @@ msgstr "neuspelo otvaranje %s: %s"
msgid "line %d: Illegal char '-' in %s: %s\n"
msgstr "neuspelo otvaranje %s: %s"
#: build/parsePreamble.c:588 build/parseSpec.c:426
#: build/parsePreamble.c:588 build/parseSpec.c:427
#, c-format
msgid "BuildRoot can not be \"/\": %s\n"
msgstr ""
@ -1063,48 +1063,48 @@ msgstr "preme
msgid "line %d: Second %s\n"
msgstr "neuspelo otvaranje %s: %s"
#: build/parseSpec.c:160
#: build/parseSpec.c:161
#, fuzzy, c-format
msgid "line %d: %s\n"
msgstr "neuspelo otvaranje %s: %s"
#. XXX Fstrerror
#: build/parseSpec.c:212
#: build/parseSpec.c:213
#, fuzzy, c-format
msgid "Unable to open %s: %s\n"
msgstr "neuspelo otvaranje %s\n"
#: build/parseSpec.c:228
#: build/parseSpec.c:229
#, c-format
msgid "Unclosed %%if\n"
msgstr ""
#: build/parseSpec.c:300
#: build/parseSpec.c:301
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr ""
#: build/parseSpec.c:309
#: build/parseSpec.c:310
#, c-format
msgid "%s:%d: Got a %%else with no %%if\n"
msgstr ""
#: build/parseSpec.c:321
#: build/parseSpec.c:322
#, c-format
msgid "%s:%d: Got a %%endif with no %%if\n"
msgstr ""
#: build/parseSpec.c:335 build/parseSpec.c:344
#: build/parseSpec.c:336 build/parseSpec.c:345
#, c-format
msgid "malformed %%include statement\n"
msgstr ""
#: build/parseSpec.c:544
#: build/parseSpec.c:546
#, fuzzy
msgid "No compatible architectures found for build\n"
msgstr "nemoj proveravati arhitekturu paketa"
#: build/parseSpec.c:602
#: build/parseSpec.c:607
#, fuzzy, c-format
msgid "Package has no %%description: %s\n"
msgstr "paket %s nije naveden u %s"
@ -1292,27 +1292,27 @@ msgstr ""
msgid "lookup i18N strings in specfile catalog"
msgstr ""
#: build/spec.c:234
#: build/spec.c:237
#, fuzzy, c-format
msgid "line %d: Bad number: %s\n"
msgstr "pogre¹an broj paketa: %s\n"
#: build/spec.c:240
#: build/spec.c:243
#, fuzzy, c-format
msgid "line %d: Bad no%s number: %d\n"
msgstr "pogre¹an broj paketa: %s\n"
#: build/spec.c:303
#: build/spec.c:306
#, fuzzy, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "pogre¹an broj paketa: %s\n"
#: build/spec.c:639
#: build/spec.c:642
#, fuzzy, c-format
msgid "can't query %s: %s\n"
msgstr "gre¹ka: ne mogu da otvorim %s\n"
#: build/spec.c:714
#: build/spec.c:718
#, fuzzy, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr "upit nad %s neuspeo\n"
@ -3186,25 +3186,30 @@ msgstr "rekreiraj bazu podataka iz postoje
msgid "verified db index %s/%s\n"
msgstr "rekreiraj bazu podataka iz postojeæe baze"
#: rpmdb/db3.c:1069
#: rpmdb/db3.c:968
#, c-format
msgid "\tunshared posix mutexes found(%d), adding DB_PRIVATE\n"
msgstr ""
#: rpmdb/db3.c:1071
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "rekreiraj bazu podataka iz postojeæe baze"
#: rpmdb/db3.c:1306
#: rpmdb/db3.c:1308
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "ne mogu da dobijem %s zakljuèavanje baze podataka"
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "exclusive"
msgstr "ekskluzivno"
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "shared"
msgstr "deljeno"
#: rpmdb/db3.c:1312
#: rpmdb/db3.c:1314
#, fuzzy, c-format
msgid "locked db index %s/%s\n"
msgstr "rekreiraj bazu podataka iz postojeæe baze"

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.1\n"
"POT-Creation-Date: 2002-12-23 15:42-0500\n"
"POT-Creation-Date: 2002-12-24 02:13-0500\n"
"PO-Revision-Date: 2002-08-19 22:26+0200\n"
"Last-Translator: Göran Uddeborg <goeran@uddeborg.pp.se>\n"
"Language-Team: Swedish <sv@li.org>\n"
@ -508,57 +508,57 @@ msgstr "Filen uppr
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr "Symbolisk länk pekar på BuildRoot: %s -> %s\n"
#: build/files.c:1523
#: build/files.c:1527
#, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr "Filen matchar inte prefixet (%s): %s\n"
#: build/files.c:1547
#: build/files.c:1551
#, c-format
msgid "File not found: %s\n"
msgstr "Filen hittades inte: %s\n"
#: build/files.c:1747
#: build/files.c:1751
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "Filen behöver inledande \"/\": %s\n"
#: build/files.c:1771
#: build/files.c:1775
#, c-format
msgid "Glob not permitted: %s\n"
msgstr "Matchning inte tillåtet: %s\n"
#: build/files.c:1788 lib/rpminstall.c:343
#: build/files.c:1792 lib/rpminstall.c:343
#, c-format
msgid "File not found by glob: %s\n"
msgstr "Hittade ingen fil vid matchningen: %s\n"
#: build/files.c:1848
#: build/files.c:1852
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "Kunde inte öppna %%files-fil %s: %s\n"
#: build/files.c:1859 build/pack.c:156
#: build/files.c:1863 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr "rad: %s\n"
#: build/files.c:2246
#: build/files.c:2250
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "Felaktig fil: %s: %s\n"
#: build/files.c:2258 build/parsePrep.c:50
#: build/files.c:2262 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Felaktig ägare/grupp: %s\n"
#: build/files.c:2302
#: build/files.c:2306
#, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "Letar efter opackade fil(er): %s\n"
#: build/files.c:2323
#: build/files.c:2327
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
@ -567,7 +567,7 @@ msgstr ""
"Installerade (men opaketerade) filer funna:\n"
"%s"
#: build/files.c:2351
#: build/files.c:2355
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Bearbetar filer: %s-%s-%s\n"
@ -701,52 +701,52 @@ msgstr "Genererar signatur: %d\n"
msgid "Unable to reload signature header.\n"
msgstr "Kan inte läsa om signaturhuvud.\n"
#: build/pack.c:599
#: build/pack.c:596
#, c-format
msgid "Could not open %s: %s\n"
msgstr "Kunde inte öppna %s: %s\n"
#: build/pack.c:635 lib/psm.c:1841
#: build/pack.c:632 lib/psm.c:1841
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Kunde inte skriva paket: %s\n"
#: build/pack.c:650
#: build/pack.c:647
#, c-format
msgid "Unable to open sigtarget %s: %s\n"
msgstr "Kan inte läsa signaturen %s: %s\n"
#: build/pack.c:661
#: build/pack.c:658
#, c-format
msgid "Unable to read header from %s: %s\n"
msgstr "Kan inte läsa huvud från %s: %s\n"
#: build/pack.c:675
#: build/pack.c:672
#, c-format
msgid "Unable to write header to %s: %s\n"
msgstr "Kan inte skriva huvud till %s: %s\n"
#: build/pack.c:685
#: build/pack.c:682
#, c-format
msgid "Unable to read payload from %s: %s\n"
msgstr "Kan inte läsa last från %s: %s\n"
#: build/pack.c:691
#: build/pack.c:688
#, c-format
msgid "Unable to write payload to %s: %s\n"
msgstr "Kan inte skriva last till %s: %s\n"
#: build/pack.c:716 lib/psm.c:2146
#: build/pack.c:725 lib/psm.c:2146
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrev: %s\n"
#: build/pack.c:789
#: build/pack.c:798
#, 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:806
#: build/pack.c:815
#, c-format
msgid "cannot create %s: %s\n"
msgstr "kan inte skapa %s: %s\n"
@ -887,7 +887,7 @@ msgstr "rad %d: Tom tagg: %s\n"
msgid "line %d: Illegal char '-' in %s: %s\n"
msgstr "rad %d: Otillåtet tecken \"-\" i %s: %s\n"
#: build/parsePreamble.c:588 build/parseSpec.c:426
#: build/parsePreamble.c:588 build/parseSpec.c:427
#, c-format
msgid "BuildRoot can not be \"/\": %s\n"
msgstr "BuildRoot kan inte vara \"/\": %s\n"
@ -1052,47 +1052,47 @@ msgstr "rad %d: skriptprogram m
msgid "line %d: Second %s\n"
msgstr "rad %d: En andra %s\n"
#: build/parseSpec.c:160
#: build/parseSpec.c:161
#, c-format
msgid "line %d: %s\n"
msgstr "rad %d: %s\n"
#. XXX Fstrerror
#: build/parseSpec.c:212
#: build/parseSpec.c:213
#, c-format
msgid "Unable to open %s: %s\n"
msgstr "Kan inte öppna %s: %s\n"
#: build/parseSpec.c:228
#: build/parseSpec.c:229
#, c-format
msgid "Unclosed %%if\n"
msgstr "Oavslutat %%if\n"
#: build/parseSpec.c:300
#: build/parseSpec.c:301
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr "%s:%d: parseExpressionBoolean returnerar %d\n"
#: build/parseSpec.c:309
#: build/parseSpec.c:310
#, c-format
msgid "%s:%d: Got a %%else with no %%if\n"
msgstr "%s:%d: Fick ett %%else utan något %%if\n"
#: build/parseSpec.c:321
#: build/parseSpec.c:322
#, c-format
msgid "%s:%d: Got a %%endif with no %%if\n"
msgstr "%s:%d: Fick ett %%endif utan något %%if\n"
#: build/parseSpec.c:335 build/parseSpec.c:344
#: build/parseSpec.c:336 build/parseSpec.c:345
#, c-format
msgid "malformed %%include statement\n"
msgstr "felformaterad %%include-sats\n"
#: build/parseSpec.c:544
#: build/parseSpec.c:546
msgid "No compatible architectures found for build\n"
msgstr "Hittade inga kompatibla arkitekturer att bygga\n"
#: build/parseSpec.c:602
#: build/parseSpec.c:607
#, c-format
msgid "Package has no %%description: %s\n"
msgstr "Paketet har ingen %%description: %s\n"
@ -1266,27 +1266,27 @@ msgstr "
msgid "lookup i18N strings in specfile catalog"
msgstr "slå upp översatta strängar i specfilkatalog"
#: build/spec.c:234
#: build/spec.c:237
#, c-format
msgid "line %d: Bad number: %s\n"
msgstr "rad %d: Felaktigt tal: %s\n"
#: build/spec.c:240
#: build/spec.c:243
#, c-format
msgid "line %d: Bad no%s number: %d\n"
msgstr "rad %d: Felaktigt no%s-tal: %d\n"
#: build/spec.c:303
#: build/spec.c:306
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "rad %d: Felaktigt %s-tal: %s\n"
#: build/spec.c:639
#: build/spec.c:642
#, c-format
msgid "can't query %s: %s\n"
msgstr "kan inte fråga %s: %s\n"
#: build/spec.c:714
#: build/spec.c:718
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr "fråga av specfil %s misslyckades, kan inte tolka\n"
@ -3080,25 +3080,30 @@ msgstr "st
msgid "verified db index %s/%s\n"
msgstr "verifierade db-index %s/%s\n"
#: rpmdb/db3.c:1069
#: rpmdb/db3.c:968
#, c-format
msgid "\tunshared posix mutexes found(%d), adding DB_PRIVATE\n"
msgstr ""
#: rpmdb/db3.c:1071
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "öppnar db-index %s/%s %s rättighet=0x%x\n"
#: rpmdb/db3.c:1306
#: rpmdb/db3.c:1308
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "kan inte få %s lås på %s/%s\n"
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "exclusive"
msgstr "uteslutande"
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "shared"
msgstr "delat"
#: rpmdb/db3.c:1312
#: rpmdb/db3.c:1314
#, c-format
msgid "locked db index %s/%s\n"
msgstr "låste db-index %s/%s\n"

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-12-23 15:42-0500\n"
"POT-Creation-Date: 2002-12-24 02:13-0500\n"
"PO-Revision-Date: 2001-07-05 08:02+300\n"
"Last-Translator: Nilgun Belma Buguner <nilgun@technologist.com>\n"
"Language-Team: Turkish <tr@li.org>\n"
@ -520,64 +520,64 @@ msgstr "Dosya iki kere g
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr "Sembolik bað BuildRoot gösteriyor: %s -> %s\n"
#: build/files.c:1523
#: build/files.c:1527
#, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr "Dosya önek (%s) ile uyumsuz: %s\n"
#: build/files.c:1547
#: build/files.c:1551
#, c-format
msgid "File not found: %s\n"
msgstr "Dosya bulunamadý: %s\n"
#: build/files.c:1747
#: build/files.c:1751
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "Dosya \"/\" ile içermeli: %s\n"
#: build/files.c:1771
#: build/files.c:1775
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "satýr %d: Dosya adý uygun deðil: %s\n"
#: build/files.c:1788 lib/rpminstall.c:343
#: build/files.c:1792 lib/rpminstall.c:343
#, c-format
msgid "File not found by glob: %s\n"
msgstr "Dosya glob tarafýndan bulunamadý: %s\n"
#: build/files.c:1848
#: build/files.c:1852
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "%%files dosya %s dosyasýnda açýlamadý: %s\n"
#: build/files.c:1859 build/pack.c:156
#: build/files.c:1863 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr "satýr: %s\n"
#: build/files.c:2246
#: build/files.c:2250
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "Dosya hatalý: %s: %s\n"
#: build/files.c:2258 build/parsePrep.c:50
#: build/files.c:2262 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Kullanýcý/grup hatalý: %s\n"
#: build/files.c:2302
#: build/files.c:2306
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "arþiv paketi açýlýrken baþarýsýz%s%s: %s\n"
#: build/files.c:2323
#: build/files.c:2327
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
#: build/files.c:2351
#: build/files.c:2355
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Ýþlenen dosyalar: %s-%s-%s\n"
@ -715,52 +715,52 @@ msgstr "
msgid "Unable to reload signature header.\n"
msgstr "%s'den baþlýk okunamadý: %s\n"
#: build/pack.c:599
#: build/pack.c:596
#, c-format
msgid "Could not open %s: %s\n"
msgstr "%s açýlamadý: %s\n"
#: build/pack.c:635 lib/psm.c:1841
#: build/pack.c:632 lib/psm.c:1841
#, c-format
msgid "Unable to write package: %s\n"
msgstr "paket yazýlamadý: %s\n"
#: build/pack.c:650
#: build/pack.c:647
#, c-format
msgid "Unable to open sigtarget %s: %s\n"
msgstr "sigtarget %s açýlamadý: %s\n"
#: build/pack.c:661
#: build/pack.c:658
#, c-format
msgid "Unable to read header from %s: %s\n"
msgstr "%s'den baþlýk okunamadý: %s\n"
#: build/pack.c:675
#: build/pack.c:672
#, c-format
msgid "Unable to write header to %s: %s\n"
msgstr "%s'e baþlýk yazýlamadý: %s\n"
#: build/pack.c:685
#: build/pack.c:682
#, c-format
msgid "Unable to read payload from %s: %s\n"
msgstr "%s'den payload okunamadý: %s\n"
#: build/pack.c:691
#: build/pack.c:688
#, c-format
msgid "Unable to write payload to %s: %s\n"
msgstr "%s'e payload yazýlamadý: %s\n"
#: build/pack.c:716 lib/psm.c:2146
#: build/pack.c:725 lib/psm.c:2146
#, c-format
msgid "Wrote: %s\n"
msgstr "Yazýldý: %s\n"
#: build/pack.c:789
#: build/pack.c:798
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr "%s paket dosyasý için çýktý dosya adý üretilemedi: %s\n"
#: build/pack.c:806
#: build/pack.c:815
#, c-format
msgid "cannot create %s: %s\n"
msgstr "%s dosyasý oluþturulamýyor: %s\n"
@ -901,7 +901,7 @@ msgstr "sat
msgid "line %d: Illegal char '-' in %s: %s\n"
msgstr "satýr %d: %s içinde '-' karakteri kuraldýþý: %s\n"
#: build/parsePreamble.c:588 build/parseSpec.c:426
#: build/parsePreamble.c:588 build/parseSpec.c:427
#, c-format
msgid "BuildRoot can not be \"/\": %s\n"
msgstr "BuildRoot \"/\" olamaz: %s\n"
@ -1067,47 +1067,47 @@ msgstr "sat
msgid "line %d: Second %s\n"
msgstr "satýr %d: %s saniye\n"
#: build/parseSpec.c:160
#: build/parseSpec.c:161
#, c-format
msgid "line %d: %s\n"
msgstr "satýr %d: %s\n"
#. XXX Fstrerror
#: build/parseSpec.c:212
#: build/parseSpec.c:213
#, c-format
msgid "Unable to open %s: %s\n"
msgstr "%s açýlamadý: %s\n"
#: build/parseSpec.c:228
#: build/parseSpec.c:229
#, c-format
msgid "Unclosed %%if\n"
msgstr "%%if kapanmamýþ\n"
#: build/parseSpec.c:300
#: build/parseSpec.c:301
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr "%s:%d: parseExpressionBoolean %d ile döner\n"
#: build/parseSpec.c:309
#: build/parseSpec.c:310
#, c-format
msgid "%s:%d: Got a %%else with no %%if\n"
msgstr "%s:%d: %%if'siz bir %%else alýndý\n"
#: build/parseSpec.c:321
#: build/parseSpec.c:322
#, c-format
msgid "%s:%d: Got a %%endif with no %%if\n"
msgstr "%s:%d: %%if'siz bir %%endif alýndý\n"
#: build/parseSpec.c:335 build/parseSpec.c:344
#: build/parseSpec.c:336 build/parseSpec.c:345
#, c-format
msgid "malformed %%include statement\n"
msgstr "%%include deyimi bozuk\n"
#: build/parseSpec.c:544
#: build/parseSpec.c:546
msgid "No compatible architectures found for build\n"
msgstr "Kurgulamak için uyumlu mimari yok\n"
#: build/parseSpec.c:602
#: build/parseSpec.c:607
#, c-format
msgid "Package has no %%description: %s\n"
msgstr "Paket %%description içermiyor: %s\n"
@ -1292,27 +1292,27 @@ msgstr "hedef platforma zorlar"
msgid "lookup i18N strings in specfile catalog"
msgstr "spec dosyasýndaki i18n iletilerine bakar"
#: build/spec.c:234
#: build/spec.c:237
#, c-format
msgid "line %d: Bad number: %s\n"
msgstr "satýr %d: Numara hatalý: %s\n"
#: build/spec.c:240
#: build/spec.c:243
#, c-format
msgid "line %d: Bad no%s number: %d\n"
msgstr "satýr %d: Hatalý no%s numarasý: %d\n"
#: build/spec.c:303
#: build/spec.c:306
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "satýr %d: Hatalý %s numarasý: %s\n"
#: build/spec.c:639
#: build/spec.c:642
#, c-format
msgid "can't query %s: %s\n"
msgstr "%s sorgulanamýyor: %s\n"
#: build/spec.c:714
#: build/spec.c:718
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr "%s spec dosyasýnýn sorgulanmasý baþarýsýz, çözümlenemiyor\n"
@ -3152,25 +3152,30 @@ msgstr "kapand
msgid "verified db index %s/%s\n"
msgstr "doðrulandý db endeks %s/%s\n"
#: rpmdb/db3.c:1069
#: rpmdb/db3.c:968
#, c-format
msgid "\tunshared posix mutexes found(%d), adding DB_PRIVATE\n"
msgstr ""
#: rpmdb/db3.c:1071
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "açýlýyor db endeks %s/%s %s kip=0x%x\n"
#: rpmdb/db3.c:1306
#: rpmdb/db3.c:1308
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "%s kilit %s/%s'den alýnamadý\n"
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "exclusive"
msgstr "baðdaþýk"
#: rpmdb/db3.c:1308
#: rpmdb/db3.c:1310
msgid "shared"
msgstr "paylaþýmlý"
#: rpmdb/db3.c:1312
#: rpmdb/db3.c:1314
#, c-format
msgid "locked db index %s/%s\n"
msgstr "kilitli db endeks %s/%s\n"

View File

@ -15,7 +15,7 @@ Name: rpm
%define version @VERSION@
Version: %{version}
%{expand: %%define rpm_version %{version}}
Release: 0.35
Release: 0.36
Group: System Environment/Base
Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/rpm-%{rpm_version}.tar.gz
Copyright: GPL
@ -29,12 +29,6 @@ Obsoletes: rpm-perl < %{version}
# XXX necessary only to drag in /usr/lib/libelf.a, otherwise internal elfutils.
BuildRequires: elfutils-libelf
# XXX /dev/futex kernel support needed:
Conflicts: kernel < 2.4.20
# XXX NPTL glibc support needed:
Requires: glibc >= 2.3.1-16nptl
BuildRequires: zlib-devel
# XXX Red Hat 5.2 has not bzip2 or python
@ -461,6 +455,14 @@ exit 0
%{__prefix}/include/popt.h
%changelog
* Mon Dec 23 2002 Jeff Johnson <jbj@redhat.com> 4.2-0.36
- add matching "config(N) = EVR" dependencies iff %%config is found.
* Sun Dec 22 2002 Jeff Johnson <jbj@redhat.com> 4.2-0.35
- fix: remove rpmfi scareMem so that headers can be reloaded on ia64.
- fix: set DB_PRIVATE, not DB_ENV_PRIVATE, if unshared posix mutexes.
- remove useless (and now unnecessary) kernel/glibc dependencies (#79872).
* Sat Dec 21 2002 Jeff Johnson <jbj@redhat.com> 4.2-0.34
- add --enable-posixmutexes when configuring on linux.
- add rpmdb_{deadlock,dump,load,svc,stat,verify} utilities.

View File

@ -962,8 +962,10 @@ static int db3open(rpmdb rpmdb, rpmTag rpmtag, dbiIndex * dbip)
#if HAVE_LIBPTHREAD
/* Set DB_PRIVATE if posix mutexes are not shared. */
if (db3_pthread_nptl()) {
xx = db3_pthread_nptl();
if (xx) {
dbi->dbi_eflags |= DB_PRIVATE;
rpmMessage(RPMMESS_DEBUG, _("unshared posix mutexes found(%d), adding DB_PRIVATE, using fcntl lock\n"), xx);
}
#endif