CVS patchset: 5960
CVS date: 2002/12/23 20:58:36
This commit is contained in:
jbj 2002-12-23 20:58:36 +00:00
parent 34fd5ec810
commit e3c423226e
25 changed files with 462 additions and 458 deletions

View File

@ -10,6 +10,7 @@ static int _debug = 0;
#include <rpmio_internal.h>
#include <rpmbuild.h>
#include "rpmts.h"
#include "debug.h"
/*@access FD_t @*/ /* compared with NULL */

View File

@ -543,39 +543,39 @@ assert(argv[ac] != NULL);
}
/*@=bounds@*/
static rpmds rpmdsDup(const rpmds this)
/*@modifies this @*/
static rpmds rpmdsDup(const rpmds ods)
/*@modifies ods @*/
{
rpmds ds = xcalloc(1, sizeof(*ds));
size_t nb;
ds->h = (this->h != NULL ? headerLink(this->h) : NULL);
ds->h = (ods->h != NULL ? headerLink(ods->h) : NULL);
/*@-assignexpose@*/
ds->Type = this->Type;
ds->Type = ods->Type;
/*@=assignexpose@*/
ds->tagN = this->tagN;
ds->Count = this->Count;
ds->i = this->i;
ds->l = this->l;
ds->u = this->u;
ds->tagN = ods->tagN;
ds->Count = ods->Count;
ds->i = ods->i;
ds->l = ods->l;
ds->u = ods->u;
nb = (ds->Count+1) * sizeof(*ds->N);
ds->N = (ds->h != NULL
? memcpy(xmalloc(nb), this->N, nb)
: rpmdsDupArgv(this->N, this->Count) );
ds->Nt = this->Nt;
? memcpy(xmalloc(nb), ods->N, nb)
: rpmdsDupArgv(ods->N, ods->Count) );
ds->Nt = ods->Nt;
nb = (ds->Count+1) * sizeof(*ds->EVR);
ds->EVR = (ds->h != NULL
? memcpy(xmalloc(nb), this->EVR, nb)
: rpmdsDupArgv(this->EVR, this->Count) );
ds->EVRt = this->EVRt;
? memcpy(xmalloc(nb), ods->EVR, nb)
: rpmdsDupArgv(ods->EVR, ods->Count) );
ds->EVRt = ods->EVRt;
nb = (ds->Count * sizeof(*ds->Flags));
ds->Flags = (ds->h != NULL
? this->Flags
: memcpy(xmalloc(nb), this->Flags, nb) );
ds->Ft = this->Ft;
? ods->Flags
: memcpy(xmalloc(nb), ods->Flags, nb) );
ds->Ft = ods->Ft;
/*@-compmempass@*/ /* FIX: ds->Flags is kept, not only */
return rpmdsLink(ds, (ds ? ds->Type : NULL));
@ -584,11 +584,11 @@ static rpmds rpmdsDup(const rpmds this)
}
/*@-bounds@*/
int rpmdsFind(rpmds ds, rpmds this)
int rpmdsFind(rpmds ds, rpmds ods)
{
int comparison;
if (ds == NULL || this == NULL)
if (ds == NULL || ods == NULL)
return -1;
ds->l = 0;
@ -596,11 +596,11 @@ int rpmdsFind(rpmds ds, rpmds this)
while (ds->l < ds->u) {
ds->i = (ds->l + ds->u) / 2;
comparison = strcmp(this->N[this->i], ds->N[ds->i]);
comparison = strcmp(ods->N[ods->i], ds->N[ds->i]);
if (comparison == 0)
comparison = strcmp(this->EVR[this->i], ds->EVR[ds->i]);
comparison = strcmp(ods->EVR[ods->i], ds->EVR[ds->i]);
if (comparison == 0)
comparison = (this->Flags[this->i] - ds->Flags[ds->i]);
comparison = (ods->Flags[ods->i] - ds->Flags[ds->i]);
if (comparison < 0)
ds->u = ds->i;
@ -614,7 +614,7 @@ int rpmdsFind(rpmds ds, rpmds this)
/*@=bounds@*/
/*@-bounds@*/
int rpmdsMerge(rpmds * dsp, rpmds this)
int rpmdsMerge(rpmds * dsp, rpmds ods)
{
rpmds ds;
const char ** N;
@ -623,16 +623,16 @@ int rpmdsMerge(rpmds * dsp, rpmds this)
int j;
int save;
if (dsp == NULL || this == NULL)
if (dsp == NULL || ods == NULL)
return -1;
/* If not initialized yet, dup the 1st entry. */
/*@-branchstate@*/
if (*dsp == NULL) {
save = this->Count;
this->Count = 1;
*dsp = rpmdsDup(this);
this->Count = save;
save = ods->Count;
ods->Count = 1;
*dsp = rpmdsDup(ods);
ods->Count = save;
}
/*@=branchstate@*/
ds = *dsp;
@ -640,14 +640,14 @@ int save;
/*
* Add new entries.
*/
save = this->i;
this = rpmdsInit(this);
if (this != NULL)
while (rpmdsNext(this) >= 0) {
save = ods->i;
ods = rpmdsInit(ods);
if (ods != NULL)
while (rpmdsNext(ods) >= 0) {
/*
* If this entry is already present, don't bother.
*/
if (rpmdsFind(ds, this) >= 0)
if (rpmdsFind(ds, ods) >= 0)
continue;
/*
@ -655,14 +655,14 @@ save = this->i;
*/
for (j = ds->Count; j > ds->u; j--)
ds->N[j] = ds->N[j-1];
ds->N[ds->u] = this->N[this->i];
ds->N[ds->u] = ods->N[ods->i];
N = rpmdsDupArgv(ds->N, ds->Count+1);
ds->N = _free(ds->N);
ds->N = N;
for (j = ds->Count; j > ds->u; j--)
ds->EVR[j] = ds->EVR[j-1];
ds->EVR[ds->u] = this->EVR[this->i];
ds->EVR[ds->u] = ods->EVR[ods->i];
EVR = rpmdsDupArgv(ds->EVR, ds->Count+1);
ds->EVR = _free(ds->EVR);
ds->EVR = EVR;
@ -672,7 +672,7 @@ save = this->i;
memcpy(Flags, ds->Flags, ds->u * sizeof(*Flags));
if (ds->u < ds->Count)
memcpy(Flags + ds->u + 1, ds->Flags + ds->u, (ds->Count - ds->u) * sizeof(*Flags));
Flags[ds->u] = this->Flags[this->i];
Flags[ds->u] = ods->Flags[ods->i];
ds->Flags = _free(ds->Flags);
ds->Flags = Flags;
@ -681,7 +681,7 @@ save = this->i;
}
/*@-nullderef@*/
this->i = save;
ods->i = save;
/*@=nullderef@*/
return 0;
}

View File

@ -269,22 +269,22 @@ rpmds rpmdsInit(/*@null@*/ rpmds ds)
/**
* Find a dependency set element using binary search.
* @param ds dependency set to search
* @param this dependency set element to find.
* @param ods dependency set element to find.
* @return dependency index (or -1 if not found)
*/
/*@null@*/
int rpmdsFind(rpmds ds, /*@null@*/ rpmds this)
/*@modifies ds, this @*/;
int rpmdsFind(rpmds ds, /*@null@*/ rpmds ods)
/*@modifies ds, ods @*/;
/**
* Merge a dependency set maintaining (N,EVR,Flags) sorted order.
* @retval *dsp (merged) dependency set
* @param this dependency set to merge
* @param ods dependency set to merge
* @return (merged) dependency index
*/
/*@null@*/
int rpmdsMerge(/*@out@*/ rpmds * dsp, /*@null@*/ rpmds this)
/*@modifies *dsp, this @*/;
int rpmdsMerge(/*@out@*/ rpmds * dsp, /*@null@*/ rpmds ods)
/*@modifies *dsp, ods @*/;
/**
* Compare two versioned dependency ranges, looking for overlap.

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-12-21 21:09-0500\n"
"POT-Creation-Date: 2002-12-23 15:42-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"
@ -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:425
#: build/parsePreamble.c:588 build/parseSpec.c:426
#, 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:159
#: build/parseSpec.c:160
#, c-format
msgid "line %d: %s\n"
msgstr "øádek %d: %s\n"
#. XXX Fstrerror
#: build/parseSpec.c:211
#: build/parseSpec.c:212
#, c-format
msgid "Unable to open %s: %s\n"
msgstr "Nemohu otevøít %s: %s\n"
#: build/parseSpec.c:227
#: build/parseSpec.c:228
#, c-format
msgid "Unclosed %%if\n"
msgstr "Neuzavøený %%if\n"
#: build/parseSpec.c:299
#: build/parseSpec.c:300
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr "%s:%d: parseExpressionBoolean vrátil %d\n"
#: build/parseSpec.c:308
#: build/parseSpec.c:309
#, 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:320
#: build/parseSpec.c:321
#, 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:334 build/parseSpec.c:343
#: build/parseSpec.c:335 build/parseSpec.c:344
#, c-format
msgid "malformed %%include statement\n"
msgstr "po¹kozený pøíkaz %%include\n"
#: build/parseSpec.c:543
#: build/parseSpec.c:544
msgid "No compatible architectures found for build\n"
msgstr "Nenalezeny ¾ádné kompatibilní architektury pro sestavení\n"
#: build/parseSpec.c:601
#: build/parseSpec.c:602
#, c-format
msgid "Package has no %%description: %s\n"
msgstr "Balíèek nemá ¾ádné %%description: %s\n"
@ -3126,41 +3126,41 @@ msgstr ""
msgid "removed db environment %s/%s\n"
msgstr ""
#: rpmdb/db3.c:287
#: rpmdb/db3.c:291
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
#: rpmdb/db3.c:769
#: rpmdb/db3.c:764
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
#: rpmdb/db3.c:836
#: rpmdb/db3.c:831
#, c-format
msgid "verified db index %s/%s\n"
msgstr ""
#: rpmdb/db3.c:1066
#: rpmdb/db3.c:1069
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
#: rpmdb/db3.c:1303
#: rpmdb/db3.c:1306
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "nemohu vytvoøit %s: %s\n"
#: rpmdb/db3.c:1305
#: rpmdb/db3.c:1308
msgid "exclusive"
msgstr ""
#: rpmdb/db3.c:1305
#: rpmdb/db3.c:1308
#, fuzzy
msgid "shared"
msgstr "sdílen v síti "
#: rpmdb/db3.c:1309
#: rpmdb/db3.c:1312
#, 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-21 21:09-0500\n"
"POT-Creation-Date: 2002-12-23 15:42-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"
@ -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:425
#: build/parsePreamble.c:588 build/parseSpec.c:426
#, 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:159
#: build/parseSpec.c:160
#, c-format
msgid "line %d: %s\n"
msgstr "linie %d: %s\n"
#. XXX Fstrerror
#: build/parseSpec.c:211
#: build/parseSpec.c:212
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
"Kunne ikke åbne %s: %s\n"
"\n"
#: build/parseSpec.c:227
#: build/parseSpec.c:228
#, c-format
msgid "Unclosed %%if\n"
msgstr "Ikke-lukket %%if\n"
#: build/parseSpec.c:299
#: build/parseSpec.c:300
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr "%s:%d: parseExpressionBoolean returnerer %d\n"
#: build/parseSpec.c:308
#: build/parseSpec.c:309
#, 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:320
#: build/parseSpec.c:321
#, 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:334 build/parseSpec.c:343
#: build/parseSpec.c:335 build/parseSpec.c:344
#, c-format
msgid "malformed %%include statement\n"
msgstr "forkert udført '%%include'-kommando\n"
#: build/parseSpec.c:543
#: build/parseSpec.c:544
#, fuzzy
msgid "No compatible architectures found for build\n"
msgstr "Ingen arkitekturer, der kan opbygges\n"
#: build/parseSpec.c:601
#: build/parseSpec.c:602
#, c-format
msgid "Package has no %%description: %s\n"
msgstr "Pakke har ingen %%description: %s\n"
@ -3138,40 +3138,40 @@ msgstr "lukkede db-milj
msgid "removed db environment %s/%s\n"
msgstr "fjernede db-miljø %s/%s\n"
#: rpmdb/db3.c:287
#: rpmdb/db3.c:291
#, fuzzy, c-format
msgid "opening db environment %s/%s %s\n"
msgstr "åbner db-miljø %s/%s %s\n"
#: rpmdb/db3.c:769
#: rpmdb/db3.c:764
#, fuzzy, c-format
msgid "closed db index %s/%s\n"
msgstr "lukkede db-indeks %s/%s\n"
#: rpmdb/db3.c:836
#: rpmdb/db3.c:831
#, fuzzy, c-format
msgid "verified db index %s/%s\n"
msgstr "lukkede db-indeks %s/%s\n"
#: rpmdb/db3.c:1066
#: rpmdb/db3.c:1069
#, 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:1303
#: rpmdb/db3.c:1306
#, 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:1305
#: rpmdb/db3.c:1308
msgid "exclusive"
msgstr "eksklusiv"
#: rpmdb/db3.c:1305
#: rpmdb/db3.c:1308
msgid "shared"
msgstr "delt"
#: rpmdb/db3.c:1309
#: rpmdb/db3.c:1312
#, 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-21 21:09-0500\n"
"POT-Creation-Date: 2002-12-23 15:42-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"
@ -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:425
#: build/parsePreamble.c:588 build/parseSpec.c:426
#, 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:159
#: build/parseSpec.c:160
#, fuzzy, c-format
msgid "line %d: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
# , c-format
#. XXX Fstrerror
#: build/parseSpec.c:211
#: build/parseSpec.c:212
#, fuzzy, c-format
msgid "Unable to open %s: %s\n"
msgstr "Öffnen von %s fehlgeschlagen\n"
#: build/parseSpec.c:227
#: build/parseSpec.c:228
#, c-format
msgid "Unclosed %%if\n"
msgstr ""
#: build/parseSpec.c:299
#: build/parseSpec.c:300
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr ""
#: build/parseSpec.c:308
#: build/parseSpec.c:309
#, c-format
msgid "%s:%d: Got a %%else with no %%if\n"
msgstr ""
#: build/parseSpec.c:320
#: build/parseSpec.c:321
#, c-format
msgid "%s:%d: Got a %%endif with no %%if\n"
msgstr ""
#: build/parseSpec.c:334 build/parseSpec.c:343
#: build/parseSpec.c:335 build/parseSpec.c:344
#, c-format
msgid "malformed %%include statement\n"
msgstr ""
#: build/parseSpec.c:543
#: build/parseSpec.c:544
#, fuzzy
msgid "No compatible architectures found for build\n"
msgstr "Paket-Architektur nicht überprüfen"
#: build/parseSpec.c:601
#: build/parseSpec.c:602
#, fuzzy, c-format
msgid "Package has no %%description: %s\n"
msgstr "Paket %s wird nicht in %s aufgeführt"
@ -3315,40 +3315,40 @@ msgstr ""
msgid "removed db environment %s/%s\n"
msgstr ""
#: rpmdb/db3.c:287
#: rpmdb/db3.c:291
#, fuzzy, c-format
msgid "opening db environment %s/%s %s\n"
msgstr "Datenbank aus der vorhandenen neu erstellen"
#: rpmdb/db3.c:769
#: rpmdb/db3.c:764
#, fuzzy, c-format
msgid "closed db index %s/%s\n"
msgstr "Datenbank aus der vorhandenen neu erstellen"
#: rpmdb/db3.c:836
#: rpmdb/db3.c:831
#, fuzzy, c-format
msgid "verified db index %s/%s\n"
msgstr "Datenbank aus der vorhandenen neu erstellen"
#: rpmdb/db3.c:1066
#: rpmdb/db3.c:1069
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "Datenbank aus der vorhandenen neu erstellen"
#: rpmdb/db3.c:1303
#: rpmdb/db3.c:1306
#, 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:1305
#: rpmdb/db3.c:1308
msgid "exclusive"
msgstr "exklusiv"
#: rpmdb/db3.c:1305
#: rpmdb/db3.c:1308
msgid "shared"
msgstr "geteilt"
#: rpmdb/db3.c:1309
#: rpmdb/db3.c:1312
#, 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-21 21:09-0500\n"
"POT-Creation-Date: 2002-12-23 15:42-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"
@ -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:425
#: build/parsePreamble.c:588 build/parseSpec.c:426
#, 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:159
#: build/parseSpec.c:160
#, fuzzy, c-format
msgid "line %d: %s\n"
msgstr "en voinut avata %s: %s"
#. XXX Fstrerror
#: build/parseSpec.c:211
#: build/parseSpec.c:212
#, fuzzy, c-format
msgid "Unable to open %s: %s\n"
msgstr "%s:n avaus epäonnistui\n"
#: build/parseSpec.c:227
#: build/parseSpec.c:228
#, c-format
msgid "Unclosed %%if\n"
msgstr ""
#: build/parseSpec.c:299
#: build/parseSpec.c:300
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr ""
#: build/parseSpec.c:308
#: build/parseSpec.c:309
#, c-format
msgid "%s:%d: Got a %%else with no %%if\n"
msgstr ""
#: build/parseSpec.c:320
#: build/parseSpec.c:321
#, c-format
msgid "%s:%d: Got a %%endif with no %%if\n"
msgstr ""
#: build/parseSpec.c:334 build/parseSpec.c:343
#: build/parseSpec.c:335 build/parseSpec.c:344
#, c-format
msgid "malformed %%include statement\n"
msgstr ""
#: build/parseSpec.c:543
#: build/parseSpec.c:544
#, fuzzy
msgid "No compatible architectures found for build\n"
msgstr "älä tarkista paketin arkkitehtuuria"
#: build/parseSpec.c:601
#: build/parseSpec.c:602
#, fuzzy, c-format
msgid "Package has no %%description: %s\n"
msgstr "paketti %s ei ole %s:ssä"
@ -3180,40 +3180,40 @@ msgstr ""
msgid "removed db environment %s/%s\n"
msgstr ""
#: rpmdb/db3.c:287
#: rpmdb/db3.c:291
#, fuzzy, c-format
msgid "opening db environment %s/%s %s\n"
msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
#: rpmdb/db3.c:769
#: rpmdb/db3.c:764
#, fuzzy, c-format
msgid "closed db index %s/%s\n"
msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
#: rpmdb/db3.c:836
#: rpmdb/db3.c:831
#, fuzzy, c-format
msgid "verified db index %s/%s\n"
msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
#: rpmdb/db3.c:1066
#: rpmdb/db3.c:1069
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
#: rpmdb/db3.c:1303
#: rpmdb/db3.c:1306
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "en voi saada %s lukitusta tietokantaan"
#: rpmdb/db3.c:1305
#: rpmdb/db3.c:1308
msgid "exclusive"
msgstr "poissulkevaa"
#: rpmdb/db3.c:1305
#: rpmdb/db3.c:1308
msgid "shared"
msgstr "jaettua"
#: rpmdb/db3.c:1309
#: rpmdb/db3.c:1312
#, 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-21 21:09-0500\n"
"POT-Creation-Date: 2002-12-23 15:42-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"
@ -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:425
#: build/parsePreamble.c:588 build/parseSpec.c:426
#, 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:159
#: build/parseSpec.c:160
#, fuzzy, c-format
msgid "line %d: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#. XXX Fstrerror
#: build/parseSpec.c:211
#: build/parseSpec.c:212
#, fuzzy, c-format
msgid "Unable to open %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: build/parseSpec.c:227
#: build/parseSpec.c:228
#, c-format
msgid "Unclosed %%if\n"
msgstr ""
#: build/parseSpec.c:299
#: build/parseSpec.c:300
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr ""
#: build/parseSpec.c:308
#: build/parseSpec.c:309
#, c-format
msgid "%s:%d: Got a %%else with no %%if\n"
msgstr ""
#: build/parseSpec.c:320
#: build/parseSpec.c:321
#, c-format
msgid "%s:%d: Got a %%endif with no %%if\n"
msgstr ""
#: build/parseSpec.c:334 build/parseSpec.c:343
#: build/parseSpec.c:335 build/parseSpec.c:344
#, c-format
msgid "malformed %%include statement\n"
msgstr ""
#: build/parseSpec.c:543
#: build/parseSpec.c:544
#, fuzzy
msgid "No compatible architectures found for build\n"
msgstr "%s ne peut tre construit sur cette architecture\n"
#: build/parseSpec.c:601
#: build/parseSpec.c:602
#, fuzzy, c-format
msgid "Package has no %%description: %s\n"
msgstr "aucun package n'a t spcifi pour la dsinstallation"
@ -3216,40 +3216,40 @@ msgstr ""
msgid "removed db environment %s/%s\n"
msgstr ""
#: rpmdb/db3.c:287
#: rpmdb/db3.c:291
#, fuzzy, c-format
msgid "opening db environment %s/%s %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: rpmdb/db3.c:769
#: rpmdb/db3.c:764
#, fuzzy, c-format
msgid "closed db index %s/%s\n"
msgstr "impossible d'ouvrir: %s\n"
#: rpmdb/db3.c:836
#: rpmdb/db3.c:831
#, fuzzy, c-format
msgid "verified db index %s/%s\n"
msgstr "impossible d'ouvrir: %s\n"
#: rpmdb/db3.c:1066
#: rpmdb/db3.c:1069
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "impossible d'ouvrir: %s\n"
#: rpmdb/db3.c:1303
#: rpmdb/db3.c:1306
#, 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:1305
#: rpmdb/db3.c:1308
msgid "exclusive"
msgstr ""
#: rpmdb/db3.c:1305
#: rpmdb/db3.c:1308
msgid "shared"
msgstr ""
#: rpmdb/db3.c:1309
#: rpmdb/db3.c:1312
#, 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-21 21:09-0500\n"
"POT-Creation-Date: 2002-12-23 15:42-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"
@ -872,7 +872,7 @@ msgstr ""
msgid "line %d: Illegal char '-' in %s: %s\n"
msgstr ""
#: build/parsePreamble.c:588 build/parseSpec.c:425
#: build/parsePreamble.c:588 build/parseSpec.c:426
#, 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:159
#: build/parseSpec.c:160
#, c-format
msgid "line %d: %s\n"
msgstr ""
#. XXX Fstrerror
#: build/parseSpec.c:211
#: build/parseSpec.c:212
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
#: build/parseSpec.c:227
#: build/parseSpec.c:228
#, c-format
msgid "Unclosed %%if\n"
msgstr ""
#: build/parseSpec.c:299
#: build/parseSpec.c:300
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr ""
#: build/parseSpec.c:308
#: build/parseSpec.c:309
#, c-format
msgid "%s:%d: Got a %%else with no %%if\n"
msgstr ""
#: build/parseSpec.c:320
#: build/parseSpec.c:321
#, c-format
msgid "%s:%d: Got a %%endif with no %%if\n"
msgstr ""
#: build/parseSpec.c:334 build/parseSpec.c:343
#: build/parseSpec.c:335 build/parseSpec.c:344
#, c-format
msgid "malformed %%include statement\n"
msgstr ""
#: build/parseSpec.c:543
#: build/parseSpec.c:544
msgid "No compatible architectures found for build\n"
msgstr ""
#: build/parseSpec.c:601
#: build/parseSpec.c:602
#, c-format
msgid "Package has no %%description: %s\n"
msgstr ""
@ -3030,40 +3030,40 @@ msgstr ""
msgid "removed db environment %s/%s\n"
msgstr ""
#: rpmdb/db3.c:287
#: rpmdb/db3.c:291
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
#: rpmdb/db3.c:769
#: rpmdb/db3.c:764
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
#: rpmdb/db3.c:836
#: rpmdb/db3.c:831
#, c-format
msgid "verified db index %s/%s\n"
msgstr ""
#: rpmdb/db3.c:1066
#: rpmdb/db3.c:1069
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
#: rpmdb/db3.c:1303
#: rpmdb/db3.c:1306
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
#: rpmdb/db3.c:1305
#: rpmdb/db3.c:1308
msgid "exclusive"
msgstr ""
#: rpmdb/db3.c:1305
#: rpmdb/db3.c:1308
msgid "shared"
msgstr ""
#: rpmdb/db3.c:1309
#: rpmdb/db3.c:1312
#, 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-21 21:09-0500\n"
"POT-Creation-Date: 2002-12-23 15:42-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"
@ -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:425
#: build/parsePreamble.c:588 build/parseSpec.c:426
#, 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:159
#: build/parseSpec.c:160
#, c-format
msgid "line %d: %s\n"
msgstr "lína %d: %s\n"
#. XXX Fstrerror
#: build/parseSpec.c:211
#: build/parseSpec.c:212
#, c-format
msgid "Unable to open %s: %s\n"
msgstr "Get ekki opnað %s: %s\n"
#: build/parseSpec.c:227
#: build/parseSpec.c:228
#, c-format
msgid "Unclosed %%if\n"
msgstr ""
#: build/parseSpec.c:299
#: build/parseSpec.c:300
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr ""
#: build/parseSpec.c:308
#: build/parseSpec.c:309
#, c-format
msgid "%s:%d: Got a %%else with no %%if\n"
msgstr ""
#: build/parseSpec.c:320
#: build/parseSpec.c:321
#, c-format
msgid "%s:%d: Got a %%endif with no %%if\n"
msgstr ""
#: build/parseSpec.c:334 build/parseSpec.c:343
#: build/parseSpec.c:335 build/parseSpec.c:344
#, c-format
msgid "malformed %%include statement\n"
msgstr ""
#: build/parseSpec.c:543
#: build/parseSpec.c:544
msgid "No compatible architectures found for build\n"
msgstr ""
#: build/parseSpec.c:601
#: build/parseSpec.c:602
#, c-format
msgid "Package has no %%description: %s\n"
msgstr ""
@ -3060,40 +3060,40 @@ msgstr "loka
msgid "removed db environment %s/%s\n"
msgstr "fjarlægði gagnagrunnsumhverfi %s/%s\n"
#: rpmdb/db3.c:287
#: rpmdb/db3.c:291
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr "opna gagnagrunnsumhverfi %s/%s %s\n"
#: rpmdb/db3.c:769
#: rpmdb/db3.c:764
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
#: rpmdb/db3.c:836
#: rpmdb/db3.c:831
#, c-format
msgid "verified db index %s/%s\n"
msgstr ""
#: rpmdb/db3.c:1066
#: rpmdb/db3.c:1069
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
#: rpmdb/db3.c:1303
#: rpmdb/db3.c:1306
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
#: rpmdb/db3.c:1305
#: rpmdb/db3.c:1308
msgid "exclusive"
msgstr "einka"
#: rpmdb/db3.c:1305
#: rpmdb/db3.c:1308
msgid "shared"
msgstr "deildann"
#: rpmdb/db3.c:1309
#: rpmdb/db3.c:1312
#, 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-21 21:09-0500\n"
"POT-Creation-Date: 2002-12-23 15:42-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"
@ -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:425
#: build/parsePreamble.c:588 build/parseSpec.c:426
#, 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:159
#: build/parseSpec.c:160
#, fuzzy, c-format
msgid "line %d: %s\n"
msgstr "%d 行目: %s"
#. XXX Fstrerror
#: build/parseSpec.c:211
#: build/parseSpec.c:212
#, fuzzy, c-format
msgid "Unable to open %s: %s\n"
msgstr "オープンできません: %s\n"
#: build/parseSpec.c:227
#: build/parseSpec.c:228
#, fuzzy, c-format
msgid "Unclosed %%if\n"
msgstr "%%if が閉じていません"
#: build/parseSpec.c:299
#: build/parseSpec.c:300
#, fuzzy, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr "%s%d: parseExpressionBoolean が %d を返しました"
#: build/parseSpec.c:308
#: build/parseSpec.c:309
#, fuzzy, c-format
msgid "%s:%d: Got a %%else with no %%if\n"
msgstr "%s:%d: if がないのに %%else があります"
#: build/parseSpec.c:320
#: build/parseSpec.c:321
#, fuzzy, c-format
msgid "%s:%d: Got a %%endif with no %%if\n"
msgstr "%s:%d: if がないのに %%endif があります"
#: build/parseSpec.c:334 build/parseSpec.c:343
#: build/parseSpec.c:335 build/parseSpec.c:344
#, fuzzy, c-format
msgid "malformed %%include statement\n"
msgstr "おかしな %%include ステートメントです"
#: build/parseSpec.c:543
#: build/parseSpec.c:544
#, fuzzy
msgid "No compatible architectures found for build\n"
msgstr "作成(build)可能なアーキテクチャはありません"
#: build/parseSpec.c:601
#: build/parseSpec.c:602
#, fuzzy, c-format
msgid "Package has no %%description: %s\n"
msgstr "パッケージには %%description がありません: %s"
@ -3229,40 +3229,40 @@ msgstr "%s
msgid "removed db environment %s/%s\n"
msgstr "%s 用の file インデックスを削除します\n"
#: rpmdb/db3.c:287
#: rpmdb/db3.c:291
#, fuzzy, c-format
msgid "opening db environment %s/%s %s\n"
msgstr "%s 用の file インデックスを削除します\n"
#: rpmdb/db3.c:769
#: rpmdb/db3.c:764
#, fuzzy, c-format
msgid "closed db index %s/%s\n"
msgstr "%s 用の file インデックスを削除します\n"
#: rpmdb/db3.c:836
#: rpmdb/db3.c:831
#, fuzzy, c-format
msgid "verified db index %s/%s\n"
msgstr "%s 用の file インデックスを削除します\n"
#: rpmdb/db3.c:1066
#: rpmdb/db3.c:1069
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "データベースモード 0x%x のオープン (%s)\n"
#: rpmdb/db3.c:1303
#: rpmdb/db3.c:1306
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "データベースの %s をロックできません"
#: rpmdb/db3.c:1305
#: rpmdb/db3.c:1308
msgid "exclusive"
msgstr "除外"
#: rpmdb/db3.c:1305
#: rpmdb/db3.c:1308
msgid "shared"
msgstr "共有"
#: rpmdb/db3.c:1309
#: rpmdb/db3.c:1312
#, 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-21 21:09-0500\n"
"POT-Creation-Date: 2002-12-23 15:42-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"
@ -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:425
#: build/parsePreamble.c:588 build/parseSpec.c:426
#, 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:159
#: build/parseSpec.c:160
#, c-format
msgid "line %d: %s\n"
msgstr "%d 번째 행: %s\n"
#. XXX Fstrerror
#: build/parseSpec.c:211
#: build/parseSpec.c:212
#, c-format
msgid "Unable to open %s: %s\n"
msgstr "%s(을)를 열 수 없음: %s\n"
#: build/parseSpec.c:227
#: build/parseSpec.c:228
#, c-format
msgid "Unclosed %%if\n"
msgstr "%%if가 닫히지 않았습니다\n"
#: build/parseSpec.c:299
#: build/parseSpec.c:300
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr "%s:%d: parseExpressionBoolean에서 %d 값이 반환되었습니다\n"
#: build/parseSpec.c:308
#: build/parseSpec.c:309
#, c-format
msgid "%s:%d: Got a %%else with no %%if\n"
msgstr "%s:%d: %%else가 %%if 없이 사용되었습니다\n"
#: build/parseSpec.c:320
#: build/parseSpec.c:321
#, c-format
msgid "%s:%d: Got a %%endif with no %%if\n"
msgstr "%s:%d: %%endif가 %%if 없이 사용되었습니다\n"
#: build/parseSpec.c:334 build/parseSpec.c:343
#: build/parseSpec.c:335 build/parseSpec.c:344
#, c-format
msgid "malformed %%include statement\n"
msgstr "%%include 문이 올바르지 않습니다\n"
#: build/parseSpec.c:543
#: build/parseSpec.c:544
msgid "No compatible architectures found for build\n"
msgstr "패키지 제작에 호환하는 아키텍쳐를 찾을 수 없습니다\n"
#: build/parseSpec.c:601
#: build/parseSpec.c:602
#, c-format
msgid "Package has no %%description: %s\n"
msgstr "패키지에 %%description이 없음: %s\n"
@ -3114,40 +3114,40 @@ msgstr "
msgid "removed db environment %s/%s\n"
msgstr "삭제된 db 환경 %s/%s\n"
#: rpmdb/db3.c:287
#: rpmdb/db3.c:291
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr "여는중 db 환경 %s/%s %s\n"
#: rpmdb/db3.c:769
#: rpmdb/db3.c:764
#, c-format
msgid "closed db index %s/%s\n"
msgstr "닫힌 db 인덱스 %s/%s\n"
#: rpmdb/db3.c:836
#: rpmdb/db3.c:831
#, c-format
msgid "verified db index %s/%s\n"
msgstr "검증된 db 인덱스 %s/%s\n"
#: rpmdb/db3.c:1066
#: rpmdb/db3.c:1069
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "여는중 db 인덱스 %s/%s %s 모드=0x%x\n"
#: rpmdb/db3.c:1303
#: rpmdb/db3.c:1306
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "%2$s/%3$s의 잠금된(lock) %1$s(을)를 얻을 수 없습니다\n"
#: rpmdb/db3.c:1305
#: rpmdb/db3.c:1308
msgid "exclusive"
msgstr "폐쇄적(exclusive)"
#: rpmdb/db3.c:1305
#: rpmdb/db3.c:1308
msgid "shared"
msgstr "공유됨"
#: rpmdb/db3.c:1309
#: rpmdb/db3.c:1312
#, 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-21 21:09-0500\n"
"POT-Creation-Date: 2002-12-23 15:42-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"
@ -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:425
#: build/parsePreamble.c:588 build/parseSpec.c:426
#, 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:159
#: build/parseSpec.c:160
#, c-format
msgid "line %d: %s\n"
msgstr "linje %d: %s\n"
#. XXX Fstrerror
#: build/parseSpec.c:211
#: build/parseSpec.c:212
#, c-format
msgid "Unable to open %s: %s\n"
msgstr "Kan ikke åpne %s: %s\n"
#: build/parseSpec.c:227
#: build/parseSpec.c:228
#, c-format
msgid "Unclosed %%if\n"
msgstr "Åpen %%if\n"
#: build/parseSpec.c:299
#: build/parseSpec.c:300
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr "%s:%d: parseExpressionBoolean returnerer %d\n"
#: build/parseSpec.c:308
#: build/parseSpec.c:309
#, c-format
msgid "%s:%d: Got a %%else with no %%if\n"
msgstr "%s:%d: %%else uten %%if\n"
#: build/parseSpec.c:320
#: build/parseSpec.c:321
#, c-format
msgid "%s:%d: Got a %%endif with no %%if\n"
msgstr "%s:%d: %%endif uten %%if\n"
#: build/parseSpec.c:334 build/parseSpec.c:343
#: build/parseSpec.c:335 build/parseSpec.c:344
#, c-format
msgid "malformed %%include statement\n"
msgstr "ugyldig %%include utsagn\n"
#: build/parseSpec.c:543
#: build/parseSpec.c:544
msgid "No compatible architectures found for build\n"
msgstr "Ingen kompatible arkitekturer funnet for bygging\n"
#: build/parseSpec.c:601
#: build/parseSpec.c:602
#, c-format
msgid "Package has no %%description: %s\n"
msgstr "Pakken har ingen %%description: %s\n"
@ -3092,40 +3092,40 @@ msgstr ""
msgid "removed db environment %s/%s\n"
msgstr ""
#: rpmdb/db3.c:287
#: rpmdb/db3.c:291
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
#: rpmdb/db3.c:769
#: rpmdb/db3.c:764
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
#: rpmdb/db3.c:836
#: rpmdb/db3.c:831
#, c-format
msgid "verified db index %s/%s\n"
msgstr ""
#: rpmdb/db3.c:1066
#: rpmdb/db3.c:1069
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
#: rpmdb/db3.c:1303
#: rpmdb/db3.c:1306
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
#: rpmdb/db3.c:1305
#: rpmdb/db3.c:1308
msgid "exclusive"
msgstr ""
#: rpmdb/db3.c:1305
#: rpmdb/db3.c:1308
msgid "shared"
msgstr ""
#: rpmdb/db3.c:1309
#: rpmdb/db3.c:1312
#, 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-21 21:09-0500\n"
"POT-Creation-Date: 2002-12-23 15:42-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"
@ -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:425
#: build/parsePreamble.c:588 build/parseSpec.c:426
#, 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:159
#: build/parseSpec.c:160
#, fuzzy, c-format
msgid "line %d: %s\n"
msgstr "linia %d: %s"
#. XXX Fstrerror
#: build/parseSpec.c:211
#: build/parseSpec.c:212
#, fuzzy, c-format
msgid "Unable to open %s: %s\n"
msgstr "Nie mo¿na otworzyæ: %s\n"
#: build/parseSpec.c:227
#: build/parseSpec.c:228
#, fuzzy, c-format
msgid "Unclosed %%if\n"
msgstr "Niedomkniête %%if"
#: build/parseSpec.c:299
#: build/parseSpec.c:300
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr ""
#: build/parseSpec.c:308
#: build/parseSpec.c:309
#, fuzzy, c-format
msgid "%s:%d: Got a %%else with no %%if\n"
msgstr "%s:%d: Napotkano %%else bez if"
#: build/parseSpec.c:320
#: build/parseSpec.c:321
#, fuzzy, c-format
msgid "%s:%d: Got a %%endif with no %%if\n"
msgstr "%s:%d: Napotkano %%endif bez if"
#: build/parseSpec.c:334 build/parseSpec.c:343
#: build/parseSpec.c:335 build/parseSpec.c:344
#, fuzzy, c-format
msgid "malformed %%include statement\n"
msgstr "b³ednie sformatowany wpis %%include"
#: build/parseSpec.c:543
#: build/parseSpec.c:544
#, fuzzy
msgid "No compatible architectures found for build\n"
msgstr "Nie mo¿na budowaæ na takie architektury"
#: build/parseSpec.c:601
#: build/parseSpec.c:602
#, fuzzy, c-format
msgid "Package has no %%description: %s\n"
msgstr "Pakiet nie ma %%description: %s"
@ -3183,40 +3183,40 @@ msgstr "usuwanie indeksu plik
msgid "removed db environment %s/%s\n"
msgstr "usuwanie indeksu plików dla %s\n"
#: rpmdb/db3.c:287
#: rpmdb/db3.c:291
#, fuzzy, c-format
msgid "opening db environment %s/%s %s\n"
msgstr "usuwanie indeksu plików dla %s\n"
#: rpmdb/db3.c:769
#: rpmdb/db3.c:764
#, fuzzy, c-format
msgid "closed db index %s/%s\n"
msgstr "usuwanie indeksu plików dla %s\n"
#: rpmdb/db3.c:836
#: rpmdb/db3.c:831
#, fuzzy, c-format
msgid "verified db index %s/%s\n"
msgstr "usuwanie indeksu plików dla %s\n"
#: rpmdb/db3.c:1066
#: rpmdb/db3.c:1069
#, 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:1303
#: rpmdb/db3.c:1306
#, 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:1305
#: rpmdb/db3.c:1308
msgid "exclusive"
msgstr ""
#: rpmdb/db3.c:1305
#: rpmdb/db3.c:1308
msgid "shared"
msgstr ""
#: rpmdb/db3.c:1309
#: rpmdb/db3.c:1312
#, 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-21 21:09-0500\n"
"POT-Creation-Date: 2002-12-23 15:42-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"
@ -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:425
#: build/parsePreamble.c:588 build/parseSpec.c:426
#, 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:159
#: build/parseSpec.c:160
#, c-format
msgid "line %d: %s\n"
msgstr "linha %d: %s\n"
#. XXX Fstrerror
#: build/parseSpec.c:211
#: build/parseSpec.c:212
#, c-format
msgid "Unable to open %s: %s\n"
msgstr "Incapaz de aceder ao %s: %s\n"
#: build/parseSpec.c:227
#: build/parseSpec.c:228
#, c-format
msgid "Unclosed %%if\n"
msgstr "%%if não fechado\n"
#: build/parseSpec.c:299
#: build/parseSpec.c:300
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr "%s:%d: o parseExpressionBoolean devolve %d\n"
#: build/parseSpec.c:308
#: build/parseSpec.c:309
#, 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:320
#: build/parseSpec.c:321
#, 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:334 build/parseSpec.c:343
#: build/parseSpec.c:335 build/parseSpec.c:344
#, c-format
msgid "malformed %%include statement\n"
msgstr "instrução %%include desorganizada\n"
#: build/parseSpec.c:543
#: build/parseSpec.c:544
msgid "No compatible architectures found for build\n"
msgstr "Não foram encontradas arquitecturas compatíveis para as quais criar\n"
#: build/parseSpec.c:601
#: build/parseSpec.c:602
#, c-format
msgid "Package has no %%description: %s\n"
msgstr "O pacote não tem uma %%description: %s\n"
@ -3125,40 +3125,40 @@ msgstr "fechei o ambiente do db %s/%s\n"
msgid "removed db environment %s/%s\n"
msgstr "removi o ambiente do db %s/%s\n"
#: rpmdb/db3.c:287
#: rpmdb/db3.c:291
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr "a aceder ao ambiente do db %s/%s %s\n"
#: rpmdb/db3.c:769
#: rpmdb/db3.c:764
#, c-format
msgid "closed db index %s/%s\n"
msgstr "fechei o índice do db %s/%s\n"
#: rpmdb/db3.c:836
#: rpmdb/db3.c:831
#, c-format
msgid "verified db index %s/%s\n"
msgstr "verifiquei o índice do db %s/%s\n"
#: rpmdb/db3.c:1066
#: rpmdb/db3.c:1069
#, 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:1303
#: rpmdb/db3.c:1306
#, 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:1305
#: rpmdb/db3.c:1308
msgid "exclusive"
msgstr "exclusivo"
#: rpmdb/db3.c:1305
#: rpmdb/db3.c:1308
msgid "shared"
msgstr "partilhado"
#: rpmdb/db3.c:1309
#: rpmdb/db3.c:1312
#, 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-21 21:09-0500\n"
"POT-Creation-Date: 2002-12-23 15:42-0500\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8-bit\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:425
#: build/parsePreamble.c:588 build/parseSpec.c:426
#, 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:159
#: build/parseSpec.c:160
#, 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:211
#: build/parseSpec.c:212
#, fuzzy, c-format
msgid "Unable to open %s: %s\n"
msgstr "No consegui abrir: %s\n"
#: build/parseSpec.c:227
#: build/parseSpec.c:228
#, c-format
msgid "Unclosed %%if\n"
msgstr ""
#: build/parseSpec.c:299
#: build/parseSpec.c:300
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr ""
#: build/parseSpec.c:308
#: build/parseSpec.c:309
#, c-format
msgid "%s:%d: Got a %%else with no %%if\n"
msgstr ""
#: build/parseSpec.c:320
#: build/parseSpec.c:321
#, c-format
msgid "%s:%d: Got a %%endif with no %%if\n"
msgstr ""
#: build/parseSpec.c:334 build/parseSpec.c:343
#: build/parseSpec.c:335 build/parseSpec.c:344
#, c-format
msgid "malformed %%include statement\n"
msgstr ""
# , c-format
#: build/parseSpec.c:543
#: build/parseSpec.c:544
#, fuzzy
msgid "No compatible architectures found for build\n"
msgstr "%s no pode ser construido nesta arquitetura\n"
#: build/parseSpec.c:601
#: build/parseSpec.c:602
#, fuzzy, c-format
msgid "Package has no %%description: %s\n"
msgstr "no foi passado pacote para desinstalao"
@ -3381,40 +3381,40 @@ msgstr ""
msgid "removed db environment %s/%s\n"
msgstr ""
#: rpmdb/db3.c:287
#: rpmdb/db3.c:291
#, fuzzy, c-format
msgid "opening db environment %s/%s %s\n"
msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
#: rpmdb/db3.c:769
#: rpmdb/db3.c:764
#, fuzzy, c-format
msgid "closed db index %s/%s\n"
msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
#: rpmdb/db3.c:836
#: rpmdb/db3.c:831
#, fuzzy, c-format
msgid "verified db index %s/%s\n"
msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
#: rpmdb/db3.c:1066
#: rpmdb/db3.c:1069
#, 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:1303
#: rpmdb/db3.c:1306
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "no foi passado pacote para desinstalao"
#: rpmdb/db3.c:1305
#: rpmdb/db3.c:1308
msgid "exclusive"
msgstr ""
#: rpmdb/db3.c:1305
#: rpmdb/db3.c:1308
msgid "shared"
msgstr ""
#: rpmdb/db3.c:1309
#: rpmdb/db3.c:1312
#, 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-21 21:09-0500\n"
"POT-Creation-Date: 2002-12-23 15:42-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"
@ -872,7 +872,7 @@ msgstr ""
msgid "line %d: Illegal char '-' in %s: %s\n"
msgstr ""
#: build/parsePreamble.c:588 build/parseSpec.c:425
#: build/parsePreamble.c:588 build/parseSpec.c:426
#, 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:159
#: build/parseSpec.c:160
#, c-format
msgid "line %d: %s\n"
msgstr ""
#. XXX Fstrerror
#: build/parseSpec.c:211
#: build/parseSpec.c:212
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
#: build/parseSpec.c:227
#: build/parseSpec.c:228
#, c-format
msgid "Unclosed %%if\n"
msgstr ""
#: build/parseSpec.c:299
#: build/parseSpec.c:300
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr ""
#: build/parseSpec.c:308
#: build/parseSpec.c:309
#, c-format
msgid "%s:%d: Got a %%else with no %%if\n"
msgstr ""
#: build/parseSpec.c:320
#: build/parseSpec.c:321
#, c-format
msgid "%s:%d: Got a %%endif with no %%if\n"
msgstr ""
#: build/parseSpec.c:334 build/parseSpec.c:343
#: build/parseSpec.c:335 build/parseSpec.c:344
#, c-format
msgid "malformed %%include statement\n"
msgstr ""
#: build/parseSpec.c:543
#: build/parseSpec.c:544
msgid "No compatible architectures found for build\n"
msgstr ""
#: build/parseSpec.c:601
#: build/parseSpec.c:602
#, c-format
msgid "Package has no %%description: %s\n"
msgstr ""
@ -3030,40 +3030,40 @@ msgstr ""
msgid "removed db environment %s/%s\n"
msgstr ""
#: rpmdb/db3.c:287
#: rpmdb/db3.c:291
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
#: rpmdb/db3.c:769
#: rpmdb/db3.c:764
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
#: rpmdb/db3.c:836
#: rpmdb/db3.c:831
#, c-format
msgid "verified db index %s/%s\n"
msgstr ""
#: rpmdb/db3.c:1066
#: rpmdb/db3.c:1069
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
#: rpmdb/db3.c:1303
#: rpmdb/db3.c:1306
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
#: rpmdb/db3.c:1305
#: rpmdb/db3.c:1308
msgid "exclusive"
msgstr ""
#: rpmdb/db3.c:1305
#: rpmdb/db3.c:1308
msgid "shared"
msgstr ""
#: rpmdb/db3.c:1309
#: rpmdb/db3.c:1312
#, 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-21 21:09-0500\n"
"POT-Creation-Date: 2002-12-23 15:42-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"
@ -878,7 +878,7 @@ msgstr ""
msgid "line %d: Illegal char '-' in %s: %s\n"
msgstr ""
#: build/parsePreamble.c:588 build/parseSpec.c:425
#: build/parsePreamble.c:588 build/parseSpec.c:426
#, 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:159
#: build/parseSpec.c:160
#, c-format
msgid "line %d: %s\n"
msgstr ""
#. XXX Fstrerror
#: build/parseSpec.c:211
#: build/parseSpec.c:212
#, c-format
msgid "Unable to open %s: %s\n"
msgstr ""
#: build/parseSpec.c:227
#: build/parseSpec.c:228
#, c-format
msgid "Unclosed %%if\n"
msgstr ""
#: build/parseSpec.c:299
#: build/parseSpec.c:300
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr ""
#: build/parseSpec.c:308
#: build/parseSpec.c:309
#, c-format
msgid "%s:%d: Got a %%else with no %%if\n"
msgstr ""
#: build/parseSpec.c:320
#: build/parseSpec.c:321
#, c-format
msgid "%s:%d: Got a %%endif with no %%if\n"
msgstr ""
#: build/parseSpec.c:334 build/parseSpec.c:343
#: build/parseSpec.c:335 build/parseSpec.c:344
#, c-format
msgid "malformed %%include statement\n"
msgstr ""
#: build/parseSpec.c:543
#: build/parseSpec.c:544
msgid "No compatible architectures found for build\n"
msgstr ""
#: build/parseSpec.c:601
#: build/parseSpec.c:602
#, c-format
msgid "Package has no %%description: %s\n"
msgstr ""
@ -3036,40 +3036,40 @@ msgstr ""
msgid "removed db environment %s/%s\n"
msgstr ""
#: rpmdb/db3.c:287
#: rpmdb/db3.c:291
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
#: rpmdb/db3.c:769
#: rpmdb/db3.c:764
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
#: rpmdb/db3.c:836
#: rpmdb/db3.c:831
#, c-format
msgid "verified db index %s/%s\n"
msgstr ""
#: rpmdb/db3.c:1066
#: rpmdb/db3.c:1069
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
#: rpmdb/db3.c:1303
#: rpmdb/db3.c:1306
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
#: rpmdb/db3.c:1305
#: rpmdb/db3.c:1308
msgid "exclusive"
msgstr ""
#: rpmdb/db3.c:1305
#: rpmdb/db3.c:1308
msgid "shared"
msgstr ""
#: rpmdb/db3.c:1309
#: rpmdb/db3.c:1312
#, 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-21 21:09-0500\n"
"POT-Creation-Date: 2002-12-23 15:42-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"
@ -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:425
#: build/parsePreamble.c:588 build/parseSpec.c:426
#, 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:159
#: build/parseSpec.c:160
#, c-format
msgid "line %d: %s\n"
msgstr "ÓÔÒÏËÁ %d: %s\n"
#. XXX Fstrerror
#: build/parseSpec.c:211
#: build/parseSpec.c:212
#, c-format
msgid "Unable to open %s: %s\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
#: build/parseSpec.c:227
#: build/parseSpec.c:228
#, c-format
msgid "Unclosed %%if\n"
msgstr "îÅÚÁËÒÙÔÙÊ %%if\n"
#: build/parseSpec.c:299
#: build/parseSpec.c:300
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr "%s:%d: parseExpressionBoolean ËÏÄ ×ÏÚ×ÒÁÔÁ: %d\n"
#: build/parseSpec.c:308
#: build/parseSpec.c:309
#, c-format
msgid "%s:%d: Got a %%else with no %%if\n"
msgstr "%s:%d: îÁÊÄÅÎ %%else ÂÅÚ %%if\n"
#: build/parseSpec.c:320
#: build/parseSpec.c:321
#, c-format
msgid "%s:%d: Got a %%endif with no %%if\n"
msgstr "%s:%d: îÁÊÄÅÎ %%endif ÂÅÚ %%if\n"
#: build/parseSpec.c:334 build/parseSpec.c:343
#: build/parseSpec.c:335 build/parseSpec.c:344
#, c-format
msgid "malformed %%include statement\n"
msgstr "ÎÅ×ÅÒÎÏÅ ÏÂßÑ×ÌÅÎÉÅ %%include\n"
#: build/parseSpec.c:543
#: build/parseSpec.c:544
msgid "No compatible architectures found for build\n"
msgstr "îÅ ÎÁÊÄÅÎÙ ÓÏ×ÍÅÓÔÉÍÙÅ ÁÒÈÉÔÅËÔÕÒÙ ÄÌÑ ÓÂÏÒËÉ.\n"
#: build/parseSpec.c:601
#: build/parseSpec.c:602
#, c-format
msgid "Package has no %%description: %s\n"
msgstr "ðÁËÅÔ ÎÅ ÉÍÅÅÔ %%description: %s\n"
@ -3081,40 +3081,40 @@ msgstr "
msgid "removed db environment %s/%s\n"
msgstr "ÕÄÁÌÅÎÏ ÏËÒÕÖÅÎÉÅ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s\n"
#: rpmdb/db3.c:287
#: rpmdb/db3.c:291
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr "ÏÔËÒÙ×ÁÅÔÓÑ ÏËÒÕÖÅÎÉÅ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s %s\n"
#: rpmdb/db3.c:769
#: rpmdb/db3.c:764
#, c-format
msgid "closed db index %s/%s\n"
msgstr "ÚÁËÒÙÔ ÉÎÄÅËÓ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s\n"
#: rpmdb/db3.c:836
#: rpmdb/db3.c:831
#, c-format
msgid "verified db index %s/%s\n"
msgstr "ÐÒÏ×ÅÒÅÎ ÉÎÄÅËÓ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s\n"
#: rpmdb/db3.c:1066
#: rpmdb/db3.c:1069
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "ÏÔËÒÙ×ÁÅÔÓÑ ÉÎÄÅËÓ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s %s mode=0x%x\n"
#: rpmdb/db3.c:1303
#: rpmdb/db3.c:1306
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÏÌÕÞÉÔØ ÂÌÏËÉÒÏ×ËÕ %s ÎÁ %s/%s\n"
#: rpmdb/db3.c:1305
#: rpmdb/db3.c:1308
msgid "exclusive"
msgstr "ÉÓËÌÀÞÉÔÅÌØÎÙÊ"
#: rpmdb/db3.c:1305
#: rpmdb/db3.c:1308
msgid "shared"
msgstr "ÒÁÚÄÅÌÑÅÍÙÊ"
#: rpmdb/db3.c:1309
#: rpmdb/db3.c:1312
#, 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-21 21:09-0500\n"
"POT-Creation-Date: 2002-12-23 15:42-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"
@ -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:425
#: build/parsePreamble.c:588 build/parseSpec.c:426
#, 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:159
#: build/parseSpec.c:160
#, fuzzy, c-format
msgid "line %d: %s\n"
msgstr "riadok %d: %s"
#. XXX Fstrerror
#: build/parseSpec.c:211
#: build/parseSpec.c:212
#, fuzzy, c-format
msgid "Unable to open %s: %s\n"
msgstr "otvorenie zlyhalo: %s\n"
#: build/parseSpec.c:227
#: build/parseSpec.c:228
#, fuzzy, c-format
msgid "Unclosed %%if\n"
msgstr "Neuzavretý %%if"
#: build/parseSpec.c:299
#: build/parseSpec.c:300
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr ""
#: build/parseSpec.c:308
#: build/parseSpec.c:309
#, fuzzy, c-format
msgid "%s:%d: Got a %%else with no %%if\n"
msgstr "%s:%d: %%else bez if"
#: build/parseSpec.c:320
#: build/parseSpec.c:321
#, fuzzy, c-format
msgid "%s:%d: Got a %%endif with no %%if\n"
msgstr "%s:%d: %%endif bez if"
#: build/parseSpec.c:334 build/parseSpec.c:343
#: build/parseSpec.c:335 build/parseSpec.c:344
#, fuzzy, c-format
msgid "malformed %%include statement\n"
msgstr "znetvorený príkaz %%include"
#: build/parseSpec.c:543
#: build/parseSpec.c:544
#, fuzzy
msgid "No compatible architectures found for build\n"
msgstr "®iadne zostaviteµné architektúry"
#: build/parseSpec.c:601
#: build/parseSpec.c:602
#, fuzzy, c-format
msgid "Package has no %%description: %s\n"
msgstr "Balík neobsahuje %%description: %s"
@ -3179,40 +3179,40 @@ msgstr "odstra
msgid "removed db environment %s/%s\n"
msgstr "odstraòuje sa index súborov pre %s\n"
#: rpmdb/db3.c:287
#: rpmdb/db3.c:291
#, fuzzy, c-format
msgid "opening db environment %s/%s %s\n"
msgstr "odstraòuje sa index súborov pre %s\n"
#: rpmdb/db3.c:769
#: rpmdb/db3.c:764
#, fuzzy, c-format
msgid "closed db index %s/%s\n"
msgstr "odstraòuje sa index súborov pre %s\n"
#: rpmdb/db3.c:836
#: rpmdb/db3.c:831
#, fuzzy, c-format
msgid "verified db index %s/%s\n"
msgstr "odstraòuje sa index súborov pre %s\n"
#: rpmdb/db3.c:1066
#: rpmdb/db3.c:1069
#, 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:1303
#: rpmdb/db3.c:1306
#, 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:1305
#: rpmdb/db3.c:1308
msgid "exclusive"
msgstr "výhradný"
#: rpmdb/db3.c:1305
#: rpmdb/db3.c:1308
msgid "shared"
msgstr "zdieµaný"
#: rpmdb/db3.c:1309
#: rpmdb/db3.c:1312
#, 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.344 2002/12/22 02:11:19 jbj Exp $
# $Id: sl.po,v 1.345 2002/12/23 20:59:03 jbj Exp $
#
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-12-21 21:09-0500\n"
"POT-Creation-Date: 2002-12-23 15:42-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"
@ -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:425
#: build/parsePreamble.c:588 build/parseSpec.c:426
#, 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:159
#: build/parseSpec.c:160
#, fuzzy, c-format
msgid "line %d: %s\n"
msgstr "vrstica %d: %s"
#. XXX Fstrerror
#: build/parseSpec.c:211
#: build/parseSpec.c:212
#, c-format
msgid "Unable to open %s: %s\n"
msgstr "Ni mo¾no odpreti %s: %s\n"
#: build/parseSpec.c:227
#: build/parseSpec.c:228
#, fuzzy, c-format
msgid "Unclosed %%if\n"
msgstr "Nezakljuèeni %%if"
#: build/parseSpec.c:299
#: build/parseSpec.c:300
#, fuzzy, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr "%s:%d: parseExpressionBoolean vrne %d"
#: build/parseSpec.c:308
#: build/parseSpec.c:309
#, 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:320
#: build/parseSpec.c:321
#, 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:334 build/parseSpec.c:343
#: build/parseSpec.c:335 build/parseSpec.c:344
#, fuzzy, c-format
msgid "malformed %%include statement\n"
msgstr "Deformiran stavek %%include"
#: build/parseSpec.c:543
#: build/parseSpec.c:544
#, fuzzy
msgid "No compatible architectures found for build\n"
msgstr "Arhitektura za izgradnjo ni prisotna"
#: build/parseSpec.c:601
#: build/parseSpec.c:602
#, fuzzy, c-format
msgid "Package has no %%description: %s\n"
msgstr "V paketu manjka %%description: %s"
@ -3182,40 +3182,40 @@ msgstr "zaprto db okolje %s/%s\n"
msgid "removed db environment %s/%s\n"
msgstr "odstranjeno db okolje %s/%s\n"
#: rpmdb/db3.c:287
#: rpmdb/db3.c:291
#, fuzzy, c-format
msgid "opening db environment %s/%s %s\n"
msgstr "odpiranje db okolja %s/%s %s\n"
#: rpmdb/db3.c:769
#: rpmdb/db3.c:764
#, fuzzy, c-format
msgid "closed db index %s/%s\n"
msgstr "zaprto db kazalo %s/%s\n"
#: rpmdb/db3.c:836
#: rpmdb/db3.c:831
#, fuzzy, c-format
msgid "verified db index %s/%s\n"
msgstr "zaprto db kazalo %s/%s\n"
#: rpmdb/db3.c:1066
#: rpmdb/db3.c:1069
#, 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:1303
#: rpmdb/db3.c:1306
#, 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:1305
#: rpmdb/db3.c:1308
msgid "exclusive"
msgstr "izkljuèujoèe"
#: rpmdb/db3.c:1305
#: rpmdb/db3.c:1308
msgid "shared"
msgstr "skupno"
#: rpmdb/db3.c:1309
#: rpmdb/db3.c:1312
#, 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-21 21:09-0500\n"
"POT-Creation-Date: 2002-12-23 15:42-0500\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
@ -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:425
#: build/parsePreamble.c:588 build/parseSpec.c:426
#, 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:159
#: build/parseSpec.c:160
#, fuzzy, c-format
msgid "line %d: %s\n"
msgstr "neuspelo otvaranje %s: %s"
#. XXX Fstrerror
#: build/parseSpec.c:211
#: build/parseSpec.c:212
#, fuzzy, c-format
msgid "Unable to open %s: %s\n"
msgstr "neuspelo otvaranje %s\n"
#: build/parseSpec.c:227
#: build/parseSpec.c:228
#, c-format
msgid "Unclosed %%if\n"
msgstr ""
#: build/parseSpec.c:299
#: build/parseSpec.c:300
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr ""
#: build/parseSpec.c:308
#: build/parseSpec.c:309
#, c-format
msgid "%s:%d: Got a %%else with no %%if\n"
msgstr ""
#: build/parseSpec.c:320
#: build/parseSpec.c:321
#, c-format
msgid "%s:%d: Got a %%endif with no %%if\n"
msgstr ""
#: build/parseSpec.c:334 build/parseSpec.c:343
#: build/parseSpec.c:335 build/parseSpec.c:344
#, c-format
msgid "malformed %%include statement\n"
msgstr ""
#: build/parseSpec.c:543
#: build/parseSpec.c:544
#, fuzzy
msgid "No compatible architectures found for build\n"
msgstr "nemoj proveravati arhitekturu paketa"
#: build/parseSpec.c:601
#: build/parseSpec.c:602
#, fuzzy, c-format
msgid "Package has no %%description: %s\n"
msgstr "paket %s nije naveden u %s"
@ -3171,40 +3171,40 @@ msgstr ""
msgid "removed db environment %s/%s\n"
msgstr ""
#: rpmdb/db3.c:287
#: rpmdb/db3.c:291
#, fuzzy, c-format
msgid "opening db environment %s/%s %s\n"
msgstr "rekreiraj bazu podataka iz postojeæe baze"
#: rpmdb/db3.c:769
#: rpmdb/db3.c:764
#, fuzzy, c-format
msgid "closed db index %s/%s\n"
msgstr "rekreiraj bazu podataka iz postojeæe baze"
#: rpmdb/db3.c:836
#: rpmdb/db3.c:831
#, fuzzy, c-format
msgid "verified db index %s/%s\n"
msgstr "rekreiraj bazu podataka iz postojeæe baze"
#: rpmdb/db3.c:1066
#: rpmdb/db3.c:1069
#, 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:1303
#: rpmdb/db3.c:1306
#, 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:1305
#: rpmdb/db3.c:1308
msgid "exclusive"
msgstr "ekskluzivno"
#: rpmdb/db3.c:1305
#: rpmdb/db3.c:1308
msgid "shared"
msgstr "deljeno"
#: rpmdb/db3.c:1309
#: rpmdb/db3.c:1312
#, 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-21 21:09-0500\n"
"POT-Creation-Date: 2002-12-23 15:42-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"
@ -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:425
#: build/parsePreamble.c:588 build/parseSpec.c:426
#, 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:159
#: build/parseSpec.c:160
#, c-format
msgid "line %d: %s\n"
msgstr "rad %d: %s\n"
#. XXX Fstrerror
#: build/parseSpec.c:211
#: build/parseSpec.c:212
#, c-format
msgid "Unable to open %s: %s\n"
msgstr "Kan inte öppna %s: %s\n"
#: build/parseSpec.c:227
#: build/parseSpec.c:228
#, c-format
msgid "Unclosed %%if\n"
msgstr "Oavslutat %%if\n"
#: build/parseSpec.c:299
#: build/parseSpec.c:300
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr "%s:%d: parseExpressionBoolean returnerar %d\n"
#: build/parseSpec.c:308
#: build/parseSpec.c:309
#, 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:320
#: build/parseSpec.c:321
#, 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:334 build/parseSpec.c:343
#: build/parseSpec.c:335 build/parseSpec.c:344
#, c-format
msgid "malformed %%include statement\n"
msgstr "felformaterad %%include-sats\n"
#: build/parseSpec.c:543
#: build/parseSpec.c:544
msgid "No compatible architectures found for build\n"
msgstr "Hittade inga kompatibla arkitekturer att bygga\n"
#: build/parseSpec.c:601
#: build/parseSpec.c:602
#, c-format
msgid "Package has no %%description: %s\n"
msgstr "Paketet har ingen %%description: %s\n"
@ -3065,40 +3065,40 @@ msgstr "st
msgid "removed db environment %s/%s\n"
msgstr "tog bort db-miljö %s/%s\n"
#: rpmdb/db3.c:287
#: rpmdb/db3.c:291
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr "öppnar db-miljö %s/%s %s\n"
#: rpmdb/db3.c:769
#: rpmdb/db3.c:764
#, c-format
msgid "closed db index %s/%s\n"
msgstr "stängde db-index %s/%s\n"
#: rpmdb/db3.c:836
#: rpmdb/db3.c:831
#, c-format
msgid "verified db index %s/%s\n"
msgstr "verifierade db-index %s/%s\n"
#: rpmdb/db3.c:1066
#: rpmdb/db3.c:1069
#, 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:1303
#: rpmdb/db3.c:1306
#, 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:1305
#: rpmdb/db3.c:1308
msgid "exclusive"
msgstr "uteslutande"
#: rpmdb/db3.c:1305
#: rpmdb/db3.c:1308
msgid "shared"
msgstr "delat"
#: rpmdb/db3.c:1309
#: rpmdb/db3.c:1312
#, 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-21 21:09-0500\n"
"POT-Creation-Date: 2002-12-23 15:42-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"
@ -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:425
#: build/parsePreamble.c:588 build/parseSpec.c:426
#, 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:159
#: build/parseSpec.c:160
#, c-format
msgid "line %d: %s\n"
msgstr "satýr %d: %s\n"
#. XXX Fstrerror
#: build/parseSpec.c:211
#: build/parseSpec.c:212
#, c-format
msgid "Unable to open %s: %s\n"
msgstr "%s açýlamadý: %s\n"
#: build/parseSpec.c:227
#: build/parseSpec.c:228
#, c-format
msgid "Unclosed %%if\n"
msgstr "%%if kapanmamýþ\n"
#: build/parseSpec.c:299
#: build/parseSpec.c:300
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d\n"
msgstr "%s:%d: parseExpressionBoolean %d ile döner\n"
#: build/parseSpec.c:308
#: build/parseSpec.c:309
#, 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:320
#: build/parseSpec.c:321
#, 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:334 build/parseSpec.c:343
#: build/parseSpec.c:335 build/parseSpec.c:344
#, c-format
msgid "malformed %%include statement\n"
msgstr "%%include deyimi bozuk\n"
#: build/parseSpec.c:543
#: build/parseSpec.c:544
msgid "No compatible architectures found for build\n"
msgstr "Kurgulamak için uyumlu mimari yok\n"
#: build/parseSpec.c:601
#: build/parseSpec.c:602
#, c-format
msgid "Package has no %%description: %s\n"
msgstr "Paket %%description içermiyor: %s\n"
@ -3137,40 +3137,40 @@ msgstr "kapand
msgid "removed db environment %s/%s\n"
msgstr "silindi db ortamý %s/%s\n"
#: rpmdb/db3.c:287
#: rpmdb/db3.c:291
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr "açýlýyor db ortamý %s/%s %s\n"
#: rpmdb/db3.c:769
#: rpmdb/db3.c:764
#, c-format
msgid "closed db index %s/%s\n"
msgstr "kapandý db endeks %s/%s\n"
#: rpmdb/db3.c:836
#: rpmdb/db3.c:831
#, c-format
msgid "verified db index %s/%s\n"
msgstr "doðrulandý db endeks %s/%s\n"
#: rpmdb/db3.c:1066
#: rpmdb/db3.c:1069
#, 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:1303
#: rpmdb/db3.c:1306
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "%s kilit %s/%s'den alýnamadý\n"
#: rpmdb/db3.c:1305
#: rpmdb/db3.c:1308
msgid "exclusive"
msgstr "baðdaþýk"
#: rpmdb/db3.c:1305
#: rpmdb/db3.c:1308
msgid "shared"
msgstr "paylaþýmlý"
#: rpmdb/db3.c:1309
#: rpmdb/db3.c:1312
#, c-format
msgid "locked db index %s/%s\n"
msgstr "kilitli db endeks %s/%s\n"

View File

@ -191,13 +191,13 @@ static int db_fini(dbiIndex dbi, const char * dbhome,
/*@-moduncon@*/ /* FIX: annotate db3 methods */
xx = db_env_create(&dbenv, 0);
/*@=moduncon@*/
xx = cvtdberr(dbi, "db_env_create", rc, _debug);
xx = cvtdberr(dbi, "db_env_create", xx, _debug);
#if (DB_VERSION_MAJOR == 3 && DB_VERSION_MINOR != 0) || (DB_VERSION_MAJOR == 4)
xx = dbenv->remove(dbenv, dbhome, 0);
#else
xx = dbenv->remove(dbenv, dbhome, NULL, 0);
#endif
xx = cvtdberr(dbi, "dbenv->remove", rc, _debug);
xx = cvtdberr(dbi, "dbenv->remove", xx, _debug);
if (dbfile)
rpmMessage(RPMMESS_DEBUG, _("removed db environment %s/%s\n"),
@ -218,6 +218,10 @@ static int db3_fsync_disable(/*@unused@*/ int fd)
#include <pthread.h>
#endif
/**
* Check that posix mutexes are shared.
* @return 0 == shared.
*/
static int db3_pthread_nptl(void)
/*@*/
{
@ -291,12 +295,6 @@ static int db_init(dbiIndex dbi, const char * dbhome,
if (dbi->dbi_host == NULL)
dbi->dbi_ecflags &= ~DB_CLIENT;
#if HAVE_LIBPTHREAD
/* XXX Set DB_ENV_PRIVATE if not nptl. */
if (db3_pthread_nptl())
dbi->dbi_ecflags |= DB_ENV_PRIVATE;
#endif
/* XXX Set a default shm_key. */
if ((dbi->dbi_eflags & DB_SYSTEM_MEM) && dbi->dbi_shmkey == 0) {
#if defined(HAVE_FTOK)
@ -308,12 +306,9 @@ static int db_init(dbiIndex dbi, const char * dbhome,
rc = db_env_create(&dbenv, dbi->dbi_ecflags);
rc = cvtdberr(dbi, "db_env_create", rc, _debug);
if (rc)
if (dbenv == NULL || rc)
goto errxit;
if (dbenv == NULL)
return 1;
{ int xx;
/*@-noeffectuncon@*/ /* FIX: annotate db3 methods */
@ -407,7 +402,7 @@ static int db_init(dbiIndex dbi, const char * dbhome,
tmpdir = rpmGenPath(root, dbi->dbi_tmpdir, NULL);
/*@=mods@*/
xx = dbenv->set_tmp_dir(dbenv, tmpdir);
xx = cvtdberr(dbi, "dbenv->set_tmp_dir", rc, _debug);
xx = cvtdberr(dbi, "dbenv->set_tmp_dir", xx, _debug);
tmpdir = _free(tmpdir);
}
}
@ -964,6 +959,14 @@ static int db3open(rpmdb rpmdb, rpmTag rpmtag, dbiIndex * dbip)
* Avoid incompatible DB_CREATE/DB_RDONLY flags on DBENV->open.
*/
if (dbi->dbi_use_dbenv) {
#if HAVE_LIBPTHREAD
/* Set DB_PRIVATE if posix mutexes are not shared. */
if (db3_pthread_nptl()) {
dbi->dbi_eflags |= DB_PRIVATE;
}
#endif
if (access(dbhome, W_OK) == -1) {
/* dbhome is unwritable, don't attempt DB_CREATE on DB->open ... */
@ -1297,7 +1300,7 @@ static int db3open(rpmdb rpmdb, rpmTag rpmtag, dbiIndex * dbip)
/* Warning iff using non-private CDB locking. */
rc = ((dbi->dbi_use_dbenv &&
(dbi->dbi_eflags & DB_INIT_CDB) &&
!(dbi->dbi_ecflags & DB_ENV_PRIVATE))
!(dbi->dbi_eflags & DB_PRIVATE))
? 0 : 1);
rpmError( (rc ? RPMERR_FLOCK : RPMWARN_FLOCK),
_("cannot get %s lock on %s/%s\n"),