- permit subset installs for %lang colored hardlink file sets.

CVS patchset: 5252
CVS date: 2002/01/11 23:03:22
This commit is contained in:
jbj 2002-01-11 23:03:22 +00:00
parent cbcc2cc467
commit 3e0d0877ff
38 changed files with 875 additions and 893 deletions

View File

@ -93,6 +93,7 @@
- permit gpg/pgp/pgp5 execs to be reconfigured.
- fix: signing multiple times dinna work, discard immutable region.
- remove poptmodule.so for separate packaging.
- permit subset installs for %lang colored hardlink file sets.
4.0.2 -> 4.0.3:
- update per-interpreter dependency scripts, add sql/tcl (#20295).

View File

@ -1030,11 +1030,12 @@ static int isDoc(FileList fl, const char * fileName) /*@*/
/**
* Verify that file attributes scope over hardlinks correctly.
* @todo only %lang for now, finish other attributes later.
* If partial hardlink sets are possible, then add tracking dependency.
* @param fl package file tree walk data
* @return 1 if partial hardlink sets can exist, 0 otherwise.
*/
static void checkHardLinks(FileList fl)
/*@modifies fl->fileList->flags, fl->fileList->langs @*/
static int checkHardLinks(FileList fl)
/*@*/
{
char nlangs[BUFSIZ];
FileListRec ilp, jlp;
@ -1062,42 +1063,10 @@ static void checkHardLinks(FileList fl)
/*@innercontinue@*/ continue;
if (ilp->fl_dev != jlp->fl_dev)
/*@innercontinue@*/ continue;
if (!strcmp(ilp->langs, jlp->langs)) {
jlp->flags |= RPMFILE_SPECFILE;
/*@innercontinue@*/ continue;
}
if (te == nlangs)
te = stpcpy(te, ilp->langs);
*te++ = '|';
te = stpcpy(te, jlp->langs);
}
/* Are locales distributed over hard links correctly? */
if (te == nlangs)
continue;
ilp->langs = _free(ilp->langs);
ilp->langs = xstrdup(nlangs);
for (j = i + 1; j < fl->fileListRecsUsed; j++) {
jlp = fl->fileList + j;
if (!S_ISREG(jlp->fl_mode))
/*@innercontinue@*/ continue;
if (ilp->fl_nlink != jlp->fl_nlink)
/*@innercontinue@*/ continue;
if (ilp->fl_ino != jlp->fl_ino)
/*@innercontinue@*/ continue;
if (ilp->fl_dev != jlp->fl_dev)
/*@innercontinue@*/ continue;
jlp->flags |= RPMFILE_SPECFILE;
jlp->langs = _free(jlp->langs);
jlp->langs = xstrdup(nlangs);
return 1;
}
}
for (i = 0; i < fl->fileListRecsUsed; i++) {
ilp = fl->fileList + i;
ilp->flags &= ~RPMFILE_SPECFILE;
}
return 0;
}
/**
@ -1976,7 +1945,9 @@ static int processPackageFiles(Spec spec, Package pkg,
goto exit;
/* Verify that file attributes scope over hardlinks correctly. */
checkHardLinks(&fl);
if (checkHardLinks(&fl))
(void) rpmlibNeedsFeature(pkg->header,
"PartialHardlinkSets", "4.0.4-1");
genCpioListAndHeader(&fl, (TFI_t *)&pkg->cpioList, pkg->header, 0);

View File

@ -439,7 +439,7 @@ static int saveHardLink(/*@special@*/ /*@partial@*/ FSM_t fsm)
* Destroy set of hard links.
* @param li set of hard links
*/
static /*@null@*/ void * freeHardLink(/*@only@*/ /*@null@*/ struct hardLink * li)
static /*@null@*/ void * freeHardLink(/*@only@*/ /*@null@*/ struct hardLink_s * li)
/*@modifies li @*/
{
if (li) {
@ -969,11 +969,13 @@ static int fsmMakeLinks(/*@special@*/ FSM_t fsm)
/*@-branchstate@*/
for (i = 0; i < fsm->li->nlink; i++) {
if (fsm->li->filex[i] < 0) continue;
if (i == fsm->li->createdPath) continue;
if (fsm->li->createdPath == i) continue;
fsm->ix = fsm->li->filex[i];
fsm->path = _free(fsm->path);
rc = fsmStage(fsm, FSM_MAP);
if (XFA_SKIPPING(fsm->action)) continue;
rc = fsmStage(fsm, FSM_VERIFY);
if (!rc) continue;
if (rc != CPIOERR_LSTAT_FAILED) break;
@ -1031,7 +1033,8 @@ static int fsmCommitLinks(/*@special@*/ FSM_t fsm)
if (fsm->li->filex[i] < 0) continue;
fsm->ix = fsm->li->filex[i];
rc = fsmStage(fsm, FSM_MAP);
rc = fsmStage(fsm, FSM_COMMIT);
if (!XFA_SKIPPING(fsm->action))
rc = fsmStage(fsm, FSM_COMMIT);
fsm->path = _free(fsm->path);
fsm->li->filex[i] = -1;
}
@ -1541,7 +1544,7 @@ int fsmStage(FSM_t fsm, fileStage stage)
if (fsm->goal == FSM_PKGBUILD) {
if (!S_ISDIR(st->st_mode) && st->st_nlink > 1) {
struct hardLink * li, * prev;
struct hardLink_s * li, * prev;
if (!(fsm->mapFlags & CPIO_ALL_HARDLINKS)) break;
rc = writeLinkedFile(fsm);
@ -2191,11 +2194,11 @@ if (!(fsm->mapFlags & CPIO_ALL_HARDLINKS)) break;
switch(a) {
case FSM_UNKNOWN: return "unknown";
case FSM_PKGINSTALL:return "pkginstall";
case FSM_PKGERASE: return "pkgerase";
case FSM_PKGBUILD: return "pkgbuild";
case FSM_PKGCOMMIT: return "pkgcommit";
case FSM_PKGUNDO: return "pkgundo";
case FSM_PKGINSTALL:return "INSTALL";
case FSM_PKGERASE: return "ERASE";
case FSM_PKGBUILD: return "BUILD";
case FSM_PKGCOMMIT: return "COMMIT";
case FSM_PKGUNDO: return "UNDO";
case FSM_CREATE: return "create";
case FSM_INIT: return "init";

View File

@ -19,10 +19,12 @@ extern int _fsm_debug;
#define FSM_INTERNAL 0x4000
#define FSM_SYSCALL 0x2000
#define FSM_DEAD 0x1000
#define _fv(_a) ((_a) | FSM_VERBOSE)
#define _fi(_a) ((_a) | FSM_INTERNAL)
#define _fs(_a) ((_a) | (FSM_INTERNAL | FSM_SYSCALL))
#define _fd(_a) ((_a) | (FSM_INTERNAL | FSM_DEAD))
typedef enum fileStage_e {
FSM_UNKNOWN = 0,
FSM_INIT = _fd(1),
@ -90,8 +92,8 @@ typedef enum fileStage_e {
/** \ingroup payload
* Keeps track of the set of all hard links to a file in an archive.
*/
struct hardLink {
/*@owned@*/ struct hardLink * next;
struct hardLink_s {
/*@owned@*/ struct hardLink_s * next;
/*@owned@*/ const char ** nsuffix;
/*@owned@*/ int * filex;
struct stat sb;
@ -141,9 +143,9 @@ struct fsm_s {
FSMI_t iter; /*!< File iterator. */
int ix; /*!< Current file iterator index. */
/*@only@*/
struct hardLink * links; /*!< Pending hard linked file(s). */
struct hardLink_s * links; /*!< Pending hard linked file(s). */
/*@only@*/
struct hardLink * li; /*!< Current hard linked file(s). */
struct hardLink_s * li; /*!< Current hard linked file(s). */
/*@kept@*/ /*@null@*/
unsigned int * archiveSize; /*!< Pointer to archive size. */
/*@kept@*/ /*@null@*/

View File

@ -29,22 +29,25 @@ static struct rpmlibProvides_s rpmlibProvides[] = {
N_("PreReq:, Provides:, and Obsoletes: dependencies support versions.") },
{ "rpmlib(CompressedFileNames)", "3.0.4-1",
(RPMSENSE_RPMLIB|RPMSENSE_EQUAL),
N_("file names stored as (dirName,baseName,dirIndex) tuple, not as path.")},
N_("file name(s) are stored as (dirName,baseName,dirIndex) tuple, not as path.")},
{ "rpmlib(PayloadIsBzip2)", "3.0.5-1",
(RPMSENSE_RPMLIB|RPMSENSE_EQUAL),
N_("package payload compressed using bzip2.") },
N_("package payload is compressed using bzip2.") },
{ "rpmlib(PayloadFilesHavePrefix)", "4.0-1",
(RPMSENSE_RPMLIB|RPMSENSE_EQUAL),
N_("package payload files have \"./\" prefix.") },
N_("package payload file(s) have \"./\" prefix.") },
{ "rpmlib(ExplicitPackageProvide)", "4.0-1",
(RPMSENSE_RPMLIB|RPMSENSE_EQUAL),
N_("package name-version-release not implicitly provided.") },
N_("package name-version-release is not implicitly provided.") },
{ "rpmlib(HeaderLoadSortsTags)", "4.0.1-1",
( RPMSENSE_EQUAL),
N_("header tags are always sorted after being loaded.") },
{ "rpmlib(ScriptletInterpreterArgs)", "4.0.3-1",
( RPMSENSE_EQUAL),
N_("the scriptlet interpreter can use arguments from header.") },
{ "rpmlib(PartialHardlinkSets)", "4.0.4-1",
( RPMSENSE_EQUAL),
N_("a hardlink file set may be installed without being complete.") },
{ NULL, NULL, 0, NULL }
};

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-01-10 14:14-0500\n"
"POT-Creation-Date: 2002-01-11 17:48-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"
@ -597,98 +597,98 @@ msgid "Can't mix special %%doc with other forms: %s\n"
msgstr "Nelze míchat speciální %%doc s ostatnímí formami: %s\n"
#. Two entries for the same file found, merge the entries.
#: build/files.c:1144
#: build/files.c:1113
#, c-format
msgid "File listed twice: %s\n"
msgstr "Soubor uveden dvakrát: %s\n"
#: build/files.c:1291
#: build/files.c:1260
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr "Symbolická linka ukazuje na BuildRoot: %s -> %s\n"
#: build/files.c:1506
#: build/files.c:1475
#, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr "Soubor nesouhlasí s prefixem (%s): %s\n"
#: build/files.c:1530
#: build/files.c:1499
#, c-format
msgid "File not found: %s\n"
msgstr "Soubor nenalezen: %s\n"
#: build/files.c:1573 build/files.c:2185 build/parsePrep.c:50
#: build/files.c:1542 build/files.c:2156 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "©patný vlastník/skupina: %s\n"
#: build/files.c:1585
#: build/files.c:1554
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr "Soubor %4d: %07o %s.%s\t %s\n"
#: build/files.c:1689
#: build/files.c:1658
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "Soubor potøebuje úvodní \"/\": %s\n"
#: build/files.c:1712
#: build/files.c:1681
#, c-format
msgid "Glob not permitted: %s\n"
msgstr "Glob není dovolen: %s\n"
#: build/files.c:1727
#: build/files.c:1696
#, c-format
msgid "File not found by glob: %s\n"
msgstr "Soubor nenalezen globem: %s\n"
#: build/files.c:1789
#: build/files.c:1758
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "Nemohu otevøít %%files soubor %s: %s\n"
#: build/files.c:1800 build/pack.c:146
#: build/files.c:1769 build/pack.c:146
#, c-format
msgid "line: %s\n"
msgstr "øádek: %s\n"
#: build/files.c:2173
#: build/files.c:2144
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "©patný soubor: %s: %s\n"
#. XXX this error message is probably not seen.
#: build/files.c:2247
#: build/files.c:2218
#, c-format
msgid "Couldn't exec %s: %s\n"
msgstr "Nemohu spustit %s: %s\n"
#: build/files.c:2252
#: build/files.c:2223
#, c-format
msgid "Couldn't fork %s: %s\n"
msgstr "Nemohu provést fork %s: %s\n"
#: build/files.c:2336
#: build/files.c:2307
#, c-format
msgid "%s failed\n"
msgstr "%s selhalo\n"
#: build/files.c:2340
#: build/files.c:2311
#, c-format
msgid "failed to write all data to %s\n"
msgstr "Nemohu zapsat v¹echna data do %s\n"
#: build/files.c:2476
#: build/files.c:2447
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr "Hledám %s: (pou¾it %s)...\n"
#: build/files.c:2502 build/files.c:2516
#: build/files.c:2473 build/files.c:2487
#, c-format
msgid "Failed to find %s:\n"
msgstr "Selhalo vyhledání %s:\n"
#: build/files.c:2637
#: build/files.c:2608
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Zpracovávám soubory: %s-%s-%s\n"
@ -1575,37 +1575,37 @@ msgstr "========= Adres
msgid "%10d %s\n"
msgstr "%9d %s\n"
#: lib/fsm.c:1180
#: lib/fsm.c:1183
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr "vytvoøen adresáø %s s právy %04o.\n"
#: lib/fsm.c:1461
#: lib/fsm.c:1464
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1582 lib/fsm.c:1710
#: lib/fsm.c:1585 lib/fsm.c:1713
#, c-format
msgid "%s saved as %s\n"
msgstr "%s ulo¾eno jako %s\n"
#: lib/fsm.c:1736
#: lib/fsm.c:1739
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s odstranìní %s selhalo: Adresáø není prázdný\n"
#: lib/fsm.c:1742
#: lib/fsm.c:1745
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s rmdir %s selhal: %s\n"
#: lib/fsm.c:1752
#: lib/fsm.c:1755
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s unlink %s selhal: %s\n"
#: lib/fsm.c:1771
#: lib/fsm.c:1774
#, c-format
msgid "%s created as %s\n"
msgstr "%s vytvoøen jako %s\n"

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-01-10 14:14-0500\n"
"POT-Creation-Date: 2002-01-11 17:48-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"
@ -592,98 +592,98 @@ msgid "Can't mix special %%doc with other forms: %s\n"
msgstr "Kan ikke blande special-%%doc med andre former: %s\n"
#. Two entries for the same file found, merge the entries.
#: build/files.c:1144
#: build/files.c:1113
#, c-format
msgid "File listed twice: %s\n"
msgstr "Fil angivet to gange: %s\n"
#: build/files.c:1291
#: build/files.c:1260
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr "Symbolsk lænke peger på BuildRoot: %s -> %s\n"
#: build/files.c:1506
#: build/files.c:1475
#, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr "Fil passer ikke til præfiks (%s): %s\n"
#: build/files.c:1530
#: build/files.c:1499
#, c-format
msgid "File not found: %s\n"
msgstr "Fil ikke fundet: %s\n"
#: build/files.c:1573 build/files.c:2185 build/parsePrep.c:50
#: build/files.c:1542 build/files.c:2156 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Ugyldig ejer/gruppe: %s\n"
#: build/files.c:1585
#: build/files.c:1554
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr "Fil %4d: %07o %s.%s\t %s\n"
#: build/files.c:1689
#: build/files.c:1658
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "Fil kræver foranstillet \"/\": %s\n"
#: build/files.c:1712
#: build/files.c:1681
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "linie %d: Filnavn ikke tilladt: %s\n"
#: build/files.c:1727
#: build/files.c:1696
#, c-format
msgid "File not found by glob: %s\n"
msgstr "Fil ikke fundet med glob: %s\n"
#: build/files.c:1789
#: build/files.c:1758
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "Kunne ikke åbne '%%files'-fil %s: %s\n"
#: build/files.c:1800 build/pack.c:146
#: build/files.c:1769 build/pack.c:146
#, c-format
msgid "line: %s\n"
msgstr "linie: %s\n"
#: build/files.c:2173
#: build/files.c:2144
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "Ugyldig fil: %s: %s\n"
#. XXX this error message is probably not seen.
#: build/files.c:2247
#: build/files.c:2218
#, c-format
msgid "Couldn't exec %s: %s\n"
msgstr "Kunne ikke udføre %s: %s\n"
#: build/files.c:2252
#: build/files.c:2223
#, c-format
msgid "Couldn't fork %s: %s\n"
msgstr "Kunne ikke fraspalte ny proces til %s: %s\n"
#: build/files.c:2336
#: build/files.c:2307
#, c-format
msgid "%s failed\n"
msgstr "%s mislykkedes\n"
#: build/files.c:2340
#: build/files.c:2311
#, c-format
msgid "failed to write all data to %s\n"
msgstr "kunne ikke skrive alle data til %s\n"
#: build/files.c:2476
#: build/files.c:2447
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr "Finder %s: (benytter %s)...\n"
#: build/files.c:2502 build/files.c:2516
#: build/files.c:2473 build/files.c:2487
#, c-format
msgid "Failed to find %s:\n"
msgstr "Kunne ikke finde %s:\n"
#: build/files.c:2637
#: build/files.c:2608
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Gennemløber filer: %s-%s-%s\n"
@ -1574,37 +1574,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr "linie %d: %s\n"
#: lib/fsm.c:1180
#: lib/fsm.c:1183
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1461
#: lib/fsm.c:1464
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1582 lib/fsm.c:1710
#: lib/fsm.c:1585 lib/fsm.c:1713
#, c-format
msgid "%s saved as %s\n"
msgstr "%s gemt som %s\n"
#: lib/fsm.c:1736
#: lib/fsm.c:1739
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "kan ikke fjerne %s - katalog ikke tomt\n"
#: lib/fsm.c:1742
#: lib/fsm.c:1745
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "fjernelse (rmdir) af %s mislykkedes: %s\n"
#: lib/fsm.c:1752
#: lib/fsm.c:1755
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "åbning af %s mislykkedes %s\n"
#: lib/fsm.c:1771
#: lib/fsm.c:1774
#, c-format
msgid "%s created as %s\n"
msgstr "%s oprettet som %s\n"

View File

@ -37,7 +37,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-01-10 14:14-0500\n"
"POT-Creation-Date: 2002-01-11 17:48-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"
@ -670,105 +670,105 @@ msgstr ""
# , c-format
#. Two entries for the same file found, merge the entries.
#: build/files.c:1144
#: build/files.c:1113
#, fuzzy, c-format
msgid "File listed twice: %s\n"
msgstr "Lesen von %s fehlgeschlagen: %s."
#: build/files.c:1291
#: build/files.c:1260
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr ""
# , c-format
#: build/files.c:1506
#: build/files.c:1475
#, fuzzy, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr "Lesen von %s fehlgeschlagen: %s."
#: build/files.c:1530
#: build/files.c:1499
#, fuzzy, c-format
msgid "File not found: %s\n"
msgstr "Datei auf dem Server nicht gefunden"
#: build/files.c:1573 build/files.c:2185 build/parsePrep.c:50
#: build/files.c:1542 build/files.c:2156 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
# , c-format
#: build/files.c:1585
#: build/files.c:1554
#, fuzzy, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
#: build/files.c:1689
#: build/files.c:1658
#, fuzzy, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "Verschiebungen müssen mit einem »/« beginnen"
#: build/files.c:1712
#: build/files.c:1681
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "Paket %s wird nicht in %s aufgeführt"
#: build/files.c:1727
#: build/files.c:1696
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "Datei auf dem Server nicht gefunden"
#: build/files.c:1789
#: build/files.c:1758
#, 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:1800 build/pack.c:146
#: build/files.c:1769 build/pack.c:146
#, fuzzy, c-format
msgid "line: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
# , c-format
#: build/files.c:2173
#: build/files.c:2144
#, fuzzy, c-format
msgid "Bad file: %s: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
#. XXX this error message is probably not seen.
#: build/files.c:2247
#: build/files.c:2218
#, fuzzy, c-format
msgid "Couldn't exec %s: %s\n"
msgstr "Konnte pgp nicht durchführen"
#: build/files.c:2252
#: build/files.c:2223
#, fuzzy, c-format
msgid "Couldn't fork %s: %s\n"
msgstr "Konnte Signatur-Ziel (»sigtarget«) nicht lesen"
#: build/files.c:2336
#: build/files.c:2307
#, fuzzy, c-format
msgid "%s failed\n"
msgstr "pgp fehlgeschlagen"
# , c-format
#: build/files.c:2340
#: build/files.c:2311
#, fuzzy, c-format
msgid "failed to write all data to %s\n"
msgstr "anlegen von %s fehlgeschlagen\n"
#: build/files.c:2476
#: build/files.c:2447
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
# , c-format
#: build/files.c:2502 build/files.c:2516
#: build/files.c:2473 build/files.c:2487
#, fuzzy, c-format
msgid "Failed to find %s:\n"
msgstr "anlegen von %s fehlgeschlagen\n"
# , c-format
#: build/files.c:2637
#: build/files.c:2608
#, fuzzy, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
@ -1714,37 +1714,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
#: lib/fsm.c:1180
#: lib/fsm.c:1183
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1461
#: lib/fsm.c:1464
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1582 lib/fsm.c:1710
#: lib/fsm.c:1585 lib/fsm.c:1713
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "kann Datei %s nicht öffnen: "
#: lib/fsm.c:1736
#: lib/fsm.c:1739
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "kann %s nicht entfernen - Verzeichnis ist nicht leer"
#: lib/fsm.c:1742
#: lib/fsm.c:1745
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "Entfernen von %s fehlgeschlagen: %s"
#: lib/fsm.c:1752
#: lib/fsm.c:1755
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "öffnen von %s fehlgeschlagen: %s\n"
#: lib/fsm.c:1771
#: lib/fsm.c:1774
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "kann Datei %s nicht öffnen: "

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-01-10 14:14-0500\n"
"POT-Creation-Date: 2002-01-11 17:48-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"
@ -586,98 +586,98 @@ msgid "Can't mix special %%doc with other forms: %s\n"
msgstr ""
#. Two entries for the same file found, merge the entries.
#: build/files.c:1144
#: build/files.c:1113
#, c-format
msgid "File listed twice: %s\n"
msgstr ""
#: build/files.c:1291
#: build/files.c:1260
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr ""
#: build/files.c:1506
#: build/files.c:1475
#, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr ""
#: build/files.c:1530
#: build/files.c:1499
#, c-format
msgid "File not found: %s\n"
msgstr ""
#: build/files.c:1573 build/files.c:2185 build/parsePrep.c:50
#: build/files.c:1542 build/files.c:2156 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
#: build/files.c:1585
#: build/files.c:1554
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
#: build/files.c:1689
#: build/files.c:1658
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr ""
#: build/files.c:1712
#: build/files.c:1681
#, c-format
msgid "Glob not permitted: %s\n"
msgstr ""
#: build/files.c:1727
#: build/files.c:1696
#, c-format
msgid "File not found by glob: %s\n"
msgstr ""
#: build/files.c:1789
#: build/files.c:1758
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr ""
#: build/files.c:1800 build/pack.c:146
#: build/files.c:1769 build/pack.c:146
#, c-format
msgid "line: %s\n"
msgstr ""
#: build/files.c:2173
#: build/files.c:2144
#, c-format
msgid "Bad file: %s: %s\n"
msgstr ""
#. XXX this error message is probably not seen.
#: build/files.c:2247
#: build/files.c:2218
#, c-format
msgid "Couldn't exec %s: %s\n"
msgstr ""
#: build/files.c:2252
#: build/files.c:2223
#, c-format
msgid "Couldn't fork %s: %s\n"
msgstr ""
#: build/files.c:2336
#: build/files.c:2307
#, c-format
msgid "%s failed\n"
msgstr ""
#: build/files.c:2340
#: build/files.c:2311
#, c-format
msgid "failed to write all data to %s\n"
msgstr ""
#: build/files.c:2476
#: build/files.c:2447
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
#: build/files.c:2502 build/files.c:2516
#: build/files.c:2473 build/files.c:2487
#, c-format
msgid "Failed to find %s:\n"
msgstr ""
#: build/files.c:2637
#: build/files.c:2608
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@ -1543,37 +1543,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr ""
#: lib/fsm.c:1180
#: lib/fsm.c:1183
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1461
#: lib/fsm.c:1464
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1582 lib/fsm.c:1710
#: lib/fsm.c:1585 lib/fsm.c:1713
#, c-format
msgid "%s saved as %s\n"
msgstr ""
#: lib/fsm.c:1736
#: lib/fsm.c:1739
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr ""
#: lib/fsm.c:1742
#: lib/fsm.c:1745
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1752
#: lib/fsm.c:1755
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1771
#: lib/fsm.c:1774
#, c-format
msgid "%s created as %s\n"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-01-10 14:14-0500\n"
"POT-Creation-Date: 2002-01-11 17:48-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"
@ -586,98 +586,98 @@ msgid "Can't mix special %%doc with other forms: %s\n"
msgstr ""
#. Two entries for the same file found, merge the entries.
#: build/files.c:1144
#: build/files.c:1113
#, c-format
msgid "File listed twice: %s\n"
msgstr ""
#: build/files.c:1291
#: build/files.c:1260
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr ""
#: build/files.c:1506
#: build/files.c:1475
#, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr ""
#: build/files.c:1530
#: build/files.c:1499
#, c-format
msgid "File not found: %s\n"
msgstr ""
#: build/files.c:1573 build/files.c:2185 build/parsePrep.c:50
#: build/files.c:1542 build/files.c:2156 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
#: build/files.c:1585
#: build/files.c:1554
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
#: build/files.c:1689
#: build/files.c:1658
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr ""
#: build/files.c:1712
#: build/files.c:1681
#, c-format
msgid "Glob not permitted: %s\n"
msgstr ""
#: build/files.c:1727
#: build/files.c:1696
#, c-format
msgid "File not found by glob: %s\n"
msgstr ""
#: build/files.c:1789
#: build/files.c:1758
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr ""
#: build/files.c:1800 build/pack.c:146
#: build/files.c:1769 build/pack.c:146
#, c-format
msgid "line: %s\n"
msgstr ""
#: build/files.c:2173
#: build/files.c:2144
#, c-format
msgid "Bad file: %s: %s\n"
msgstr ""
#. XXX this error message is probably not seen.
#: build/files.c:2247
#: build/files.c:2218
#, c-format
msgid "Couldn't exec %s: %s\n"
msgstr ""
#: build/files.c:2252
#: build/files.c:2223
#, c-format
msgid "Couldn't fork %s: %s\n"
msgstr ""
#: build/files.c:2336
#: build/files.c:2307
#, c-format
msgid "%s failed\n"
msgstr ""
#: build/files.c:2340
#: build/files.c:2311
#, c-format
msgid "failed to write all data to %s\n"
msgstr ""
#: build/files.c:2476
#: build/files.c:2447
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
#: build/files.c:2502 build/files.c:2516
#: build/files.c:2473 build/files.c:2487
#, c-format
msgid "Failed to find %s:\n"
msgstr ""
#: build/files.c:2637
#: build/files.c:2608
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@ -1543,37 +1543,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr ""
#: lib/fsm.c:1180
#: lib/fsm.c:1183
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1461
#: lib/fsm.c:1464
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1582 lib/fsm.c:1710
#: lib/fsm.c:1585 lib/fsm.c:1713
#, c-format
msgid "%s saved as %s\n"
msgstr ""
#: lib/fsm.c:1736
#: lib/fsm.c:1739
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr ""
#: lib/fsm.c:1742
#: lib/fsm.c:1745
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1752
#: lib/fsm.c:1755
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1771
#: lib/fsm.c:1774
#, c-format
msgid "%s created as %s\n"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-01-10 14:14-0500\n"
"POT-Creation-Date: 2002-01-11 17:48-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"
@ -586,98 +586,98 @@ msgid "Can't mix special %%doc with other forms: %s\n"
msgstr ""
#. Two entries for the same file found, merge the entries.
#: build/files.c:1144
#: build/files.c:1113
#, c-format
msgid "File listed twice: %s\n"
msgstr ""
#: build/files.c:1291
#: build/files.c:1260
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr ""
#: build/files.c:1506
#: build/files.c:1475
#, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr ""
#: build/files.c:1530
#: build/files.c:1499
#, c-format
msgid "File not found: %s\n"
msgstr ""
#: build/files.c:1573 build/files.c:2185 build/parsePrep.c:50
#: build/files.c:1542 build/files.c:2156 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
#: build/files.c:1585
#: build/files.c:1554
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
#: build/files.c:1689
#: build/files.c:1658
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr ""
#: build/files.c:1712
#: build/files.c:1681
#, c-format
msgid "Glob not permitted: %s\n"
msgstr ""
#: build/files.c:1727
#: build/files.c:1696
#, c-format
msgid "File not found by glob: %s\n"
msgstr ""
#: build/files.c:1789
#: build/files.c:1758
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr ""
#: build/files.c:1800 build/pack.c:146
#: build/files.c:1769 build/pack.c:146
#, c-format
msgid "line: %s\n"
msgstr ""
#: build/files.c:2173
#: build/files.c:2144
#, c-format
msgid "Bad file: %s: %s\n"
msgstr ""
#. XXX this error message is probably not seen.
#: build/files.c:2247
#: build/files.c:2218
#, c-format
msgid "Couldn't exec %s: %s\n"
msgstr ""
#: build/files.c:2252
#: build/files.c:2223
#, c-format
msgid "Couldn't fork %s: %s\n"
msgstr ""
#: build/files.c:2336
#: build/files.c:2307
#, c-format
msgid "%s failed\n"
msgstr ""
#: build/files.c:2340
#: build/files.c:2311
#, c-format
msgid "failed to write all data to %s\n"
msgstr ""
#: build/files.c:2476
#: build/files.c:2447
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
#: build/files.c:2502 build/files.c:2516
#: build/files.c:2473 build/files.c:2487
#, c-format
msgid "Failed to find %s:\n"
msgstr ""
#: build/files.c:2637
#: build/files.c:2608
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@ -1543,37 +1543,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr ""
#: lib/fsm.c:1180
#: lib/fsm.c:1183
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1461
#: lib/fsm.c:1464
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1582 lib/fsm.c:1710
#: lib/fsm.c:1585 lib/fsm.c:1713
#, c-format
msgid "%s saved as %s\n"
msgstr ""
#: lib/fsm.c:1736
#: lib/fsm.c:1739
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr ""
#: lib/fsm.c:1742
#: lib/fsm.c:1745
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1752
#: lib/fsm.c:1755
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1771
#: lib/fsm.c:1774
#, c-format
msgid "%s created as %s\n"
msgstr ""

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-01-10 14:14-0500\n"
"POT-Creation-Date: 2002-01-11 17:48-0500\n"
"Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
"Language-Team: Finnish <linux@sot.com>\n"
"Content-Type: text/plain; charset=\n"
@ -601,98 +601,98 @@ msgid "Can't mix special %%doc with other forms: %s\n"
msgstr ""
#. Two entries for the same file found, merge the entries.
#: build/files.c:1144
#: build/files.c:1113
#, fuzzy, c-format
msgid "File listed twice: %s\n"
msgstr "En voi lukea %s: %s."
#: build/files.c:1291
#: build/files.c:1260
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr ""
#: build/files.c:1506
#: build/files.c:1475
#, fuzzy, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr "En voi lukea %s: %s."
#: build/files.c:1530
#: build/files.c:1499
#, fuzzy, c-format
msgid "File not found: %s\n"
msgstr "Tiedostoa ei löytynyt palvelimelta"
#: build/files.c:1573 build/files.c:2185 build/parsePrep.c:50
#: build/files.c:1542 build/files.c:2156 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
#: build/files.c:1585
#: build/files.c:1554
#, fuzzy, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr "en voinut avata %s: %s"
#: build/files.c:1689
#: build/files.c:1658
#, fuzzy, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "siirtojen pitää alkaa /-merkillä"
#: build/files.c:1712
#: build/files.c:1681
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "paketti %s ei ole %s:ssä"
#: build/files.c:1727
#: build/files.c:1696
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "Tiedostoa ei löytynyt palvelimelta"
#: build/files.c:1789
#: build/files.c:1758
#, fuzzy, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "virhe: tiedostoa %s ei voi avata\n"
#: build/files.c:1800 build/pack.c:146
#: build/files.c:1769 build/pack.c:146
#, fuzzy, c-format
msgid "line: %s\n"
msgstr "en voinut avata %s: %s"
#: build/files.c:2173
#: build/files.c:2144
#, fuzzy, c-format
msgid "Bad file: %s: %s\n"
msgstr "en voinut avata %s: %s"
#. XXX this error message is probably not seen.
#: build/files.c:2247
#: build/files.c:2218
#, fuzzy, c-format
msgid "Couldn't exec %s: %s\n"
msgstr "En voinut ajaa pgp:tä"
#: build/files.c:2252
#: build/files.c:2223
#, fuzzy, c-format
msgid "Couldn't fork %s: %s\n"
msgstr "En voinut ajaa pgp:tä"
#: build/files.c:2336
#: build/files.c:2307
#, fuzzy, c-format
msgid "%s failed\n"
msgstr "pgp epäonnistui"
#: build/files.c:2340
#: build/files.c:2311
#, fuzzy, c-format
msgid "failed to write all data to %s\n"
msgstr "%s:n luonti epäonnistui\n"
#: build/files.c:2476
#: build/files.c:2447
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
#: build/files.c:2502 build/files.c:2516
#: build/files.c:2473 build/files.c:2487
#, fuzzy, c-format
msgid "Failed to find %s:\n"
msgstr "%s:n luonti epäonnistui\n"
#: build/files.c:2637
#: build/files.c:2608
#, fuzzy, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "en voinut avata %s: %s"
@ -1591,37 +1591,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr "en voinut avata %s: %s"
#: lib/fsm.c:1180
#: lib/fsm.c:1183
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1461
#: lib/fsm.c:1464
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1582 lib/fsm.c:1710
#: lib/fsm.c:1585 lib/fsm.c:1713
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "en voinut avata tiedostoa %s: "
#: lib/fsm.c:1736
#: lib/fsm.c:1739
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "en voi poistaa %s -hakemisto ei ole tyhjä"
#: lib/fsm.c:1742
#: lib/fsm.c:1745
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s:n rmdir epäonnistui: %s"
#: lib/fsm.c:1752
#: lib/fsm.c:1755
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s:n avaus ei onnistunut: %s\n"
#: lib/fsm.c:1771
#: lib/fsm.c:1774
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "en voinut avata tiedostoa %s: "

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-01-10 14:14-0500\n"
"POT-Creation-Date: 2002-01-11 17:48-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"
@ -636,98 +636,98 @@ msgid "Can't mix special %%doc with other forms: %s\n"
msgstr ""
#. Two entries for the same file found, merge the entries.
#: build/files.c:1144
#: build/files.c:1113
#, fuzzy, c-format
msgid "File listed twice: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: build/files.c:1291
#: build/files.c:1260
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr ""
#: build/files.c:1506
#: build/files.c:1475
#, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr ""
#: build/files.c:1530
#: build/files.c:1499
#, fuzzy, c-format
msgid "File not found: %s\n"
msgstr "aucun package n'a t spcifi pour la dsinstallation"
#: build/files.c:1573 build/files.c:2185 build/parsePrep.c:50
#: build/files.c:1542 build/files.c:2156 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
#: build/files.c:1585
#: build/files.c:1554
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
#: build/files.c:1689
#: build/files.c:1658
#, fuzzy, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "les arguments de --root (-r) doivent commencer par un /"
#: build/files.c:1712
#: build/files.c:1681
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: build/files.c:1727
#: build/files.c:1696
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "aucun package n'a t spcifi pour la dsinstallation"
#: build/files.c:1789
#: build/files.c:1758
#, fuzzy, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: build/files.c:1800 build/pack.c:146
#: build/files.c:1769 build/pack.c:146
#, fuzzy, c-format
msgid "line: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: build/files.c:2173
#: build/files.c:2144
#, fuzzy, c-format
msgid "Bad file: %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#. XXX this error message is probably not seen.
#: build/files.c:2247
#: build/files.c:2218
#, fuzzy, c-format
msgid "Couldn't exec %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: build/files.c:2252
#: build/files.c:2223
#, fuzzy, c-format
msgid "Couldn't fork %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: build/files.c:2336
#: build/files.c:2307
#, fuzzy, c-format
msgid "%s failed\n"
msgstr "La construction a chou.\n"
#: build/files.c:2340
#: build/files.c:2311
#, fuzzy, c-format
msgid "failed to write all data to %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: build/files.c:2476
#: build/files.c:2447
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
#: build/files.c:2502 build/files.c:2516
#: build/files.c:2473 build/files.c:2487
#, fuzzy, c-format
msgid "Failed to find %s:\n"
msgstr "impossible d'ouvrir: %s\n"
#: build/files.c:2637
#: build/files.c:2608
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@ -1626,37 +1626,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: lib/fsm.c:1180
#: lib/fsm.c:1183
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1461
#: lib/fsm.c:1464
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1582 lib/fsm.c:1710
#: lib/fsm.c:1585 lib/fsm.c:1713
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "impossible d'ouvrir: %s\n"
#: lib/fsm.c:1736
#: lib/fsm.c:1739
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "impossible d'ouvrir: %s\n"
#: lib/fsm.c:1742
#: lib/fsm.c:1745
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "La construction a chou.\n"
#: lib/fsm.c:1752
#: lib/fsm.c:1755
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "La construction a chou.\n"
#: lib/fsm.c:1771
#: lib/fsm.c:1774
#, fuzzy, c-format
msgid "%s created as %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-01-10 14:14-0500\n"
"POT-Creation-Date: 2002-01-11 17:48-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"
@ -581,98 +581,98 @@ msgid "Can't mix special %%doc with other forms: %s\n"
msgstr ""
#. Two entries for the same file found, merge the entries.
#: build/files.c:1144
#: build/files.c:1113
#, c-format
msgid "File listed twice: %s\n"
msgstr ""
#: build/files.c:1291
#: build/files.c:1260
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr ""
#: build/files.c:1506
#: build/files.c:1475
#, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr ""
#: build/files.c:1530
#: build/files.c:1499
#, c-format
msgid "File not found: %s\n"
msgstr ""
#: build/files.c:1573 build/files.c:2185 build/parsePrep.c:50
#: build/files.c:1542 build/files.c:2156 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
#: build/files.c:1585
#: build/files.c:1554
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
#: build/files.c:1689
#: build/files.c:1658
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr ""
#: build/files.c:1712
#: build/files.c:1681
#, c-format
msgid "Glob not permitted: %s\n"
msgstr ""
#: build/files.c:1727
#: build/files.c:1696
#, c-format
msgid "File not found by glob: %s\n"
msgstr ""
#: build/files.c:1789
#: build/files.c:1758
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr ""
#: build/files.c:1800 build/pack.c:146
#: build/files.c:1769 build/pack.c:146
#, c-format
msgid "line: %s\n"
msgstr ""
#: build/files.c:2173
#: build/files.c:2144
#, c-format
msgid "Bad file: %s: %s\n"
msgstr ""
#. XXX this error message is probably not seen.
#: build/files.c:2247
#: build/files.c:2218
#, c-format
msgid "Couldn't exec %s: %s\n"
msgstr ""
#: build/files.c:2252
#: build/files.c:2223
#, c-format
msgid "Couldn't fork %s: %s\n"
msgstr ""
#: build/files.c:2336
#: build/files.c:2307
#, c-format
msgid "%s failed\n"
msgstr ""
#: build/files.c:2340
#: build/files.c:2311
#, c-format
msgid "failed to write all data to %s\n"
msgstr ""
#: build/files.c:2476
#: build/files.c:2447
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
#: build/files.c:2502 build/files.c:2516
#: build/files.c:2473 build/files.c:2487
#, c-format
msgid "Failed to find %s:\n"
msgstr ""
#: build/files.c:2637
#: build/files.c:2608
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@ -1538,37 +1538,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr ""
#: lib/fsm.c:1180
#: lib/fsm.c:1183
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1461
#: lib/fsm.c:1464
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1582 lib/fsm.c:1710
#: lib/fsm.c:1585 lib/fsm.c:1713
#, c-format
msgid "%s saved as %s\n"
msgstr ""
#: lib/fsm.c:1736
#: lib/fsm.c:1739
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr ""
#: lib/fsm.c:1742
#: lib/fsm.c:1745
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1752
#: lib/fsm.c:1755
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1771
#: lib/fsm.c:1774
#, c-format
msgid "%s created as %s\n"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-01-10 14:14-0500\n"
"POT-Creation-Date: 2002-01-11 17:48-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"
@ -586,98 +586,98 @@ msgid "Can't mix special %%doc with other forms: %s\n"
msgstr ""
#. Two entries for the same file found, merge the entries.
#: build/files.c:1144
#: build/files.c:1113
#, c-format
msgid "File listed twice: %s\n"
msgstr ""
#: build/files.c:1291
#: build/files.c:1260
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr ""
#: build/files.c:1506
#: build/files.c:1475
#, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr ""
#: build/files.c:1530
#: build/files.c:1499
#, c-format
msgid "File not found: %s\n"
msgstr ""
#: build/files.c:1573 build/files.c:2185 build/parsePrep.c:50
#: build/files.c:1542 build/files.c:2156 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
#: build/files.c:1585
#: build/files.c:1554
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
#: build/files.c:1689
#: build/files.c:1658
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr ""
#: build/files.c:1712
#: build/files.c:1681
#, c-format
msgid "Glob not permitted: %s\n"
msgstr ""
#: build/files.c:1727
#: build/files.c:1696
#, c-format
msgid "File not found by glob: %s\n"
msgstr ""
#: build/files.c:1789
#: build/files.c:1758
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr ""
#: build/files.c:1800 build/pack.c:146
#: build/files.c:1769 build/pack.c:146
#, c-format
msgid "line: %s\n"
msgstr ""
#: build/files.c:2173
#: build/files.c:2144
#, c-format
msgid "Bad file: %s: %s\n"
msgstr ""
#. XXX this error message is probably not seen.
#: build/files.c:2247
#: build/files.c:2218
#, c-format
msgid "Couldn't exec %s: %s\n"
msgstr ""
#: build/files.c:2252
#: build/files.c:2223
#, c-format
msgid "Couldn't fork %s: %s\n"
msgstr ""
#: build/files.c:2336
#: build/files.c:2307
#, c-format
msgid "%s failed\n"
msgstr ""
#: build/files.c:2340
#: build/files.c:2311
#, c-format
msgid "failed to write all data to %s\n"
msgstr ""
#: build/files.c:2476
#: build/files.c:2447
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
#: build/files.c:2502 build/files.c:2516
#: build/files.c:2473 build/files.c:2487
#, c-format
msgid "Failed to find %s:\n"
msgstr ""
#: build/files.c:2637
#: build/files.c:2608
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@ -1543,37 +1543,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr ""
#: lib/fsm.c:1180
#: lib/fsm.c:1183
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1461
#: lib/fsm.c:1464
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1582 lib/fsm.c:1710
#: lib/fsm.c:1585 lib/fsm.c:1713
#, c-format
msgid "%s saved as %s\n"
msgstr ""
#: lib/fsm.c:1736
#: lib/fsm.c:1739
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr ""
#: lib/fsm.c:1742
#: lib/fsm.c:1745
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1752
#: lib/fsm.c:1755
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1771
#: lib/fsm.c:1774
#, c-format
msgid "%s created as %s\n"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-01-10 14:14-0500\n"
"POT-Creation-Date: 2002-01-11 17:48-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"
@ -586,98 +586,98 @@ msgid "Can't mix special %%doc with other forms: %s\n"
msgstr ""
#. Two entries for the same file found, merge the entries.
#: build/files.c:1144
#: build/files.c:1113
#, c-format
msgid "File listed twice: %s\n"
msgstr ""
#: build/files.c:1291
#: build/files.c:1260
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr ""
#: build/files.c:1506
#: build/files.c:1475
#, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr ""
#: build/files.c:1530
#: build/files.c:1499
#, c-format
msgid "File not found: %s\n"
msgstr ""
#: build/files.c:1573 build/files.c:2185 build/parsePrep.c:50
#: build/files.c:1542 build/files.c:2156 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
#: build/files.c:1585
#: build/files.c:1554
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
#: build/files.c:1689
#: build/files.c:1658
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr ""
#: build/files.c:1712
#: build/files.c:1681
#, c-format
msgid "Glob not permitted: %s\n"
msgstr ""
#: build/files.c:1727
#: build/files.c:1696
#, c-format
msgid "File not found by glob: %s\n"
msgstr ""
#: build/files.c:1789
#: build/files.c:1758
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr ""
#: build/files.c:1800 build/pack.c:146
#: build/files.c:1769 build/pack.c:146
#, c-format
msgid "line: %s\n"
msgstr ""
#: build/files.c:2173
#: build/files.c:2144
#, c-format
msgid "Bad file: %s: %s\n"
msgstr ""
#. XXX this error message is probably not seen.
#: build/files.c:2247
#: build/files.c:2218
#, c-format
msgid "Couldn't exec %s: %s\n"
msgstr ""
#: build/files.c:2252
#: build/files.c:2223
#, c-format
msgid "Couldn't fork %s: %s\n"
msgstr ""
#: build/files.c:2336
#: build/files.c:2307
#, c-format
msgid "%s failed\n"
msgstr ""
#: build/files.c:2340
#: build/files.c:2311
#, c-format
msgid "failed to write all data to %s\n"
msgstr ""
#: build/files.c:2476
#: build/files.c:2447
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
#: build/files.c:2502 build/files.c:2516
#: build/files.c:2473 build/files.c:2487
#, c-format
msgid "Failed to find %s:\n"
msgstr ""
#: build/files.c:2637
#: build/files.c:2608
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@ -1543,37 +1543,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr ""
#: lib/fsm.c:1180
#: lib/fsm.c:1183
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1461
#: lib/fsm.c:1464
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1582 lib/fsm.c:1710
#: lib/fsm.c:1585 lib/fsm.c:1713
#, c-format
msgid "%s saved as %s\n"
msgstr ""
#: lib/fsm.c:1736
#: lib/fsm.c:1739
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr ""
#: lib/fsm.c:1742
#: lib/fsm.c:1745
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1752
#: lib/fsm.c:1755
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1771
#: lib/fsm.c:1774
#, c-format
msgid "%s created as %s\n"
msgstr ""

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-01-10 14:14-0500\n"
"POT-Creation-Date: 2002-01-11 17:48-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"
@ -581,98 +581,98 @@ msgid "Can't mix special %%doc with other forms: %s\n"
msgstr ""
#. Two entries for the same file found, merge the entries.
#: build/files.c:1144
#: build/files.c:1113
#, c-format
msgid "File listed twice: %s\n"
msgstr "Skráin er tvítekin: %s\n"
#: build/files.c:1291
#: build/files.c:1260
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr ""
#: build/files.c:1506
#: build/files.c:1475
#, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr ""
#: build/files.c:1530
#: build/files.c:1499
#, c-format
msgid "File not found: %s\n"
msgstr "Skráin fannst ekki: %s\n"
#: build/files.c:1573 build/files.c:2185 build/parsePrep.c:50
#: build/files.c:1542 build/files.c:2156 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
#: build/files.c:1585
#: build/files.c:1554
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
#: build/files.c:1689
#: build/files.c:1658
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr ""
#: build/files.c:1712
#: build/files.c:1681
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "Gat ekki opnað PreUn skrá: %s\n"
#: build/files.c:1727
#: build/files.c:1696
#, c-format
msgid "File not found by glob: %s\n"
msgstr "Skráin fannst ekki með 'glob': %s\n"
#: build/files.c:1789
#: build/files.c:1758
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "Gat ekki opnað %%files skrána %s: %s\n"
#: build/files.c:1800 build/pack.c:146
#: build/files.c:1769 build/pack.c:146
#, c-format
msgid "line: %s\n"
msgstr "lína: %s\n"
#: build/files.c:2173
#: build/files.c:2144
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "Ógild skrá %s: %s\n"
#. XXX this error message is probably not seen.
#: build/files.c:2247
#: build/files.c:2218
#, c-format
msgid "Couldn't exec %s: %s\n"
msgstr "Gat ekki keyrt %s: %s\n"
#: build/files.c:2252
#: build/files.c:2223
#, c-format
msgid "Couldn't fork %s: %s\n"
msgstr "Gat ekki búið til undirferli (fork) %s: %s\n"
#: build/files.c:2336
#: build/files.c:2307
#, c-format
msgid "%s failed\n"
msgstr "%s brást\n"
#: build/files.c:2340
#: build/files.c:2311
#, c-format
msgid "failed to write all data to %s\n"
msgstr "gat ekki ritað öll gögn í %s\n"
#: build/files.c:2476
#: build/files.c:2447
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
#: build/files.c:2502 build/files.c:2516
#: build/files.c:2473 build/files.c:2487
#, c-format
msgid "Failed to find %s:\n"
msgstr "gat ekki fundið %s:\n"
#: build/files.c:2637
#: build/files.c:2608
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@ -1544,37 +1544,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr "%9d %s\n"
#: lib/fsm.c:1180
#: lib/fsm.c:1183
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1461
#: lib/fsm.c:1464
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1582 lib/fsm.c:1710
#: lib/fsm.c:1585 lib/fsm.c:1713
#, c-format
msgid "%s saved as %s\n"
msgstr "%s vistað sem %s\n"
#: lib/fsm.c:1736
#: lib/fsm.c:1739
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr ""
#: lib/fsm.c:1742
#: lib/fsm.c:1745
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s rmdir %s brást: %s\n"
#: lib/fsm.c:1752
#: lib/fsm.c:1755
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s gat ekki eytt %s: %s\n"
#: lib/fsm.c:1771
#: lib/fsm.c:1774
#, c-format
msgid "%s created as %s\n"
msgstr "%s búið til sem %s\n"

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-01-10 14:14-0500\n"
"POT-Creation-Date: 2002-01-11 17:48-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"
@ -586,98 +586,98 @@ msgid "Can't mix special %%doc with other forms: %s\n"
msgstr ""
#. Two entries for the same file found, merge the entries.
#: build/files.c:1144
#: build/files.c:1113
#, c-format
msgid "File listed twice: %s\n"
msgstr ""
#: build/files.c:1291
#: build/files.c:1260
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr ""
#: build/files.c:1506
#: build/files.c:1475
#, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr ""
#: build/files.c:1530
#: build/files.c:1499
#, c-format
msgid "File not found: %s\n"
msgstr ""
#: build/files.c:1573 build/files.c:2185 build/parsePrep.c:50
#: build/files.c:1542 build/files.c:2156 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
#: build/files.c:1585
#: build/files.c:1554
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
#: build/files.c:1689
#: build/files.c:1658
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr ""
#: build/files.c:1712
#: build/files.c:1681
#, c-format
msgid "Glob not permitted: %s\n"
msgstr ""
#: build/files.c:1727
#: build/files.c:1696
#, c-format
msgid "File not found by glob: %s\n"
msgstr ""
#: build/files.c:1789
#: build/files.c:1758
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr ""
#: build/files.c:1800 build/pack.c:146
#: build/files.c:1769 build/pack.c:146
#, c-format
msgid "line: %s\n"
msgstr ""
#: build/files.c:2173
#: build/files.c:2144
#, c-format
msgid "Bad file: %s: %s\n"
msgstr ""
#. XXX this error message is probably not seen.
#: build/files.c:2247
#: build/files.c:2218
#, c-format
msgid "Couldn't exec %s: %s\n"
msgstr ""
#: build/files.c:2252
#: build/files.c:2223
#, c-format
msgid "Couldn't fork %s: %s\n"
msgstr ""
#: build/files.c:2336
#: build/files.c:2307
#, c-format
msgid "%s failed\n"
msgstr ""
#: build/files.c:2340
#: build/files.c:2311
#, c-format
msgid "failed to write all data to %s\n"
msgstr ""
#: build/files.c:2476
#: build/files.c:2447
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
#: build/files.c:2502 build/files.c:2516
#: build/files.c:2473 build/files.c:2487
#, c-format
msgid "Failed to find %s:\n"
msgstr ""
#: build/files.c:2637
#: build/files.c:2608
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@ -1543,37 +1543,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr ""
#: lib/fsm.c:1180
#: lib/fsm.c:1183
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1461
#: lib/fsm.c:1464
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1582 lib/fsm.c:1710
#: lib/fsm.c:1585 lib/fsm.c:1713
#, c-format
msgid "%s saved as %s\n"
msgstr ""
#: lib/fsm.c:1736
#: lib/fsm.c:1739
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr ""
#: lib/fsm.c:1742
#: lib/fsm.c:1745
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1752
#: lib/fsm.c:1755
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1771
#: lib/fsm.c:1774
#, c-format
msgid "%s created as %s\n"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-01-10 14:14-0500\n"
"POT-Creation-Date: 2002-01-11 17:48-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"
@ -627,98 +627,98 @@ msgid "Can't mix special %%doc with other forms: %s\n"
msgstr "他のフォームで特別な %%doc を混ぜることはできません: %s"
#. Two entries for the same file found, merge the entries.
#: build/files.c:1144
#: build/files.c:1113
#, fuzzy, c-format
msgid "File listed twice: %s\n"
msgstr "ファイルが2回表記されています: %s"
#: build/files.c:1291
#: build/files.c:1260
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr ""
#: build/files.c:1506
#: build/files.c:1475
#, fuzzy, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr "ファイルは prefix (%s) と一致しません: %s"
#: build/files.c:1530
#: build/files.c:1499
#, fuzzy, c-format
msgid "File not found: %s\n"
msgstr "ファイルが見つかりません: %s"
#: build/files.c:1573 build/files.c:2185 build/parsePrep.c:50
#: build/files.c:1542 build/files.c:2156 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "不正な所有者/グループ: %s\n"
#: build/files.c:1585
#: build/files.c:1554
#, fuzzy, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr "ファイル %4d: %07o %s.%s\t %s\n"
#: build/files.c:1689
#: build/files.c:1658
#, fuzzy, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "ファイルは先頭に \"/\" が必要です: %s"
#: build/files.c:1712
#: build/files.c:1681
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "%d 行目: バージョンは許可されていません: %s"
#: build/files.c:1727
#: build/files.c:1696
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "ファイルが見つかりません(by glob): %s"
#: build/files.c:1789
#: build/files.c:1758
#, fuzzy, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "%%files をオープンできません: %s"
#: build/files.c:1800 build/pack.c:146
#: build/files.c:1769 build/pack.c:146
#, fuzzy, c-format
msgid "line: %s\n"
msgstr "行目: %s"
#: build/files.c:2173
#: build/files.c:2144
#, fuzzy, c-format
msgid "Bad file: %s: %s\n"
msgstr "ファイル %s: %s\n"
#. XXX this error message is probably not seen.
#: build/files.c:2247
#: build/files.c:2218
#, fuzzy, c-format
msgid "Couldn't exec %s: %s\n"
msgstr "%s を実行できませんでした: %s"
#: build/files.c:2252
#: build/files.c:2223
#, fuzzy, c-format
msgid "Couldn't fork %s: %s\n"
msgstr "%s を fork できませんでした: %s"
#: build/files.c:2336
#: build/files.c:2307
#, fuzzy, c-format
msgid "%s failed\n"
msgstr "%s 失敗"
#: build/files.c:2340
#: build/files.c:2311
#, fuzzy, c-format
msgid "failed to write all data to %s\n"
msgstr "全てのデータを %s に書くことに失敗しました"
#: build/files.c:2476
#: build/files.c:2447
#, fuzzy, c-format
msgid "Finding %s: (using %s)...\n"
msgstr "%s を探しています: (%s を使用しています)...\n"
#: build/files.c:2502 build/files.c:2516
#: build/files.c:2473 build/files.c:2487
#, fuzzy, c-format
msgid "Failed to find %s:\n"
msgstr "%s を見つけるのに失敗しました:"
#: build/files.c:2637
#: build/files.c:2608
#, fuzzy, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "ファイルの処理中: %s-%s-%s\n"
@ -1623,37 +1623,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr "%d 行目: %s"
#: lib/fsm.c:1180
#: lib/fsm.c:1183
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1461
#: lib/fsm.c:1464
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1582 lib/fsm.c:1710
#: lib/fsm.c:1585 lib/fsm.c:1713
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "警告: %s は %s として保存されます"
#: lib/fsm.c:1736
#: lib/fsm.c:1739
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s を削除できません - ディレクトリが空でありません"
#: lib/fsm.c:1742
#: lib/fsm.c:1745
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s の rmdir に失敗: %s"
#: lib/fsm.c:1752
#: lib/fsm.c:1755
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s のオープンに失敗: %s\n"
#: lib/fsm.c:1771
#: lib/fsm.c:1774
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "警告: %s は %s として作成されます"

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-01-10 14:14-0500\n"
"POT-Creation-Date: 2002-01-11 17:48-0500\n"
"PO-Revision-Date: 2001-09-07 22:03+0900\n"
"Last-Translator: Jong-Hoon Ryu <redhat4u@netian.com>\n"
"Language-Team: GNU Translation project <ko@li.org>\n"
@ -592,98 +592,98 @@ msgid "Can't mix special %%doc with other forms: %s\n"
msgstr "특정 %%doc을 다른 형식과 함께 사용할 수 없음: %s\n"
#. Two entries for the same file found, merge the entries.
#: build/files.c:1144
#: build/files.c:1113
#, c-format
msgid "File listed twice: %s\n"
msgstr "파일 목록이 중복됨: %s\n"
#: build/files.c:1291
#: build/files.c:1260
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr "BuildRoot에 심볼릭링크함: %s -> %s\n"
#: build/files.c:1506
#: build/files.c:1475
#, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr "파일이 prefix (%s) (와)과 일치하지 않음: %s\n"
#: build/files.c:1530
#: build/files.c:1499
#, c-format
msgid "File not found: %s\n"
msgstr "파일을 찾을 수 없음: %s\n"
#: build/files.c:1573 build/files.c:2185 build/parsePrep.c:50
#: build/files.c:1542 build/files.c:2156 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "잘못된 소유자/그룹: %s\n"
#: build/files.c:1585
#: build/files.c:1554
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr "파일 %4d: %07o %s.%s\t %s\n"
#: build/files.c:1689
#: build/files.c:1658
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "파일은 \"/\" 로 시작해야함: %s\n"
#: build/files.c:1712
#: build/files.c:1681
#, c-format
msgid "Glob not permitted: %s\n"
msgstr "Glob을 사용할 수 없음: %s\n"
#: build/files.c:1727
#: build/files.c:1696
#, c-format
msgid "File not found by glob: %s\n"
msgstr "glob으로 파일을 찾을 수 없음: %s\n"
#: build/files.c:1789
#: build/files.c:1758
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "%s 파일의 %%files를 열 수 없음: %s\n"
#: build/files.c:1800 build/pack.c:146
#: build/files.c:1769 build/pack.c:146
#, c-format
msgid "line: %s\n"
msgstr "줄(line): %s\n"
#: build/files.c:2173
#: build/files.c:2144
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "잘못된 파일: %s: %s\n"
#. XXX this error message is probably not seen.
#: build/files.c:2247
#: build/files.c:2218
#, c-format
msgid "Couldn't exec %s: %s\n"
msgstr "%s (을)를 실행할 수 없음: %s\n"
#: build/files.c:2252
#: build/files.c:2223
#, c-format
msgid "Couldn't fork %s: %s\n"
msgstr "%s (을)를 fork 할 수 없음: %s\n"
#: build/files.c:2336
#: build/files.c:2307
#, c-format
msgid "%s failed\n"
msgstr "%s (이)가 실패했습니다\n"
#: build/files.c:2340
#: build/files.c:2311
#, c-format
msgid "failed to write all data to %s\n"
msgstr "%s 에 모든 자료를 기록하는데 실패했습니다\n"
#: build/files.c:2476
#: build/files.c:2447
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr "%s (을)를 찾는 중: (%s 사용)...\n"
#: build/files.c:2502 build/files.c:2516
#: build/files.c:2473 build/files.c:2487
#, c-format
msgid "Failed to find %s:\n"
msgstr "%s (을)를 찾는데 실패함:\n"
#: build/files.c:2637
#: build/files.c:2608
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "파일 처리 중: %s-%s-%s\n"
@ -1566,37 +1566,37 @@ msgstr "=========
msgid "%10d %s\n"
msgstr "%9d %s\n"
#: lib/fsm.c:1180
#: lib/fsm.c:1183
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr "%04o 허가권(perms)의 %s 디렉토리가 생성되었습니다.\n"
#: lib/fsm.c:1461
#: lib/fsm.c:1464
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr "헤더 파일 목록에서 아카이브 파일 %s (을)를 찾을 수 없습니다\n"
#: lib/fsm.c:1582 lib/fsm.c:1710
#: lib/fsm.c:1585 lib/fsm.c:1713
#, c-format
msgid "%s saved as %s\n"
msgstr "%s (이)가 %s (으)로 저장되었습니다\n"
#: lib/fsm.c:1736
#: lib/fsm.c:1739
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s %s 디렉토리를 삭제하는데 실패함: 빈 디렉토리가 아닙니다\n"
#: lib/fsm.c:1742
#: lib/fsm.c:1745
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s %s 디렉토리를 삭제하는데 실패함: %s\n"
#: lib/fsm.c:1752
#: lib/fsm.c:1755
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s %s 링크를 해제하는데 실패함: %s\n"
#: lib/fsm.c:1771
#: lib/fsm.c:1774
#, c-format
msgid "%s created as %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-01-10 14:14-0500\n"
"POT-Creation-Date: 2002-01-11 17:48-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"
@ -591,98 +591,98 @@ msgid "Can't mix special %%doc with other forms: %s\n"
msgstr "Kan ikke blande spesiell %%doc med andre skjema: %s\n"
#. Two entries for the same file found, merge the entries.
#: build/files.c:1144
#: build/files.c:1113
#, c-format
msgid "File listed twice: %s\n"
msgstr "Fil listet to ganger: %s\n"
#: build/files.c:1291
#: build/files.c:1260
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr "Symbolsk lenke peker til BuildRoot: %s -> %s\n"
#: build/files.c:1506
#: build/files.c:1475
#, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr ""
#: build/files.c:1530
#: build/files.c:1499
#, c-format
msgid "File not found: %s\n"
msgstr "Fil ikke funnet: %s\n"
#: build/files.c:1573 build/files.c:2185 build/parsePrep.c:50
#: build/files.c:1542 build/files.c:2156 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Ugyldig eier/gruppe: %s\n"
#: build/files.c:1585
#: build/files.c:1554
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
#: build/files.c:1689
#: build/files.c:1658
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr ""
#: build/files.c:1712
#: build/files.c:1681
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "linje %d: Filnavn ikke tillatt: %s\n"
#: build/files.c:1727
#: build/files.c:1696
#, c-format
msgid "File not found by glob: %s\n"
msgstr ""
#: build/files.c:1789
#: build/files.c:1758
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "Kunne ikke åpne spec fil %s: %s\n"
#: build/files.c:1800 build/pack.c:146
#: build/files.c:1769 build/pack.c:146
#, c-format
msgid "line: %s\n"
msgstr "Installerer %s\n"
#: build/files.c:2173
#: build/files.c:2144
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "Ugyldig fil %s: %s\n"
#. XXX this error message is probably not seen.
#: build/files.c:2247
#: build/files.c:2218
#, c-format
msgid "Couldn't exec %s: %s\n"
msgstr "Kunne ikke kjøre %s: %s\n"
#: build/files.c:2252
#: build/files.c:2223
#, c-format
msgid "Couldn't fork %s: %s\n"
msgstr "klarte ikke å åpne %s: %s\n"
#: build/files.c:2336
#: build/files.c:2307
#, c-format
msgid "%s failed\n"
msgstr "%s feilet\n"
#: build/files.c:2340
#: build/files.c:2311
#, c-format
msgid "failed to write all data to %s\n"
msgstr "kunne ikke skrive alle data til %s\n"
#: build/files.c:2476
#: build/files.c:2447
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
#: build/files.c:2502 build/files.c:2516
#: build/files.c:2473 build/files.c:2487
#, c-format
msgid "Failed to find %s:\n"
msgstr "Klarte ikke å finne %s:\n"
#: build/files.c:2637
#: build/files.c:2608
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@ -1558,37 +1558,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr "%9d %s\n"
#: lib/fsm.c:1180
#: lib/fsm.c:1183
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1461
#: lib/fsm.c:1464
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1582 lib/fsm.c:1710
#: lib/fsm.c:1585 lib/fsm.c:1713
#, c-format
msgid "%s saved as %s\n"
msgstr "%s lagret som %s\n"
#: lib/fsm.c:1736
#: lib/fsm.c:1739
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s rmdir av %s feilet: Katalogen er ikke tom\n"
#: lib/fsm.c:1742
#: lib/fsm.c:1745
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s rmdir av %s feilet: %s\n"
#: lib/fsm.c:1752
#: lib/fsm.c:1755
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s unlink av %s feilet: %s\n"
#: lib/fsm.c:1771
#: lib/fsm.c:1774
#, c-format
msgid "%s created as %s\n"
msgstr "%s opprettet som %s\n"

View File

@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-01-10 14:14-0500\n"
"POT-Creation-Date: 2002-01-11 17:48-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"
@ -617,98 +617,98 @@ msgid "Can't mix special %%doc with other forms: %s\n"
msgstr "Nie mo¿na mieszaæ specjalnej %%doc z innymi formami: %s"
#. Two entries for the same file found, merge the entries.
#: build/files.c:1144
#: build/files.c:1113
#, fuzzy, c-format
msgid "File listed twice: %s\n"
msgstr "Plik podany dwukrotnie: %s"
#: build/files.c:1291
#: build/files.c:1260
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr ""
#: build/files.c:1506
#: build/files.c:1475
#, fuzzy, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr "Plik nie zgadza siê z prefiksem (%s): %s"
#: build/files.c:1530
#: build/files.c:1499
#, fuzzy, c-format
msgid "File not found: %s\n"
msgstr "Nie znaleziono pliku: %s"
#: build/files.c:1573 build/files.c:2185 build/parsePrep.c:50
#: build/files.c:1542 build/files.c:2156 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "B³êdny u¿ytkownik/grupa: %s\n"
#: build/files.c:1585
#: build/files.c:1554
#, fuzzy, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr "Plik %4d: 0%o %s.%s\t %s\n"
#: build/files.c:1689
#: build/files.c:1658
#, fuzzy, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "Plik musi siê zaczynaæ od \"/\": %s"
#: build/files.c:1712
#: build/files.c:1681
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "linia %d: Wersja niedozwolona: %s"
#: build/files.c:1727
#: build/files.c:1696
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "Nie znaleziono pliku: %s"
#: build/files.c:1789
#: build/files.c:1758
#, fuzzy, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "Nie mo¿na otworzyæ %%files pliku: %s"
#: build/files.c:1800 build/pack.c:146
#: build/files.c:1769 build/pack.c:146
#, fuzzy, c-format
msgid "line: %s\n"
msgstr "linia: %s"
#: build/files.c:2173
#: build/files.c:2144
#, fuzzy, c-format
msgid "Bad file: %s: %s\n"
msgstr "plik %s: %s\n"
#. XXX this error message is probably not seen.
#: build/files.c:2247
#: build/files.c:2218
#, fuzzy, c-format
msgid "Couldn't exec %s: %s\n"
msgstr "Nie mo¿na uruchomiæ %s"
#: build/files.c:2252
#: build/files.c:2223
#, fuzzy, c-format
msgid "Couldn't fork %s: %s\n"
msgstr "Nie mo¿na wykonaæ fork na %s"
#: build/files.c:2336
#: build/files.c:2307
#, fuzzy, c-format
msgid "%s failed\n"
msgstr "%s nie powiod³o siê"
#: build/files.c:2340
#: build/files.c:2311
#, fuzzy, c-format
msgid "failed to write all data to %s\n"
msgstr "zapisanie wszystkich danych do %s nie powiod³o siê"
#: build/files.c:2476
#: build/files.c:2447
#, fuzzy, c-format
msgid "Finding %s: (using %s)...\n"
msgstr "Wyszukiwanie wymaganych zasobów...\n"
#: build/files.c:2502 build/files.c:2516
#: build/files.c:2473 build/files.c:2487
#, fuzzy, c-format
msgid "Failed to find %s:\n"
msgstr "Wyszukiwanie nie powiod³o siê"
#: build/files.c:2637
#: build/files.c:2608
#, fuzzy, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Przetwarzanie plików: %s\n"
@ -1606,37 +1606,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr "linia %d: %s"
#: lib/fsm.c:1180
#: lib/fsm.c:1183
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1461
#: lib/fsm.c:1464
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1582 lib/fsm.c:1710
#: lib/fsm.c:1585 lib/fsm.c:1713
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "ostrze¿enie: %s zapisany jako %s"
#: lib/fsm.c:1736
#: lib/fsm.c:1739
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "nie mo¿na usun±æ %s - katalog nie jest pusty"
#: lib/fsm.c:1742
#: lib/fsm.c:1745
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "skasowanie katalogu %s nie powiod³o siê"
#: lib/fsm.c:1752
#: lib/fsm.c:1755
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "otwarcie %s nie powiod³o siê\n"
#: lib/fsm.c:1771
#: lib/fsm.c:1774
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "ostrze¿enie: %s utworzony jako %s"

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-01-10 14:14-0500\n"
"POT-Creation-Date: 2002-01-11 17:48-0500\n"
"PO-Revision-Date: 2000-06-22 01:13+01:00\n"
"Last-Translator: José Nuno Coelho Sanarra Pires\n"
"Language-Team: pt <kde@poli.org>\n"
@ -587,98 +587,98 @@ msgid "Can't mix special %%doc with other forms: %s\n"
msgstr "Não é possível misturar o %%doc especial com outras formas: %s\n"
#. Two entries for the same file found, merge the entries.
#: build/files.c:1144
#: build/files.c:1113
#, c-format
msgid "File listed twice: %s\n"
msgstr "Ficheiro listado duas vezes: %s\n"
#: build/files.c:1291
#: build/files.c:1260
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr "A 'symlink' aponta para a BuildRoot: %s -> %s\n"
#: build/files.c:1506
#: build/files.c:1475
#, 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:1530
#: build/files.c:1499
#, c-format
msgid "File not found: %s\n"
msgstr "Ficheiro não encontrado: %s\n"
#: build/files.c:1573 build/files.c:2185 build/parsePrep.c:50
#: build/files.c:1542 build/files.c:2156 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Dono/grupo inválido: %s\n"
#: build/files.c:1585
#: build/files.c:1554
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr "Ficheiro: %4d: %07o %s.%s\t %s\n"
#: build/files.c:1689
#: build/files.c:1658
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "O ficheiro precisa de começar por \"/\": %s\n"
#: build/files.c:1712
#: build/files.c:1681
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "linha %d: Nome do ficheiro não permitido: %s\n"
#: build/files.c:1727
#: build/files.c:1696
#, c-format
msgid "File not found by glob: %s\n"
msgstr "Ficheiro não encontrado pelo glob: %s\n"
#: build/files.c:1789
#: build/files.c:1758
#, 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:1800 build/pack.c:146
#: build/files.c:1769 build/pack.c:146
#, c-format
msgid "line: %s\n"
msgstr "linha: %s\n"
#: build/files.c:2173
#: build/files.c:2144
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "Ficheiro inválido: %s: %s\n"
#. XXX this error message is probably not seen.
#: build/files.c:2247
#: build/files.c:2218
#, c-format
msgid "Couldn't exec %s: %s\n"
msgstr "Não consegui executar o %s: %S\n"
#: build/files.c:2252
#: build/files.c:2223
#, c-format
msgid "Couldn't fork %s: %s\n"
msgstr "Não consegui executar à parte o %s: &s\n"
#: build/files.c:2336
#: build/files.c:2307
#, c-format
msgid "%s failed\n"
msgstr "O %s falhou\n"
#: build/files.c:2340
#: build/files.c:2311
#, c-format
msgid "failed to write all data to %s\n"
msgstr "não consegui escrever todos os dados em %s\n"
#: build/files.c:2476
#: build/files.c:2447
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr "A procurar o %s: (usando o %s)...\n"
#: build/files.c:2502 build/files.c:2516
#: build/files.c:2473 build/files.c:2487
#, c-format
msgid "Failed to find %s:\n"
msgstr "Não consegui encontrar o %s:\n"
#: build/files.c:2637
#: build/files.c:2608
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "A processar os ficheiros: %s-%s-%s\n"
@ -1561,37 +1561,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr "linha %d: %s\n"
#: lib/fsm.c:1180
#: lib/fsm.c:1183
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1461
#: lib/fsm.c:1464
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1582 lib/fsm.c:1710
#: lib/fsm.c:1585 lib/fsm.c:1713
#, c-format
msgid "%s saved as %s\n"
msgstr "%s gravado como %s\n"
#: lib/fsm.c:1736
#: lib/fsm.c:1739
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "não consigo remover a %s - a directoria não está vazia\n"
#: lib/fsm.c:1742
#: lib/fsm.c:1745
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "o rmdir da %s falhou: %s\n"
#: lib/fsm.c:1752
#: lib/fsm.c:1755
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "o acesso ao %s falhou: %s\n"
#: lib/fsm.c:1771
#: lib/fsm.c:1774
#, c-format
msgid "%s created as %s\n"
msgstr "%s criado como %s\n"

View File

@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-01-10 14:14-0500\n"
"POT-Creation-Date: 2002-01-11 17:48-0500\n"
#: build.c:36
#, fuzzy
@ -649,107 +649,107 @@ msgstr ""
# , c-format
#. Two entries for the same file found, merge the entries.
#: build/files.c:1144
#: build/files.c:1113
#, fuzzy, c-format
msgid "File listed twice: %s\n"
msgstr "No consegui ler o arquivo spec de %s\n"
#: build/files.c:1291
#: build/files.c:1260
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr ""
# , c-format
#: build/files.c:1506
#: build/files.c:1475
#, 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:1530
#: build/files.c:1499
#, fuzzy, c-format
msgid "File not found: %s\n"
msgstr "no foi passado pacote para desinstalao"
#: build/files.c:1573 build/files.c:2185 build/parsePrep.c:50
#: build/files.c:1542 build/files.c:2156 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
#: build/files.c:1585
#: build/files.c:1554
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
#: build/files.c:1689
#: build/files.c:1658
#, fuzzy, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "argumentos para o --dbpath devem comear com uma /"
# , c-format
#: build/files.c:1712
#: build/files.c:1681
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "No consegui abrir: %s\n"
#: build/files.c:1727
#: build/files.c:1696
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "no foi passado pacote para desinstalao"
# , c-format
#: build/files.c:1789
#: build/files.c:1758
#, fuzzy, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
#: build/files.c:1800 build/pack.c:146
#: build/files.c:1769 build/pack.c:146
#, fuzzy, c-format
msgid "line: %s\n"
msgstr "No consegui ler o arquivo spec de %s\n"
# , c-format
#: build/files.c:2173
#: build/files.c:2144
#, fuzzy, c-format
msgid "Bad file: %s: %s\n"
msgstr "No consegui ler o arquivo spec de %s\n"
# , c-format
#. XXX this error message is probably not seen.
#: build/files.c:2247
#: build/files.c:2218
#, fuzzy, c-format
msgid "Couldn't exec %s: %s\n"
msgstr "No consegui ler o arquivo spec de %s\n"
# , c-format
#: build/files.c:2252
#: build/files.c:2223
#, fuzzy, c-format
msgid "Couldn't fork %s: %s\n"
msgstr "No consegui ler o arquivo spec de %s\n"
#: build/files.c:2336
#: build/files.c:2307
#, fuzzy, c-format
msgid "%s failed\n"
msgstr "Construo falhou.\n"
# , c-format
#: build/files.c:2340
#: build/files.c:2311
#, fuzzy, c-format
msgid "failed to write all data to %s\n"
msgstr "No consegui abrir o pipe tar: %s\n"
#: build/files.c:2476
#: build/files.c:2447
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
# , c-format
#: build/files.c:2502 build/files.c:2516
#: build/files.c:2473 build/files.c:2487
#, fuzzy, c-format
msgid "Failed to find %s:\n"
msgstr "No consegui abrir o pipe tar: %s\n"
#: build/files.c:2637
#: build/files.c:2608
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@ -1719,40 +1719,40 @@ msgstr ""
msgid "%10d %s\n"
msgstr "No consegui ler o arquivo spec de %s\n"
#: lib/fsm.c:1180
#: lib/fsm.c:1183
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1461
#: lib/fsm.c:1464
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
# , c-format
#: lib/fsm.c:1582 lib/fsm.c:1710
#: lib/fsm.c:1585 lib/fsm.c:1713
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
#: lib/fsm.c:1736
#: lib/fsm.c:1739
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "No consegui abrir: %s\n"
#: lib/fsm.c:1742
#: lib/fsm.c:1745
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "Construo falhou.\n"
#: lib/fsm.c:1752
#: lib/fsm.c:1755
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "Construo falhou.\n"
# , c-format
#: lib/fsm.c:1771
#: lib/fsm.c:1774
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "No consegui abrir: %s\n"

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-01-10 14:14-0500\n"
"POT-Creation-Date: 2002-01-11 17:48-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"
@ -581,98 +581,98 @@ msgid "Can't mix special %%doc with other forms: %s\n"
msgstr ""
#. Two entries for the same file found, merge the entries.
#: build/files.c:1144
#: build/files.c:1113
#, c-format
msgid "File listed twice: %s\n"
msgstr ""
#: build/files.c:1291
#: build/files.c:1260
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr ""
#: build/files.c:1506
#: build/files.c:1475
#, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr ""
#: build/files.c:1530
#: build/files.c:1499
#, c-format
msgid "File not found: %s\n"
msgstr ""
#: build/files.c:1573 build/files.c:2185 build/parsePrep.c:50
#: build/files.c:1542 build/files.c:2156 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
#: build/files.c:1585
#: build/files.c:1554
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
#: build/files.c:1689
#: build/files.c:1658
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr ""
#: build/files.c:1712
#: build/files.c:1681
#, c-format
msgid "Glob not permitted: %s\n"
msgstr ""
#: build/files.c:1727
#: build/files.c:1696
#, c-format
msgid "File not found by glob: %s\n"
msgstr ""
#: build/files.c:1789
#: build/files.c:1758
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr ""
#: build/files.c:1800 build/pack.c:146
#: build/files.c:1769 build/pack.c:146
#, c-format
msgid "line: %s\n"
msgstr ""
#: build/files.c:2173
#: build/files.c:2144
#, c-format
msgid "Bad file: %s: %s\n"
msgstr ""
#. XXX this error message is probably not seen.
#: build/files.c:2247
#: build/files.c:2218
#, c-format
msgid "Couldn't exec %s: %s\n"
msgstr ""
#: build/files.c:2252
#: build/files.c:2223
#, c-format
msgid "Couldn't fork %s: %s\n"
msgstr ""
#: build/files.c:2336
#: build/files.c:2307
#, c-format
msgid "%s failed\n"
msgstr ""
#: build/files.c:2340
#: build/files.c:2311
#, c-format
msgid "failed to write all data to %s\n"
msgstr ""
#: build/files.c:2476
#: build/files.c:2447
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
#: build/files.c:2502 build/files.c:2516
#: build/files.c:2473 build/files.c:2487
#, c-format
msgid "Failed to find %s:\n"
msgstr ""
#: build/files.c:2637
#: build/files.c:2608
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@ -1538,37 +1538,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr ""
#: lib/fsm.c:1180
#: lib/fsm.c:1183
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1461
#: lib/fsm.c:1464
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1582 lib/fsm.c:1710
#: lib/fsm.c:1585 lib/fsm.c:1713
#, c-format
msgid "%s saved as %s\n"
msgstr ""
#: lib/fsm.c:1736
#: lib/fsm.c:1739
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr ""
#: lib/fsm.c:1742
#: lib/fsm.c:1745
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1752
#: lib/fsm.c:1755
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1771
#: lib/fsm.c:1774
#, c-format
msgid "%s created as %s\n"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2002-01-10 14:14-0500\n"
"POT-Creation-Date: 2002-01-11 17:48-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"
@ -586,98 +586,98 @@ msgid "Can't mix special %%doc with other forms: %s\n"
msgstr ""
#. Two entries for the same file found, merge the entries.
#: build/files.c:1144
#: build/files.c:1113
#, c-format
msgid "File listed twice: %s\n"
msgstr ""
#: build/files.c:1291
#: build/files.c:1260
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr ""
#: build/files.c:1506
#: build/files.c:1475
#, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr ""
#: build/files.c:1530
#: build/files.c:1499
#, c-format
msgid "File not found: %s\n"
msgstr ""
#: build/files.c:1573 build/files.c:2185 build/parsePrep.c:50
#: build/files.c:1542 build/files.c:2156 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
#: build/files.c:1585
#: build/files.c:1554
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
#: build/files.c:1689
#: build/files.c:1658
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr ""
#: build/files.c:1712
#: build/files.c:1681
#, c-format
msgid "Glob not permitted: %s\n"
msgstr ""
#: build/files.c:1727
#: build/files.c:1696
#, c-format
msgid "File not found by glob: %s\n"
msgstr ""
#: build/files.c:1789
#: build/files.c:1758
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr ""
#: build/files.c:1800 build/pack.c:146
#: build/files.c:1769 build/pack.c:146
#, c-format
msgid "line: %s\n"
msgstr ""
#: build/files.c:2173
#: build/files.c:2144
#, c-format
msgid "Bad file: %s: %s\n"
msgstr ""
#. XXX this error message is probably not seen.
#: build/files.c:2247
#: build/files.c:2218
#, c-format
msgid "Couldn't exec %s: %s\n"
msgstr ""
#: build/files.c:2252
#: build/files.c:2223
#, c-format
msgid "Couldn't fork %s: %s\n"
msgstr ""
#: build/files.c:2336
#: build/files.c:2307
#, c-format
msgid "%s failed\n"
msgstr ""
#: build/files.c:2340
#: build/files.c:2311
#, c-format
msgid "failed to write all data to %s\n"
msgstr ""
#: build/files.c:2476
#: build/files.c:2447
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
#: build/files.c:2502 build/files.c:2516
#: build/files.c:2473 build/files.c:2487
#, c-format
msgid "Failed to find %s:\n"
msgstr ""
#: build/files.c:2637
#: build/files.c:2608
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@ -1543,37 +1543,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr ""
#: lib/fsm.c:1180
#: lib/fsm.c:1183
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1461
#: lib/fsm.c:1464
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1582 lib/fsm.c:1710
#: lib/fsm.c:1585 lib/fsm.c:1713
#, c-format
msgid "%s saved as %s\n"
msgstr ""
#: lib/fsm.c:1736
#: lib/fsm.c:1739
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr ""
#: lib/fsm.c:1742
#: lib/fsm.c:1745
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1752
#: lib/fsm.c:1755
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1771
#: lib/fsm.c:1774
#, c-format
msgid "%s created as %s\n"
msgstr ""

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-01-10 14:14-0500\n"
"POT-Creation-Date: 2002-01-11 17:48-0500\n"
"PO-Revision-Date: 2001-08-29 13:55-0400\n"
"Last-Translator: Eugene Kanter <eugene@blackcatlinux.com>\n"
"Language-Team: Black Cat Linux Team <blackcat-support@blackcatlinux.com>\n"
@ -604,98 +604,98 @@ msgid "Can't mix special %%doc with other forms: %s\n"
msgstr "îÅÌØÚÑ ÓÍÅÛÉ×ÁÔØ ÓÐÅÃ. %%doc Ó ÄÒÕÇÉÍÉ ÆÏÒÍÁÍÉ: %s\n"
#. Two entries for the same file found, merge the entries.
#: build/files.c:1144
#: build/files.c:1113
#, c-format
msgid "File listed twice: %s\n"
msgstr "æÁÊÌ ÕËÁÚÁÎ Ä×ÁÖÄÙ: %s\n"
#: build/files.c:1291
#: build/files.c:1260
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr "óÉÍ×ÏÌÉÞÅÓËÁÑ ÓÓÙÌËÁ ÕËÁÚÙ×ÁÅÔ ÎÁ BuildRoot: %s -> %s\n"
#: build/files.c:1506
#: build/files.c:1475
#, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr "æÁÊÌ ÎÅ ÓÏÏÔ×ÅÔÓÔÕÅÔ ÐÒÅÆÉËÓÕ (%s): %s\n"
#: build/files.c:1530
#: build/files.c:1499
#, c-format
msgid "File not found: %s\n"
msgstr "æÁÊÌ ÎÅ ÎÁÊÄÅÎ: %s\n"
#: build/files.c:1573 build/files.c:2185 build/parsePrep.c:50
#: build/files.c:1542 build/files.c:2156 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "îÅ×ÅÒÎÁÑ ÐÁÒÁ ×ÌÁÄÅÌÅÃ/ÇÒÕÐÐÁ: %s\n"
#: build/files.c:1585
#: build/files.c:1554
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr "æÁÊÌ %4d: %07o %s.%s\t %s\n"
#: build/files.c:1689
#: build/files.c:1658
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "æÁÊÌ ÄÏÌÖÅÎ ÎÁÞÉÎÁÔØÓÑ Ó \"/\": %s\n"
#: build/files.c:1712
#: build/files.c:1681
#, c-format
msgid "Glob not permitted: %s\n"
msgstr "Glob ÎÅ ÒÁÚÒÅÛÁÀÔÓÑ: %s\n"
#: build/files.c:1727
#: build/files.c:1696
#, c-format
msgid "File not found by glob: %s\n"
msgstr "æÁÊÌ ÎÅ ÎÁÊÄÅÎ: %s\n"
#: build/files.c:1789
#: build/files.c:1758
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ %%files %s: %s\n"
#: build/files.c:1800 build/pack.c:146
#: build/files.c:1769 build/pack.c:146
#, c-format
msgid "line: %s\n"
msgstr "ÓÔÒÏËÁ: %s\n"
#: build/files.c:2173
#: build/files.c:2144
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "îÅ×ÅÒÎÙÊ ÆÁÊÌ %s: %s\n"
#. XXX this error message is probably not seen.
#: build/files.c:2247
#: build/files.c:2218
#, c-format
msgid "Couldn't exec %s: %s\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ×ÙÌÎÉÔØ %s: %s\n"
#: build/files.c:2252
#: build/files.c:2223
#, c-format
msgid "Couldn't fork %s: %s\n"
msgstr "óÂÏÊ ×ÅÔ×ÌÅÎÉÑ %s: %s\n"
#: build/files.c:2336
#: build/files.c:2307
#, c-format
msgid "%s failed\n"
msgstr "%s ÎÅ ÕÄÁÌÏÓØ\n"
#: build/files.c:2340
#: build/files.c:2311
#, c-format
msgid "failed to write all data to %s\n"
msgstr "ÚÁÐÉÓØ ×ÓÅÈ ÄÁÎÎÙÈ × %s ÎÅ ÕÄÁÌÁÓØ\n"
#: build/files.c:2476
#: build/files.c:2447
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr "ðÏÉÓË %s (ÉÓÐÏÌØÚÕÑ %s): ...\n"
#: build/files.c:2502 build/files.c:2516
#: build/files.c:2473 build/files.c:2487
#, c-format
msgid "Failed to find %s:\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÎÁÊÔÉ %s:\n"
#: build/files.c:2637
#: build/files.c:2608
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "ïÂÒÁÂÁÔÙ×ÁÀÔÓÑ ÆÁÊÌÙ: %s-%s-%s\n"
@ -1585,37 +1585,37 @@ msgstr "=========
msgid "%10d %s\n"
msgstr "%9d %s\n"
#: lib/fsm.c:1180
#: lib/fsm.c:1183
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr "ËÁÔÁÌÏÇ %s ÓÏÚÄÁÎ Ó ÐÒÁ×ÁÍÉ ÄÏÓÔÕÐÁ %04o.\n"
#: lib/fsm.c:1461
#: lib/fsm.c:1464
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr "ÆÁÊÌ ÁÒÈÉ×Á %s ÎÅ ÎÁÊÄÅÎ × ÓÐÉÓËÅ ÆÁÊÌÏ× ÚÁÇÏÌÏ×ËÁ\n"
#: lib/fsm.c:1582 lib/fsm.c:1710
#: lib/fsm.c:1585 lib/fsm.c:1713
#, c-format
msgid "%s saved as %s\n"
msgstr "%s ÓÏÈÒÁÎÅÎ ËÁË %s\n"
#: lib/fsm.c:1736
#: lib/fsm.c:1739
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s ÎÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ %s: ËÁÔÁÌÏÇ ÎÅ ÐÕÓÔ\n"
#: lib/fsm.c:1742
#: lib/fsm.c:1745
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ËÁÔÁÌÏÇÁ %s: %s\n"
#: lib/fsm.c:1752
#: lib/fsm.c:1755
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s ÎÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ %s: %s\n"
#: lib/fsm.c:1771
#: lib/fsm.c:1774
#, c-format
msgid "%s created as %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-01-10 14:14-0500\n"
"POT-Creation-Date: 2002-01-11 17:48-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"
@ -615,98 +615,98 @@ msgid "Can't mix special %%doc with other forms: %s\n"
msgstr "Nie je mo¾né mie¹a» ¹peciálne %%doc s inými formami: %s"
#. Two entries for the same file found, merge the entries.
#: build/files.c:1144
#: build/files.c:1113
#, fuzzy, c-format
msgid "File listed twice: %s\n"
msgstr "Súbor zadaný dvakrát: %s."
#: build/files.c:1291
#: build/files.c:1260
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr ""
#: build/files.c:1506
#: build/files.c:1475
#, fuzzy, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr "Súbor nesúhlasí s prefixom (%s): %s."
#: build/files.c:1530
#: build/files.c:1499
#, fuzzy, c-format
msgid "File not found: %s\n"
msgstr "Súbor nebol nájdený: %s"
#: build/files.c:1573 build/files.c:2185 build/parsePrep.c:50
#: build/files.c:1542 build/files.c:2156 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Chybný vlastník/skupina: %s\n"
#: build/files.c:1585
#: build/files.c:1554
#, fuzzy, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr "Súbor %4d: 0%o %s.%s\t %s\n"
#: build/files.c:1689
#: build/files.c:1658
#, fuzzy, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "Súbor potrebuje na zaèiatku \"/\": %s"
#: build/files.c:1712
#: build/files.c:1681
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "riadok %d: V %s sú vy¾adované verzie: %s"
#: build/files.c:1727
#: build/files.c:1696
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "Súbor nebol nájdený: %s"
#: build/files.c:1789
#: build/files.c:1758
#, 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:1800 build/pack.c:146
#: build/files.c:1769 build/pack.c:146
#, fuzzy, c-format
msgid "line: %s\n"
msgstr "riadok: %s"
#: build/files.c:2173
#: build/files.c:2144
#, fuzzy, c-format
msgid "Bad file: %s: %s\n"
msgstr "súbor %s: %s\n"
#. XXX this error message is probably not seen.
#: build/files.c:2247
#: build/files.c:2218
#, fuzzy, c-format
msgid "Couldn't exec %s: %s\n"
msgstr "Nie je mo¾né spusti» %s"
#: build/files.c:2252
#: build/files.c:2223
#, fuzzy, c-format
msgid "Couldn't fork %s: %s\n"
msgstr "Nie je mo¾né vytvori» proces %s"
#: build/files.c:2336
#: build/files.c:2307
#, fuzzy, c-format
msgid "%s failed\n"
msgstr "%s zlyhalo"
#: build/files.c:2340
#: build/files.c:2311
#, fuzzy, c-format
msgid "failed to write all data to %s\n"
msgstr "nepodarilo sa zapísa» v¹etky dáta do %s"
#: build/files.c:2476
#: build/files.c:2447
#, fuzzy, c-format
msgid "Finding %s: (using %s)...\n"
msgstr "Zis»ujú sa po¾adované vlastnosti...\n"
#: build/files.c:2502 build/files.c:2516
#: build/files.c:2473 build/files.c:2487
#, fuzzy, c-format
msgid "Failed to find %s:\n"
msgstr "Nepodarilo sa zisti» poskytované vlastnosti"
#: build/files.c:2637
#: build/files.c:2608
#, fuzzy, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Spracovávajú sa súbory: %s\n"
@ -1605,37 +1605,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr "riadok %d: %s"
#: lib/fsm.c:1180
#: lib/fsm.c:1183
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1461
#: lib/fsm.c:1464
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1582 lib/fsm.c:1710
#: lib/fsm.c:1585 lib/fsm.c:1713
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "varovanie: %s uchovaný ako %s"
#: lib/fsm.c:1736
#: lib/fsm.c:1739
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "nie je mo¾né odstráni» %s - adresár nie je prázdny"
#: lib/fsm.c:1742
#: lib/fsm.c:1745
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "rmdir %s zlyhalo: %s"
#: lib/fsm.c:1752
#: lib/fsm.c:1755
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "otvorenie %s zlyhalo\n"
#: lib/fsm.c:1771
#: lib/fsm.c:1774
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "varovanie: %s vytvorené ako %s"

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.219 2002/01/10 19:17:26 jbj Exp $
# $Id: sl.po,v 1.220 2002/01/11 23:03:46 jbj Exp $
#
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-01-10 14:14-0500\n"
"POT-Creation-Date: 2002-01-11 17:48-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"
@ -613,98 +613,98 @@ msgid "Can't mix special %%doc with other forms: %s\n"
msgstr "Posebnih %%doc ni mo¾no me¹ati z ostalimi oblikami: %s"
#. Two entries for the same file found, merge the entries.
#: build/files.c:1144
#: build/files.c:1113
#, fuzzy, c-format
msgid "File listed twice: %s\n"
msgstr "Datoteka je navedena dvakrat: %s"
#: build/files.c:1291
#: build/files.c:1260
#, fuzzy, c-format
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr "Simbolna povezava ka¾e na BuildRoot: %s -> %s"
#: build/files.c:1506
#: build/files.c:1475
#, fuzzy, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr "Datoteka se ne ujema s predpono (%s): %s"
#: build/files.c:1530
#: build/files.c:1499
#, fuzzy, c-format
msgid "File not found: %s\n"
msgstr "Datoteke ni mogoèe najti: %s"
#: build/files.c:1573 build/files.c:2185 build/parsePrep.c:50
#: build/files.c:1542 build/files.c:2156 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Neobstojeè lastnik/skupina: %s\n"
#: build/files.c:1585
#: build/files.c:1554
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr "Datoteka: %4d: %07o %s.%s\t %s\n"
#: build/files.c:1689
#: build/files.c:1658
#, fuzzy, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "Datoteki manjka uvodni \"/\": %s"
#: build/files.c:1712
#: build/files.c:1681
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "vrstica %d: Razlièica ni dovoljena: %s"
#: build/files.c:1727
#: build/files.c:1696
#, 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:1789
#: build/files.c:1758
#, 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:1800 build/pack.c:146
#: build/files.c:1769 build/pack.c:146
#, fuzzy, c-format
msgid "line: %s\n"
msgstr "vrstica: %s"
#: build/files.c:2173
#: build/files.c:2144
#, fuzzy, c-format
msgid "Bad file: %s: %s\n"
msgstr "Po¹kodovana datoteka: %s: %s"
#. XXX this error message is probably not seen.
#: build/files.c:2247
#: build/files.c:2218
#, fuzzy, c-format
msgid "Couldn't exec %s: %s\n"
msgstr "Ni mo¾no izvesti %s: %s"
#: build/files.c:2252
#: build/files.c:2223
#, fuzzy, c-format
msgid "Couldn't fork %s: %s\n"
msgstr "Vejitev %s ni mo¾na: %s"
#: build/files.c:2336
#: build/files.c:2307
#, fuzzy, c-format
msgid "%s failed\n"
msgstr "%s neuspe¹en"
#: build/files.c:2340
#: build/files.c:2311
#, fuzzy, c-format
msgid "failed to write all data to %s\n"
msgstr "pisanje podatkov v %s je bilo neuspe¹no"
#: build/files.c:2476
#: build/files.c:2447
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr "Iskanje %s: (z uporabo %s)...\n"
#: build/files.c:2502 build/files.c:2516
#: build/files.c:2473 build/files.c:2487
#, fuzzy, c-format
msgid "Failed to find %s:\n"
msgstr "Neuspe¹no iskanje %s:"
#: build/files.c:2637
#: build/files.c:2608
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Obdeloavnje datotek: %s-%s-%s\n"
@ -1606,37 +1606,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr "vrstica %d: %s"
#: lib/fsm.c:1180
#: lib/fsm.c:1183
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1461
#: lib/fsm.c:1464
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1582 lib/fsm.c:1710
#: lib/fsm.c:1585 lib/fsm.c:1713
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "opozorilo: %s shranjen kot %s"
#: lib/fsm.c:1736
#: lib/fsm.c:1739
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "ni mo¾no odstraniti %s - imenik ni prazen"
#: lib/fsm.c:1742
#: lib/fsm.c:1745
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "odstranitev imenika %s je bila neuspe¹na: %s"
#: lib/fsm.c:1752
#: lib/fsm.c:1755
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "odpiranje %s je bilo neuspe¹no: %s\n"
#: lib/fsm.c:1771
#: lib/fsm.c:1774
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "opozorilo: %s ustvarjen kot %s"

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-01-10 14:14-0500\n"
"POT-Creation-Date: 2002-01-11 17:48-0500\n"
"Content-Type: text/plain; charset=\n"
"Date: 1998-05-02 21:41:47-0400\n"
@ -599,98 +599,98 @@ msgid "Can't mix special %%doc with other forms: %s\n"
msgstr ""
#. Two entries for the same file found, merge the entries.
#: build/files.c:1144
#: build/files.c:1113
#, fuzzy, c-format
msgid "File listed twice: %s\n"
msgstr "Neuspelo èitanje %s: %s."
#: build/files.c:1291
#: build/files.c:1260
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr ""
#: build/files.c:1506
#: build/files.c:1475
#, fuzzy, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr "Neuspelo èitanje %s: %s."
#: build/files.c:1530
#: build/files.c:1499
#, fuzzy, c-format
msgid "File not found: %s\n"
msgstr "Datoteka nije pronaðena na serveru"
#: build/files.c:1573 build/files.c:2185 build/parsePrep.c:50
#: build/files.c:1542 build/files.c:2156 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
#: build/files.c:1585
#: build/files.c:1554
#, fuzzy, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr "neuspelo otvaranje %s: %s"
#: build/files.c:1689
#: build/files.c:1658
#, fuzzy, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "preme¹tanja moraju poèeti znakom '/'"
#: build/files.c:1712
#: build/files.c:1681
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "paket %s nije naveden u %s"
#: build/files.c:1727
#: build/files.c:1696
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "Datoteka nije pronaðena na serveru"
#: build/files.c:1789
#: build/files.c:1758
#, 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:1800 build/pack.c:146
#: build/files.c:1769 build/pack.c:146
#, fuzzy, c-format
msgid "line: %s\n"
msgstr "neuspelo otvaranje %s: %s"
#: build/files.c:2173
#: build/files.c:2144
#, fuzzy, c-format
msgid "Bad file: %s: %s\n"
msgstr "neuspelo otvaranje %s: %s"
#. XXX this error message is probably not seen.
#: build/files.c:2247
#: build/files.c:2218
#, fuzzy, c-format
msgid "Couldn't exec %s: %s\n"
msgstr "Ne mogu da izvr¹im PGP"
#: build/files.c:2252
#: build/files.c:2223
#, fuzzy, c-format
msgid "Couldn't fork %s: %s\n"
msgstr "Ne mogu da proèitam 'sigtarget'"
#: build/files.c:2336
#: build/files.c:2307
#, fuzzy, c-format
msgid "%s failed\n"
msgstr "PGP omanuo"
#: build/files.c:2340
#: build/files.c:2311
#, fuzzy, c-format
msgid "failed to write all data to %s\n"
msgstr "neuspelo kreiranje %s\n"
#: build/files.c:2476
#: build/files.c:2447
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
#: build/files.c:2502 build/files.c:2516
#: build/files.c:2473 build/files.c:2487
#, fuzzy, c-format
msgid "Failed to find %s:\n"
msgstr "neuspelo kreiranje %s\n"
#: build/files.c:2637
#: build/files.c:2608
#, fuzzy, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "neuspelo otvaranje %s: %s"
@ -1589,37 +1589,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr "neuspelo otvaranje %s: %s"
#: lib/fsm.c:1180
#: lib/fsm.c:1183
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1461
#: lib/fsm.c:1464
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1582 lib/fsm.c:1710
#: lib/fsm.c:1585 lib/fsm.c:1713
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "Ne mogu da otvorim datoteku %s: "
#: lib/fsm.c:1736
#: lib/fsm.c:1739
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "ne mogu da uklonim %s - direktorijum nije prazan"
#: lib/fsm.c:1742
#: lib/fsm.c:1745
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "neuspela komanda rmdir %s: %s"
#: lib/fsm.c:1752
#: lib/fsm.c:1755
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "neuspelo otvaranje %s: %s\n"
#: lib/fsm.c:1771
#: lib/fsm.c:1774
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "Ne mogu da otvorim datoteku %s: "

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-01-10 14:14-0500\n"
"POT-Creation-Date: 2002-01-11 17:48-0500\n"
"PO-Revision-Date: 2001-09-12 14:18+0200\n"
"Last-Translator: Göran Uddeborg <goeran@uddeborg.pp.se>\n"
"Language-Team: Swedish <sv@li.org>\n"
@ -595,98 +595,98 @@ msgid "Can't mix special %%doc with other forms: %s\n"
msgstr "Kan inte blanda special %%doc med andra former: %s\n"
#. Two entries for the same file found, merge the entries.
#: build/files.c:1144
#: build/files.c:1113
#, c-format
msgid "File listed twice: %s\n"
msgstr "Filen uppräknad två gånger: %s\n"
#: build/files.c:1291
#: build/files.c:1260
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr "Symbolisk länk pekar på BuildRoot: %s -> %s\n"
#: build/files.c:1506
#: build/files.c:1475
#, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr "Filen matchar inte prefixet (%s): %s\n"
#: build/files.c:1530
#: build/files.c:1499
#, c-format
msgid "File not found: %s\n"
msgstr "Filen hittades inte: %s\n"
#: build/files.c:1573 build/files.c:2185 build/parsePrep.c:50
#: build/files.c:1542 build/files.c:2156 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Felaktig ägare/grupp: %s\n"
#: build/files.c:1585
#: build/files.c:1554
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr "Fil %4d: %07o %s.%s\t %s\n"
#: build/files.c:1689
#: build/files.c:1658
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "Filen behöver inledande \"/\": %s\n"
#: build/files.c:1712
#: build/files.c:1681
#, c-format
msgid "Glob not permitted: %s\n"
msgstr "Matchning inte tillåtet: %s\n"
#: build/files.c:1727
#: build/files.c:1696
#, c-format
msgid "File not found by glob: %s\n"
msgstr "Hittade ingen fil vid matchningen: %s\n"
#: build/files.c:1789
#: build/files.c:1758
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "Kunde inte öppna %%files-fil %s: %s\n"
#: build/files.c:1800 build/pack.c:146
#: build/files.c:1769 build/pack.c:146
#, c-format
msgid "line: %s\n"
msgstr "rad: %s\n"
#: build/files.c:2173
#: build/files.c:2144
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "Felaktig fil: %s: %s\n"
#. XXX this error message is probably not seen.
#: build/files.c:2247
#: build/files.c:2218
#, c-format
msgid "Couldn't exec %s: %s\n"
msgstr "Kunde inte köra %s: %s\n"
#: build/files.c:2252
#: build/files.c:2223
#, c-format
msgid "Couldn't fork %s: %s\n"
msgstr "Kunde inte grena %s: %s\n"
#: build/files.c:2336
#: build/files.c:2307
#, c-format
msgid "%s failed\n"
msgstr "%s misslyckades\n"
#: build/files.c:2340
#: build/files.c:2311
#, c-format
msgid "failed to write all data to %s\n"
msgstr "kunde inte skriva all data till %s\n"
#: build/files.c:2476
#: build/files.c:2447
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr "Letar upp %s: (använder %s)...\n"
#: build/files.c:2502 build/files.c:2516
#: build/files.c:2473 build/files.c:2487
#, c-format
msgid "Failed to find %s:\n"
msgstr "Misslyckades med att hitta %s:\n"
#: build/files.c:2637
#: build/files.c:2608
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Bearbetar filer: %s-%s-%s\n"
@ -1569,37 +1569,37 @@ msgstr "========= Kataloger ej uttryckligen inkluderade i paketet:\n"
msgid "%10d %s\n"
msgstr "%9d %s\n"
#: lib/fsm.c:1180
#: lib/fsm.c:1183
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr "katalog %s skapad med rättigheter %04o.\n"
#: lib/fsm.c:1461
#: lib/fsm.c:1464
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr "arkivfil %s fanns inte i huvudets fillista\n"
#: lib/fsm.c:1582 lib/fsm.c:1710
#: lib/fsm.c:1585 lib/fsm.c:1713
#, c-format
msgid "%s saved as %s\n"
msgstr "%s sparades som %s\n"
#: lib/fsm.c:1736
#: lib/fsm.c:1739
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s rmdir av %s misslyckades: Katalogen är inte tom\n"
#: lib/fsm.c:1742
#: lib/fsm.c:1745
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s rmdir av %s misslyckades: %s\n"
#: lib/fsm.c:1752
#: lib/fsm.c:1755
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s unlink av %s misslyckades: %s\n"
#: lib/fsm.c:1771
#: lib/fsm.c:1774
#, c-format
msgid "%s created as %s\n"
msgstr "%s skapades som %s\n"

View File

@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-01-10 14:14-0500\n"
"POT-Creation-Date: 2002-01-11 17:48-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"
@ -602,98 +602,98 @@ msgid "Can't mix special %%doc with other forms: %s\n"
msgstr "Özel %%doc ile diðer formlar karýþtýrýlamaz: %s\n"
#. Two entries for the same file found, merge the entries.
#: build/files.c:1144
#: build/files.c:1113
#, c-format
msgid "File listed twice: %s\n"
msgstr "Dosya iki kere gösterildi: %s\n"
#: build/files.c:1291
#: build/files.c:1260
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr "Sembolik bað BuildRoot gösteriyor: %s -> %s\n"
#: build/files.c:1506
#: build/files.c:1475
#, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr "Dosya önek (%s) ile uyumsuz: %s\n"
#: build/files.c:1530
#: build/files.c:1499
#, c-format
msgid "File not found: %s\n"
msgstr "Dosya bulunamadý: %s\n"
#: build/files.c:1573 build/files.c:2185 build/parsePrep.c:50
#: build/files.c:1542 build/files.c:2156 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Kullanýcý/grup hatalý: %s\n"
#: build/files.c:1585
#: build/files.c:1554
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr "Dosya %4d: %07o %s.%s\t %s\n"
#: build/files.c:1689
#: build/files.c:1658
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "Dosya \"/\" ile içermeli: %s\n"
#: build/files.c:1712
#: build/files.c:1681
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "satýr %d: Dosya adý uygun deðil: %s\n"
#: build/files.c:1727
#: build/files.c:1696
#, c-format
msgid "File not found by glob: %s\n"
msgstr "Dosya glob tarafýndan bulunamadý: %s\n"
#: build/files.c:1789
#: build/files.c:1758
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "%%files dosya %s dosyasýnda açýlamadý: %s\n"
#: build/files.c:1800 build/pack.c:146
#: build/files.c:1769 build/pack.c:146
#, c-format
msgid "line: %s\n"
msgstr "satýr: %s\n"
#: build/files.c:2173
#: build/files.c:2144
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "Dosya hatalý: %s: %s\n"
#. XXX this error message is probably not seen.
#: build/files.c:2247
#: build/files.c:2218
#, c-format
msgid "Couldn't exec %s: %s\n"
msgstr "%s icra edilemedi: %s\n"
#: build/files.c:2252
#: build/files.c:2223
#, c-format
msgid "Couldn't fork %s: %s\n"
msgstr "%s ayrýlamadý: %s\n"
#: build/files.c:2336
#: build/files.c:2307
#, c-format
msgid "%s failed\n"
msgstr "%s baþarýsýz\n"
#: build/files.c:2340
#: build/files.c:2311
#, c-format
msgid "failed to write all data to %s\n"
msgstr "tüm veri %s içine yazýlamadý\n"
#: build/files.c:2476
#: build/files.c:2447
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr "%s aranýyor: (%s kullanarak)...\n"
#: build/files.c:2502 build/files.c:2516
#: build/files.c:2473 build/files.c:2487
#, c-format
msgid "Failed to find %s:\n"
msgstr "%s bulunamadý:\n"
#: build/files.c:2637
#: build/files.c:2608
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Ýþlenen dosyalar: %s-%s-%s\n"
@ -1589,37 +1589,37 @@ msgstr "========= Pakette bulunmayan dizinler:\n"
msgid "%10d %s\n"
msgstr "%9d %s\n"
#: lib/fsm.c:1180
#: lib/fsm.c:1183
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr "%s dizin %04o izinleriyle oluþturuldu.\n"
#: lib/fsm.c:1461
#: lib/fsm.c:1464
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1582 lib/fsm.c:1710
#: lib/fsm.c:1585 lib/fsm.c:1713
#, c-format
msgid "%s saved as %s\n"
msgstr "%s %s olarak kaydedildi\n"
#: lib/fsm.c:1736
#: lib/fsm.c:1739
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s / %s dizin silinemedi - Dizin boþ deðil\n"
#: lib/fsm.c:1742
#: lib/fsm.c:1745
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s / %s dizinin silinmesi baþarýsýz: %s\n"
#: lib/fsm.c:1752
#: lib/fsm.c:1755
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s / %s bað kaldýrýlamadý: %s\n"
#: lib/fsm.c:1771
#: lib/fsm.c:1774
#, c-format
msgid "%s created as %s\n"
msgstr "%s %s olarak oluþturuldu\n"

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-01-10 14:14-0500\n"
"POT-Creation-Date: 2002-01-11 17:48-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"
@ -586,98 +586,98 @@ msgid "Can't mix special %%doc with other forms: %s\n"
msgstr ""
#. Two entries for the same file found, merge the entries.
#: build/files.c:1144
#: build/files.c:1113
#, c-format
msgid "File listed twice: %s\n"
msgstr ""
#: build/files.c:1291
#: build/files.c:1260
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr ""
#: build/files.c:1506
#: build/files.c:1475
#, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr ""
#: build/files.c:1530
#: build/files.c:1499
#, c-format
msgid "File not found: %s\n"
msgstr ""
#: build/files.c:1573 build/files.c:2185 build/parsePrep.c:50
#: build/files.c:1542 build/files.c:2156 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
#: build/files.c:1585
#: build/files.c:1554
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
#: build/files.c:1689
#: build/files.c:1658
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr ""
#: build/files.c:1712
#: build/files.c:1681
#, c-format
msgid "Glob not permitted: %s\n"
msgstr ""
#: build/files.c:1727
#: build/files.c:1696
#, c-format
msgid "File not found by glob: %s\n"
msgstr ""
#: build/files.c:1789
#: build/files.c:1758
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr ""
#: build/files.c:1800 build/pack.c:146
#: build/files.c:1769 build/pack.c:146
#, c-format
msgid "line: %s\n"
msgstr ""
#: build/files.c:2173
#: build/files.c:2144
#, c-format
msgid "Bad file: %s: %s\n"
msgstr ""
#. XXX this error message is probably not seen.
#: build/files.c:2247
#: build/files.c:2218
#, c-format
msgid "Couldn't exec %s: %s\n"
msgstr ""
#: build/files.c:2252
#: build/files.c:2223
#, c-format
msgid "Couldn't fork %s: %s\n"
msgstr ""
#: build/files.c:2336
#: build/files.c:2307
#, c-format
msgid "%s failed\n"
msgstr ""
#: build/files.c:2340
#: build/files.c:2311
#, c-format
msgid "failed to write all data to %s\n"
msgstr ""
#: build/files.c:2476
#: build/files.c:2447
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
#: build/files.c:2502 build/files.c:2516
#: build/files.c:2473 build/files.c:2487
#, c-format
msgid "Failed to find %s:\n"
msgstr ""
#: build/files.c:2637
#: build/files.c:2608
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@ -1543,37 +1543,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr ""
#: lib/fsm.c:1180
#: lib/fsm.c:1183
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1461
#: lib/fsm.c:1464
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1582 lib/fsm.c:1710
#: lib/fsm.c:1585 lib/fsm.c:1713
#, c-format
msgid "%s saved as %s\n"
msgstr ""
#: lib/fsm.c:1736
#: lib/fsm.c:1739
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr ""
#: lib/fsm.c:1742
#: lib/fsm.c:1745
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1752
#: lib/fsm.c:1755
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1771
#: lib/fsm.c:1774
#, c-format
msgid "%s created as %s\n"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-01-10 14:14-0500\n"
"POT-Creation-Date: 2002-01-11 17:48-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"
@ -586,98 +586,98 @@ msgid "Can't mix special %%doc with other forms: %s\n"
msgstr ""
#. Two entries for the same file found, merge the entries.
#: build/files.c:1144
#: build/files.c:1113
#, c-format
msgid "File listed twice: %s\n"
msgstr ""
#: build/files.c:1291
#: build/files.c:1260
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr ""
#: build/files.c:1506
#: build/files.c:1475
#, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr ""
#: build/files.c:1530
#: build/files.c:1499
#, c-format
msgid "File not found: %s\n"
msgstr ""
#: build/files.c:1573 build/files.c:2185 build/parsePrep.c:50
#: build/files.c:1542 build/files.c:2156 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
#: build/files.c:1585
#: build/files.c:1554
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
#: build/files.c:1689
#: build/files.c:1658
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr ""
#: build/files.c:1712
#: build/files.c:1681
#, c-format
msgid "Glob not permitted: %s\n"
msgstr ""
#: build/files.c:1727
#: build/files.c:1696
#, c-format
msgid "File not found by glob: %s\n"
msgstr ""
#: build/files.c:1789
#: build/files.c:1758
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr ""
#: build/files.c:1800 build/pack.c:146
#: build/files.c:1769 build/pack.c:146
#, c-format
msgid "line: %s\n"
msgstr ""
#: build/files.c:2173
#: build/files.c:2144
#, c-format
msgid "Bad file: %s: %s\n"
msgstr ""
#. XXX this error message is probably not seen.
#: build/files.c:2247
#: build/files.c:2218
#, c-format
msgid "Couldn't exec %s: %s\n"
msgstr ""
#: build/files.c:2252
#: build/files.c:2223
#, c-format
msgid "Couldn't fork %s: %s\n"
msgstr ""
#: build/files.c:2336
#: build/files.c:2307
#, c-format
msgid "%s failed\n"
msgstr ""
#: build/files.c:2340
#: build/files.c:2311
#, c-format
msgid "failed to write all data to %s\n"
msgstr ""
#: build/files.c:2476
#: build/files.c:2447
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
#: build/files.c:2502 build/files.c:2516
#: build/files.c:2473 build/files.c:2487
#, c-format
msgid "Failed to find %s:\n"
msgstr ""
#: build/files.c:2637
#: build/files.c:2608
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@ -1543,37 +1543,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr ""
#: lib/fsm.c:1180
#: lib/fsm.c:1183
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1461
#: lib/fsm.c:1464
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1582 lib/fsm.c:1710
#: lib/fsm.c:1585 lib/fsm.c:1713
#, c-format
msgid "%s saved as %s\n"
msgstr ""
#: lib/fsm.c:1736
#: lib/fsm.c:1739
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr ""
#: lib/fsm.c:1742
#: lib/fsm.c:1745
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1752
#: lib/fsm.c:1755
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1771
#: lib/fsm.c:1774
#, c-format
msgid "%s created as %s\n"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-01-10 14:14-0500\n"
"POT-Creation-Date: 2002-01-11 17:48-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"
@ -586,98 +586,98 @@ msgid "Can't mix special %%doc with other forms: %s\n"
msgstr ""
#. Two entries for the same file found, merge the entries.
#: build/files.c:1144
#: build/files.c:1113
#, c-format
msgid "File listed twice: %s\n"
msgstr ""
#: build/files.c:1291
#: build/files.c:1260
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr ""
#: build/files.c:1506
#: build/files.c:1475
#, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr ""
#: build/files.c:1530
#: build/files.c:1499
#, c-format
msgid "File not found: %s\n"
msgstr ""
#: build/files.c:1573 build/files.c:2185 build/parsePrep.c:50
#: build/files.c:1542 build/files.c:2156 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
#: build/files.c:1585
#: build/files.c:1554
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
#: build/files.c:1689
#: build/files.c:1658
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr ""
#: build/files.c:1712
#: build/files.c:1681
#, c-format
msgid "Glob not permitted: %s\n"
msgstr ""
#: build/files.c:1727
#: build/files.c:1696
#, c-format
msgid "File not found by glob: %s\n"
msgstr ""
#: build/files.c:1789
#: build/files.c:1758
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr ""
#: build/files.c:1800 build/pack.c:146
#: build/files.c:1769 build/pack.c:146
#, c-format
msgid "line: %s\n"
msgstr ""
#: build/files.c:2173
#: build/files.c:2144
#, c-format
msgid "Bad file: %s: %s\n"
msgstr ""
#. XXX this error message is probably not seen.
#: build/files.c:2247
#: build/files.c:2218
#, c-format
msgid "Couldn't exec %s: %s\n"
msgstr ""
#: build/files.c:2252
#: build/files.c:2223
#, c-format
msgid "Couldn't fork %s: %s\n"
msgstr ""
#: build/files.c:2336
#: build/files.c:2307
#, c-format
msgid "%s failed\n"
msgstr ""
#: build/files.c:2340
#: build/files.c:2311
#, c-format
msgid "failed to write all data to %s\n"
msgstr ""
#: build/files.c:2476
#: build/files.c:2447
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
#: build/files.c:2502 build/files.c:2516
#: build/files.c:2473 build/files.c:2487
#, c-format
msgid "Failed to find %s:\n"
msgstr ""
#: build/files.c:2637
#: build/files.c:2608
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@ -1543,37 +1543,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr ""
#: lib/fsm.c:1180
#: lib/fsm.c:1183
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1461
#: lib/fsm.c:1464
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1582 lib/fsm.c:1710
#: lib/fsm.c:1585 lib/fsm.c:1713
#, c-format
msgid "%s saved as %s\n"
msgstr ""
#: lib/fsm.c:1736
#: lib/fsm.c:1739
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr ""
#: lib/fsm.c:1742
#: lib/fsm.c:1745
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1752
#: lib/fsm.c:1755
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1771
#: lib/fsm.c:1774
#, c-format
msgid "%s created as %s\n"
msgstr ""

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
"POT-Creation-Date: 2002-01-10 14:14-0500\n"
"POT-Creation-Date: 2002-01-11 17:48-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"
@ -586,98 +586,98 @@ msgid "Can't mix special %%doc with other forms: %s\n"
msgstr ""
#. Two entries for the same file found, merge the entries.
#: build/files.c:1144
#: build/files.c:1113
#, c-format
msgid "File listed twice: %s\n"
msgstr ""
#: build/files.c:1291
#: build/files.c:1260
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s\n"
msgstr ""
#: build/files.c:1506
#: build/files.c:1475
#, c-format
msgid "File doesn't match prefix (%s): %s\n"
msgstr ""
#: build/files.c:1530
#: build/files.c:1499
#, c-format
msgid "File not found: %s\n"
msgstr ""
#: build/files.c:1573 build/files.c:2185 build/parsePrep.c:50
#: build/files.c:1542 build/files.c:2156 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
#: build/files.c:1585
#: build/files.c:1554
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
#: build/files.c:1689
#: build/files.c:1658
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr ""
#: build/files.c:1712
#: build/files.c:1681
#, c-format
msgid "Glob not permitted: %s\n"
msgstr ""
#: build/files.c:1727
#: build/files.c:1696
#, c-format
msgid "File not found by glob: %s\n"
msgstr ""
#: build/files.c:1789
#: build/files.c:1758
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr ""
#: build/files.c:1800 build/pack.c:146
#: build/files.c:1769 build/pack.c:146
#, c-format
msgid "line: %s\n"
msgstr ""
#: build/files.c:2173
#: build/files.c:2144
#, c-format
msgid "Bad file: %s: %s\n"
msgstr ""
#. XXX this error message is probably not seen.
#: build/files.c:2247
#: build/files.c:2218
#, c-format
msgid "Couldn't exec %s: %s\n"
msgstr ""
#: build/files.c:2252
#: build/files.c:2223
#, c-format
msgid "Couldn't fork %s: %s\n"
msgstr ""
#: build/files.c:2336
#: build/files.c:2307
#, c-format
msgid "%s failed\n"
msgstr ""
#: build/files.c:2340
#: build/files.c:2311
#, c-format
msgid "failed to write all data to %s\n"
msgstr ""
#: build/files.c:2476
#: build/files.c:2447
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
#: build/files.c:2502 build/files.c:2516
#: build/files.c:2473 build/files.c:2487
#, c-format
msgid "Failed to find %s:\n"
msgstr ""
#: build/files.c:2637
#: build/files.c:2608
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@ -1543,37 +1543,37 @@ msgstr ""
msgid "%10d %s\n"
msgstr ""
#: lib/fsm.c:1180
#: lib/fsm.c:1183
#, c-format
msgid "%s directory created with perms %04o.\n"
msgstr ""
#: lib/fsm.c:1461
#: lib/fsm.c:1464
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
#: lib/fsm.c:1582 lib/fsm.c:1710
#: lib/fsm.c:1585 lib/fsm.c:1713
#, c-format
msgid "%s saved as %s\n"
msgstr ""
#: lib/fsm.c:1736
#: lib/fsm.c:1739
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr ""
#: lib/fsm.c:1742
#: lib/fsm.c:1745
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1752
#: lib/fsm.c:1755
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr ""
#: lib/fsm.c:1771
#: lib/fsm.c:1774
#, c-format
msgid "%s created as %s\n"
msgstr ""

View File

@ -612,3 +612,4 @@ fi
- permit gpg/pgp/pgp5 execs to be reconfigured.
- fix: signing multiple times dinna work, discard immutable region.
- remove poptmodule.so for separate packaging.
- permit subset installs for %lang colored hardlink file sets.

View File

@ -612,3 +612,4 @@ fi
- permit gpg/pgp/pgp5 execs to be reconfigured.
- fix: signing multiple times dinna work, discard immutable region.
- remove poptmodule.so for separate packaging.
- permit subset installs for %lang colored hardlink file sets.