summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES1
-rw-r--r--build/files.c5
-rw-r--r--lib/fileutil.c2
-rw-r--r--lib/misc.c155
-rw-r--r--lib/misc.h13
-rw-r--r--lib/rpmlibprov.c2
-rw-r--r--po/cs.po141
-rw-r--r--po/da.po139
-rw-r--r--po/de.po139
-rw-r--r--po/fi.po139
-rw-r--r--po/fr.po141
-rw-r--r--po/gl.po139
-rw-r--r--po/is.po139
-rw-r--r--po/ja.po139
-rw-r--r--po/ko.po141
-rw-r--r--po/no.po139
-rw-r--r--po/pl.po141
-rw-r--r--po/pt.po141
-rw-r--r--po/pt_BR.po139
-rw-r--r--po/ro.po139
-rw-r--r--po/rpm.pot138
-rw-r--r--po/ru.po141
-rw-r--r--po/sk.po139
-rw-r--r--po/sl.po141
-rw-r--r--po/sr.po139
-rw-r--r--po/sv.po141
-rw-r--r--po/tr.po141
-rw-r--r--popt/po/cs.po30
-rw-r--r--popt/po/da.po30
-rw-r--r--popt/po/de.po30
-rw-r--r--popt/po/es.po30
-rw-r--r--popt/po/eu_ES.po30
-rw-r--r--popt/po/fi.po30
-rw-r--r--popt/po/fr.po30
-rw-r--r--popt/po/gl.po30
-rw-r--r--popt/po/hu.po30
-rw-r--r--popt/po/id.po30
-rw-r--r--popt/po/is.po30
-rw-r--r--popt/po/it.po30
-rw-r--r--popt/po/ja.po30
-rw-r--r--popt/po/ko.po30
-rw-r--r--popt/po/no.po30
-rw-r--r--popt/po/pl.po30
-rw-r--r--popt/po/popt.pot29
-rw-r--r--popt/po/pt.po30
-rw-r--r--popt/po/pt_BR.po30
-rw-r--r--popt/po/ro.po30
-rw-r--r--popt/po/ru.po30
-rw-r--r--popt/po/sk.po30
-rw-r--r--popt/po/sl.po30
-rw-r--r--popt/po/sr.po30
-rw-r--r--popt/po/sv.po30
-rw-r--r--popt/po/tr.po30
-rw-r--r--popt/po/uk.po30
-rw-r--r--popt/po/wa.po30
-rw-r--r--popt/po/zh.po30
-rw-r--r--popt/po/zh_CN.GB2312.po30
-rw-r--r--rpm.spec.in3
-rw-r--r--rpmio/macro.c341
-rw-r--r--rpmio/rpmio.h11
-rw-r--r--rpmio/rpmmacro.h24
-rw-r--r--rpmio/rpmrpc.c49
-rw-r--r--rpmrc.in4
-rw-r--r--tools/rpmcache.c3
64 files changed, 2478 insertions, 1970 deletions
diff --git a/CHANGES b/CHANGES
index 68c86d92d..327fd2d06 100644
--- a/CHANGES
+++ b/CHANGES
@@ -24,6 +24,7 @@
- set "rpm_script_t" exec type for scriptlets iff /bin/sh, else default.
- force FD_CLOEXEC on 1st 100 inherited fdno's.
- serialize rpmtsRun() using fcntl on /var/lock/rpm/transaction.
+ - permit globs in macrofiles: directive (#117217).
4.2.1 -> 4.2.2:
- unify signal handling in librpmio, use condvar to deliver signal.
diff --git a/build/files.c b/build/files.c
index 70bd75232..11b95041b 100644
--- a/build/files.c
+++ b/build/files.c
@@ -1829,11 +1829,12 @@ static int processBinaryFile(/*@unused@*/ Package pkg, FileList fl,
fl->totalFileSize, fl->fileCount,
rpmGlobalMacroContext, fileSystem, internalState @*/
{
+ int quote = 1; /* XXX permit quoted glob characters. */
int doGlob;
const char *diskURL = NULL;
int rc = 0;
- doGlob = myGlobPatternP(fileURL);
+ doGlob = Glob_pattern_p(fileURL, quote);
/* Check that file starts with leading "/" */
{ const char * fileName;
@@ -1871,7 +1872,7 @@ static int processBinaryFile(/*@unused@*/ Package pkg, FileList fl,
/*@-branchstate@*/
rc = rpmGlob(diskURL, &argc, &argv);
- if (rc == 0 && argc >= 1 && !myGlobPatternP(argv[0])) {
+ if (rc == 0 && argc >= 1 && !Glob_pattern_p(argv[0], quote)) {
for (i = 0; i < argc; i++) {
rc = addFile(fl, argv[i], NULL);
/*@-boundswrite@*/
diff --git a/lib/fileutil.c b/lib/fileutil.c
index 4b2270b2b..a98aa7a7f 100644
--- a/lib/fileutil.c
+++ b/lib/fileutil.c
@@ -68,7 +68,7 @@ int rpmSyscall(const char * cmd, int noexec)
/* Check: parse only with 2 or more args, last arg cannot be glob. */
if (noexec) {
- if (argc > 2 && myGlobPatternP(argv[argc-1])) {
+ if (argc > 2 && Glob_pattern_p(argv[argc-1], 0)) {
rc = 1;
goto exit;
}
diff --git a/lib/misc.c b/lib/misc.c
index c45dad9fd..a6d28b8eb 100644
--- a/lib/misc.c
+++ b/lib/misc.c
@@ -4,9 +4,6 @@
#include "system.h"
-/*@unchecked@*/
-static int _debug = 0;
-
/* just to put a marker in librpm.a */
const char * RPMVERSION = VERSION;
@@ -238,158 +235,6 @@ char * currentDirectory(void)
return currDir;
}
-/* glob_pattern_p() taken from bash
- * Copyright (C) 1985, 1988, 1989 Free Software Foundation, Inc.
- *
- * Return nonzero if PATTERN has any special globbing chars in it.
- */
-int myGlobPatternP (const char *patternURL)
-{
- const char *p;
- char c;
- int open = 0;
-
- (void) urlPath(patternURL, &p);
- while ((c = *p++) != '\0')
- switch (c) {
- case '+':
- case '@':
- case '!':
- if (*p == '(')
- return (1);
- continue;
- case '?':
- case '*':
- return (1);
- case '[': /* Only accept an open brace if there is a close */
- open++; /* brace to match it. Bracket expressions must be */
- continue; /* complete, according to Posix.2 */
- case ']':
- if (open)
- return (1);
- continue;
- case '\\':
- if (*p++ == '\0')
- return (0);
- }
-
- return (0);
-}
-
-static int glob_error(/*@unused@*/const char *foo, /*@unused@*/int bar)
-{
- return 1;
-}
-
-int rpmGlob(const char * patterns, int * argcPtr, const char *** argvPtr)
-{
- int ac = 0;
- const char ** av = NULL;
- int argc = 0;
- const char ** argv = NULL;
- const char * path;
- const char * globURL;
- char * globRoot = NULL;
- size_t maxb, nb;
- glob_t gl;
- int ut;
- int i, j;
- int rc;
-
- rc = poptParseArgvString(patterns, &ac, &av);
- if (rc)
- return rc;
-
- for (j = 0; j < ac; j++) {
- if (!myGlobPatternP(av[j])) {
- if (argc == 0)
- argv = xmalloc((argc+2) * sizeof(*argv));
- else
- argv = xrealloc(argv, (argc+2) * sizeof(*argv));
- argv[argc] = xstrdup(av[j]);
-if (_debug)
-fprintf(stderr, "*** rpmGlob argv[%d] \"%s\"\n", argc, argv[argc]);
- argc++;
- continue;
- }
-
- gl.gl_pathc = 0;
- gl.gl_pathv = NULL;
- rc = Glob(av[j], 0, glob_error, &gl);
- if (rc)
- goto exit;
-
- /* XXX Prepend the URL leader for globs that have stripped it off */
- maxb = 0;
- for (i = 0; i < gl.gl_pathc; i++) {
- if ((nb = strlen(&(gl.gl_pathv[i][0]))) > maxb)
- maxb = nb;
- }
-
- ut = urlPath(av[j], &path);
- nb = ((ut > URL_IS_DASH && ut != URL_IS_FTP) ? (path - av[j]) : 0);
- maxb += nb;
- maxb += 1;
- globURL = globRoot = xmalloc(maxb);
-
- switch (ut) {
- case URL_IS_HTTP:
- case URL_IS_PATH:
- case URL_IS_DASH:
- strncpy(globRoot, av[j], nb);
- /*@switchbreak@*/ break;
- case URL_IS_FTP:
- case URL_IS_UNKNOWN:
- /*@switchbreak@*/ break;
- }
- globRoot += nb;
- *globRoot = '\0';
-if (_debug)
-fprintf(stderr, "*** GLOB maxb %d diskURL %d %*s globURL %p %s\n", (int)maxb, (int)nb, (int)nb, av[j], globURL, globURL);
-
- argv = xrealloc(argv, (argc+gl.gl_pathc+1) * sizeof(*argv));
-
- if (argv != NULL)
- for (i = 0; i < gl.gl_pathc; i++) {
- const char * globFile = &(gl.gl_pathv[i][0]);
- if (globRoot > globURL && globRoot[-1] == '/')
- while (*globFile == '/') globFile++;
- strcpy(globRoot, globFile);
-if (_debug)
-fprintf(stderr, "*** rpmGlob argv[%d] \"%s\"\n", argc, globURL);
- argv[argc++] = xstrdup(globURL);
- }
- /*@-immediatetrans@*/
- Globfree(&gl);
- /*@=immediatetrans@*/
- globURL = _free(globURL);
- }
- if (argv != NULL && argc > 0) {
- argv[argc] = NULL;
- if (argvPtr)
- *argvPtr = argv;
- if (argcPtr)
- *argcPtr = argc;
- rc = 0;
- } else
- rc = 1;
-
-
-exit:
- av = _free(av);
-/*@-branchstate@*/
- if (rc || argvPtr == NULL) {
-/*@-dependenttrans -unqualifiedtrans@*/
- if (argv != NULL)
- for (i = 0; i < argc; i++)
- argv[i] = _free(argv[i]);
- argv = _free(argv);
-/*@=dependenttrans =unqualifiedtrans@*/
- }
-/*@=branchstate@*/
- return rc;
-}
-
/*
* XXX This is a "dressed" entry to headerGetEntry to do:
* 1) DIRNAME/BASENAME/DIRINDICES -> FILENAMES tag conversions.
diff --git a/lib/misc.h b/lib/misc.h
index bb3dd748a..918fc3744 100644
--- a/lib/misc.h
+++ b/lib/misc.h
@@ -104,19 +104,6 @@ int makeTempFile(/*@null@*/ const char * prefix,
/*@only@*/ char * currentDirectory(void)
/*@*/;
-/**
- */
-/*@-exportlocal@*/
-int myGlobPatternP (const char *patternURL) /*@*/;
-/*@=exportlocal@*/
-
-/**
- */
-int rpmGlob(const char * patterns, /*@out@*/ int * argcPtr,
- /*@out@*/ const char *** argvPtr)
- /*@globals fileSystem@*/
- /*@modifies *argcPtr, *argvPtr, fileSystem @*/;
-
#ifdef __cplusplus
}
#endif
diff --git a/lib/rpmlibprov.c b/lib/rpmlibprov.c
index b15da4743..b26ede4b0 100644
--- a/lib/rpmlibprov.c
+++ b/lib/rpmlibprov.c
@@ -32,7 +32,7 @@ static struct rpmlibProvides_s rpmlibProvides[] = {
N_("file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path.")},
{ "rpmlib(PayloadIsBzip2)", "3.0.5-1",
(RPMSENSE_RPMLIB|RPMSENSE_EQUAL),
- N_("package payload is compressed using bzip2.") },
+ N_("package payload can be compressed using bzip2.") },
{ "rpmlib(PayloadFilesHavePrefix)", "4.0-1",
(RPMSENSE_RPMLIB|RPMSENSE_EQUAL),
N_("package payload file(s) have \"./\" prefix.") },
diff --git a/po/cs.po b/po/cs.po
index 225dcfca7..38ad5c30e 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-01-12 16:27+0000\n"
+"POT-Creation-Date: 2004-02-29 07: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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8-bit\n"
+"Report-Msgid-Bugs-To: \n"
#: build.c:40
#, fuzzy
@@ -526,74 +526,74 @@ msgstr "Soubor nesouhlasí s prefixem (%s): %s\n"
msgid "File not found: %s\n"
msgstr "Soubor nenalezen: %s\n"
-#: build/files.c:1772
+#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
-#: build/files.c:1778
+#: build/files.c:1779
#, fuzzy, c-format
msgid "%s: public key read failed.\n"
msgstr "%s: readLead selhalo\n"
-#: build/files.c:1782 lib/rpmchecksig.c:580
+#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
-#: build/files.c:1789
+#: build/files.c:1790
#, fuzzy, c-format
msgid "%s: *.te policy read failed.\n"
msgstr "%s: readLead selhalo\n"
-#: build/files.c:1840
+#: build/files.c:1842
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "Soubor potřebuje úvodní \"/\": %s\n"
-#: build/files.c:1864
+#: build/files.c:1866
#, c-format
msgid "Glob not permitted: %s\n"
msgstr "Glob není dovolen: %s\n"
-#: build/files.c:1881 lib/rpminstall.c:361
+#: build/files.c:1883 lib/rpminstall.c:361
#, c-format
msgid "File not found by glob: %s\n"
msgstr "Soubor nenalezen globem: %s\n"
-#: build/files.c:1941
+#: build/files.c:1943
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "Nemohu otevřít %%files soubor %s: %s\n"
-#: build/files.c:1952 build/pack.c:156
+#: build/files.c:1954 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr "řádek: %s\n"
-#: build/files.c:2348
+#: build/files.c:2350
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "Špatný soubor: %s: %s\n"
-#: build/files.c:2360 build/parsePrep.c:50
+#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Špatný vlastník/skupina: %s\n"
-#: build/files.c:2404
+#: build/files.c:2406
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "rozbalování archívu selhalo %s%s: %s\n"
-#: build/files.c:2427
+#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
-#: build/files.c:2455
+#: build/files.c:2457
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Zpracovávám soubory: %s-%s-%s\n"
@@ -736,7 +736,7 @@ msgstr "Nemohu přečíst hlavičku z %s: %s\n"
msgid "Could not open %s: %s\n"
msgstr "Nemohu otevřít %s: %s\n"
-#: build/pack.c:632 lib/psm.c:1420
+#: build/pack.c:632 lib/psm.c:1520
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Nemohu zapsat balíček: %s\n"
@@ -766,7 +766,7 @@ msgstr "Nemohu přečíst payload z %s: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "Nemohu zapsat payload do %s: %s\n"
-#: build/pack.c:725 lib/psm.c:1689
+#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapsáno: %s\n"
@@ -1510,47 +1510,52 @@ msgstr "========= Adresáře, které nebyly explicitně zařazeny do balíčku:\n"
msgid "%10d %s\n"
msgstr "%9d %s\n"
-#: lib/fsm.c:770
+#: lib/fsm.c:773
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "uživatel %s neexistuje - použit uživatel root\n"
-#: lib/fsm.c:778
+#: lib/fsm.c:781
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "skupina %s neexistuje - použita skupina root\n"
-#: lib/fsm.c:1336
-#, c-format
-msgid "%s directory created with perms %04o.\n"
+#: lib/fsm.c:1350
+#, fuzzy, c-format
+msgid "%s directory created with perms %04o, no context.\n"
msgstr "vytvořen adresář %s s právy %04o.\n"
-#: lib/fsm.c:1635
+#: lib/fsm.c:1354
+#, fuzzy, c-format
+msgid "%s directory created with perms %04o, context %s.\n"
+msgstr "vytvořen adresář %s s právy %04o.\n"
+
+#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1762 lib/fsm.c:1898
+#: lib/fsm.c:1784 lib/fsm.c:1920
#, c-format
msgid "%s saved as %s\n"
msgstr "%s uloženo jako %s\n"
-#: lib/fsm.c:1925
+#: lib/fsm.c:1947
#, 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:1931
+#: lib/fsm.c:1953
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s rmdir %s selhal: %s\n"
-#: lib/fsm.c:1946
+#: lib/fsm.c:1968
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s unlink %s selhal: %s\n"
-#: lib/fsm.c:1968
+#: lib/fsm.c:1990
#, c-format
msgid "%s created as %s\n"
msgstr "%s vytvořen jako %s\n"
@@ -2235,66 +2240,78 @@ msgstr "zdrojový balíček neobsahuje .spec soubor\n"
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr ""
-#: lib/psm.c:554
+#: lib/psm.c:541
+#, c-format
+msgid "setexeccon(%s) fails from context \"%s\": %s\n"
+msgstr ""
+
+#: lib/psm.c:545
+#, c-format
+msgid ""
+"setexeccon(%s) fails from context \"%s\": %s\n"
+"Continuing ...\n"
+msgstr ""
+
+#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:562
+#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:730
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:751
+#: lib/psm.c:851
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "%s: scriptlet %s selhal (%d), přeskakuji %s-%s-%s\n"
-#: lib/psm.c:757
+#: lib/psm.c:857
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "provedení %s skripletu z %s-%s-%s selhalo, návratový kód: %d\n"
-#: lib/psm.c:1188
+#: lib/psm.c:1288
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s-%s-%s obsahuje %d souborů, test = %d\n"
-#: lib/psm.c:1323
+#: lib/psm.c:1423
#, fuzzy, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr "%s: scriptlet %s selhal (%d), přeskakuji %s-%s-%s\n"
-#: lib/psm.c:1432
+#: lib/psm.c:1532
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Nemohu přečíst hlavičku z %s: %s\n"
-#: lib/psm.c:1510
+#: lib/psm.c:1610
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "rozbalování archívu selhalo %s%s: %s\n"
-#: lib/psm.c:1511
+#: lib/psm.c:1611
msgid " on file "
msgstr " na souboru "
-#: lib/psm.c:1697
+#: lib/psm.c:1797
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "nemohu otevřít %s: %s\n"
-#: lib/psm.c:1700
+#: lib/psm.c:1800
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s selhalo\n"
-#: lib/query.c:118 lib/rpmts.c:566
+#: lib/query.c:118 lib/rpmts.c:575
#, c-format
msgid "incorrect format: %s\n"
msgstr "nesprávný formát: %s\n"
@@ -2343,7 +2360,7 @@ msgid "package has neither file owner or id lists\n"
msgstr "balíček nemá vlastníka souboru ani seznamy id\n"
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
-#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
+#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
@@ -2933,76 +2950,76 @@ msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr "Nemohu otevřít %s: %s\n"
-#: lib/rpmsx.c:343
+#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:360
+#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:391
+#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
-#: lib/rpmsx.c:406 lib/rpmsx.c:421
+#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
-#: lib/rpmsx.c:434
+#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
-#: lib/rpmts.c:163
+#: lib/rpmts.c:164
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "nemohu otevřít RPM databázi v %s\n"
-#: lib/rpmts.c:253
+#: lib/rpmts.c:262
#, fuzzy, c-format
msgid "extra '(' in package label: %s\n"
msgstr "neplatné číslo balíčku: %s\n"
-#: lib/rpmts.c:271
+#: lib/rpmts.c:280
#, fuzzy, c-format
msgid "missing '(' in package label: %s\n"
msgstr "Chybí '(' v %s %s\n"
-#: lib/rpmts.c:279
+#: lib/rpmts.c:288
#, fuzzy, c-format
msgid "missing ')' in package label: %s\n"
msgstr "neplatné číslo balíčku: %s\n"
-#: lib/rpmts.c:456
+#: lib/rpmts.c:465
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "nemohu otevřít RPM databázi v %s\n"
-#: lib/rpmts.c:598
+#: lib/rpmts.c:607
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "řádek: %s\n"
-#: lib/rpmts.c:610
+#: lib/rpmts.c:619
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "RPM verze %s\n"
-#: lib/rpmts.c:1098
+#: lib/rpmts.c:1107
#, fuzzy
msgid "mounted filesystems:\n"
msgstr "získávám seznam připojených systémů souborů\n"
-#: lib/rpmts.c:1100
+#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
-#: lib/rpmts.c:1156
+#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
@@ -3176,7 +3193,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:891
+#: lib/transaction.c:893
#, c-format
msgid "excluding directory %s\n"
msgstr ""
@@ -3189,7 +3206,7 @@ msgstr ""
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1004
+#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3202,7 +3219,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1092
+#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3210,7 +3227,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1173
+#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr ""
diff --git a/po/da.po b/po/da.po
index 8508f9578..32d05dba4 100644
--- a/po/da.po
+++ b/po/da.po
@@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-01-12 16:27+0000\n"
+"POT-Creation-Date: 2004-02-29 07: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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
+"Report-Msgid-Bugs-To: \n"
"X-Generator: KBabel 0.9alpha\n"
#: build.c:40
@@ -521,74 +521,74 @@ msgstr "Fil passer ikke til prćfiks (%s): %s\n"
msgid "File not found: %s\n"
msgstr "Fil ikke fundet: %s\n"
-#: build/files.c:1772
+#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
-#: build/files.c:1778
+#: build/files.c:1779
#, fuzzy, c-format
msgid "%s: public key read failed.\n"
msgstr "%s: readLead mislykkedes\n"
-#: build/files.c:1782 lib/rpmchecksig.c:580
+#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
-#: build/files.c:1789
+#: build/files.c:1790
#, fuzzy, c-format
msgid "%s: *.te policy read failed.\n"
msgstr "%s: readLead mislykkedes\n"
-#: build/files.c:1840
+#: build/files.c:1842
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "Fil krćver foranstillet \"/\": %s\n"
-#: build/files.c:1864
+#: build/files.c:1866
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "linie %d: Filnavn ikke tilladt: %s\n"
-#: build/files.c:1881 lib/rpminstall.c:361
+#: build/files.c:1883 lib/rpminstall.c:361
#, c-format
msgid "File not found by glob: %s\n"
msgstr "Fil ikke fundet med glob: %s\n"
-#: build/files.c:1941
+#: build/files.c:1943
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "Kunne ikke ĺbne '%%files'-fil %s: %s\n"
-#: build/files.c:1952 build/pack.c:156
+#: build/files.c:1954 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr "linie: %s\n"
-#: build/files.c:2348
+#: build/files.c:2350
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "Ugyldig fil: %s: %s\n"
-#: build/files.c:2360 build/parsePrep.c:50
+#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Ugyldig ejer/gruppe: %s\n"
-#: build/files.c:2404
+#: build/files.c:2406
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "udpakning af arkiv mislykkedes%s%s: %s\n"
-#: build/files.c:2427
+#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
-#: build/files.c:2455
+#: build/files.c:2457
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Gennemlřber filer: %s-%s-%s\n"
@@ -733,7 +733,7 @@ msgstr "Kunne ikke lćse hoved fra %s: %s\n"
msgid "Could not open %s: %s\n"
msgstr "Kunne ikke ĺbne %s: %s\n"
-#: build/pack.c:632 lib/psm.c:1420
+#: build/pack.c:632 lib/psm.c:1520
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Kunne ikke skrive pakke: %s\n"
@@ -763,7 +763,7 @@ msgstr "Kunne ikke lćse pakkeindhold fra %s: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "Kunne ikke skrive pakkeindhold til %s: %s\n"
-#: build/pack.c:725 lib/psm.c:1689
+#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrev: %s\n"
@@ -1508,47 +1508,52 @@ msgstr ""
msgid "%10d %s\n"
msgstr "linie %d: %s\n"
-#: lib/fsm.c:770
+#: lib/fsm.c:773
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "bruger %s eksisterer ikke - bruger root\n"
-#: lib/fsm.c:778
+#: lib/fsm.c:781
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "gruppe %s eksisterer ikke - bruger root\n"
-#: lib/fsm.c:1336
+#: lib/fsm.c:1350
#, c-format
-msgid "%s directory created with perms %04o.\n"
+msgid "%s directory created with perms %04o, no context.\n"
msgstr ""
-#: lib/fsm.c:1635
+#: lib/fsm.c:1354
+#, c-format
+msgid "%s directory created with perms %04o, context %s.\n"
+msgstr ""
+
+#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1762 lib/fsm.c:1898
+#: lib/fsm.c:1784 lib/fsm.c:1920
#, c-format
msgid "%s saved as %s\n"
msgstr "%s gemt som %s\n"
-#: lib/fsm.c:1925
+#: lib/fsm.c:1947
#, 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:1931
+#: lib/fsm.c:1953
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "fjernelse (rmdir) af %s mislykkedes: %s\n"
-#: lib/fsm.c:1946
+#: lib/fsm.c:1968
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "ĺbning af %s mislykkedes %s\n"
-#: lib/fsm.c:1968
+#: lib/fsm.c:1990
#, c-format
msgid "%s created as %s\n"
msgstr "%s oprettet som %s\n"
@@ -2245,67 +2250,79 @@ msgstr "kildepakke indeholder ingen .spec-fil\n"
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr ""
-#: lib/psm.c:554
+#: lib/psm.c:541
+#, c-format
+msgid "setexeccon(%s) fails from context \"%s\": %s\n"
+msgstr ""
+
+#: lib/psm.c:545
+#, c-format
+msgid ""
+"setexeccon(%s) fails from context \"%s\": %s\n"
+"Continuing ...\n"
+msgstr ""
+
+#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:562
+#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:730
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:751
+#: lib/psm.c:851
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "overspringer installation af %s-%s-%s, %%pre-smĺskript fejlede rc %d\n"
-#: lib/psm.c:757
+#: lib/psm.c:857
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
"křrsel af smĺskriptet %s fra %s-%s-%s mislykkedes, afslutningsstatus %d\n"
-#: lib/psm.c:1188
+#: lib/psm.c:1288
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "pakke: %s-%s-%s filer test = %d\n"
-#: lib/psm.c:1323
+#: lib/psm.c:1423
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1432
+#: lib/psm.c:1532
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Kunne ikke lćse hoved fra %s: %s\n"
-#: lib/psm.c:1510
+#: lib/psm.c:1610
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "udpakning af arkiv mislykkedes%s%s: %s\n"
-#: lib/psm.c:1511
+#: lib/psm.c:1611
msgid " on file "
msgstr " for fil "
-#: lib/psm.c:1697
+#: lib/psm.c:1797
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "kunne ikke ĺbne %s: %s\n"
-#: lib/psm.c:1700
+#: lib/psm.c:1800
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s mislykkedes\n"
-#: lib/query.c:118 lib/rpmts.c:566
+#: lib/query.c:118 lib/rpmts.c:575
#, c-format
msgid "incorrect format: %s\n"
msgstr "ugyldigt format: %s\n"
@@ -2354,7 +2371,7 @@ msgid "package has neither file owner or id lists\n"
msgstr "pakke har hverken filejerskabs- eller id-lister\n"
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
-#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
+#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
@@ -2946,78 +2963,78 @@ msgstr "Kunne ikke lćse %s, HOME er for stor.\n"
msgid "Unable to open %s for reading: %s.\n"
msgstr "Kunne ikke ĺbne %s for lćsning: %s.\n"
-#: lib/rpmsx.c:343
+#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:360
+#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:391
+#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
-#: lib/rpmsx.c:406 lib/rpmsx.c:421
+#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
-#: lib/rpmsx.c:434
+#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
-#: lib/rpmts.c:163
+#: lib/rpmts.c:164
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "kunne ikke ĺbne Packages-database i %s\n"
-#: lib/rpmts.c:253
+#: lib/rpmts.c:262
#, fuzzy, c-format
msgid "extra '(' in package label: %s\n"
msgstr "ugyldigt pakkenummer: %s\n"
-#: lib/rpmts.c:271
+#: lib/rpmts.c:280
#, fuzzy, c-format
msgid "missing '(' in package label: %s\n"
msgstr "Manglende '(' i %s %s\n"
-#: lib/rpmts.c:279
+#: lib/rpmts.c:288
#, fuzzy, c-format
msgid "missing ')' in package label: %s\n"
msgstr "ugyldigt pakkenummer: %s\n"
-#: lib/rpmts.c:456
+#: lib/rpmts.c:465
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "kan ikke ĺbne rpm-database i %s\n"
-#: lib/rpmts.c:598
+#: lib/rpmts.c:607
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "linie: %s\n"
-#: lib/rpmts.c:610
+#: lib/rpmts.c:619
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr ""
"kilder i: %s\n"
"\n"
-#: lib/rpmts.c:1098
+#: lib/rpmts.c:1107
#, fuzzy
msgid "mounted filesystems:\n"
msgstr "henter liste over monterede filsystemer\n"
-#: lib/rpmts.c:1100
+#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
-#: lib/rpmts.c:1156
+#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
@@ -3186,7 +3203,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr "Signaturfyld : %d\n"
#. @innercontinue@
-#: lib/transaction.c:891
+#: lib/transaction.c:893
#, c-format
msgid "excluding directory %s\n"
msgstr "ekskluderer kataloget %s\n"
@@ -3199,7 +3216,7 @@ msgstr "ekskluderer kataloget %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1004
+#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3212,7 +3229,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1092
+#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3220,7 +3237,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1173
+#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr ""
diff --git a/po/de.po b/po/de.po
index 08431c80a..8382b6d38 100644
--- a/po/de.po
+++ b/po/de.po
@@ -37,14 +37,14 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-01-12 16:27+0000\n"
+"POT-Creation-Date: 2004-02-29 07: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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8-bit\n"
+"Report-Msgid-Bugs-To: \n"
#: build.c:40
#, fuzzy
@@ -595,69 +595,69 @@ msgstr "Lesen von %s fehlgeschlagen: %s."
msgid "File not found: %s\n"
msgstr "Datei auf dem Server nicht gefunden"
-#: build/files.c:1772
+#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
-#: build/files.c:1778
+#: build/files.c:1779
#, fuzzy, c-format
msgid "%s: public key read failed.\n"
msgstr "%s: ťreadLeadŤ fehlgeschlagen\n"
-#: build/files.c:1782 lib/rpmchecksig.c:580
+#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
-#: build/files.c:1789
+#: build/files.c:1790
#, fuzzy, c-format
msgid "%s: *.te policy read failed.\n"
msgstr "%s: ťreadLeadŤ fehlgeschlagen\n"
-#: build/files.c:1840
+#: build/files.c:1842
#, fuzzy, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "Verschiebungen müssen mit einem ť/Ť beginnen"
-#: build/files.c:1864
+#: build/files.c:1866
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "Paket %s wird nicht in %s aufgeführt"
-#: build/files.c:1881 lib/rpminstall.c:361
+#: build/files.c:1883 lib/rpminstall.c:361
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "Datei auf dem Server nicht gefunden"
-#: build/files.c:1941
+#: build/files.c:1943
#, 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:1952 build/pack.c:156
+#: build/files.c:1954 build/pack.c:156
#, fuzzy, c-format
msgid "line: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
# , c-format
-#: build/files.c:2348
+#: build/files.c:2350
#, fuzzy, c-format
msgid "Bad file: %s: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: build/files.c:2360 build/parsePrep.c:50
+#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:2404
+#: build/files.c:2406
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "Fehler beim Suchen nach Paket %s\n"
-#: build/files.c:2427
+#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
@@ -665,7 +665,7 @@ msgid ""
msgstr ""
# , c-format
-#: build/files.c:2455
+#: build/files.c:2457
#, fuzzy, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
@@ -818,7 +818,7 @@ msgid "Could not open %s: %s\n"
msgstr "Öffnen von %s fehlgeschlagen\n"
# , c-format
-#: build/pack.c:632 lib/psm.c:1420
+#: build/pack.c:632 lib/psm.c:1520
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "Nicht möglich %s zu schreiben"
@@ -853,7 +853,7 @@ msgstr "Nicht möglich %s zu schreiben"
msgid "Unable to write payload to %s: %s\n"
msgstr "Nicht möglich %s zu schreiben"
-#: build/pack.c:725 lib/psm.c:1689
+#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@@ -1640,47 +1640,52 @@ msgstr ""
msgid "%10d %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: lib/fsm.c:770
+#: lib/fsm.c:773
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/fsm.c:778
+#: lib/fsm.c:781
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
-#: lib/fsm.c:1336
+#: lib/fsm.c:1350
#, c-format
-msgid "%s directory created with perms %04o.\n"
+msgid "%s directory created with perms %04o, no context.\n"
msgstr ""
-#: lib/fsm.c:1635
+#: lib/fsm.c:1354
+#, c-format
+msgid "%s directory created with perms %04o, context %s.\n"
+msgstr ""
+
+#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1762 lib/fsm.c:1898
+#: lib/fsm.c:1784 lib/fsm.c:1920
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "kann Datei %s nicht öffnen: "
-#: lib/fsm.c:1925
+#: lib/fsm.c:1947
#, 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:1931
+#: lib/fsm.c:1953
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "Entfernen von %s fehlgeschlagen: %s"
-#: lib/fsm.c:1946
+#: lib/fsm.c:1968
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "öffnen von %s fehlgeschlagen: %s\n"
-#: lib/fsm.c:1968
+#: lib/fsm.c:1990
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "kann Datei %s nicht öffnen: "
@@ -2406,69 +2411,81 @@ msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr ""
-#: lib/psm.c:554
+#: lib/psm.c:541
+#, c-format
+msgid "setexeccon(%s) fails from context \"%s\": %s\n"
+msgstr ""
+
+#: lib/psm.c:545
+#, c-format
+msgid ""
+"setexeccon(%s) fails from context \"%s\": %s\n"
+"Continuing ...\n"
+msgstr ""
+
+#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:562
+#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:730
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:751
+#: lib/psm.c:851
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "Fehler: überspringe %s - Übertragung fehlgeschlagen - %s\n"
-#: lib/psm.c:757
+#: lib/psm.c:857
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "Ausführung des Skripts fehlgeschlagen"
# FIXME shared, besser: "mit anderen geteilte ..."
-#: lib/psm.c:1188
+#: lib/psm.c:1288
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
-#: lib/psm.c:1323
+#: lib/psm.c:1423
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
# , c-format
-#: lib/psm.c:1432
+#: lib/psm.c:1532
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Nicht möglich %s zu schreiben"
-#: lib/psm.c:1510
+#: lib/psm.c:1610
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "öffnen von %s fehlgeschlagen: %s\n"
-#: lib/psm.c:1511
+#: lib/psm.c:1611
msgid " on file "
msgstr ""
# , c-format
-#: lib/psm.c:1697
+#: lib/psm.c:1797
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: lib/psm.c:1700
+#: lib/psm.c:1800
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "pgp fehlgeschlagen"
-#: lib/query.c:118 lib/rpmts.c:566
+#: lib/query.c:118 lib/rpmts.c:575
#, fuzzy, c-format
msgid "incorrect format: %s\n"
msgstr "Fehler beim Format %s\n"
@@ -2519,7 +2536,7 @@ msgid "package has neither file owner or id lists\n"
msgstr "Paket hat keinen Namen"
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
-#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
+#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
@@ -3122,77 +3139,77 @@ msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr "Datei %s kann nicht zum Lesen geöffnet werden: %s."
-#: lib/rpmsx.c:343
+#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:360
+#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:391
+#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
-#: lib/rpmsx.c:406 lib/rpmsx.c:421
+#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
-#: lib/rpmsx.c:434
+#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
-#: lib/rpmts.c:163
+#: lib/rpmts.c:164
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n"
-#: lib/rpmts.c:253
+#: lib/rpmts.c:262
#, fuzzy, c-format
msgid "extra '(' in package label: %s\n"
msgstr "ungültige Paket-Nummer: %s\n"
-#: lib/rpmts.c:271
+#: lib/rpmts.c:280
#, fuzzy, c-format
msgid "missing '(' in package label: %s\n"
msgstr "fehlende { nach %{"
-#: lib/rpmts.c:279
+#: lib/rpmts.c:288
#, fuzzy, c-format
msgid "missing ')' in package label: %s\n"
msgstr "ungültige Paket-Nummer: %s\n"
-#: lib/rpmts.c:456
+#: lib/rpmts.c:465
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n"
# , c-format
-#: lib/rpmts.c:598
+#: lib/rpmts.c:607
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
# , c-format
-#: lib/rpmts.c:610
+#: lib/rpmts.c:619
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "Hole %s heraus\n"
-#: lib/rpmts.c:1098
+#: lib/rpmts.c:1107
msgid "mounted filesystems:\n"
msgstr ""
-#: lib/rpmts.c:1100
+#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
-#: lib/rpmts.c:1156
+#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
@@ -3365,7 +3382,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:891
+#: lib/transaction.c:893
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
@@ -3378,7 +3395,7 @@ msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1004
+#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3391,7 +3408,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1092
+#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3399,7 +3416,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1173
+#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr ""
diff --git a/po/fi.po b/po/fi.po
index 93d90b19a..14a18be35 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-01-12 16:27+0000\n"
+"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 1998-05-02 21:41:47-0400\n"
"Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
"Language-Team: Finnish <linux@sot.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-15\n"
"Content-Transfer-Encoding: 8bit\n"
+"Report-Msgid-Bugs-To: \n"
#: build.c:40
#, fuzzy
@@ -536,74 +536,74 @@ msgstr "En voi lukea %s: %s."
msgid "File not found: %s\n"
msgstr "Tiedostoa ei löytynyt palvelimelta"
-#: build/files.c:1772
+#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
-#: build/files.c:1778
+#: build/files.c:1779
#, fuzzy, c-format
msgid "%s: public key read failed.\n"
msgstr "%s: readLead epäonnistui\n"
-#: build/files.c:1782 lib/rpmchecksig.c:580
+#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
-#: build/files.c:1789
+#: build/files.c:1790
#, fuzzy, c-format
msgid "%s: *.te policy read failed.\n"
msgstr "%s: readLead epäonnistui\n"
-#: build/files.c:1840
+#: build/files.c:1842
#, fuzzy, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "siirtojen pitää alkaa /-merkillä"
-#: build/files.c:1864
+#: build/files.c:1866
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "paketti %s ei ole %s:ssä"
-#: build/files.c:1881 lib/rpminstall.c:361
+#: build/files.c:1883 lib/rpminstall.c:361
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "Tiedostoa ei löytynyt palvelimelta"
-#: build/files.c:1941
+#: build/files.c:1943
#, fuzzy, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "virhe: tiedostoa %s ei voi avata\n"
-#: build/files.c:1952 build/pack.c:156
+#: build/files.c:1954 build/pack.c:156
#, fuzzy, c-format
msgid "line: %s\n"
msgstr "en voinut avata %s: %s"
-#: build/files.c:2348
+#: build/files.c:2350
#, fuzzy, c-format
msgid "Bad file: %s: %s\n"
msgstr "en voinut avata %s: %s"
-#: build/files.c:2360 build/parsePrep.c:50
+#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:2404
+#: build/files.c:2406
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "virhe etsittäessä pakettia %s\n"
-#: build/files.c:2427
+#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
-#: build/files.c:2455
+#: build/files.c:2457
#, fuzzy, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "en voinut avata %s: %s"
@@ -746,7 +746,7 @@ msgstr "%s:n kirjoitus ei onnistu"
msgid "Could not open %s: %s\n"
msgstr "%s:n avaus epäonnistui\n"
-#: build/pack.c:632 lib/psm.c:1420
+#: build/pack.c:632 lib/psm.c:1520
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "%s:n kirjoitus ei onnistu"
@@ -776,7 +776,7 @@ msgstr "%s:n kirjoitus ei onnistu"
msgid "Unable to write payload to %s: %s\n"
msgstr "%s:n kirjoitus ei onnistu"
-#: build/pack.c:725 lib/psm.c:1689
+#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@@ -1530,47 +1530,52 @@ msgstr ""
msgid "%10d %s\n"
msgstr "en voinut avata %s: %s"
-#: lib/fsm.c:770
+#: lib/fsm.c:773
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/fsm.c:778
+#: lib/fsm.c:781
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "ryhmässä %s ei ole paketteja\n"
-#: lib/fsm.c:1336
+#: lib/fsm.c:1350
#, c-format
-msgid "%s directory created with perms %04o.\n"
+msgid "%s directory created with perms %04o, no context.\n"
msgstr ""
-#: lib/fsm.c:1635
+#: lib/fsm.c:1354
+#, c-format
+msgid "%s directory created with perms %04o, context %s.\n"
+msgstr ""
+
+#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1762 lib/fsm.c:1898
+#: lib/fsm.c:1784 lib/fsm.c:1920
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "en voinut avata tiedostoa %s: "
-#: lib/fsm.c:1925
+#: lib/fsm.c:1947
#, 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:1931
+#: lib/fsm.c:1953
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s:n rmdir epäonnistui: %s"
-#: lib/fsm.c:1946
+#: lib/fsm.c:1968
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s:n avaus ei onnistunut: %s\n"
-#: lib/fsm.c:1968
+#: lib/fsm.c:1990
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "en voinut avata tiedostoa %s: "
@@ -2289,66 +2294,78 @@ msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr ""
-#: lib/psm.c:554
+#: lib/psm.c:541
+#, c-format
+msgid "setexeccon(%s) fails from context \"%s\": %s\n"
+msgstr ""
+
+#: lib/psm.c:545
+#, c-format
+msgid ""
+"setexeccon(%s) fails from context \"%s\": %s\n"
+"Continuing ...\n"
+msgstr ""
+
+#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:562
+#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:730
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:751
+#: lib/psm.c:851
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "virhe: ohitan %s:n, siirto epäonnistui - %s\n"
-#: lib/psm.c:757
+#: lib/psm.c:857
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "skriptin ajo epäonnistui"
-#: lib/psm.c:1188
+#: lib/psm.c:1288
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "paketti %s-%s-%s sisältää jaettuja tiedostoja\n"
-#: lib/psm.c:1323
+#: lib/psm.c:1423
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1432
+#: lib/psm.c:1532
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "%s:n kirjoitus ei onnistu"
-#: lib/psm.c:1510
+#: lib/psm.c:1610
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "%s:n avaus ei onnistunut: %s\n"
-#: lib/psm.c:1511
+#: lib/psm.c:1611
msgid " on file "
msgstr ""
-#: lib/psm.c:1697
+#: lib/psm.c:1797
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "en voinut avata %s: %s"
-#: lib/psm.c:1700
+#: lib/psm.c:1800
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "pgp epäonnistui"
-#: lib/query.c:118 lib/rpmts.c:566
+#: lib/query.c:118 lib/rpmts.c:575
#, fuzzy, c-format
msgid "incorrect format: %s\n"
msgstr "virhe formaatissa: %s\n"
@@ -2399,7 +2416,7 @@ msgid "package has neither file owner or id lists\n"
msgstr "paketilla ei ole nimeä"
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
-#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
+#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
@@ -2987,75 +3004,75 @@ msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr "En voi avata %s luettavaksi: %s."
-#: lib/rpmsx.c:343
+#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:360
+#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:391
+#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
-#: lib/rpmsx.c:406 lib/rpmsx.c:421
+#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
-#: lib/rpmsx.c:434
+#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
-#: lib/rpmts.c:163
+#: lib/rpmts.c:164
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "virhe: en voi avata %s%s/packages.rpm\n"
-#: lib/rpmts.c:253
+#: lib/rpmts.c:262
#, fuzzy, c-format
msgid "extra '(' in package label: %s\n"
msgstr "virheellinen paketin numero: %s\n"
-#: lib/rpmts.c:271
+#: lib/rpmts.c:280
#, fuzzy, c-format
msgid "missing '(' in package label: %s\n"
msgstr "puuttuva '{' '%':n jälkeen"
-#: lib/rpmts.c:279
+#: lib/rpmts.c:288
#, fuzzy, c-format
msgid "missing ')' in package label: %s\n"
msgstr "virheellinen paketin numero: %s\n"
-#: lib/rpmts.c:456
+#: lib/rpmts.c:465
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "virhe: en voi avata %s%s/packages.rpm\n"
-#: lib/rpmts.c:598
+#: lib/rpmts.c:607
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "en voinut avata %s: %s"
-#: lib/rpmts.c:610
+#: lib/rpmts.c:619
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "Haen: %s\n"
-#: lib/rpmts.c:1098
+#: lib/rpmts.c:1107
msgid "mounted filesystems:\n"
msgstr ""
-#: lib/rpmts.c:1100
+#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
-#: lib/rpmts.c:1156
+#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
@@ -3228,7 +3245,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:891
+#: lib/transaction.c:893
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "virhe luotaessa hakemistoa %s: %s"
@@ -3241,7 +3258,7 @@ msgstr "virhe luotaessa hakemistoa %s: %s"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1004
+#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3254,7 +3271,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1092
+#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3262,7 +3279,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1173
+#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr ""
diff --git a/po/fr.po b/po/fr.po
index ac5d19fa5..f699b273e 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -11,14 +11,14 @@
msgid ""
msgstr ""
"Project-Id-Version: RPM 4.2.1\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-01-12 16:27+0000\n"
+"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2003-07-06 01:36+0200\n"
"Last-Translator: RPM French Translation <rpm-fr@livna.org>\n"
"Language-Team: RPM French Translation <rpm-fr@livna.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8-bit\n"
+"Report-Msgid-Bugs-To: \n"
#: build.c:40
msgid "Failed build dependencies:\n"
@@ -539,67 +539,67 @@ msgstr "Le fichier ne correpond pas Ă  prefix (%s): %s\n"
msgid "File not found: %s\n"
msgstr "Fichier non trouvĂŠ: %s\n"
-#: build/files.c:1772
+#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
-#: build/files.c:1778
+#: build/files.c:1779
#, c-format
msgid "%s: public key read failed.\n"
msgstr "%s: ĂŠchec de la lecture de la clĂŠ publique.\n"
-#: build/files.c:1782 lib/rpmchecksig.c:580
+#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr "%s n'est pas une clĂŠ publique blindĂŠe.\n"
-#: build/files.c:1789
+#: build/files.c:1790
#, fuzzy, c-format
msgid "%s: *.te policy read failed.\n"
msgstr "%s: ĂŠchec de la lecture de la clĂŠ publique.\n"
-#: build/files.c:1840
+#: build/files.c:1842
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "Le fichier non prĂŠcĂŠdĂŠ d'un \"/\": %s\n"
-#: build/files.c:1864
+#: build/files.c:1866
#, c-format
msgid "Glob not permitted: %s\n"
msgstr "Substitution non permise: %s\n"
-#: build/files.c:1881 lib/rpminstall.c:361
+#: build/files.c:1883 lib/rpminstall.c:361
#, c-format
msgid "File not found by glob: %s\n"
msgstr "Fichier non trouvĂŠ par la substitution: %s\n"
-#: build/files.c:1941
+#: build/files.c:1943
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "Ne peut ouvrir le fichier donnĂŠ Ă  %%files %s: %s\n"
-#: build/files.c:1952 build/pack.c:156
+#: build/files.c:1954 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr "Ligne: %s\n"
-#: build/files.c:2348
+#: build/files.c:2350
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "Mauvais fichier: %s: %s\n"
-#: build/files.c:2360 build/parsePrep.c:50
+#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Mauvais possesseur/groupe: %s\n"
-#: build/files.c:2404
+#: build/files.c:2406
#, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "VĂŠrification des fichiers non empaquetĂŠs: %s\n"
-#: build/files.c:2427
+#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
@@ -608,7 +608,7 @@ msgstr ""
"Fichier(s) installĂŠ(s) (mais non empaquetĂŠs):\n"
"%s"
-#: build/files.c:2455
+#: build/files.c:2457
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Traitement des fichiers: %s-%s-%s\n"
@@ -747,7 +747,7 @@ msgstr "Impossible de recharger l'entĂŞte de la signature.\n"
msgid "Could not open %s: %s\n"
msgstr "Impossible d'ouvrir %s: %s\n"
-#: build/pack.c:632 lib/psm.c:1420
+#: build/pack.c:632 lib/psm.c:1520
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Impossible d'ĂŠcrire le paquetage: %s\n"
@@ -777,7 +777,7 @@ msgstr "Impossible de lire la charge utile dans %s: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "Impossible d'ĂŠcrire la charge utile dans %s: %s\n"
-#: build/pack.c:725 lib/psm.c:1689
+#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr "Ecrit: %s\n"
@@ -1524,47 +1524,52 @@ msgstr "========== RĂŠpertoires non explicitement inclus dans le paquetage:\n"
msgid "%10d %s\n"
msgstr ""
-#: lib/fsm.c:770
+#: lib/fsm.c:773
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "utilisateur %s inexistant - utilisation de root\n"
-#: lib/fsm.c:778
+#: lib/fsm.c:781
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "groupe %s inexistant - utilisation de root\n"
-#: lib/fsm.c:1336
-#, c-format
-msgid "%s directory created with perms %04o.\n"
+#: lib/fsm.c:1350
+#, fuzzy, c-format
+msgid "%s directory created with perms %04o, no context.\n"
msgstr "le rĂŠpertoire %s a ĂŠtĂŠ crĂŠĂŠ avec les permissions %04o.\n"
-#: lib/fsm.c:1635
+#: lib/fsm.c:1354
+#, fuzzy, c-format
+msgid "%s directory created with perms %04o, context %s.\n"
+msgstr "le rĂŠpertoire %s a ĂŠtĂŠ crĂŠĂŠ avec les permissions %04o.\n"
+
+#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr "l'archive %s n'ĂŠtait pas dans la liste de fichiers d'entĂŞtes\n"
-#: lib/fsm.c:1762 lib/fsm.c:1898
+#: lib/fsm.c:1784 lib/fsm.c:1920
#, c-format
msgid "%s saved as %s\n"
msgstr "%s sauvĂŠ en tant que %s\n"
-#: lib/fsm.c:1925
+#: lib/fsm.c:1947
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s ĂŠchec du rmdir sur %s : rĂŠpertoire non-vide\n"
-#: lib/fsm.c:1931
+#: lib/fsm.c:1953
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s ĂŠchec du rmdir sur %s: %s\n"
-#: lib/fsm.c:1946
+#: lib/fsm.c:1968
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s n'a pu dĂŠlier %s: %s\n"
-#: lib/fsm.c:1968
+#: lib/fsm.c:1990
#, c-format
msgid "%s created as %s\n"
msgstr "%s crĂŠĂŠ en tant que %s\n"
@@ -2242,65 +2247,77 @@ msgstr "le paquetage source ne contient pas de fichier .spec\n"
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr ""
-#: lib/psm.c:554
+#: lib/psm.c:541
+#, c-format
+msgid "setexeccon(%s) fails from context \"%s\": %s\n"
+msgstr ""
+
+#: lib/psm.c:545
+#, c-format
+msgid ""
+"setexeccon(%s) fails from context \"%s\": %s\n"
+"Continuing ...\n"
+msgstr ""
+
+#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr "%s: %s(%s-%s-%s) redondance ignorĂŠe \"%s\".\n"
-#: lib/psm.c:562
+#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr "%s: %s(%s-%s-%s) dĂŠbut du scriplet %ssynchrone\n"
-#: lib/psm.c:730
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:751
+#: lib/psm.c:851
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "%s(%s-%s-%s) ĂŠchec du scriptlet, waitpid(%d) rc %d: %s\n"
-#: lib/psm.c:757
+#: lib/psm.c:857
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "%s(%s-%s-%s) ĂŠchec du scriplet, code de sortie %d\n"
-#: lib/psm.c:1188
+#: lib/psm.c:1288
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s avait %d fichiers, test = %d\n"
-#: lib/psm.c:1323
+#: lib/psm.c:1423
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr "%s: ĂŠchec du scriptlet %s (%d), on saute %s\n"
-#: lib/psm.c:1432
+#: lib/psm.c:1532
msgid "Unable to reload signature header\n"
msgstr "Impossible de recharger l'entĂŞte de signature\n"
-#: lib/psm.c:1510
+#: lib/psm.c:1610
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "ĂŠchec du dĂŠballage de l'archive %s%s: %s\n"
-#: lib/psm.c:1511
+#: lib/psm.c:1611
msgid " on file "
msgstr " dans fichier "
-#: lib/psm.c:1697
+#: lib/psm.c:1797
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr "ĂŠchec de %s sur le fichier %s: %s\n"
-#: lib/psm.c:1700
+#: lib/psm.c:1800
#, c-format
msgid "%s failed: %s\n"
msgstr "ĂŠchec %s: %s\n"
-#: lib/query.c:118 lib/rpmts.c:566
+#: lib/query.c:118 lib/rpmts.c:575
#, c-format
msgid "incorrect format: %s\n"
msgstr "format incorrect: %s\n"
@@ -2349,7 +2366,7 @@ msgstr ""
"le paquetage n'a ni la liste des id ni celle des possesseurs de fichiers\n"
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
-#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
+#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
@@ -2948,75 +2965,75 @@ msgstr "Impossible de lire %s, HOME trop gros.\n"
msgid "Unable to open %s for reading: %s.\n"
msgstr "Impossible d'ouvrir %s en lecture: %s.\n"
-#: lib/rpmsx.c:343
+#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:360
+#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:391
+#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
-#: lib/rpmsx.c:406 lib/rpmsx.c:421
+#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
-#: lib/rpmsx.c:434
+#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
-#: lib/rpmts.c:163
+#: lib/rpmts.c:164
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "impossible d'ouvrir la base de donnĂŠes Package dans %s\n"
-#: lib/rpmts.c:253
+#: lib/rpmts.c:262
#, c-format
msgid "extra '(' in package label: %s\n"
msgstr "'(' supplĂŠmentaire dans le label du paquetage: %s\n"
-#: lib/rpmts.c:271
+#: lib/rpmts.c:280
#, c-format
msgid "missing '(' in package label: %s\n"
msgstr "'(' manquante dans le label du paquetage: %s\n"
-#: lib/rpmts.c:279
+#: lib/rpmts.c:288
#, c-format
msgid "missing ')' in package label: %s\n"
msgstr "')' manquante dans le label du paquetage: %s\n"
-#: lib/rpmts.c:456
+#: lib/rpmts.c:465
#, c-format
msgid "cannot open Solve database in %s\n"
msgstr "Impossible d'ouvrir la base de donnĂŠes Solve dans %s\n"
-#: lib/rpmts.c:598
+#: lib/rpmts.c:607
#, c-format
msgid "Adding: %s\n"
msgstr "Ajout de: %s\n"
-#: lib/rpmts.c:610
+#: lib/rpmts.c:619
#, c-format
msgid "Suggesting: %s\n"
msgstr "Suggestion: %s\n"
-#: lib/rpmts.c:1098
+#: lib/rpmts.c:1107
msgid "mounted filesystems:\n"
msgstr "systèmes de fichiers montÊs:\n"
-#: lib/rpmts.c:1100
+#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
-#: lib/rpmts.c:1156
+#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr "%5d 0x%04x %5u %12ld %12ld %s\n"
@@ -3185,7 +3202,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr "Signature: INCONNUE (%d)\n"
#. @innercontinue@
-#: lib/transaction.c:891
+#: lib/transaction.c:893
#, c-format
msgid "excluding directory %s\n"
msgstr "rĂŠpertoire %s exclus\n"
@@ -3198,7 +3215,7 @@ msgstr "rĂŠpertoire %s exclus\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1004
+#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr "vĂŠrification de santĂŠ de %d ĂŠlĂŠments\n"
@@ -3211,7 +3228,7 @@ msgstr "vĂŠrification de santĂŠ de %d ĂŠlĂŠments\n"
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1092
+#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr "calcul de %d empreintes de fichier\n"
@@ -3219,7 +3236,7 @@ msgstr "calcul de %d empreintes de fichier\n"
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1173
+#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr "calcul de la disposition des fichiers\n"
diff --git a/po/gl.po b/po/gl.po
index 020ce558a..5681c6f93 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-01-12 16:27+0000\n"
+"POT-Creation-Date: 2004-02-29 07: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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
+"Report-Msgid-Bugs-To: \n"
#: build.c:40
msgid "Failed build dependencies:\n"
@@ -506,74 +506,74 @@ msgstr ""
msgid "File not found: %s\n"
msgstr ""
-#: build/files.c:1772
+#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
-#: build/files.c:1778
+#: build/files.c:1779
#, c-format
msgid "%s: public key read failed.\n"
msgstr ""
-#: build/files.c:1782 lib/rpmchecksig.c:580
+#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
-#: build/files.c:1789
+#: build/files.c:1790
#, c-format
msgid "%s: *.te policy read failed.\n"
msgstr ""
-#: build/files.c:1840
+#: build/files.c:1842
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr ""
-#: build/files.c:1864
+#: build/files.c:1866
#, c-format
msgid "Glob not permitted: %s\n"
msgstr ""
-#: build/files.c:1881 lib/rpminstall.c:361
+#: build/files.c:1883 lib/rpminstall.c:361
#, c-format
msgid "File not found by glob: %s\n"
msgstr ""
-#: build/files.c:1941
+#: build/files.c:1943
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr ""
-#: build/files.c:1952 build/pack.c:156
+#: build/files.c:1954 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr ""
-#: build/files.c:2348
+#: build/files.c:2350
#, c-format
msgid "Bad file: %s: %s\n"
msgstr ""
-#: build/files.c:2360 build/parsePrep.c:50
+#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:2404
+#: build/files.c:2406
#, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr ""
-#: build/files.c:2427
+#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
-#: build/files.c:2455
+#: build/files.c:2457
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@@ -712,7 +712,7 @@ msgstr ""
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:632 lib/psm.c:1420
+#: build/pack.c:632 lib/psm.c:1520
#, c-format
msgid "Unable to write package: %s\n"
msgstr ""
@@ -742,7 +742,7 @@ msgstr ""
msgid "Unable to write payload to %s: %s\n"
msgstr ""
-#: build/pack.c:725 lib/psm.c:1689
+#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@@ -1465,47 +1465,52 @@ msgstr ""
msgid "%10d %s\n"
msgstr ""
-#: lib/fsm.c:770
+#: lib/fsm.c:773
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/fsm.c:778
+#: lib/fsm.c:781
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
-#: lib/fsm.c:1336
+#: lib/fsm.c:1350
#, c-format
-msgid "%s directory created with perms %04o.\n"
+msgid "%s directory created with perms %04o, no context.\n"
msgstr ""
-#: lib/fsm.c:1635
+#: lib/fsm.c:1354
+#, c-format
+msgid "%s directory created with perms %04o, context %s.\n"
+msgstr ""
+
+#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1762 lib/fsm.c:1898
+#: lib/fsm.c:1784 lib/fsm.c:1920
#, c-format
msgid "%s saved as %s\n"
msgstr ""
-#: lib/fsm.c:1925
+#: lib/fsm.c:1947
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr ""
-#: lib/fsm.c:1931
+#: lib/fsm.c:1953
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr ""
-#: lib/fsm.c:1946
+#: lib/fsm.c:1968
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr ""
-#: lib/fsm.c:1968
+#: lib/fsm.c:1990
#, c-format
msgid "%s created as %s\n"
msgstr ""
@@ -2155,65 +2160,77 @@ msgstr ""
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr ""
-#: lib/psm.c:554
+#: lib/psm.c:541
+#, c-format
+msgid "setexeccon(%s) fails from context \"%s\": %s\n"
+msgstr ""
+
+#: lib/psm.c:545
+#, c-format
+msgid ""
+"setexeccon(%s) fails from context \"%s\": %s\n"
+"Continuing ...\n"
+msgstr ""
+
+#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:562
+#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:730
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:751
+#: lib/psm.c:851
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr ""
-#: lib/psm.c:757
+#: lib/psm.c:857
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
-#: lib/psm.c:1188
+#: lib/psm.c:1288
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
-#: lib/psm.c:1323
+#: lib/psm.c:1423
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1432
+#: lib/psm.c:1532
msgid "Unable to reload signature header\n"
msgstr ""
-#: lib/psm.c:1510
+#: lib/psm.c:1610
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
-#: lib/psm.c:1511
+#: lib/psm.c:1611
msgid " on file "
msgstr ""
-#: lib/psm.c:1697
+#: lib/psm.c:1797
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
-#: lib/psm.c:1700
+#: lib/psm.c:1800
#, c-format
msgid "%s failed: %s\n"
msgstr ""
-#: lib/query.c:118 lib/rpmts.c:566
+#: lib/query.c:118 lib/rpmts.c:575
#, c-format
msgid "incorrect format: %s\n"
msgstr ""
@@ -2261,7 +2278,7 @@ msgid "package has neither file owner or id lists\n"
msgstr ""
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
-#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
+#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
@@ -2840,75 +2857,75 @@ msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr ""
-#: lib/rpmsx.c:343
+#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:360
+#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:391
+#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
-#: lib/rpmsx.c:406 lib/rpmsx.c:421
+#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
-#: lib/rpmsx.c:434
+#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
-#: lib/rpmts.c:163
+#: lib/rpmts.c:164
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr ""
-#: lib/rpmts.c:253
+#: lib/rpmts.c:262
#, c-format
msgid "extra '(' in package label: %s\n"
msgstr ""
-#: lib/rpmts.c:271
+#: lib/rpmts.c:280
#, c-format
msgid "missing '(' in package label: %s\n"
msgstr ""
-#: lib/rpmts.c:279
+#: lib/rpmts.c:288
#, c-format
msgid "missing ')' in package label: %s\n"
msgstr ""
-#: lib/rpmts.c:456
+#: lib/rpmts.c:465
#, c-format
msgid "cannot open Solve database in %s\n"
msgstr ""
-#: lib/rpmts.c:598
+#: lib/rpmts.c:607
#, c-format
msgid "Adding: %s\n"
msgstr ""
-#: lib/rpmts.c:610
+#: lib/rpmts.c:619
#, c-format
msgid "Suggesting: %s\n"
msgstr ""
-#: lib/rpmts.c:1098
+#: lib/rpmts.c:1107
msgid "mounted filesystems:\n"
msgstr ""
-#: lib/rpmts.c:1100
+#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
-#: lib/rpmts.c:1156
+#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
@@ -3073,7 +3090,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:891
+#: lib/transaction.c:893
#, c-format
msgid "excluding directory %s\n"
msgstr ""
@@ -3086,7 +3103,7 @@ msgstr ""
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1004
+#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3099,7 +3116,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1092
+#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3107,7 +3124,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1173
+#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr ""
diff --git a/po/is.po b/po/is.po
index 70e7e18fe..4511706f1 100644
--- a/po/is.po
+++ b/po/is.po
@@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-01-12 16:27+0000\n"
+"POT-Creation-Date: 2004-02-29 07: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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8-bit\n"
+"Report-Msgid-Bugs-To: \n"
#: build.c:40
#, fuzzy
@@ -509,74 +509,74 @@ msgstr ""
msgid "File not found: %s\n"
msgstr "Skráin fannst ekki: %s\n"
-#: build/files.c:1772
+#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
-#: build/files.c:1778
+#: build/files.c:1779
#, fuzzy, c-format
msgid "%s: public key read failed.\n"
msgstr "%s: Fseek brást: %s\n"
-#: build/files.c:1782 lib/rpmchecksig.c:580
+#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
-#: build/files.c:1789
+#: build/files.c:1790
#, fuzzy, c-format
msgid "%s: *.te policy read failed.\n"
msgstr "%s: Fseek brást: %s\n"
-#: build/files.c:1840
+#: build/files.c:1842
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr ""
-#: build/files.c:1864
+#: build/files.c:1866
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "Gat ekki opnađ PreUn skrá: %s\n"
-#: build/files.c:1881 lib/rpminstall.c:361
+#: build/files.c:1883 lib/rpminstall.c:361
#, c-format
msgid "File not found by glob: %s\n"
msgstr "Skráin fannst ekki međ 'glob': %s\n"
-#: build/files.c:1941
+#: build/files.c:1943
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "Gat ekki opnađ %%files skrána %s: %s\n"
-#: build/files.c:1952 build/pack.c:156
+#: build/files.c:1954 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr "lína: %s\n"
-#: build/files.c:2348
+#: build/files.c:2350
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "Ógild skrá %s: %s\n"
-#: build/files.c:2360 build/parsePrep.c:50
+#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:2404
+#: build/files.c:2406
#, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr ""
-#: build/files.c:2427
+#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
-#: build/files.c:2455
+#: build/files.c:2457
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@@ -719,7 +719,7 @@ msgstr "Get ekki lesiđ haus úr %s: %s\n"
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:632 lib/psm.c:1420
+#: build/pack.c:632 lib/psm.c:1520
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Get ekki ritađ í pakka: %s\n"
@@ -749,7 +749,7 @@ msgstr "Get ekki lesiđ innihald %s: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "Get ekki ritađ innihald í %s: %s\n"
-#: build/pack.c:725 lib/psm.c:1689
+#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrifađi: %s\n"
@@ -1478,47 +1478,52 @@ msgstr ""
msgid "%10d %s\n"
msgstr "%9d %s\n"
-#: lib/fsm.c:770
+#: lib/fsm.c:773
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/fsm.c:778
+#: lib/fsm.c:781
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
-#: lib/fsm.c:1336
+#: lib/fsm.c:1350
#, c-format
-msgid "%s directory created with perms %04o.\n"
+msgid "%s directory created with perms %04o, no context.\n"
msgstr ""
-#: lib/fsm.c:1635
+#: lib/fsm.c:1354
+#, c-format
+msgid "%s directory created with perms %04o, context %s.\n"
+msgstr ""
+
+#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1762 lib/fsm.c:1898
+#: lib/fsm.c:1784 lib/fsm.c:1920
#, c-format
msgid "%s saved as %s\n"
msgstr "%s vistađ sem %s\n"
-#: lib/fsm.c:1925
+#: lib/fsm.c:1947
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr ""
-#: lib/fsm.c:1931
+#: lib/fsm.c:1953
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s rmdir %s brást: %s\n"
-#: lib/fsm.c:1946
+#: lib/fsm.c:1968
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s gat ekki eytt %s: %s\n"
-#: lib/fsm.c:1968
+#: lib/fsm.c:1990
#, c-format
msgid "%s created as %s\n"
msgstr "%s búiđ til sem %s\n"
@@ -2184,66 +2189,78 @@ msgstr "pakkinn inniheldur enga .spec skrá\n"
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr ""
-#: lib/psm.c:554
+#: lib/psm.c:541
+#, c-format
+msgid "setexeccon(%s) fails from context \"%s\": %s\n"
+msgstr ""
+
+#: lib/psm.c:545
+#, c-format
+msgid ""
+"setexeccon(%s) fails from context \"%s\": %s\n"
+"Continuing ...\n"
+msgstr ""
+
+#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:562
+#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:730
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:751
+#: lib/psm.c:851
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr ""
-#: lib/psm.c:757
+#: lib/psm.c:857
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
-#: lib/psm.c:1188
+#: lib/psm.c:1288
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
-#: lib/psm.c:1323
+#: lib/psm.c:1423
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1432
+#: lib/psm.c:1532
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Get ekki lesiđ haus úr %s: %s\n"
-#: lib/psm.c:1510
+#: lib/psm.c:1610
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
-#: lib/psm.c:1511
+#: lib/psm.c:1611
msgid " on file "
msgstr ""
-#: lib/psm.c:1697
+#: lib/psm.c:1797
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "gat ekki opnađ %s: %s\n"
-#: lib/psm.c:1700
+#: lib/psm.c:1800
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s brást\n"
-#: lib/query.c:118 lib/rpmts.c:566
+#: lib/query.c:118 lib/rpmts.c:575
#, c-format
msgid "incorrect format: %s\n"
msgstr ""
@@ -2291,7 +2308,7 @@ msgid "package has neither file owner or id lists\n"
msgstr ""
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
-#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
+#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
@@ -2872,75 +2889,75 @@ msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr "Get ekki opnađ %s til lesturs: %s.\n"
-#: lib/rpmsx.c:343
+#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:360
+#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:391
+#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
-#: lib/rpmsx.c:406 lib/rpmsx.c:421
+#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
-#: lib/rpmsx.c:434
+#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
-#: lib/rpmts.c:163
+#: lib/rpmts.c:164
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "get ekki opnađ pakka gagnagrunn í %s\n"
-#: lib/rpmts.c:253
+#: lib/rpmts.c:262
#, c-format
msgid "extra '(' in package label: %s\n"
msgstr ""
-#: lib/rpmts.c:271
+#: lib/rpmts.c:280
#, fuzzy, c-format
msgid "missing '(' in package label: %s\n"
msgstr "vantar '(' í %s %s\n"
-#: lib/rpmts.c:279
+#: lib/rpmts.c:288
#, fuzzy, c-format
msgid "missing ')' in package label: %s\n"
msgstr "vantar '(' í %s %s\n"
-#: lib/rpmts.c:456
+#: lib/rpmts.c:465
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "get ekki opnađ pakka gagnagrunn í %s\n"
-#: lib/rpmts.c:598
+#: lib/rpmts.c:607
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "lína: %s\n"
-#: lib/rpmts.c:610
+#: lib/rpmts.c:619
#, c-format
msgid "Suggesting: %s\n"
msgstr ""
-#: lib/rpmts.c:1098
+#: lib/rpmts.c:1107
msgid "mounted filesystems:\n"
msgstr ""
-#: lib/rpmts.c:1100
+#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
-#: lib/rpmts.c:1156
+#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
@@ -3106,7 +3123,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:891
+#: lib/transaction.c:893
#, c-format
msgid "excluding directory %s\n"
msgstr ""
@@ -3119,7 +3136,7 @@ msgstr ""
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1004
+#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3132,7 +3149,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1092
+#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3140,7 +3157,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1173
+#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr ""
diff --git a/po/ja.po b/po/ja.po
index 0b4bd74d6..ab768fa14 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -6,14 +6,14 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-01-12 16:27+0000\n"
+"POT-Creation-Date: 2004-02-29 07: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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=EUC-JP\n"
"Content-Transfer-Encoding: EUC-JP\n"
+"Report-Msgid-Bugs-To: \n"
#: build.c:40
#, fuzzy
@@ -551,74 +551,74 @@ msgstr "ĽŐĽĄĽ¤Ľë¤Ď prefix (%s) ¤Č°ěĂפˇ¤Ţ¤ť¤ó: %s"
msgid "File not found: %s\n"
msgstr "ĽŐĽĄĽ¤Ľë¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤ó: %s"
-#: build/files.c:1772
+#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
-#: build/files.c:1778
+#: build/files.c:1779
#, fuzzy, c-format
msgid "%s: public key read failed.\n"
msgstr "%s: readLead ¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤ż\n"
-#: build/files.c:1782 lib/rpmchecksig.c:580
+#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
-#: build/files.c:1789
+#: build/files.c:1790
#, fuzzy, c-format
msgid "%s: *.te policy read failed.\n"
msgstr "%s: readLead ¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤ż\n"
-#: build/files.c:1840
+#: build/files.c:1842
#, fuzzy, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "ĽŐĽĄĽ¤Ľë¤ĎŔčĆŹ¤Ë \"/\" ¤ŹÉŹÍפǤš: %s"
-#: build/files.c:1864
+#: build/files.c:1866
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "%d šÔĚÜ: ĽĐĄźĽ¸ĽçĽó¤Ďľö˛Ä¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó: %s"
-#: build/files.c:1881 lib/rpminstall.c:361
+#: build/files.c:1883 lib/rpminstall.c:361
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "ĽŐĽĄĽ¤Ľë¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤ó(by glob): %s"
-#: build/files.c:1941
+#: build/files.c:1943
#, fuzzy, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "%%files ¤ňĽŞĄźĽ×Ľó¤Ç¤­¤Ţ¤ť¤ó: %s"
-#: build/files.c:1952 build/pack.c:156
+#: build/files.c:1954 build/pack.c:156
#, fuzzy, c-format
msgid "line: %s\n"
msgstr "šÔĚÜ: %s"
-#: build/files.c:2348
+#: build/files.c:2350
#, fuzzy, c-format
msgid "Bad file: %s: %s\n"
msgstr "ĽŐĽĄĽ¤Ľë %s: %s\n"
-#: build/files.c:2360 build/parsePrep.c:50
+#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "ÉÔŔľ¤Ę˝ęÍ­źÔ/Ľ°ĽëĄźĽ×: %s\n"
-#: build/files.c:2404
+#: build/files.c:2406
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "ĽŃĽĂĽąĄźĽ¸ %s ¤ÎĂľş÷Ăć\n"
-#: build/files.c:2427
+#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
-#: build/files.c:2455
+#: build/files.c:2457
#, fuzzy, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "ĽŐĽĄĽ¤Ľë¤Î˝čÍýĂć: %s-%s-%s\n"
@@ -762,7 +762,7 @@ msgstr "Ľ˘Ľ¤ĽłĽó¤ňĆɤळ¤Č¤Ź¤Ç¤­¤Ţ¤ť¤ó: %s"
msgid "Could not open %s: %s\n"
msgstr "%s ¤ÎĽŞĄźĽ×Ľó¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤ż\n"
-#: build/pack.c:632 lib/psm.c:1420
+#: build/pack.c:632 lib/psm.c:1520
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "ĽŃĽĂĽąĄźĽ¸¤Î˝ń¤­šţ¤ß¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤ż: %s"
@@ -792,7 +792,7 @@ msgstr "Ľ˘Ľ¤ĽłĽó¤ňĆɤळ¤Č¤Ź¤Ç¤­¤Ţ¤ť¤ó: %s"
msgid "Unable to write payload to %s: %s\n"
msgstr "ĽŃĽĂĽąĄźĽ¸¤Î˝ń¤­šţ¤ß¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤ż: %s"
-#: build/pack.c:725 lib/psm.c:1689
+#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr "˝ń¤­šţ¤ßĂć: %s\n"
@@ -1553,47 +1553,52 @@ msgstr ""
msgid "%10d %s\n"
msgstr "%d šÔĚÜ: %s"
-#: lib/fsm.c:770
+#: lib/fsm.c:773
#, fuzzy, c-format
msgid "user %s does not exist - using root\n"
msgstr "ĽćĄźĽś %s ¤Ď¸şß¤ˇ¤Ţ¤ť¤ó - root ¤ňťČÍѤˇ¤Ţ¤š"
-#: lib/fsm.c:778
+#: lib/fsm.c:781
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "Ľ°ĽëĄźĽ× %s ¤Ď¸şß¤ˇ¤Ţ¤ť¤ó - root ¤ňťČÍѤˇ¤Ţ¤š"
-#: lib/fsm.c:1336
+#: lib/fsm.c:1350
#, c-format
-msgid "%s directory created with perms %04o.\n"
+msgid "%s directory created with perms %04o, no context.\n"
msgstr ""
-#: lib/fsm.c:1635
+#: lib/fsm.c:1354
+#, c-format
+msgid "%s directory created with perms %04o, context %s.\n"
+msgstr ""
+
+#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1762 lib/fsm.c:1898
+#: lib/fsm.c:1784 lib/fsm.c:1920
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "ˇŮšđ: %s ¤Ď %s ¤Č¤ˇ¤ĆĘݸ¤ľ¤ě¤Ţ¤š"
-#: lib/fsm.c:1925
+#: lib/fsm.c:1947
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s ¤ňşď˝ü¤Ç¤­¤Ţ¤ť¤ó - ĽÇĽŁĽěĽŻĽČĽę¤Źśő¤Ç¤˘¤ę¤Ţ¤ť¤ó"
-#: lib/fsm.c:1931
+#: lib/fsm.c:1953
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s ¤Î rmdir ¤ËźşÇÔ: %s"
-#: lib/fsm.c:1946
+#: lib/fsm.c:1968
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s ¤ÎĽŞĄźĽ×Ľó¤ËźşÇÔ: %s\n"
-#: lib/fsm.c:1968
+#: lib/fsm.c:1990
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "ˇŮšđ: %s ¤Ď %s ¤Č¤ˇ¤ĆşîŔŽ¤ľ¤ě¤Ţ¤š"
@@ -2325,67 +2330,79 @@ msgstr "Ľ˝ĄźĽšĽŃĽĂĽąĄźĽ¸¤Ď .spec ĽŐĽĄĽ¤Ľë¤ň´Ţ¤ó¤Ç¤¤¤Ţ¤ť¤ó"
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr ""
-#: lib/psm.c:554
+#: lib/psm.c:541
+#, c-format
+msgid "setexeccon(%s) fails from context \"%s\": %s\n"
+msgstr ""
+
+#: lib/psm.c:545
+#, c-format
+msgid ""
+"setexeccon(%s) fails from context \"%s\": %s\n"
+"Continuing ...\n"
+msgstr ""
+
+#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:562
+#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:730
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:751
+#: lib/psm.c:851
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "%s ¤ňĽšĽ­ĽĂĽ×¤ˇ¤Ţ¤š - ĹžÁ÷źşÇÔ - %s\n"
-#: lib/psm.c:757
+#: lib/psm.c:857
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "ĽšĽŻĽęĽ×ĽČ¤ÎźÂšÔ¤ËźşÇÔ"
-#: lib/psm.c:1188
+#: lib/psm.c:1288
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "ĽŃĽĂĽąĄźĽ¸: %s-%s-%s ĽŐĽĄĽ¤ĽëĽĆĽšĽČ = %d\n"
-#: lib/psm.c:1323
+#: lib/psm.c:1423
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1432
+#: lib/psm.c:1532
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Ľ˘Ľ¤ĽłĽó¤ňĆɤळ¤Č¤Ź¤Ç¤­¤Ţ¤ť¤ó: %s"
-#: lib/psm.c:1510
+#: lib/psm.c:1610
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "ĽŐĽĄĽ¤Ľë %s ¤ÎĽ˘ĄźĽŤĽ¤ĽÖ¤Îż­Äš¤ËźşÇÔ %s%s: %s"
-#: lib/psm.c:1511
+#: lib/psm.c:1611
#, fuzzy
msgid " on file "
msgstr "ĽŐĽĄĽ¤Ľëžĺ"
-#: lib/psm.c:1697
+#: lib/psm.c:1797
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s ¤ÎĽŞĄźĽ×Ľó¤ËźşÇÔ: %s"
-#: lib/psm.c:1700
+#: lib/psm.c:1800
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s źşÇÔ"
-#: lib/query.c:118 lib/rpmts.c:566
+#: lib/query.c:118 lib/rpmts.c:575
#, fuzzy, c-format
msgid "incorrect format: %s\n"
msgstr "ĽŐĽŠĄźĽŢĽĂĽČĂć¤ÎĽ¨ĽéĄź: %s\n"
@@ -2435,7 +2452,7 @@ msgid "package has neither file owner or id lists\n"
msgstr "ĽŃĽĂĽąĄźĽ¸¤ĎĽŐĽĄĽ¤Ľë˝ęÍ­źÔ¤ä id ĽęĽšĽČ¤ň¤É¤Á¤é¤âťý¤Ă¤Ć¤¤¤Ţ¤ť¤ó"
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
-#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
+#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
@@ -3035,76 +3052,76 @@ msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr "Ćɤߚţ¤ŕ¤ż¤á¤Ë %s ¤ňĽŞĄźĽ×Ľó¤Ç¤­¤Ţ¤ť¤ó: %sĄŁ"
-#: lib/rpmsx.c:343
+#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:360
+#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:391
+#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
-#: lib/rpmsx.c:406 lib/rpmsx.c:421
+#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
-#: lib/rpmsx.c:434
+#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
-#: lib/rpmts.c:163
+#: lib/rpmts.c:164
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "%s/packages.rpm ¤ňĽŞĄźĽ×Ľó¤Ç¤­¤Ţ¤ť¤ó\n"
-#: lib/rpmts.c:253
+#: lib/rpmts.c:262
#, fuzzy, c-format
msgid "extra '(' in package label: %s\n"
msgstr "Ěľ¸ú¤ĘĽŃĽĂĽąĄźĽ¸ČÖšć: %s\n"
-#: lib/rpmts.c:271
+#: lib/rpmts.c:280
#, fuzzy, c-format
msgid "missing '(' in package label: %s\n"
msgstr "%s %s ¤Ç '('¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤ó"
-#: lib/rpmts.c:279
+#: lib/rpmts.c:288
#, fuzzy, c-format
msgid "missing ')' in package label: %s\n"
msgstr "Ěľ¸ú¤ĘĽŃĽĂĽąĄźĽ¸ČÖšć: %s\n"
-#: lib/rpmts.c:456
+#: lib/rpmts.c:465
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "%s/packages.rpm ¤ňĽŞĄźĽ×Ľó¤Ç¤­¤Ţ¤ť¤ó\n"
-#: lib/rpmts.c:598
+#: lib/rpmts.c:607
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "šÔĚÜ: %s"
-#: lib/rpmts.c:610
+#: lib/rpmts.c:619
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "Ľ˝ĄźĽš¤Ď: %s\n"
-#: lib/rpmts.c:1098
+#: lib/rpmts.c:1107
#, fuzzy
msgid "mounted filesystems:\n"
msgstr "ĽŢĽŚĽóĽČ¤ľ¤ě¤żĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕ¤ÎĽęĽšĽČ¤ňźčĆŔ¤ˇ¤Ć¤¤¤Ţ¤š\n"
-#: lib/rpmts.c:1100
+#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
-#: lib/rpmts.c:1156
+#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
@@ -3278,7 +3295,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr "˝đĚžĽŃĽĂĽÉ: %d\n"
#. @innercontinue@
-#: lib/transaction.c:891
+#: lib/transaction.c:893
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "ĽÇĽŁĽěĽŻĽČĽę¤Î˝üł°: %s\n"
@@ -3291,7 +3308,7 @@ msgstr "ĽÇĽŁĽěĽŻĽČĽę¤Î˝üł°: %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1004
+#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3304,7 +3321,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1092
+#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3312,7 +3329,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1173
+#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr ""
diff --git a/po/ko.po b/po/ko.po
index c63151d43..d7f04bff1 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.4\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-01-12 16:27+0000\n"
+"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2002-03-04 17:17+0900\n"
"Last-Translator: Jong-Hoon Ryu <redhat4u@netian.com>\n"
"Language-Team: GNU Translation project <ko@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=EUC-KR\n"
"Content-Transfer-Encoding: 8-bit\n"
+"Report-Msgid-Bugs-To: \n"
#: build.c:40
#, fuzzy
@@ -520,74 +520,74 @@ msgstr "ĆÄŔĎŔĚ prefix (%s)żÍ ŔĎÄĄÇĎÁö žĘŔ˝: %s\n"
msgid "File not found: %s\n"
msgstr "ĆÄŔĎŔť ĂŁŔť źö žřŔ˝: %s\n"
-#: build/files.c:1772
+#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
-#: build/files.c:1778
+#: build/files.c:1779
#, fuzzy, c-format
msgid "%s: public key read failed.\n"
msgstr "%s: readLeadŔĚ ˝ÇĆĐÇß˝Ŕ´Ď´Ů\n"
-#: build/files.c:1782 lib/rpmchecksig.c:580
+#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
-#: build/files.c:1789
+#: build/files.c:1790
#, fuzzy, c-format
msgid "%s: *.te policy read failed.\n"
msgstr "%s: readLeadŔĚ ˝ÇĆĐÇß˝Ŕ´Ď´Ů\n"
-#: build/files.c:1840
+#: build/files.c:1842
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "ĆÄŔĎŔş \"/\" ˇÎ ˝ĂŔŰÇŘžßÇÔ: %s\n"
-#: build/files.c:1864
+#: build/files.c:1866
#, c-format
msgid "Glob not permitted: %s\n"
msgstr "GlobŔť ťçżëÇŇ źö žřŔ˝: %s\n"
-#: build/files.c:1881 lib/rpminstall.c:361
+#: build/files.c:1883 lib/rpminstall.c:361
#, c-format
msgid "File not found by glob: %s\n"
msgstr "globŔ¸ˇÎ ĆÄŔĎŔť ĂŁŔť źö žřŔ˝: %s\n"
-#: build/files.c:1941
+#: build/files.c:1943
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "%s ĆÄŔĎŔÇ %%files¸Ś ż­ źö žřŔ˝: %s\n"
-#: build/files.c:1952 build/pack.c:156
+#: build/files.c:1954 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr "Çŕ: %s\n"
-#: build/files.c:2348
+#: build/files.c:2350
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "Ŕ߸řľČ ĆÄŔĎ: %s: %s\n"
-#: build/files.c:2360 build/parsePrep.c:50
+#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Ŕ߸řľČ źŇŔŻŔÚ/ą×ˇě: %s\n"
-#: build/files.c:2404
+#: build/files.c:2406
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "žĆÄŤŔ̺긌 ÇŞ´ÂľĽ ˝ÇĆĐÇÔ%s%s: %s\n"
-#: build/files.c:2427
+#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
-#: build/files.c:2455
+#: build/files.c:2457
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "ĆÄŔĎ Ăł¸Ž Áß: %s-%s-%s\n"
@@ -726,7 +726,7 @@ msgstr "ź­¸í(signature) Çě´ő¸Ś ´Ů˝Ă ŔĐžîżĂ źö žř˝Ŕ´Ď´Ů.\n"
msgid "Could not open %s: %s\n"
msgstr "%s(Ŕť)¸Ś ż­ źö žřŔ˝: %s\n"
-#: build/pack.c:632 lib/psm.c:1420
+#: build/pack.c:632 lib/psm.c:1520
#, c-format
msgid "Unable to write package: %s\n"
msgstr "ĆĐĹ°Áö¸Ś ŔŰźşÇŇ źö žřŔ˝: %s\n"
@@ -756,7 +756,7 @@ msgstr "%sŔÇ payload¸Ś ŔĐŔť źö žřŔ˝: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "%sżĄ payload¸Ś ŔŰźşÇŇ źö žřŔ˝: %s\n"
-#: build/pack.c:725 lib/psm.c:1689
+#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr "ŔŰźş: %s\n"
@@ -1496,47 +1496,52 @@ msgstr "========= ĆĐĹ°ÁöżĄ ľđˇşĹ与°Ą Ć÷ÇԾǞî ŔÖÁö žĘŔ˝:\n"
msgid "%10d %s\n"
msgstr "%9d %s\n"
-#: lib/fsm.c:770
+#: lib/fsm.c:773
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "%s ťçżëŔÚ°Ą Á¸ŔçÇĎÁö žĘ˝Ŕ´Ď´Ů - root¸Ś ŔĚżëÇŐ´Ď´Ů\n"
-#: lib/fsm.c:778
+#: lib/fsm.c:781
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "%s ą×ˇěŔĚ Á¸ŔçÇĎÁö žĘ˝Ŕ´Ď´Ů - root¸Ś ŔĚżëÇŐ´Ď´Ů\n"
-#: lib/fsm.c:1336
-#, c-format
-msgid "%s directory created with perms %04o.\n"
+#: lib/fsm.c:1350
+#, fuzzy, c-format
+msgid "%s directory created with perms %04o, no context.\n"
msgstr "%2$04oŔÇ Çă°ĄąÇ(perms)Ŕť °ĄÁř %1$s ľđˇşĹ与°Ą ťýźşľÇžú˝Ŕ´Ď´Ů.\n"
-#: lib/fsm.c:1635
+#: lib/fsm.c:1354
+#, fuzzy, c-format
+msgid "%s directory created with perms %04o, context %s.\n"
+msgstr "%2$04oŔÇ Çă°ĄąÇ(perms)Ŕť °ĄÁř %1$s ľđˇşĹ与°Ą ťýźşľÇžú˝Ŕ´Ď´Ů.\n"
+
+#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr "Çě´ő ĆÄŔĎ ¸ńˇĎżĄź­ žĆÄŤŔĚşę ĆÄŔĎ %s(Ŕť)¸Ś ĂŁŔť źö žř˝Ŕ´Ď´Ů\n"
-#: lib/fsm.c:1762 lib/fsm.c:1898
+#: lib/fsm.c:1784 lib/fsm.c:1920
#, c-format
msgid "%s saved as %s\n"
msgstr "%s(ŔĚ)°Ą %s(Ŕ¸)ˇÎ ŔúŔĺľÇžú˝Ŕ´Ď´Ů\n"
-#: lib/fsm.c:1925
+#: lib/fsm.c:1947
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s %s ľđˇşĹ与 ťčÁŚżĄ ˝ÇĆĐÇÔ: şó ľđˇşĹ与°Ą žĆ´Ő´Ď´Ů\n"
-#: lib/fsm.c:1931
+#: lib/fsm.c:1953
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s %s ľđˇşĹ与 ťčÁŚżĄ ˝ÇĆĐÇÔ: %s\n"
-#: lib/fsm.c:1946
+#: lib/fsm.c:1968
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s %s ¸ľĹŠ ÇŘÁŚżĄ ˝ÇĆĐÇÔ: %s\n"
-#: lib/fsm.c:1968
+#: lib/fsm.c:1990
#, c-format
msgid "%s created as %s\n"
msgstr "%s(ŔĚ)°Ą %s(Ŕ¸)ˇÎ ťýźşľÇžú˝Ŕ´Ď´Ů\n"
@@ -2221,70 +2226,82 @@ msgstr "źŇ˝ş ĆĐĹ°ÁöżĄ .spec ĆÄŔĎŔĚ Ć÷ÇԾǞî ŔÖÁö žĘ˝Ŕ´Ď´Ů\n"
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr ""
-#: lib/psm.c:554
+#: lib/psm.c:541
+#, c-format
+msgid "setexeccon(%s) fails from context \"%s\": %s\n"
+msgstr ""
+
+#: lib/psm.c:545
+#, c-format
+msgid ""
+"setexeccon(%s) fails from context \"%s\": %s\n"
+"Continuing ...\n"
+msgstr ""
+
+#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:562
+#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:730
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:751
+#: lib/psm.c:851
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr ""
"%s: %s ˝şĹŠ¸łĆ˛¸´(scriptlet)ŔĚ ˝ÇĆĐÇß˝Ŕ´Ď´Ů (%d), %s-%s-%s(Ŕť)¸Ś ťýˇŤÇŐ´Ď´Ů\n"
-#: lib/psm.c:757
+#: lib/psm.c:857
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
"%2$s-%3$s-%4$sŔÇ %1$s ˝şĹŠ¸łĆ˛¸´(scriptlet) ˝ÇÇ࿥ ˝ÇĆĐÇß˝Ŕ´Ď´Ů, Ážˇá ťóȲ %5"
"$d\n"
-#: lib/psm.c:1188
+#: lib/psm.c:1288
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s-%s-%sżĄ %dŔÇ ĆÄŔĎŔĚ ŔÖ˝Ŕ´Ď´Ů, Ĺ×˝şĆŽ = %d\n"
-#: lib/psm.c:1323
+#: lib/psm.c:1423
#, fuzzy, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
"%s: %s ˝şĹŠ¸łĆ˛¸´(scriptlet)ŔĚ ˝ÇĆĐÇß˝Ŕ´Ď´Ů (%d), %s-%s-%s(Ŕť)¸Ś ťýˇŤÇŐ´Ď´Ů\n"
-#: lib/psm.c:1432
+#: lib/psm.c:1532
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "ź­¸í(signature) Çě´ő¸Ś ´Ů˝Ă ŔĐžîżĂ źö žř˝Ŕ´Ď´Ů.\n"
-#: lib/psm.c:1510
+#: lib/psm.c:1610
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "žĆÄŤŔ̺긌 ÇŞ´ÂľĽ ˝ÇĆĐÇÔ%s%s: %s\n"
-#: lib/psm.c:1511
+#: lib/psm.c:1611
msgid " on file "
msgstr " ´ŮŔ˝ ĆÄŔĎŔÇ "
-#: lib/psm.c:1697
+#: lib/psm.c:1797
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%2$s ĆÄŔĎŔÇ %1$s(ŔĚ)°Ą ˝ÇĆĐÇÔ: %3$s\n"
-#: lib/psm.c:1700
+#: lib/psm.c:1800
#, c-format
msgid "%s failed: %s\n"
msgstr "%s(ŔĚ)°Ą ˝ÇĆĐÇÔ: %s\n"
-#: lib/query.c:118 lib/rpmts.c:566
+#: lib/query.c:118 lib/rpmts.c:575
#, c-format
msgid "incorrect format: %s\n"
msgstr "żĂšŮ¸ŁÁö ¸řÇŃ Çü˝Ä: %s\n"
@@ -2333,7 +2350,7 @@ msgid "package has neither file owner or id lists\n"
msgstr "ĆĐĹ°ÁöżĄ ĆÄŔĎ źŇŔŻŔÚ śÇ´Â id ¸ńˇĎŔĚ žř˝Ŕ´Ď´Ů\n"
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
-#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
+#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
@@ -2927,75 +2944,75 @@ msgstr "%s(Ŕť)¸Ś ŔĐŔť źö žř˝Ŕ´Ď´Ů, HOMEŔĚ łĘšŤ ĹŽ´Ď´Ů.\n"
msgid "Unable to open %s for reading: %s.\n"
msgstr "%s(Ŕť)¸Ś ż­ źö žřŔ˝: %s.\n"
-#: lib/rpmsx.c:343
+#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:360
+#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:391
+#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
-#: lib/rpmsx.c:406 lib/rpmsx.c:421
+#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
-#: lib/rpmsx.c:434
+#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
-#: lib/rpmts.c:163
+#: lib/rpmts.c:164
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "%s žČŔÇ ĆĐĹ°Áö ľĽŔĚĹÍşŁŔĚ˝ş¸Ś ż­ źö žř˝Ŕ´Ď´Ů\n"
-#: lib/rpmts.c:253
+#: lib/rpmts.c:262
#, fuzzy, c-format
msgid "extra '(' in package label: %s\n"
msgstr "şÎŔűÇŐÇŃ ĆĐĹ°Áö šřČŁ: %s\n"
-#: lib/rpmts.c:271
+#: lib/rpmts.c:280
#, fuzzy, c-format
msgid "missing '(' in package label: %s\n"
msgstr "%s %sżĄ '(' °Ą žř˝Ŕ´Ď´Ů\n"
-#: lib/rpmts.c:279
+#: lib/rpmts.c:288
#, fuzzy, c-format
msgid "missing ')' in package label: %s\n"
msgstr "şÎŔűÇŐÇŃ ĆĐĹ°Áö šřČŁ: %s\n"
-#: lib/rpmts.c:456
+#: lib/rpmts.c:465
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "%sŔÇ rpm ľĽŔĚĹÍşŁŔĚ˝ş¸Ś ż­ źö žř˝Ŕ´Ď´Ů\n"
-#: lib/rpmts.c:598
+#: lib/rpmts.c:607
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "Çŕ: %s\n"
-#: lib/rpmts.c:610
+#: lib/rpmts.c:619
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "%s(Ŕť)¸Ś şšą¸ÇŐ´Ď´Ů\n"
-#: lib/rpmts.c:1098
+#: lib/rpmts.c:1107
msgid "mounted filesystems:\n"
msgstr ""
-#: lib/rpmts.c:1100
+#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
-#: lib/rpmts.c:1156
+#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
@@ -3164,7 +3181,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr "ź­¸í: size(%d)+pad(%d)\n"
#. @innercontinue@
-#: lib/transaction.c:891
+#: lib/transaction.c:893
#, c-format
msgid "excluding directory %s\n"
msgstr "%s ľđˇşĹ与¸Ś ÁŚżÜ˝ĂĹľ´Ď´Ů\n"
@@ -3177,7 +3194,7 @@ msgstr "%s ľđˇşĹ与¸Ś ÁŚżÜ˝ĂĹľ´Ď´Ů\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1004
+#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3190,7 +3207,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1092
+#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3198,7 +3215,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1173
+#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr ""
diff --git a/po/no.po b/po/no.po
index 4420fdbb1..79d5d7bd4 100644
--- a/po/no.po
+++ b/po/no.po
@@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-01-12 16:27+0000\n"
+"POT-Creation-Date: 2004-02-29 07: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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8-bit\n"
+"Report-Msgid-Bugs-To: \n"
#: build.c:40
#, fuzzy
@@ -520,74 +520,74 @@ msgstr ""
msgid "File not found: %s\n"
msgstr "Fil ikke funnet: %s\n"
-#: build/files.c:1772
+#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
-#: build/files.c:1778
+#: build/files.c:1779
#, fuzzy, c-format
msgid "%s: public key read failed.\n"
msgstr "%s: readLead feilet\n"
-#: build/files.c:1782 lib/rpmchecksig.c:580
+#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
-#: build/files.c:1789
+#: build/files.c:1790
#, fuzzy, c-format
msgid "%s: *.te policy read failed.\n"
msgstr "%s: readLead feilet\n"
-#: build/files.c:1840
+#: build/files.c:1842
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr ""
-#: build/files.c:1864
+#: build/files.c:1866
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "linje %d: Filnavn ikke tillatt: %s\n"
-#: build/files.c:1881 lib/rpminstall.c:361
+#: build/files.c:1883 lib/rpminstall.c:361
#, c-format
msgid "File not found by glob: %s\n"
msgstr ""
-#: build/files.c:1941
+#: build/files.c:1943
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "Kunne ikke ĺpne spec fil %s: %s\n"
-#: build/files.c:1952 build/pack.c:156
+#: build/files.c:1954 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr "Installerer %s\n"
-#: build/files.c:2348
+#: build/files.c:2350
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "Ugyldig fil %s: %s\n"
-#: build/files.c:2360 build/parsePrep.c:50
+#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Ugyldig eier/gruppe: %s\n"
-#: build/files.c:2404
+#: build/files.c:2406
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "ingen pakke utlřser %s\n"
-#: build/files.c:2427
+#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
-#: build/files.c:2455
+#: build/files.c:2457
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@@ -730,7 +730,7 @@ msgstr "Kunne ikke ĺpne spec fil %s: %s\n"
msgid "Could not open %s: %s\n"
msgstr "Kunne ikke ĺpne %s: %s\n"
-#: build/pack.c:632 lib/psm.c:1420
+#: build/pack.c:632 lib/psm.c:1520
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Kunne ikke skrive pakke: %s\n"
@@ -760,7 +760,7 @@ msgstr "Kunne ikke lese \"payload\" fra %s: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "Kunne ikke skrive \"payload\" til %s: %s\n"
-#: build/pack.c:725 lib/psm.c:1689
+#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrev: %s\n"
@@ -1493,47 +1493,52 @@ msgstr ""
msgid "%10d %s\n"
msgstr "%9d %s\n"
-#: lib/fsm.c:770
+#: lib/fsm.c:773
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/fsm.c:778
+#: lib/fsm.c:781
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
-#: lib/fsm.c:1336
+#: lib/fsm.c:1350
#, c-format
-msgid "%s directory created with perms %04o.\n"
+msgid "%s directory created with perms %04o, no context.\n"
msgstr ""
-#: lib/fsm.c:1635
+#: lib/fsm.c:1354
+#, c-format
+msgid "%s directory created with perms %04o, context %s.\n"
+msgstr ""
+
+#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1762 lib/fsm.c:1898
+#: lib/fsm.c:1784 lib/fsm.c:1920
#, c-format
msgid "%s saved as %s\n"
msgstr "%s lagret som %s\n"
-#: lib/fsm.c:1925
+#: lib/fsm.c:1947
#, 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:1931
+#: lib/fsm.c:1953
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s rmdir av %s feilet: %s\n"
-#: lib/fsm.c:1946
+#: lib/fsm.c:1968
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s unlink av %s feilet: %s\n"
-#: lib/fsm.c:1968
+#: lib/fsm.c:1990
#, c-format
msgid "%s created as %s\n"
msgstr "%s opprettet som %s\n"
@@ -2211,66 +2216,78 @@ msgstr "kildepakke inneholder ikke en .spec-fil\n"
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr ""
-#: lib/psm.c:554
+#: lib/psm.c:541
+#, c-format
+msgid "setexeccon(%s) fails from context \"%s\": %s\n"
+msgstr ""
+
+#: lib/psm.c:545
+#, c-format
+msgid ""
+"setexeccon(%s) fails from context \"%s\": %s\n"
+"Continuing ...\n"
+msgstr ""
+
+#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:562
+#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:730
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:751
+#: lib/psm.c:851
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr ""
-#: lib/psm.c:757
+#: lib/psm.c:857
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
-#: lib/psm.c:1188
+#: lib/psm.c:1288
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
-#: lib/psm.c:1323
+#: lib/psm.c:1423
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1432
+#: lib/psm.c:1532
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Kunne ikke ĺpne spec fil %s: %s\n"
-#: lib/psm.c:1510
+#: lib/psm.c:1610
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
-#: lib/psm.c:1511
+#: lib/psm.c:1611
msgid " on file "
msgstr ""
-#: lib/psm.c:1697
+#: lib/psm.c:1797
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "klarte ikke ĺ ĺpne %s: %s\n"
-#: lib/psm.c:1700
+#: lib/psm.c:1800
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s feilet\n"
-#: lib/query.c:118 lib/rpmts.c:566
+#: lib/query.c:118 lib/rpmts.c:575
#, c-format
msgid "incorrect format: %s\n"
msgstr "ukorrekt format: %s\n"
@@ -2319,7 +2336,7 @@ msgid "package has neither file owner or id lists\n"
msgstr "pakken har verken fileier eller id-lister\n"
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
-#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
+#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
@@ -2903,76 +2920,76 @@ msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr "Kunne ikke ĺpne spec fil %s: %s\n"
-#: lib/rpmsx.c:343
+#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:360
+#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:391
+#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
-#: lib/rpmsx.c:406 lib/rpmsx.c:421
+#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
-#: lib/rpmsx.c:434
+#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
-#: lib/rpmts.c:163
+#: lib/rpmts.c:164
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "kan ikke ĺpne pakkedatabase i %s\n"
-#: lib/rpmts.c:253
+#: lib/rpmts.c:262
#, fuzzy, c-format
msgid "extra '(' in package label: %s\n"
msgstr "ugyldig pakkenummer: %s\n"
-#: lib/rpmts.c:271
+#: lib/rpmts.c:280
#, fuzzy, c-format
msgid "missing '(' in package label: %s\n"
msgstr "Mangler '(' i %s %s\n"
-#: lib/rpmts.c:279
+#: lib/rpmts.c:288
#, fuzzy, c-format
msgid "missing ')' in package label: %s\n"
msgstr "ugyldig pakkenummer: %s\n"
-#: lib/rpmts.c:456
+#: lib/rpmts.c:465
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "kan ikke ĺpne database i %s\n"
-#: lib/rpmts.c:598
+#: lib/rpmts.c:607
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "Installerer %s\n"
-#: lib/rpmts.c:610
+#: lib/rpmts.c:619
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "Henter %s\n"
-#: lib/rpmts.c:1098
+#: lib/rpmts.c:1107
#, fuzzy
msgid "mounted filesystems:\n"
msgstr "henter liste over monterte filsystemer\n"
-#: lib/rpmts.c:1100
+#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
-#: lib/rpmts.c:1156
+#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
@@ -3140,7 +3157,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:891
+#: lib/transaction.c:893
#, c-format
msgid "excluding directory %s\n"
msgstr "ekskluderer katalog %s\n"
@@ -3153,7 +3170,7 @@ msgstr "ekskluderer katalog %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1004
+#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3166,7 +3183,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1092
+#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3174,7 +3191,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1173
+#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr ""
diff --git a/po/pl.po b/po/pl.po
index 162b7fba7..af091e287 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -9,14 +9,14 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.3-20030515\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-01-12 16:27+0000\n"
+"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2003-06-08 22:42+0200\n"
"Last-Translator: Jakub Bogusz <qboosh@pld.org.pl>\n"
"Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8-bit\n"
+"Report-Msgid-Bugs-To: \n"
#: build.c:40
msgid "Failed build dependencies:\n"
@@ -530,67 +530,67 @@ msgstr "Plik nie zgadza się z prefiksem (%s): %s\n"
msgid "File not found: %s\n"
msgstr "Nie znaleziono pliku: %s\n"
-#: build/files.c:1772
+#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
-#: build/files.c:1778
+#: build/files.c:1779
#, c-format
msgid "%s: public key read failed.\n"
msgstr "%s: odczyt klucza publicznego nie powiódł się.\n"
-#: build/files.c:1782 lib/rpmchecksig.c:580
+#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr "%s: nie jest opakowanym kluczem publicznym.\n"
-#: build/files.c:1789
+#: build/files.c:1790
#, fuzzy, c-format
msgid "%s: *.te policy read failed.\n"
msgstr "%s: odczyt klucza publicznego nie powiódł się.\n"
-#: build/files.c:1840
+#: build/files.c:1842
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "Plik musi się zaczynać od \"/\": %s\n"
-#: build/files.c:1864
+#: build/files.c:1866
#, c-format
msgid "Glob not permitted: %s\n"
msgstr "Glob niedozwolony: %s\n"
-#: build/files.c:1881 lib/rpminstall.c:361
+#: build/files.c:1883 lib/rpminstall.c:361
#, c-format
msgid "File not found by glob: %s\n"
msgstr "Nie znaleziono pliku poprzez glob: %s\n"
-#: build/files.c:1941
+#: build/files.c:1943
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "Nie można otworzyć pliku %s dla %%files: %s\n"
-#: build/files.c:1952 build/pack.c:156
+#: build/files.c:1954 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr "linia: %s\n"
-#: build/files.c:2348
+#: build/files.c:2350
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "Błędny plik: %s: %s\n"
-#: build/files.c:2360 build/parsePrep.c:50
+#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Błędny użytkownik/grupa: %s\n"
-#: build/files.c:2404
+#: build/files.c:2406
#, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "Szukanie niespakietowanych plików: %s\n"
-#: build/files.c:2427
+#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
@@ -599,7 +599,7 @@ msgstr ""
"Znaleziono zainstalowane (ale niespakietowane) pliki:\n"
"%s"
-#: build/files.c:2455
+#: build/files.c:2457
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Przetwarzanie plików: %s-%s-%s\n"
@@ -738,7 +738,7 @@ msgstr "Nie można ponownie odczytać nagłówka sygnatury.\n"
msgid "Could not open %s: %s\n"
msgstr "Nie można otworzyć %s: %s\n"
-#: build/pack.c:632 lib/psm.c:1420
+#: build/pack.c:632 lib/psm.c:1520
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Nie można zapisać pakietu: %s\n"
@@ -768,7 +768,7 @@ msgstr "Nie można odczytać danych z %s: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "Nie można zapisać danych do %s: %s\n"
-#: build/pack.c:725 lib/psm.c:1689
+#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapisano: %s\n"
@@ -1498,47 +1498,52 @@ msgstr "========== Katalogi nie włączone explicite do pakietu:\n"
msgid "%10d %s\n"
msgstr "%10d %s\n"
-#: lib/fsm.c:770
+#: lib/fsm.c:773
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "użytkownik %s nie istnieje - użyto konta root\n"
-#: lib/fsm.c:778
+#: lib/fsm.c:781
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "grupa %s nie istnieje - użyto grupy root\n"
-#: lib/fsm.c:1336
-#, c-format
-msgid "%s directory created with perms %04o.\n"
+#: lib/fsm.c:1350
+#, fuzzy, c-format
+msgid "%s directory created with perms %04o, no context.\n"
msgstr "katalog %s utworzony z uprawnieniami %04o.\n"
-#: lib/fsm.c:1635
+#: lib/fsm.c:1354
+#, fuzzy, c-format
+msgid "%s directory created with perms %04o, context %s.\n"
+msgstr "katalog %s utworzony z uprawnieniami %04o.\n"
+
+#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr "plik archiwum %s nie znaleziony na liście plików w nagłówku\n"
-#: lib/fsm.c:1762 lib/fsm.c:1898
+#: lib/fsm.c:1784 lib/fsm.c:1920
#, c-format
msgid "%s saved as %s\n"
msgstr "%s zapisano jako %s\n"
-#: lib/fsm.c:1925
+#: lib/fsm.c:1947
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s rmdir %s nie powiodło się: katalog nie jest pusty\n"
-#: lib/fsm.c:1931
+#: lib/fsm.c:1953
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s rmdir %s nie powiodło się: %s\n"
-#: lib/fsm.c:1946
+#: lib/fsm.c:1968
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s unlink %s nie powiodło się: %s\n"
-#: lib/fsm.c:1968
+#: lib/fsm.c:1990
#, c-format
msgid "%s created as %s\n"
msgstr "%s utworzony jako %s\n"
@@ -2198,65 +2203,77 @@ msgstr "pakiet źródłowy nie zawiera pliku .spec\n"
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
-#: lib/psm.c:554
+#: lib/psm.c:541
+#, c-format
+msgid "setexeccon(%s) fails from context \"%s\": %s\n"
+msgstr ""
+
+#: lib/psm.c:545
+#, c-format
+msgid ""
+"setexeccon(%s) fails from context \"%s\": %s\n"
+"Continuing ...\n"
+msgstr ""
+
+#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr "%s: %s(%s-%s-%s) pomijanie nadmiarowego \"%s\".\n"
-#: lib/psm.c:562
+#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr "%s: %s(%s-%s-%s) %ssynchroniczny start skryptu\n"
-#: lib/psm.c:730
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
-#: lib/psm.c:751
+#: lib/psm.c:851
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "skrypt %s(%s-%s-%s) nie powiódł się, waitpid(%d) rc %d: %s\n"
-#: lib/psm.c:757
+#: lib/psm.c:857
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "skrypt %s(%s-%s-%s) nie powiódł się, status wyjścia %d\n"
-#: lib/psm.c:1188
+#: lib/psm.c:1288
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s ma %d plików, test = %d\n"
-#: lib/psm.c:1323
+#: lib/psm.c:1423
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr "%s: skrypt %s nie powiódł się (%d), pomijanie %s\n"
-#: lib/psm.c:1432
+#: lib/psm.c:1532
msgid "Unable to reload signature header\n"
msgstr "Nie można ponownie odczytać nagłówka sygnatury\n"
-#: lib/psm.c:1510
+#: lib/psm.c:1610
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "rozpakowanie archiwum nie powiodło się%s%s: %s\n"
-#: lib/psm.c:1511
+#: lib/psm.c:1611
msgid " on file "
msgstr " na pliku "
-#: lib/psm.c:1697
+#: lib/psm.c:1797
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s nie powiódł się na pliku %s: %s\n"
-#: lib/psm.c:1700
+#: lib/psm.c:1800
#, c-format
msgid "%s failed: %s\n"
msgstr "%s nie powiodło się: %s\n"
-#: lib/query.c:118 lib/rpmts.c:566
+#: lib/query.c:118 lib/rpmts.c:575
#, c-format
msgid "incorrect format: %s\n"
msgstr "błędny format: %s\n"
@@ -2304,7 +2321,7 @@ msgid "package has neither file owner or id lists\n"
msgstr "pakiet nie ma list właścicieli ani id plików\n"
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
-#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
+#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
@@ -2887,75 +2904,75 @@ msgstr "Nie można odczytać %s, HOME jest zbyt duże.\n"
msgid "Unable to open %s for reading: %s.\n"
msgstr "Nie można otworzyć %s do odczytu: %s.\n"
-#: lib/rpmsx.c:343
+#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:360
+#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:391
+#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
-#: lib/rpmsx.c:406 lib/rpmsx.c:421
+#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
-#: lib/rpmsx.c:434
+#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
-#: lib/rpmts.c:163
+#: lib/rpmts.c:164
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "nie można otworzyć bazy danych Packages w %s\n"
-#: lib/rpmts.c:253
+#: lib/rpmts.c:262
#, fuzzy, c-format
msgid "extra '(' in package label: %s\n"
msgstr "błędny numer pakietu: %s\n"
-#: lib/rpmts.c:271
+#: lib/rpmts.c:280
#, fuzzy, c-format
msgid "missing '(' in package label: %s\n"
msgstr "Brak '(' w %s %s\n"
-#: lib/rpmts.c:279
+#: lib/rpmts.c:288
#, fuzzy, c-format
msgid "missing ')' in package label: %s\n"
msgstr "błędny numer pakietu: %s\n"
-#: lib/rpmts.c:456
+#: lib/rpmts.c:465
#, c-format
msgid "cannot open Solve database in %s\n"
msgstr "nie można otworzyć bazy danych Solve w %s\n"
-#: lib/rpmts.c:598
+#: lib/rpmts.c:607
#, c-format
msgid "Adding: %s\n"
msgstr "Dodawane: %s\n"
-#: lib/rpmts.c:610
+#: lib/rpmts.c:619
#, c-format
msgid "Suggesting: %s\n"
msgstr "Sugerowane: %s\n"
-#: lib/rpmts.c:1098
+#: lib/rpmts.c:1107
msgid "mounted filesystems:\n"
msgstr "podmontowane systemy plików:\n"
-#: lib/rpmts.c:1100
+#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr " i urz bloków bl.wolnych i.wolnych punkt montowania\n"
-#: lib/rpmts.c:1156
+#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr "%5d 0x%04x %5u %12ld %12ld %s\n"
@@ -3120,7 +3137,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr "Sygnatura: NIEZNANA (%d)\n"
#. @innercontinue@
-#: lib/transaction.c:891
+#: lib/transaction.c:893
#, c-format
msgid "excluding directory %s\n"
msgstr "wyłączanie katalogu %s\n"
@@ -3133,7 +3150,7 @@ msgstr "wyłączanie katalogu %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1004
+#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr "sprawdzanie poprawności %d elementów\n"
@@ -3146,7 +3163,7 @@ msgstr "sprawdzanie poprawności %d elementów\n"
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1092
+#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr "obliczanie %d odcisków plików\n"
@@ -3154,7 +3171,7 @@ msgstr "obliczanie %d odcisków plików\n"
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1173
+#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr "obliczanie dyspozycji plików\n"
diff --git a/po/pt.po b/po/pt.po
index 7e3a976dd..4e8a59811 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-01-12 16:27+0000\n"
+"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2002-02-14 10:51+0000\n"
"Last-Translator: José Nuno Coelho Sanarra Pires <jncp@rnl.ist.utl.pt>\n"
"Language-Team: pt <morais@kde.org\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
+"Report-Msgid-Bugs-To: \n"
#: build.c:40
#, fuzzy
@@ -528,74 +528,74 @@ msgstr "O ficheiro năo corresponde ao prefixo (%s): %s\n"
msgid "File not found: %s\n"
msgstr "Ficheiro năo encontrado: %s\n"
-#: build/files.c:1772
+#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
-#: build/files.c:1778
+#: build/files.c:1779
#, fuzzy, c-format
msgid "%s: public key read failed.\n"
msgstr ":%s: o readLead falhou\n"
-#: build/files.c:1782 lib/rpmchecksig.c:580
+#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
-#: build/files.c:1789
+#: build/files.c:1790
#, fuzzy, c-format
msgid "%s: *.te policy read failed.\n"
msgstr ":%s: o readLead falhou\n"
-#: build/files.c:1840
+#: build/files.c:1842
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "O ficheiro precisa de começar por \"/\": %s\n"
-#: build/files.c:1864
+#: build/files.c:1866
#, c-format
msgid "Glob not permitted: %s\n"
msgstr "Glob năo permitido: %s\n"
-#: build/files.c:1881 lib/rpminstall.c:361
+#: build/files.c:1883 lib/rpminstall.c:361
#, c-format
msgid "File not found by glob: %s\n"
msgstr "Ficheiro năo encontrado pelo glob: %s\n"
-#: build/files.c:1941
+#: build/files.c:1943
#, 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:1952 build/pack.c:156
+#: build/files.c:1954 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr "linha: %s\n"
-#: build/files.c:2348
+#: build/files.c:2350
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "Ficheiro inválido: %s: %s\n"
-#: build/files.c:2360 build/parsePrep.c:50
+#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Dono/grupo inválido: %s\n"
-#: build/files.c:2404
+#: build/files.c:2406
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "a abertura do pacote falhou%s%s: %s\n"
-#: build/files.c:2427
+#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
-#: build/files.c:2455
+#: build/files.c:2457
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "A processar os ficheiros: %s-%s-%s\n"
@@ -736,7 +736,7 @@ msgstr "Năo consegui reler o cabeçalho do assinatura.\n"
msgid "Could not open %s: %s\n"
msgstr "Năo consigo aceder ao %s: %s\n"
-#: build/pack.c:632 lib/psm.c:1420
+#: build/pack.c:632 lib/psm.c:1520
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Năo consegui gravar o pacote: %s\n"
@@ -766,7 +766,7 @@ msgstr "Năo consegui ler o conteúdo de %s: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "Năo consegui escrever o conteúdo de %s: %s\n"
-#: build/pack.c:725 lib/psm.c:1689
+#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr "Gravei: %s\n"
@@ -1510,49 +1510,54 @@ msgstr "========= Directorias năo incluidas explicitamente no pacote:\n"
msgid "%10d %s\n"
msgstr "%9d %s\n"
-#: lib/fsm.c:770
+#: lib/fsm.c:773
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "o utilizador %s năo existe - a usar o root\n"
-#: lib/fsm.c:778
+#: lib/fsm.c:781
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "o grupo %s năo existe - a usar o root\n"
-#: lib/fsm.c:1336
-#, c-format
-msgid "%s directory created with perms %04o.\n"
+#: lib/fsm.c:1350
+#, fuzzy, c-format
+msgid "%s directory created with perms %04o, no context.\n"
msgstr "directoria %s criada com as permissőes %04o.\n"
-#: lib/fsm.c:1635
+#: lib/fsm.c:1354
+#, fuzzy, c-format
+msgid "%s directory created with perms %04o, context %s.\n"
+msgstr "directoria %s criada com as permissőes %04o.\n"
+
+#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
"o ficheiro de arquivo %s năo foi encontrado na lista de ficheiros do "
"cabeçalho\n"
-#: lib/fsm.c:1762 lib/fsm.c:1898
+#: lib/fsm.c:1784 lib/fsm.c:1920
#, c-format
msgid "%s saved as %s\n"
msgstr "%s gravado como %s\n"
-#: lib/fsm.c:1925
+#: lib/fsm.c:1947
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s rmdir de %s falhou: Directoria năo está vazia\n"
-#: lib/fsm.c:1931
+#: lib/fsm.c:1953
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s rmdir de %s falhou: %s\n"
-#: lib/fsm.c:1946
+#: lib/fsm.c:1968
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s unlink de %s falhou: %s\n"
-#: lib/fsm.c:1968
+#: lib/fsm.c:1990
#, c-format
msgid "%s created as %s\n"
msgstr "%s criado como %s\n"
@@ -2235,67 +2240,79 @@ msgstr "o pacote de código-fonte năo contem um ficheiro .spec\n"
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr ""
-#: lib/psm.c:554
+#: lib/psm.c:541
+#, c-format
+msgid "setexeccon(%s) fails from context \"%s\": %s\n"
+msgstr ""
+
+#: lib/psm.c:545
+#, c-format
+msgid ""
+"setexeccon(%s) fails from context \"%s\": %s\n"
+"Continuing ...\n"
+msgstr ""
+
+#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:562
+#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:730
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:751
+#: lib/psm.c:851
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "%s: %s script falhou (%d), a saltar %s-%s-%s\n"
-#: lib/psm.c:757
+#: lib/psm.c:857
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
"a execuçăo do 'scriptlet' %s do %s-%s-%s falhou com código de erro %d\n"
-#: lib/psm.c:1188
+#: lib/psm.c:1288
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s-%s-%s tem %d ficheiros, teste = %d\n"
-#: lib/psm.c:1323
+#: lib/psm.c:1423
#, fuzzy, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr "%s: %s script falhou (%d), a saltar %s-%s-%s\n"
-#: lib/psm.c:1432
+#: lib/psm.c:1532
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Năo consegui reler o cabeçalho do assinatura.\n"
-#: lib/psm.c:1510
+#: lib/psm.c:1610
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "a abertura do pacote falhou%s%s: %s\n"
-#: lib/psm.c:1511
+#: lib/psm.c:1611
msgid " on file "
msgstr " no ficheiro "
-#: lib/psm.c:1697
+#: lib/psm.c:1797
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s falhou no ficheiro %s: %s\n"
-#: lib/psm.c:1700
+#: lib/psm.c:1800
#, c-format
msgid "%s failed: %s\n"
msgstr "%s falhou: %s\n"
-#: lib/query.c:118 lib/rpmts.c:566
+#: lib/query.c:118 lib/rpmts.c:575
#, c-format
msgid "incorrect format: %s\n"
msgstr "formato incorrecto: %s\n"
@@ -2344,7 +2361,7 @@ msgid "package has neither file owner or id lists\n"
msgstr "o pacote nem tem um dono do ficheiro ou as listas de IDs\n"
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
-#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
+#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
@@ -2937,75 +2954,75 @@ msgstr "Năo consigo ler o %s, a HOME é demasiado grande.\n"
msgid "Unable to open %s for reading: %s.\n"
msgstr "Năo consegui abrir o %s para leitura: %s.\n"
-#: lib/rpmsx.c:343
+#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:360
+#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:391
+#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
-#: lib/rpmsx.c:406 lib/rpmsx.c:421
+#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
-#: lib/rpmsx.c:434
+#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
-#: lib/rpmts.c:163
+#: lib/rpmts.c:164
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "năo consigo abrir a base de dados Packages em %s\n"
-#: lib/rpmts.c:253
+#: lib/rpmts.c:262
#, fuzzy, c-format
msgid "extra '(' in package label: %s\n"
msgstr "número de pacote inválido: %s\n"
-#: lib/rpmts.c:271
+#: lib/rpmts.c:280
#, fuzzy, c-format
msgid "missing '(' in package label: %s\n"
msgstr "Falta um '(' em %s %s\n"
-#: lib/rpmts.c:279
+#: lib/rpmts.c:288
#, fuzzy, c-format
msgid "missing ')' in package label: %s\n"
msgstr "número de pacote inválido: %s\n"
-#: lib/rpmts.c:456
+#: lib/rpmts.c:465
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "năo consigo a base de dados do RPM em %s\n"
-#: lib/rpmts.c:598
+#: lib/rpmts.c:607
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "linha: %s\n"
-#: lib/rpmts.c:610
+#: lib/rpmts.c:619
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "A obter o %s\n"
-#: lib/rpmts.c:1098
+#: lib/rpmts.c:1107
msgid "mounted filesystems:\n"
msgstr ""
-#: lib/rpmts.c:1100
+#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
-#: lib/rpmts.c:1156
+#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
@@ -3175,7 +3192,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr "Assinatura: tamanho(%d)+pad(%d)\n"
#. @innercontinue@
-#: lib/transaction.c:891
+#: lib/transaction.c:893
#, c-format
msgid "excluding directory %s\n"
msgstr "a excluir a directoria %s\n"
@@ -3188,7 +3205,7 @@ msgstr "a excluir a directoria %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1004
+#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3201,7 +3218,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1092
+#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3209,7 +3226,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1173
+#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr ""
diff --git a/po/pt_BR.po b/po/pt_BR.po
index f0121afd6..d89ee14cc 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -4,11 +4,11 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-01-12 16:27+0000\n"
+"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8-bit\n"
+"Report-Msgid-Bugs-To: \n"
#: build.c:40
#, fuzzy
@@ -576,80 +576,80 @@ msgstr "No consegui ler o arquivo spec de %s\n"
msgid "File not found: %s\n"
msgstr "no foi passado pacote para desinstalao"
-#: build/files.c:1772
+#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
# , c-format
-#: build/files.c:1778
+#: build/files.c:1779
#, fuzzy, c-format
msgid "%s: public key read failed.\n"
msgstr "No consegui abrir: %s\n"
-#: build/files.c:1782 lib/rpmchecksig.c:580
+#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
# , c-format
-#: build/files.c:1789
+#: build/files.c:1790
#, fuzzy, c-format
msgid "%s: *.te policy read failed.\n"
msgstr "No consegui abrir: %s\n"
-#: build/files.c:1840
+#: build/files.c:1842
#, fuzzy, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "argumentos para o --dbpath devem comear com uma /"
# , c-format
-#: build/files.c:1864
+#: build/files.c:1866
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "No consegui abrir: %s\n"
-#: build/files.c:1881 lib/rpminstall.c:361
+#: build/files.c:1883 lib/rpminstall.c:361
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "no foi passado pacote para desinstalao"
# , c-format
-#: build/files.c:1941
+#: build/files.c:1943
#, fuzzy, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
-#: build/files.c:1952 build/pack.c:156
+#: build/files.c:1954 build/pack.c:156
#, fuzzy, c-format
msgid "line: %s\n"
msgstr "No consegui ler o arquivo spec de %s\n"
# , c-format
-#: build/files.c:2348
+#: build/files.c:2350
#, fuzzy, c-format
msgid "Bad file: %s: %s\n"
msgstr "No consegui ler o arquivo spec de %s\n"
-#: build/files.c:2360 build/parsePrep.c:50
+#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:2404
+#: build/files.c:2406
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "instale pacote"
-#: build/files.c:2427
+#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
-#: build/files.c:2455
+#: build/files.c:2457
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@@ -811,7 +811,7 @@ msgid "Could not open %s: %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
-#: build/pack.c:632 lib/psm.c:1420
+#: build/pack.c:632 lib/psm.c:1520
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "No consegui abrir: %s\n"
@@ -846,7 +846,7 @@ msgstr "No consegui abrir: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "No consegui abrir: %s\n"
-#: build/pack.c:725 lib/psm.c:1689
+#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@@ -1650,50 +1650,55 @@ msgstr ""
msgid "%10d %s\n"
msgstr "No consegui ler o arquivo spec de %s\n"
-#: lib/fsm.c:770
+#: lib/fsm.c:773
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/fsm.c:778
+#: lib/fsm.c:781
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
-#: lib/fsm.c:1336
+#: lib/fsm.c:1350
#, c-format
-msgid "%s directory created with perms %04o.\n"
+msgid "%s directory created with perms %04o, no context.\n"
msgstr ""
-#: lib/fsm.c:1635
+#: lib/fsm.c:1354
+#, c-format
+msgid "%s directory created with perms %04o, context %s.\n"
+msgstr ""
+
+#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
# , c-format
-#: lib/fsm.c:1762 lib/fsm.c:1898
+#: lib/fsm.c:1784 lib/fsm.c:1920
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
-#: lib/fsm.c:1925
+#: lib/fsm.c:1947
#, fuzzy, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "No consegui abrir: %s\n"
-#: lib/fsm.c:1931
+#: lib/fsm.c:1953
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "Construo falhou.\n"
-#: lib/fsm.c:1946
+#: lib/fsm.c:1968
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "Construo falhou.\n"
# , c-format
-#: lib/fsm.c:1968
+#: lib/fsm.c:1990
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "No consegui abrir: %s\n"
@@ -2420,68 +2425,80 @@ msgstr "pesquise o pacote ao qual <arquivo> pertence"
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr ""
-#: lib/psm.c:554
+#: lib/psm.c:541
+#, c-format
+msgid "setexeccon(%s) fails from context \"%s\": %s\n"
+msgstr ""
+
+#: lib/psm.c:545
+#, c-format
+msgid ""
+"setexeccon(%s) fails from context \"%s\": %s\n"
+"Continuing ...\n"
+msgstr ""
+
+#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:562
+#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:730
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:751
+#: lib/psm.c:851
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr ""
-#: lib/psm.c:757
+#: lib/psm.c:857
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
-#: lib/psm.c:1188
+#: lib/psm.c:1288
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "no foi passado pacote para instalao"
-#: lib/psm.c:1323
+#: lib/psm.c:1423
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
# , c-format
-#: lib/psm.c:1432
+#: lib/psm.c:1532
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "No consegui abrir: %s\n"
-#: lib/psm.c:1510
+#: lib/psm.c:1610
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "Construo falhou.\n"
-#: lib/psm.c:1511
+#: lib/psm.c:1611
msgid " on file "
msgstr ""
# , c-format
-#: lib/psm.c:1697
+#: lib/psm.c:1797
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "No consegui abrir: %s\n"
-#: lib/psm.c:1700
+#: lib/psm.c:1800
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "Construo falhou.\n"
-#: lib/query.c:118 lib/rpmts.c:566
+#: lib/query.c:118 lib/rpmts.c:575
#, c-format
msgid "incorrect format: %s\n"
msgstr ""
@@ -2532,7 +2549,7 @@ msgid "package has neither file owner or id lists\n"
msgstr "no foi passado pacote para instalao"
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
-#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
+#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
@@ -3166,60 +3183,60 @@ msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr "No consegui abrir: %s\n"
-#: lib/rpmsx.c:343
+#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:360
+#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:391
+#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
-#: lib/rpmsx.c:406 lib/rpmsx.c:421
+#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
-#: lib/rpmsx.c:434
+#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
# , c-format
-#: lib/rpmts.c:163
+#: lib/rpmts.c:164
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "No consegui abrir: %s\n"
-#: lib/rpmts.c:253
+#: lib/rpmts.c:262
#, c-format
msgid "extra '(' in package label: %s\n"
msgstr ""
-#: lib/rpmts.c:271
+#: lib/rpmts.c:280
#, fuzzy, c-format
msgid "missing '(' in package label: %s\n"
msgstr "instale pacote"
-#: lib/rpmts.c:279
+#: lib/rpmts.c:288
#, fuzzy, c-format
msgid "missing ')' in package label: %s\n"
msgstr "instale pacote"
# , c-format
-#: lib/rpmts.c:456
+#: lib/rpmts.c:465
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
-#: lib/rpmts.c:598
+#: lib/rpmts.c:607
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "No consegui ler o arquivo spec de %s\n"
@@ -3232,20 +3249,20 @@ msgstr "No consegui ler o arquivo spec de %s\n"
# "Content-Type: text/plain; charset=ISO-8859-1\n"
# "Content-Transfer-Encoding: 8-bit\n"
# , c-format
-#: lib/rpmts.c:610
+#: lib/rpmts.c:619
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "RPM verso %s\n"
-#: lib/rpmts.c:1098
+#: lib/rpmts.c:1107
msgid "mounted filesystems:\n"
msgstr ""
-#: lib/rpmts.c:1100
+#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
-#: lib/rpmts.c:1156
+#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
@@ -3427,7 +3444,7 @@ msgstr ""
# "Content-Transfer-Encoding: 8-bit\n"
# , c-format
#. @innercontinue@
-#: lib/transaction.c:891
+#: lib/transaction.c:893
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "RPM verso %s\n"
@@ -3440,7 +3457,7 @@ msgstr "RPM verso %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1004
+#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3453,7 +3470,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1092
+#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3461,7 +3478,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1173
+#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr ""
diff --git a/po/ro.po b/po/ro.po
index 2b8ba783b..bd23fb254 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-01-12 16:27+0000\n"
+"POT-Creation-Date: 2004-02-29 07: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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8-bit\n"
+"Report-Msgid-Bugs-To: \n"
#: build.c:40
msgid "Failed build dependencies:\n"
@@ -506,74 +506,74 @@ msgstr ""
msgid "File not found: %s\n"
msgstr ""
-#: build/files.c:1772
+#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
-#: build/files.c:1778
+#: build/files.c:1779
#, c-format
msgid "%s: public key read failed.\n"
msgstr ""
-#: build/files.c:1782 lib/rpmchecksig.c:580
+#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
-#: build/files.c:1789
+#: build/files.c:1790
#, c-format
msgid "%s: *.te policy read failed.\n"
msgstr ""
-#: build/files.c:1840
+#: build/files.c:1842
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr ""
-#: build/files.c:1864
+#: build/files.c:1866
#, c-format
msgid "Glob not permitted: %s\n"
msgstr ""
-#: build/files.c:1881 lib/rpminstall.c:361
+#: build/files.c:1883 lib/rpminstall.c:361
#, c-format
msgid "File not found by glob: %s\n"
msgstr ""
-#: build/files.c:1941
+#: build/files.c:1943
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr ""
-#: build/files.c:1952 build/pack.c:156
+#: build/files.c:1954 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr ""
-#: build/files.c:2348
+#: build/files.c:2350
#, c-format
msgid "Bad file: %s: %s\n"
msgstr ""
-#: build/files.c:2360 build/parsePrep.c:50
+#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:2404
+#: build/files.c:2406
#, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr ""
-#: build/files.c:2427
+#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
-#: build/files.c:2455
+#: build/files.c:2457
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@@ -712,7 +712,7 @@ msgstr ""
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:632 lib/psm.c:1420
+#: build/pack.c:632 lib/psm.c:1520
#, c-format
msgid "Unable to write package: %s\n"
msgstr ""
@@ -742,7 +742,7 @@ msgstr ""
msgid "Unable to write payload to %s: %s\n"
msgstr ""
-#: build/pack.c:725 lib/psm.c:1689
+#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@@ -1465,47 +1465,52 @@ msgstr ""
msgid "%10d %s\n"
msgstr ""
-#: lib/fsm.c:770
+#: lib/fsm.c:773
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/fsm.c:778
+#: lib/fsm.c:781
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
-#: lib/fsm.c:1336
+#: lib/fsm.c:1350
#, c-format
-msgid "%s directory created with perms %04o.\n"
+msgid "%s directory created with perms %04o, no context.\n"
msgstr ""
-#: lib/fsm.c:1635
+#: lib/fsm.c:1354
+#, c-format
+msgid "%s directory created with perms %04o, context %s.\n"
+msgstr ""
+
+#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1762 lib/fsm.c:1898
+#: lib/fsm.c:1784 lib/fsm.c:1920
#, c-format
msgid "%s saved as %s\n"
msgstr ""
-#: lib/fsm.c:1925
+#: lib/fsm.c:1947
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr ""
-#: lib/fsm.c:1931
+#: lib/fsm.c:1953
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr ""
-#: lib/fsm.c:1946
+#: lib/fsm.c:1968
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr ""
-#: lib/fsm.c:1968
+#: lib/fsm.c:1990
#, c-format
msgid "%s created as %s\n"
msgstr ""
@@ -2155,65 +2160,77 @@ msgstr ""
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr ""
-#: lib/psm.c:554
+#: lib/psm.c:541
+#, c-format
+msgid "setexeccon(%s) fails from context \"%s\": %s\n"
+msgstr ""
+
+#: lib/psm.c:545
+#, c-format
+msgid ""
+"setexeccon(%s) fails from context \"%s\": %s\n"
+"Continuing ...\n"
+msgstr ""
+
+#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:562
+#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:730
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:751
+#: lib/psm.c:851
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr ""
-#: lib/psm.c:757
+#: lib/psm.c:857
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
-#: lib/psm.c:1188
+#: lib/psm.c:1288
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
-#: lib/psm.c:1323
+#: lib/psm.c:1423
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1432
+#: lib/psm.c:1532
msgid "Unable to reload signature header\n"
msgstr ""
-#: lib/psm.c:1510
+#: lib/psm.c:1610
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
-#: lib/psm.c:1511
+#: lib/psm.c:1611
msgid " on file "
msgstr ""
-#: lib/psm.c:1697
+#: lib/psm.c:1797
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
-#: lib/psm.c:1700
+#: lib/psm.c:1800
#, c-format
msgid "%s failed: %s\n"
msgstr ""
-#: lib/query.c:118 lib/rpmts.c:566
+#: lib/query.c:118 lib/rpmts.c:575
#, c-format
msgid "incorrect format: %s\n"
msgstr ""
@@ -2261,7 +2278,7 @@ msgid "package has neither file owner or id lists\n"
msgstr ""
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
-#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
+#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
@@ -2840,75 +2857,75 @@ msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr ""
-#: lib/rpmsx.c:343
+#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:360
+#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:391
+#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
-#: lib/rpmsx.c:406 lib/rpmsx.c:421
+#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
-#: lib/rpmsx.c:434
+#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
-#: lib/rpmts.c:163
+#: lib/rpmts.c:164
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr ""
-#: lib/rpmts.c:253
+#: lib/rpmts.c:262
#, c-format
msgid "extra '(' in package label: %s\n"
msgstr ""
-#: lib/rpmts.c:271
+#: lib/rpmts.c:280
#, c-format
msgid "missing '(' in package label: %s\n"
msgstr ""
-#: lib/rpmts.c:279
+#: lib/rpmts.c:288
#, c-format
msgid "missing ')' in package label: %s\n"
msgstr ""
-#: lib/rpmts.c:456
+#: lib/rpmts.c:465
#, c-format
msgid "cannot open Solve database in %s\n"
msgstr ""
-#: lib/rpmts.c:598
+#: lib/rpmts.c:607
#, c-format
msgid "Adding: %s\n"
msgstr ""
-#: lib/rpmts.c:610
+#: lib/rpmts.c:619
#, c-format
msgid "Suggesting: %s\n"
msgstr ""
-#: lib/rpmts.c:1098
+#: lib/rpmts.c:1107
msgid "mounted filesystems:\n"
msgstr ""
-#: lib/rpmts.c:1100
+#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
-#: lib/rpmts.c:1156
+#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
@@ -3073,7 +3090,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:891
+#: lib/transaction.c:893
#, c-format
msgid "excluding directory %s\n"
msgstr ""
@@ -3086,7 +3103,7 @@ msgstr ""
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1004
+#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3099,7 +3116,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1092
+#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3107,7 +3124,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1173
+#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr ""
diff --git a/po/rpm.pot b/po/rpm.pot
index 1de4201f7..56ad6995f 100644
--- a/po/rpm.pot
+++ b/po/rpm.pot
@@ -7,8 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-01-12 16:27+0000\n"
+"POT-Creation-Date: 2004-02-29 07: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"
@@ -512,74 +511,74 @@ msgstr ""
msgid "File not found: %s\n"
msgstr ""
-#: build/files.c:1772
+#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
-#: build/files.c:1778
+#: build/files.c:1779
#, c-format
msgid "%s: public key read failed.\n"
msgstr ""
-#: build/files.c:1782 lib/rpmchecksig.c:580
+#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
-#: build/files.c:1789
+#: build/files.c:1790
#, c-format
msgid "%s: *.te policy read failed.\n"
msgstr ""
-#: build/files.c:1840
+#: build/files.c:1842
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr ""
-#: build/files.c:1864
+#: build/files.c:1866
#, c-format
msgid "Glob not permitted: %s\n"
msgstr ""
-#: build/files.c:1881 lib/rpminstall.c:361
+#: build/files.c:1883 lib/rpminstall.c:361
#, c-format
msgid "File not found by glob: %s\n"
msgstr ""
-#: build/files.c:1941
+#: build/files.c:1943
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr ""
-#: build/files.c:1952 build/pack.c:156
+#: build/files.c:1954 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr ""
-#: build/files.c:2348
+#: build/files.c:2350
#, c-format
msgid "Bad file: %s: %s\n"
msgstr ""
-#: build/files.c:2360 build/parsePrep.c:50
+#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:2404
+#: build/files.c:2406
#, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr ""
-#: build/files.c:2427
+#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
-#: build/files.c:2455
+#: build/files.c:2457
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
@@ -718,7 +717,7 @@ msgstr ""
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:632 lib/psm.c:1420
+#: build/pack.c:632 lib/psm.c:1520
#, c-format
msgid "Unable to write package: %s\n"
msgstr ""
@@ -748,7 +747,7 @@ msgstr ""
msgid "Unable to write payload to %s: %s\n"
msgstr ""
-#: build/pack.c:725 lib/psm.c:1689
+#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@@ -1471,47 +1470,52 @@ msgstr ""
msgid "%10d %s\n"
msgstr ""
-#: lib/fsm.c:770
+#: lib/fsm.c:773
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/fsm.c:778
+#: lib/fsm.c:781
#, c-format
msgid "group %s does not exist - using root\n"
msgstr ""
-#: lib/fsm.c:1336
+#: lib/fsm.c:1350
#, c-format
-msgid "%s directory created with perms %04o.\n"
+msgid "%s directory created with perms %04o, no context.\n"
msgstr ""
-#: lib/fsm.c:1635
+#: lib/fsm.c:1354
+#, c-format
+msgid "%s directory created with perms %04o, context %s.\n"
+msgstr ""
+
+#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1762 lib/fsm.c:1898
+#: lib/fsm.c:1784 lib/fsm.c:1920
#, c-format
msgid "%s saved as %s\n"
msgstr ""
-#: lib/fsm.c:1925
+#: lib/fsm.c:1947
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr ""
-#: lib/fsm.c:1931
+#: lib/fsm.c:1953
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr ""
-#: lib/fsm.c:1946
+#: lib/fsm.c:1968
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr ""
-#: lib/fsm.c:1968
+#: lib/fsm.c:1990
#, c-format
msgid "%s created as %s\n"
msgstr ""
@@ -2161,65 +2165,77 @@ msgstr ""
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr ""
-#: lib/psm.c:554
+#: lib/psm.c:541
+#, c-format
+msgid "setexeccon(%s) fails from context \"%s\": %s\n"
+msgstr ""
+
+#: lib/psm.c:545
+#, c-format
+msgid ""
+"setexeccon(%s) fails from context \"%s\": %s\n"
+"Continuing ...\n"
+msgstr ""
+
+#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:562
+#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:730
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:751
+#: lib/psm.c:851
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr ""
-#: lib/psm.c:757
+#: lib/psm.c:857
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr ""
-#: lib/psm.c:1188
+#: lib/psm.c:1288
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr ""
-#: lib/psm.c:1323
+#: lib/psm.c:1423
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1432
+#: lib/psm.c:1532
msgid "Unable to reload signature header\n"
msgstr ""
-#: lib/psm.c:1510
+#: lib/psm.c:1610
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr ""
-#: lib/psm.c:1511
+#: lib/psm.c:1611
msgid " on file "
msgstr ""
-#: lib/psm.c:1697
+#: lib/psm.c:1797
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr ""
-#: lib/psm.c:1700
+#: lib/psm.c:1800
#, c-format
msgid "%s failed: %s\n"
msgstr ""
-#: lib/query.c:118 lib/rpmts.c:566
+#: lib/query.c:118 lib/rpmts.c:575
#, c-format
msgid "incorrect format: %s\n"
msgstr ""
@@ -2267,7 +2283,7 @@ msgid "package has neither file owner or id lists\n"
msgstr ""
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
-#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
+#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
@@ -2846,75 +2862,75 @@ msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr ""
-#: lib/rpmsx.c:343
+#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:360
+#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:391
+#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
-#: lib/rpmsx.c:406 lib/rpmsx.c:421
+#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
-#: lib/rpmsx.c:434
+#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
-#: lib/rpmts.c:163
+#: lib/rpmts.c:164
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr ""
-#: lib/rpmts.c:253
+#: lib/rpmts.c:262
#, c-format
msgid "extra '(' in package label: %s\n"
msgstr ""
-#: lib/rpmts.c:271
+#: lib/rpmts.c:280
#, c-format
msgid "missing '(' in package label: %s\n"
msgstr ""
-#: lib/rpmts.c:279
+#: lib/rpmts.c:288
#, c-format
msgid "missing ')' in package label: %s\n"
msgstr ""
-#: lib/rpmts.c:456
+#: lib/rpmts.c:465
#, c-format
msgid "cannot open Solve database in %s\n"
msgstr ""
-#: lib/rpmts.c:598
+#: lib/rpmts.c:607
#, c-format
msgid "Adding: %s\n"
msgstr ""
-#: lib/rpmts.c:610
+#: lib/rpmts.c:619
#, c-format
msgid "Suggesting: %s\n"
msgstr ""
-#: lib/rpmts.c:1098
+#: lib/rpmts.c:1107
msgid "mounted filesystems:\n"
msgstr ""
-#: lib/rpmts.c:1100
+#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
-#: lib/rpmts.c:1156
+#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
@@ -3079,7 +3095,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:891
+#: lib/transaction.c:893
#, c-format
msgid "excluding directory %s\n"
msgstr ""
@@ -3092,7 +3108,7 @@ msgstr ""
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1004
+#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3105,7 +3121,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1092
+#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3113,7 +3129,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1173
+#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr ""
diff --git a/po/ru.po b/po/ru.po
index 110494356..09d79db11 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-01-12 16:27+0000\n"
+"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2002-08-27 13:36-0400\n"
"Last-Translator: Eugene Kanter, <eugene@blackcatlinux.com>\n"
"Language-Team: Black Cat Linux Team <blackcat-support@blackcatlinux.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=KOI8-R\n"
"Content-Transfer-Encoding: 8bit\n"
+"Report-Msgid-Bugs-To: \n"
"Date: 1999-04-03 12:20+0200\n"
"X-Generator: KBabel 0.9.6\n"
@@ -527,67 +527,67 @@ msgstr "ćÁĘĚ ÎĹ ÓĎĎÔ×ĹÔÓÔŐĹÔ ĐŇĹĆÉËÓŐ (%s): %s\n"
msgid "File not found: %s\n"
msgstr "ćÁĘĚ ÎĹ ÎÁĘÄĹÎ: %s\n"
-#: build/files.c:1772
+#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
-#: build/files.c:1778
+#: build/files.c:1779
#, fuzzy, c-format
msgid "%s: public key read failed.\n"
msgstr "%s: ĎŰÉÂËÁ ŢÔĹÎÉŃ ×Ď ×ŇĹÍŃ ÉÍĐĎŇÔÉŇĎ×ÁÎÉŃ.\n"
-#: build/files.c:1782 lib/rpmchecksig.c:580
+#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr "%s: ÜÔĎ ÎĹ ĎÔËŇŮÔŮĘ ËĚŔŢ.\n"
-#: build/files.c:1789
+#: build/files.c:1790
#, fuzzy, c-format
msgid "%s: *.te policy read failed.\n"
msgstr "%s: ĎŰÉÂËÁ ŢÔĹÎÉŃ ×Ď ×ŇĹÍŃ ÉÍĐĎŇÔÉŇĎ×ÁÎÉŃ.\n"
-#: build/files.c:1840
+#: build/files.c:1842
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "ćÁĘĚ ÄĎĚÖĹÎ ÎÁŢÉÎÁÔŘÓŃ Ó \"/\": %s\n"
-#: build/files.c:1864
+#: build/files.c:1866
#, c-format
msgid "Glob not permitted: %s\n"
msgstr "Glob ÎĹ ŇÁÚŇĹŰÁŔÔÓŃ: %s\n"
-#: build/files.c:1881 lib/rpminstall.c:361
+#: build/files.c:1883 lib/rpminstall.c:361
#, c-format
msgid "File not found by glob: %s\n"
msgstr "ćÁĘĚ ÎĹ ÎÁĘÄĹÎ: %s\n"
-#: build/files.c:1941
+#: build/files.c:1943
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "îĹ×ĎÚÍĎÖÎĎ ĎÔËŇŮÔŘ ĆÁĘĚ %%files %s: %s\n"
-#: build/files.c:1952 build/pack.c:156
+#: build/files.c:1954 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr "ÓÔŇĎËÁ: %s\n"
-#: build/files.c:2348
+#: build/files.c:2350
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "îĹ×ĹŇÎŮĘ ĆÁĘĚ %s: %s\n"
-#: build/files.c:2360 build/parsePrep.c:50
+#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "îĹ×ĹŇÎÁŃ ĐÁŇÁ ×ĚÁÄĹĚĹĂ/ÇŇŐĐĐÁ: %s\n"
-#: build/files.c:2404
+#: build/files.c:2406
#, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "đŇĎ×ĹŇËÁ ÎÁ ÎĹŐĐÁËĎ×ÁÎÎŮĘ(Ĺ) ĆÁĘĚ(Ů): %s\n"
-#: build/files.c:2427
+#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
@@ -596,7 +596,7 @@ msgstr ""
"ďÂÎÁŇŐÖĹÎ(Ů) ŐÓÔÁÎĎ×ĚĹÎÎŮĘ(Ĺ) (ÎĎ ÎĹ ŐĐÁËĎ×ÁÎÎŮĘ(Ĺ)) ĆÁĘĚ(Ů):\n"
"%s"
-#: build/files.c:2455
+#: build/files.c:2457
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "ďÂŇÁÂÁÔŮ×ÁŔÔÓŃ ĆÁĘĚŮ: %s-%s-%s\n"
@@ -735,7 +735,7 @@ msgstr "îĹ×ĎÚÍĎÖÎĎ ĐĹŇĹÚÁÇŇŐÚÉÔŘ ÚÁÇĎĚĎ×ĎË ĐĎÄĐÉÓÉ.\n"
msgid "Could not open %s: %s\n"
msgstr "îĹ×ĎÚÍĎÖÎĎ ĎÔËŇŮÔŘ %s: %s\n"
-#: build/pack.c:632 lib/psm.c:1420
+#: build/pack.c:632 lib/psm.c:1520
#, c-format
msgid "Unable to write package: %s\n"
msgstr "îĹ×ĎÚÍĎÖÎĎ ÚÁĐÉÓÁÔŘ ĐÁËĹÔ: %s\n"
@@ -765,7 +765,7 @@ msgstr "îĹ×ĎÚÍĎÖÎĎ ĐŇĎŢÉÔÁÔŘ ÓĎÄĹŇÖÉÍĎĹ ÉÚ %s: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "îĹ×ĎÚÍĎÖÎĎ ÚÁĐÉÓÁÔŘ ÓĎÄĹŇÖÉÍĎĹ × %s: %s\n"
-#: build/pack.c:725 lib/psm.c:1689
+#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr "úÁĐÉÓÁÎ: %s\n"
@@ -1505,47 +1505,52 @@ msgstr "========= ëÁÔÁĚĎÇÉ, ËĎÔĎŇŮĹ ÎĹ ×ËĚŔŢĹÎŮ × ĐÁËĹÔ Ń×ÎĎ:\n"
msgid "%10d %s\n"
msgstr "%10d %s\n"
-#: lib/fsm.c:770
+#: lib/fsm.c:773
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "ĐĎĚŘÚĎ×ÁÔĹĚŘ %s ÎĹ ÓŐÝĹÓÔ×ŐĹÔ - ÉÓĐĎĚŘÚŐĹÔÓŃ root\n"
-#: lib/fsm.c:778
+#: lib/fsm.c:781
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "ÇŇŐĐĐÁ %s ÎĹ ÓŐÝĹÓÔ×ŐĹÔ - ÉÓĐĎĚŘÚŐĹÔÓŃ root\n"
-#: lib/fsm.c:1336
-#, c-format
-msgid "%s directory created with perms %04o.\n"
+#: lib/fsm.c:1350
+#, fuzzy, c-format
+msgid "%s directory created with perms %04o, no context.\n"
msgstr "ËÁÔÁĚĎÇ %s ÓĎÚÄÁÎ Ó ĐŇÁ×ÁÍÉ ÄĎÓÔŐĐÁ %04o.\n"
-#: lib/fsm.c:1635
+#: lib/fsm.c:1354
+#, fuzzy, c-format
+msgid "%s directory created with perms %04o, context %s.\n"
+msgstr "ËÁÔÁĚĎÇ %s ÓĎÚÄÁÎ Ó ĐŇÁ×ÁÍÉ ÄĎÓÔŐĐÁ %04o.\n"
+
+#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr "ĆÁĘĚ ÁŇČÉ×Á %s ÎĹ ÎÁĘÄĹÎ × ÓĐÉÓËĹ ĆÁĘĚĎ× ÚÁÇĎĚĎ×ËÁ\n"
-#: lib/fsm.c:1762 lib/fsm.c:1898
+#: lib/fsm.c:1784 lib/fsm.c:1920
#, c-format
msgid "%s saved as %s\n"
msgstr "%s ÓĎČŇÁÎĹÎ ËÁË %s\n"
-#: lib/fsm.c:1925
+#: lib/fsm.c:1947
#, c-format
msgid "%s rmdir of %s failed: Directory not empty\n"
msgstr "%s ÎĹ×ĎÚÍĎÖÎĎ ŐÄÁĚÉÔŘ %s: ËÁÔÁĚĎÇ ÎĹ ĐŐÓÔ\n"
-#: lib/fsm.c:1931
+#: lib/fsm.c:1953
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s ĎŰÉÂËÁ ŐÄÁĚĹÎÉŃ ËÁÔÁĚĎÇÁ %s: %s\n"
-#: lib/fsm.c:1946
+#: lib/fsm.c:1968
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s ÎĹ×ĎÚÍĎÖÎĎ ŐÄÁĚÉÔŘ %s: %s\n"
-#: lib/fsm.c:1968
+#: lib/fsm.c:1990
#, c-format
msgid "%s created as %s\n"
msgstr "%s ÓĎÚÄÁÎ ËÁË %s\n"
@@ -2210,65 +2215,77 @@ msgstr "ÉÓČĎÄÎŮĘ ĐÁËĹÔ ÎĹ ÓĎÄĹŇÖÉÔ ĆÁĘĚÁ ÓĐĹĂÉĆÉËÁĂÉÉ\n"
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr "%s: waitpid(%d) rc %d status %x\n"
-#: lib/psm.c:554
+#: lib/psm.c:541
+#, c-format
+msgid "setexeccon(%s) fails from context \"%s\": %s\n"
+msgstr ""
+
+#: lib/psm.c:545
+#, c-format
+msgid ""
+"setexeccon(%s) fails from context \"%s\": %s\n"
+"Continuing ...\n"
+msgstr ""
+
+#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr "%s: %s(%s-%s-%s) ĐŇĎĐŐÓËÁĹÔÓŃ ĚÉŰÎÉĘ \"%s\".\n"
-#: lib/psm.c:562
+#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr "%s: %s(%s-%s-%s) %sÚÁĐŐÓË ÓÉÎČŇĎÎÎĎÇĎ ÓĂĹÎÁŇÉŃ\n"
-#: lib/psm.c:730
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
-#: lib/psm.c:751
+#: lib/psm.c:851
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "%s(%s-%s-%s) ĎŰÉÂËÁ ÓĂĹÎÁŇÉŃ, waitpid(%d) rc %d: %s\n"
-#: lib/psm.c:757
+#: lib/psm.c:857
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "%s(%s-%s-%s) ĎŰÉÂËÁ ×ŮĐĎĚÎĹÎÉŃ ÓĂĹÎÁŇÉŃ, ËĎÄ ×ĎÚ×ŇÁÔÁ %d\n"
-#: lib/psm.c:1188
+#: lib/psm.c:1288
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s ÓĎÄĹŇÖÉÔ %d ĆÁĘĚĎ×, ŇĹÚŐĚŘÔÁÔ ĐŇĎ×ĹŇËÉ: %d\n"
-#: lib/psm.c:1323
+#: lib/psm.c:1423
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr "%s: %s ĎŰÉÂËÁ ÓĂĹÎÁŇÉŃ (%d), ĐŇĎĐŐÓËÁĹÔÓŃ %s\n"
-#: lib/psm.c:1432
+#: lib/psm.c:1532
msgid "Unable to reload signature header\n"
msgstr "îĹ×ĎÚÍĎÖÎĎ ĐĹŇĹÚÁÇŇŐÚÉÔŘ ÚÁÇĎĚĎ×ĎË ĐĎÄĐÉÓÉ\n"
-#: lib/psm.c:1510
+#: lib/psm.c:1610
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "ŇÁÓĐÁËĎ×ËÁ ÁŇČÉ×Á ÎĹ ŐÄÁĚÁÓŘ%s%s: %s\n"
-#: lib/psm.c:1511
+#: lib/psm.c:1611
msgid " on file "
msgstr " ÎÁ ĆÁĘĚĹ "
-#: lib/psm.c:1697
+#: lib/psm.c:1797
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s ĎŰÉÂËÁ ÎÁ ĆÁĘĚĹ %s: %s\n"
-#: lib/psm.c:1700
+#: lib/psm.c:1800
#, c-format
msgid "%s failed: %s\n"
msgstr "%s ÎĹ ŐÄÁĚĎÓŘ: %s\n"
-#: lib/query.c:118 lib/rpmts.c:566
+#: lib/query.c:118 lib/rpmts.c:575
#, c-format
msgid "incorrect format: %s\n"
msgstr "ĎŰÉÂËÁ × ĆĎŇÍÁÔĹ: %s\n"
@@ -2316,7 +2333,7 @@ msgid "package has neither file owner or id lists\n"
msgstr "ĐÁËĹÔ ÎĹ ÓĎÄĹŇÖÉÔ ÓĐÉÓËĎ× ÎÉ ČĎÚŃĹ× ĆÁĘĚĎ×, ÎÉ ÉČ ID\n"
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
-#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
+#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
@@ -2899,76 +2916,76 @@ msgstr "îĹ×ĎÚÍĎÖÎĎ ĐŇĎŢÉÔÁÔŘ %s, ÚÎÁŢĹÎÉĹ HOME ÓĚÉŰËĎÍ ×ĹĚÉËĎ.\n"
msgid "Unable to open %s for reading: %s.\n"
msgstr "îĹ×ĎÚÍĎÖÎĎ ĎÔËŇŮÔŘ %s ÄĚŃ ŢÔĹÎÉŃ: %s.\n"
-#: lib/rpmsx.c:343
+#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:360
+#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:391
+#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
-#: lib/rpmsx.c:406 lib/rpmsx.c:421
+#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
-#: lib/rpmsx.c:434
+#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
-#: lib/rpmts.c:163
+#: lib/rpmts.c:164
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "ÎĹ ÍĎÇŐ ĎÔËŇŮÔŘ ÂÁÚŐ ÄÁÎÎŮČ Packages × %s\n"
-#: lib/rpmts.c:253
+#: lib/rpmts.c:262
#, fuzzy, c-format
msgid "extra '(' in package label: %s\n"
msgstr "ÎĹ×ĹŇÎŮĘ ÎĎÍĹŇ ĐÁËĹÔÁ: %s\n"
-#: lib/rpmts.c:271
+#: lib/rpmts.c:280
#, fuzzy, c-format
msgid "missing '(' in package label: %s\n"
msgstr "ďÔÓŐÔÓÔ×ŐĹÔ '(' × %s %s\n"
-#: lib/rpmts.c:279
+#: lib/rpmts.c:288
#, fuzzy, c-format
msgid "missing ')' in package label: %s\n"
msgstr "ÎĹ×ĹŇÎŮĘ ÎĎÍĹŇ ĐÁËĹÔÁ: %s\n"
-#: lib/rpmts.c:456
+#: lib/rpmts.c:465
#, c-format
msgid "cannot open Solve database in %s\n"
msgstr "ÎĹ×ĎÚÍĎÖÎĎ ĎÔËŇŮÔŘ ÂÁÚŐ ÄÁÎÎŮČ ŇÁÚŇĹŰĹÎÉŃ ÚÁ×ÉÓÉÍĎÓÔĹĘ × %s\n"
-#: lib/rpmts.c:598
+#: lib/rpmts.c:607
#, c-format
msgid "Adding: %s\n"
msgstr "äĎÂÁ×ĚŃĹÔÓŃ: %s\n"
-#: lib/rpmts.c:610
+#: lib/rpmts.c:619
#, c-format
msgid "Suggesting: %s\n"
msgstr "đŇĹÄĚÁÇÁĹÔÓŃ: %s\n"
-#: lib/rpmts.c:1098
+#: lib/rpmts.c:1107
#, fuzzy
msgid "mounted filesystems:\n"
msgstr "ÓÔŇĎÉÔÓŃ ÓĐÉÓĎË ÓÍĎÎÔÉŇĎ×ÁÎÎŮČ ĆÁĘĚĎ×ŮČ ÓÉÓÔĹÍ\n"
-#: lib/rpmts.c:1100
+#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
-#: lib/rpmts.c:1156
+#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
@@ -3133,7 +3150,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr "đĎÄĐÉÓŘ: îĺéú÷ĺóôîď (%d)\n"
#. @innercontinue@
-#: lib/transaction.c:891
+#: lib/transaction.c:893
#, c-format
msgid "excluding directory %s\n"
msgstr "ÉÓËĚŔŢÁĹÔÓŃ ËÁÔÁĚĎÇ %s\n"
@@ -3146,7 +3163,7 @@ msgstr "ÉÓËĚŔŢÁĹÔÓŃ ËÁÔÁĚĎÇ %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1004
+#: lib/transaction.c:1013
#, fuzzy, c-format
msgid "sanity checking %d elements\n"
msgstr "ĐŇĎ×eŇŃĹÔÓŃ %d ÜĚĹÍĹÎÔĎ×\n"
@@ -3159,7 +3176,7 @@ msgstr "ĐŇĎ×eŇŃĹÔÓŃ %d ÜĚĹÍĹÎÔĎ×\n"
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1092
+#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr "ĐĎÄÓŢÉÔŮ×ÁĹÔÓŃ ĎÔĐĹŢÁÔĎË(ËÉ) %d ĆÁĘĚÁ(Ď×)\n"
@@ -3167,7 +3184,7 @@ msgstr "ĐĎÄÓŢÉÔŮ×ÁĹÔÓŃ ĎÔĐĹŢÁÔĎË(ËÉ) %d ĆÁĘĚÁ(Ď×)\n"
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1173
+#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr "ĐĎÄÓŢÉÔŮ×ÁĹÔÓŃ ÄÉÓĐĎÚÉĂÉŃ ĆÁĘĚĎ×\n"
diff --git a/po/sk.po b/po/sk.po
index cd7a40a22..8f557a5ec 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-01-12 16:27+0000\n"
+"POT-Creation-Date: 2004-02-29 07: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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8-bit\n"
+"Report-Msgid-Bugs-To: \n"
#: build.c:40
#, fuzzy
@@ -539,74 +539,74 @@ msgstr "Súbor nesúhlasí s prefixom (%s): %s."
msgid "File not found: %s\n"
msgstr "Súbor nebol nájdený: %s"
-#: build/files.c:1772
+#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
-#: build/files.c:1778
+#: build/files.c:1779
#, fuzzy, c-format
msgid "%s: public key read failed.\n"
msgstr "%s: readLead zlyhalo\n"
-#: build/files.c:1782 lib/rpmchecksig.c:580
+#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
-#: build/files.c:1789
+#: build/files.c:1790
#, fuzzy, c-format
msgid "%s: *.te policy read failed.\n"
msgstr "%s: readLead zlyhalo\n"
-#: build/files.c:1840
+#: build/files.c:1842
#, fuzzy, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "Súbor potrebuje na začiatku \"/\": %s"
-#: build/files.c:1864
+#: build/files.c:1866
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "riadok %d: V %s sú vyžadované verzie: %s"
-#: build/files.c:1881 lib/rpminstall.c:361
+#: build/files.c:1883 lib/rpminstall.c:361
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "Súbor nebol nájdený: %s"
-#: build/files.c:1941
+#: build/files.c:1943
#, 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:1952 build/pack.c:156
+#: build/files.c:1954 build/pack.c:156
#, fuzzy, c-format
msgid "line: %s\n"
msgstr "riadok: %s"
-#: build/files.c:2348
+#: build/files.c:2350
#, fuzzy, c-format
msgid "Bad file: %s: %s\n"
msgstr "súbor %s: %s\n"
-#: build/files.c:2360 build/parsePrep.c:50
+#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Chybný vlastník/skupina: %s\n"
-#: build/files.c:2404
+#: build/files.c:2406
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "vyhľadáva sa balík %s\n"
-#: build/files.c:2427
+#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
-#: build/files.c:2455
+#: build/files.c:2457
#, fuzzy, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Spracovávajú sa súbory: %s\n"
@@ -750,7 +750,7 @@ msgstr "Nie je možné prečítať ikonu: %s"
msgid "Could not open %s: %s\n"
msgstr "Otvorenie %s zlyhalo\n"
-#: build/pack.c:632 lib/psm.c:1420
+#: build/pack.c:632 lib/psm.c:1520
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "Nie je možné zapísať balík: %s"
@@ -780,7 +780,7 @@ msgstr "Nie je možné prečítať ikonu: %s"
msgid "Unable to write payload to %s: %s\n"
msgstr "Nie je možné zapísať balík: %s"
-#: build/pack.c:725 lib/psm.c:1689
+#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapísané: %s\n"
@@ -1533,47 +1533,52 @@ msgstr ""
msgid "%10d %s\n"
msgstr "riadok %d: %s"
-#: lib/fsm.c:770
+#: lib/fsm.c:773
#, fuzzy, c-format
msgid "user %s does not exist - using root\n"
msgstr "používateľ %s neexistuje - použije sa root"
-#: lib/fsm.c:778
+#: lib/fsm.c:781
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "skupina %s neexistuje - použije sa root"
-#: lib/fsm.c:1336
+#: lib/fsm.c:1350
#, c-format
-msgid "%s directory created with perms %04o.\n"
+msgid "%s directory created with perms %04o, no context.\n"
msgstr ""
-#: lib/fsm.c:1635
+#: lib/fsm.c:1354
+#, c-format
+msgid "%s directory created with perms %04o, context %s.\n"
+msgstr ""
+
+#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1762 lib/fsm.c:1898
+#: lib/fsm.c:1784 lib/fsm.c:1920
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "varovanie: %s uchovaný ako %s"
-#: lib/fsm.c:1925
+#: lib/fsm.c:1947
#, 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:1931
+#: lib/fsm.c:1953
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "rmdir %s zlyhalo: %s"
-#: lib/fsm.c:1946
+#: lib/fsm.c:1968
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "otvorenie %s zlyhalo\n"
-#: lib/fsm.c:1968
+#: lib/fsm.c:1990
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "varovanie: %s vytvorené ako %s"
@@ -2288,66 +2293,78 @@ msgstr "zdrojový balík neobsahuje žiadny .spec súbor"
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr ""
-#: lib/psm.c:554
+#: lib/psm.c:541
+#, c-format
+msgid "setexeccon(%s) fails from context \"%s\": %s\n"
+msgstr ""
+
+#: lib/psm.c:545
+#, c-format
+msgid ""
+"setexeccon(%s) fails from context \"%s\": %s\n"
+"Continuing ...\n"
+msgstr ""
+
+#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:562
+#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:730
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:751
+#: lib/psm.c:851
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "%s vynechané - prenos zlyhal - %s\n"
-#: lib/psm.c:757
+#: lib/psm.c:857
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "vykonanie skriptu zlyhalo"
-#: lib/psm.c:1188
+#: lib/psm.c:1288
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "balík: %s-%s-%s test súborov = %d\n"
-#: lib/psm.c:1323
+#: lib/psm.c:1423
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1432
+#: lib/psm.c:1532
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Nie je možné prečítať ikonu: %s"
-#: lib/psm.c:1510
+#: lib/psm.c:1610
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "rozbalenie archívu zlyhalo%s%s: %s"
-#: lib/psm.c:1511
+#: lib/psm.c:1611
msgid " on file "
msgstr " pre súbor "
-#: lib/psm.c:1697
+#: lib/psm.c:1797
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "nepodarilo sa otvoriť %s: %s"
-#: lib/psm.c:1700
+#: lib/psm.c:1800
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s zlyhalo"
-#: lib/query.c:118 lib/rpmts.c:566
+#: lib/query.c:118 lib/rpmts.c:575
#, fuzzy, c-format
msgid "incorrect format: %s\n"
msgstr "chyba formátu: %s\n"
@@ -2397,7 +2414,7 @@ msgid "package has neither file owner or id lists\n"
msgstr "balík neobsahuje ani vlastníka súboru, ani zoznamy identifikácií"
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
-#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
+#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
@@ -2985,75 +3002,75 @@ msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr "Nie je možné otvoriť %s pre čítanie: %s."
-#: lib/rpmsx.c:343
+#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:360
+#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:391
+#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
-#: lib/rpmsx.c:406 lib/rpmsx.c:421
+#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
-#: lib/rpmsx.c:434
+#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
-#: lib/rpmts.c:163
+#: lib/rpmts.c:164
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "nie je možné otvoriť %s/packages.rpm\n"
-#: lib/rpmts.c:253
+#: lib/rpmts.c:262
#, fuzzy, c-format
msgid "extra '(' in package label: %s\n"
msgstr "chybné číslo balíku: %s\n"
-#: lib/rpmts.c:271
+#: lib/rpmts.c:280
#, fuzzy, c-format
msgid "missing '(' in package label: %s\n"
msgstr "chýbajúce %s\n"
-#: lib/rpmts.c:279
+#: lib/rpmts.c:288
#, fuzzy, c-format
msgid "missing ')' in package label: %s\n"
msgstr "chybné číslo balíku: %s\n"
-#: lib/rpmts.c:456
+#: lib/rpmts.c:465
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "nie je možné otvoriť %s/packages.rpm\n"
-#: lib/rpmts.c:598
+#: lib/rpmts.c:607
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "riadok: %s"
-#: lib/rpmts.c:610
+#: lib/rpmts.c:619
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "zdroje v: %s\n"
-#: lib/rpmts.c:1098
+#: lib/rpmts.c:1107
msgid "mounted filesystems:\n"
msgstr ""
-#: lib/rpmts.c:1100
+#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
-#: lib/rpmts.c:1156
+#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
@@ -3227,7 +3244,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr "Doplnenie podpisu: %d\n"
#. @innercontinue@
-#: lib/transaction.c:891
+#: lib/transaction.c:893
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "vytvára sa adresár %s\n"
@@ -3240,7 +3257,7 @@ msgstr "vytvára sa adresár %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1004
+#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3253,7 +3270,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1092
+#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3261,7 +3278,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1173
+#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr ""
diff --git a/po/sl.po b/po/sl.po
index d3f730a8e..d2c595660 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -1,19 +1,19 @@
# -*- 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.385 2004/01/21 23:32:32 jbj Exp $
+# $Id: sl.po,v 1.386 2004/03/02 01:32:09 jbj Exp $
#
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-01-12 16:27+0000\n"
+"POT-Creation-Date: 2004-02-29 07: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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8-bit\n"
+"Report-Msgid-Bugs-To: \n"
#: build.c:40
#, fuzzy
@@ -538,74 +538,74 @@ msgstr "Datoteka se ne ujema s predpono (%s): %s"
msgid "File not found: %s\n"
msgstr "Datoteke ni mogoče najti: %s"
-#: build/files.c:1772
+#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
-#: build/files.c:1778
+#: build/files.c:1779
#, fuzzy, c-format
msgid "%s: public key read failed.\n"
msgstr "%s: readLead je bil neuspešen\n"
-#: build/files.c:1782 lib/rpmchecksig.c:580
+#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
-#: build/files.c:1789
+#: build/files.c:1790
#, fuzzy, c-format
msgid "%s: *.te policy read failed.\n"
msgstr "%s: readLead je bil neuspešen\n"
-#: build/files.c:1840
+#: build/files.c:1842
#, fuzzy, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "Datoteki manjka uvodni \"/\": %s"
-#: build/files.c:1864
+#: build/files.c:1866
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "vrstica %d: Različica ni dovoljena: %s"
-#: build/files.c:1881 lib/rpminstall.c:361
+#: build/files.c:1883 lib/rpminstall.c:361
#, 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:1941
+#: build/files.c:1943
#, 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:1952 build/pack.c:156
+#: build/files.c:1954 build/pack.c:156
#, fuzzy, c-format
msgid "line: %s\n"
msgstr "vrstica: %s"
-#: build/files.c:2348
+#: build/files.c:2350
#, fuzzy, c-format
msgid "Bad file: %s: %s\n"
msgstr "Poškodovana datoteka: %s: %s"
-#: build/files.c:2360 build/parsePrep.c:50
+#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Neobstoječ lastnik/skupina: %s\n"
-#: build/files.c:2404
+#: build/files.c:2406
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "iščemo paket %s\n"
-#: build/files.c:2427
+#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
-#: build/files.c:2455
+#: build/files.c:2457
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Obdeloavnje datotek: %s-%s-%s\n"
@@ -749,7 +749,7 @@ msgstr "Ikone %s ni možno prebrati: %s"
msgid "Could not open %s: %s\n"
msgstr "Ni možno odpreti %s: %s\n"
-#: build/pack.c:632 lib/psm.c:1420
+#: build/pack.c:632 lib/psm.c:1520
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "Ni možno zapisati paketa: %s"
@@ -779,7 +779,7 @@ msgstr "Ikone %s ni možno prebrati: %s"
msgid "Unable to write payload to %s: %s\n"
msgstr "Ni možno zapisati paketa %s: %s"
-#: build/pack.c:725 lib/psm.c:1689
+#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapisano: %s\n"
@@ -1536,47 +1536,52 @@ msgstr ""
msgid "%10d %s\n"
msgstr "vrstica %d: %s"
-#: lib/fsm.c:770
+#: lib/fsm.c:773
#, fuzzy, c-format
msgid "user %s does not exist - using root\n"
msgstr "uporabnik %s ne obstaja - uporabljam root"
-#: lib/fsm.c:778
+#: lib/fsm.c:781
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "skupina %s ne obstaja - uporabljam root"
-#: lib/fsm.c:1336
+#: lib/fsm.c:1350
#, c-format
-msgid "%s directory created with perms %04o.\n"
+msgid "%s directory created with perms %04o, no context.\n"
msgstr ""
-#: lib/fsm.c:1635
+#: lib/fsm.c:1354
+#, c-format
+msgid "%s directory created with perms %04o, context %s.\n"
+msgstr ""
+
+#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1762 lib/fsm.c:1898
+#: lib/fsm.c:1784 lib/fsm.c:1920
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "opozorilo: %s shranjen kot %s"
-#: lib/fsm.c:1925
+#: lib/fsm.c:1947
#, 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:1931
+#: lib/fsm.c:1953
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "odstranitev imenika %s je bila neuspešna: %s"
-#: lib/fsm.c:1946
+#: lib/fsm.c:1968
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "odpiranje %s je bilo neuspešno: %s\n"
-#: lib/fsm.c:1968
+#: lib/fsm.c:1990
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "opozorilo: %s ustvarjen kot %s"
@@ -2289,66 +2294,78 @@ msgstr "izvorni paket ne vsebuje datoteke .spec"
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr ""
-#: lib/psm.c:554
+#: lib/psm.c:541
+#, c-format
+msgid "setexeccon(%s) fails from context \"%s\": %s\n"
+msgstr ""
+
+#: lib/psm.c:545
+#, c-format
+msgid ""
+"setexeccon(%s) fails from context \"%s\": %s\n"
+"Continuing ...\n"
+msgstr ""
+
+#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:562
+#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:730
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:751
+#: lib/psm.c:851
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "preskočeno - %s - prenos neuspešen - %s\n"
-#: lib/psm.c:757
+#: lib/psm.c:857
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "skript se ni uspešno izvedel"
-#: lib/psm.c:1188
+#: lib/psm.c:1288
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "paket: %s-%s-%s datoteke test = %d\n"
-#: lib/psm.c:1323
+#: lib/psm.c:1423
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1432
+#: lib/psm.c:1532
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Ikone %s ni možno prebrati: %s"
-#: lib/psm.c:1510
+#: lib/psm.c:1610
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "razširitev arhiva je bilo neuspešno%s%s: %s"
-#: lib/psm.c:1511
+#: lib/psm.c:1611
msgid " on file "
msgstr " za datoteko "
-#: lib/psm.c:1697
+#: lib/psm.c:1797
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "neuspešno odpiranje %s: %s\n"
-#: lib/psm.c:1700
+#: lib/psm.c:1800
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s neuspešen"
-#: lib/query.c:118 lib/rpmts.c:566
+#: lib/query.c:118 lib/rpmts.c:575
#, fuzzy, c-format
msgid "incorrect format: %s\n"
msgstr "napaka v obliki: %s\n"
@@ -2398,7 +2415,7 @@ msgid "package has neither file owner or id lists\n"
msgstr "paket ne vsebuje ne lastnika datotek niti seznamov id"
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
-#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
+#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
@@ -2989,76 +3006,76 @@ msgstr "Ni možno prebrati %s, HOME je prevelik."
msgid "Unable to open %s for reading: %s.\n"
msgstr "%s ni možno odpreti za branje: %s."
-#: lib/rpmsx.c:343
+#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:360
+#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:391
+#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
-#: lib/rpmsx.c:406 lib/rpmsx.c:421
+#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
-#: lib/rpmsx.c:434
+#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
-#: lib/rpmts.c:163
+#: lib/rpmts.c:164
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "zbirko podatkov paketov ni možno odpreti v %s\n"
-#: lib/rpmts.c:253
+#: lib/rpmts.c:262
#, fuzzy, c-format
msgid "extra '(' in package label: %s\n"
msgstr "neveljavna številka paketa: %s\n"
-#: lib/rpmts.c:271
+#: lib/rpmts.c:280
#, fuzzy, c-format
msgid "missing '(' in package label: %s\n"
msgstr "Manjkajoči ,(` v %s %s"
-#: lib/rpmts.c:279
+#: lib/rpmts.c:288
#, fuzzy, c-format
msgid "missing ')' in package label: %s\n"
msgstr "neveljavna številka paketa: %s\n"
-#: lib/rpmts.c:456
+#: lib/rpmts.c:465
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "datoteke %s/packages.rpm ni mogožno odpreti\n"
-#: lib/rpmts.c:598
+#: lib/rpmts.c:607
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "vrstica: %s"
-#: lib/rpmts.c:610
+#: lib/rpmts.c:619
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "izvori v: %s\n"
-#: lib/rpmts.c:1098
+#: lib/rpmts.c:1107
#, fuzzy
msgid "mounted filesystems:\n"
msgstr "zbiranje seznama priklopljenih datotečnih sistemov.\n"
-#: lib/rpmts.c:1100
+#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
-#: lib/rpmts.c:1156
+#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
@@ -3232,7 +3249,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr "Dolž. polnila : %d\n"
#. @innercontinue@
-#: lib/transaction.c:891
+#: lib/transaction.c:893
#, c-format
msgid "excluding directory %s\n"
msgstr "izključevanje imenika %s\n"
@@ -3245,7 +3262,7 @@ msgstr "izključevanje imenika %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1004
+#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3258,7 +3275,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1092
+#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3266,7 +3283,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1173
+#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr ""
diff --git a/po/sr.po b/po/sr.po
index c66daa1c5..8f3ef7ab5 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -1,11 +1,11 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-01-12 16:27+0000\n"
+"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
+"Report-Msgid-Bugs-To: \n"
"Date: 1998-05-02 21:41:47-0400\n"
#: build.c:40
@@ -529,74 +529,74 @@ msgstr "Neuspelo čitanje %s: %s."
msgid "File not found: %s\n"
msgstr "Datoteka nije pronađena na serveru"
-#: build/files.c:1772
+#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
-#: build/files.c:1778
+#: build/files.c:1779
#, fuzzy, c-format
msgid "%s: public key read failed.\n"
msgstr "%s: Neuspeo 'readLead'\n"
-#: build/files.c:1782 lib/rpmchecksig.c:580
+#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
-#: build/files.c:1789
+#: build/files.c:1790
#, fuzzy, c-format
msgid "%s: *.te policy read failed.\n"
msgstr "%s: Neuspeo 'readLead'\n"
-#: build/files.c:1840
+#: build/files.c:1842
#, fuzzy, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "premeštanja moraju početi znakom '/'"
-#: build/files.c:1864
+#: build/files.c:1866
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "paket %s nije naveden u %s"
-#: build/files.c:1881 lib/rpminstall.c:361
+#: build/files.c:1883 lib/rpminstall.c:361
#, fuzzy, c-format
msgid "File not found by glob: %s\n"
msgstr "Datoteka nije pronađena na serveru"
-#: build/files.c:1941
+#: build/files.c:1943
#, 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:1952 build/pack.c:156
+#: build/files.c:1954 build/pack.c:156
#, fuzzy, c-format
msgid "line: %s\n"
msgstr "neuspelo otvaranje %s: %s"
-#: build/files.c:2348
+#: build/files.c:2350
#, fuzzy, c-format
msgid "Bad file: %s: %s\n"
msgstr "neuspelo otvaranje %s: %s"
-#: build/files.c:2360 build/parsePrep.c:50
+#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:2404
+#: build/files.c:2406
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "greška potrage za paketom %s\n"
-#: build/files.c:2427
+#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
-#: build/files.c:2455
+#: build/files.c:2457
#, fuzzy, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "neuspelo otvaranje %s: %s"
@@ -739,7 +739,7 @@ msgstr "Ne mogu da upišem %s"
msgid "Could not open %s: %s\n"
msgstr "neuspelo otvaranje %s\n"
-#: build/pack.c:632 lib/psm.c:1420
+#: build/pack.c:632 lib/psm.c:1520
#, fuzzy, c-format
msgid "Unable to write package: %s\n"
msgstr "Ne mogu da upišem %s"
@@ -769,7 +769,7 @@ msgstr "Ne mogu da upišem %s"
msgid "Unable to write payload to %s: %s\n"
msgstr "Ne mogu da upišem %s"
-#: build/pack.c:725 lib/psm.c:1689
+#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr ""
@@ -1523,47 +1523,52 @@ msgstr ""
msgid "%10d %s\n"
msgstr "neuspelo otvaranje %s: %s"
-#: lib/fsm.c:770
+#: lib/fsm.c:773
#, c-format
msgid "user %s does not exist - using root\n"
msgstr ""
-#: lib/fsm.c:778
+#: lib/fsm.c:781
#, fuzzy, c-format
msgid "group %s does not exist - using root\n"
msgstr "grupa %s ne sadrži nijedan paket\n"
-#: lib/fsm.c:1336
+#: lib/fsm.c:1350
#, c-format
-msgid "%s directory created with perms %04o.\n"
+msgid "%s directory created with perms %04o, no context.\n"
msgstr ""
-#: lib/fsm.c:1635
+#: lib/fsm.c:1354
+#, c-format
+msgid "%s directory created with perms %04o, context %s.\n"
+msgstr ""
+
+#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1762 lib/fsm.c:1898
+#: lib/fsm.c:1784 lib/fsm.c:1920
#, fuzzy, c-format
msgid "%s saved as %s\n"
msgstr "Ne mogu da otvorim datoteku %s: "
-#: lib/fsm.c:1925
+#: lib/fsm.c:1947
#, 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:1931
+#: lib/fsm.c:1953
#, fuzzy, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "neuspela komanda rmdir %s: %s"
-#: lib/fsm.c:1946
+#: lib/fsm.c:1968
#, fuzzy, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "neuspelo otvaranje %s: %s\n"
-#: lib/fsm.c:1968
+#: lib/fsm.c:1990
#, fuzzy, c-format
msgid "%s created as %s\n"
msgstr "Ne mogu da otvorim datoteku %s: "
@@ -2280,66 +2285,78 @@ msgstr "upit nad paketom koji ima <datoteku>"
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr ""
-#: lib/psm.c:554
+#: lib/psm.c:541
+#, c-format
+msgid "setexeccon(%s) fails from context \"%s\": %s\n"
+msgstr ""
+
+#: lib/psm.c:545
+#, c-format
+msgid ""
+"setexeccon(%s) fails from context \"%s\": %s\n"
+"Continuing ...\n"
+msgstr ""
+
+#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:562
+#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:730
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:751
+#: lib/psm.c:851
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "greška: preskačem %s - neuspelo prenošenje - %s\n"
-#: lib/psm.c:757
+#: lib/psm.c:857
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "neuspelo izvršavanje skripta"
-#: lib/psm.c:1188
+#: lib/psm.c:1288
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "paket %s-%s-%s sadrži deljene datoteke\n"
-#: lib/psm.c:1323
+#: lib/psm.c:1423
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr ""
-#: lib/psm.c:1432
+#: lib/psm.c:1532
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "Ne mogu da upišem %s"
-#: lib/psm.c:1510
+#: lib/psm.c:1610
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "neuspelo otvaranje %s: %s\n"
-#: lib/psm.c:1511
+#: lib/psm.c:1611
msgid " on file "
msgstr ""
-#: lib/psm.c:1697
+#: lib/psm.c:1797
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "neuspelo otvaranje %s: %s"
-#: lib/psm.c:1700
+#: lib/psm.c:1800
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "PGP omanuo"
-#: lib/query.c:118 lib/rpmts.c:566
+#: lib/query.c:118 lib/rpmts.c:575
#, fuzzy, c-format
msgid "incorrect format: %s\n"
msgstr "greška u formatu: %s\n"
@@ -2390,7 +2407,7 @@ msgid "package has neither file owner or id lists\n"
msgstr "paket nema imena"
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
-#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
+#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
@@ -2978,75 +2995,75 @@ msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr "Ne mogu da otvorim %s za čitanje: %s"
-#: lib/rpmsx.c:343
+#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:360
+#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:391
+#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
-#: lib/rpmsx.c:406 lib/rpmsx.c:421
+#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
-#: lib/rpmsx.c:434
+#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
-#: lib/rpmts.c:163
+#: lib/rpmts.c:164
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "greška: ne mogu da otvorim %s%s/packages.rpm\n"
-#: lib/rpmts.c:253
+#: lib/rpmts.c:262
#, fuzzy, c-format
msgid "extra '(' in package label: %s\n"
msgstr "pogrešan broj paketa: %s\n"
-#: lib/rpmts.c:271
+#: lib/rpmts.c:280
#, fuzzy, c-format
msgid "missing '(' in package label: %s\n"
msgstr "nedostaje { posle %"
-#: lib/rpmts.c:279
+#: lib/rpmts.c:288
#, fuzzy, c-format
msgid "missing ')' in package label: %s\n"
msgstr "pogrešan broj paketa: %s\n"
-#: lib/rpmts.c:456
+#: lib/rpmts.c:465
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "greška: ne mogu da otvorim %s%s/packages.rpm\n"
-#: lib/rpmts.c:598
+#: lib/rpmts.c:607
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "neuspelo otvaranje %s: %s"
-#: lib/rpmts.c:610
+#: lib/rpmts.c:619
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "Pribavljam %s\n"
-#: lib/rpmts.c:1098
+#: lib/rpmts.c:1107
msgid "mounted filesystems:\n"
msgstr ""
-#: lib/rpmts.c:1100
+#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
-#: lib/rpmts.c:1156
+#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
@@ -3219,7 +3236,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr ""
#. @innercontinue@
-#: lib/transaction.c:891
+#: lib/transaction.c:893
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "greška kod kreiranja direktorijuma %s: %s"
@@ -3232,7 +3249,7 @@ msgstr "greška kod kreiranja direktorijuma %s: %s"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1004
+#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3245,7 +3262,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1092
+#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3253,7 +3270,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1173
+#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr ""
diff --git a/po/sv.po b/po/sv.po
index f466145fc..c033064b7 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.2\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-01-12 16:27+0000\n"
+"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2003-02-05 12:40+0100\n"
"Last-Translator: Göran Uddeborg <goeran@uddeborg.pp.se>\n"
"Language-Team: Swedish <sv@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
+"Report-Msgid-Bugs-To: \n"
#: build.c:40
msgid "Failed build dependencies:\n"
@@ -519,67 +519,67 @@ msgstr "Filen matchar inte prefixet (%s): %s\n"
msgid "File not found: %s\n"
msgstr "Filen hittades inte: %s\n"
-#: build/files.c:1772
+#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
-#: build/files.c:1778
+#: build/files.c:1779
#, c-format
msgid "%s: public key read failed.\n"
msgstr "%s: läsning av publik nyckel misslyckades.\n"
-#: build/files.c:1782 lib/rpmchecksig.c:580
+#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr "%s: inte en publik nyckel med skal.\n"
-#: build/files.c:1789
+#: build/files.c:1790
#, fuzzy, c-format
msgid "%s: *.te policy read failed.\n"
msgstr "%s: läsning av publik nyckel misslyckades.\n"
-#: build/files.c:1840
+#: build/files.c:1842
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "Filen behöver inledande \"/\": %s\n"
-#: build/files.c:1864
+#: build/files.c:1866
#, c-format
msgid "Glob not permitted: %s\n"
msgstr "Matchning inte tillĺtet: %s\n"
-#: build/files.c:1881 lib/rpminstall.c:361
+#: build/files.c:1883 lib/rpminstall.c:361
#, c-format
msgid "File not found by glob: %s\n"
msgstr "Hittade ingen fil vid matchningen: %s\n"
-#: build/files.c:1941
+#: build/files.c:1943
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "Kunde inte öppna %%files-fil %s: %s\n"
-#: build/files.c:1952 build/pack.c:156
+#: build/files.c:1954 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr "rad: %s\n"
-#: build/files.c:2348
+#: build/files.c:2350
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "Felaktig fil: %s: %s\n"
-#: build/files.c:2360 build/parsePrep.c:50
+#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Felaktig ägare/grupp: %s\n"
-#: build/files.c:2404
+#: build/files.c:2406
#, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "Letar efter opackade fil(er): %s\n"
-#: build/files.c:2427
+#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
@@ -588,7 +588,7 @@ msgstr ""
"Installerade (men opaketerade) filer funna:\n"
"%s"
-#: build/files.c:2455
+#: build/files.c:2457
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Bearbetar filer: %s-%s-%s\n"
@@ -727,7 +727,7 @@ msgstr "Kan inte läsa om signaturhuvud.\n"
msgid "Could not open %s: %s\n"
msgstr "Kunde inte öppna %s: %s\n"
-#: build/pack.c:632 lib/psm.c:1420
+#: build/pack.c:632 lib/psm.c:1520
#, c-format
msgid "Unable to write package: %s\n"
msgstr "Kunde inte skriva paket: %s\n"
@@ -757,7 +757,7 @@ msgstr "Kan inte läsa last frĺn %s: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "Kan inte skriva last till %s: %s\n"
-#: build/pack.c:725 lib/psm.c:1689
+#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrev: %s\n"
@@ -1491,47 +1491,52 @@ msgstr "========== Kataloger ej uttryckligen inkluderade i paketet:\n"
msgid "%10d %s\n"
msgstr "%10d %s\n"
-#: lib/fsm.c:770
+#: lib/fsm.c:773
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "användare %s finns inte - använder root\n"
-#: lib/fsm.c:778
+#: lib/fsm.c:781
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "grupp %s finns inte - använder root\n"
-#: lib/fsm.c:1336
-#, c-format
-msgid "%s directory created with perms %04o.\n"
+#: lib/fsm.c:1350
+#, fuzzy, c-format
+msgid "%s directory created with perms %04o, no context.\n"
msgstr "katalog %s skapad med rättigheter %04o.\n"
-#: lib/fsm.c:1635
+#: lib/fsm.c:1354
+#, fuzzy, c-format
+msgid "%s directory created with perms %04o, context %s.\n"
+msgstr "katalog %s skapad med rättigheter %04o.\n"
+
+#: lib/fsm.c:1657
#, 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:1762 lib/fsm.c:1898
+#: lib/fsm.c:1784 lib/fsm.c:1920
#, c-format
msgid "%s saved as %s\n"
msgstr "%s sparades som %s\n"
-#: lib/fsm.c:1925
+#: lib/fsm.c:1947
#, 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:1931
+#: lib/fsm.c:1953
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s rmdir av %s misslyckades: %s\n"
-#: lib/fsm.c:1946
+#: lib/fsm.c:1968
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s unlink av %s misslyckades: %s\n"
-#: lib/fsm.c:1968
+#: lib/fsm.c:1990
#, c-format
msgid "%s created as %s\n"
msgstr "%s skapades som %s\n"
@@ -2192,67 +2197,79 @@ msgstr "källpaket innehĺller ingen .spec-fil\n"
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr "%s: waitpid(%d) rk %d status %x\n"
+#: lib/psm.c:541
+#, c-format
+msgid "setexeccon(%s) fails from context \"%s\": %s\n"
+msgstr ""
+
+#: lib/psm.c:545
+#, c-format
+msgid ""
+"setexeccon(%s) fails from context \"%s\": %s\n"
+"Continuing ...\n"
+msgstr ""
+
# Avslutande %s blir sökvägen till ldconfig. Det är en körning av
# programmet man hoppar över. Alltsĺ: överflödig körning.
-#: lib/psm.c:554
+#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr "%s: %s(%s-%s-%s) hoppar över överflödig \"%s\".\n"
-#: lib/psm.c:562
+#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr "%s: %s(%s-%s-%s) start %ssynkront skript\n"
-#: lib/psm.c:730
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
-#: lib/psm.c:751
+#: lib/psm.c:851
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "%s(%s-%s-%s) skript misslyckades, waitpid(%d) rk %d: %s\n"
-#: lib/psm.c:757
+#: lib/psm.c:857
#, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "%s(%s-%s-%s) skript misslyckades, slutstatus %d\n"
-#: lib/psm.c:1188
+#: lib/psm.c:1288
#, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s har %d filer, test = %d\n"
-#: lib/psm.c:1323
+#: lib/psm.c:1423
#, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr "%s: %s-skript misslyckades (%d), hoppar över %s\n"
-#: lib/psm.c:1432
+#: lib/psm.c:1532
msgid "Unable to reload signature header\n"
msgstr "Kan inte läsa om signaturhuvud\n"
-#: lib/psm.c:1510
+#: lib/psm.c:1610
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "uppackning av arkiv misslyckades%s%s: %s\n"
-#: lib/psm.c:1511
+#: lib/psm.c:1611
msgid " on file "
msgstr " vid fil "
-#: lib/psm.c:1697
+#: lib/psm.c:1797
#, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s misslyckades pĺ fil %s: %s\n"
-#: lib/psm.c:1700
+#: lib/psm.c:1800
#, c-format
msgid "%s failed: %s\n"
msgstr "%s misslyckades: %s\n"
-#: lib/query.c:118 lib/rpmts.c:566
+#: lib/query.c:118 lib/rpmts.c:575
#, c-format
msgid "incorrect format: %s\n"
msgstr "fel format: %s\n"
@@ -2300,7 +2317,7 @@ msgid "package has neither file owner or id lists\n"
msgstr "paketet har varken filägare eller id-listor\n"
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
-#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
+#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
@@ -2881,75 +2898,75 @@ msgstr "Kan inte läsa %s, HOME är för stor.\n"
msgid "Unable to open %s for reading: %s.\n"
msgstr "Kan inte öppna %s för läsning: %s.\n"
-#: lib/rpmsx.c:343
+#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:360
+#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:391
+#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
-#: lib/rpmsx.c:406 lib/rpmsx.c:421
+#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
-#: lib/rpmsx.c:434
+#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
-#: lib/rpmts.c:163
+#: lib/rpmts.c:164
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "kan inte öppna paketdatabas i %s\n"
-#: lib/rpmts.c:253
+#: lib/rpmts.c:262
#, fuzzy, c-format
msgid "extra '(' in package label: %s\n"
msgstr "felaktigt paketnummer: %s\n"
-#: lib/rpmts.c:271
+#: lib/rpmts.c:280
#, fuzzy, c-format
msgid "missing '(' in package label: %s\n"
msgstr "\"(\" saknas i %s %s\n"
-#: lib/rpmts.c:279
+#: lib/rpmts.c:288
#, fuzzy, c-format
msgid "missing ')' in package label: %s\n"
msgstr "felaktigt paketnummer: %s\n"
-#: lib/rpmts.c:456
+#: lib/rpmts.c:465
#, c-format
msgid "cannot open Solve database in %s\n"
msgstr "kan inte öppna Solve-databas i %s\n"
-#: lib/rpmts.c:598
+#: lib/rpmts.c:607
#, c-format
msgid "Adding: %s\n"
msgstr "Lägger till: %s\n"
-#: lib/rpmts.c:610
+#: lib/rpmts.c:619
#, c-format
msgid "Suggesting: %s\n"
msgstr "Föreslĺr %s\n"
-#: lib/rpmts.c:1098
+#: lib/rpmts.c:1107
msgid "mounted filesystems:\n"
msgstr "monterade filsystem:\n"
-#: lib/rpmts.c:1100
+#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr " i enhet bstrl btillg itillg monteringspunkt\n"
-#: lib/rpmts.c:1156
+#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr "%5d 0x%04x %5u %12ld %12ld %s\n"
@@ -3116,7 +3133,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr "Signatur: OKÄND (%d)\n"
#. @innercontinue@
-#: lib/transaction.c:891
+#: lib/transaction.c:893
#, c-format
msgid "excluding directory %s\n"
msgstr "hoppar över katalogen %s\n"
@@ -3129,7 +3146,7 @@ msgstr "hoppar över katalogen %s\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1004
+#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr "rimlighetskontrollerar %d element\n"
@@ -3142,7 +3159,7 @@ msgstr "rimlighetskontrollerar %d element\n"
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1092
+#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr "beräknar %d filfingeravtryck\n"
@@ -3150,7 +3167,7 @@ msgstr "beräknar %d filfingeravtryck\n"
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1173
+#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr "beräknar filĺtgärder\n"
diff --git a/po/tr.po b/po/tr.po
index 92bce14b5..412540be8 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-01-12 16:27+0000\n"
+"POT-Creation-Date: 2004-02-29 07: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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-9\n"
"Content-Transfer-Encoding: 8bit\n"
+"Report-Msgid-Bugs-To: \n"
"X-Generator: KBabel 0.9.2alpha\n"
#: build.c:40
@@ -531,74 +531,74 @@ msgstr "Dosya önek (%s) ile uyumsuz: %s\n"
msgid "File not found: %s\n"
msgstr "Dosya bulunamadý: %s\n"
-#: build/files.c:1772
+#: build/files.c:1773
#, c-format
msgid "%s: can't load unknown tag (%d).\n"
msgstr ""
-#: build/files.c:1778
+#: build/files.c:1779
#, fuzzy, c-format
msgid "%s: public key read failed.\n"
msgstr "%s: readLead baţarýsýz\n"
-#: build/files.c:1782 lib/rpmchecksig.c:580
+#: build/files.c:1783 lib/rpmchecksig.c:580
#, c-format
msgid "%s: not an armored public key.\n"
msgstr ""
-#: build/files.c:1789
+#: build/files.c:1790
#, fuzzy, c-format
msgid "%s: *.te policy read failed.\n"
msgstr "%s: readLead baţarýsýz\n"
-#: build/files.c:1840
+#: build/files.c:1842
#, c-format
msgid "File needs leading \"/\": %s\n"
msgstr "Dosya \"/\" ile içermeli: %s\n"
-#: build/files.c:1864
+#: build/files.c:1866
#, fuzzy, c-format
msgid "Glob not permitted: %s\n"
msgstr "satýr %d: Dosya adý uygun deđil: %s\n"
-#: build/files.c:1881 lib/rpminstall.c:361
+#: build/files.c:1883 lib/rpminstall.c:361
#, c-format
msgid "File not found by glob: %s\n"
msgstr "Dosya glob tarafýndan bulunamadý: %s\n"
-#: build/files.c:1941
+#: build/files.c:1943
#, c-format
msgid "Could not open %%files file %s: %s\n"
msgstr "%%files dosya %s dosyasýnda açýlamadý: %s\n"
-#: build/files.c:1952 build/pack.c:156
+#: build/files.c:1954 build/pack.c:156
#, c-format
msgid "line: %s\n"
msgstr "satýr: %s\n"
-#: build/files.c:2348
+#: build/files.c:2350
#, c-format
msgid "Bad file: %s: %s\n"
msgstr "Dosya hatalý: %s: %s\n"
-#: build/files.c:2360 build/parsePrep.c:50
+#: build/files.c:2362 build/parsePrep.c:50
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Kullanýcý/grup hatalý: %s\n"
-#: build/files.c:2404
+#: build/files.c:2406
#, fuzzy, c-format
msgid "Checking for unpackaged file(s): %s\n"
msgstr "arţiv paketi açýlýrken baţarýsýz%s%s: %s\n"
-#: build/files.c:2427
+#: build/files.c:2429
#, c-format
msgid ""
"Installed (but unpackaged) file(s) found:\n"
"%s"
msgstr ""
-#: build/files.c:2455
+#: build/files.c:2457
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Ýţlenen dosyalar: %s-%s-%s\n"
@@ -741,7 +741,7 @@ msgstr "%s'den baţlýk okunamadý: %s\n"
msgid "Could not open %s: %s\n"
msgstr "%s açýlamadý: %s\n"
-#: build/pack.c:632 lib/psm.c:1420
+#: build/pack.c:632 lib/psm.c:1520
#, c-format
msgid "Unable to write package: %s\n"
msgstr "paket yazýlamadý: %s\n"
@@ -771,7 +771,7 @@ msgstr "%s'den payload okunamadý: %s\n"
msgid "Unable to write payload to %s: %s\n"
msgstr "%s'e payload yazýlamadý: %s\n"
-#: build/pack.c:725 lib/psm.c:1689
+#: build/pack.c:725 lib/psm.c:1789
#, c-format
msgid "Wrote: %s\n"
msgstr "Yazýldý: %s\n"
@@ -1524,47 +1524,52 @@ msgstr "========= Pakette bulunmayan dizinler:\n"
msgid "%10d %s\n"
msgstr "%9d %s\n"
-#: lib/fsm.c:770
+#: lib/fsm.c:773
#, c-format
msgid "user %s does not exist - using root\n"
msgstr "kullanýcý %s yok - root kullanýlacak\n"
-#: lib/fsm.c:778
+#: lib/fsm.c:781
#, c-format
msgid "group %s does not exist - using root\n"
msgstr "grup %s yok - root kullanýlacak\n"
-#: lib/fsm.c:1336
-#, c-format
-msgid "%s directory created with perms %04o.\n"
+#: lib/fsm.c:1350
+#, fuzzy, c-format
+msgid "%s directory created with perms %04o, no context.\n"
msgstr "%s dizin %04o izinleriyle oluţturuldu.\n"
-#: lib/fsm.c:1635
+#: lib/fsm.c:1354
+#, fuzzy, c-format
+msgid "%s directory created with perms %04o, context %s.\n"
+msgstr "%s dizin %04o izinleriyle oluţturuldu.\n"
+
+#: lib/fsm.c:1657
#, c-format
msgid "archive file %s was not found in header file list\n"
msgstr ""
-#: lib/fsm.c:1762 lib/fsm.c:1898
+#: lib/fsm.c:1784 lib/fsm.c:1920
#, c-format
msgid "%s saved as %s\n"
msgstr "%s %s olarak kaydedildi\n"
-#: lib/fsm.c:1925
+#: lib/fsm.c:1947
#, 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:1931
+#: lib/fsm.c:1953
#, c-format
msgid "%s rmdir of %s failed: %s\n"
msgstr "%s / %s dizinin silinmesi baţarýsýz: %s\n"
-#: lib/fsm.c:1946
+#: lib/fsm.c:1968
#, c-format
msgid "%s unlink of %s failed: %s\n"
msgstr "%s / %s bađ kaldýrýlamadý: %s\n"
-#: lib/fsm.c:1968
+#: lib/fsm.c:1990
#, c-format
msgid "%s created as %s\n"
msgstr "%s %s olarak oluţturuldu\n"
@@ -2253,66 +2258,78 @@ msgstr "kaynak paketi .spec dosyasý içermiyor\n"
msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
msgstr ""
-#: lib/psm.c:554
+#: lib/psm.c:541
+#, c-format
+msgid "setexeccon(%s) fails from context \"%s\": %s\n"
+msgstr ""
+
+#: lib/psm.c:545
+#, c-format
+msgid ""
+"setexeccon(%s) fails from context \"%s\": %s\n"
+"Continuing ...\n"
+msgstr ""
+
+#: lib/psm.c:631
#, c-format
msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
msgstr ""
-#: lib/psm.c:562
+#: lib/psm.c:639
#, c-format
msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
msgstr ""
-#: lib/psm.c:730
+#: lib/psm.c:818
#, c-format
msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
msgstr ""
-#: lib/psm.c:751
+#: lib/psm.c:851
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
msgstr "%s: %s betiđi baţarýsýz (%d), %s-%s-%s atlanýyor\n"
-#: lib/psm.c:757
+#: lib/psm.c:857
#, fuzzy, c-format
msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
msgstr "%s betiđinin %s-%s-%s'den icrasý baţarýsýz, çýkýţta durum %d\n"
-#: lib/psm.c:1188
+#: lib/psm.c:1288
#, fuzzy, c-format
msgid "%s: %s has %d files, test = %d\n"
msgstr "%s: %s-%s-%s %d dosya içeriyor, test = %d\n"
-#: lib/psm.c:1323
+#: lib/psm.c:1423
#, fuzzy, c-format
msgid "%s: %s scriptlet failed (%d), skipping %s\n"
msgstr "%s: %s betiđi baţarýsýz (%d), %s-%s-%s atlanýyor\n"
-#: lib/psm.c:1432
+#: lib/psm.c:1532
#, fuzzy
msgid "Unable to reload signature header\n"
msgstr "%s'den baţlýk okunamadý: %s\n"
-#: lib/psm.c:1510
+#: lib/psm.c:1610
#, c-format
msgid "unpacking of archive failed%s%s: %s\n"
msgstr "arţiv paketi açýlýrken baţarýsýz%s%s: %s\n"
-#: lib/psm.c:1511
+#: lib/psm.c:1611
msgid " on file "
msgstr " dosyada "
-#: lib/psm.c:1697
+#: lib/psm.c:1797
#, fuzzy, c-format
msgid "%s failed on file %s: %s\n"
msgstr "%s açýlamadý: %s\n"
-#: lib/psm.c:1700
+#: lib/psm.c:1800
#, fuzzy, c-format
msgid "%s failed: %s\n"
msgstr "%s baţarýsýz\n"
-#: lib/query.c:118 lib/rpmts.c:566
+#: lib/query.c:118 lib/rpmts.c:575
#, c-format
msgid "incorrect format: %s\n"
msgstr "biçem yanlýţ: %s\n"
@@ -2361,7 +2378,7 @@ msgid "package has neither file owner or id lists\n"
msgstr "paket ne dosya sahibi ne de kimlik listesi içeriyor\n"
#: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:476
-#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:577
+#: lib/rpminstall.c:607 lib/rpminstall.c:1032 lib/rpmts.c:586
#: tools/rpmgraph.c:120 tools/rpmgraph.c:157
#, c-format
msgid "open of %s failed: %s\n"
@@ -2949,76 +2966,76 @@ msgstr "%s okunamýyor, EV çok büyük\n"
msgid "Unable to open %s for reading: %s.\n"
msgstr "%s okuma eriţimi için açýlamadý: %s.\n"
-#: lib/rpmsx.c:343
+#: lib/rpmsx.c:358
#, c-format
msgid "%s: no newline on line number %d (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:360
+#: lib/rpmsx.c:375
#, c-format
msgid "%s: line number %d is missing fields (only read %s)\n"
msgstr ""
-#: lib/rpmsx.c:391
+#: lib/rpmsx.c:406
#, c-format
msgid "%s: unable to compile regular expression %s on line number %d: %s\n"
msgstr ""
-#: lib/rpmsx.c:406 lib/rpmsx.c:421
+#: lib/rpmsx.c:421 lib/rpmsx.c:436
#, c-format
msgid "%s: invalid type specifier %s on line number %d\n"
msgstr ""
-#: lib/rpmsx.c:434
+#: lib/rpmsx.c:449
#, c-format
msgid "%s: invalid context %s on line number %d\n"
msgstr ""
-#: lib/rpmts.c:163
+#: lib/rpmts.c:164
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "%s de Paket veritabaný açýlamadý\n"
-#: lib/rpmts.c:253
+#: lib/rpmts.c:262
#, fuzzy, c-format
msgid "extra '(' in package label: %s\n"
msgstr "geçersiz paket numarasý: %s\n"
-#: lib/rpmts.c:271
+#: lib/rpmts.c:280
#, fuzzy, c-format
msgid "missing '(' in package label: %s\n"
msgstr "%s içinde '(' yok: %s\n"
-#: lib/rpmts.c:279
+#: lib/rpmts.c:288
#, fuzzy, c-format
msgid "missing ')' in package label: %s\n"
msgstr "geçersiz paket numarasý: %s\n"
-#: lib/rpmts.c:456
+#: lib/rpmts.c:465
#, fuzzy, c-format
msgid "cannot open Solve database in %s\n"
msgstr "%s dizininde rpm veritabaný açýlamýyor\n"
-#: lib/rpmts.c:598
+#: lib/rpmts.c:607
#, fuzzy, c-format
msgid "Adding: %s\n"
msgstr "satýr: %s\n"
-#: lib/rpmts.c:610
+#: lib/rpmts.c:619
#, fuzzy, c-format
msgid "Suggesting: %s\n"
msgstr "%s alýnýyor\n"
-#: lib/rpmts.c:1098
+#: lib/rpmts.c:1107
#, fuzzy
msgid "mounted filesystems:\n"
msgstr "bađlý dosya sistemlerinin listesi alýnýyor\n"
-#: lib/rpmts.c:1100
+#: lib/rpmts.c:1109
msgid " i dev bsize bavail iavail mount point\n"
msgstr ""
-#: lib/rpmts.c:1156
+#: lib/rpmts.c:1165
#, c-format
msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
msgstr ""
@@ -3187,7 +3204,7 @@ msgid "Signature: UNKNOWN (%d)\n"
msgstr "Ýmza: boyut(%d)+iz(%d)\n"
#. @innercontinue@
-#: lib/transaction.c:891
+#: lib/transaction.c:893
#, c-format
msgid "excluding directory %s\n"
msgstr "%s dizini dýţlanýyor\n"
@@ -3200,7 +3217,7 @@ msgstr "%s dizini dýţlanýyor\n"
#. * For packages being removed:
#. * - count files.
#.
-#: lib/transaction.c:1004
+#: lib/transaction.c:1013
#, c-format
msgid "sanity checking %d elements\n"
msgstr ""
@@ -3213,7 +3230,7 @@ msgstr ""
#. * calling fpLookupList only once. I'm not sure that the speedup is
#. * worth the trouble though.
#.
-#: lib/transaction.c:1092
+#: lib/transaction.c:1101
#, c-format
msgid "computing %d file fingerprints\n"
msgstr ""
@@ -3221,7 +3238,7 @@ msgstr ""
#. ===============================================
#. * Compute file disposition for each package in transaction set.
#.
-#: lib/transaction.c:1173
+#: lib/transaction.c:1182
msgid "computing file dispositions\n"
msgstr ""
diff --git a/popt/po/cs.po b/popt/po/cs.po
index 71ed3653d..a681d015e 100644
--- a/popt/po/cs.po
+++ b/popt/po/cs.po
@@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-30 08:12-0500\n"
+"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2001-07-24 00:03+0100\n"
"Last-Translator: Milan Kerslager <kerslage@linux.cz>\n"
"Language-Team: Czech <cs@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
+"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@@ -59,54 +59,54 @@ msgstr "selhala alokace paměti"
msgid "unknown error"
msgstr "neznámá chyba"
-#: popthelp.c:58 popthelp.c:73
+#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "Vypíše tuto nápovědu"
-#: popthelp.c:59 popthelp.c:74
+#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "Vypíše krátký návod k použití"
-#: popthelp.c:62 popthelp.c:77
+#: popthelp.c:79
msgid "Display option defaults in message"
msgstr "Zobrazit implicitní volby ve zprávě"
-#: popthelp.c:122
+#: popthelp.c:124
msgid "NONE"
msgstr "NONE"
-#: popthelp.c:124
+#: popthelp.c:126
msgid "VAL"
msgstr "VAL"
-#: popthelp.c:128
+#: popthelp.c:130
msgid "INT"
msgstr "INT"
-#: popthelp.c:129
+#: popthelp.c:131
msgid "LONG"
msgstr "LONG"
-#: popthelp.c:130
+#: popthelp.c:132
msgid "STRING"
msgstr "STRING"
-#: popthelp.c:131
+#: popthelp.c:133
msgid "FLOAT"
msgstr "FLOAT"
-#: popthelp.c:132
+#: popthelp.c:134
msgid "DOUBLE"
msgstr "DOUBLE"
-#: popthelp.c:133
+#: popthelp.c:135
msgid "ARG"
msgstr "ARG"
-#: popthelp.c:508
+#: popthelp.c:548
msgid "Usage:"
msgstr "Použití:"
-#: popthelp.c:532
+#: popthelp.c:572
msgid "[OPTION...]"
msgstr "[VOLBY...]"
diff --git a/popt/po/da.po b/popt/po/da.po
index 79182cfb1..4245bbb16 100644
--- a/popt/po/da.po
+++ b/popt/po/da.po
@@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-30 08:12-0500\n"
+"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: Sun Jan 21 2001 04:30:32+0200\n"
"Last-Translator: Martin Hansen <mah@k64.dk>\n"
"Language-Team: Dansk <dansk@klid.dk>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8-bit\n"
+"Report-Msgid-Bugs-To: \n"
"X-Generator: KTranslator v 0.6.0\n"
#: popt.c:35
@@ -60,55 +60,55 @@ msgstr ""
msgid "unknown error"
msgstr "ukendt fejl"
-#: popthelp.c:58 popthelp.c:73
+#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "Vis denne hjćlpemeddelelse"
-#: popthelp.c:59 popthelp.c:74
+#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "Vis kortfattet brugsanvisning"
-#: popthelp.c:62 popthelp.c:77
+#: popthelp.c:79
#, fuzzy
msgid "Display option defaults in message"
msgstr "Vis kortfattet brugsanvisning"
-#: popthelp.c:122
+#: popthelp.c:124
msgid "NONE"
msgstr "INGEN"
-#: popthelp.c:124
+#: popthelp.c:126
msgid "VAL"
msgstr "VAL"
-#: popthelp.c:128
+#: popthelp.c:130
msgid "INT"
msgstr "INT"
-#: popthelp.c:129
+#: popthelp.c:131
msgid "LONG"
msgstr "LONG"
-#: popthelp.c:130
+#: popthelp.c:132
msgid "STRING"
msgstr "STRING"
-#: popthelp.c:131
+#: popthelp.c:133
msgid "FLOAT"
msgstr "FLOAT"
-#: popthelp.c:132
+#: popthelp.c:134
msgid "DOUBLE"
msgstr "DOUBLE"
-#: popthelp.c:133
+#: popthelp.c:135
msgid "ARG"
msgstr "ARG"
-#: popthelp.c:508
+#: popthelp.c:548
msgid "Usage:"
msgstr "Brug:"
-#: popthelp.c:532
+#: popthelp.c:572
msgid "[OPTION...]"
msgstr "[TILVALG...]"
diff --git a/popt/po/de.po b/popt/po/de.po
index 44701c9c6..c689f2426 100644
--- a/popt/po/de.po
+++ b/popt/po/de.po
@@ -6,14 +6,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-30 08:12-0500\n"
+"POT-Creation-Date: 2004-02-29 07: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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
+"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@@ -64,54 +64,54 @@ msgstr ""
msgid "unknown error"
msgstr ""
-#: popthelp.c:58 popthelp.c:73
+#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr ""
-#: popthelp.c:59 popthelp.c:74
+#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr ""
-#: popthelp.c:62 popthelp.c:77
+#: popthelp.c:79
msgid "Display option defaults in message"
msgstr ""
-#: popthelp.c:122
+#: popthelp.c:124
msgid "NONE"
msgstr ""
-#: popthelp.c:124
+#: popthelp.c:126
msgid "VAL"
msgstr ""
-#: popthelp.c:128
+#: popthelp.c:130
msgid "INT"
msgstr ""
-#: popthelp.c:129
+#: popthelp.c:131
msgid "LONG"
msgstr ""
-#: popthelp.c:130
+#: popthelp.c:132
msgid "STRING"
msgstr ""
-#: popthelp.c:131
+#: popthelp.c:133
msgid "FLOAT"
msgstr ""
-#: popthelp.c:132
+#: popthelp.c:134
msgid "DOUBLE"
msgstr ""
-#: popthelp.c:133
+#: popthelp.c:135
msgid "ARG"
msgstr ""
-#: popthelp.c:508
+#: popthelp.c:548
msgid "Usage:"
msgstr ""
-#: popthelp.c:532
+#: popthelp.c:572
msgid "[OPTION...]"
msgstr ""
diff --git a/popt/po/es.po b/popt/po/es.po
index ed248cffa..c83b3ca02 100644
--- a/popt/po/es.po
+++ b/popt/po/es.po
@@ -6,14 +6,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-30 08:12-0500\n"
+"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Leandro Lucarella <luca@linuxmendoza.org.ar>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
+"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@@ -64,55 +64,55 @@ msgstr ""
msgid "unknown error"
msgstr "error desconocido"
-#: popthelp.c:58 popthelp.c:73
+#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "Muestra este mensaje de ayuda"
-#: popthelp.c:59 popthelp.c:74
+#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "Indica el modo de uso resumido"
-#: popthelp.c:62 popthelp.c:77
+#: popthelp.c:79
#, fuzzy
msgid "Display option defaults in message"
msgstr "Indica el modo de uso resumido"
-#: popthelp.c:122
+#: popthelp.c:124
msgid "NONE"
msgstr "NONE"
-#: popthelp.c:124
+#: popthelp.c:126
msgid "VAL"
msgstr "VAL"
-#: popthelp.c:128
+#: popthelp.c:130
msgid "INT"
msgstr "INT"
-#: popthelp.c:129
+#: popthelp.c:131
msgid "LONG"
msgstr "LONG"
-#: popthelp.c:130
+#: popthelp.c:132
msgid "STRING"
msgstr "STRING"
-#: popthelp.c:131
+#: popthelp.c:133
msgid "FLOAT"
msgstr "FLOAT"
-#: popthelp.c:132
+#: popthelp.c:134
msgid "DOUBLE"
msgstr "DOUBLE"
-#: popthelp.c:133
+#: popthelp.c:135
msgid "ARG"
msgstr "ARG"
-#: popthelp.c:508
+#: popthelp.c:548
msgid "Usage:"
msgstr "Modo de Uso:"
-#: popthelp.c:532
+#: popthelp.c:572
msgid "[OPTION...]"
msgstr "[OPCIN...]"
diff --git a/popt/po/eu_ES.po b/popt/po/eu_ES.po
index 44701c9c6..c689f2426 100644
--- a/popt/po/eu_ES.po
+++ b/popt/po/eu_ES.po
@@ -6,14 +6,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-30 08:12-0500\n"
+"POT-Creation-Date: 2004-02-29 07: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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
+"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@@ -64,54 +64,54 @@ msgstr ""
msgid "unknown error"
msgstr ""
-#: popthelp.c:58 popthelp.c:73
+#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr ""
-#: popthelp.c:59 popthelp.c:74
+#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr ""
-#: popthelp.c:62 popthelp.c:77
+#: popthelp.c:79
msgid "Display option defaults in message"
msgstr ""
-#: popthelp.c:122
+#: popthelp.c:124
msgid "NONE"
msgstr ""
-#: popthelp.c:124
+#: popthelp.c:126
msgid "VAL"
msgstr ""
-#: popthelp.c:128
+#: popthelp.c:130
msgid "INT"
msgstr ""
-#: popthelp.c:129
+#: popthelp.c:131
msgid "LONG"
msgstr ""
-#: popthelp.c:130
+#: popthelp.c:132
msgid "STRING"
msgstr ""
-#: popthelp.c:131
+#: popthelp.c:133
msgid "FLOAT"
msgstr ""
-#: popthelp.c:132
+#: popthelp.c:134
msgid "DOUBLE"
msgstr ""
-#: popthelp.c:133
+#: popthelp.c:135
msgid "ARG"
msgstr ""
-#: popthelp.c:508
+#: popthelp.c:548
msgid "Usage:"
msgstr ""
-#: popthelp.c:532
+#: popthelp.c:572
msgid "[OPTION...]"
msgstr ""
diff --git a/popt/po/fi.po b/popt/po/fi.po
index 44701c9c6..c689f2426 100644
--- a/popt/po/fi.po
+++ b/popt/po/fi.po
@@ -6,14 +6,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-30 08:12-0500\n"
+"POT-Creation-Date: 2004-02-29 07: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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
+"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@@ -64,54 +64,54 @@ msgstr ""
msgid "unknown error"
msgstr ""
-#: popthelp.c:58 popthelp.c:73
+#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr ""
-#: popthelp.c:59 popthelp.c:74
+#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr ""
-#: popthelp.c:62 popthelp.c:77
+#: popthelp.c:79
msgid "Display option defaults in message"
msgstr ""
-#: popthelp.c:122
+#: popthelp.c:124
msgid "NONE"
msgstr ""
-#: popthelp.c:124
+#: popthelp.c:126
msgid "VAL"
msgstr ""
-#: popthelp.c:128
+#: popthelp.c:130
msgid "INT"
msgstr ""
-#: popthelp.c:129
+#: popthelp.c:131
msgid "LONG"
msgstr ""
-#: popthelp.c:130
+#: popthelp.c:132
msgid "STRING"
msgstr ""
-#: popthelp.c:131
+#: popthelp.c:133
msgid "FLOAT"
msgstr ""
-#: popthelp.c:132
+#: popthelp.c:134
msgid "DOUBLE"
msgstr ""
-#: popthelp.c:133
+#: popthelp.c:135
msgid "ARG"
msgstr ""
-#: popthelp.c:508
+#: popthelp.c:548
msgid "Usage:"
msgstr ""
-#: popthelp.c:532
+#: popthelp.c:572
msgid "[OPTION...]"
msgstr ""
diff --git a/popt/po/fr.po b/popt/po/fr.po
index f543cdc7f..04f0908ab 100644
--- a/popt/po/fr.po
+++ b/popt/po/fr.po
@@ -11,14 +11,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.8.1\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-30 08:12-0500\n"
+"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2003-06-22 23:43+0200\n"
"Last-Translator: RPM French Translation <rpm-fr@livna.org>\n"
"Language-Team: RPM French Translation <rpm-fr@livna.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8-bit\n"
+"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@@ -69,54 +69,54 @@ msgstr "ĂŠchec de l'allocation de mĂŠmoire"
msgid "unknown error"
msgstr "erreur inconnue"
-#: popthelp.c:58 popthelp.c:73
+#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "Montre ce message d'aide"
-#: popthelp.c:59 popthelp.c:74
+#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "Affiche un bref descriptif de l'utilisation"
-#: popthelp.c:62 popthelp.c:77
+#: popthelp.c:79
msgid "Display option defaults in message"
msgstr "Afficher les valeurs par dĂŠfaut des options dans le message"
-#: popthelp.c:122
+#: popthelp.c:124
msgid "NONE"
msgstr "RIEN"
-#: popthelp.c:124
+#: popthelp.c:126
msgid "VAL"
msgstr "VAL"
-#: popthelp.c:128
+#: popthelp.c:130
msgid "INT"
msgstr "ENTIER"
-#: popthelp.c:129
+#: popthelp.c:131
msgid "LONG"
msgstr "LONG"
-#: popthelp.c:130
+#: popthelp.c:132
msgid "STRING"
msgstr "CHAINE"
-#: popthelp.c:131
+#: popthelp.c:133
msgid "FLOAT"
msgstr "FLOTTANT"
-#: popthelp.c:132
+#: popthelp.c:134
msgid "DOUBLE"
msgstr "DOUBLE"
-#: popthelp.c:133
+#: popthelp.c:135
msgid "ARG"
msgstr "ARG"
-#: popthelp.c:508
+#: popthelp.c:548
msgid "Usage:"
msgstr "Utilisation:"
-#: popthelp.c:532
+#: popthelp.c:572
msgid "[OPTION...]"
msgstr "[OPTION...]"
diff --git a/popt/po/gl.po b/popt/po/gl.po
index cadd96ac0..c9fbfd8a0 100644
--- a/popt/po/gl.po
+++ b/popt/po/gl.po
@@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-30 08:12-0500\n"
+"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2001-01-17 01:01+0100\n"
"Last-Translator: Jesús Bravo Álvarez <jba@pobox.com>\n"
"Language-Team: Galician <trasno@ceu.fi.udc.es>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
+"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@@ -59,55 +59,55 @@ msgstr ""
msgid "unknown error"
msgstr "erro descońecido"
-#: popthelp.c:58 popthelp.c:73
+#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "Amosar esta mensaxe de axuda"
-#: popthelp.c:59 popthelp.c:74
+#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "Amosar brevemente o xeito de utilización"
-#: popthelp.c:62 popthelp.c:77
+#: popthelp.c:79
#, fuzzy
msgid "Display option defaults in message"
msgstr "Amosar brevemente o xeito de utilización"
-#: popthelp.c:122
+#: popthelp.c:124
msgid "NONE"
msgstr "NADA"
-#: popthelp.c:124
+#: popthelp.c:126
msgid "VAL"
msgstr "VAL"
-#: popthelp.c:128
+#: popthelp.c:130
msgid "INT"
msgstr "INT"
-#: popthelp.c:129
+#: popthelp.c:131
msgid "LONG"
msgstr "LONG"
-#: popthelp.c:130
+#: popthelp.c:132
msgid "STRING"
msgstr "CADEA"
-#: popthelp.c:131
+#: popthelp.c:133
msgid "FLOAT"
msgstr "FLOAT"
-#: popthelp.c:132
+#: popthelp.c:134
msgid "DOUBLE"
msgstr "DOUBLE"
-#: popthelp.c:133
+#: popthelp.c:135
msgid "ARG"
msgstr "ARG"
-#: popthelp.c:508
+#: popthelp.c:548
msgid "Usage:"
msgstr "Uso:"
-#: popthelp.c:532
+#: popthelp.c:572
msgid "[OPTION...]"
msgstr "[OPCIÓN...]"
diff --git a/popt/po/hu.po b/popt/po/hu.po
index cb75f464a..550c065eb 100644
--- a/popt/po/hu.po
+++ b/popt/po/hu.po
@@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-30 08:12-0500\n"
+"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2000-08-03 23:26+0200\n"
"Last-Translator: László Németh <nemeth@qwertynet.hu>\n"
"Language-Team: Hungarian\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8-bit\n"
+"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@@ -59,55 +59,55 @@ msgstr ""
msgid "unknown error"
msgstr ""
-#: popthelp.c:58 popthelp.c:73
+#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "E súgó megjelenítése"
-#: popthelp.c:59 popthelp.c:74
+#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "Rövid használati utasítás megjelenítése"
-#: popthelp.c:62 popthelp.c:77
+#: popthelp.c:79
#, fuzzy
msgid "Display option defaults in message"
msgstr "Rövid használati utasítás megjelenítése"
-#: popthelp.c:122
+#: popthelp.c:124
msgid "NONE"
msgstr ""
-#: popthelp.c:124
+#: popthelp.c:126
msgid "VAL"
msgstr ""
-#: popthelp.c:128
+#: popthelp.c:130
msgid "INT"
msgstr ""
-#: popthelp.c:129
+#: popthelp.c:131
msgid "LONG"
msgstr ""
-#: popthelp.c:130
+#: popthelp.c:132
msgid "STRING"
msgstr ""
-#: popthelp.c:131
+#: popthelp.c:133
msgid "FLOAT"
msgstr ""
-#: popthelp.c:132
+#: popthelp.c:134
msgid "DOUBLE"
msgstr ""
-#: popthelp.c:133
+#: popthelp.c:135
msgid "ARG"
msgstr ""
-#: popthelp.c:508
+#: popthelp.c:548
msgid "Usage:"
msgstr ""
-#: popthelp.c:532
+#: popthelp.c:572
msgid "[OPTION...]"
msgstr ""
diff --git a/popt/po/id.po b/popt/po/id.po
index 44701c9c6..c689f2426 100644
--- a/popt/po/id.po
+++ b/popt/po/id.po
@@ -6,14 +6,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-30 08:12-0500\n"
+"POT-Creation-Date: 2004-02-29 07: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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
+"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@@ -64,54 +64,54 @@ msgstr ""
msgid "unknown error"
msgstr ""
-#: popthelp.c:58 popthelp.c:73
+#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr ""
-#: popthelp.c:59 popthelp.c:74
+#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr ""
-#: popthelp.c:62 popthelp.c:77
+#: popthelp.c:79
msgid "Display option defaults in message"
msgstr ""
-#: popthelp.c:122
+#: popthelp.c:124
msgid "NONE"
msgstr ""
-#: popthelp.c:124
+#: popthelp.c:126
msgid "VAL"
msgstr ""
-#: popthelp.c:128
+#: popthelp.c:130
msgid "INT"
msgstr ""
-#: popthelp.c:129
+#: popthelp.c:131
msgid "LONG"
msgstr ""
-#: popthelp.c:130
+#: popthelp.c:132
msgid "STRING"
msgstr ""
-#: popthelp.c:131
+#: popthelp.c:133
msgid "FLOAT"
msgstr ""
-#: popthelp.c:132
+#: popthelp.c:134
msgid "DOUBLE"
msgstr ""
-#: popthelp.c:133
+#: popthelp.c:135
msgid "ARG"
msgstr ""
-#: popthelp.c:508
+#: popthelp.c:548
msgid "Usage:"
msgstr ""
-#: popthelp.c:532
+#: popthelp.c:572
msgid "[OPTION...]"
msgstr ""
diff --git a/popt/po/is.po b/popt/po/is.po
index ea00ac1f4..0b3c9d59d 100644
--- a/popt/po/is.po
+++ b/popt/po/is.po
@@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-30 08:12-0500\n"
+"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2001-06-08 01:35+0000\n"
"Last-Translator: Richard Allen <ra@hp.is>\n"
"Language-Team: is <kde-isl@mmedia.is>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8-bit\n"
+"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@@ -59,54 +59,54 @@ msgstr "ekki tókst ađ taka frá minni"
msgid "unknown error"
msgstr "óţekkt villa"
-#: popthelp.c:58 popthelp.c:73
+#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "Sýna ţessa hjálp"
-#: popthelp.c:59 popthelp.c:74
+#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "Sýna stuttar notkunarleiđbeiningar"
-#: popthelp.c:62 popthelp.c:77
+#: popthelp.c:79
msgid "Display option defaults in message"
msgstr "Sýna sjálfgefin gildi rofa í skilabođum"
-#: popthelp.c:122
+#: popthelp.c:124
msgid "NONE"
msgstr "ENGIN"
-#: popthelp.c:124
+#: popthelp.c:126
msgid "VAL"
msgstr "VAL"
-#: popthelp.c:128
+#: popthelp.c:130
msgid "INT"
msgstr "INT"
-#: popthelp.c:129
+#: popthelp.c:131
msgid "LONG"
msgstr "LONG"
-#: popthelp.c:130
+#: popthelp.c:132
msgid "STRING"
msgstr "STRING"
-#: popthelp.c:131
+#: popthelp.c:133
msgid "FLOAT"
msgstr "FLOAT"
-#: popthelp.c:132
+#: popthelp.c:134
msgid "DOUBLE"
msgstr "DOUBLE"
-#: popthelp.c:133
+#: popthelp.c:135
msgid "ARG"
msgstr "ARG"
-#: popthelp.c:508
+#: popthelp.c:548
msgid "Usage:"
msgstr "Notkun:"
-#: popthelp.c:532
+#: popthelp.c:572
msgid "[OPTION...]"
msgstr "[ROFI...]"
diff --git a/popt/po/it.po b/popt/po/it.po
index 44701c9c6..c689f2426 100644
--- a/popt/po/it.po
+++ b/popt/po/it.po
@@ -6,14 +6,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-30 08:12-0500\n"
+"POT-Creation-Date: 2004-02-29 07: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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
+"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@@ -64,54 +64,54 @@ msgstr ""
msgid "unknown error"
msgstr ""
-#: popthelp.c:58 popthelp.c:73
+#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr ""
-#: popthelp.c:59 popthelp.c:74
+#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr ""
-#: popthelp.c:62 popthelp.c:77
+#: popthelp.c:79
msgid "Display option defaults in message"
msgstr ""
-#: popthelp.c:122
+#: popthelp.c:124
msgid "NONE"
msgstr ""
-#: popthelp.c:124
+#: popthelp.c:126
msgid "VAL"
msgstr ""
-#: popthelp.c:128
+#: popthelp.c:130
msgid "INT"
msgstr ""
-#: popthelp.c:129
+#: popthelp.c:131
msgid "LONG"
msgstr ""
-#: popthelp.c:130
+#: popthelp.c:132
msgid "STRING"
msgstr ""
-#: popthelp.c:131
+#: popthelp.c:133
msgid "FLOAT"
msgstr ""
-#: popthelp.c:132
+#: popthelp.c:134
msgid "DOUBLE"
msgstr ""
-#: popthelp.c:133
+#: popthelp.c:135
msgid "ARG"
msgstr ""
-#: popthelp.c:508
+#: popthelp.c:548
msgid "Usage:"
msgstr ""
-#: popthelp.c:532
+#: popthelp.c:572
msgid "[OPTION...]"
msgstr ""
diff --git a/popt/po/ja.po b/popt/po/ja.po
index 44701c9c6..c689f2426 100644
--- a/popt/po/ja.po
+++ b/popt/po/ja.po
@@ -6,14 +6,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-30 08:12-0500\n"
+"POT-Creation-Date: 2004-02-29 07: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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
+"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@@ -64,54 +64,54 @@ msgstr ""
msgid "unknown error"
msgstr ""
-#: popthelp.c:58 popthelp.c:73
+#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr ""
-#: popthelp.c:59 popthelp.c:74
+#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr ""
-#: popthelp.c:62 popthelp.c:77
+#: popthelp.c:79
msgid "Display option defaults in message"
msgstr ""
-#: popthelp.c:122
+#: popthelp.c:124
msgid "NONE"
msgstr ""
-#: popthelp.c:124
+#: popthelp.c:126
msgid "VAL"
msgstr ""
-#: popthelp.c:128
+#: popthelp.c:130
msgid "INT"
msgstr ""
-#: popthelp.c:129
+#: popthelp.c:131
msgid "LONG"
msgstr ""
-#: popthelp.c:130
+#: popthelp.c:132
msgid "STRING"
msgstr ""
-#: popthelp.c:131
+#: popthelp.c:133
msgid "FLOAT"
msgstr ""
-#: popthelp.c:132
+#: popthelp.c:134
msgid "DOUBLE"
msgstr ""
-#: popthelp.c:133
+#: popthelp.c:135
msgid "ARG"
msgstr ""
-#: popthelp.c:508
+#: popthelp.c:548
msgid "Usage:"
msgstr ""
-#: popthelp.c:532
+#: popthelp.c:572
msgid "[OPTION...]"
msgstr ""
diff --git a/popt/po/ko.po b/popt/po/ko.po
index 98517b742..dfe8f83e9 100644
--- a/popt/po/ko.po
+++ b/popt/po/ko.po
@@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-30 08:12-0500\n"
+"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2001-09-06 20:06+0900\n"
"Last-Translator: Jong-Hoon Ryu <redhat4u@netian.com>\n"
"Language-Team: GNU Translation project <ko@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=EUC-KR\n"
"Content-Transfer-Encoding: 8-bit\n"
+"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@@ -59,54 +59,54 @@ msgstr "¸Ţ¸đ¸Ž ÇҴ翥 ˝ÇĆĐÇß˝Ŕ´Ď´Ů"
msgid "unknown error"
msgstr "žË źö žř´Â żŔˇůŔÔ´Ď´Ů"
-#: popthelp.c:58 popthelp.c:73
+#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "ŔĚ ľľżň¸ťŔť ş¸żŠÁÝ´Ď´Ů"
-#: popthelp.c:59 popthelp.c:74
+#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "°Ł´ÜÇŃ ťçżëšýŔť ş¸żŠÁÝ´Ď´Ů"
-#: popthelp.c:62 popthelp.c:77
+#: popthelp.c:79
msgid "Display option defaults in message"
msgstr "ąâşťŔűŔÎ żÉźÇŔť ş¸żŠÁÝ´Ď´Ů"
-#: popthelp.c:122
+#: popthelp.c:124
msgid "NONE"
msgstr "žřŔ˝(NONE)"
-#: popthelp.c:124
+#: popthelp.c:126
msgid "VAL"
msgstr "°Ş(VAL)"
-#: popthelp.c:128
+#: popthelp.c:130
msgid "INT"
msgstr "Á¤źö(INT)"
-#: popthelp.c:129
+#: popthelp.c:131
msgid "LONG"
msgstr "Á¤źö(LONG)"
-#: popthelp.c:130
+#: popthelp.c:132
msgid "STRING"
msgstr "šŽŔÚż­(STRING)"
-#: popthelp.c:131
+#: popthelp.c:133
msgid "FLOAT"
msgstr "źŇźö(FLOAT)"
-#: popthelp.c:132
+#: popthelp.c:134
msgid "DOUBLE"
msgstr "źŇźö(DOUBLE)"
-#: popthelp.c:133
+#: popthelp.c:135
msgid "ARG"
msgstr "ŔÎźö(ARG)"
-#: popthelp.c:508
+#: popthelp.c:548
msgid "Usage:"
msgstr "ťçżëšý:"
-#: popthelp.c:532
+#: popthelp.c:572
msgid "[OPTION...]"
msgstr "[żÉźÇ...]"
diff --git a/popt/po/no.po b/popt/po/no.po
index 3e855daf7..419af66df 100644
--- a/popt/po/no.po
+++ b/popt/po/no.po
@@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-30 08:12-0500\n"
+"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2001-06-27 11:05+0200\n"
"Last-Translator: Kjartan Maraas <kmaraas@online.no>\n"
"Language-Team: Norwegian <no@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8-bit\n"
+"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@@ -59,54 +59,54 @@ msgstr "minneallokering feilet"
msgid "unknown error"
msgstr "ukjent feil"
-#: popthelp.c:58 popthelp.c:73
+#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "Vis denne hjelpmeldingen"
-#: popthelp.c:59 popthelp.c:74
+#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "Vis kort bruksmelding"
-#: popthelp.c:62 popthelp.c:77
+#: popthelp.c:79
msgid "Display option defaults in message"
msgstr "Vis forvalgte flagg i melding"
-#: popthelp.c:122
+#: popthelp.c:124
msgid "NONE"
msgstr "INGEN"
-#: popthelp.c:124
+#: popthelp.c:126
msgid "VAL"
msgstr "VERDI"
-#: popthelp.c:128
+#: popthelp.c:130
msgid "INT"
msgstr "HELTALL"
-#: popthelp.c:129
+#: popthelp.c:131
msgid "LONG"
msgstr "LONG"
-#: popthelp.c:130
+#: popthelp.c:132
msgid "STRING"
msgstr "STRENG"
-#: popthelp.c:131
+#: popthelp.c:133
msgid "FLOAT"
msgstr "FLYTTALL"
-#: popthelp.c:132
+#: popthelp.c:134
msgid "DOUBLE"
msgstr "DOUBLE"
-#: popthelp.c:133
+#: popthelp.c:135
msgid "ARG"
msgstr "ARG"
-#: popthelp.c:508
+#: popthelp.c:548
msgid "Usage:"
msgstr "Bruk:"
-#: popthelp.c:532
+#: popthelp.c:572
msgid "[OPTION...]"
msgstr "[FLAGG...]"
diff --git a/popt/po/pl.po b/popt/po/pl.po
index 30a8767d9..79ece5b0f 100644
--- a/popt/po/pl.po
+++ b/popt/po/pl.po
@@ -5,14 +5,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.9-20030515\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-30 08:12-0500\n"
+"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2003-06-08 20:32+0200\n"
"Last-Translator: Jakub Bogusz <qboosh@pld.org.pl>\n"
"Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
+"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@@ -63,55 +63,55 @@ msgstr "błąd alokacji pamięci"
msgid "unknown error"
msgstr "nieznany błąd"
-#: popthelp.c:58 popthelp.c:73
+#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "Pokaż tę pomoc"
-#: popthelp.c:59 popthelp.c:74
+#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "Wyświetl skrócony sposób użycia"
-#: popthelp.c:62 popthelp.c:77
+#: popthelp.c:79
msgid "Display option defaults in message"
msgstr "Wyświetl domyślne opcje w opisie"
-#: popthelp.c:122
+#: popthelp.c:124
msgid "NONE"
msgstr "BRAK"
-#: popthelp.c:124
+#: popthelp.c:126
msgid "VAL"
msgstr "WART"
-#: popthelp.c:128
+#: popthelp.c:130
msgid "INT"
msgstr "INT"
-#: popthelp.c:129
+#: popthelp.c:131
msgid "LONG"
msgstr "LONG"
-#: popthelp.c:130
+#: popthelp.c:132
msgid "STRING"
msgstr "ŁAŃCUCH"
-#: popthelp.c:131
+#: popthelp.c:133
msgid "FLOAT"
msgstr "FLOAT"
-#: popthelp.c:132
+#: popthelp.c:134
msgid "DOUBLE"
msgstr "DOUBLE"
-#: popthelp.c:133
+#: popthelp.c:135
msgid "ARG"
msgstr "PARAM"
-#: popthelp.c:508
+#: popthelp.c:548
msgid "Usage:"
msgstr "Składnia:"
-#: popthelp.c:532
+#: popthelp.c:572
msgid "[OPTION...]"
msgstr "[OPCJA...]"
diff --git a/popt/po/popt.pot b/popt/po/popt.pot
index f75465a05..670c404e4 100644
--- a/popt/po/popt.pot
+++ b/popt/po/popt.pot
@@ -7,8 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-30 08:12-0500\n"
+"POT-Creation-Date: 2004-02-29 07: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"
@@ -65,54 +64,54 @@ msgstr ""
msgid "unknown error"
msgstr ""
-#: popthelp.c:58 popthelp.c:73
+#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr ""
-#: popthelp.c:59 popthelp.c:74
+#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr ""
-#: popthelp.c:62 popthelp.c:77
+#: popthelp.c:79
msgid "Display option defaults in message"
msgstr ""
-#: popthelp.c:122
+#: popthelp.c:124
msgid "NONE"
msgstr ""
-#: popthelp.c:124
+#: popthelp.c:126
msgid "VAL"
msgstr ""
-#: popthelp.c:128
+#: popthelp.c:130
msgid "INT"
msgstr ""
-#: popthelp.c:129
+#: popthelp.c:131
msgid "LONG"
msgstr ""
-#: popthelp.c:130
+#: popthelp.c:132
msgid "STRING"
msgstr ""
-#: popthelp.c:131
+#: popthelp.c:133
msgid "FLOAT"
msgstr ""
-#: popthelp.c:132
+#: popthelp.c:134
msgid "DOUBLE"
msgstr ""
-#: popthelp.c:133
+#: popthelp.c:135
msgid "ARG"
msgstr ""
-#: popthelp.c:508
+#: popthelp.c:548
msgid "Usage:"
msgstr ""
-#: popthelp.c:532
+#: popthelp.c:572
msgid "[OPTION...]"
msgstr ""
diff --git a/popt/po/pt.po b/popt/po/pt.po
index 341f4c264..e31598542 100644
--- a/popt/po/pt.po
+++ b/popt/po/pt.po
@@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-30 08:12-0500\n"
+"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2002-02-13 18:32+0000\n"
"Last-Translator: Pedro Morais <morais@kde.org>\n"
"Language-Team: pt <morais@kde.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
+"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@@ -59,54 +59,54 @@ msgstr "alocaçăo de memória falhou"
msgid "unknown error"
msgstr "erro desconhecido"
-#: popthelp.c:58 popthelp.c:73
+#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "Mostrar esta mensagem de ajuda"
-#: popthelp.c:59 popthelp.c:74
+#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "Mostrar uma mensagem de utilizaçăo sucinta"
-#: popthelp.c:62 popthelp.c:77
+#: popthelp.c:79
msgid "Display option defaults in message"
msgstr "Mostrar valor por omissăo das opçőes na mensagem"
-#: popthelp.c:122
+#: popthelp.c:124
msgid "NONE"
msgstr "NONE"
-#: popthelp.c:124
+#: popthelp.c:126
msgid "VAL"
msgstr "VAL"
-#: popthelp.c:128
+#: popthelp.c:130
msgid "INT"
msgstr "INT"
-#: popthelp.c:129
+#: popthelp.c:131
msgid "LONG"
msgstr "LONG"
-#: popthelp.c:130
+#: popthelp.c:132
msgid "STRING"
msgstr "STRING"
-#: popthelp.c:131
+#: popthelp.c:133
msgid "FLOAT"
msgstr "FLOAT"
-#: popthelp.c:132
+#: popthelp.c:134
msgid "DOUBLE"
msgstr "DOUBLE"
-#: popthelp.c:133
+#: popthelp.c:135
msgid "ARG"
msgstr "ARG"
-#: popthelp.c:508
+#: popthelp.c:548
msgid "Usage:"
msgstr "Utilizaçăo:"
-#: popthelp.c:532
+#: popthelp.c:572
msgid "[OPTION...]"
msgstr "[OPÇĂO...]"
diff --git a/popt/po/pt_BR.po b/popt/po/pt_BR.po
index 44701c9c6..c689f2426 100644
--- a/popt/po/pt_BR.po
+++ b/popt/po/pt_BR.po
@@ -6,14 +6,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-30 08:12-0500\n"
+"POT-Creation-Date: 2004-02-29 07: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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
+"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@@ -64,54 +64,54 @@ msgstr ""
msgid "unknown error"
msgstr ""
-#: popthelp.c:58 popthelp.c:73
+#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr ""
-#: popthelp.c:59 popthelp.c:74
+#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr ""
-#: popthelp.c:62 popthelp.c:77
+#: popthelp.c:79
msgid "Display option defaults in message"
msgstr ""
-#: popthelp.c:122
+#: popthelp.c:124
msgid "NONE"
msgstr ""
-#: popthelp.c:124
+#: popthelp.c:126
msgid "VAL"
msgstr ""
-#: popthelp.c:128
+#: popthelp.c:130
msgid "INT"
msgstr ""
-#: popthelp.c:129
+#: popthelp.c:131
msgid "LONG"
msgstr ""
-#: popthelp.c:130
+#: popthelp.c:132
msgid "STRING"
msgstr ""
-#: popthelp.c:131
+#: popthelp.c:133
msgid "FLOAT"
msgstr ""
-#: popthelp.c:132
+#: popthelp.c:134
msgid "DOUBLE"
msgstr ""
-#: popthelp.c:133
+#: popthelp.c:135
msgid "ARG"
msgstr ""
-#: popthelp.c:508
+#: popthelp.c:548
msgid "Usage:"
msgstr ""
-#: popthelp.c:532
+#: popthelp.c:572
msgid "[OPTION...]"
msgstr ""
diff --git a/popt/po/ro.po b/popt/po/ro.po
index a285571e1..6cb8546ca 100644
--- a/popt/po/ro.po
+++ b/popt/po/ro.po
@@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-30 08:12-0500\n"
+"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2000-06-14 23:23+EST\n"
"Last-Translator: Cristian Gafton <gafton@redhat.com>\n"
"Language-Team: Romanian <ro@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
+"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@@ -60,55 +60,55 @@ msgstr ""
msgid "unknown error"
msgstr "eroare necuinoscuta"
-#: popthelp.c:58 popthelp.c:73
+#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "Afisare mesaj de help"
-#: popthelp.c:59 popthelp.c:74
+#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "Afisare mesaj sintaxa sumar"
-#: popthelp.c:62 popthelp.c:77
+#: popthelp.c:79
#, fuzzy
msgid "Display option defaults in message"
msgstr "Afisare mesaj sintaxa sumar"
-#: popthelp.c:122
+#: popthelp.c:124
msgid "NONE"
msgstr ""
-#: popthelp.c:124
+#: popthelp.c:126
msgid "VAL"
msgstr ""
-#: popthelp.c:128
+#: popthelp.c:130
msgid "INT"
msgstr ""
-#: popthelp.c:129
+#: popthelp.c:131
msgid "LONG"
msgstr ""
-#: popthelp.c:130
+#: popthelp.c:132
msgid "STRING"
msgstr ""
-#: popthelp.c:131
+#: popthelp.c:133
msgid "FLOAT"
msgstr ""
-#: popthelp.c:132
+#: popthelp.c:134
msgid "DOUBLE"
msgstr ""
-#: popthelp.c:133
+#: popthelp.c:135
msgid "ARG"
msgstr ""
-#: popthelp.c:508
+#: popthelp.c:548
msgid "Usage:"
msgstr "Sintaxa:"
-#: popthelp.c:532
+#: popthelp.c:572
msgid "[OPTION...]"
msgstr "[OPTIUNE...]"
diff --git a/popt/po/ru.po b/popt/po/ru.po
index 8c6893d27..6289aa367 100644
--- a/popt/po/ru.po
+++ b/popt/po/ru.po
@@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-30 08:12-0500\n"
+"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2001-07-05 21:00-0500\n"
"Last-Translator: Eugene Kanter <eugene@blackcatlinux.com>\n"
"Language-Team: Black Cat Linux Team <blackcat-support@blackcatlinux.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=koi8-r\n"
"Content-Transfer-Encoding: 8bit\n"
+"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@@ -59,54 +59,54 @@ msgstr "ĎŰÉÂËÁ ×ŮÄĹĚĹÎÉŃ ĐÁÍŃÔÉ"
msgid "unknown error"
msgstr "ÎĹÉÚ×ĹÓÔÎÁŃ ĎŰÉÂËÁ"
-#: popthelp.c:58 popthelp.c:73
+#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "đĎËÁÚÁÔŘ ÜÔĎ ÓĎĎÂÝĹÎÉĹ"
-#: popthelp.c:59 popthelp.c:74
+#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "đĎËÁÚÁÔŘ ËŇÁÔËŐŔ ÉÎÓÔŇŐËĂÉŔ ĐĎ ÉÓĐĎĚŘÚĎ×ÁÎÉŔ"
-#: popthelp.c:62 popthelp.c:77
+#: popthelp.c:79
msgid "Display option defaults in message"
msgstr "đĎËÁÚÁÔŘ ĐÁŇÁÍĹÔŇŮ ĐĎ ŐÍĎĚŢÁÎÉŔ"
-#: popthelp.c:122
+#: popthelp.c:124
msgid "NONE"
msgstr "NONE"
-#: popthelp.c:124
+#: popthelp.c:126
msgid "VAL"
msgstr "VAL"
-#: popthelp.c:128
+#: popthelp.c:130
msgid "INT"
msgstr "INT"
-#: popthelp.c:129
+#: popthelp.c:131
msgid "LONG"
msgstr "LONG"
-#: popthelp.c:130
+#: popthelp.c:132
msgid "STRING"
msgstr "STRING"
-#: popthelp.c:131
+#: popthelp.c:133
msgid "FLOAT"
msgstr "FLOAT"
-#: popthelp.c:132
+#: popthelp.c:134
msgid "DOUBLE"
msgstr "DOUBLE"
-#: popthelp.c:133
+#: popthelp.c:135
msgid "ARG"
msgstr "ARG"
-#: popthelp.c:508
+#: popthelp.c:548
msgid "Usage:"
msgstr "éÓĐĎĚŘÚĎ×ÁÎÉĹ:"
-#: popthelp.c:532
+#: popthelp.c:572
msgid "[OPTION...]"
msgstr "[đáňáíĺôň...]"
diff --git a/popt/po/sk.po b/popt/po/sk.po
index 478ce97c0..4c4b75fa8 100644
--- a/popt/po/sk.po
+++ b/popt/po/sk.po
@@ -5,14 +5,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-30 08:12-0500\n"
+"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 1999-08-04 21:40+0200\n"
"Last-Translator: Stanislav Meduna <stano@eunet.sk>\n"
"Language-Team: Slovak <sk-i18n@rak.isternet.sk>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
+"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@@ -63,55 +63,55 @@ msgstr ""
msgid "unknown error"
msgstr ""
-#: popthelp.c:58 popthelp.c:73
+#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "Vypísať túto správu"
-#: popthelp.c:59 popthelp.c:74
+#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "Zobraziť stručný návod na použitie"
-#: popthelp.c:62 popthelp.c:77
+#: popthelp.c:79
#, fuzzy
msgid "Display option defaults in message"
msgstr "Zobraziť stručný návod na použitie"
-#: popthelp.c:122
+#: popthelp.c:124
msgid "NONE"
msgstr ""
-#: popthelp.c:124
+#: popthelp.c:126
msgid "VAL"
msgstr ""
-#: popthelp.c:128
+#: popthelp.c:130
msgid "INT"
msgstr ""
-#: popthelp.c:129
+#: popthelp.c:131
msgid "LONG"
msgstr ""
-#: popthelp.c:130
+#: popthelp.c:132
msgid "STRING"
msgstr ""
-#: popthelp.c:131
+#: popthelp.c:133
msgid "FLOAT"
msgstr ""
-#: popthelp.c:132
+#: popthelp.c:134
msgid "DOUBLE"
msgstr ""
-#: popthelp.c:133
+#: popthelp.c:135
msgid "ARG"
msgstr ""
-#: popthelp.c:508
+#: popthelp.c:548
msgid "Usage:"
msgstr ""
-#: popthelp.c:532
+#: popthelp.c:572
msgid "[OPTION...]"
msgstr ""
diff --git a/popt/po/sl.po b/popt/po/sl.po
index 6c3e4678c..5c8e4c6dc 100644
--- a/popt/po/sl.po
+++ b/popt/po/sl.po
@@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-30 08:12-0500\n"
+"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2000-09-05 12:30+0200\n"
"Last-Translator: Roman Maurer <roman.maurer@hermes.si>\n"
"Language-Team: Slovenian <sl@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
+"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@@ -59,55 +59,55 @@ msgstr ""
msgid "unknown error"
msgstr ""
-#: popthelp.c:58 popthelp.c:73
+#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "Prikaži to sporočilo s pomočjo"
-#: popthelp.c:59 popthelp.c:74
+#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "Prikaži kratko sporočilo o uporabi"
-#: popthelp.c:62 popthelp.c:77
+#: popthelp.c:79
#, fuzzy
msgid "Display option defaults in message"
msgstr "Prikaži kratko sporočilo o uporabi"
-#: popthelp.c:122
+#: popthelp.c:124
msgid "NONE"
msgstr ""
-#: popthelp.c:124
+#: popthelp.c:126
msgid "VAL"
msgstr ""
-#: popthelp.c:128
+#: popthelp.c:130
msgid "INT"
msgstr ""
-#: popthelp.c:129
+#: popthelp.c:131
msgid "LONG"
msgstr ""
-#: popthelp.c:130
+#: popthelp.c:132
msgid "STRING"
msgstr ""
-#: popthelp.c:131
+#: popthelp.c:133
msgid "FLOAT"
msgstr ""
-#: popthelp.c:132
+#: popthelp.c:134
msgid "DOUBLE"
msgstr ""
-#: popthelp.c:133
+#: popthelp.c:135
msgid "ARG"
msgstr ""
-#: popthelp.c:508
+#: popthelp.c:548
msgid "Usage:"
msgstr ""
-#: popthelp.c:532
+#: popthelp.c:572
msgid "[OPTION...]"
msgstr ""
diff --git a/popt/po/sr.po b/popt/po/sr.po
index 44701c9c6..c689f2426 100644
--- a/popt/po/sr.po
+++ b/popt/po/sr.po
@@ -6,14 +6,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-30 08:12-0500\n"
+"POT-Creation-Date: 2004-02-29 07: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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
+"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@@ -64,54 +64,54 @@ msgstr ""
msgid "unknown error"
msgstr ""
-#: popthelp.c:58 popthelp.c:73
+#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr ""
-#: popthelp.c:59 popthelp.c:74
+#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr ""
-#: popthelp.c:62 popthelp.c:77
+#: popthelp.c:79
msgid "Display option defaults in message"
msgstr ""
-#: popthelp.c:122
+#: popthelp.c:124
msgid "NONE"
msgstr ""
-#: popthelp.c:124
+#: popthelp.c:126
msgid "VAL"
msgstr ""
-#: popthelp.c:128
+#: popthelp.c:130
msgid "INT"
msgstr ""
-#: popthelp.c:129
+#: popthelp.c:131
msgid "LONG"
msgstr ""
-#: popthelp.c:130
+#: popthelp.c:132
msgid "STRING"
msgstr ""
-#: popthelp.c:131
+#: popthelp.c:133
msgid "FLOAT"
msgstr ""
-#: popthelp.c:132
+#: popthelp.c:134
msgid "DOUBLE"
msgstr ""
-#: popthelp.c:133
+#: popthelp.c:135
msgid "ARG"
msgstr ""
-#: popthelp.c:508
+#: popthelp.c:548
msgid "Usage:"
msgstr ""
-#: popthelp.c:532
+#: popthelp.c:572
msgid "[OPTION...]"
msgstr ""
diff --git a/popt/po/sv.po b/popt/po/sv.po
index 92ffc3dce..f3e98d831 100644
--- a/popt/po/sv.po
+++ b/popt/po/sv.po
@@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-30 08:12-0500\n"
+"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2001-07-12 22:26+0100\n"
"Last-Translator: Christian Rose <menthos@menthos.com>\n"
"Language-Team: Swedish <sv@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
+"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@@ -59,54 +59,54 @@ msgstr "minnesallokering misslyckades"
msgid "unknown error"
msgstr "okänt fel"
-#: popthelp.c:58 popthelp.c:73
+#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "Visa denna hjälptext"
-#: popthelp.c:59 popthelp.c:74
+#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "Visa en kortfattad användningstext"
-#: popthelp.c:62 popthelp.c:77
+#: popthelp.c:79
msgid "Display option defaults in message"
msgstr "Visa standardalternativ för flaggor i meddelande"
-#: popthelp.c:122
+#: popthelp.c:124
msgid "NONE"
msgstr "INGET"
-#: popthelp.c:124
+#: popthelp.c:126
msgid "VAL"
msgstr "VÄRDE"
-#: popthelp.c:128
+#: popthelp.c:130
msgid "INT"
msgstr "HELTAL"
-#: popthelp.c:129
+#: popthelp.c:131
msgid "LONG"
msgstr "LĹNG"
-#: popthelp.c:130
+#: popthelp.c:132
msgid "STRING"
msgstr "STRÄNG"
-#: popthelp.c:131
+#: popthelp.c:133
msgid "FLOAT"
msgstr "FLYTTAL"
-#: popthelp.c:132
+#: popthelp.c:134
msgid "DOUBLE"
msgstr "DUBBEL"
-#: popthelp.c:133
+#: popthelp.c:135
msgid "ARG"
msgstr "ARG"
-#: popthelp.c:508
+#: popthelp.c:548
msgid "Usage:"
msgstr "Användning:"
-#: popthelp.c:532
+#: popthelp.c:572
msgid "[OPTION...]"
msgstr "[FLAGGA...]"
diff --git a/popt/po/tr.po b/popt/po/tr.po
index 5dd2c10c0..49fbc1d22 100644
--- a/popt/po/tr.po
+++ b/popt/po/tr.po
@@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-30 08:12-0500\n"
+"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 2000-02-11 13:01+0200\n"
"Last-Translator: Nilgun Belma Buguner <nilgun@technologist.com>\n"
"Language-Team: Turkish <tr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso8859-9\n"
"Content-Transfer-Encoding: 8bit\n"
+"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@@ -59,55 +59,55 @@ msgstr ""
msgid "unknown error"
msgstr "bilinmeyen hata"
-#: popthelp.c:58 popthelp.c:73
+#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "Bu yardým iletisini gösterir"
-#: popthelp.c:59 popthelp.c:74
+#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "Kýsa bir kullaným iletisi göster"
-#: popthelp.c:62 popthelp.c:77
+#: popthelp.c:79
#, fuzzy
msgid "Display option defaults in message"
msgstr "Kýsa bir kullaným iletisi göster"
-#: popthelp.c:122
+#: popthelp.c:124
msgid "NONE"
msgstr "YOK"
-#: popthelp.c:124
+#: popthelp.c:126
msgid "VAL"
msgstr "DEĐ"
-#: popthelp.c:128
+#: popthelp.c:130
msgid "INT"
msgstr "INT"
-#: popthelp.c:129
+#: popthelp.c:131
msgid "LONG"
msgstr "LONG"
-#: popthelp.c:130
+#: popthelp.c:132
msgid "STRING"
msgstr "STRING"
-#: popthelp.c:131
+#: popthelp.c:133
msgid "FLOAT"
msgstr "FLOAT"
-#: popthelp.c:132
+#: popthelp.c:134
msgid "DOUBLE"
msgstr "DOUBLE"
-#: popthelp.c:133
+#: popthelp.c:135
msgid "ARG"
msgstr "ARG"
-#: popthelp.c:508
+#: popthelp.c:548
msgid "Usage:"
msgstr "Kullanýmý:"
-#: popthelp.c:532
+#: popthelp.c:572
msgid "[OPTION...]"
msgstr "[SEÇENEK...]"
diff --git a/popt/po/uk.po b/popt/po/uk.po
index 85bdacf3f..0ddd5b98d 100644
--- a/popt/po/uk.po
+++ b/popt/po/uk.po
@@ -5,14 +5,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-30 08:12-0500\n"
+"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 1999-09-30 16:54+0200\n"
"Last-Translator: Yuri Syrota <rasta@renome.rovno.ua>\n"
"Language-Team: Ukrainian <uk@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=koi8-u\n"
"Content-Transfer-Encoding: 8bit\n"
+"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@@ -63,55 +63,55 @@ msgstr ""
msgid "unknown error"
msgstr ""
-#: popthelp.c:58 popthelp.c:73
+#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "đĎËÁÚÁÔÉ ĂŔ ÄĎ׌ÄËŐ"
-#: popthelp.c:59 popthelp.c:74
+#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "đĎËÁÚÁÔÉ ËĎŇĎÔËŐ ÄĎ׌ÄËŐ ĐŇĎ ×ÉËĎŇÉÓÔÁÎÎŃ"
-#: popthelp.c:62 popthelp.c:77
+#: popthelp.c:79
#, fuzzy
msgid "Display option defaults in message"
msgstr "đĎËÁÚÁÔÉ ËĎŇĎÔËŐ ÄĎ׌ÄËŐ ĐŇĎ ×ÉËĎŇÉÓÔÁÎÎŃ"
-#: popthelp.c:122
+#: popthelp.c:124
msgid "NONE"
msgstr ""
-#: popthelp.c:124
+#: popthelp.c:126
msgid "VAL"
msgstr ""
-#: popthelp.c:128
+#: popthelp.c:130
msgid "INT"
msgstr ""
-#: popthelp.c:129
+#: popthelp.c:131
msgid "LONG"
msgstr ""
-#: popthelp.c:130
+#: popthelp.c:132
msgid "STRING"
msgstr ""
-#: popthelp.c:131
+#: popthelp.c:133
msgid "FLOAT"
msgstr ""
-#: popthelp.c:132
+#: popthelp.c:134
msgid "DOUBLE"
msgstr ""
-#: popthelp.c:133
+#: popthelp.c:135
msgid "ARG"
msgstr ""
-#: popthelp.c:508
+#: popthelp.c:548
msgid "Usage:"
msgstr ""
-#: popthelp.c:532
+#: popthelp.c:572
msgid "[OPTION...]"
msgstr ""
diff --git a/popt/po/wa.po b/popt/po/wa.po
index 8d06066e4..6176007e6 100644
--- a/popt/po/wa.po
+++ b/popt/po/wa.po
@@ -9,14 +9,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-30 08:12-0500\n"
+"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 1999-03-18 23:11+0100\n"
"Last-Translator: Nobody yet\n"
"Language-Team: walon <linux-wa@chanae.alphanet.ch>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
+"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@@ -67,55 +67,55 @@ msgstr ""
msgid "unknown error"
msgstr ""
-#: popthelp.c:58 popthelp.c:73
+#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "Mostrer ci messaedje d' aide chal"
-#: popthelp.c:59 popthelp.c:74
+#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "Mostre on court messaedje so kmint vos č siervi"
-#: popthelp.c:62 popthelp.c:77
+#: popthelp.c:79
#, fuzzy
msgid "Display option defaults in message"
msgstr "Mostre on court messaedje so kmint vos č siervi"
-#: popthelp.c:122
+#: popthelp.c:124
msgid "NONE"
msgstr ""
-#: popthelp.c:124
+#: popthelp.c:126
msgid "VAL"
msgstr ""
-#: popthelp.c:128
+#: popthelp.c:130
msgid "INT"
msgstr ""
-#: popthelp.c:129
+#: popthelp.c:131
msgid "LONG"
msgstr ""
-#: popthelp.c:130
+#: popthelp.c:132
msgid "STRING"
msgstr ""
-#: popthelp.c:131
+#: popthelp.c:133
msgid "FLOAT"
msgstr ""
-#: popthelp.c:132
+#: popthelp.c:134
msgid "DOUBLE"
msgstr ""
-#: popthelp.c:133
+#: popthelp.c:135
msgid "ARG"
msgstr ""
-#: popthelp.c:508
+#: popthelp.c:548
msgid "Usage:"
msgstr ""
-#: popthelp.c:532
+#: popthelp.c:572
msgid "[OPTION...]"
msgstr ""
diff --git a/popt/po/zh.po b/popt/po/zh.po
index 44701c9c6..c689f2426 100644
--- a/popt/po/zh.po
+++ b/popt/po/zh.po
@@ -6,14 +6,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-30 08:12-0500\n"
+"POT-Creation-Date: 2004-02-29 07: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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
+"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@@ -64,54 +64,54 @@ msgstr ""
msgid "unknown error"
msgstr ""
-#: popthelp.c:58 popthelp.c:73
+#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr ""
-#: popthelp.c:59 popthelp.c:74
+#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr ""
-#: popthelp.c:62 popthelp.c:77
+#: popthelp.c:79
msgid "Display option defaults in message"
msgstr ""
-#: popthelp.c:122
+#: popthelp.c:124
msgid "NONE"
msgstr ""
-#: popthelp.c:124
+#: popthelp.c:126
msgid "VAL"
msgstr ""
-#: popthelp.c:128
+#: popthelp.c:130
msgid "INT"
msgstr ""
-#: popthelp.c:129
+#: popthelp.c:131
msgid "LONG"
msgstr ""
-#: popthelp.c:130
+#: popthelp.c:132
msgid "STRING"
msgstr ""
-#: popthelp.c:131
+#: popthelp.c:133
msgid "FLOAT"
msgstr ""
-#: popthelp.c:132
+#: popthelp.c:134
msgid "DOUBLE"
msgstr ""
-#: popthelp.c:133
+#: popthelp.c:135
msgid "ARG"
msgstr ""
-#: popthelp.c:508
+#: popthelp.c:548
msgid "Usage:"
msgstr ""
-#: popthelp.c:532
+#: popthelp.c:572
msgid "[OPTION...]"
msgstr ""
diff --git a/popt/po/zh_CN.GB2312.po b/popt/po/zh_CN.GB2312.po
index ed4359002..691ffe179 100644
--- a/popt/po/zh_CN.GB2312.po
+++ b/popt/po/zh_CN.GB2312.po
@@ -1,14 +1,14 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-30 08:12-0500\n"
+"POT-Creation-Date: 2004-02-29 07:48-0500\n"
"PO-Revision-Date: 1999-11-11 05:04+0800\n"
"Last-Translator: Dillion Chen <dillon.chen@turbolinux.com.cn>\n"
"Language-Team: TLDN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=gb2312\n"
"Content-Transfer-Encoding: 8bit\n"
+"Report-Msgid-Bugs-To: \n"
#: popt.c:35
msgid "unknown errno"
@@ -59,55 +59,55 @@ msgstr ""
msgid "unknown error"
msgstr ""
-#: popthelp.c:58 popthelp.c:73
+#: popthelp.c:64 popthelp.c:75
msgid "Show this help message"
msgstr "ĎÔĘžŐâĚő°ďÖúĐĹϢ"
-#: popthelp.c:59 popthelp.c:74
+#: popthelp.c:65 popthelp.c:76
msgid "Display brief usage message"
msgstr "ĎÔĘžźňśĚĘšÓĂĐĹϢ"
-#: popthelp.c:62 popthelp.c:77
+#: popthelp.c:79
#, fuzzy
msgid "Display option defaults in message"
msgstr "ĎÔĘžźňśĚĘšÓĂĐĹϢ"
-#: popthelp.c:122
+#: popthelp.c:124
msgid "NONE"
msgstr ""
-#: popthelp.c:124
+#: popthelp.c:126
msgid "VAL"
msgstr ""
-#: popthelp.c:128
+#: popthelp.c:130
msgid "INT"
msgstr ""
-#: popthelp.c:129
+#: popthelp.c:131
msgid "LONG"
msgstr ""
-#: popthelp.c:130
+#: popthelp.c:132
msgid "STRING"
msgstr ""
-#: popthelp.c:131
+#: popthelp.c:133
msgid "FLOAT"
msgstr ""
-#: popthelp.c:132
+#: popthelp.c:134
msgid "DOUBLE"
msgstr ""
-#: popthelp.c:133
+#: popthelp.c:135
msgid "ARG"
msgstr ""
-#: popthelp.c:508
+#: popthelp.c:548
msgid "Usage:"
msgstr ""
-#: popthelp.c:532
+#: popthelp.c:572
msgid "[OPTION...]"
msgstr ""
diff --git a/rpm.spec.in b/rpm.spec.in
index 6e3162fca..a4839f53a 100644
--- a/rpm.spec.in
+++ b/rpm.spec.in
@@ -482,6 +482,9 @@ exit 0
%{__includedir}/popt.h
%changelog
+* Mon Mar 1 2004 Jeff Johnson <jbj@jbj.org> 4.3-0.17
+- permit globs in macrofiles: directive (#117217).
+
* Wed Feb 25 2004 Jeff Johnson <jbj@jbj.org> 4.3-0.15
- serialize rpmtsRun() using fcntl on /var/lock/rpm/transaction.
diff --git a/rpmio/macro.c b/rpmio/macro.c
index 8f412b7d9..bb8b3ae9f 100644
--- a/rpmio/macro.c
+++ b/rpmio/macro.c
@@ -92,21 +92,17 @@ typedef /*@abstract@*/ struct MacroBuf_s {
/*@-exportlocal -exportheadervar@*/
-#define MAX_MACRO_DEPTH 16
+#define _MAX_MACRO_DEPTH 16
/*@unchecked@*/
-int max_macro_depth = MAX_MACRO_DEPTH;
+int max_macro_depth = _MAX_MACRO_DEPTH;
-#ifdef DEBUG_MACROS
+#define _PRINT_MACRO_TRACE 0
/*@unchecked@*/
-int print_macro_trace = 0;
-/*@unchecked@*/
-int print_expand_trace = 0;
-#else
-/*@unchecked@*/
-int print_macro_trace = 0;
+int print_macro_trace = _PRINT_MACRO_TRACE;
+
+#define _PRINT_EXPAND_TRACE 0
/*@unchecked@*/
-int print_expand_trace = 0;
-#endif
+int print_expand_trace = _PRINT_EXPAND_TRACE;
/*@=exportlocal =exportheadervar@*/
#define MACRO_CHUNK_SIZE 16
@@ -241,7 +237,7 @@ rpmDumpMacroTable(MacroContext mc, FILE * fp)
* Find entry in macro table.
* @param mc macro context
* @param name macro name
- * @param namelen no. of byes
+ * @param namelen no. of bytes
* @return address of slot in macro table with name (or NULL)
*/
/*@-boundswrite@*/
@@ -1483,6 +1479,235 @@ expandMacro(MacroBuf mb)
}
/* =============================================================== */
+/* XXX dupe'd to avoid change in linkage conventions. */
+
+#define POPT_ERROR_NOARG -10 /*!< missing argument */
+#define POPT_ERROR_BADQUOTE -15 /*!< error in paramter quoting */
+#define POPT_ERROR_MALLOC -21 /*!< memory allocation failed */
+
+#define POPT_ARGV_ARRAY_GROW_DELTA 5
+
+/*@-boundswrite@*/
+static int poptDupArgv(int argc, const char **argv,
+ int * argcPtr, const char *** argvPtr)
+{
+ size_t nb = (argc + 1) * sizeof(*argv);
+ const char ** argv2;
+ char * dst;
+ int i;
+
+ if (argc <= 0 || argv == NULL) /* XXX can't happen */
+ return POPT_ERROR_NOARG;
+ for (i = 0; i < argc; i++) {
+ if (argv[i] == NULL)
+ return POPT_ERROR_NOARG;
+ nb += strlen(argv[i]) + 1;
+ }
+
+ dst = malloc(nb);
+ if (dst == NULL) /* XXX can't happen */
+ return POPT_ERROR_MALLOC;
+ argv2 = (void *) dst;
+ dst += (argc + 1) * sizeof(*argv);
+
+ /*@-branchstate@*/
+ for (i = 0; i < argc; i++) {
+ argv2[i] = dst;
+ dst += strlen(strcpy(dst, argv[i])) + 1;
+ }
+ /*@=branchstate@*/
+ argv2[argc] = NULL;
+
+ if (argvPtr) {
+ *argvPtr = argv2;
+ } else {
+ free(argv2);
+ argv2 = NULL;
+ }
+ if (argcPtr)
+ *argcPtr = argc;
+ return 0;
+}
+/*@=boundswrite@*/
+
+/*@-bounds@*/
+static int poptParseArgvString(const char * s, int * argcPtr, const char *** argvPtr)
+{
+ const char * src;
+ char quote = '\0';
+ int argvAlloced = POPT_ARGV_ARRAY_GROW_DELTA;
+ const char ** argv = malloc(sizeof(*argv) * argvAlloced);
+ int argc = 0;
+ int buflen = strlen(s) + 1;
+ char * buf = memset(alloca(buflen), 0, buflen);
+ int rc = POPT_ERROR_MALLOC;
+
+ if (argv == NULL) return rc;
+ argv[argc] = buf;
+
+ for (src = s; *src != '\0'; src++) {
+ if (quote == *src) {
+ quote = '\0';
+ } else if (quote != '\0') {
+ if (*src == '\\') {
+ src++;
+ if (!*src) {
+ rc = POPT_ERROR_BADQUOTE;
+ goto exit;
+ }
+ if (*src != quote) *buf++ = '\\';
+ }
+ *buf++ = *src;
+ } else if (isspace(*src)) {
+ if (*argv[argc] != '\0') {
+ buf++, argc++;
+ if (argc == argvAlloced) {
+ argvAlloced += POPT_ARGV_ARRAY_GROW_DELTA;
+ argv = realloc(argv, sizeof(*argv) * argvAlloced);
+ if (argv == NULL) goto exit;
+ }
+ argv[argc] = buf;
+ }
+ } else switch (*src) {
+ case '"':
+ case '\'':
+ quote = *src;
+ /*@switchbreak@*/ break;
+ case '\\':
+ src++;
+ if (!*src) {
+ rc = POPT_ERROR_BADQUOTE;
+ goto exit;
+ }
+ /*@fallthrough@*/
+ default:
+ *buf++ = *src;
+ /*@switchbreak@*/ break;
+ }
+ }
+
+ if (strlen(argv[argc])) {
+ argc++, buf++;
+ }
+
+ rc = poptDupArgv(argc, argv, argcPtr, argvPtr);
+
+exit:
+ if (argv) free(argv);
+ return rc;
+}
+/*@=bounds@*/
+/* =============================================================== */
+static int _debug = 0;
+
+int rpmGlob(const char * patterns, int * argcPtr, const char *** argvPtr)
+{
+ int ac = 0;
+ const char ** av = NULL;
+ int argc = 0;
+ const char ** argv = NULL;
+ char * globRoot = NULL;
+ size_t maxb, nb;
+ int i, j;
+ int rc;
+
+ rc = poptParseArgvString(patterns, &ac, &av);
+ if (rc)
+ return rc;
+
+ for (j = 0; j < ac; j++) {
+ const char * globURL;
+ const char * path;
+ int ut = urlPath(av[j], &path);
+ glob_t gl;
+
+ if (!Glob_pattern_p(av[j], 0) && strchr(path, '~') == NULL) {
+ argv = xrealloc(argv, (argc+2) * sizeof(*argv));
+ argv[argc] = xstrdup(av[j]);
+if (_debug)
+fprintf(stderr, "*** rpmGlob argv[%d] \"%s\"\n", argc, argv[argc]);
+ argc++;
+ continue;
+ }
+
+ gl.gl_pathc = 0;
+ gl.gl_pathv = NULL;
+ rc = Glob(av[j], GLOB_TILDE, Glob_error, &gl);
+ if (rc)
+ goto exit;
+
+ /* XXX Prepend the URL leader for globs that have stripped it off */
+ maxb = 0;
+ for (i = 0; i < gl.gl_pathc; i++) {
+ if ((nb = strlen(&(gl.gl_pathv[i][0]))) > maxb)
+ maxb = nb;
+ }
+
+ nb = ((ut > URL_IS_DASH && ut != URL_IS_FTP) ? (path - av[j]) : 0);
+ maxb += nb;
+ maxb += 1;
+ globURL = globRoot = xmalloc(maxb);
+
+ switch (ut) {
+ case URL_IS_HTTP:
+ case URL_IS_PATH:
+ case URL_IS_DASH:
+ strncpy(globRoot, av[j], nb);
+ /*@switchbreak@*/ break;
+ case URL_IS_FTP:
+ case URL_IS_UNKNOWN:
+ /*@switchbreak@*/ break;
+ }
+ globRoot += nb;
+ *globRoot = '\0';
+if (_debug)
+fprintf(stderr, "*** GLOB maxb %d diskURL %d %*s globURL %p %s\n", (int)maxb, (int)nb, (int)nb, av[j], globURL, globURL);
+
+ argv = xrealloc(argv, (argc+gl.gl_pathc+1) * sizeof(*argv));
+
+ if (argv != NULL)
+ for (i = 0; i < gl.gl_pathc; i++) {
+ const char * globFile = &(gl.gl_pathv[i][0]);
+ if (globRoot > globURL && globRoot[-1] == '/')
+ while (*globFile == '/') globFile++;
+ strcpy(globRoot, globFile);
+if (_debug)
+fprintf(stderr, "*** rpmGlob argv[%d] \"%s\"\n", argc, globURL);
+ argv[argc++] = xstrdup(globURL);
+ }
+ /*@-immediatetrans@*/
+ Globfree(&gl);
+ /*@=immediatetrans@*/
+ globURL = _free(globURL);
+ }
+
+ if (argv != NULL && argc > 0) {
+ argv[argc] = NULL;
+ if (argvPtr)
+ *argvPtr = argv;
+ if (argcPtr)
+ *argcPtr = argc;
+ rc = 0;
+ } else
+ rc = 1;
+
+
+exit:
+ av = _free(av);
+/*@-branchstate@*/
+ if (rc || argvPtr == NULL) {
+/*@-dependenttrans -unqualifiedtrans@*/
+ if (argv != NULL)
+ for (i = 0; i < argc; i++)
+ argv[i] = _free(argv[i]);
+ argv = _free(argv);
+/*@=dependenttrans =unqualifiedtrans@*/
+ }
+/*@=branchstate@*/
+ return rc;
+}
+
+/* =============================================================== */
int
expandMacros(void * spec, MacroContext mc, char * sbuf, size_t slen)
@@ -1595,10 +1820,42 @@ rpmLoadMacros(MacroContext mc, int level)
}
}
+int
+rpmLoadMacroFile(MacroContext mc, const char * fn)
+{
+ FD_t fd = Fopen(fn, "r.fpio");
+ char buf[BUFSIZ];
+ int rc = -1;
+
+ if (fd == NULL || Ferror(fd)) {
+ if (fd) (void) Fclose(fd);
+ return rc;
+ }
+
+ /* XXX Assume new fangled macro expansion */
+ /*@-mods@*/
+ max_macro_depth = 16;
+ /*@=mods@*/
+
+ while(rdcl(buf, sizeof(buf), fd, 1) != NULL) {
+ char c, *n;
+
+ n = buf;
+ SKIPBLANK(n, c);
+
+ if (c != '%')
+ /*@innercontinue@*/ continue;
+ n++; /* skip % */
+ rc = rpmDefineMacro(mc, n, RMIL_MACROFILES);
+ }
+ rc = Fclose(fd);
+ return rc;
+}
+
void
-rpmInitMacros(/*@unused@*/ MacroContext mc, const char *macrofiles)
+rpmInitMacros(MacroContext mc, const char * macrofiles)
{
- char *m, *mfile, *me;
+ char *mfiles, *m, *me;
if (macrofiles == NULL)
return;
@@ -1606,11 +1863,14 @@ rpmInitMacros(/*@unused@*/ MacroContext mc, const char *macrofiles)
if (mc == NULL) mc = rpmGlobalMacroContext;
#endif
- for (mfile = m = xstrdup(macrofiles); mfile && *mfile != '\0'; mfile = me) {
- FD_t fd;
- char buf[BUFSIZ];
+ mfiles = xstrdup(macrofiles);
+ for (m = mfiles; m && *m != '\0'; m = me) {
+ const char ** av;
+ int ac;
+ int i;
- for (me = mfile; (me = strchr(me, ':')) != NULL; me++) {
+ for (me = m; (me = strchr(me, ':')) != NULL; me++) {
+ /* Skip over URI's. */
if (!(me[1] == '/' && me[2] == '/'))
/*@innerbreak@*/ break;
}
@@ -1618,44 +1878,19 @@ rpmInitMacros(/*@unused@*/ MacroContext mc, const char *macrofiles)
if (me && *me == ':')
*me++ = '\0';
else
- me = mfile + strlen(mfile);
-
- /* Expand ~/ to $HOME */
- buf[0] = '\0';
- if (mfile[0] == '~' && mfile[1] == '/') {
- char *home;
- if ((home = getenv("HOME")) != NULL) {
- mfile += 2;
- strncpy(buf, home, sizeof(buf));
- strncat(buf, "/", sizeof(buf) - strlen(buf));
- }
- }
- strncat(buf, mfile, sizeof(buf) - strlen(buf));
- buf[sizeof(buf)-1] = '\0';
+ me = m + strlen(m);
- fd = Fopen(buf, "r.fpio");
- if (fd == NULL || Ferror(fd)) {
- if (fd) (void) Fclose(fd);
+ /* Glob expand the macro file path element, expanding ~ to $HOME. */
+ ac = 0;
+ av = NULL;
+ i = rpmGlob(m, &ac, &av);
+ if (i != 0)
continue;
- }
-
- /* XXX Assume new fangled macro expansion */
- /*@-mods@*/
- max_macro_depth = 16;
- /*@=mods@*/
-
- while(rdcl(buf, sizeof(buf), fd, 1) != NULL) {
- char c, *n;
- n = buf;
- SKIPBLANK(n, c);
-
- if (c != '%')
- /*@innercontinue@*/ continue;
- n++; /* skip % */
- (void) rpmDefineMacro(NULL, n, RMIL_MACROFILES);
- }
- (void) Fclose(fd);
+ /* Read macros from each file. */
+ for (i = 0; i < ac; i++)
+ (void) rpmLoadMacroFile(mc, av[i]);
+ av = _free(av);
}
m = _free(m);
diff --git a/rpmio/rpmio.h b/rpmio/rpmio.h
index 432bd75e3..e7b504865 100644
--- a/rpmio/rpmio.h
+++ b/rpmio/rpmio.h
@@ -395,6 +395,17 @@ int Access(const char * path, int amode)
/*@globals errno, fileSystem @*/
/*@modifies errno, fileSystem @*/;
+/**
+ * glob_pattern_p(3) clone.
+ */
+int Glob_pattern_p (const char *pattern, int quote)
+ /*@*/;
+
+/**
+ * glob_error(3) clone.
+ */
+int Glob_error(const char * epath, int eerrno)
+ /*@*/;
/**
* glob(3) clone.
diff --git a/rpmio/rpmmacro.h b/rpmio/rpmmacro.h
index aeac1dd8e..0adffd16b 100644
--- a/rpmio/rpmmacro.h
+++ b/rpmio/rpmmacro.h
@@ -68,6 +68,18 @@ void rpmDumpMacroTable (/*@null@*/ MacroContext mc,
/*@modifies *fp, fileSystem @*/;
/**
+ * Return URL path(s) from a (URL prefixed) pattern glob.
+ * @patterns glob pattern
+ * @retval *argcPtr no. of paths
+ * @retval *argvPtr array of paths (malloc'd contiguous blob)
+ * @return 0 on success
+ */
+int rpmGlob(const char * patterns, /*@out@*/ int * argcPtr,
+ /*@out@*/ const char *** argvPtr)
+ /*@globals fileSystem@*/
+ /*@modifies *argcPtr, *argvPtr, fileSystem @*/;
+
+/**
* Expand macro into buffer.
* @deprecated Use rpmExpand().
* @todo Eliminate from API.
@@ -129,10 +141,20 @@ void rpmLoadMacros (/*@null@*/ MacroContext mc, int level)
/*@modifies rpmGlobalMacroContext @*/;
/**
- * Initialize global macro context from set of macrofile(s).
+ * Load macro context from a macro file.
* @param mc (unused)
* @param macrofiles colon separated list of macro files (NULL does nothing)
*/
+int rpmLoadMacroFile(/*@null@*/ MacroContext mc, const char * macrofiles)
+ /*@globals rpmGlobalMacroContext,
+ h_errno, fileSystem, internalState @*/
+ /*@modifies rpmGlobalMacroContext, fileSystem, internalState @*/;
+
+/**
+ * Initialize macro context from set of macrofile(s).
+ * @param mc macro context
+ * @param macrofiles colon separated list of macro files (NULL does nothing)
+ */
void rpmInitMacros (/*@null@*/ MacroContext mc, const char * macrofiles)
/*@globals rpmGlobalMacroContext, rpmCLIMacroContext,
h_errno, fileSystem, internalState @*/
diff --git a/rpmio/rpmrpc.c b/rpmio/rpmrpc.c
index ec434a14b..658599946 100644
--- a/rpmio/rpmrpc.c
+++ b/rpmio/rpmrpc.c
@@ -1411,6 +1411,52 @@ fprintf(stderr, "*** Access(%s,%d)\n", path, amode);
return access(path, amode);
}
+/* glob_pattern_p() taken from bash
+ * Copyright (C) 1985, 1988, 1989 Free Software Foundation, Inc.
+ *
+ * Return nonzero if PATTERN has any special globbing chars in it.
+ */
+int Glob_pattern_p (const char * pattern, int quote)
+{
+ const char *p;
+ int open = 0;
+ char c;
+
+ (void) urlPath(pattern, &p);
+ while ((c = *p++) != '\0')
+ switch (c) {
+ case '?':
+ case '*':
+ return (1);
+ case '\\':
+ if (quote && p[1] != '\0')
+ p++;
+ continue;
+
+ case '[':
+ open = 1;
+ continue;
+ case ']':
+ if (open)
+ return (1);
+ continue;
+
+ case '+':
+ case '@':
+ case '!':
+ if (*p == '(')
+ return (1);
+ continue;
+ }
+
+ return (0);
+}
+
+int Glob_error(/*@unused@*/const char * epath, /*@unused@*/ int eerrno)
+{
+ return 1;
+}
+
int Glob(const char *pattern, int flags,
int errfunc(const char * epath, int eerrno), glob_t *pglob)
{
@@ -1431,8 +1477,11 @@ fprintf(stderr, "*** Glob(%s,0x%x,%p,%p)\n", pattern, (unsigned)flags, (void *)e
pglob->gl_stat = Stat;
/*@=type@*/
flags |= GLOB_ALTDIRFUNC;
+ flags &= ~GLOB_TILDE;
break;
case URL_IS_HTTP: /* XXX WRONG WRONG WRONG */
+ flags &= ~GLOB_TILDE;
+ /*@fallthrough@*/
case URL_IS_PATH:
pattern = lpath;
/*@fallthrough@*/
diff --git a/rpmrc.in b/rpmrc.in
index aa8356fe4..ba1f03c3c 100644
--- a/rpmrc.in
+++ b/rpmrc.in
@@ -1,7 +1,7 @@
#/*! \page config_rpmrc Default configuration: /usr/lib/rpm/rpmrc
# \verbatim
#
-# $Id: rpmrc.in,v 2.58 2004/02/22 20:24:14 jbj Exp $
+# $Id: rpmrc.in,v 2.59 2004/03/02 01:31:03 jbj Exp $
#
# This is a global RPM configuration file. All changes made here will
# be lost when the rpm package is upgraded. Any per-system configuration
@@ -367,7 +367,7 @@ buildarch_compat: x86_64: noarch
buildarch_compat: amd64: x86_64
buildarch_compat: ia32e: x86_64
-macrofiles: @RPMCONFIGDIR@/macros:@RPMCONFIGDIR@/%{_target}/macros:@SYSCONFIGDIR@/macros.specspo:@SYSCONFIGDIR@/macros.prelink:@SYSCONFIGDIR@/macros.solve:@SYSCONFIGDIR@/macros.up2date:@SYSCONFIGDIR@/macros:@SYSCONFIGDIR@/%{_target}/macros:~/.rpmmacros
+macrofiles: @RPMCONFIGDIR@/macros:@RPMCONFIGDIR@/%{_target}/macros:@SYSCONFIGDIR@/macros.*:@SYSCONFIGDIR@/macros:@SYSCONFIGDIR@/%{_target}/macros:~/.rpmmacros
# \endverbatim
#*/
diff --git a/tools/rpmcache.c b/tools/rpmcache.c
index 9a4b150fb..ce046fc57 100644
--- a/tools/rpmcache.c
+++ b/tools/rpmcache.c
@@ -13,7 +13,6 @@
#include "rpmds.h"
#include "rpmts.h"
-#include "misc.h" /* XXX myGlobPatternP */
#include "debug.h"
static int _debug = 0;
@@ -446,7 +445,7 @@ static void initGlobs(/*@unused@*/ rpmts ts, const char ** argv)
buf[0] = '\0';
if (argv != NULL && * argv != NULL) {
const char * arg;
- int single = (myGlobPatternP(argv[0]) && argv[1] == NULL);
+ int single = (Glob_pattern_p(argv[0], 0) && argv[1] == NULL);
char * t;
t = buf;