- spelling corrections (#112728).
authorjbj <devnull@localhost>
Tue, 30 Dec 2003 13:14:49 +0000 (13:14 +0000)
committerjbj <devnull@localhost>
Tue, 30 Dec 2003 13:14:49 +0000 (13:14 +0000)
CVS patchset: 7047
CVS date: 2003/12/30 13:14:49

74 files changed:
CHANGES
doc/manual/builddependencies
doc/manual/buildroot
doc/manual/conditionalbuilds
doc/manual/dependencies
doc/manual/hregions
doc/manual/macros
doc/manual/queryformat
doc/manual/relocatable
doc/manual/signatures
doc/manual/spec
doc/manual/triggers
doc/rpm.8
doc/rpmbuild.8
doc/rpmcache.8
lib/poptI.c
lib/psm.c
lib/rpminstall.c
lib/rpmps.c
lib/rpmps.h
po/cs.po
po/da.po
po/de.po
po/fi.po
po/fr.po
po/gl.po
po/is.po
po/ja.po
po/ko.po
po/no.po
po/pl.po
po/pt.po
po/pt_BR.po
po/ro.po
po/rpm.pot
po/ru.po
po/sk.po
po/sl.po
po/sr.po
po/sv.po
po/tr.po
popt/po/cs.po
popt/po/da.po
popt/po/de.po
popt/po/es.po
popt/po/eu_ES.po
popt/po/fi.po
popt/po/fr.po
popt/po/gl.po
popt/po/hu.po
popt/po/id.po
popt/po/is.po
popt/po/it.po
popt/po/ja.po
popt/po/ko.po
popt/po/no.po
popt/po/pl.po
popt/po/popt.pot
popt/po/pt.po
popt/po/pt_BR.po
popt/po/ro.po
popt/po/ru.po
popt/po/sk.po
popt/po/sl.po
popt/po/sr.po
popt/po/sv.po
popt/po/tr.po
popt/po/uk.po
popt/po/wa.po
popt/po/zh.po
popt/po/zh_CN.GB2312.po
rpm.c
rpmdb/legacy.c
rpmpopt.in

diff --git a/CHANGES b/CHANGES
index ebda803..066f91b 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -32,6 +32,7 @@
        - perl.req: avoid regex misfire on '^use' in "= <<" assign (#109934).
        - find-debuginfo.sh: permit stripping unwritable by non-root (#112429).
        - missing build dependency (#111104).
+       - spelling corrections (#112728).
 
 4.2 -> 4.2.1:
        - fix: nested %if handling, optind initialization posix vs. glibc.
index 61953f7..74f690d 100644 (file)
@@ -1,4 +1,4 @@
-/*! \page builddpendencies Generating buiild dependencies automatically
+/*! \page builddependencies Generating build dependencies automatically
 
 As we start updating packages for the next Red Hat distro, I'd like to see
 packages start to make use of build dependencies. Basically build
index 77b1596..a369142 100644 (file)
@@ -13,7 +13,7 @@ Simply use
   Buildroot: <dir>
 \endverbatim
 
-in your spec file.  The acutal buildroot used by RPM during the
+in your spec file.  The actual buildroot used by RPM during the
 build will be available to you (and your %prep, %build, and %install
 sections) as the environment variable RPM_BUILD_ROOT.  You must
 make sure that the files for the package are installed into the
@@ -86,7 +86,7 @@ and specified
 
 we would end up with the directory /usr/lib/perl5/site_perl being
 owned by the library package. This directory is in fact used by ALL
-perl libriares and should be owned by the package for perl not any of
+perl libraries and should be owned by the package for perl not any of
 its libraries. It is important that the %files command specifies all
 the known directories explicitly. So this would be preferable:
 
@@ -104,7 +104,7 @@ package is removed, RPM will try to remove each of the perl-MD5 files and
 then try to remove the dir itself. If there's still files in the
 site_perl directory (e.g. from other packages) then the Unix rmdir(2)
 will fail and you will get a non-zero return code from RPM. If the
-rmdir succeds then you will no longer have a site_perl directory on
+rmdir succeeds then you will no longer have a site_perl directory on
 your machine even though this directory was created when Perl was
 installed.
 
@@ -116,7 +116,7 @@ Explicit use of %files can help make the packager aware of potential
 problems before they happen. When you try to install a package which
 contains file names already used by other packages on the system then
 RPM will warn you of the problem and give a fatal error. This error can
-be overriden with --force and the installed file will be replaced by the
+be overridden with --force and the installed file will be replaced by the
 new file and when the new package is removed the file will be removed as well.
 
 */
index 35ab079..cdff2c4 100644 (file)
@@ -1,4 +1,4 @@
-/*! \page conditionalbulds Passing conditional parameters into a rpm build
+/*! \page conditionalbuilds Passing conditional parameters into a rpm build
 
 Source code is often built with optional features enabled or disabled.
 When source code is packaged using rpm, the various features can be
@@ -48,7 +48,7 @@ So the spec file should be written
        %{?_with_ldap}   \
     ...
 \endverbatim
-so that, if "--with ldap" was used as a build option, then confgure
+so that, if "--with ldap" was used as a build option, then configure
 will be invoked (after macro expansion) as
 \verbatim
        ./configure --with-ldap ...
index 2623d96..54b7ef5 100644 (file)
@@ -51,7 +51,7 @@ specifies
        release=3
 \endverbatim
 
-The epoch (if present) is a monotonically inceasing integer, neither the
+The epoch (if present) is a monotonically increasing integer, neither the
 version or the release can contain the '-' hyphen character, and the dependency
 parser does not permit white space within a definition.  Unspecified epoch
 and releases are assumed to be zero, and are interpreted as "providing all"
@@ -78,10 +78,10 @@ strcmp(3).  First, the boundaries of the segments are found using
 isdigit(3)/isalpha(3).  Each segment is then compared in order with the
 right most segment being the least significant.  The alphabetical
 portions are compared using a lexical graphical ascii ordering, the
-digit segments strip leading zeroes's and compare the strlen before
+digit segments strip leading zeroes and compare the strlen before
 doing a strcmp. If both numerical strings are equal, the longer string
 is larger.  Notice that the algorithm has no knowledge of decimal fractions,
-and perl-5.6 is "older" than perl-5.00503 because the number 6 si less than
+and perl-5.6 is "older" than perl-5.00503 because the number 6 is less than
 the number 503.
 
 The concept of "newer" used by rpm to determine when a package should be
@@ -172,9 +172,9 @@ to eliminate the need for most packages to use explicit Requires: lines.
 \subsection dependencies_custom Custom Automatic Dependency
 
 The automatic dependency programs are found via macro expansion.  Thus
-sites can very the amount of dependnecy processing that are performed
+sites can very the amount of dependency processing that are performed
 locally, by changing the executable/script which is run.  Dependency
-processing can even be changed on a per-package basis if the macros's are
+processing can even be changed on a per-package basis if the macros are
 defined in the spec file. To allow for maximum configurability the
 dependency programs are shell scripts which can be duplicated and edited
 for site specific needs.
@@ -183,7 +183,7 @@ The macros: %__find_provides, %__find_prereq, %__find_requires,
 %__find_conflicts, %__find_obsoletes, if they exist, are expanded to
 the name of a program to exec. For each package, the program receives
 the glob'ed %files manifest on stdin and returns dependencies on stdout. The
-deiscovered dependencies are parsed exactly as if they were found after
+discovered dependencies are parsed exactly as if they were found after
 
 \verbatim
        Provides:
@@ -210,11 +210,11 @@ which can be overridden (or even undefined) within a spec file.
 
 Modules for interpreted languages like perl and tcl impose additional
 dependency requirements on packages. A script written for an interpreter
-often requires language specfic modules to be installed in order to execute
-correctly. In order to automatically detect langiage specific modules, each
+often requires language specific modules to be installed in order to execute
+correctly. In order to automatically detect language specific modules, each
 interpreter may have its own find-provides and find-requires. To prevent
 module name collisions between interpreters, module names are enclosed within
-parentheses and a conventional interpreter specific identifier is pre-pended:
+parentheses and a conventional interpreter specific identifier is prepended:
 
 
 \verbatim
@@ -225,7 +225,7 @@ parentheses and a conventional interpreter specific identifier is pre-pended:
 
 
 The output of a per-interpreter find-requires (notice in this example the
-first requirement is a package and the rest are langague specific modules)
+first requirement is a package and the rest are language specific modules)
 
 \verbatim
        Mail-Header >= 1.01
@@ -247,7 +247,7 @@ with appropriate per-interpreter hooks into
        /usr/lib/rpm/find-{provides,requires}
 \endverbatim
 
-@todo per-interpreter dependency generators are not located in subdiretories.
+@todo per-interpreter dependency generators are not located in subdirectories.
 
 Notice that shell dependencies will require that all %post et al scriptlets
 be processed by the find-requires. Since a shell script depends on all the
@@ -318,7 +318,7 @@ all, nor generate an error message.
 \subsection dependencies_branching Branching Version
 
 It is quite common to need to branch a set of sources in version
-control. It is not so obvious how those branches should be repesented
+control. It is not so obvious how those branches should be represented
 in the package version numbers. Here is one solution.
 
 You have a bag of features that are injected into a package in a
@@ -356,7 +356,7 @@ Another alternative scheme might be:
 
 \subsection dependencies_build Build dependencies
 
-The following dependencies are availible at build time.  These are
+The following dependencies are available at build time.  These are
 similar to the install time version but these apply only during
 package creation and are specified in the specfile not in the binary
 package.
index 91408b3..1bdb4f1 100644 (file)
@@ -3,11 +3,11 @@
 The header data structure has changed in rpm-4.0.[12] to preserve the
 original header from a package. The goal is to keep the original
 header intact so that metadata can be verified separately from the
-payload by the RHN up2date client and by the rpm commmand line verify
+payload by the RHN up2date client and by the rpm command line verify
 mode using signatures saved in the rpm database. I believe the change
 is entirely forward and backward compatible, and will not require
 any artifacts like changing the version number of packaging or 
-adding an "rpmlib(...)" tracking dependendency. We'll see ...
+adding an "rpmlib(...)" tracking dependency. We'll see ...
 
 Here's a short description of the change. An rpm header has three sections:
 \verbatim
index ff6bd34..8f234c2 100644 (file)
@@ -22,8 +22,8 @@ All whitespace surrounding <body> is removed.  Name may be composed
 of alphanumeric characters, and the character `_' and must be at least
 3 characters in length. A macro without an (opts) field is "simple" in that
 only recursive macro expansion is performed. A parameterized macro contains
-an (opts) field. The opts (i.e. string between parantheses) is passed
-exactly as is to getopts(3) for argc/argv processing at the beginning of
+an (opts) field. The opts (i.e. string between parentheses) is passed
+exactly as is to getopt(3) for argc/argv processing at the beginning of
 a macro invocation.  While a parameterized macro is being expanded, the
 following shell-like macros are available:
 
@@ -167,7 +167,7 @@ This expands to:
        (echo -n "My arg is 5" ; sleep 5 ; echo done.)
 \endverbatim
 
-This will cause all occurances of %1 in the macro definition to be
+This will cause all occurrences of %1 in the macro definition to be
 replaced by the first argument to the macro, but only if the macro
 is invoked as "%mymacro 5".  Invoking as "%{mymacro} 5" will not work
 as desired in this case.
index 19ef601..b6f6e25 100644 (file)
@@ -150,7 +150,7 @@ braces.
 
 \subsection queryformat_example Example: Viewing the Verify Flags
 
-The follwing example query is run against dev becuase I know %verify
+The following example query is run against dev because I know %verify
 is used there.
 \verbatim
        rpm -q --qf '[%{filenames} %{fileverifyflags}\n]' dev
index c4bdd41..d070072 100644 (file)
@@ -1,4 +1,4 @@
-/*! \page relocateable Relocateable packages
+/*! \page relocatable Relocatable packages
 
 Relocatable packages are a way to give the user a little control
 over the installation location of a package.  For example, a vendor
@@ -6,7 +6,7 @@ may distribute their software to install in "/opt" but you'd like
 it to install in "/usr/opt".  If the vendor were distributing a
 relocatable RPM package, it would be easy.
 
-\subsection relcateable_building Building a Relocatable Package
+\subsection relocatable_building Building a Relocatable Package
 
 Not all software can be "relocatable".  Before continuing you should
 think about how the program works, what files it accesses, what other
@@ -35,7 +35,7 @@ into the spec file so that the /usr and /etc directories may be
 relocated separately when this package is installed.
 
 
-\subsection relcateable_installing Installing Relocatable Packages
+\subsection relocatable_installing Installing Relocatable Packages
 
 By default, RPM will install a relocatable package in the prefix
 directory listed in the spec file.  You can override this on the
@@ -51,7 +51,7 @@ separately by using syntax like:
   rpm ... --relocate /opt=/usr/opt --relocate /etc=/usr/etc ...
 \endverbatim
 
-If any of the Prefixs are not being relocated they can be skipped on
+If any of the Prefixes is not being relocated they can be skipped on
 the command line
 
 */
index 7b4f6dc..9cad9aa 100644 (file)
@@ -64,7 +64,7 @@ Package signature verification is the same as previous releases:
        rpm -K <package>
 \endverbatim
 
-RPM will verify evey signature in the package, which may include
+RPM will verify every signature in the package, which may include
 more than one PGP signature.  The output indicates what types of
 signatures are being checked.  If any checks fail you'll see a
 "NOT OK" message, and you should be worried.
index 2a27e48..286931c 100644 (file)
@@ -5,9 +5,9 @@ A few additions have been made to the spec file format.
 Name
 
 The Name tag contains the proper name of the package. Names must not
-include whitespace and may include a hyphan '-' (unlike version and release
+include whitespace and may include a hyphen '-' (unlike version and release
 tags). Names should not include any numeric operators ('<', '>','=') as
-future versions of rpm may need to reserve charcters other than '-'.
+future versions of rpm may need to reserve characters other than '-'.
 
 By default subpackages are named by prepending `<main package>-' to
 the subpackages name(s). If you wish to change the name of a
@@ -61,7 +61,7 @@ might be changed to:
 \endverbatim
 
 The description is free form text, but there are two things to note.
-The first regards reformating.  Lines that begin with white space
+The first regards reformatting.  Lines that begin with white space
 are considered "pre-formatted" and will be left alone.  Adjacent
 lines without leading whitespace are considered a single paragraph
 and may be subject to formatting by glint or another RPM tool.
@@ -78,7 +78,7 @@ package contains).
 
 \subsection specfile_buildarchitectures BuildArchitectures: Tag
 
-This tag specifies the arctecture which the resulting binary package
+This tag specifies the architecture which the resulting binary package
 will run on.  Typically this is a CPU architecture like sparc,
 i386. The string 'noarch' is reserved for specifying that the
 resulting binary package is platform independent.  Typical platform
@@ -108,11 +108,11 @@ script so that false problems are not displayed during package verification.
        %verify(not size md5 mtime) %{prefix}/bin/javaswarm
 \endverbatim
 
-\subsection specfile_globbing Shell Gobbing of %files Section
+\subsection specfile_globbing Shell Globbing of %files Section
 
 The usual rules for shell globbing apply.  Most special characters can
 be escaped by prefixing them with a '\'.  Spaces are used to separate
-file names and so must be escaped by enclsing the file name with quotes.
+file names and so must be escaped by enclosing the file name with quotes.
 For example:
 
 \verbatim
@@ -202,7 +202,7 @@ you would add
 \endverbatim
 to your spec file.
 
-If your package was like dump and could not be built w/o a specific vesion of
+If your package was like dump and could not be built w/o a specific version of
 the libraries to access an ext2 file system, you could express this as
 \verbatim
        BuildRequires: e2fsprofs-devel = 1.17-1
index 6e3ed89..e679a51 100644 (file)
@@ -13,7 +13,7 @@ Say the package "mymailer" needs an /etc/mymailer/mailer symlink which points
 to the mail transport agent to use. If sendmail is installed, the link should
 point to /usr/bin/sendmail, but it vmail is installed, the link should 
 instead point to /usr/bin/vmail. If both packages are present, we don't care
-where the link points (realisticaly, sendmail and vmail should conflict
+where the link points (realistically, sendmail and vmail should conflict
 with one another), while if neither package is installed the link should
 not exist at all.
 
index 9005d68..eff8aea 100644 (file)
--- a/doc/rpm.8
+++ b/doc/rpm.8
@@ -338,7 +338,7 @@ This is intended to make \fBrpm\fR easy to run from
 other tools.
 .TP
 \fB--prefix \fINEWPATH\fB\fR
-For relocateable binary packages, translate all file paths that
+For relocatable binary packages, translate all file paths that
 start with the installation prefix in the package relocation hint(s)
 to \fINEWPATH\fR.
 .TP
index 7d10c74..8ac8d45 100644 (file)
@@ -88,7 +88,7 @@ The default \fIFILELIST\fR is
 Pipes the output of \fBrpm\fR to the command \fICMD\fR.
 .TP
 \fB--dbpath \fIDIRECTORY\fB\fR
-Use the database in \fIDIRECTORY\fR rathen
+Use the database in \fIDIRECTORY\fR rather
 than the default path \fI/var/lib/rpm\fR
 .TP
 \fB--root \fIDIRECTORY\fB\fR
index 3f0381f..eb6e5e2 100644 (file)
@@ -28,7 +28,7 @@ There are no \fBrpmcache\fR specific options, only common \fBrpm\fR options.
 See the \fBrpmcache\fR usage message for what is currently implemented.
 .PP
 The file tree path to be searched is configured using rpm
-macros. The final path is the concatentaion of 5 individual
+macros. The final path is the concatenation of 5 individual
 elements. Here are the macro names used to configure \fBrpmcache\fR, in
 the same order that they will be concatenated to build the
 file tree path that will be walked:
index 1cfe996..0346372 100644 (file)
@@ -174,7 +174,7 @@ struct poptOption rpmInstallPoptTable[] = {
 
  { "badreloc", '\0', POPT_BIT_SET,
        &rpmIArgs.probFilter, RPMPROB_FILTER_FORCERELOCATE,
-       N_("relocate files in non-relocateable package"), NULL},
+       N_("relocate files in non-relocatable package"), NULL},
  { "dirstash", '\0', POPT_BIT_SET|POPT_ARGFLAG_DOC_HIDDEN,
        &rpmIArgs.transFlags, RPMTRANS_FLAG_DIRSTASH,
        N_("save erased package files by renaming into sub-directory"), NULL},
index df43b10..8d69427 100644 (file)
--- a/lib/psm.c
+++ b/lib/psm.c
@@ -1238,7 +1238,7 @@ assert(psm->mi == NULL);
            if (fc <= 0)                                break;
        
            /*
-            * Old format relocateable packages need the entire default
+            * Old format relocatable packages need the entire default
             * prefix stripped to form the cpio list, while all other packages
             * need the leading / stripped.
             */
index 6df8c5e..712b829 100644 (file)
@@ -534,7 +534,7 @@ if (fileURL[0] == '=') {
                const char * name;
                xx = headerNVR(eiu->h, &name, NULL, NULL);
                rpmMessage(RPMMESS_ERROR,
-                              _("package %s is not relocateable\n"), name);
+                              _("package %s is not relocatable\n"), name);
                eiu->numFailed++;
                goto exit;
                /*@notreached@*/
index 69d7b3f..1c6701c 100644 (file)
@@ -220,7 +220,7 @@ const char * rpmProblemString(const rpmProblem prob)
        break;
     case RPMPROB_BADRELOCATE:
        rc = snprintf(buf, nb,
-               _("path %s in package %s is not relocateable"),
+               _("path %s in package %s is not relocatable"),
                str1, pkgNEVR);
        break;
     case RPMPROB_NEW_FILE_CONFLICT:
index dcbc259..ef9cf9d 100644 (file)
@@ -28,7 +28,7 @@ typedef enum rpmProblemType_e {
     RPMPROB_BADARCH,   /*!< package ... is for a different architecture */
     RPMPROB_BADOS,     /*!< package ... is for a different operating system */
     RPMPROB_PKG_INSTALLED, /*!< package ... is already installed */
-    RPMPROB_BADRELOCATE,/*!< path ... is not relocateable for package ... */
+    RPMPROB_BADRELOCATE,/*!< path ... is not relocatable for package ... */
     RPMPROB_REQUIRES,  /*!< package ... has unsatisfied Requires: ... */
     RPMPROB_CONFLICT,  /*!< package ... has unsatisfied Conflicts: ... */
     RPMPROB_NEW_FILE_CONFLICT, /*!< file ... conflicts between attemped installs of ... */
index 4fc96c5..c053c83 100644 (file)
--- a/po/cs.po
+++ b/po/cs.po
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:11-0500\n"
+"POT-Creation-Date: 2003-12-30 08:11-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"
@@ -20,44 +20,44 @@ msgstr "chybn
 msgid "Unable to open spec file %s: %s\n"
 msgstr "Nelze otevøít spec soubor %s: %s\n"
 
-#: build.c:152 build.c:164
+#: build.c:150 build.c:162
 #, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr "Nelze otevøít rouru pro tar: %m\n"
 
 #. Give up
-#: build.c:171
+#: build.c:169
 #, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "Nelze èíst spec soubor z %s\n"
 
-#: build.c:199
+#: build.c:197
 #, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr "Nelze pøejmenovat %s na %s: %m\n"
 
-#: build.c:239
+#: build.c:237
 #, c-format
 msgid "failed to stat %s: %m\n"
 msgstr "nemohu zjistit stav %s: %m\n"
 
-#: build.c:244
+#: build.c:242
 #, c-format
 msgid "File %s is not a regular file.\n"
 msgstr "Soubor %s není obyèejný soubor.\n"
 
-#: build.c:253
+#: build.c:251
 #, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr "Nezdá se, ¾e by %s byl spec soubor.\n"
 
 #. parse up the build operators
-#: build.c:324
+#: build.c:322
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr "Sestavuji cílové platformy: %s\n"
 
-#: build.c:339
+#: build.c:337
 #, c-format
 msgid "Building for target %s\n"
 msgstr "Sestavuji pro cíl %s\n"
@@ -110,7 +110,7 @@ msgstr "Spole
 msgid "%s: %s\n"
 msgstr "%s: %s\n"
 
-#: rpmqv.c:129 lib/poptALL.c:114
+#: rpmqv.c:129 lib/poptALL.c:119
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM verze %s\n"
@@ -424,166 +424,166 @@ msgstr "&& a || nen
 msgid "syntax error in expression\n"
 msgstr "chyba syntaxe ve výrazu\n"
 
-#: build/files.c:278
+#: build/files.c:280
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "TIMECHECK selhal: %s\n"
 
-#: build/files.c:343 build/files.c:543 build/files.c:739
+#: build/files.c:345 build/files.c:545 build/files.c:741
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "Chybí '(' v %s %s\n"
 
-#: build/files.c:354 build/files.c:673 build/files.c:750
+#: build/files.c:356 build/files.c:675 build/files.c:752
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "Chybí ')' v %s(%s\n"
 
-#: build/files.c:392 build/files.c:698
+#: build/files.c:394 build/files.c:700
 #, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "Neplatný %s token: %s\n"
 
-#: build/files.c:502
+#: build/files.c:504
 #, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "Chybìjící %s v %s %s\n"
 
-#: build/files.c:559
+#: build/files.c:561
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr "Následuje neprázdný znak %s(): %s\n"
 
-#: build/files.c:597
+#: build/files.c:599
 #, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "©patná syntaxe: %s(%s)\n"
 
-#: build/files.c:607
+#: build/files.c:609
 #, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "©patná práva spec: %s(%s)\n"
 
-#: build/files.c:619
+#: build/files.c:621
 #, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "©patná práva adresáøe: %s(%s)\n"
 
-#: build/files.c:777
+#: build/files.c:779
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr "Neobvyklá délka locale: \"%.*s\" v %%lang(%s)\n"
 
 #. @innercontinue@
-#: build/files.c:788
+#: build/files.c:790
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr "Duplicitní locale %.*s v %%lang(%s)\n"
 
-#: build/files.c:917
+#: build/files.c:919
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr "Dosa¾en limit pro %%docdir\n"
 
-#: build/files.c:925
+#: build/files.c:927
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr "Jen jeden parametr pro %%docdir\n"
 
 #. We already got a file -- error
-#: build/files.c:959
+#: build/files.c:961
 #, c-format
 msgid "Two files on one line: %s\n"
 msgstr "Dva soubory na jednom øádku: %s\n"
 
-#: build/files.c:976
+#: build/files.c:978
 #, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "Soubor musí zaèínat na \"/\": %s\n"
 
-#: build/files.c:989
+#: build/files.c:991
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr "Nelze míchat speciální %%doc s ostatnímí formami: %s\n"
 
-#: build/files.c:1141
+#: build/files.c:1149
 #, c-format
 msgid "File listed twice: %s\n"
 msgstr "Soubor uveden dvakrát: %s\n"
 
-#: build/files.c:1280
+#: build/files.c:1288
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "Symbolická linka ukazuje na BuildRoot: %s -> %s\n"
 
-#: build/files.c:1520
+#: build/files.c:1535
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Soubor nesouhlasí s prefixem (%s): %s\n"
 
-#: build/files.c:1544
+#: build/files.c:1559
 #, c-format
 msgid "File not found: %s\n"
 msgstr "Soubor nenalezen: %s\n"
 
-#: build/files.c:1752
+#: build/files.c:1767
 #, fuzzy, c-format
 msgid "%s: public key read failed.\n"
 msgstr "%s: readLead selhalo\n"
 
-#: build/files.c:1756 lib/rpmchecksig.c:580
+#: build/files.c:1771 lib/rpmchecksig.c:580
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: build/files.c:1804
+#: build/files.c:1819
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Soubor potøebuje úvodní \"/\": %s\n"
 
-#: build/files.c:1828
+#: build/files.c:1843
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "Glob není dovolen: %s\n"
 
-#: build/files.c:1845 lib/rpminstall.c:347
+#: build/files.c:1860 lib/rpminstall.c:361
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Soubor nenalezen globem: %s\n"
 
-#: build/files.c:1905
+#: build/files.c:1920
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Nemohu otevøít %%files soubor %s: %s\n"
 
-#: build/files.c:1916 build/pack.c:156
+#: build/files.c:1931 build/pack.c:156
 #, c-format
 msgid "line: %s\n"
 msgstr "øádek: %s\n"
 
-#: build/files.c:2307
+#: build/files.c:2323
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "©patný soubor: %s: %s\n"
 
-#: build/files.c:2319 build/parsePrep.c:50
+#: build/files.c:2335 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "©patný vlastník/skupina: %s\n"
 
-#: build/files.c:2363
+#: build/files.c:2379
 #, fuzzy, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr "rozbalování archívu selhalo %s%s: %s\n"
 
-#: build/files.c:2386
+#: build/files.c:2402
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
 "%s"
 msgstr ""
 
-#: build/files.c:2414
+#: build/files.c:2430
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Zpracovávám soubory: %s-%s-%s\n"
@@ -726,7 +726,7 @@ msgstr "Nemohu p
 msgid "Could not open %s: %s\n"
 msgstr "Nemohu otevøít %s: %s\n"
 
-#: build/pack.c:632 lib/psm.c:1427
+#: build/pack.c:632 lib/psm.c:1420
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Nemohu zapsat balíèek: %s\n"
@@ -756,7 +756,7 @@ msgstr "Nemohu p
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Nemohu zapsat payload do %s: %s\n"
 
-#: build/pack.c:725 lib/psm.c:1725
+#: build/pack.c:725 lib/psm.c:1689
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Zapsáno: %s\n"
@@ -1243,20 +1243,20 @@ msgstr "nekontrolovat z
 msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
 msgstr "generovat hlavièky balíèkù kompatibilní s RPM verze 2 a 3"
 
-#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329
-#: lib/poptQV.c:338 lib/poptQV.c:377
+#: build/poptBT.c:229 lib/poptALL.c:240 lib/poptI.c:261 lib/poptQV.c:335
+#: lib/poptQV.c:344 lib/poptQV.c:383
 #, fuzzy
 msgid "don't verify package digest(s)"
 msgstr "nekontrolovat závislosti balíèkù"
 
-#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332
-#: lib/poptQV.c:340 lib/poptQV.c:380
+#: build/poptBT.c:231 lib/poptALL.c:242 lib/poptI.c:263 lib/poptQV.c:338
+#: lib/poptQV.c:346 lib/poptQV.c:386
 #, fuzzy
 msgid "don't verify database header(s) when retrieved"
 msgstr "nekontrolovat architekturu balíèku"
 
-#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335
-#: lib/poptQV.c:342 lib/poptQV.c:382
+#: build/poptBT.c:233 lib/poptALL.c:248 lib/poptI.c:265 lib/poptQV.c:341
+#: lib/poptQV.c:348 lib/poptQV.c:388
 #, fuzzy
 msgid "don't verify package signature(s)"
 msgstr "ovìøit podpis v balíèku"
@@ -1327,31 +1327,31 @@ msgstr "
 msgid "Bad/unreadable  header"
 msgstr "©patná nebo neèitelná hlavièka"
 
-#: lib/cpio.c:232
+#: lib/cpio.c:233
 msgid "Header size too big"
 msgstr "Velikost hlavièky je pøili¹ velká"
 
-#: lib/cpio.c:233
+#: lib/cpio.c:234
 msgid "Unknown file type"
 msgstr "Neznámý typ souboru"
 
-#: lib/cpio.c:234
+#: lib/cpio.c:235
 msgid "Missing hard link(s)"
 msgstr "Chybìjící hardlink(y)"
 
-#: lib/cpio.c:235
+#: lib/cpio.c:236
 msgid "MD5 sum mismatch"
 msgstr "MD5 souèet nesouhlasí"
 
-#: lib/cpio.c:236
+#: lib/cpio.c:237
 msgid "Internal error"
 msgstr "Interní chyba"
 
-#: lib/cpio.c:237
+#: lib/cpio.c:238
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:250
+#: lib/cpio.c:251
 msgid " failed - "
 msgstr "selhal - "
 
@@ -1490,47 +1490,57 @@ msgstr "Soubor %4d: %07o %s.%s\t %s\n"
 msgid "file %s is on an unknown device\n"
 msgstr "soubor %s je na neznámém zaøízení\n"
 
-#: lib/fsm.c:350
+#: lib/fsm.c:352
 #, fuzzy
 msgid "========== Directories not explicitly included in package:\n"
 msgstr "========= Adresáøe, které nebyly explicitnì zaøazeny do balíèku:\n"
 
-#: lib/fsm.c:352
+#: lib/fsm.c:354
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1293
+#: lib/fsm.c:768
+#, 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:776
+#, c-format
+msgid "group %s does not exist - using root\n"
+msgstr "skupina %s neexistuje - pou¾ita skupina root\n"
+
+#: lib/fsm.c:1334
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr "vytvoøen adresáø %s s právy %04o.\n"
 
-#: lib/fsm.c:1592
+#: lib/fsm.c:1633
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1719 lib/fsm.c:1855
+#: lib/fsm.c:1760 lib/fsm.c:1896
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s ulo¾eno jako %s\n"
 
-#: lib/fsm.c:1882
+#: lib/fsm.c:1923
 #, 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:1888
+#: lib/fsm.c:1929
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s rmdir %s selhal: %s\n"
 
-#: lib/fsm.c:1903
+#: lib/fsm.c:1944
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s unlink %s selhal: %s\n"
 
-#: lib/fsm.c:1925
+#: lib/fsm.c:1966
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s vytvoøen jako %s\n"
@@ -1646,117 +1656,117 @@ msgstr "%s: readLead selhalo\n"
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread selhalo: %s\n"
 
-#: lib/poptALL.c:222
+#: lib/poptALL.c:227
 msgid "predefine MACRO with value EXPR"
 msgstr ""
 
-#: lib/poptALL.c:223 lib/poptALL.c:226
+#: lib/poptALL.c:228 lib/poptALL.c:231
 msgid "'MACRO EXPR'"
 msgstr ""
 
-#: lib/poptALL.c:225
+#: lib/poptALL.c:230
 msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: lib/poptALL.c:228
+#: lib/poptALL.c:233
 #, fuzzy
 msgid "print macro expansion of EXPR"
 msgstr "vypsat expanzi makra <výraz>+"
 
-#: lib/poptALL.c:229
+#: lib/poptALL.c:234
 msgid "'EXPR'"
 msgstr ""
 
-#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254
+#: lib/poptALL.c:236 lib/poptALL.c:255 lib/poptALL.c:259
 #, fuzzy
 msgid "read <FILE:...> instead of default file(s)"
 msgstr "èíst <soubor:...> místo implicitního makro souboru"
 
-#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255
+#: lib/poptALL.c:237 lib/poptALL.c:256 lib/poptALL.c:260
 msgid "<FILE:...>"
 msgstr ""
 
-#: lib/poptALL.c:240 lib/poptALL.c:274
+#: lib/poptALL.c:245 lib/poptALL.c:279
 msgid "disable use of libio(3) API"
 msgstr "zakázat pou¾ití libio(3) API"
 
-#: lib/poptALL.c:246
+#: lib/poptALL.c:251
 #, fuzzy
 msgid "send stdout to CMD"
 msgstr "odeslat stdout do <pøíkazu>"
 
-#: lib/poptALL.c:247
+#: lib/poptALL.c:252
 msgid "CMD"
 msgstr ""
 
-#: lib/poptALL.c:258
+#: lib/poptALL.c:263
 #, fuzzy
 msgid "use ROOT as top level directory"
 msgstr "pou¾ít <adr> jako adresáø nejvy¹¹í úrovnì"
 
-#: lib/poptALL.c:259
+#: lib/poptALL.c:264
 msgid "ROOT"
 msgstr ""
 
-#: lib/poptALL.c:262
+#: lib/poptALL.c:267
 msgid "display known query tags"
 msgstr "zobrazit známé znaèky pro dotazy"
 
-#: lib/poptALL.c:264
+#: lib/poptALL.c:269
 msgid "display final rpmrc and macro configuration"
 msgstr "zobrazit finální konfiguraci rpmrc a maker"
 
-#: lib/poptALL.c:266
+#: lib/poptALL.c:271
 msgid "provide less detailed output"
 msgstr "poskytnout výstu s ménì detaily"
 
-#: lib/poptALL.c:268
+#: lib/poptALL.c:273
 msgid "provide more detailed output"
 msgstr "poskytnout detailnìj¹í výstup"
 
-#: lib/poptALL.c:270
+#: lib/poptALL.c:275
 msgid "print the version of rpm being used"
 msgstr "vypsat pou¾ívanou verzi rpm"
 
-#: lib/poptALL.c:283
+#: lib/poptALL.c:288
 #, fuzzy
 msgid "debug payload file state machine"
 msgstr "ladit nástroj stavu souborù"
 
-#: lib/poptALL.c:285
+#: lib/poptALL.c:290
 #, fuzzy
 msgid "use threads for file state machine"
 msgstr "ladit nástroj stavu souborù"
 
-#: lib/poptALL.c:287
+#: lib/poptALL.c:292
 msgid "debug protocol data stream"
 msgstr "ladit protokol datového toku"
 
-#: lib/poptALL.c:292
+#: lib/poptALL.c:297
 #, fuzzy
 msgid "debug option/argument processing"
 msgstr "Interní chyba pøi zpracování parametrù (%d) :-(\n"
 
-#: lib/poptALL.c:297
+#: lib/poptALL.c:302
 #, fuzzy
 msgid "debug package state machine"
 msgstr "ladit nástroj stavu souborù"
 
-#: lib/poptALL.c:299
+#: lib/poptALL.c:304
 #, fuzzy
 msgid "use threads for package state machine"
 msgstr "ladit nástroj stavu souborù"
 
-#: lib/poptALL.c:311
+#: lib/poptALL.c:316
 msgid "debug rpmio I/O"
 msgstr "ladit rpmio I/O"
 
-#: lib/poptALL.c:323
+#: lib/poptALL.c:330
 msgid "debug URL cache handling"
 msgstr "ladit manipulaci s URL cache"
 
 #. @-nullpass@
-#: lib/poptALL.c:393
+#: lib/poptALL.c:400
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1786,17 +1796,17 @@ msgstr ""
 msgid "malformed rollback time/date stamp argument"
 msgstr "poru¹ený rollback èas"
 
-#: lib/poptI.c:151
+#: lib/poptI.c:155
 #, fuzzy
 msgid "add suggested packages to transaction"
 msgstr "dotaz/ovìøení balíèkù ve skupinì"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:159
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "nainstalovat v¹echny soubory i konfigurace, které by se jinak mohly vynechat"
 
-#: lib/poptI.c:159
+#: lib/poptI.c:163
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1804,149 +1814,155 @@ msgstr ""
 "odstranit v¹echny balíèky odpovídající <balíèku> (obvykle se generuje chyba, "
 "specifikuje-li <balíèek> více balíèkù)"
 
-#: lib/poptI.c:164 tools/rpmgraph.c:273
+#: lib/poptI.c:168 tools/rpmgraph.c:273
 msgid "use anaconda \"presentation order\""
 msgstr ""
 
-#: lib/poptI.c:169 lib/poptI.c:238
+#: lib/poptI.c:173 lib/poptI.c:245
 msgid "do not execute package scriptlet(s)"
 msgstr "nespou¹tìt ¾ádné skripty urèené pro balíèky"
 
-#: lib/poptI.c:173
-msgid "relocate files in non-relocateable package"
+#: lib/poptI.c:177
+#, fuzzy
+msgid "relocate files in non-relocatable package"
 msgstr "pøemístìní souborù v nepøemístitelném balíèku"
 
-#: lib/poptI.c:176
+#: lib/poptI.c:180
 msgid "save erased package files by renaming into sub-directory"
 msgstr "uchovat smazané soubory pøesunem do podadresáøe"
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 msgid "erase (uninstall) package"
 msgstr "smazat (deinstalovat) balíèek"
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 msgid "<package>+"
 msgstr "<balíèek>"
 
-#: lib/poptI.c:182 lib/poptI.c:219
+#: lib/poptI.c:186 lib/poptI.c:223
 #, fuzzy
 msgid "do not install configuration files"
 msgstr "vypsat v¹echny konfiguraèní soubory"
 
-#: lib/poptI.c:185 lib/poptI.c:224
+#: lib/poptI.c:189 lib/poptI.c:228
 msgid "do not install documentation"
 msgstr "neinstalovat dokumentaci"
 
-#: lib/poptI.c:187
+#: lib/poptI.c:191
 msgid "skip files with leading component <path> "
 msgstr "pøeskoèit soubory s úvodní cestou <cesta> "
 
-#: lib/poptI.c:188
+#: lib/poptI.c:192
 msgid "<path>"
 msgstr "<cesta>"
 
-#: lib/poptI.c:191
+#: lib/poptI.c:195
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "zkratka pro --replacepkgs --replacefiles"
 
-#: lib/poptI.c:195
+#: lib/poptI.c:199
 msgid "upgrade package(s) if already installed"
 msgstr "aktualizace balíèku jestli¾e je ji¾ nainstalován"
 
-#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
+#: lib/poptI.c:200 lib/poptI.c:216 lib/poptI.c:312
 msgid "<packagefile>+"
 msgstr "<soubor_balíèku>+"
 
-#: lib/poptI.c:198
+#: lib/poptI.c:202
 msgid "print hash marks as package installs (good with -v)"
 msgstr "bìhem instalace balíèku zobrazit dvojité køí¾ky (dobré s -v)"
 
-#: lib/poptI.c:201
+#: lib/poptI.c:205
 msgid "don't verify package architecture"
 msgstr "nekontrolovat architekturu balíèku"
 
-#: lib/poptI.c:204
+#: lib/poptI.c:208
 msgid "don't verify package operating system"
 msgstr "nekontrolovat operaèní systém balíèku"
 
-#: lib/poptI.c:207
+#: lib/poptI.c:211
 msgid "don't check disk space before installing"
 msgstr "nekontrolovat volné místo na disku pøed instalací"
 
-#: lib/poptI.c:209
+#: lib/poptI.c:213
 msgid "install documentation"
 msgstr "nainstalovat dokumentaci"
 
-#: lib/poptI.c:212
+#: lib/poptI.c:216
 #, fuzzy
 msgid "install package(s)"
 msgstr "nainstalovat balíèek"
 
-#: lib/poptI.c:215
+#: lib/poptI.c:219
 msgid "update the database, but do not modify the filesystem"
 msgstr "upravit databázi, ale neupravovat systém souborovù"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:225
 msgid "do not verify package dependencies"
 msgstr "nekontrolovat závislosti balíèkù"
 
-#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:231 lib/poptQV.c:279 lib/poptQV.c:282
 msgid "don't verify MD5 digest of files"
 msgstr "nekontrolovat MD5 souborù v balíèku"
 
-#: lib/poptI.c:230
+#: lib/poptI.c:233
+#, fuzzy
+msgid "don't install file security contexts"
+msgstr "vypsat v¹echny konfiguraèní soubory"
+
+#: lib/poptI.c:237
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "pro vyøe¹ení závislostí nemìnit poøadí instalace balíèkù"
 
-#: lib/poptI.c:235
+#: lib/poptI.c:242
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:242
+#: lib/poptI.c:249
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "nespou¹tìt ¾ádné skripty (jsou-li nìjaké)"
 
-#: lib/poptI.c:245
+#: lib/poptI.c:252
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "nespou¹tìt ¾ádné skripty (jsou-li nìjaké)"
 
-#: lib/poptI.c:248
+#: lib/poptI.c:255
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "nespou¹tìt ¾ádné skripty (jsou-li nìjaké)"
 
-#: lib/poptI.c:251
+#: lib/poptI.c:258
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "nespou¹tìt ¾ádné skripty (jsou-li nìjaké)"
 
-#: lib/poptI.c:261
+#: lib/poptI.c:268
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "nespou¹tìt ¾ádné skripty aktivované tímto balíèkem"
 
-#: lib/poptI.c:264
+#: lib/poptI.c:271
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "nespou¹tìt ¾ádné skripty urèené pro balíèky"
 
-#: lib/poptI.c:267
+#: lib/poptI.c:274
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "nespou¹tìt ¾ádné instalaèní skripty"
 
-#: lib/poptI.c:270
+#: lib/poptI.c:277
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "nespou¹tìt ¾ádné instalaèní skripty"
 
-#: lib/poptI.c:273
+#: lib/poptI.c:280
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "nespou¹tìt ¾ádné instalaèní skripty"
 
-#: lib/poptI.c:277
+#: lib/poptI.c:284
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1954,52 +1970,52 @@ msgstr ""
 "aktualizovat na starou verzi balíèku (--force to dìlá pøi aktualizacích "
 "automaticky)"
 
-#: lib/poptI.c:281
+#: lib/poptI.c:288
 msgid "print percentages as package installs"
 msgstr "bìhem instalace balíèku zobrazit procenta"
 
-#: lib/poptI.c:283
+#: lib/poptI.c:290
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "pøemístit soubory do <adr>, jsou-li pøemístitelné"
 
-#: lib/poptI.c:284
+#: lib/poptI.c:291
 msgid "<dir>"
 msgstr "<adresáø>"
 
-#: lib/poptI.c:286
+#: lib/poptI.c:293
 msgid "relocate files from path <old> to <new>"
 msgstr "pøemístit soubory ze <staré_cesty> do <nové_cesty>"
 
-#: lib/poptI.c:287
+#: lib/poptI.c:294
 msgid "<old>=<new>"
 msgstr "<stará_cesta>=<nová_cesta>"
 
-#: lib/poptI.c:290
+#: lib/poptI.c:297
 msgid "save erased package files by repackaging"
 msgstr "uchovat smazané soubory pomocí pøebalení"
 
-#: lib/poptI.c:293
+#: lib/poptI.c:300
 msgid "install even if the package replaces installed files"
 msgstr "instalovat, i kdy¾ balíèek pøepí¹e existující soubory"
 
-#: lib/poptI.c:296
+#: lib/poptI.c:303
 msgid "reinstall if the package is already present"
 msgstr "pøeinstalovat, i kdy¾ je ji¾ balíèek pøítomen"
 
-#: lib/poptI.c:298
+#: lib/poptI.c:305
 #, fuzzy
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr "odinstalovat nové balíèky, reinstalovat staré balíèky zpìt do data"
 
-#: lib/poptI.c:299
+#: lib/poptI.c:306
 msgid "<date>"
 msgstr "<datum>"
 
-#: lib/poptI.c:301
+#: lib/poptI.c:308
 msgid "don't install, but tell if it would work or not"
 msgstr "neinstalovat ale sdìlit, zda-li by to fungovalo èi nikoli"
 
-#: lib/poptI.c:304
+#: lib/poptI.c:311
 msgid "upgrade package(s)"
 msgstr "aktualizace balíèku"
 
@@ -2078,202 +2094,197 @@ msgstr "dotaz/ov
 msgid "query/verify the package(s) which provide a dependency"
 msgstr "dotaz/ovìøení balíèkù poskytujících závislost"
 
-#: lib/poptQV.c:226
+#: lib/poptQV.c:230
 msgid "list all configuration files"
 msgstr "vypsat v¹echny konfiguraèní soubory"
 
-#: lib/poptQV.c:228
+#: lib/poptQV.c:232
 msgid "list all documentation files"
 msgstr "vypsat v¹echny soubory s dokumentací"
 
-#: lib/poptQV.c:230
+#: lib/poptQV.c:234
 msgid "dump basic file information"
 msgstr "zobrazit základní informace o souborech"
 
-#: lib/poptQV.c:234
+#: lib/poptQV.c:238
 msgid "list files in package"
 msgstr "vypsat soubory v balíèku"
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:243
 #, c-format
 msgid "skip %%ghost files"
 msgstr "vynechat %%ghost soubory"
 
-#: lib/poptQV.c:243
+#: lib/poptQV.c:247
 #, c-format
 msgid "skip %%license files"
 msgstr "vynechat %%license soubory"
 
-#: lib/poptQV.c:246
+#: lib/poptQV.c:250
 #, c-format
 msgid "skip %%readme files"
 msgstr "vynechat %%readme soubory"
 
-#: lib/poptQV.c:252
+#: lib/poptQV.c:256
 msgid "use the following query format"
 msgstr "pou¾ij následující formát dotazù"
 
-#: lib/poptQV.c:254
+#: lib/poptQV.c:258
 msgid "substitute i18n sections into spec file"
 msgstr "nahradit i18n sekce do spec souboru"
 
-#: lib/poptQV.c:256
+#: lib/poptQV.c:260
 msgid "display the states of the listed files"
 msgstr "zobrazit stav vypsaných souborù"
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:286
 msgid "don't verify size of files"
 msgstr "nekontrolovat velikost souborù"
 
-#: lib/poptQV.c:285
+#: lib/poptQV.c:289
 msgid "don't verify symlink path of files"
 msgstr "nekontrolovat cesty symbolických linek"
 
-#: lib/poptQV.c:288
+#: lib/poptQV.c:292
 msgid "don't verify owner of files"
 msgstr "nekontrolovat vlastníka souborù"
 
-#: lib/poptQV.c:291
+#: lib/poptQV.c:295
 msgid "don't verify group of files"
 msgstr "nekontrolovat skupinu souborù"
 
-#: lib/poptQV.c:294
+#: lib/poptQV.c:298
 msgid "don't verify modification time of files"
 msgstr "nekontrolovat èas zmìny souboru"
 
-#: lib/poptQV.c:297 lib/poptQV.c:300
+#: lib/poptQV.c:301 lib/poptQV.c:304
 msgid "don't verify mode of files"
 msgstr "nekontrolovat mód souborù"
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:307
+#, fuzzy
+msgid "don't verify file security contexts"
+msgstr "nekontrolovat soubory v balíèku"
+
+#: lib/poptQV.c:309
 msgid "don't verify files in package"
 msgstr "nekontrolovat soubory v balíèku"
 
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
+#: lib/poptQV.c:312 lib/poptQV.c:315 tools/rpmgraph.c:267
 msgid "don't verify package dependencies"
 msgstr "nekontrolovat závislosti balíèkù"
 
-#: lib/poptQV.c:314 lib/poptQV.c:318 lib/poptQV.c:321 lib/poptQV.c:324
+#: lib/poptQV.c:320 lib/poptQV.c:324 lib/poptQV.c:327 lib/poptQV.c:330
 #, fuzzy
 msgid "don't execute verify script(s)"
 msgstr "nespou¹tìt %verifyscript (pokud existuje)"
 
-#: lib/poptQV.c:348
+#: lib/poptQV.c:354
 #, fuzzy
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr "nekontrolovat SHA1 digest v hlavièce"
 
-#: lib/poptQV.c:351
+#: lib/poptQV.c:357
 #, fuzzy
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr "nekontrolovat MD5 souborù v balíèku"
 
-#: lib/poptQV.c:366
+#: lib/poptQV.c:372
 #, fuzzy
 msgid "sign package(s) (identical to --resign)"
 msgstr "podepsat balíèek (zahodit aktuální podpis)"
 
-#: lib/poptQV.c:368
+#: lib/poptQV.c:374
 #, fuzzy
 msgid "verify package signature(s)"
 msgstr "ovìøit podpis v balíèku"
 
-#: lib/poptQV.c:370
+#: lib/poptQV.c:376
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:372
+#: lib/poptQV.c:378
 #, fuzzy
 msgid "sign package(s) (identical to --addsign)"
 msgstr "podepsat balíèek (zahodit aktuální podpis)"
 
-#: lib/poptQV.c:374
+#: lib/poptQV.c:380
 msgid "generate signature"
 msgstr "generovat PGP/GPG podpis"
 
-#: lib/psm.c:269
+#: lib/psm.c:268
 msgid "source package expected, binary found\n"
 msgstr "oèekávám balíèek se zdrojovými kódy, nalezen v¹ak binární\n"
 
-#: lib/psm.c:394
+#: lib/psm.c:386
 msgid "source package contains no .spec file\n"
 msgstr "zdrojový balíèek neobsahuje .spec soubor\n"
 
-#: lib/psm.c:480
+#: lib/psm.c:472
 #, c-format
 msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
 msgstr ""
 
-#: lib/psm.c:562
+#: lib/psm.c:554
 #, c-format
 msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
 msgstr ""
 
-#: lib/psm.c:570
+#: lib/psm.c:562
 #, c-format
 msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
 msgstr ""
 
-#: lib/psm.c:735
+#: lib/psm.c:730
 #, c-format
 msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
 msgstr ""
 
-#: lib/psm.c:756
+#: lib/psm.c:751
 #, 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:762
+#: lib/psm.c:757
 #, 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:1191
+#: lib/psm.c:1188
 #, 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:1330
+#: lib/psm.c:1323
 #, 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:1439
+#: lib/psm.c:1432
 #, fuzzy
 msgid "Unable to reload signature header\n"
 msgstr "Nemohu pøeèíst hlavièku z %s: %s\n"
 
-#: lib/psm.c:1485
-#, c-format
-msgid "user %s does not exist - using root\n"
-msgstr "u¾ivatel %s neexistuje - pou¾it u¾ivatel root\n"
-
-#: lib/psm.c:1494
-#, c-format
-msgid "group %s does not exist - using root\n"
-msgstr "skupina %s neexistuje - pou¾ita skupina root\n"
-
-#: lib/psm.c:1546
+#: lib/psm.c:1510
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "rozbalování archívu selhalo %s%s: %s\n"
 
-#: lib/psm.c:1547
+#: lib/psm.c:1511
 msgid " on file "
 msgstr " na souboru "
 
-#: lib/psm.c:1733
+#: lib/psm.c:1697
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "nemohu otevøít %s: %s\n"
 
-#: lib/psm.c:1736
+#: lib/psm.c:1700
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s selhalo\n"
 
-#: lib/query.c:118 lib/rpmts.c:565
+#: lib/query.c:118 lib/rpmts.c:566
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "nesprávný formát: %s\n"
@@ -2321,8 +2332,8 @@ msgstr "bal
 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:462
-#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576
+#: 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
 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157
 #, c-format
 msgid "open of %s failed: %s\n"
@@ -2337,7 +2348,7 @@ msgstr "dotaz na %s se nezda
 msgid "old format source packages cannot be queried\n"
 msgstr "nelze provést dotaz na zdrojové balíèky starého formátu\n"
 
-#: lib/query.c:488 lib/rpminstall.c:608
+#: lib/query.c:488 lib/rpminstall.c:622
 #, fuzzy, c-format
 msgid "%s: not an rpm package (or package manifest): %s\n"
 msgstr "¾ádný balíèek neaktivuje %s\n"
@@ -2406,17 +2417,17 @@ msgstr "z
 msgid "record %u could not be read\n"
 msgstr "záznam %u nelze pøeèíst\n"
 
-#: lib/query.c:766 lib/rpminstall.c:778
+#: lib/query.c:766 lib/rpminstall.c:792
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "balíèek %s není nainstalován\n"
 
-#: lib/rpmal.c:692
+#: lib/rpmal.c:694
 #, fuzzy
 msgid "(added files)"
 msgstr "©patný soubor: %s: %s\n"
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:772
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %-45s ANO (pøidáno poskytuje)\n"
@@ -2543,37 +2554,37 @@ msgstr "  %s    A %s\tB %s\n"
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "balíèek %s-%s-%s má nesplnìné po¾adavky: %s\n"
 
-#: lib/rpmfi.c:546
+#: lib/rpmfi.c:561
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/rpmfi.c:784
+#: lib/rpmfi.c:799
 #, fuzzy
 msgid "========== relocations\n"
 msgstr "========== ukládání tsort relací\n"
 
-#: lib/rpmfi.c:788
+#: lib/rpmfi.c:803
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "OS je vyøazen: %s\n"
 
-#: lib/rpmfi.c:791
+#: lib/rpmfi.c:806
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%s vytvoøen jako %s\n"
 
-#: lib/rpmfi.c:919
+#: lib/rpmfi.c:934
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "Provádìní(%s): %s\n"
 
-#: lib/rpmfi.c:929
+#: lib/rpmfi.c:944
 #, fuzzy, c-format
 msgid "relocating %s to %s\n"
 msgstr "Provádìní(%s): %s\n"
 
-#: lib/rpmfi.c:1021
+#: lib/rpmfi.c:1036
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "nemohu provést dotaz %s: %s\n"
@@ -2604,89 +2615,89 @@ msgstr ""
 msgid "Upgrading packages..."
 msgstr "aktualizace balíèku"
 
-#: lib/rpminstall.c:394
+#: lib/rpminstall.c:408
 #, fuzzy, c-format
 msgid "Adding goal: %s\n"
 msgstr "Hledám   %s: (pou¾it %s)...\n"
 
-#: lib/rpminstall.c:409
+#: lib/rpminstall.c:423
 #, fuzzy, c-format
 msgid "Retrieving %s\n"
 msgstr "RPM verze %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:436
 #, fuzzy, c-format
 msgid " ... as %s\n"
 msgstr "%s ulo¾eno jako %s\n"
 
-#: lib/rpminstall.c:426
+#: lib/rpminstall.c:440
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:481 lib/rpminstall.c:872 tools/rpmgraph.c:140
+#: lib/rpminstall.c:495 lib/rpminstall.c:886 tools/rpmgraph.c:140
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "neinstalován  "
 
-#: lib/rpminstall.c:523
+#: lib/rpminstall.c:537
 #, fuzzy, c-format
-msgid "package %s is not relocateable\n"
+msgid "package %s is not relocatable\n"
 msgstr "cesta %s v balíèku %s není pøemístitelná"
 
-#: lib/rpminstall.c:573
+#: lib/rpminstall.c:587
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "chyba pøi vytváøení doèasného souboru %s\n"
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:593
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:637
 #, fuzzy, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "vytvoøení zdrojového a binárního balíèku z <tar_soubor>"
 
-#: lib/rpminstall.c:637 lib/rpminstall.c:810 lib/rpminstall.c:1239
+#: lib/rpminstall.c:651 lib/rpminstall.c:824 lib/rpminstall.c:1253
 #: tools/rpmgraph.c:195
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "chybné závislosti pøi sestavování:\n"
 
-#: lib/rpminstall.c:644 tools/rpmgraph.c:201
+#: lib/rpminstall.c:658 tools/rpmgraph.c:201
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:688
 #, fuzzy
 msgid "installing binary packages\n"
 msgstr "nainstalovat balíèek"
 
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:712
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "nemohu vytvoøit %s: %s\n"
 
-#: lib/rpminstall.c:787
+#: lib/rpminstall.c:801
 #, fuzzy, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "Polo¾ka %s musí být v balíèku pøítomna: %s\n"
 
-#: lib/rpminstall.c:856
+#: lib/rpminstall.c:870
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "nemohu vytvoøit %s: %s\n"
 
-#: lib/rpminstall.c:862
+#: lib/rpminstall.c:876
 #, fuzzy, c-format
 msgid "Installing %s\n"
 msgstr "øádek: %s\n"
 
-#: lib/rpminstall.c:1233
+#: lib/rpminstall.c:1247
 #, c-format
 msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
 msgstr ""
@@ -2753,8 +2764,8 @@ msgid "package %s is already installed"
 msgstr "balíèek %s je ji¾ nainstalován"
 
 #: lib/rpmps.c:223
-#, c-format
-msgid "path %s in package %s is not relocateable"
+#, fuzzy, c-format
+msgid "path %s in package %s is not relocatable"
 msgstr "cesta %s v balíèku %s není pøemístitelná"
 
 #: lib/rpmps.c:228
@@ -2902,51 +2913,76 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Nemohu otevøít %s: %s\n"
 
-#: lib/rpmts.c:162
+#: lib/rpmsx.c:343
+#, c-format
+msgid "%s:  no newline on line number %d (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:360
+#, c-format
+msgid "%s:  line number %d is missing fields (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:391
+#, 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
+#, c-format
+msgid "%s:  invalid type specifier %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmsx.c:434
+#, c-format
+msgid "%s:  invalid context %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmts.c:163
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "nemohu otevøít RPM databázi v %s\n"
 
-#: lib/rpmts.c:252
+#: lib/rpmts.c:253
 #, fuzzy, c-format
 msgid "extra '(' in package label: %s\n"
 msgstr "neplatné èíslo balíèku: %s\n"
 
-#: lib/rpmts.c:270
+#: lib/rpmts.c:271
 #, fuzzy, c-format
 msgid "missing '(' in package label: %s\n"
 msgstr "Chybí '(' v %s %s\n"
 
-#: lib/rpmts.c:278
+#: lib/rpmts.c:279
 #, fuzzy, c-format
 msgid "missing ')' in package label: %s\n"
 msgstr "neplatné èíslo balíèku: %s\n"
 
-#: lib/rpmts.c:455
+#: lib/rpmts.c:456
 #, fuzzy, c-format
 msgid "cannot open Solve database in %s\n"
 msgstr "nemohu otevøít RPM databázi v %s\n"
 
-#: lib/rpmts.c:597
+#: lib/rpmts.c:598
 #, fuzzy, c-format
 msgid "Adding: %s\n"
 msgstr "øádek: %s\n"
 
-#: lib/rpmts.c:609
+#: lib/rpmts.c:610
 #, fuzzy, c-format
 msgid "Suggesting: %s\n"
 msgstr "RPM verze %s\n"
 
-#: lib/rpmts.c:1077
+#: lib/rpmts.c:1097
 #, fuzzy
 msgid "mounted filesystems:\n"
 msgstr "získávám seznam pøipojených systémù souborù\n"
 
-#: lib/rpmts.c:1079
+#: lib/rpmts.c:1099
 msgid "    i    dev bsize       bavail       iavail mount point\n"
 msgstr ""
 
-#: lib/rpmts.c:1135
+#: lib/rpmts.c:1155
 #, c-format
 msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
 msgstr ""
@@ -3158,12 +3194,12 @@ msgstr ""
 msgid "computing file dispositions\n"
 msgstr ""
 
-#: lib/verify.c:288
+#: lib/verify.c:319
 #, fuzzy, c-format
 msgid "missing  %c %s"
 msgstr "chybí { po %"
 
-#: lib/verify.c:397
+#: lib/verify.c:433
 #, fuzzy, c-format
 msgid "Unsatisfied dependencies for %s: "
 msgstr "chybné závislosti pøi sestavování:\n"
@@ -3363,161 +3399,161 @@ msgstr "nemohu otev
 msgid "cannot open %s index\n"
 msgstr "nemohu otevøít RPM databázi v %s\n"
 
-#: rpmdb/rpmdb.c:915
+#: rpmdb/rpmdb.c:917
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1193 rpmdb/rpmdb.c:1322 rpmdb/rpmdb.c:1373 rpmdb/rpmdb.c:2316
-#: rpmdb/rpmdb.c:2432 rpmdb/rpmdb.c:3161
+#: rpmdb/rpmdb.c:1195 rpmdb/rpmdb.c:1324 rpmdb/rpmdb.c:1375 rpmdb/rpmdb.c:2322
+#: rpmdb/rpmdb.c:2438 rpmdb/rpmdb.c:3167
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1567
+#: rpmdb/rpmdb.c:1569
 msgid "miFreeHeader: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1577
+#: rpmdb/rpmdb.c:1579
 #, fuzzy, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "chyba pøi vytváøení doèasného souboru %s\n"
 
-#: rpmdb/rpmdb.c:2209
+#: rpmdb/rpmdb.c:2212
 msgid "rpmdbNextIterator: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2242
 #, c-format
 msgid "rpmdb: damaged header #%u retrieved -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2520
+#: rpmdb/rpmdb.c:2526
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2583
+#: rpmdb/rpmdb.c:2589
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "chyba pøi vytváøení doèasného souboru %s\n"
 
-#: rpmdb/rpmdb.c:2698
+#: rpmdb/rpmdb.c:2704
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "odstraòuji %s-%s-%s \"%s\" z tsort relací.\n"
 
-#: rpmdb/rpmdb.c:2702
+#: rpmdb/rpmdb.c:2708
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "odstraòuji %s-%s-%s \"%s\" z tsort relací.\n"
 
-#: rpmdb/rpmdb.c:2730
+#: rpmdb/rpmdb.c:2736
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "chyba pøi vytváøení doèasného souboru %s\n"
 
-#: rpmdb/rpmdb.c:2751
+#: rpmdb/rpmdb.c:2757
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "chyba pøi vytváøení doèasného souboru %s\n"
 
-#: rpmdb/rpmdb.c:2761
+#: rpmdb/rpmdb.c:2767
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "chyba pøi vytváøení doèasného souboru %s\n"
 
-#: rpmdb/rpmdb.c:2910
+#: rpmdb/rpmdb.c:2916
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2964
+#: rpmdb/rpmdb.c:2970
 msgid "rpmdbAdd: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3136
+#: rpmdb/rpmdb.c:3142
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3140
+#: rpmdb/rpmdb.c:3146
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3180
+#: rpmdb/rpmdb.c:3186
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3581
+#: rpmdb/rpmdb.c:3587
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3619
+#: rpmdb/rpmdb.c:3625
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3651
+#: rpmdb/rpmdb.c:3657
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "znovu vytvoøit databázi z existující databáze"
 
-#: rpmdb/rpmdb.c:3655
+#: rpmdb/rpmdb.c:3661
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3661
+#: rpmdb/rpmdb.c:3667
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "chyba pøi vytváøení doèasného souboru %s\n"
 
-#: rpmdb/rpmdb.c:3663
+#: rpmdb/rpmdb.c:3669
 #, fuzzy, c-format
 msgid "creating directory %s: %s\n"
 msgstr "nemohu provést dotaz %s: %s\n"
 
-#: rpmdb/rpmdb.c:3670
+#: rpmdb/rpmdb.c:3676
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3683
+#: rpmdb/rpmdb.c:3689
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3712
+#: rpmdb/rpmdb.c:3718
 #, c-format
 msgid "header #%u in the database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3752
+#: rpmdb/rpmdb.c:3758
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3766
+#: rpmdb/rpmdb.c:3772
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3774
+#: rpmdb/rpmdb.c:3780
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3776
+#: rpmdb/rpmdb.c:3782
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3786
+#: rpmdb/rpmdb.c:3792
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3788
+#: rpmdb/rpmdb.c:3794
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "Nelze pøejmenovat %s na %s: %m\n"
@@ -3573,42 +3609,42 @@ msgstr ""
 msgid "Macro %%%s (%s) was not used below level %d\n"
 msgstr ""
 
-#: rpmio/macro.c:982
+#: rpmio/macro.c:984
 #, fuzzy, c-format
 msgid "Unknown option %c in %s(%s)\n"
 msgstr "Neznámý typ ikony: %s\n"
 
-#: rpmio/macro.c:1182
+#: rpmio/macro.c:1184
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)\n"
 msgstr ""
 
-#: rpmio/macro.c:1252 rpmio/macro.c:1269
+#: rpmio/macro.c:1255 rpmio/macro.c:1272
 #, fuzzy, c-format
 msgid "Unterminated %c: %s\n"
 msgstr "Glob není dovolen: %s\n"
 
-#: rpmio/macro.c:1310
+#: rpmio/macro.c:1313
 #, c-format
 msgid "A %% is followed by an unparseable macro\n"
 msgstr ""
 
-#: rpmio/macro.c:1439
+#: rpmio/macro.c:1442
 #, c-format
 msgid "Macro %%%.*s not found, skipping\n"
 msgstr ""
 
-#: rpmio/macro.c:1510
+#: rpmio/macro.c:1513
 msgid "Target buffer overflow\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1705 rpmio/macro.c:1711
+#: rpmio/macro.c:1708 rpmio/macro.c:1714
 #, fuzzy, c-format
 msgid "File %s: %s\n"
 msgstr "soubor %s: %s\n"
 
-#: rpmio/macro.c:1714
+#: rpmio/macro.c:1717
 #, c-format
 msgid "File %s is smaller than %u bytes\n"
 msgstr ""
index a55bf59..07dcd13 100644 (file)
--- a/po/da.po
+++ b/po/da.po
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:11-0500\n"
+"POT-Creation-Date: 2003-12-30 08:11-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"
@@ -21,44 +21,44 @@ msgstr "afh
 msgid "Unable to open spec file %s: %s\n"
 msgstr "Kan ikke åbne spec-fil %s: %s\n"
 
-#: build.c:152 build.c:164
+#: build.c:150 build.c:162
 #, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr "Kunne ikke åbne tar-videreførsel: %m\n"
 
 #. Give up
-#: build.c:171
+#: build.c:169
 #, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "Kunne ikke læse spec-fil fra %s\n"
 
-#: build.c:199
+#: build.c:197
 #, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr "Kunne ikke omdøbe %s til %s: %m\n"
 
-#: build.c:239
+#: build.c:237
 #, c-format
 msgid "failed to stat %s: %m\n"
 msgstr "kunne ikke finde %s: %m\n"
 
-#: build.c:244
+#: build.c:242
 #, c-format
 msgid "File %s is not a regular file.\n"
 msgstr "Filen %s er ikke en regulær fil.\n"
 
-#: build.c:253
+#: build.c:251
 #, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr "Filen %s synes ikke at være en spec-fil.\n"
 
 #. parse up the build operators
-#: build.c:324
+#: build.c:322
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr "Opbygger mål-platforme: %s\n"
 
-#: build.c:339
+#: build.c:337
 #, c-format
 msgid "Building for target %s\n"
 msgstr "Opbygger for mål %s\n"
@@ -110,7 +110,7 @@ msgstr "F
 msgid "%s: %s\n"
 msgstr "fil %s: %s\n"
 
-#: rpmqv.c:129 lib/poptALL.c:114
+#: rpmqv.c:129 lib/poptALL.c:119
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM version %s\n"
@@ -419,166 +419,166 @@ msgstr "&& og || underst
 msgid "syntax error in expression\n"
 msgstr "syntaksfejl i udtryk\n"
 
-#: build/files.c:278
+#: build/files.c:280
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "TIMECHECK-fejl: %s\n"
 
-#: build/files.c:343 build/files.c:543 build/files.c:739
+#: build/files.c:345 build/files.c:545 build/files.c:741
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "Manglende '(' i %s %s\n"
 
-#: build/files.c:354 build/files.c:673 build/files.c:750
+#: build/files.c:356 build/files.c:675 build/files.c:752
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "Manglende ')' i %s %s\n"
 
-#: build/files.c:392 build/files.c:698
+#: build/files.c:394 build/files.c:700
 #, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "Ugyldigt %s-symbol: %s\n"
 
-#: build/files.c:502
+#: build/files.c:504
 #, fuzzy, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "Manglende '(' i %s %s\n"
 
-#: build/files.c:559
+#: build/files.c:561
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr "Ikke-mellemrum efterfølger %s(): %s\n"
 
-#: build/files.c:597
+#: build/files.c:599
 #, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "Ugyldig syntaks: %s(%s)\n"
 
-#: build/files.c:607
+#: build/files.c:609
 #, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "Ugyldig tilstandsangivelse: %s(%s)\n"
 
-#: build/files.c:619
+#: build/files.c:621
 #, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "Ugyldig dirmode-spec: %s(%s)\n"
 
-#: build/files.c:777
+#: build/files.c:779
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr "Anormal locale-længde: \"%.*s\" i %%lang(%s)\n"
 
 #. @innercontinue@
-#: build/files.c:788
+#: build/files.c:790
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr "Dobbelt locale %.*s i %%lang(%s)\n"
 
-#: build/files.c:917
+#: build/files.c:919
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr "Træfningsgrænse for %%docdir\n"
 
-#: build/files.c:925
+#: build/files.c:927
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr "Kun et parameter for %%docdir\n"
 
 #. We already got a file -- error
-#: build/files.c:959
+#: build/files.c:961
 #, c-format
 msgid "Two files on one line: %s\n"
 msgstr "To filer på én linie: %s\n"
 
-#: build/files.c:976
+#: build/files.c:978
 #, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "Fil skal begynde med \"/\": %s\n"
 
-#: build/files.c:989
+#: build/files.c:991
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr "Kan ikke blande special-%%doc med andre former: %s\n"
 
-#: build/files.c:1141
+#: build/files.c:1149
 #, c-format
 msgid "File listed twice: %s\n"
 msgstr "Fil angivet to gange: %s\n"
 
-#: build/files.c:1280
+#: build/files.c:1288
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "Symbolsk lænke peger på BuildRoot: %s -> %s\n"
 
-#: build/files.c:1520
+#: build/files.c:1535
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Fil passer ikke til præfiks (%s): %s\n"
 
-#: build/files.c:1544
+#: build/files.c:1559
 #, c-format
 msgid "File not found: %s\n"
 msgstr "Fil ikke fundet: %s\n"
 
-#: build/files.c:1752
+#: build/files.c:1767
 #, fuzzy, c-format
 msgid "%s: public key read failed.\n"
 msgstr "%s: readLead mislykkedes\n"
 
-#: build/files.c:1756 lib/rpmchecksig.c:580
+#: build/files.c:1771 lib/rpmchecksig.c:580
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: build/files.c:1804
+#: build/files.c:1819
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Fil kræver foranstillet \"/\": %s\n"
 
-#: build/files.c:1828
+#: build/files.c:1843
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "linie %d: Filnavn ikke tilladt: %s\n"
 
-#: build/files.c:1845 lib/rpminstall.c:347
+#: build/files.c:1860 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:1905
+#: build/files.c:1920
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Kunne ikke åbne '%%files'-fil %s: %s\n"
 
-#: build/files.c:1916 build/pack.c:156
+#: build/files.c:1931 build/pack.c:156
 #, c-format
 msgid "line: %s\n"
 msgstr "linie: %s\n"
 
-#: build/files.c:2307
+#: build/files.c:2323
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "Ugyldig fil: %s: %s\n"
 
-#: build/files.c:2319 build/parsePrep.c:50
+#: build/files.c:2335 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Ugyldig ejer/gruppe: %s\n"
 
-#: build/files.c:2363
+#: build/files.c:2379
 #, fuzzy, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr "udpakning af arkiv mislykkedes%s%s: %s\n"
 
-#: build/files.c:2386
+#: build/files.c:2402
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
 "%s"
 msgstr ""
 
-#: build/files.c:2414
+#: build/files.c:2430
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Gennemløber filer: %s-%s-%s\n"
@@ -723,7 +723,7 @@ msgstr "Kunne ikke l
 msgid "Could not open %s: %s\n"
 msgstr "Kunne ikke åbne %s: %s\n"
 
-#: build/pack.c:632 lib/psm.c:1427
+#: build/pack.c:632 lib/psm.c:1420
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Kunne ikke skrive pakke: %s\n"
@@ -753,7 +753,7 @@ msgstr "Kunne ikke l
 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:1725
+#: build/pack.c:725 lib/psm.c:1689
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Skrev: %s\n"
@@ -1243,20 +1243,20 @@ msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
 msgstr ""
 "generér pakkehoved(er), der er kompatible med (gamle) rpm[23]-indpakninger"
 
-#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329
-#: lib/poptQV.c:338 lib/poptQV.c:377
+#: build/poptBT.c:229 lib/poptALL.c:240 lib/poptI.c:261 lib/poptQV.c:335
+#: lib/poptQV.c:344 lib/poptQV.c:383
 #, fuzzy
 msgid "don't verify package digest(s)"
 msgstr "undlad at tjekke pakkers afhængighedskrav"
 
-#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332
-#: lib/poptQV.c:340 lib/poptQV.c:380
+#: build/poptBT.c:231 lib/poptALL.c:242 lib/poptI.c:263 lib/poptQV.c:338
+#: lib/poptQV.c:346 lib/poptQV.c:386
 #, fuzzy
 msgid "don't verify database header(s) when retrieved"
 msgstr "tjek ikke pakkens arkitektur"
 
-#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335
-#: lib/poptQV.c:342 lib/poptQV.c:382
+#: build/poptBT.c:233 lib/poptALL.c:248 lib/poptI.c:265 lib/poptQV.c:341
+#: lib/poptQV.c:348 lib/poptQV.c:388
 #, fuzzy
 msgid "don't verify package signature(s)"
 msgstr "verificér pakkesignatur"
@@ -1327,32 +1327,32 @@ msgstr "Ugyldigt magisk tal"
 msgid "Bad/unreadable  header"
 msgstr "Ugyldigt/ulæseligt hoved"
 
-#: lib/cpio.c:232
+#: lib/cpio.c:233
 msgid "Header size too big"
 msgstr "Hovedstørrelse er for stor"
 
-#: lib/cpio.c:233
+#: lib/cpio.c:234
 msgid "Unknown file type"
 msgstr "Ukendt filtype"
 
-#: lib/cpio.c:234
+#: lib/cpio.c:235
 #, fuzzy
 msgid "Missing hard link(s)"
 msgstr "Manglende hård lænke"
 
-#: lib/cpio.c:235
+#: lib/cpio.c:236
 msgid "MD5 sum mismatch"
 msgstr "MD5-sum stemmer ikke"
 
-#: lib/cpio.c:236
+#: lib/cpio.c:237
 msgid "Internal error"
 msgstr "Intern fejl"
 
-#: lib/cpio.c:237
+#: lib/cpio.c:238
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:250
+#: lib/cpio.c:251
 msgid " failed - "
 msgstr " mislykkedes - "
 
@@ -1489,46 +1489,56 @@ msgstr "Fil %4d: %07o %s.%s\t %s\n"
 msgid "file %s is on an unknown device\n"
 msgstr "fil %s er på en ukendt enhed\n"
 
-#: lib/fsm.c:350
+#: lib/fsm.c:352
 msgid "========== Directories not explicitly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:352
+#: lib/fsm.c:354
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "linie %d: %s\n"
 
-#: lib/fsm.c:1293
+#: lib/fsm.c:768
+#, c-format
+msgid "user %s does not exist - using root\n"
+msgstr "bruger %s eksisterer ikke - bruger root\n"
+
+#: lib/fsm.c:776
+#, c-format
+msgid "group %s does not exist - using root\n"
+msgstr "gruppe %s eksisterer ikke - bruger root\n"
+
+#: lib/fsm.c:1334
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1592
+#: lib/fsm.c:1633
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1719 lib/fsm.c:1855
+#: lib/fsm.c:1760 lib/fsm.c:1896
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s gemt som %s\n"
 
-#: lib/fsm.c:1882
+#: lib/fsm.c:1923
 #, 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:1888
+#: lib/fsm.c:1929
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "fjernelse (rmdir) af %s mislykkedes: %s\n"
 
-#: lib/fsm.c:1903
+#: lib/fsm.c:1944
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "åbning af %s mislykkedes %s\n"
 
-#: lib/fsm.c:1925
+#: lib/fsm.c:1966
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s oprettet som %s\n"
@@ -1645,113 +1655,113 @@ msgstr "%s: readLead mislykkedes\n"
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread mislykkedes: %s\n"
 
-#: lib/poptALL.c:222
+#: lib/poptALL.c:227
 msgid "predefine MACRO with value EXPR"
 msgstr ""
 
-#: lib/poptALL.c:223 lib/poptALL.c:226
+#: lib/poptALL.c:228 lib/poptALL.c:231
 msgid "'MACRO EXPR'"
 msgstr ""
 
-#: lib/poptALL.c:225
+#: lib/poptALL.c:230
 msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: lib/poptALL.c:228
+#: lib/poptALL.c:233
 #, fuzzy
 msgid "print macro expansion of EXPR"
 msgstr "udlæs makroudvidelse af <udtryk>+"
 
-#: lib/poptALL.c:229
+#: lib/poptALL.c:234
 msgid "'EXPR'"
 msgstr ""
 
-#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254
+#: lib/poptALL.c:236 lib/poptALL.c:255 lib/poptALL.c:259
 #, fuzzy
 msgid "read <FILE:...> instead of default file(s)"
 msgstr "læs <fil:...> i stedet for standard makrofil(er)"
 
-#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255
+#: lib/poptALL.c:237 lib/poptALL.c:256 lib/poptALL.c:260
 msgid "<FILE:...>"
 msgstr ""
 
-#: lib/poptALL.c:240 lib/poptALL.c:274
+#: lib/poptALL.c:245 lib/poptALL.c:279
 msgid "disable use of libio(3) API"
 msgstr "undlad at benytte libio(3)-API"
 
-#: lib/poptALL.c:246
+#: lib/poptALL.c:251
 #, fuzzy
 msgid "send stdout to CMD"
 msgstr "send standard-ud til <kmd>"
 
-#: lib/poptALL.c:247
+#: lib/poptALL.c:252
 msgid "CMD"
 msgstr ""
 
-#: lib/poptALL.c:258
+#: lib/poptALL.c:263
 #, fuzzy
 msgid "use ROOT as top level directory"
 msgstr "brug <katalog> som topniveau-katalog"
 
-#: lib/poptALL.c:259
+#: lib/poptALL.c:264
 msgid "ROOT"
 msgstr ""
 
-#: lib/poptALL.c:262
+#: lib/poptALL.c:267
 msgid "display known query tags"
 msgstr "vis kendte forespørgselsmærker"
 
-#: lib/poptALL.c:264
+#: lib/poptALL.c:269
 msgid "display final rpmrc and macro configuration"
 msgstr "vis den endelige rpmrc og makrokonfiguration"
 
-#: lib/poptALL.c:266
+#: lib/poptALL.c:271
 msgid "provide less detailed output"
 msgstr "medtag mindre detaljerede oplysninger"
 
-#: lib/poptALL.c:268
+#: lib/poptALL.c:273
 msgid "provide more detailed output"
 msgstr "medtag mere detaljerede oplysninger"
 
-#: lib/poptALL.c:270
+#: lib/poptALL.c:275
 msgid "print the version of rpm being used"
 msgstr "vis versionen af rpm som benyttes"
 
-#: lib/poptALL.c:283
+#: lib/poptALL.c:288
 msgid "debug payload file state machine"
 msgstr ""
 
-#: lib/poptALL.c:285
+#: lib/poptALL.c:290
 msgid "use threads for file state machine"
 msgstr ""
 
-#: lib/poptALL.c:287
+#: lib/poptALL.c:292
 msgid "debug protocol data stream"
 msgstr "aflus protokol-datastrøm"
 
-#: lib/poptALL.c:292
+#: lib/poptALL.c:297
 #, fuzzy
 msgid "debug option/argument processing"
 msgstr "Intern fejl i parameterfortolkningen (%d) :-(\n"
 
-#: lib/poptALL.c:297
+#: lib/poptALL.c:302
 msgid "debug package state machine"
 msgstr ""
 
-#: lib/poptALL.c:299
+#: lib/poptALL.c:304
 msgid "use threads for package state machine"
 msgstr ""
 
-#: lib/poptALL.c:311
+#: lib/poptALL.c:316
 msgid "debug rpmio I/O"
 msgstr "aflus rpmio I/O"
 
-#: lib/poptALL.c:323
+#: lib/poptALL.c:330
 msgid "debug URL cache handling"
 msgstr "aflus URL-bufferhåndtering"
 
 #. @-nullpass@
-#: lib/poptALL.c:393
+#: lib/poptALL.c:400
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1780,18 +1790,18 @@ msgstr ""
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:151
+#: lib/poptI.c:155
 #, fuzzy
 msgid "add suggested packages to transaction"
 msgstr "forespørg/verificér pakke(r) i gruppen"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:159
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "installér alle filer -- også konfigurationsfiler, der ellers skulle "
 "overspringes"
 
-#: lib/poptI.c:159
+#: lib/poptI.c:163
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1799,155 +1809,161 @@ msgstr ""
 "fjern alle pakker, som passer med <pakke> (normalt ville det medføre en "
 "fejl, hvis <pakke> angav flere pakker)"
 
-#: lib/poptI.c:164 tools/rpmgraph.c:273
+#: lib/poptI.c:168 tools/rpmgraph.c:273
 msgid "use anaconda \"presentation order\""
 msgstr ""
 
-#: lib/poptI.c:169 lib/poptI.c:238
+#: lib/poptI.c:173 lib/poptI.c:245
 #, fuzzy
 msgid "do not execute package scriptlet(s)"
 msgstr "udfør ingen pakkespecifikke skripter"
 
-#: lib/poptI.c:173
-msgid "relocate files in non-relocateable package"
+#: lib/poptI.c:177
+#, fuzzy
+msgid "relocate files in non-relocatable package"
 msgstr "omdirigér filer i ikke-omdirigérbar pakke"
 
-#: lib/poptI.c:176
+#: lib/poptI.c:180
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 msgid "erase (uninstall) package"
 msgstr "slet (afinstallér) pakke"
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 #, fuzzy
 msgid "<package>+"
 msgstr "<pakke>"
 
-#: lib/poptI.c:182 lib/poptI.c:219
+#: lib/poptI.c:186 lib/poptI.c:223
 #, fuzzy
 msgid "do not install configuration files"
 msgstr "vis alle konfigurationsfiler"
 
-#: lib/poptI.c:185 lib/poptI.c:224
+#: lib/poptI.c:189 lib/poptI.c:228
 msgid "do not install documentation"
 msgstr "installér ikke dokumentation"
 
-#: lib/poptI.c:187
+#: lib/poptI.c:191
 msgid "skip files with leading component <path> "
 msgstr "overspring filer med foranstillet komponent <sti> "
 
-#: lib/poptI.c:188
+#: lib/poptI.c:192
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:191
+#: lib/poptI.c:195
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "forkortelse for --replacepkgs --replacefiles"
 
-#: lib/poptI.c:195
+#: lib/poptI.c:199
 #, fuzzy
 msgid "upgrade package(s) if already installed"
 msgstr "opgradér pakke, hvis den allerede er installeret"
 
-#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
+#: lib/poptI.c:200 lib/poptI.c:216 lib/poptI.c:312
 msgid "<packagefile>+"
 msgstr "<pakkefil>+"
 
-#: lib/poptI.c:198
+#: lib/poptI.c:202
 msgid "print hash marks as package installs (good with -v)"
 msgstr "udlæs #'er efterhånden som pakken installeres (virker sammen med -v)"
 
-#: lib/poptI.c:201
+#: lib/poptI.c:205
 msgid "don't verify package architecture"
 msgstr "tjek ikke pakkens arkitektur"
 
-#: lib/poptI.c:204
+#: lib/poptI.c:208
 msgid "don't verify package operating system"
 msgstr "tjek ikke pakkens operativsystem"
 
-#: lib/poptI.c:207
+#: lib/poptI.c:211
 msgid "don't check disk space before installing"
 msgstr "tjek ikke om der er diskplads, før der installeres"
 
-#: lib/poptI.c:209
+#: lib/poptI.c:213
 msgid "install documentation"
 msgstr "installér dokumentation"
 
-#: lib/poptI.c:212
+#: lib/poptI.c:216
 #, fuzzy
 msgid "install package(s)"
 msgstr "installér pakke"
 
-#: lib/poptI.c:215
+#: lib/poptI.c:219
 msgid "update the database, but do not modify the filesystem"
 msgstr "opdatér databasen, men rør ikke filsystemet"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:225
 msgid "do not verify package dependencies"
 msgstr "undlad at tjekke pakkers afhængighedskrav"
 
-#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:231 lib/poptQV.c:279 lib/poptQV.c:282
 #, fuzzy
 msgid "don't verify MD5 digest of files"
 msgstr "verificér ikke filerne i pakke"
 
-#: lib/poptI.c:230
+#: lib/poptI.c:233
+#, fuzzy
+msgid "don't install file security contexts"
+msgstr "vis alle konfigurationsfiler"
+
+#: lib/poptI.c:237
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 "ændr ikke pakkernes installationsrækkefølge for at opfylde afhængigheder"
 
-#: lib/poptI.c:235
+#: lib/poptI.c:242
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:242
+#: lib/poptI.c:249
 #, fuzzy, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "udfør ikke eventuelle skripter"
 
-#: lib/poptI.c:245
+#: lib/poptI.c:252
 #, fuzzy, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "udfør ikke eventuelle skripter"
 
-#: lib/poptI.c:248
+#: lib/poptI.c:255
 #, fuzzy, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "udfør ikke eventuelle skripter"
 
-#: lib/poptI.c:251
+#: lib/poptI.c:258
 #, fuzzy, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "udfør ikke eventuelle skripter"
 
-#: lib/poptI.c:261
+#: lib/poptI.c:268
 #, fuzzy
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "udfør ikke småskripter, der måtte udløses af denne pakke"
 
-#: lib/poptI.c:264
+#: lib/poptI.c:271
 #, fuzzy, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "udfør ingen pakkespecifikke skripter"
 
-#: lib/poptI.c:267
+#: lib/poptI.c:274
 #, fuzzy, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "udfør ingen installations-småskripter"
 
-#: lib/poptI.c:270
+#: lib/poptI.c:277
 #, fuzzy, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "udfør ingen installations-småskripter"
 
-#: lib/poptI.c:273
+#: lib/poptI.c:280
 #, fuzzy, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "udfør ingen installations-småskripter"
 
-#: lib/poptI.c:277
+#: lib/poptI.c:284
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1955,53 +1971,53 @@ msgstr ""
 "opgradér til en ældre version af pakken (--force gør ikke dette automatisk "
 "ved opgraderinger)"
 
-#: lib/poptI.c:281
+#: lib/poptI.c:288
 msgid "print percentages as package installs"
 msgstr "vis procenter efterhånden som pakken installeres"
 
-#: lib/poptI.c:283
+#: lib/poptI.c:290
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "omdirigér pakken til <katalog>, hvis omdirigérbar"
 
-#: lib/poptI.c:284
+#: lib/poptI.c:291
 msgid "<dir>"
 msgstr "<katalog>"
 
-#: lib/poptI.c:286
+#: lib/poptI.c:293
 #, fuzzy
 msgid "relocate files from path <old> to <new>"
 msgstr "omdirigér filer fra <gammelsti> til <nysti>"
 
-#: lib/poptI.c:287
+#: lib/poptI.c:294
 #, fuzzy
 msgid "<old>=<new>"
 msgstr "<gammelsti>=<nysti>"
 
-#: lib/poptI.c:290
+#: lib/poptI.c:297
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:293
+#: lib/poptI.c:300
 msgid "install even if the package replaces installed files"
 msgstr "intallér selvom pakken erstatter installerede filer"
 
-#: lib/poptI.c:296
+#: lib/poptI.c:303
 msgid "reinstall if the package is already present"
 msgstr "geninstallér hvis pakken allerede er installeret"
 
-#: lib/poptI.c:298
+#: lib/poptI.c:305
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:299
+#: lib/poptI.c:306
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:301
+#: lib/poptI.c:308
 msgid "don't install, but tell if it would work or not"
 msgstr "installér ikke, men fortæl om det ville lykkes eller ej"
 
-#: lib/poptI.c:304
+#: lib/poptI.c:311
 #, fuzzy
 msgid "upgrade package(s)"
 msgstr "opgradér pakke"
@@ -2081,210 +2097,205 @@ msgstr "foresp
 msgid "query/verify the package(s) which provide a dependency"
 msgstr "forespørg/verificér pakke(r), der tilfredsstiller et krav"
 
-#: lib/poptQV.c:226
+#: lib/poptQV.c:230
 msgid "list all configuration files"
 msgstr "vis alle konfigurationsfiler"
 
-#: lib/poptQV.c:228
+#: lib/poptQV.c:232
 msgid "list all documentation files"
 msgstr "vis alle dokumentationsfiler"
 
-#: lib/poptQV.c:230
+#: lib/poptQV.c:234
 msgid "dump basic file information"
 msgstr "vis grundlæggende filinformation"
 
-#: lib/poptQV.c:234
+#: lib/poptQV.c:238
 msgid "list files in package"
 msgstr "vis liste over filerne i pakken"
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:243
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:243
+#: lib/poptQV.c:247
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
-#: lib/poptQV.c:246
+#: lib/poptQV.c:250
 #, fuzzy, c-format
 msgid "skip %%readme files"
 msgstr "%s: readLead mislykkedes\n"
 
-#: lib/poptQV.c:252
+#: lib/poptQV.c:256
 msgid "use the following query format"
 msgstr "brug følgende forespørgselsformat"
 
-#: lib/poptQV.c:254
+#: lib/poptQV.c:258
 msgid "substitute i18n sections into spec file"
 msgstr "erstat i18n-sektioner i spec-fil"
 
-#: lib/poptQV.c:256
+#: lib/poptQV.c:260
 msgid "display the states of the listed files"
 msgstr "vis filernes status"
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:286
 #, fuzzy
 msgid "don't verify size of files"
 msgstr "verificér ikke filerne i pakke"
 
-#: lib/poptQV.c:285
+#: lib/poptQV.c:289
 #, fuzzy
 msgid "don't verify symlink path of files"
 msgstr "verificér ikke filerne i pakke"
 
-#: lib/poptQV.c:288
+#: lib/poptQV.c:292
 #, fuzzy
 msgid "don't verify owner of files"
 msgstr "verificér ikke filerne i pakke"
 
-#: lib/poptQV.c:291
+#: lib/poptQV.c:295
 #, fuzzy
 msgid "don't verify group of files"
 msgstr "verificér ikke filerne i pakke"
 
-#: lib/poptQV.c:294
+#: lib/poptQV.c:298
 msgid "don't verify modification time of files"
 msgstr ""
 
-#: lib/poptQV.c:297 lib/poptQV.c:300
+#: lib/poptQV.c:301 lib/poptQV.c:304
 #, fuzzy
 msgid "don't verify mode of files"
 msgstr "verificér ikke filerne i pakke"
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:307
+#, fuzzy
+msgid "don't verify file security contexts"
+msgstr "verificér ikke filerne i pakke"
+
+#: lib/poptQV.c:309
 msgid "don't verify files in package"
 msgstr "verificér ikke filerne i pakke"
 
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
+#: lib/poptQV.c:312 lib/poptQV.c:315 tools/rpmgraph.c:267
 #, fuzzy
 msgid "don't verify package dependencies"
 msgstr "undlad at tjekke pakkers afhængighedskrav"
 
-#: lib/poptQV.c:314 lib/poptQV.c:318 lib/poptQV.c:321 lib/poptQV.c:324
+#: lib/poptQV.c:320 lib/poptQV.c:324 lib/poptQV.c:327 lib/poptQV.c:330
 #, fuzzy
 msgid "don't execute verify script(s)"
 msgstr "udfør ikke eventuelt %verifyscript"
 
-#: lib/poptQV.c:348
+#: lib/poptQV.c:354
 #, fuzzy
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr "verificér ikke filerne i pakke"
 
-#: lib/poptQV.c:351
+#: lib/poptQV.c:357
 #, fuzzy
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr "verificér ikke filerne i pakke"
 
-#: lib/poptQV.c:366
+#: lib/poptQV.c:372
 #, fuzzy
 msgid "sign package(s) (identical to --resign)"
 msgstr "underskriv en pakke (slet nuværende signatur)"
 
-#: lib/poptQV.c:368
+#: lib/poptQV.c:374
 #, fuzzy
 msgid "verify package signature(s)"
 msgstr "verificér pakkesignatur"
 
-#: lib/poptQV.c:370
+#: lib/poptQV.c:376
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:372
+#: lib/poptQV.c:378
 #, fuzzy
 msgid "sign package(s) (identical to --addsign)"
 msgstr "underskriv en pakke (slet nuværende signatur)"
 
-#: lib/poptQV.c:374
+#: lib/poptQV.c:380
 #, fuzzy
 msgid "generate signature"
 msgstr "generér PGP/GPG-signatur"
 
-#: lib/psm.c:269
+#: lib/psm.c:268
 msgid "source package expected, binary found\n"
 msgstr "kildepakke forventet, binær fundet\n"
 
-#: lib/psm.c:394
+#: lib/psm.c:386
 msgid "source package contains no .spec file\n"
 msgstr "kildepakke indeholder ingen .spec-fil\n"
 
-#: lib/psm.c:480
+#: lib/psm.c:472
 #, c-format
 msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
 msgstr ""
 
-#: lib/psm.c:562
+#: lib/psm.c:554
 #, c-format
 msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
 msgstr ""
 
-#: lib/psm.c:570
+#: lib/psm.c:562
 #, c-format
 msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
 msgstr ""
 
-#: lib/psm.c:735
+#: lib/psm.c:730
 #, c-format
 msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
 msgstr ""
 
-#: lib/psm.c:756
+#: lib/psm.c:751
 #, 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:762
+#: lib/psm.c:757
 #, 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:1191
+#: lib/psm.c:1188
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "pakke: %s-%s-%s filer test = %d\n"
 
-#: lib/psm.c:1330
+#: lib/psm.c:1323
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1439
+#: lib/psm.c:1432
 #, fuzzy
 msgid "Unable to reload signature header\n"
 msgstr "Kunne ikke læse hoved fra %s: %s\n"
 
-#: lib/psm.c:1485
-#, c-format
-msgid "user %s does not exist - using root\n"
-msgstr "bruger %s eksisterer ikke - bruger root\n"
-
-#: lib/psm.c:1494
-#, c-format
-msgid "group %s does not exist - using root\n"
-msgstr "gruppe %s eksisterer ikke - bruger root\n"
-
-#: lib/psm.c:1546
+#: lib/psm.c:1510
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "udpakning af arkiv mislykkedes%s%s: %s\n"
 
-#: lib/psm.c:1547
+#: lib/psm.c:1511
 msgid " on file "
 msgstr " for fil "
 
-#: lib/psm.c:1733
+#: lib/psm.c:1697
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "kunne ikke åbne %s: %s\n"
 
-#: lib/psm.c:1736
+#: lib/psm.c:1700
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s mislykkedes\n"
 
-#: lib/query.c:118 lib/rpmts.c:565
+#: lib/query.c:118 lib/rpmts.c:566
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "ugyldigt format: %s\n"
@@ -2332,8 +2343,8 @@ msgstr "pakke har hverken filejerskabs- eller id-lister\n"
 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:462
-#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576
+#: 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
 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157
 #, c-format
 msgid "open of %s failed: %s\n"
@@ -2348,7 +2359,7 @@ msgstr "foresp
 msgid "old format source packages cannot be queried\n"
 msgstr "pakke med gammelt kildeformat kan ikke forespørges\n"
 
-#: lib/query.c:488 lib/rpminstall.c:608
+#: lib/query.c:488 lib/rpminstall.c:622
 #, fuzzy, c-format
 msgid "%s: not an rpm package (or package manifest): %s\n"
 msgstr "ingen pakker udløser %s\n"
@@ -2417,17 +2428,17 @@ msgstr "pakkens post-nummer: %u\n"
 msgid "record %u could not be read\n"
 msgstr "post %d kunne ikke læses\n"
 
-#: lib/query.c:766 lib/rpminstall.c:778
+#: lib/query.c:766 lib/rpminstall.c:792
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "pakken %s er ikke installeret\n"
 
-#: lib/rpmal.c:692
+#: lib/rpmal.c:694
 #, fuzzy
 msgid "(added files)"
 msgstr "ugyldig db-fil %s\n"
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:772
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %-45s JA (tilføjede 'provide')\n"
@@ -2554,36 +2565,36 @@ msgstr "  %s    A %s\tB %s\n"
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "pakke %s-%s-%s krav ikke opfyldt: %s\n"
 
-#: lib/rpmfi.c:546
+#: lib/rpmfi.c:561
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s oversprunget grundet manglende ok-flag\n"
 
-#: lib/rpmfi.c:784
+#: lib/rpmfi.c:799
 msgid "========== relocations\n"
 msgstr "========== gemmer omrokeringer\n"
 
-#: lib/rpmfi.c:788
+#: lib/rpmfi.c:803
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr "%5d ekskluderer %s\n"
 
-#: lib/rpmfi.c:791
+#: lib/rpmfi.c:806
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d omrokerer %s -> %s\n"
 
-#: lib/rpmfi.c:919
+#: lib/rpmfi.c:934
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "ekskluderer %s %s\n"
 
-#: lib/rpmfi.c:929
+#: lib/rpmfi.c:944
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "omrokerer %s til %s\n"
 
-#: lib/rpmfi.c:1021
+#: lib/rpmfi.c:1036
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "omrokerer kataloget %s til %s\n"
@@ -2615,88 +2626,88 @@ msgstr "Forbereder..."
 msgid "Upgrading packages..."
 msgstr "opgradér pakke"
 
-#: lib/rpminstall.c:394
+#: lib/rpminstall.c:408
 #, fuzzy, c-format
 msgid "Adding goal: %s\n"
 msgstr "Finder %s: (benytter %s)...\n"
 
-#: lib/rpminstall.c:409
+#: lib/rpminstall.c:423
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Modtager %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:436
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... som %s\n"
 
-#: lib/rpminstall.c:426
+#: lib/rpminstall.c:440
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "overspringer %s - overførsel mislykkedes - %s\n"
 
-#: lib/rpminstall.c:481 lib/rpminstall.c:872 tools/rpmgraph.c:140
+#: lib/rpminstall.c:495 lib/rpminstall.c:886 tools/rpmgraph.c:140
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s kunne ikke installeres\n"
 
-#: lib/rpminstall.c:523
-#, c-format
-msgid "package %s is not relocateable\n"
+#: lib/rpminstall.c:537
+#, fuzzy, c-format
+msgid "package %s is not relocatable\n"
 msgstr "pakke %s kan ikke omrokeres\n"
 
-#: lib/rpminstall.c:573
+#: lib/rpminstall.c:587
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "fejl ved læsning fra filen %s\n"
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:593
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "filen %s kræver en nyere version af RPM\n"
 
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:637
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "fandt %d kilde- og %d binærpakker\n"
 
-#: lib/rpminstall.c:637 lib/rpminstall.c:810 lib/rpminstall.c:1239
+#: lib/rpminstall.c:651 lib/rpminstall.c:824 lib/rpminstall.c:1253
 #: tools/rpmgraph.c:195
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "afhængighedskrav, der ikke kunne imødekommes:\n"
 
-#: lib/rpminstall.c:644 tools/rpmgraph.c:201
+#: lib/rpminstall.c:658 tools/rpmgraph.c:201
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:688
 msgid "installing binary packages\n"
 msgstr "installerer binærpakker\n"
 
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:712
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "kunne ikke åbne fil %s: %s\n"
 
-#: lib/rpminstall.c:787
+#: lib/rpminstall.c:801
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" angiver flere pakker\n"
 
-#: lib/rpminstall.c:856
+#: lib/rpminstall.c:870
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "kunne ikke åbne %s: %s\n"
 
-#: lib/rpminstall.c:862
+#: lib/rpminstall.c:876
 #, c-format
 msgid "Installing %s\n"
 msgstr "Installerer %s\n"
 
-#: lib/rpminstall.c:1233
+#: lib/rpminstall.c:1247
 #, c-format
 msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
 msgstr ""
@@ -2763,8 +2774,8 @@ msgid "package %s is already installed"
 msgstr "pakken %s er allerede installeret"
 
 #: lib/rpmps.c:223
-#, c-format
-msgid "path %s in package %s is not relocateable"
+#, fuzzy, c-format
+msgid "path %s in package %s is not relocatable"
 msgstr "sti %s i pakke %s kan ikke omrokeres"
 
 #: lib/rpmps.c:228
@@ -2915,53 +2926,78 @@ msgstr "Kunne ikke l
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Kunne ikke åbne %s for læsning: %s.\n"
 
-#: lib/rpmts.c:162
+#: lib/rpmsx.c:343
+#, c-format
+msgid "%s:  no newline on line number %d (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:360
+#, c-format
+msgid "%s:  line number %d is missing fields (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:391
+#, 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
+#, c-format
+msgid "%s:  invalid type specifier %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmsx.c:434
+#, c-format
+msgid "%s:  invalid context %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmts.c:163
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "kunne ikke åbne Packages-database i %s\n"
 
-#: lib/rpmts.c:252
+#: lib/rpmts.c:253
 #, fuzzy, c-format
 msgid "extra '(' in package label: %s\n"
 msgstr "ugyldigt pakkenummer: %s\n"
 
-#: lib/rpmts.c:270
+#: lib/rpmts.c:271
 #, fuzzy, c-format
 msgid "missing '(' in package label: %s\n"
 msgstr "Manglende '(' i %s %s\n"
 
-#: lib/rpmts.c:278
+#: lib/rpmts.c:279
 #, fuzzy, c-format
 msgid "missing ')' in package label: %s\n"
 msgstr "ugyldigt pakkenummer: %s\n"
 
-#: lib/rpmts.c:455
+#: lib/rpmts.c:456
 #, fuzzy, c-format
 msgid "cannot open Solve database in %s\n"
 msgstr "kan ikke åbne rpm-database i %s\n"
 
-#: lib/rpmts.c:597
+#: lib/rpmts.c:598
 #, fuzzy, c-format
 msgid "Adding: %s\n"
 msgstr "linie: %s\n"
 
-#: lib/rpmts.c:609
+#: lib/rpmts.c:610
 #, fuzzy, c-format
 msgid "Suggesting: %s\n"
 msgstr ""
 "kilder i: %s\n"
 "\n"
 
-#: lib/rpmts.c:1077
+#: lib/rpmts.c:1097
 #, fuzzy
 msgid "mounted filesystems:\n"
 msgstr "henter liste over monterede filsystemer\n"
 
-#: lib/rpmts.c:1079
+#: lib/rpmts.c:1099
 msgid "    i    dev bsize       bavail       iavail mount point\n"
 msgstr ""
 
-#: lib/rpmts.c:1135
+#: lib/rpmts.c:1155
 #, c-format
 msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
 msgstr ""
@@ -3168,12 +3204,12 @@ msgstr ""
 msgid "computing file dispositions\n"
 msgstr ""
 
-#: lib/verify.c:288
+#: lib/verify.c:319
 #, fuzzy, c-format
 msgid "missing  %c %s"
 msgstr "manglende  %s"
 
-#: lib/verify.c:397
+#: lib/verify.c:433
 #, fuzzy, c-format
 msgid "Unsatisfied dependencies for %s: "
 msgstr "Ikke-tilfredsstillede afhængighedskrav for %s-%s-%s: "
@@ -3373,165 +3409,165 @@ msgstr "kan ikke 
 msgid "cannot open %s index\n"
 msgstr "kan ikke åbne '%s'-indeks\n"
 
-#: rpmdb/rpmdb.c:915
+#: rpmdb/rpmdb.c:917
 msgid "no dbpath has been set\n"
 msgstr "der er ikke sat nogen dbpath\n"
 
-#: rpmdb/rpmdb.c:1193 rpmdb/rpmdb.c:1322 rpmdb/rpmdb.c:1373 rpmdb/rpmdb.c:2316
-#: rpmdb/rpmdb.c:2432 rpmdb/rpmdb.c:3161
+#: rpmdb/rpmdb.c:1195 rpmdb/rpmdb.c:1324 rpmdb/rpmdb.c:1375 rpmdb/rpmdb.c:2322
+#: rpmdb/rpmdb.c:2438 rpmdb/rpmdb.c:3167
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "fejl(%d) ved hentning af \"%s\"-poster fra '%s'-indekset\n"
 
-#: rpmdb/rpmdb.c:1567
+#: rpmdb/rpmdb.c:1569
 msgid "miFreeHeader: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1577
+#: rpmdb/rpmdb.c:1579
 #, fuzzy, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "fejl(%d) ved gemning af post %s i %s\n"
 
-#: rpmdb/rpmdb.c:2209
+#: rpmdb/rpmdb.c:2212
 msgid "rpmdbNextIterator: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2242
 #, c-format
 msgid "rpmdb: damaged header #%u retrieved -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2520
+#: rpmdb/rpmdb.c:2526
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "%s: kan ikke læse hoved ved 0x%x\n"
 
-#: rpmdb/rpmdb.c:2583
+#: rpmdb/rpmdb.c:2589
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "fejl(%d) ved hentning af \"%s\"-poster fra '%s'-indekset\n"
 
-#: rpmdb/rpmdb.c:2698
+#: rpmdb/rpmdb.c:2704
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "fjerner \"%s\" fra %s-indekset.\n"
 
-#: rpmdb/rpmdb.c:2702
+#: rpmdb/rpmdb.c:2708
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "fjerne %d indgange fra %s-indekset.\n"
 
-#: rpmdb/rpmdb.c:2730
+#: rpmdb/rpmdb.c:2736
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "fejl(%d) ved hentning af \"%s\"-poster fra '%s'-indekset\n"
 
-#: rpmdb/rpmdb.c:2751
+#: rpmdb/rpmdb.c:2757
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "fejl(%d) ved gemning af post %s i %s\n"
 
-#: rpmdb/rpmdb.c:2761
+#: rpmdb/rpmdb.c:2767
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "fejl(%d) ved fjernelse af post %s fra %s\n"
 
-#: rpmdb/rpmdb.c:2910
+#: rpmdb/rpmdb.c:2916
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "fejl(%d) under allokering af ny pakkeinstans\n"
 
-#: rpmdb/rpmdb.c:2964
+#: rpmdb/rpmdb.c:2970
 msgid "rpmdbAdd: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3136
+#: rpmdb/rpmdb.c:3142
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 "tilføjer \"%s\" til '%s'-indekset.\n"
 "\n"
 
-#: rpmdb/rpmdb.c:3140
+#: rpmdb/rpmdb.c:3146
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "tilføjer %d indgange til '%s'-indekset.\n"
 
-#: rpmdb/rpmdb.c:3180
+#: rpmdb/rpmdb.c:3186
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "fejl(%d) ved gemning af post %s i %s\n"
 
-#: rpmdb/rpmdb.c:3581
+#: rpmdb/rpmdb.c:3587
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr "fjerner %s efter vellykket genopbygning af db3.\n"
 
-#: rpmdb/rpmdb.c:3619
+#: rpmdb/rpmdb.c:3625
 msgid "no dbpath has been set"
 msgstr "der ikke sat nogen dbpath"
 
-#: rpmdb/rpmdb.c:3651
+#: rpmdb/rpmdb.c:3657
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "genopbygger database %s over i %s\n"
 
-#: rpmdb/rpmdb.c:3655
+#: rpmdb/rpmdb.c:3661
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr "den midlertidige database %s eksisterer allerede\n"
 
-#: rpmdb/rpmdb.c:3661
+#: rpmdb/rpmdb.c:3667
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 "opretter kataloget %s\n"
 "\n"
 
-#: rpmdb/rpmdb.c:3663
+#: rpmdb/rpmdb.c:3669
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr "opretter kataloget %s: %s\n"
 
-#: rpmdb/rpmdb.c:3670
+#: rpmdb/rpmdb.c:3676
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "åbner gammel database med dbapi %d\n"
 
-#: rpmdb/rpmdb.c:3683
+#: rpmdb/rpmdb.c:3689
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "åbner ny database med dbapi %d\n"
 
-#: rpmdb/rpmdb.c:3712
+#: rpmdb/rpmdb.c:3718
 #, fuzzy, c-format
 msgid "header #%u in the database is bad -- skipping.\n"
 msgstr "post nummer %d i databasen er fejlbehæftet -- overspringer.\n"
 
-#: rpmdb/rpmdb.c:3752
+#: rpmdb/rpmdb.c:3758
 #, fuzzy, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "kunne ikke tilføje posten, der tidligere var ved %d\n"
 
-#: rpmdb/rpmdb.c:3766
+#: rpmdb/rpmdb.c:3772
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr "kunne ikke genopbygge database: original-databasen beholdes\n"
 
-#: rpmdb/rpmdb.c:3774
+#: rpmdb/rpmdb.c:3780
 msgid "failed to replace old database with new database!\n"
 msgstr "kunne ikke erstatte gammel database med ny database!\n"
 
-#: rpmdb/rpmdb.c:3776
+#: rpmdb/rpmdb.c:3782
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "erstat filer i %s med filer fra %s for at genoprette"
 
-#: rpmdb/rpmdb.c:3786
+#: rpmdb/rpmdb.c:3792
 #, c-format
 msgid "removing directory %s\n"
 msgstr "fjerner kataloget %s\n"
 
-#: rpmdb/rpmdb.c:3788
+#: rpmdb/rpmdb.c:3794
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "kunne ikke fjerne katalog %s: %s\n"
@@ -3587,42 +3623,42 @@ msgstr "Makroen %%%s har ugyldigt navn (%%undefine)\n"
 msgid "Macro %%%s (%s) was not used below level %d\n"
 msgstr "Makro %%%s (%s) blev ikke brugt under niveau %d\n"
 
-#: rpmio/macro.c:982
+#: rpmio/macro.c:984
 #, c-format
 msgid "Unknown option %c in %s(%s)\n"
 msgstr "Ukendt tilvalg %c i %s(%s)\n"
 
-#: rpmio/macro.c:1182
+#: rpmio/macro.c:1184
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)\n"
 msgstr "Rekursionsdybde(%d) overskrider maks(%d)\n"
 
-#: rpmio/macro.c:1252 rpmio/macro.c:1269
+#: rpmio/macro.c:1255 rpmio/macro.c:1272
 #, c-format
 msgid "Unterminated %c: %s\n"
 msgstr "Uafsluttet %c: %s\n"
 
-#: rpmio/macro.c:1310
+#: rpmio/macro.c:1313
 #, c-format
 msgid "A %% is followed by an unparseable macro\n"
 msgstr "Et %% efterfølges af en makro, der ikke kan tolkes\n"
 
-#: rpmio/macro.c:1439
+#: rpmio/macro.c:1442
 #, c-format
 msgid "Macro %%%.*s not found, skipping\n"
 msgstr "Makroen %%%.*s blev ikke fundet, overspringer\n"
 
-#: rpmio/macro.c:1510
+#: rpmio/macro.c:1513
 msgid "Target buffer overflow\n"
 msgstr "Overløb i målbuffer\n"
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1705 rpmio/macro.c:1711
+#: rpmio/macro.c:1708 rpmio/macro.c:1714
 #, c-format
 msgid "File %s: %s\n"
 msgstr "Fil %s: %s\n"
 
-#: rpmio/macro.c:1714
+#: rpmio/macro.c:1717
 #, c-format
 msgid "File %s is smaller than %u bytes\n"
 msgstr "Filen %s er mindre end %u byte\n"
index 2bb74fd..39cbf8f 100644 (file)
--- a/po/de.po
+++ b/po/de.po
@@ -38,7 +38,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:11-0500\n"
+"POT-Creation-Date: 2003-12-30 08:11-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"
@@ -58,47 +58,47 @@ msgid "Unable to open spec file %s: %s\n"
 msgstr "Datei %s kann nicht zum Lesen geöffnet werden: %s."
 
 # , c-format
-#: build.c:152 build.c:164
+#: build.c:150 build.c:162
 #, fuzzy, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr "Öffnen von %s fehlgeschlagen\n"
 
 # , c-format
 #. Give up
-#: build.c:171
+#: build.c:169
 #, fuzzy, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
 # , c-format
-#: build.c:199
+#: build.c:197
 #, fuzzy, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
 # , c-format
-#: build.c:239
+#: build.c:237
 #, fuzzy, c-format
 msgid "failed to stat %s: %m\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: build.c:244
+#: build.c:242
 #, fuzzy, c-format
 msgid "File %s is not a regular file.\n"
 msgstr "%s scheint kein RPM-Paket zu sein\n"
 
-#: build.c:253
+#: build.c:251
 #, fuzzy, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr "%s scheint kein RPM-Paket zu sein\n"
 
 #. parse up the build operators
-#: build.c:324
+#: build.c:322
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr ""
 
-#: build.c:339
+#: build.c:337
 #, fuzzy, c-format
 msgid "Building for target %s\n"
 msgstr "Fehler beim Suchen nach Paket %s\n"
@@ -153,7 +153,7 @@ msgid "%s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
 # , c-format
-#: rpmqv.c:129 lib/poptALL.c:114
+#: rpmqv.c:129 lib/poptALL.c:119
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM Version %s\n"
@@ -487,167 +487,167 @@ msgstr ""
 msgid "syntax error in expression\n"
 msgstr "? im Ausdruck erwartet"
 
-#: build/files.c:278
+#: build/files.c:280
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr ""
 
-#: build/files.c:343 build/files.c:543 build/files.c:739
+#: build/files.c:345 build/files.c:545 build/files.c:741
 #, fuzzy, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "fehlende { nach %{"
 
-#: build/files.c:354 build/files.c:673 build/files.c:750
+#: build/files.c:356 build/files.c:675 build/files.c:752
 #, fuzzy, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "fehlender ':' bei %s:%d"
 
-#: build/files.c:392 build/files.c:698
+#: build/files.c:394 build/files.c:700
 #, fuzzy, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "ungültige Paket-Nummer: %s\n"
 
-#: build/files.c:502
+#: build/files.c:504
 #, fuzzy, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "fehlende { nach %{"
 
-#: build/files.c:559
+#: build/files.c:561
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:597
+#: build/files.c:599
 #, fuzzy, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
 # , c-format
-#: build/files.c:607
+#: build/files.c:609
 #, fuzzy, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
 # , c-format
-#: build/files.c:619
+#: build/files.c:621
 #, fuzzy, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
-#: build/files.c:777
+#: build/files.c:779
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr ""
 
 #. @innercontinue@
-#: build/files.c:788
+#: build/files.c:790
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr ""
 
-#: build/files.c:917
+#: build/files.c:919
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr ""
 
-#: build/files.c:925
+#: build/files.c:927
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr ""
 
 # , c-format
 #. We already got a file -- error
-#: build/files.c:959
+#: build/files.c:961
 #, fuzzy, c-format
 msgid "Two files on one line: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: build/files.c:976
+#: build/files.c:978
 #, fuzzy, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "Verschiebungen müssen mit einem »/« beginnen"
 
-#: build/files.c:989
+#: build/files.c:991
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:1141
+#: build/files.c:1149
 #, fuzzy, c-format
 msgid "File listed twice: %s\n"
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
-#: build/files.c:1280
+#: build/files.c:1288
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:1520
+#: build/files.c:1535
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
-#: build/files.c:1544
+#: build/files.c:1559
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "Datei auf dem Server nicht gefunden"
 
-#: build/files.c:1752
+#: build/files.c:1767
 #, fuzzy, c-format
 msgid "%s: public key read failed.\n"
 msgstr "%s: »readLead« fehlgeschlagen\n"
 
-#: build/files.c:1756 lib/rpmchecksig.c:580
+#: build/files.c:1771 lib/rpmchecksig.c:580
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: build/files.c:1804
+#: build/files.c:1819
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Verschiebungen müssen mit einem »/« beginnen"
 
-#: build/files.c:1828
+#: build/files.c:1843
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "Paket %s wird nicht in %s aufgeführt"
 
-#: build/files.c:1845 lib/rpminstall.c:347
+#: build/files.c:1860 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:1905
+#: build/files.c:1920
 #, 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:1916 build/pack.c:156
+#: build/files.c:1931 build/pack.c:156
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
 # , c-format
-#: build/files.c:2307
+#: build/files.c:2323
 #, fuzzy, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: build/files.c:2319 build/parsePrep.c:50
+#: build/files.c:2335 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:2363
+#: build/files.c:2379
 #, fuzzy, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr "Fehler beim Suchen nach Paket %s\n"
 
-#: build/files.c:2386
+#: build/files.c:2402
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
@@ -655,7 +655,7 @@ msgid ""
 msgstr ""
 
 # , c-format
-#: build/files.c:2414
+#: build/files.c:2430
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
@@ -808,7 +808,7 @@ msgid "Could not open %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen\n"
 
 # , c-format
-#: build/pack.c:632 lib/psm.c:1427
+#: build/pack.c:632 lib/psm.c:1420
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Nicht möglich %s zu schreiben"
@@ -843,7 +843,7 @@ msgstr "Nicht m
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Nicht möglich %s zu schreiben"
 
-#: build/pack.c:725 lib/psm.c:1725
+#: build/pack.c:725 lib/psm.c:1689
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1364,20 +1364,20 @@ msgstr "Dateiabh
 msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
 msgstr ""
 
-#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329
-#: lib/poptQV.c:338 lib/poptQV.c:377
+#: build/poptBT.c:229 lib/poptALL.c:240 lib/poptI.c:261 lib/poptQV.c:335
+#: lib/poptQV.c:344 lib/poptQV.c:383
 #, fuzzy
 msgid "don't verify package digest(s)"
 msgstr "Dateiabhängigkeiten nicht überprüfen"
 
-#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332
-#: lib/poptQV.c:340 lib/poptQV.c:380
+#: build/poptBT.c:231 lib/poptALL.c:242 lib/poptI.c:263 lib/poptQV.c:338
+#: lib/poptQV.c:346 lib/poptQV.c:386
 #, fuzzy
 msgid "don't verify database header(s) when retrieved"
 msgstr "Paket-Architektur nicht überprüfen"
 
-#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335
-#: lib/poptQV.c:342 lib/poptQV.c:382
+#: build/poptBT.c:233 lib/poptALL.c:248 lib/poptI.c:265 lib/poptQV.c:341
+#: lib/poptQV.c:348 lib/poptQV.c:388
 #, fuzzy
 msgid "don't verify package signature(s)"
 msgstr "Paketsignatur überprüfen"
@@ -1451,34 +1451,34 @@ msgstr ""
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:232
+#: lib/cpio.c:233
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:233
+#: lib/cpio.c:234
 #, fuzzy
 msgid "Unknown file type"
 msgstr "(unbekannter Typ)"
 
-#: lib/cpio.c:234
+#: lib/cpio.c:235
 #, fuzzy
 msgid "Missing hard link(s)"
 msgstr "fehlender ':' bei %s:%d"
 
-#: lib/cpio.c:235
+#: lib/cpio.c:236
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:236
+#: lib/cpio.c:237
 #, fuzzy
 msgid "Internal error"
 msgstr "Fataler Fehler: "
 
-#: lib/cpio.c:237
+#: lib/cpio.c:238
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:250
+#: lib/cpio.c:251
 #, fuzzy
 msgid " failed - "
 msgstr "pgp fehlgeschlagen"
@@ -1620,47 +1620,57 @@ msgstr "
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:350
+#: lib/fsm.c:352
 msgid "========== Directories not explicitly included in package:\n"
 msgstr ""
 
 # , c-format
-#: lib/fsm.c:352
+#: lib/fsm.c:354
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/fsm.c:1293
+#: lib/fsm.c:768
+#, c-format
+msgid "user %s does not exist - using root\n"
+msgstr ""
+
+#: lib/fsm.c:776
+#, fuzzy, c-format
+msgid "group %s does not exist - using root\n"
+msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
+
+#: lib/fsm.c:1334
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1592
+#: lib/fsm.c:1633
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1719 lib/fsm.c:1855
+#: lib/fsm.c:1760 lib/fsm.c:1896
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: lib/fsm.c:1882
+#: lib/fsm.c:1923
 #, 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:1888
+#: lib/fsm.c:1929
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "Entfernen von %s fehlgeschlagen: %s"
 
-#: lib/fsm.c:1903
+#: lib/fsm.c:1944
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "öffnen von %s fehlgeschlagen: %s\n"
 
-#: lib/fsm.c:1925
+#: lib/fsm.c:1966
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "kann Datei %s nicht öffnen: "
@@ -1780,119 +1790,119 @@ msgstr "%s: 
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: »readLead« fehlgeschlagen\n"
 
-#: lib/poptALL.c:222
+#: lib/poptALL.c:227
 msgid "predefine MACRO with value EXPR"
 msgstr ""
 
-#: lib/poptALL.c:223 lib/poptALL.c:226
+#: lib/poptALL.c:228 lib/poptALL.c:231
 msgid "'MACRO EXPR'"
 msgstr ""
 
-#: lib/poptALL.c:225
+#: lib/poptALL.c:230
 msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: lib/poptALL.c:228
+#: lib/poptALL.c:233
 #, fuzzy
 msgid "print macro expansion of EXPR"
 msgstr "Die benutzte RPM-Version anzeigen"
 
-#: lib/poptALL.c:229
+#: lib/poptALL.c:234
 msgid "'EXPR'"
 msgstr ""
 
-#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254
+#: lib/poptALL.c:236 lib/poptALL.c:255 lib/poptALL.c:259
 msgid "read <FILE:...> instead of default file(s)"
 msgstr ""
 
-#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255
+#: lib/poptALL.c:237 lib/poptALL.c:256 lib/poptALL.c:260
 msgid "<FILE:...>"
 msgstr ""
 
-#: lib/poptALL.c:240 lib/poptALL.c:274
+#: lib/poptALL.c:245 lib/poptALL.c:279
 msgid "disable use of libio(3) API"
 msgstr ""
 
-#: lib/poptALL.c:246
+#: lib/poptALL.c:251
 #, fuzzy
 msgid "send stdout to CMD"
 msgstr "Standard-Ausgabe nach <BEFEHL> umleiten"
 
-#: lib/poptALL.c:247
+#: lib/poptALL.c:252
 msgid "CMD"
 msgstr ""
 
-#: lib/poptALL.c:258
+#: lib/poptALL.c:263
 #, fuzzy
 msgid "use ROOT as top level directory"
 msgstr "<VERZ> als Stammverzeichnis benutzen"
 
-#: lib/poptALL.c:259
+#: lib/poptALL.c:264
 msgid "ROOT"
 msgstr ""
 
-#: lib/poptALL.c:262
+#: lib/poptALL.c:267
 msgid "display known query tags"
 msgstr ""
 
-#: lib/poptALL.c:264
+#: lib/poptALL.c:269
 msgid "display final rpmrc and macro configuration"
 msgstr ""
 
-#: lib/poptALL.c:266
+#: lib/poptALL.c:271
 msgid "provide less detailed output"
 msgstr ""
 
-#: lib/poptALL.c:268
+#: lib/poptALL.c:273
 msgid "provide more detailed output"
 msgstr ""
 
-#: lib/poptALL.c:270
+#: lib/poptALL.c:275
 msgid "print the version of rpm being used"
 msgstr "Die benutzte RPM-Version anzeigen"
 
 # , c-format
-#: lib/poptALL.c:283
+#: lib/poptALL.c:288
 #, fuzzy
 msgid "debug payload file state machine"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
 # , c-format
-#: lib/poptALL.c:285
+#: lib/poptALL.c:290
 #, fuzzy
 msgid "use threads for file state machine"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/poptALL.c:287
+#: lib/poptALL.c:292
 msgid "debug protocol data stream"
 msgstr ""
 
-#: lib/poptALL.c:292
+#: lib/poptALL.c:297
 msgid "debug option/argument processing"
 msgstr ""
 
 # , c-format
-#: lib/poptALL.c:297
+#: lib/poptALL.c:302
 #, fuzzy
 msgid "debug package state machine"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
 # , c-format
-#: lib/poptALL.c:299
+#: lib/poptALL.c:304
 #, fuzzy
 msgid "use threads for package state machine"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/poptALL.c:311
+#: lib/poptALL.c:316
 msgid "debug rpmio I/O"
 msgstr ""
 
-#: lib/poptALL.c:323
+#: lib/poptALL.c:330
 msgid "debug URL cache handling"
 msgstr ""
 
 #. @-nullpass@
-#: lib/poptALL.c:393
+#: lib/poptALL.c:400
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1922,18 +1932,18 @@ msgstr ""
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:151
+#: lib/poptI.c:155
 #, fuzzy
 msgid "add suggested packages to transaction"
 msgstr "Paket hat keinen Namen"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:159
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "alle Dateien installieren, auch die config-Dateien, die sonst übergangen "
 "würden"
 
-#: lib/poptI.c:159
+#: lib/poptI.c:163
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1941,157 +1951,162 @@ msgstr ""
 "Alle Pakete entfernen, die mit <PAKET> übereinstimmen (normalerweise wird "
 "ein Fehler angezeigt, wenn <PAKET> mehrere Pakete bezeichnet)"
 
-#: lib/poptI.c:164 tools/rpmgraph.c:273
+#: lib/poptI.c:168 tools/rpmgraph.c:273
 msgid "use anaconda \"presentation order\""
 msgstr ""
 
-#: lib/poptI.c:169 lib/poptI.c:238
+#: lib/poptI.c:173 lib/poptI.c:245
 #, fuzzy
 msgid "do not execute package scriptlet(s)"
 msgstr "Keine paketspezifischen Skripte ausführen"
 
-#: lib/poptI.c:173
+#: lib/poptI.c:177
 #, fuzzy
-msgid "relocate files in non-relocateable package"
+msgid "relocate files in non-relocatable package"
 msgstr "Paket %s ist nicht installiert\n"
 
-#: lib/poptI.c:176
+#: lib/poptI.c:180
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 msgid "erase (uninstall) package"
 msgstr "Paket löschen (deinstallieren)"
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 #, fuzzy
 msgid "<package>+"
 msgstr "Anfrage an alle Pakete"
 
-#: lib/poptI.c:182 lib/poptI.c:219
+#: lib/poptI.c:186 lib/poptI.c:223
 #, fuzzy
 msgid "do not install configuration files"
 msgstr "Nur Konfigurationsdateien auflisten (impliziert -l)"
 
-#: lib/poptI.c:185 lib/poptI.c:224
+#: lib/poptI.c:189 lib/poptI.c:228
 msgid "do not install documentation"
 msgstr "Dokumentation nicht installieren"
 
-#: lib/poptI.c:187
+#: lib/poptI.c:191
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:188
+#: lib/poptI.c:192
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:191
+#: lib/poptI.c:195
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "Abkürzung für --replacepkgs --replacefiles"
 
-#: lib/poptI.c:195
+#: lib/poptI.c:199
 #, fuzzy
 msgid "upgrade package(s) if already installed"
 msgstr "Paket %s ist nicht installiert\n"
 
-#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
+#: lib/poptI.c:200 lib/poptI.c:216 lib/poptI.c:312
 #, fuzzy
 msgid "<packagefile>+"
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: lib/poptI.c:198
+#: lib/poptI.c:202
 msgid "print hash marks as package installs (good with -v)"
 msgstr "Fortschrittsanzeige bei der Paketinstallation (gut zusammen mit -v)"
 
-#: lib/poptI.c:201
+#: lib/poptI.c:205
 msgid "don't verify package architecture"
 msgstr "Paket-Architektur nicht überprüfen"
 
-#: lib/poptI.c:204
+#: lib/poptI.c:208
 msgid "don't verify package operating system"
 msgstr "Paket-Betriebssystem nicht überprüfen"
 
-#: lib/poptI.c:207
+#: lib/poptI.c:211
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:209
+#: lib/poptI.c:213
 msgid "install documentation"
 msgstr "Dokumentation installieren"
 
-#: lib/poptI.c:212
+#: lib/poptI.c:216
 #, fuzzy
 msgid "install package(s)"
 msgstr "Paket installieren"
 
-#: lib/poptI.c:215
+#: lib/poptI.c:219
 msgid "update the database, but do not modify the filesystem"
 msgstr "Datenbank erneuern, aber das Dateisystem nicht verändern"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:225
 msgid "do not verify package dependencies"
 msgstr "Dateiabhängigkeiten nicht überprüfen"
 
-#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:231 lib/poptQV.c:279 lib/poptQV.c:282
 #, fuzzy
 msgid "don't verify MD5 digest of files"
 msgstr "Paket installieren"
 
-#: lib/poptI.c:230
+#: lib/poptI.c:233
+#, fuzzy
+msgid "don't install file security contexts"
+msgstr "Nur Konfigurationsdateien auflisten (impliziert -l)"
+
+#: lib/poptI.c:237
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 "Paket-Installation nicht neu sortieren, um den Abhängigkeiten zu genügen"
 
-#: lib/poptI.c:235
+#: lib/poptI.c:242
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:242
+#: lib/poptI.c:249
 #, fuzzy, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "Keine Stufen ausführen"
 
-#: lib/poptI.c:245
+#: lib/poptI.c:252
 #, fuzzy, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "Keine Stufen ausführen"
 
-#: lib/poptI.c:248
+#: lib/poptI.c:255
 #, fuzzy, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "Keine Stufen ausführen"
 
-#: lib/poptI.c:251
+#: lib/poptI.c:258
 #, fuzzy, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "Keine Stufen ausführen"
 
-#: lib/poptI.c:261
+#: lib/poptI.c:268
 #, fuzzy
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "kein Skript ausführen, das durch dieses Paket veranlasst wurde"
 
-#: lib/poptI.c:264
+#: lib/poptI.c:271
 #, fuzzy, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "Keine paketspezifischen Skripte ausführen"
 
-#: lib/poptI.c:267
+#: lib/poptI.c:274
 #, fuzzy, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "Keine Installations-Skripte ausführen"
 
-#: lib/poptI.c:270
+#: lib/poptI.c:277
 #, fuzzy, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "Keine Installations-Skripte ausführen"
 
-#: lib/poptI.c:273
+#: lib/poptI.c:280
 #, fuzzy, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "Keine Installations-Skripte ausführen"
 
-#: lib/poptI.c:277
+#: lib/poptI.c:284
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -2099,54 +2114,54 @@ msgstr ""
 "Aktualisierung auf eine alte Version des Pakets (--force macht das bei "
 "Aktualisierungen automatisch)"
 
-#: lib/poptI.c:281
+#: lib/poptI.c:288
 msgid "print percentages as package installs"
 msgstr "Prozentangabe bei der Paketinstallation ausgeben"
 
-#: lib/poptI.c:283
+#: lib/poptI.c:290
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 "Verschiebe das Paket, wenn es verschiebbar ist, in das Verzeichnis <VERZ>"
 
-#: lib/poptI.c:284
+#: lib/poptI.c:291
 msgid "<dir>"
 msgstr ""
 
-#: lib/poptI.c:286
+#: lib/poptI.c:293
 #, fuzzy
 msgid "relocate files from path <old> to <new>"
 msgstr "verschiebe Dateien von <alter_Pfad> nach <neuer_Pfad>"
 
-#: lib/poptI.c:287
+#: lib/poptI.c:294
 #, fuzzy
 msgid "<old>=<new>"
 msgstr "verschiebe Dateien von <alter_Pfad> nach <neuer_Pfad>"
 
-#: lib/poptI.c:290
+#: lib/poptI.c:297
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:293
+#: lib/poptI.c:300
 msgid "install even if the package replaces installed files"
 msgstr "Auch dann installieren, wenn das Paket installierte Dateien ersetzt"
 
-#: lib/poptI.c:296
+#: lib/poptI.c:303
 msgid "reinstall if the package is already present"
 msgstr "Neuinstallation, wenn das Paket schon vorhanden ist"
 
-#: lib/poptI.c:298
+#: lib/poptI.c:305
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:299
+#: lib/poptI.c:306
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:301
+#: lib/poptI.c:308
 msgid "don't install, but tell if it would work or not"
 msgstr "Nicht installieren - nur anzeigen, ob es funktionieren würde"
 
-#: lib/poptI.c:304
+#: lib/poptI.c:311
 #, fuzzy
 msgid "upgrade package(s)"
 msgstr "Paket installieren"
@@ -2235,220 +2250,215 @@ msgstr "Anfrage nach Paketen, die die F
 msgid "query/verify the package(s) which provide a dependency"
 msgstr "Anfrage nach Paketen, die die Fähigkeit <i> bereitstellen"
 
-#: lib/poptQV.c:226
+#: lib/poptQV.c:230
 #, fuzzy
 msgid "list all configuration files"
 msgstr "Nur Konfigurationsdateien auflisten (impliziert -l)"
 
-#: lib/poptQV.c:228
+#: lib/poptQV.c:232
 #, fuzzy
 msgid "list all documentation files"
 msgstr "Dokumentation installieren"
 
-#: lib/poptQV.c:230
+#: lib/poptQV.c:234
 #, fuzzy
 msgid "dump basic file information"
 msgstr "Paketinformationen anzeigen"
 
-#: lib/poptQV.c:234
+#: lib/poptQV.c:238
 #, fuzzy
 msgid "list files in package"
 msgstr "Paket installieren"
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:243
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:243
+#: lib/poptQV.c:247
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
-#: lib/poptQV.c:246
+#: lib/poptQV.c:250
 #, fuzzy, c-format
 msgid "skip %%readme files"
 msgstr "%s: »readLead« fehlgeschlagen\n"
 
-#: lib/poptQV.c:252
+#: lib/poptQV.c:256
 #, fuzzy
 msgid "use the following query format"
 msgstr "Unerwartete Quelle der Anfrage"
 
-#: lib/poptQV.c:254
+#: lib/poptQV.c:258
 #, fuzzy
 msgid "substitute i18n sections into spec file"
 msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
 
-#: lib/poptQV.c:256
+#: lib/poptQV.c:260
 msgid "display the states of the listed files"
 msgstr ""
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:286
 #, fuzzy
 msgid "don't verify size of files"
 msgstr "Paket installieren"
 
-#: lib/poptQV.c:285
+#: lib/poptQV.c:289
 #, fuzzy
 msgid "don't verify symlink path of files"
 msgstr "Paket installieren"
 
-#: lib/poptQV.c:288
+#: lib/poptQV.c:292
 #, fuzzy
 msgid "don't verify owner of files"
 msgstr "Paket installieren"
 
-#: lib/poptQV.c:291
+#: lib/poptQV.c:295
 #, fuzzy
 msgid "don't verify group of files"
 msgstr "Paket installieren"
 
-#: lib/poptQV.c:294
+#: lib/poptQV.c:298
 msgid "don't verify modification time of files"
 msgstr ""
 
-#: lib/poptQV.c:297 lib/poptQV.c:300
+#: lib/poptQV.c:301 lib/poptQV.c:304
 #, fuzzy
 msgid "don't verify mode of files"
 msgstr "Paket installieren"
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:307
+#, fuzzy
+msgid "don't verify file security contexts"
+msgstr "Paket installieren"
+
+#: lib/poptQV.c:309
 #, fuzzy
 msgid "don't verify files in package"
 msgstr "Paket installieren"
 
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
+#: lib/poptQV.c:312 lib/poptQV.c:315 tools/rpmgraph.c:267
 #, fuzzy
 msgid "don't verify package dependencies"
 msgstr "Dateiabhängigkeiten nicht überprüfen"
 
-#: lib/poptQV.c:314 lib/poptQV.c:318 lib/poptQV.c:321 lib/poptQV.c:324
+#: lib/poptQV.c:320 lib/poptQV.c:324 lib/poptQV.c:327 lib/poptQV.c:330
 #, fuzzy
 msgid "don't execute verify script(s)"
 msgstr "Keine Stufen ausführen"
 
-#: lib/poptQV.c:348
+#: lib/poptQV.c:354
 #, fuzzy
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr "Paket installieren"
 
-#: lib/poptQV.c:351
+#: lib/poptQV.c:357
 #, fuzzy
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr "Paket installieren"
 
-#: lib/poptQV.c:366
+#: lib/poptQV.c:372
 #, fuzzy
 msgid "sign package(s) (identical to --resign)"
 msgstr "Ein Paket signieren (die aktuelle Signature wird verworfen)"
 
-#: lib/poptQV.c:368
+#: lib/poptQV.c:374
 #, fuzzy
 msgid "verify package signature(s)"
 msgstr "Paketsignatur überprüfen"
 
-#: lib/poptQV.c:370
+#: lib/poptQV.c:376
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:372
+#: lib/poptQV.c:378
 #, fuzzy
 msgid "sign package(s) (identical to --addsign)"
 msgstr "Ein Paket signieren (die aktuelle Signature wird verworfen)"
 
-#: lib/poptQV.c:374
+#: lib/poptQV.c:380
 #, fuzzy
 msgid "generate signature"
 msgstr "PGP-Signatur generieren"
 
-#: lib/psm.c:269
+#: lib/psm.c:268
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:394
+#: lib/psm.c:386
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
 
-#: lib/psm.c:480
+#: lib/psm.c:472
 #, c-format
 msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
 msgstr ""
 
-#: lib/psm.c:562
+#: lib/psm.c:554
 #, c-format
 msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
 msgstr ""
 
-#: lib/psm.c:570
+#: lib/psm.c:562
 #, c-format
 msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
 msgstr ""
 
-#: lib/psm.c:735
+#: lib/psm.c:730
 #, c-format
 msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
 msgstr ""
 
-#: lib/psm.c:756
+#: lib/psm.c:751
 #, 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:762
+#: lib/psm.c:757
 #, 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:1191
+#: lib/psm.c:1188
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
 
-#: lib/psm.c:1330
+#: lib/psm.c:1323
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
 # , c-format
-#: lib/psm.c:1439
+#: lib/psm.c:1432
 #, fuzzy
 msgid "Unable to reload signature header\n"
 msgstr "Nicht möglich %s zu schreiben"
 
-#: lib/psm.c:1485
-#, c-format
-msgid "user %s does not exist - using root\n"
-msgstr ""
-
-#: lib/psm.c:1494
-#, fuzzy, c-format
-msgid "group %s does not exist - using root\n"
-msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
-
-#: lib/psm.c:1546
+#: lib/psm.c:1510
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "öffnen von %s fehlgeschlagen: %s\n"
 
-#: lib/psm.c:1547
+#: lib/psm.c:1511
 msgid " on file "
 msgstr ""
 
 # , c-format
-#: lib/psm.c:1733
+#: lib/psm.c:1697
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/psm.c:1736
+#: lib/psm.c:1700
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "pgp fehlgeschlagen"
 
-#: lib/query.c:118 lib/rpmts.c:565
+#: lib/query.c:118 lib/rpmts.c:566
 #, fuzzy, c-format
 msgid "incorrect format: %s\n"
 msgstr "Fehler beim Format %s\n"
@@ -2498,8 +2508,8 @@ msgstr "Paket hat keinen Namen"
 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:462
-#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576
+#: 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
 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
@@ -2514,7 +2524,7 @@ msgstr "Anfrage von %s fehlgeschlagen\n"
 msgid "old format source packages cannot be queried\n"
 msgstr "altes Sourceformat-Paket kann nicht angefragt werden\n"
 
-#: lib/query.c:488 lib/rpminstall.c:608
+#: lib/query.c:488 lib/rpminstall.c:622
 #, fuzzy, c-format
 msgid "%s: not an rpm package (or package manifest): %s\n"
 msgstr "kein Paket triggert %s\n"
@@ -2587,18 +2597,18 @@ msgstr "ung
 msgid "record %u could not be read\n"
 msgstr "Eintrag %d konnte nicht gelesen werden\n"
 
-#: lib/query.c:766 lib/rpminstall.c:778
+#: lib/query.c:766 lib/rpminstall.c:792
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "Paket %s ist nicht installiert\n"
 
 # , c-format
-#: lib/rpmal.c:692
+#: lib/rpmal.c:694
 #, fuzzy
 msgid "(added files)"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:772
 msgid "(added provide)"
 msgstr ""
 
@@ -2723,38 +2733,38 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "Paket %s wird nicht in %s aufgeführt"
 
-#: lib/rpmfi.c:546
+#: lib/rpmfi.c:561
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/rpmfi.c:784
+#: lib/rpmfi.c:799
 msgid "========== relocations\n"
 msgstr ""
 
 # , c-format
-#: lib/rpmfi.c:788
+#: lib/rpmfi.c:803
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "Hole %s heraus\n"
 
-#: lib/rpmfi.c:791
+#: lib/rpmfi.c:806
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
 # , c-format
-#: lib/rpmfi.c:919
+#: lib/rpmfi.c:934
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "Hole %s heraus\n"
 
-#: lib/rpmfi.c:929
+#: lib/rpmfi.c:944
 #, fuzzy, c-format
 msgid "relocating %s to %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: lib/rpmfi.c:1021
+#: lib/rpmfi.c:1036
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
@@ -2786,90 +2796,90 @@ msgid "Upgrading packages..."
 msgstr "Paket installieren"
 
 # , c-format
-#: lib/rpminstall.c:394
+#: lib/rpminstall.c:408
 #, fuzzy, c-format
 msgid "Adding goal: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
 # , c-format
-#: lib/rpminstall.c:409
+#: lib/rpminstall.c:423
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Hole %s heraus\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:436
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:426
+#: lib/rpminstall.c:440
 #, fuzzy, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "Fehler: überspringe %s - Übertragung fehlgeschlagen - %s\n"
 
-#: lib/rpminstall.c:481 lib/rpminstall.c:872 tools/rpmgraph.c:140
+#: lib/rpminstall.c:495 lib/rpminstall.c:886 tools/rpmgraph.c:140
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "Fehler: %s kann nicht installiert werden\n"
 
-#: lib/rpminstall.c:523
+#: lib/rpminstall.c:537
 #, fuzzy, c-format
-msgid "package %s is not relocateable\n"
+msgid "package %s is not relocatable\n"
 msgstr "Paket %s ist nicht installiert\n"
 
-#: lib/rpminstall.c:573
+#: lib/rpminstall.c:587
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:593
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:637
 #, fuzzy, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
 
-#: lib/rpminstall.c:637 lib/rpminstall.c:810 lib/rpminstall.c:1239
+#: lib/rpminstall.c:651 lib/rpminstall.c:824 lib/rpminstall.c:1253
 #: tools/rpmgraph.c:195
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "fehlgeschlagene Paket-Abhängigkeiten:\n"
 
-#: lib/rpminstall.c:644 tools/rpmgraph.c:201
+#: lib/rpminstall.c:658 tools/rpmgraph.c:201
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:688
 #, fuzzy
 msgid "installing binary packages\n"
 msgstr "Paket installieren"
 
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:712
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: lib/rpminstall.c:787
+#: lib/rpminstall.c:801
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" bezeichnet mehrere Pakete\n"
 
-#: lib/rpminstall.c:856
+#: lib/rpminstall.c:870
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "Fehler: kann %s nicht öffnen\n"
 
-#: lib/rpminstall.c:862
+#: lib/rpminstall.c:876
 #, c-format
 msgid "Installing %s\n"
 msgstr "Installiere %s\n"
 
-#: lib/rpminstall.c:1233
+#: lib/rpminstall.c:1247
 #, c-format
 msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
 msgstr ""
@@ -2939,7 +2949,7 @@ msgstr "Paket %s ist nicht installiert\n"
 
 #: lib/rpmps.c:223
 #, fuzzy, c-format
-msgid "path %s in package %s is not relocateable"
+msgid "path %s in package %s is not relocatable"
 msgstr "Paket %s ist nicht installiert\n"
 
 #: lib/rpmps.c:228
@@ -3092,52 +3102,77 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Datei %s kann nicht zum Lesen geöffnet werden: %s."
 
-#: lib/rpmts.c:162
+#: lib/rpmsx.c:343
+#, c-format
+msgid "%s:  no newline on line number %d (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:360
+#, c-format
+msgid "%s:  line number %d is missing fields (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:391
+#, 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
+#, c-format
+msgid "%s:  invalid type specifier %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmsx.c:434
+#, c-format
+msgid "%s:  invalid context %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmts.c:163
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n"
 
-#: lib/rpmts.c:252
+#: lib/rpmts.c:253
 #, fuzzy, c-format
 msgid "extra '(' in package label: %s\n"
 msgstr "ungültige Paket-Nummer: %s\n"
 
-#: lib/rpmts.c:270
+#: lib/rpmts.c:271
 #, fuzzy, c-format
 msgid "missing '(' in package label: %s\n"
 msgstr "fehlende { nach %{"
 
-#: lib/rpmts.c:278
+#: lib/rpmts.c:279
 #, fuzzy, c-format
 msgid "missing ')' in package label: %s\n"
 msgstr "ungültige Paket-Nummer: %s\n"
 
-#: lib/rpmts.c:455
+#: lib/rpmts.c:456
 #, 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:597
+#: lib/rpmts.c:598
 #, fuzzy, c-format
 msgid "Adding: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
 # , c-format
-#: lib/rpmts.c:609
+#: lib/rpmts.c:610
 #, fuzzy, c-format
 msgid "Suggesting: %s\n"
 msgstr "Hole %s heraus\n"
 
-#: lib/rpmts.c:1077
+#: lib/rpmts.c:1097
 msgid "mounted filesystems:\n"
 msgstr ""
 
-#: lib/rpmts.c:1079
+#: lib/rpmts.c:1099
 msgid "    i    dev bsize       bavail       iavail mount point\n"
 msgstr ""
 
-#: lib/rpmts.c:1135
+#: lib/rpmts.c:1155
 #, c-format
 msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
 msgstr ""
@@ -3348,12 +3383,12 @@ msgstr ""
 msgid "computing file dispositions\n"
 msgstr ""
 
-#: lib/verify.c:288
+#: lib/verify.c:319
 #, fuzzy, c-format
 msgid "missing  %c %s"
 msgstr "fehlende { nach %{"
 
-#: lib/verify.c:397
+#: lib/verify.c:433
 #, fuzzy, c-format
 msgid "Unsatisfied dependencies for %s: "
 msgstr "Nicht erfüllte Abhängigkeiten von %s-%s-%s: "
@@ -3556,168 +3591,168 @@ msgstr "kann Datei %s nicht 
 msgid "cannot open %s index\n"
 msgstr "Fehler: kann %s nicht öffnen\n"
 
-#: rpmdb/rpmdb.c:915
+#: rpmdb/rpmdb.c:917
 #, fuzzy
 msgid "no dbpath has been set\n"
 msgstr "»dbpath« ist nicht gesetzt"
 
-#: rpmdb/rpmdb.c:1193 rpmdb/rpmdb.c:1322 rpmdb/rpmdb.c:1373 rpmdb/rpmdb.c:2316
-#: rpmdb/rpmdb.c:2432 rpmdb/rpmdb.c:3161
+#: rpmdb/rpmdb.c:1195 rpmdb/rpmdb.c:1324 rpmdb/rpmdb.c:1375 rpmdb/rpmdb.c:2322
+#: rpmdb/rpmdb.c:2438 rpmdb/rpmdb.c:3167
 #, fuzzy, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "Fehler beim Eintrag %s von %s"
 
-#: rpmdb/rpmdb.c:1567
+#: rpmdb/rpmdb.c:1569
 msgid "miFreeHeader: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1577
+#: rpmdb/rpmdb.c:1579
 #, fuzzy, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "Fehler bei Schreiben des Eintrags %s nach %s"
 
-#: rpmdb/rpmdb.c:2209
+#: rpmdb/rpmdb.c:2212
 msgid "rpmdbNextIterator: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2242
 #, c-format
 msgid "rpmdb: damaged header #%u retrieved -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2520
+#: rpmdb/rpmdb.c:2526
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "kann Kopfzeilen bei %d nicht lesen, um danach zu suchen"
 
-#: rpmdb/rpmdb.c:2583
+#: rpmdb/rpmdb.c:2589
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "Fehler beim Eintrag %s von %s"
 
 # FIXME
-#: rpmdb/rpmdb.c:2698
+#: rpmdb/rpmdb.c:2704
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "Fehler beim Löschen des Eintrags %s nach %s"
 
 # FIXME
-#: rpmdb/rpmdb.c:2702
+#: rpmdb/rpmdb.c:2708
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "Fehler beim Löschen des Eintrags %s nach %s"
 
-#: rpmdb/rpmdb.c:2730
+#: rpmdb/rpmdb.c:2736
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "Fehler beim Eintrag %s von %s"
 
-#: rpmdb/rpmdb.c:2751
+#: rpmdb/rpmdb.c:2757
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "Fehler bei Schreiben des Eintrags %s nach %s"
 
 # FIXME
-#: rpmdb/rpmdb.c:2761
+#: rpmdb/rpmdb.c:2767
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "Fehler beim Löschen des Eintrags %s nach %s"
 
-#: rpmdb/rpmdb.c:2910
+#: rpmdb/rpmdb.c:2916
 #, fuzzy, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "Fehler beim Suchen nach Paket %s\n"
 
-#: rpmdb/rpmdb.c:2964
+#: rpmdb/rpmdb.c:2970
 msgid "rpmdbAdd: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3136
+#: rpmdb/rpmdb.c:3142
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
 # FIXME
-#: rpmdb/rpmdb.c:3140
+#: rpmdb/rpmdb.c:3146
 #, fuzzy, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "Fehler beim Löschen des Eintrags %s nach %s"
 
-#: rpmdb/rpmdb.c:3180
+#: rpmdb/rpmdb.c:3186
 #, fuzzy, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "Fehler bei Schreiben des Eintrags %s nach %s"
 
-#: rpmdb/rpmdb.c:3581
+#: rpmdb/rpmdb.c:3587
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3619
+#: rpmdb/rpmdb.c:3625
 msgid "no dbpath has been set"
 msgstr "»dbpath« ist nicht gesetzt"
 
-#: rpmdb/rpmdb.c:3651
+#: rpmdb/rpmdb.c:3657
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "Datenbank aus der vorhandenen neu erstellen"
 
-#: rpmdb/rpmdb.c:3655
+#: rpmdb/rpmdb.c:3661
 #, fuzzy, c-format
 msgid "temporary database %s already exists\n"
 msgstr "die temporäre Datenbank %s existiert schon"
 
-#: rpmdb/rpmdb.c:3661
+#: rpmdb/rpmdb.c:3667
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: rpmdb/rpmdb.c:3663
+#: rpmdb/rpmdb.c:3669
 #, fuzzy, c-format
 msgid "creating directory %s: %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: rpmdb/rpmdb.c:3670
+#: rpmdb/rpmdb.c:3676
 #, fuzzy, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "Datenbank aus der vorhandenen neu erstellen"
 
-#: rpmdb/rpmdb.c:3683
+#: rpmdb/rpmdb.c:3689
 #, fuzzy, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "Datenbank aus der vorhandenen neu erstellen"
 
-#: rpmdb/rpmdb.c:3712
+#: rpmdb/rpmdb.c:3718
 #, fuzzy, c-format
 msgid "header #%u in the database is bad -- skipping.\n"
 msgstr ""
 "Eintrag Nummer %d in der Datenback ist nicht in Ordnung -- wird übersprungen"
 
-#: rpmdb/rpmdb.c:3752
+#: rpmdb/rpmdb.c:3758
 #, fuzzy, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "kann einen Eintrag hinzufügen, ursprünglich bei %d"
 
-#: rpmdb/rpmdb.c:3766
+#: rpmdb/rpmdb.c:3772
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3774
+#: rpmdb/rpmdb.c:3780
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3776
+#: rpmdb/rpmdb.c:3782
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3786
+#: rpmdb/rpmdb.c:3792
 #, fuzzy, c-format
 msgid "removing directory %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
 # , c-format
-#: rpmdb/rpmdb.c:3788
+#: rpmdb/rpmdb.c:3794
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
@@ -3773,43 +3808,43 @@ msgstr ""
 msgid "Macro %%%s (%s) was not used below level %d\n"
 msgstr ""
 
-#: rpmio/macro.c:982
+#: rpmio/macro.c:984
 #, fuzzy, c-format
 msgid "Unknown option %c in %s(%s)\n"
 msgstr "(unbekannter Typ)"
 
-#: rpmio/macro.c:1182
+#: rpmio/macro.c:1184
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)\n"
 msgstr ""
 
-#: rpmio/macro.c:1252 rpmio/macro.c:1269
+#: rpmio/macro.c:1255 rpmio/macro.c:1272
 #, fuzzy, c-format
 msgid "Unterminated %c: %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: rpmio/macro.c:1310
+#: rpmio/macro.c:1313
 #, c-format
 msgid "A %% is followed by an unparseable macro\n"
 msgstr ""
 
-#: rpmio/macro.c:1439
+#: rpmio/macro.c:1442
 #, fuzzy, c-format
 msgid "Macro %%%.*s not found, skipping\n"
 msgstr "Paket %s in %s nicht gefunden"
 
-#: rpmio/macro.c:1510
+#: rpmio/macro.c:1513
 msgid "Target buffer overflow\n"
 msgstr ""
 
 # , c-format
 #. XXX Fstrerror
-#: rpmio/macro.c:1705 rpmio/macro.c:1711
+#: rpmio/macro.c:1708 rpmio/macro.c:1714
 #, fuzzy, c-format
 msgid "File %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: rpmio/macro.c:1714
+#: rpmio/macro.c:1717
 #, c-format
 msgid "File %s is smaller than %u bytes\n"
 msgstr ""
index 8c3694f..04ad366 100644 (file)
--- a/po/fi.po
+++ b/po/fi.po
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:11-0500\n"
+"POT-Creation-Date: 2003-12-30 08:11-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"
@@ -20,44 +20,44 @@ msgstr "puuttuvat riippuvuudet:\n"
 msgid "Unable to open spec file %s: %s\n"
 msgstr "En voi avata %s luettavaksi: %s."
 
-#: build.c:152 build.c:164
+#: build.c:150 build.c:162
 #, fuzzy, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr "%s:n avaus epäonnistui\n"
 
 #. Give up
-#: build.c:171
+#: build.c:169
 #, fuzzy, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "En voi lukea %s: %s."
 
-#: build.c:199
+#: build.c:197
 #, fuzzy, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr "En voi lukea %s: %s."
 
-#: build.c:239
+#: build.c:237
 #, fuzzy, c-format
 msgid "failed to stat %s: %m\n"
 msgstr "en voinut avata %s: %s"
 
-#: build.c:244
+#: build.c:242
 #, fuzzy, c-format
 msgid "File %s is not a regular file.\n"
 msgstr "%s ei vaikuta RPM-paketilta\n"
 
-#: build.c:253
+#: build.c:251
 #, fuzzy, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr "%s ei vaikuta RPM-paketilta\n"
 
 #. parse up the build operators
-#: build.c:324
+#: build.c:322
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr ""
 
-#: build.c:339
+#: build.c:337
 #, fuzzy, c-format
 msgid "Building for target %s\n"
 msgstr "virhe etsittäessä pakettia %s\n"
@@ -110,7 +110,7 @@ msgstr ""
 msgid "%s: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: rpmqv.c:129 lib/poptALL.c:114
+#: rpmqv.c:129 lib/poptALL.c:119
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM versio %s\n"
@@ -434,166 +434,166 @@ msgstr ""
 msgid "syntax error in expression\n"
 msgstr "odotin '?'-merkkiä ilmauksessa"
 
-#: build/files.c:278
+#: build/files.c:280
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr ""
 
-#: build/files.c:343 build/files.c:543 build/files.c:739
+#: build/files.c:345 build/files.c:545 build/files.c:741
 #, fuzzy, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "puuttuva '{' '%':n jälkeen"
 
-#: build/files.c:354 build/files.c:673 build/files.c:750
+#: build/files.c:356 build/files.c:675 build/files.c:752
 #, fuzzy, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "puuttuva ':', %s:%d"
 
-#: build/files.c:392 build/files.c:698
+#: build/files.c:394 build/files.c:700
 #, fuzzy, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "virheellinen paketin numero: %s\n"
 
-#: build/files.c:502
+#: build/files.c:504
 #, fuzzy, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "puuttuva '{' '%':n jälkeen"
 
-#: build/files.c:559
+#: build/files.c:561
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr ""
 
-#: build/files.c:597
+#: build/files.c:599
 #, fuzzy, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "En voi lukea %s: %s."
 
-#: build/files.c:607
+#: build/files.c:609
 #, fuzzy, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "En voi lukea %s: %s."
 
-#: build/files.c:619
+#: build/files.c:621
 #, fuzzy, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "En voi lukea %s: %s."
 
-#: build/files.c:777
+#: build/files.c:779
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr ""
 
 #. @innercontinue@
-#: build/files.c:788
+#: build/files.c:790
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr ""
 
-#: build/files.c:917
+#: build/files.c:919
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr ""
 
-#: build/files.c:925
+#: build/files.c:927
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr ""
 
 #. We already got a file -- error
-#: build/files.c:959
+#: build/files.c:961
 #, fuzzy, c-format
 msgid "Two files on one line: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: build/files.c:976
+#: build/files.c:978
 #, fuzzy, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "siirtojen pitää alkaa /-merkillä"
 
-#: build/files.c:989
+#: build/files.c:991
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr ""
 
-#: build/files.c:1141
+#: build/files.c:1149
 #, fuzzy, c-format
 msgid "File listed twice: %s\n"
 msgstr "En voi lukea %s: %s."
 
-#: build/files.c:1280
+#: build/files.c:1288
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1520
+#: build/files.c:1535
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "En voi lukea %s: %s."
 
-#: build/files.c:1544
+#: build/files.c:1559
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "Tiedostoa ei löytynyt palvelimelta"
 
-#: build/files.c:1752
+#: build/files.c:1767
 #, fuzzy, c-format
 msgid "%s: public key read failed.\n"
 msgstr "%s: readLead  epäonnistui\n"
 
-#: build/files.c:1756 lib/rpmchecksig.c:580
+#: build/files.c:1771 lib/rpmchecksig.c:580
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: build/files.c:1804
+#: build/files.c:1819
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "siirtojen pitää alkaa /-merkillä"
 
-#: build/files.c:1828
+#: build/files.c:1843
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "paketti %s ei ole %s:ssä"
 
-#: build/files.c:1845 lib/rpminstall.c:347
+#: build/files.c:1860 lib/rpminstall.c:361
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "Tiedostoa ei löytynyt palvelimelta"
 
-#: build/files.c:1905
+#: build/files.c:1920
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "virhe: tiedostoa %s ei voi avata\n"
 
-#: build/files.c:1916 build/pack.c:156
+#: build/files.c:1931 build/pack.c:156
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: build/files.c:2307
+#: build/files.c:2323
 #, fuzzy, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: build/files.c:2319 build/parsePrep.c:50
+#: build/files.c:2335 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:2363
+#: build/files.c:2379
 #, fuzzy, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr "virhe etsittäessä pakettia %s\n"
 
-#: build/files.c:2386
+#: build/files.c:2402
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
 "%s"
 msgstr ""
 
-#: build/files.c:2414
+#: build/files.c:2430
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "en voinut avata %s: %s"
@@ -736,7 +736,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:1427
+#: build/pack.c:632 lib/psm.c:1420
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "%s:n kirjoitus ei onnistu"
@@ -766,7 +766,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:1725
+#: build/pack.c:725 lib/psm.c:1689
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1261,20 +1261,20 @@ msgstr "
 msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
 msgstr ""
 
-#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329
-#: lib/poptQV.c:338 lib/poptQV.c:377
+#: build/poptBT.c:229 lib/poptALL.c:240 lib/poptI.c:261 lib/poptQV.c:335
+#: lib/poptQV.c:344 lib/poptQV.c:383
 #, fuzzy
 msgid "don't verify package digest(s)"
 msgstr "älä tarkista paketin riippuvuuksia"
 
-#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332
-#: lib/poptQV.c:340 lib/poptQV.c:380
+#: build/poptBT.c:231 lib/poptALL.c:242 lib/poptI.c:263 lib/poptQV.c:338
+#: lib/poptQV.c:346 lib/poptQV.c:386
 #, fuzzy
 msgid "don't verify database header(s) when retrieved"
 msgstr "älä tarkista paketin arkkitehtuuria"
 
-#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335
-#: lib/poptQV.c:342 lib/poptQV.c:382
+#: build/poptBT.c:233 lib/poptALL.c:248 lib/poptI.c:265 lib/poptQV.c:341
+#: lib/poptQV.c:348 lib/poptQV.c:388
 #, fuzzy
 msgid "don't verify package signature(s)"
 msgstr "tarkista paketin allekirjoitus"
@@ -1348,34 +1348,34 @@ msgstr ""
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:232
+#: lib/cpio.c:233
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:233
+#: lib/cpio.c:234
 #, fuzzy
 msgid "Unknown file type"
 msgstr "(tuntematon tyyppi)"
 
-#: lib/cpio.c:234
+#: lib/cpio.c:235
 #, fuzzy
 msgid "Missing hard link(s)"
 msgstr "puuttuva ':', %s:%d"
 
-#: lib/cpio.c:235
+#: lib/cpio.c:236
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:236
+#: lib/cpio.c:237
 #, fuzzy
 msgid "Internal error"
 msgstr "vakava virhe: "
 
-#: lib/cpio.c:237
+#: lib/cpio.c:238
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:250
+#: lib/cpio.c:251
 #, fuzzy
 msgid " failed - "
 msgstr "pgp epäonnistui"
@@ -1511,46 +1511,56 @@ msgstr "en voinut avata %s: %s"
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:350
+#: lib/fsm.c:352
 msgid "========== Directories not explicitly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:352
+#: lib/fsm.c:354
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: lib/fsm.c:1293
+#: lib/fsm.c:768
+#, c-format
+msgid "user %s does not exist - using root\n"
+msgstr ""
+
+#: lib/fsm.c:776
+#, fuzzy, c-format
+msgid "group %s does not exist - using root\n"
+msgstr "ryhmässä %s ei ole paketteja\n"
+
+#: lib/fsm.c:1334
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1592
+#: lib/fsm.c:1633
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1719 lib/fsm.c:1855
+#: lib/fsm.c:1760 lib/fsm.c:1896
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/fsm.c:1882
+#: lib/fsm.c:1923
 #, 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:1888
+#: lib/fsm.c:1929
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s:n rmdir epäonnistui: %s"
 
-#: lib/fsm.c:1903
+#: lib/fsm.c:1944
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s:n avaus ei onnistunut: %s\n"
 
-#: lib/fsm.c:1925
+#: lib/fsm.c:1966
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "en voinut avata tiedostoa %s: "
@@ -1670,115 +1680,115 @@ msgstr "%s: readLead  ep
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: readLead  epäonnistui\n"
 
-#: lib/poptALL.c:222
+#: lib/poptALL.c:227
 msgid "predefine MACRO with value EXPR"
 msgstr ""
 
-#: lib/poptALL.c:223 lib/poptALL.c:226
+#: lib/poptALL.c:228 lib/poptALL.c:231
 msgid "'MACRO EXPR'"
 msgstr ""
 
-#: lib/poptALL.c:225
+#: lib/poptALL.c:230
 msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: lib/poptALL.c:228
+#: lib/poptALL.c:233
 #, fuzzy
 msgid "print macro expansion of EXPR"
 msgstr "tulosta käytetyn rpm:n versio"
 
-#: lib/poptALL.c:229
+#: lib/poptALL.c:234
 msgid "'EXPR'"
 msgstr ""
 
-#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254
+#: lib/poptALL.c:236 lib/poptALL.c:255 lib/poptALL.c:259
 msgid "read <FILE:...> instead of default file(s)"
 msgstr ""
 
-#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255
+#: lib/poptALL.c:237 lib/poptALL.c:256 lib/poptALL.c:260
 msgid "<FILE:...>"
 msgstr ""
 
-#: lib/poptALL.c:240 lib/poptALL.c:274
+#: lib/poptALL.c:245 lib/poptALL.c:279
 msgid "disable use of libio(3) API"
 msgstr ""
 
-#: lib/poptALL.c:246
+#: lib/poptALL.c:251
 #, fuzzy
 msgid "send stdout to CMD"
 msgstr "lähetä vakiotuloste <komento>:lle"
 
-#: lib/poptALL.c:247
+#: lib/poptALL.c:252
 msgid "CMD"
 msgstr ""
 
-#: lib/poptALL.c:258
+#: lib/poptALL.c:263
 #, fuzzy
 msgid "use ROOT as top level directory"
 msgstr "käytä <hakem> ylimpänä hakemistona"
 
-#: lib/poptALL.c:259
+#: lib/poptALL.c:264
 msgid "ROOT"
 msgstr ""
 
-#: lib/poptALL.c:262
+#: lib/poptALL.c:267
 msgid "display known query tags"
 msgstr ""
 
-#: lib/poptALL.c:264
+#: lib/poptALL.c:269
 msgid "display final rpmrc and macro configuration"
 msgstr ""
 
-#: lib/poptALL.c:266
+#: lib/poptALL.c:271
 msgid "provide less detailed output"
 msgstr ""
 
-#: lib/poptALL.c:268
+#: lib/poptALL.c:273
 msgid "provide more detailed output"
 msgstr ""
 
-#: lib/poptALL.c:270
+#: lib/poptALL.c:275
 msgid "print the version of rpm being used"
 msgstr "tulosta käytetyn rpm:n versio"
 
-#: lib/poptALL.c:283
+#: lib/poptALL.c:288
 #, fuzzy
 msgid "debug payload file state machine"
 msgstr "en voinut avata %s: %s"
 
-#: lib/poptALL.c:285
+#: lib/poptALL.c:290
 #, fuzzy
 msgid "use threads for file state machine"
 msgstr "en voinut avata %s: %s"
 
-#: lib/poptALL.c:287
+#: lib/poptALL.c:292
 msgid "debug protocol data stream"
 msgstr ""
 
-#: lib/poptALL.c:292
+#: lib/poptALL.c:297
 msgid "debug option/argument processing"
 msgstr ""
 
-#: lib/poptALL.c:297
+#: lib/poptALL.c:302
 #, fuzzy
 msgid "debug package state machine"
 msgstr "en voinut avata %s: %s"
 
-#: lib/poptALL.c:299
+#: lib/poptALL.c:304
 #, fuzzy
 msgid "use threads for package state machine"
 msgstr "en voinut avata %s: %s"
 
-#: lib/poptALL.c:311
+#: lib/poptALL.c:316
 msgid "debug rpmio I/O"
 msgstr ""
 
-#: lib/poptALL.c:323
+#: lib/poptALL.c:330
 msgid "debug URL cache handling"
 msgstr ""
 
 #. @-nullpass@
-#: lib/poptALL.c:393
+#: lib/poptALL.c:400
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1808,17 +1818,17 @@ msgstr ""
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:151
+#: lib/poptI.c:155
 #, fuzzy
 msgid "add suggested packages to transaction"
 msgstr "paketilla ei ole nimeä"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:159
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "asenna kaikki tiedostot, myös konfiguraatiot, jotka muuten ehkä ohitettaisiin"
 
-#: lib/poptI.c:159
+#: lib/poptI.c:163
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1826,156 +1836,161 @@ msgstr ""
 "poista kaikki paketit, joiden nimeä vastaa  <paketti> (tavallisesti, jos  "
 "<paketti> määrittää useita paketteja, tulee virhe)"
 
-#: lib/poptI.c:164 tools/rpmgraph.c:273
+#: lib/poptI.c:168 tools/rpmgraph.c:273
 msgid "use anaconda \"presentation order\""
 msgstr ""
 
-#: lib/poptI.c:169 lib/poptI.c:238
+#: lib/poptI.c:173 lib/poptI.c:245
 #, fuzzy
 msgid "do not execute package scriptlet(s)"
 msgstr "älä aja mitään pakettikohtaisia skriptejä"
 
-#: lib/poptI.c:173
+#: lib/poptI.c:177
 #, fuzzy
-msgid "relocate files in non-relocateable package"
+msgid "relocate files in non-relocatable package"
 msgstr "paketti %s ei ole asennettu\n"
 
-#: lib/poptI.c:176
+#: lib/poptI.c:180
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 msgid "erase (uninstall) package"
 msgstr "poista paketti"
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 #, fuzzy
 msgid "<package>+"
 msgstr "kysele kaikki paketit"
 
-#: lib/poptI.c:182 lib/poptI.c:219
+#: lib/poptI.c:186 lib/poptI.c:223
 #, fuzzy
 msgid "do not install configuration files"
 msgstr "listaa vain konfigurointiedostot (josta seuraa -l)"
 
-#: lib/poptI.c:185 lib/poptI.c:224
+#: lib/poptI.c:189 lib/poptI.c:228
 msgid "do not install documentation"
 msgstr "älä asenna dokumentointia"
 
-#: lib/poptI.c:187
+#: lib/poptI.c:191
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:188
+#: lib/poptI.c:192
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:191
+#: lib/poptI.c:195
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "lyhenne parametreille --replacepkgs --replacefiles"
 
-#: lib/poptI.c:195
+#: lib/poptI.c:199
 #, fuzzy
 msgid "upgrade package(s) if already installed"
 msgstr "paketti %s ei ole asennettu\n"
 
-#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
+#: lib/poptI.c:200 lib/poptI.c:216 lib/poptI.c:312
 #, fuzzy
 msgid "<packagefile>+"
 msgstr "    -b<vaihe> <määrittely> "
 
-#: lib/poptI.c:198
+#: lib/poptI.c:202
 msgid "print hash marks as package installs (good with -v)"
 msgstr "tulosta risuaitaa paketin asentuessa (-v:n kanssa hyvä)"
 
-#: lib/poptI.c:201
+#: lib/poptI.c:205
 msgid "don't verify package architecture"
 msgstr "älä tarkista paketin arkkitehtuuria"
 
-#: lib/poptI.c:204
+#: lib/poptI.c:208
 msgid "don't verify package operating system"
 msgstr "älä tarkista paketin käyttöjärjestelmää"
 
-#: lib/poptI.c:207
+#: lib/poptI.c:211
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:209
+#: lib/poptI.c:213
 msgid "install documentation"
 msgstr "asenna dokumentaatio"
 
-#: lib/poptI.c:212
+#: lib/poptI.c:216
 #, fuzzy
 msgid "install package(s)"
 msgstr "asenna paketti"
 
-#: lib/poptI.c:215
+#: lib/poptI.c:219
 msgid "update the database, but do not modify the filesystem"
 msgstr "päivitä tietokanta, mutta älä muuta tiedostojärjestelmää"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:225
 msgid "do not verify package dependencies"
 msgstr "älä tarkista paketin riippuvuuksia"
 
-#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:231 lib/poptQV.c:279 lib/poptQV.c:282
 #, fuzzy
 msgid "don't verify MD5 digest of files"
 msgstr "asenna paketti"
 
-#: lib/poptI.c:230
+#: lib/poptI.c:233
+#, fuzzy
+msgid "don't install file security contexts"
+msgstr "listaa vain konfigurointiedostot (josta seuraa -l)"
+
+#: lib/poptI.c:237
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "älä muuta asennusjärjestystä riippuvuuksien tyydyttämiseksi"
 
-#: lib/poptI.c:235
+#: lib/poptI.c:242
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:242
+#: lib/poptI.c:249
 #, fuzzy, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "älä suorita mitään vaiheita"
 
-#: lib/poptI.c:245
+#: lib/poptI.c:252
 #, fuzzy, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "älä suorita mitään vaiheita"
 
-#: lib/poptI.c:248
+#: lib/poptI.c:255
 #, fuzzy, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "älä suorita mitään vaiheita"
 
-#: lib/poptI.c:251
+#: lib/poptI.c:258
 #, fuzzy, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "älä suorita mitään vaiheita"
 
-#: lib/poptI.c:261
+#: lib/poptI.c:268
 #, fuzzy
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
 
-#: lib/poptI.c:264
+#: lib/poptI.c:271
 #, fuzzy, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "älä aja mitään pakettikohtaisia skriptejä"
 
-#: lib/poptI.c:267
+#: lib/poptI.c:274
 #, fuzzy, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "älä suorita asennusskriptejä"
 
-#: lib/poptI.c:270
+#: lib/poptI.c:277
 #, fuzzy, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "älä suorita asennusskriptejä"
 
-#: lib/poptI.c:273
+#: lib/poptI.c:280
 #, fuzzy, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "älä suorita asennusskriptejä"
 
-#: lib/poptI.c:277
+#: lib/poptI.c:284
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1983,53 +1998,53 @@ msgstr ""
 "päivitä vanhempaan versioon (--force päivitettäessä tekee tämän "
 "automaattisesti)"
 
-#: lib/poptI.c:281
+#: lib/poptI.c:288
 msgid "print percentages as package installs"
 msgstr "tulosta asennuksen eteneminen prosentteina"
 
-#: lib/poptI.c:283
+#: lib/poptI.c:290
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "siirrä paketti hakemistoon <hakem>, jos siirrettävissä"
 
-#: lib/poptI.c:284
+#: lib/poptI.c:291
 msgid "<dir>"
 msgstr ""
 
-#: lib/poptI.c:286
+#: lib/poptI.c:293
 #, fuzzy
 msgid "relocate files from path <old> to <new>"
 msgstr "siirrä tiedostot hakemistosta <vanhapolku> hakemistoon <uusipolku>"
 
-#: lib/poptI.c:287
+#: lib/poptI.c:294
 #, fuzzy
 msgid "<old>=<new>"
 msgstr "siirrä tiedostot hakemistosta <vanhapolku> hakemistoon <uusipolku>"
 
-#: lib/poptI.c:290
+#: lib/poptI.c:297
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:293
+#: lib/poptI.c:300
 msgid "install even if the package replaces installed files"
 msgstr "asenna vaikka paketti korvaisi asennettuja tiedostoja"
 
-#: lib/poptI.c:296
+#: lib/poptI.c:303
 msgid "reinstall if the package is already present"
 msgstr "asenna uudelleen, jos paketti on jo asennettu"
 
-#: lib/poptI.c:298
+#: lib/poptI.c:305
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:299
+#: lib/poptI.c:306
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:301
+#: lib/poptI.c:308
 msgid "don't install, but tell if it would work or not"
 msgstr "älä asenna, mutta kerro onnistuisiko se"
 
-#: lib/poptI.c:304
+#: lib/poptI.c:311
 #, fuzzy
 msgid "upgrade package(s)"
 msgstr "asenna paketti"
@@ -2118,217 +2133,212 @@ msgstr "kysele paketteja, jotka vaativat <i> ominaisuutta"
 msgid "query/verify the package(s) which provide a dependency"
 msgstr "kysele paketteja, jotka tarjoavat <i> ominaisuuden"
 
-#: lib/poptQV.c:226
+#: lib/poptQV.c:230
 #, fuzzy
 msgid "list all configuration files"
 msgstr "listaa vain konfigurointiedostot (josta seuraa -l)"
 
-#: lib/poptQV.c:228
+#: lib/poptQV.c:232
 #, fuzzy
 msgid "list all documentation files"
 msgstr "asenna dokumentaatio"
 
-#: lib/poptQV.c:230
+#: lib/poptQV.c:234
 #, fuzzy
 msgid "dump basic file information"
 msgstr "näytä paketin tiedot"
 
-#: lib/poptQV.c:234
+#: lib/poptQV.c:238
 #, fuzzy
 msgid "list files in package"
 msgstr "asenna paketti"
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:243
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:243
+#: lib/poptQV.c:247
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
-#: lib/poptQV.c:246
+#: lib/poptQV.c:250
 #, fuzzy, c-format
 msgid "skip %%readme files"
 msgstr "%s: readLead  epäonnistui\n"
 
-#: lib/poptQV.c:252
+#: lib/poptQV.c:256
 #, fuzzy
 msgid "use the following query format"
 msgstr "odottamaton kyselyn lähde"
 
-#: lib/poptQV.c:254
+#: lib/poptQV.c:258
 #, fuzzy
 msgid "substitute i18n sections into spec file"
 msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
 
-#: lib/poptQV.c:256
+#: lib/poptQV.c:260
 msgid "display the states of the listed files"
 msgstr ""
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:286
 #, fuzzy
 msgid "don't verify size of files"
 msgstr "asenna paketti"
 
-#: lib/poptQV.c:285
+#: lib/poptQV.c:289
 #, fuzzy
 msgid "don't verify symlink path of files"
 msgstr "asenna paketti"
 
-#: lib/poptQV.c:288
+#: lib/poptQV.c:292
 #, fuzzy
 msgid "don't verify owner of files"
 msgstr "asenna paketti"
 
-#: lib/poptQV.c:291
+#: lib/poptQV.c:295
 #, fuzzy
 msgid "don't verify group of files"
 msgstr "asenna paketti"
 
-#: lib/poptQV.c:294
+#: lib/poptQV.c:298
 msgid "don't verify modification time of files"
 msgstr ""
 
-#: lib/poptQV.c:297 lib/poptQV.c:300
+#: lib/poptQV.c:301 lib/poptQV.c:304
 #, fuzzy
 msgid "don't verify mode of files"
 msgstr "asenna paketti"
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:307
+#, fuzzy
+msgid "don't verify file security contexts"
+msgstr "asenna paketti"
+
+#: lib/poptQV.c:309
 #, fuzzy
 msgid "don't verify files in package"
 msgstr "asenna paketti"
 
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
+#: lib/poptQV.c:312 lib/poptQV.c:315 tools/rpmgraph.c:267
 #, fuzzy
 msgid "don't verify package dependencies"
 msgstr "älä tarkista paketin riippuvuuksia"
 
-#: lib/poptQV.c:314 lib/poptQV.c:318 lib/poptQV.c:321 lib/poptQV.c:324
+#: lib/poptQV.c:320 lib/poptQV.c:324 lib/poptQV.c:327 lib/poptQV.c:330
 #, fuzzy
 msgid "don't execute verify script(s)"
 msgstr "älä suorita mitään vaiheita"
 
-#: lib/poptQV.c:348
+#: lib/poptQV.c:354
 #, fuzzy
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr "asenna paketti"
 
-#: lib/poptQV.c:351
+#: lib/poptQV.c:357
 #, fuzzy
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr "asenna paketti"
 
-#: lib/poptQV.c:366
+#: lib/poptQV.c:372
 #, fuzzy
 msgid "sign package(s) (identical to --resign)"
 msgstr "allekirjoita paketti (hylkää nykyinen allekirjoitus)"
 
-#: lib/poptQV.c:368
+#: lib/poptQV.c:374
 #, fuzzy
 msgid "verify package signature(s)"
 msgstr "tarkista paketin allekirjoitus"
 
-#: lib/poptQV.c:370
+#: lib/poptQV.c:376
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:372
+#: lib/poptQV.c:378
 #, fuzzy
 msgid "sign package(s) (identical to --addsign)"
 msgstr "allekirjoita paketti (hylkää nykyinen allekirjoitus)"
 
-#: lib/poptQV.c:374
+#: lib/poptQV.c:380
 #, fuzzy
 msgid "generate signature"
 msgstr "generoi PGP-allekirjoitus"
 
-#: lib/psm.c:269
+#: lib/psm.c:268
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:394
+#: lib/psm.c:386
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
 
-#: lib/psm.c:480
+#: lib/psm.c:472
 #, c-format
 msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
 msgstr ""
 
-#: lib/psm.c:562
+#: lib/psm.c:554
 #, c-format
 msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
 msgstr ""
 
-#: lib/psm.c:570
+#: lib/psm.c:562
 #, c-format
 msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
 msgstr ""
 
-#: lib/psm.c:735
+#: lib/psm.c:730
 #, c-format
 msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
 msgstr ""
 
-#: lib/psm.c:756
+#: lib/psm.c:751
 #, 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:762
+#: lib/psm.c:757
 #, fuzzy, c-format
 msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
 msgstr "skriptin ajo epäonnistui"
 
-#: lib/psm.c:1191
+#: lib/psm.c:1188
 #, 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:1330
+#: lib/psm.c:1323
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1439
+#: lib/psm.c:1432
 #, fuzzy
 msgid "Unable to reload signature header\n"
 msgstr "%s:n kirjoitus ei onnistu"
 
-#: lib/psm.c:1485
-#, c-format
-msgid "user %s does not exist - using root\n"
-msgstr ""
-
-#: lib/psm.c:1494
-#, fuzzy, c-format
-msgid "group %s does not exist - using root\n"
-msgstr "ryhmässä %s ei ole paketteja\n"
-
-#: lib/psm.c:1546
+#: lib/psm.c:1510
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "%s:n avaus ei onnistunut: %s\n"
 
-#: lib/psm.c:1547
+#: lib/psm.c:1511
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1733
+#: lib/psm.c:1697
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: lib/psm.c:1736
+#: lib/psm.c:1700
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "pgp epäonnistui"
 
-#: lib/query.c:118 lib/rpmts.c:565
+#: lib/query.c:118 lib/rpmts.c:566
 #, fuzzy, c-format
 msgid "incorrect format: %s\n"
 msgstr "virhe formaatissa: %s\n"
@@ -2378,8 +2388,8 @@ msgstr "paketilla ei ole nime
 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:462
-#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576
+#: 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
 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
@@ -2394,7 +2404,7 @@ msgstr "%s:n kysely ei onnistunut\n"
 msgid "old format source packages cannot be queried\n"
 msgstr "vanhan formaatin lähdekoodipaketteja ei voi kysellä\n"
 
-#: lib/query.c:488 lib/rpminstall.c:608
+#: lib/query.c:488 lib/rpminstall.c:622
 #, fuzzy, c-format
 msgid "%s: not an rpm package (or package manifest): %s\n"
 msgstr "mikään paketti ei laukaise %s:a\n"
@@ -2464,17 +2474,17 @@ msgstr "virheellinen paketin numero: %s\n"
 msgid "record %u could not be read\n"
 msgstr "tietuetta %d ei voitu lukea\n"
 
-#: lib/query.c:766 lib/rpminstall.c:778
+#: lib/query.c:766 lib/rpminstall.c:792
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "paketti %s ei ole asennettu\n"
 
-#: lib/rpmal.c:692
+#: lib/rpmal.c:694
 #, fuzzy
 msgid "(added files)"
 msgstr "en voinut avata %s: %s"
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:772
 msgid "(added provide)"
 msgstr ""
 
@@ -2599,36 +2609,36 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "paketti %s ei ole %s:ssä"
 
-#: lib/rpmfi.c:546
+#: lib/rpmfi.c:561
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/rpmfi.c:784
+#: lib/rpmfi.c:799
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:788
+#: lib/rpmfi.c:803
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "Haen: %s\n"
 
-#: lib/rpmfi.c:791
+#: lib/rpmfi.c:806
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/rpmfi.c:919
+#: lib/rpmfi.c:934
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "Haen: %s\n"
 
-#: lib/rpmfi.c:929
+#: lib/rpmfi.c:944
 #, fuzzy, c-format
 msgid "relocating %s to %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: lib/rpmfi.c:1021
+#: lib/rpmfi.c:1036
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
@@ -2659,89 +2669,89 @@ msgstr ""
 msgid "Upgrading packages..."
 msgstr "asenna paketti"
 
-#: lib/rpminstall.c:394
+#: lib/rpminstall.c:408
 #, fuzzy, c-format
 msgid "Adding goal: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: lib/rpminstall.c:409
+#: lib/rpminstall.c:423
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Haen: %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:436
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:426
+#: lib/rpminstall.c:440
 #, fuzzy, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "virhe: ohitan %s:n, siirto epäonnistui - %s\n"
 
-#: lib/rpminstall.c:481 lib/rpminstall.c:872 tools/rpmgraph.c:140
+#: lib/rpminstall.c:495 lib/rpminstall.c:886 tools/rpmgraph.c:140
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "virhe: %s ei voida asentaa\n"
 
-#: lib/rpminstall.c:523
+#: lib/rpminstall.c:537
 #, fuzzy, c-format
-msgid "package %s is not relocateable\n"
+msgid "package %s is not relocatable\n"
 msgstr "paketti %s ei ole asennettu\n"
 
-#: lib/rpminstall.c:573
+#: lib/rpminstall.c:587
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:593
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:637
 #, fuzzy, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "ryhmässä %s ei ole paketteja\n"
 
-#: lib/rpminstall.c:637 lib/rpminstall.c:810 lib/rpminstall.c:1239
+#: lib/rpminstall.c:651 lib/rpminstall.c:824 lib/rpminstall.c:1253
 #: tools/rpmgraph.c:195
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "puuttuvat riippuvuudet:\n"
 
-#: lib/rpminstall.c:644 tools/rpmgraph.c:201
+#: lib/rpminstall.c:658 tools/rpmgraph.c:201
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:688
 #, fuzzy
 msgid "installing binary packages\n"
 msgstr "asenna paketti"
 
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:712
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/rpminstall.c:787
+#: lib/rpminstall.c:801
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" määrittää useita paketteja\n"
 
-#: lib/rpminstall.c:856
+#: lib/rpminstall.c:870
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "virhe: en voi avata %s\n"
 
-#: lib/rpminstall.c:862
+#: lib/rpminstall.c:876
 #, c-format
 msgid "Installing %s\n"
 msgstr "Asennan: %s\n"
 
-#: lib/rpminstall.c:1233
+#: lib/rpminstall.c:1247
 #, c-format
 msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
 msgstr ""
@@ -2809,7 +2819,7 @@ msgstr "paketti %s ei ole asennettu\n"
 
 #: lib/rpmps.c:223
 #, fuzzy, c-format
-msgid "path %s in package %s is not relocateable"
+msgid "path %s in package %s is not relocatable"
 msgstr "paketti %s ei ole asennettu\n"
 
 #: lib/rpmps.c:228
@@ -2957,50 +2967,75 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "En voi avata %s luettavaksi: %s."
 
-#: lib/rpmts.c:162
+#: lib/rpmsx.c:343
+#, c-format
+msgid "%s:  no newline on line number %d (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:360
+#, c-format
+msgid "%s:  line number %d is missing fields (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:391
+#, 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
+#, c-format
+msgid "%s:  invalid type specifier %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmsx.c:434
+#, c-format
+msgid "%s:  invalid context %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmts.c:163
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "virhe: en voi avata %s%s/packages.rpm\n"
 
-#: lib/rpmts.c:252
+#: lib/rpmts.c:253
 #, fuzzy, c-format
 msgid "extra '(' in package label: %s\n"
 msgstr "virheellinen paketin numero: %s\n"
 
-#: lib/rpmts.c:270
+#: lib/rpmts.c:271
 #, fuzzy, c-format
 msgid "missing '(' in package label: %s\n"
 msgstr "puuttuva '{' '%':n jälkeen"
 
-#: lib/rpmts.c:278
+#: lib/rpmts.c:279
 #, fuzzy, c-format
 msgid "missing ')' in package label: %s\n"
 msgstr "virheellinen paketin numero: %s\n"
 
-#: lib/rpmts.c:455
+#: lib/rpmts.c:456
 #, fuzzy, c-format
 msgid "cannot open Solve database in %s\n"
 msgstr "virhe: en voi avata %s%s/packages.rpm\n"
 
-#: lib/rpmts.c:597
+#: lib/rpmts.c:598
 #, fuzzy, c-format
 msgid "Adding: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: lib/rpmts.c:609
+#: lib/rpmts.c:610
 #, fuzzy, c-format
 msgid "Suggesting: %s\n"
 msgstr "Haen: %s\n"
 
-#: lib/rpmts.c:1077
+#: lib/rpmts.c:1097
 msgid "mounted filesystems:\n"
 msgstr ""
 
-#: lib/rpmts.c:1079
+#: lib/rpmts.c:1099
 msgid "    i    dev bsize       bavail       iavail mount point\n"
 msgstr ""
 
-#: lib/rpmts.c:1135
+#: lib/rpmts.c:1155
 #, c-format
 msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
 msgstr ""
@@ -3211,12 +3246,12 @@ msgstr ""
 msgid "computing file dispositions\n"
 msgstr ""
 
-#: lib/verify.c:288
+#: lib/verify.c:319
 #, fuzzy, c-format
 msgid "missing  %c %s"
 msgstr "puuttuva '{' '%':n jälkeen"
 
-#: lib/verify.c:397
+#: lib/verify.c:433
 #, fuzzy, c-format
 msgid "Unsatisfied dependencies for %s: "
 msgstr "%s-%s-%s:n tyydyttämättömät riippuvuudet:"
@@ -3418,162 +3453,162 @@ msgstr "en voinut avata tiedostoa %s: "
 msgid "cannot open %s index\n"
 msgstr "virhe: en voi avata %s\n"
 
-#: rpmdb/rpmdb.c:915
+#: rpmdb/rpmdb.c:917
 #, fuzzy
 msgid "no dbpath has been set\n"
 msgstr "dbpath ei ole asetettu"
 
-#: rpmdb/rpmdb.c:1193 rpmdb/rpmdb.c:1322 rpmdb/rpmdb.c:1373 rpmdb/rpmdb.c:2316
-#: rpmdb/rpmdb.c:2432 rpmdb/rpmdb.c:3161
+#: rpmdb/rpmdb.c:1195 rpmdb/rpmdb.c:1324 rpmdb/rpmdb.c:1375 rpmdb/rpmdb.c:2322
+#: rpmdb/rpmdb.c:2438 rpmdb/rpmdb.c:3167
 #, fuzzy, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "virhe luettaessa tietuetta %s %s:stä"
 
-#: rpmdb/rpmdb.c:1567
+#: rpmdb/rpmdb.c:1569
 msgid "miFreeHeader: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1577
+#: rpmdb/rpmdb.c:1579
 #, fuzzy, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "virhe talletettaessa tietuetta %s %s:ään"
 
-#: rpmdb/rpmdb.c:2209
+#: rpmdb/rpmdb.c:2212
 msgid "rpmdbNextIterator: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2242
 #, c-format
 msgid "rpmdb: damaged header #%u retrieved -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2520
+#: rpmdb/rpmdb.c:2526
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "en voi lukea headeria %d:stä päivittäessä"
 
-#: rpmdb/rpmdb.c:2583
+#: rpmdb/rpmdb.c:2589
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "virhe luettaessa tietuetta %s %s:stä"
 
-#: rpmdb/rpmdb.c:2698
+#: rpmdb/rpmdb.c:2704
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "virhe poistettaessa tietuetta %s %s:stä"
 
-#: rpmdb/rpmdb.c:2702
+#: rpmdb/rpmdb.c:2708
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "virhe poistettaessa tietuetta %s %s:stä"
 
-#: rpmdb/rpmdb.c:2730
+#: rpmdb/rpmdb.c:2736
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "virhe luettaessa tietuetta %s %s:stä"
 
-#: rpmdb/rpmdb.c:2751
+#: rpmdb/rpmdb.c:2757
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "virhe talletettaessa tietuetta %s %s:ään"
 
-#: rpmdb/rpmdb.c:2761
+#: rpmdb/rpmdb.c:2767
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "virhe poistettaessa tietuetta %s %s:stä"
 
-#: rpmdb/rpmdb.c:2910
+#: rpmdb/rpmdb.c:2916
 #, fuzzy, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "virhe etsittäessä pakettia %s\n"
 
-#: rpmdb/rpmdb.c:2964
+#: rpmdb/rpmdb.c:2970
 msgid "rpmdbAdd: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3136
+#: rpmdb/rpmdb.c:3142
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3140
+#: rpmdb/rpmdb.c:3146
 #, fuzzy, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "virhe poistettaessa tietuetta %s %s:stä"
 
-#: rpmdb/rpmdb.c:3180
+#: rpmdb/rpmdb.c:3186
 #, fuzzy, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "virhe talletettaessa tietuetta %s %s:ään"
 
-#: rpmdb/rpmdb.c:3581
+#: rpmdb/rpmdb.c:3587
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3619
+#: rpmdb/rpmdb.c:3625
 msgid "no dbpath has been set"
 msgstr "dbpath ei ole asetettu"
 
-#: rpmdb/rpmdb.c:3651
+#: rpmdb/rpmdb.c:3657
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
 
-#: rpmdb/rpmdb.c:3655
+#: rpmdb/rpmdb.c:3661
 #, fuzzy, c-format
 msgid "temporary database %s already exists\n"
 msgstr "väliaikainen tietokanta %s on jo olemassa"
 
-#: rpmdb/rpmdb.c:3661
+#: rpmdb/rpmdb.c:3667
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: rpmdb/rpmdb.c:3663
+#: rpmdb/rpmdb.c:3669
 #, fuzzy, c-format
 msgid "creating directory %s: %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: rpmdb/rpmdb.c:3670
+#: rpmdb/rpmdb.c:3676
 #, fuzzy, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
 
-#: rpmdb/rpmdb.c:3683
+#: rpmdb/rpmdb.c:3689
 #, fuzzy, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
 
-#: rpmdb/rpmdb.c:3712
+#: rpmdb/rpmdb.c:3718
 #, fuzzy, c-format
 msgid "header #%u in the database is bad -- skipping.\n"
 msgstr "tietue numero %d tietokannassa viallinen -- ohitan sen"
 
-#: rpmdb/rpmdb.c:3752
+#: rpmdb/rpmdb.c:3758
 #, fuzzy, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "en voi lisätä tietuetta %d:stä"
 
-#: rpmdb/rpmdb.c:3766
+#: rpmdb/rpmdb.c:3772
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3774
+#: rpmdb/rpmdb.c:3780
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3776
+#: rpmdb/rpmdb.c:3782
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3786
+#: rpmdb/rpmdb.c:3792
 #, fuzzy, c-format
 msgid "removing directory %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: rpmdb/rpmdb.c:3788
+#: rpmdb/rpmdb.c:3794
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "en voinut avata %s: %s"
@@ -3629,42 +3664,42 @@ msgstr ""
 msgid "Macro %%%s (%s) was not used below level %d\n"
 msgstr ""
 
-#: rpmio/macro.c:982
+#: rpmio/macro.c:984
 #, fuzzy, c-format
 msgid "Unknown option %c in %s(%s)\n"
 msgstr "(tuntematon tyyppi)"
 
-#: rpmio/macro.c:1182
+#: rpmio/macro.c:1184
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)\n"
 msgstr ""
 
-#: rpmio/macro.c:1252 rpmio/macro.c:1269
+#: rpmio/macro.c:1255 rpmio/macro.c:1272
 #, fuzzy, c-format
 msgid "Unterminated %c: %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: rpmio/macro.c:1310
+#: rpmio/macro.c:1313
 #, c-format
 msgid "A %% is followed by an unparseable macro\n"
 msgstr ""
 
-#: rpmio/macro.c:1439
+#: rpmio/macro.c:1442
 #, fuzzy, c-format
 msgid "Macro %%%.*s not found, skipping\n"
 msgstr "paketti %s ei ole %s:ssä"
 
-#: rpmio/macro.c:1510
+#: rpmio/macro.c:1513
 msgid "Target buffer overflow\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1705 rpmio/macro.c:1711
+#: rpmio/macro.c:1708 rpmio/macro.c:1714
 #, fuzzy, c-format
 msgid "File %s: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: rpmio/macro.c:1714
+#: rpmio/macro.c:1717
 #, c-format
 msgid "File %s is smaller than %u bytes\n"
 msgstr ""
index d5748ab..bbf5a33 100644 (file)
--- a/po/fr.po
+++ b/po/fr.po
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: RPM 4.2.1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:11-0500\n"
+"POT-Creation-Date: 2003-12-30 08:11-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"
@@ -29,44 +29,44 @@ msgstr "Dépendances de construction manquantes:\n"
 msgid "Unable to open spec file %s: %s\n"
 msgstr "Impossible d'ouvrir le fichier spec %s: %s\n"
 
-#: build.c:152 build.c:164
+#: build.c:150 build.c:162
 #, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr "Impossible d'ouvrir le pipe de tar: %m\n"
 
 #. Give up
-#: build.c:171
+#: build.c:169
 #, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "Impossible de lire le fichier spec à %s\n"
 
-#: build.c:199
+#: build.c:197
 #, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr "Impossible de renommer %s en %s: %m\n"
 
-#: build.c:239
+#: build.c:237
 #, c-format
 msgid "failed to stat %s: %m\n"
 msgstr "échec de stat sur %s: %m\n"
 
-#: build.c:244
+#: build.c:242
 #, c-format
 msgid "File %s is not a regular file.\n"
 msgstr "Fichier %s non régulier.\n"
 
-#: build.c:253
+#: build.c:251
 #, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr "Le fichier %s ne semble pas être un fichier spec.\n"
 
 #. parse up the build operators
-#: build.c:324
+#: build.c:322
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr "Construction pour plate-formes cibles: %s\n"
 
-#: build.c:339
+#: build.c:337
 #, c-format
 msgid "Building for target %s\n"
 msgstr "Construction pour cible %s\n"
@@ -120,7 +120,7 @@ msgstr "Options communes à tous les modes de rpm:"
 msgid "%s: %s\n"
 msgstr "%s: %s\n"
 
-#: rpmqv.c:129 lib/poptALL.c:114
+#: rpmqv.c:129 lib/poptALL.c:119
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM version %s\n"
@@ -437,159 +437,159 @@ msgstr "&& et || ne sont pas supportés sur des chaînes de caractères\n"
 msgid "syntax error in expression\n"
 msgstr "erreur de syntaxe dans l'expression\n"
 
-#: build/files.c:278
+#: build/files.c:280
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "échec du TIMECHECK: %s\n"
 
-#: build/files.c:343 build/files.c:543 build/files.c:739
+#: build/files.c:345 build/files.c:545 build/files.c:741
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "'(' manquante dans %s %s\n"
 
-#: build/files.c:354 build/files.c:673 build/files.c:750
+#: build/files.c:356 build/files.c:675 build/files.c:752
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "')' manquante dans %s(%s\n"
 
-#: build/files.c:392 build/files.c:698
+#: build/files.c:394 build/files.c:700
 #, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "Lexème %s invalide: %s\n"
 
-#: build/files.c:502
+#: build/files.c:504
 #, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "%s manquant(e) dans %s\n"
 
-#: build/files.c:559
+#: build/files.c:561
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr "espace non-blanc suivant %s(): %s\n"
 
-#: build/files.c:597
+#: build/files.c:599
 #, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "Mauvaise syntaxe: %s(%s)\n"
 
-#: build/files.c:607
+#: build/files.c:609
 #, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "Mauvais mode spec: %s(%s)\n"
 
-#: build/files.c:619
+#: build/files.c:621
 #, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "Mauvais dirmode spec: %s(%s)\n"
 
-#: build/files.c:777
+#: build/files.c:779
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr "Mauvaise longueur de la locale: \"%.*s\" dans %%lang(%s)\n"
 
 #. @innercontinue@
-#: build/files.c:788
+#: build/files.c:790
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr "Deux fois la même locale %.*s dans %%lang(%s)\n"
 
-#: build/files.c:917
+#: build/files.c:919
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr "Limite atteinte pour %%docdir\n"
 
-#: build/files.c:925
+#: build/files.c:927
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr "Un seul argument pour %%docdir\n"
 
 #. We already got a file -- error
-#: build/files.c:959
+#: build/files.c:961
 #, c-format
 msgid "Two files on one line: %s\n"
 msgstr "Deux fichiers sur une seule ligne: %s\n"
 
-#: build/files.c:976
+#: build/files.c:978
 #, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "Le fichier doit commencer par \"/\": %s\n"
 
-#: build/files.c:989
+#: build/files.c:991
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr "Ne peut mélanger un %%doc spécial avec d'autre formes: %s\n"
 
-#: build/files.c:1141
+#: build/files.c:1149
 #, c-format
 msgid "File listed twice: %s\n"
 msgstr "Fichier listé deux fois: %s\n"
 
-#: build/files.c:1280
+#: build/files.c:1288
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "Lien symbolique pointant sur BuildRoot: %s -> %s\n"
 
-#: build/files.c:1520
+#: build/files.c:1535
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Le fichier ne correpond pas à prefix (%s): %s\n"
 
-#: build/files.c:1544
+#: build/files.c:1559
 #, c-format
 msgid "File not found: %s\n"
 msgstr "Fichier non trouvé: %s\n"
 
-#: build/files.c:1752
+#: build/files.c:1767
 #, c-format
 msgid "%s: public key read failed.\n"
 msgstr "%s: échec de la lecture de la clé publique.\n"
 
-#: build/files.c:1756 lib/rpmchecksig.c:580
+#: build/files.c:1771 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:1804
+#: build/files.c:1819
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Le fichier non précédé d'un \"/\": %s\n"
 
-#: build/files.c:1828
+#: build/files.c:1843
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "Substitution non permise: %s\n"
 
-#: build/files.c:1845 lib/rpminstall.c:347
+#: build/files.c:1860 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:1905
+#: build/files.c:1920
 #, 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:1916 build/pack.c:156
+#: build/files.c:1931 build/pack.c:156
 #, c-format
 msgid "line: %s\n"
 msgstr "Ligne: %s\n"
 
-#: build/files.c:2307
+#: build/files.c:2323
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "Mauvais fichier: %s: %s\n"
 
-#: build/files.c:2319 build/parsePrep.c:50
+#: build/files.c:2335 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Mauvais possesseur/groupe: %s\n"
 
-#: build/files.c:2363
+#: build/files.c:2379
 #, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr "Vérification des fichiers non empaquetés: %s\n"
 
-#: build/files.c:2386
+#: build/files.c:2402
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
@@ -598,7 +598,7 @@ msgstr ""
 "Fichier(s) installé(s) (mais non empaquetés):\n"
 "%s"
 
-#: build/files.c:2414
+#: build/files.c:2430
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Traitement des fichiers: %s-%s-%s\n"
@@ -737,7 +737,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:1427
+#: build/pack.c:632 lib/psm.c:1420
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Impossible d'écrire le paquetage: %s\n"
@@ -767,7 +767,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:1725
+#: build/pack.c:725 lib/psm.c:1689
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Ecrit: %s\n"
@@ -1264,18 +1264,18 @@ msgstr "ne pas vérifier les dépendances de construction"
 msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
 msgstr "générer un(des) entête(s) compatible(s) avec l'emballage rpm[23]"
 
-#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329
-#: lib/poptQV.c:338 lib/poptQV.c:377
+#: build/poptBT.c:229 lib/poptALL.c:240 lib/poptI.c:261 lib/poptQV.c:335
+#: lib/poptQV.c:344 lib/poptQV.c:383
 msgid "don't verify package digest(s)"
 msgstr "ne pas vérifier les sommes de hachage du paquetage"
 
-#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332
-#: lib/poptQV.c:340 lib/poptQV.c:380
+#: build/poptBT.c:231 lib/poptALL.c:242 lib/poptI.c:263 lib/poptQV.c:338
+#: lib/poptQV.c:346 lib/poptQV.c:386
 msgid "don't verify database header(s) when retrieved"
 msgstr "ne pas vérifier l'entête de la base de données à la récupération"
 
-#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335
-#: lib/poptQV.c:342 lib/poptQV.c:382
+#: build/poptBT.c:233 lib/poptALL.c:248 lib/poptI.c:265 lib/poptQV.c:341
+#: lib/poptQV.c:348 lib/poptQV.c:388
 msgid "don't verify package signature(s)"
 msgstr "ne pas vérifier la(les) signature(s) du paquetage"
 
@@ -1348,31 +1348,31 @@ msgstr "Mauvaise magie, blah"
 msgid "Bad/unreadable  header"
 msgstr "Entête mauvais ou illisible"
 
-#: lib/cpio.c:232
+#: lib/cpio.c:233
 msgid "Header size too big"
 msgstr "Entête trop gros"
 
-#: lib/cpio.c:233
+#: lib/cpio.c:234
 msgid "Unknown file type"
 msgstr "Type de fichier inconnu"
 
-#: lib/cpio.c:234
+#: lib/cpio.c:235
 msgid "Missing hard link(s)"
 msgstr "lien(s) dur(s) manquant(s)"
 
-#: lib/cpio.c:235
+#: lib/cpio.c:236
 msgid "MD5 sum mismatch"
 msgstr "la somme MD5 ne correspond pas"
 
-#: lib/cpio.c:236
+#: lib/cpio.c:237
 msgid "Internal error"
 msgstr "Erreur interne"
 
-#: lib/cpio.c:237
+#: lib/cpio.c:238
 msgid "Archive file not in header"
 msgstr "L'entête ne contient pas le fichier archive"
 
-#: lib/cpio.c:250
+#: lib/cpio.c:251
 msgid " failed - "
 msgstr " échec - "
 
@@ -1504,47 +1504,57 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr "le fichier %s est sur un périphérique inconnu\n"
 
-#: lib/fsm.c:350
+#: lib/fsm.c:352
 #, fuzzy
 msgid "========== Directories not explicitly included in package:\n"
 msgstr "========== Répertoires non explicitement inclus dans le paquetage:\n"
 
-#: lib/fsm.c:352
+#: lib/fsm.c:354
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1293
+#: lib/fsm.c:768
+#, c-format
+msgid "user %s does not exist - using root\n"
+msgstr "utilisateur %s inexistant - utilisation de root\n"
+
+#: lib/fsm.c:776
+#, c-format
+msgid "group %s does not exist - using root\n"
+msgstr "groupe %s inexistant - utilisation de root\n"
+
+#: lib/fsm.c:1334
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr "le répertoire %s a été créé avec les permissions %04o.\n"
 
-#: lib/fsm.c:1592
+#: lib/fsm.c:1633
 #, 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:1719 lib/fsm.c:1855
+#: lib/fsm.c:1760 lib/fsm.c:1896
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s sauvé en tant que %s\n"
 
-#: lib/fsm.c:1882
+#: lib/fsm.c:1923
 #, 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:1888
+#: lib/fsm.c:1929
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s échec du rmdir sur %s: %s\n"
 
-#: lib/fsm.c:1903
+#: lib/fsm.c:1944
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s n'a pu délier %s: %s\n"
 
-#: lib/fsm.c:1925
+#: lib/fsm.c:1966
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s créé en tant que %s\n"
@@ -1663,110 +1673,110 @@ msgstr "%s: headerRead a échoué: %s"
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread a échoué: %s\n"
 
-#: lib/poptALL.c:222
+#: lib/poptALL.c:227
 msgid "predefine MACRO with value EXPR"
 msgstr "prédéfinir la MACRO avec l'EXPRression"
 
-#: lib/poptALL.c:223 lib/poptALL.c:226
+#: lib/poptALL.c:228 lib/poptALL.c:231
 msgid "'MACRO EXPR'"
 msgstr "'MACRO EXPR'"
 
-#: lib/poptALL.c:225
+#: lib/poptALL.c:230
 msgid "define MACRO with value EXPR"
 msgstr "definit MACRO ayant pour valeur EXPR"
 
-#: lib/poptALL.c:228
+#: lib/poptALL.c:233
 msgid "print macro expansion of EXPR"
 msgstr "affiche la macro-expansion d'EXPR"
 
-#: lib/poptALL.c:229
+#: lib/poptALL.c:234
 msgid "'EXPR'"
 msgstr "'EXPR'"
 
-#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254
+#: lib/poptALL.c:236 lib/poptALL.c:255 lib/poptALL.c:259
 msgid "read <FILE:...> instead of default file(s)"
 msgstr "Lire <FICHIER:...> au lieu du(des) fichier(s) par défaut"
 
-#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255
+#: lib/poptALL.c:237 lib/poptALL.c:256 lib/poptALL.c:260
 msgid "<FILE:...>"
 msgstr "<FICHIER:...>"
 
-#: lib/poptALL.c:240 lib/poptALL.c:274
+#: lib/poptALL.c:245 lib/poptALL.c:279
 msgid "disable use of libio(3) API"
 msgstr "utilisation de l'API libio(3) désactivée"
 
-#: lib/poptALL.c:246
+#: lib/poptALL.c:251
 msgid "send stdout to CMD"
 msgstr "envoyer la sortie standard à CMD"
 
-#: lib/poptALL.c:247
+#: lib/poptALL.c:252
 msgid "CMD"
 msgstr "CMD"
 
-#: lib/poptALL.c:258
+#: lib/poptALL.c:263
 msgid "use ROOT as top level directory"
 msgstr "utiliser RACINE comme répertoire racine"
 
-#: lib/poptALL.c:259
+#: lib/poptALL.c:264
 msgid "ROOT"
 msgstr "RACINE"
 
-#: lib/poptALL.c:262
+#: lib/poptALL.c:267
 msgid "display known query tags"
 msgstr "afficher les tags de requête connus"
 
-#: lib/poptALL.c:264
+#: lib/poptALL.c:269
 msgid "display final rpmrc and macro configuration"
 msgstr "afficher la configuration finale des macros et rpmrc"
 
-#: lib/poptALL.c:266
+#: lib/poptALL.c:271
 msgid "provide less detailed output"
 msgstr "afficher moins de détails"
 
-#: lib/poptALL.c:268
+#: lib/poptALL.c:273
 msgid "provide more detailed output"
 msgstr "afficher plus de détails"
 
-#: lib/poptALL.c:270
+#: lib/poptALL.c:275
 msgid "print the version of rpm being used"
 msgstr "afficher la version de rpm utilisé"
 
-#: lib/poptALL.c:283
+#: lib/poptALL.c:288
 msgid "debug payload file state machine"
 msgstr "déboguer la machine à états du fichier de la charge utile"
 
-#: lib/poptALL.c:285
+#: lib/poptALL.c:290
 #, fuzzy
 msgid "use threads for file state machine"
 msgstr "déboguer la machine à états du fichier de la charge utile"
 
-#: lib/poptALL.c:287
+#: lib/poptALL.c:292
 msgid "debug protocol data stream"
 msgstr "déboguer le flux de données du protocole"
 
-#: lib/poptALL.c:292
+#: lib/poptALL.c:297
 msgid "debug option/argument processing"
 msgstr "déboguer le traitement des options/arguments"
 
-#: lib/poptALL.c:297
+#: lib/poptALL.c:302
 msgid "debug package state machine"
 msgstr "déboguer la machine à état du paquetage"
 
-#: lib/poptALL.c:299
+#: lib/poptALL.c:304
 #, fuzzy
 msgid "use threads for package state machine"
 msgstr "déboguer la machine à état du paquetage"
 
-#: lib/poptALL.c:311
+#: lib/poptALL.c:316
 msgid "debug rpmio I/O"
 msgstr "déboguer les E/S de rpmio"
 
-#: lib/poptALL.c:323
+#: lib/poptALL.c:330
 msgid "debug URL cache handling"
 msgstr "déboguer la manipulation de cache d'URL"
 
 #. @-nullpass@
-#: lib/poptALL.c:393
+#: lib/poptALL.c:400
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr "%s: table d'option mal configurée (%d)\n"
@@ -1795,16 +1805,16 @@ msgstr "le roulement arrière prend comme argument une date"
 msgid "malformed rollback time/date stamp argument"
 msgstr "argument date du roulement arrière malformé"
 
-#: lib/poptI.c:151
+#: lib/poptI.c:155
 msgid "add suggested packages to transaction"
 msgstr "rajouter à la transaction les paquetages suggérés"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:159
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "installer tous les fichiers, meme si les configurations disent le contraire"
 
-#: lib/poptI.c:159
+#: lib/poptI.c:163
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1812,154 +1822,160 @@ msgstr ""
 "retirer tous les paquetages qui correspondent à <paquetage> (normalement on "
 "retourne une erreur si le <paquetage> correspond à plusieurs paquetages"
 
-#: lib/poptI.c:164 tools/rpmgraph.c:273
+#: lib/poptI.c:168 tools/rpmgraph.c:273
 msgid "use anaconda \"presentation order\""
 msgstr "utiliser la \"présentation\" d'anaconda"
 
-#: lib/poptI.c:169 lib/poptI.c:238
+#: lib/poptI.c:173 lib/poptI.c:245
 msgid "do not execute package scriptlet(s)"
 msgstr "ne pas exécuter le(s) scriptlet(s) du paquetages"
 
-#: lib/poptI.c:173
-msgid "relocate files in non-relocateable package"
+#: lib/poptI.c:177
+#, fuzzy
+msgid "relocate files in non-relocatable package"
 msgstr "reloger des fichiers d'un paquetage non relogeable"
 
-#: lib/poptI.c:176
+#: lib/poptI.c:180
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 "sauver les fichiers du paquetage désinstallé en les renommant dans un sous-"
 "répertoire"
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 msgid "erase (uninstall) package"
 msgstr "désinstaller un paquetage"
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 msgid "<package>+"
 msgstr "<paquetage>+"
 
-#: lib/poptI.c:182 lib/poptI.c:219
+#: lib/poptI.c:186 lib/poptI.c:223
 msgid "do not install configuration files"
 msgstr "ne pas installer les fichiers de configuration"
 
-#: lib/poptI.c:185 lib/poptI.c:224
+#: lib/poptI.c:189 lib/poptI.c:228
 msgid "do not install documentation"
 msgstr "ne pas installer la documentation"
 
-#: lib/poptI.c:187
+#: lib/poptI.c:191
 msgid "skip files with leading component <path> "
 msgstr "sauter les fichiers commence par le <chemin> indiqué"
 
-#: lib/poptI.c:188
+#: lib/poptI.c:192
 msgid "<path>"
 msgstr "<chemin>"
 
-#: lib/poptI.c:191
+#: lib/poptI.c:195
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "raccourci pour --replacepkgs --replacefiles"
 
-#: lib/poptI.c:195
+#: lib/poptI.c:199
 msgid "upgrade package(s) if already installed"
 msgstr "met à jour le(s) paquetage(s) déjà installé(s)"
 
-#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
+#: lib/poptI.c:200 lib/poptI.c:216 lib/poptI.c:312
 msgid "<packagefile>+"
 msgstr "<paquetage>+"
 
-#: lib/poptI.c:198
+#: lib/poptI.c:202
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 "afficher des marqueurs au fur et à mesure que le paquetage s'installe (avec -"
 "v c'est bien(tm))"
 
-#: lib/poptI.c:201
+#: lib/poptI.c:205
 msgid "don't verify package architecture"
 msgstr "ne pas vérifier l'architecture du paquetage"
 
-#: lib/poptI.c:204
+#: lib/poptI.c:208
 msgid "don't verify package operating system"
 msgstr "ne pas vérifier le système d'exploitation du paquetage"
 
-#: lib/poptI.c:207
+#: lib/poptI.c:211
 msgid "don't check disk space before installing"
 msgstr "ne pas vérifier l'espace disque avant l'installation"
 
-#: lib/poptI.c:209
+#: lib/poptI.c:213
 msgid "install documentation"
 msgstr "installer la documentation"
 
-#: lib/poptI.c:212
+#: lib/poptI.c:216
 msgid "install package(s)"
 msgstr "installer le(s) paquetage(s)"
 
-#: lib/poptI.c:215
+#: lib/poptI.c:219
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 "mettre à jour la base données, mais ne pas modifier le système de fichiers"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:225
 msgid "do not verify package dependencies"
 msgstr "ne pas vérifier les dépendances du paquetage"
 
-#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:231 lib/poptQV.c:279 lib/poptQV.c:282
 msgid "don't verify MD5 digest of files"
 msgstr "ne pas vérifier les sommes MD5 des fichiers"
 
-#: lib/poptI.c:230
+#: lib/poptI.c:233
+#, fuzzy
+msgid "don't install file security contexts"
+msgstr "ne pas installer les fichiers de configuration"
+
+#: lib/poptI.c:237
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 "ne pas ré-arranger l'ordre d'installation des paquetages pour satisfaire les "
 "dépendances"
 
-#: lib/poptI.c:235
+#: lib/poptI.c:242
 msgid "do not suggest missing dependency resolution(s)"
 msgstr "ne pas suggérer de résolution pour les dépendances manquantes"
 
-#: lib/poptI.c:242
+#: lib/poptI.c:249
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "ne pas exécuter le scriptlet %%pre (s'il existe)"
 
-#: lib/poptI.c:245
+#: lib/poptI.c:252
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "ne pas exécuter le scriptlet %%post (s'il existe)"
 
-#: lib/poptI.c:248
+#: lib/poptI.c:255
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "ne pas exécuter le scriptlet %%preun (s'il existe)"
 
-#: lib/poptI.c:251
+#: lib/poptI.c:258
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "ne pas exécuter le scriptlet %%postun (s'il existe)"
 
-#: lib/poptI.c:261
+#: lib/poptI.c:268
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "n'exécuter aucun scriptlet trigger activé par ce paquetage"
 
-#: lib/poptI.c:264
+#: lib/poptI.c:271
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "n'exécuter aucun scriplet %%triggerprein"
 
-#: lib/poptI.c:267
+#: lib/poptI.c:274
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "n'exécuter aucun scriplet %%triggerin"
 
-#: lib/poptI.c:270
+#: lib/poptI.c:277
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "n'exécuter aucun scriptlet %%triggerun"
 
-#: lib/poptI.c:273
+#: lib/poptI.c:280
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "n'exécuter aucun scriptlet %%triggerpostun"
 
-#: lib/poptI.c:277
+#: lib/poptI.c:284
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1967,54 +1983,54 @@ msgstr ""
 "mettre à jour avec un paquetage plus ancien (une m-à-j avec --force fait ça "
 "automatiquement"
 
-#: lib/poptI.c:281
+#: lib/poptI.c:288
 msgid "print percentages as package installs"
 msgstr "afficher le pourcentage d'installation du paquetage"
 
-#: lib/poptI.c:283
+#: lib/poptI.c:290
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "reloge le paquetage vers <rep>, si relogeable"
 
-#: lib/poptI.c:284
+#: lib/poptI.c:291
 msgid "<dir>"
 msgstr "<rep>"
 
-#: lib/poptI.c:286
+#: lib/poptI.c:293
 msgid "relocate files from path <old> to <new>"
 msgstr "reloge les fichiers du <vieux> chemin vers <nouveau>"
 
-#: lib/poptI.c:287
+#: lib/poptI.c:294
 msgid "<old>=<new>"
 msgstr "<vieux>=<nouveau>"
 
-#: lib/poptI.c:290
+#: lib/poptI.c:297
 msgid "save erased package files by repackaging"
 msgstr ""
 "sauvegarder les fichiers du paquetage désinstallé en les ré-empaquetant"
 
-#: lib/poptI.c:293
+#: lib/poptI.c:300
 msgid "install even if the package replaces installed files"
 msgstr "installer même si le paquetage remplace des fichiers installés"
 
-#: lib/poptI.c:296
+#: lib/poptI.c:303
 msgid "reinstall if the package is already present"
 msgstr "réinstalle si le paquetage est déjà installé"
 
-#: lib/poptI.c:298
+#: lib/poptI.c:305
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 "désinstaller le(s) nouveau(x), ré-installer le(s) vieux paquetages, comme "
 "c'était le cas pour cette <date>"
 
-#: lib/poptI.c:299
+#: lib/poptI.c:306
 msgid "<date>"
 msgstr "<date>"
 
-#: lib/poptI.c:301
+#: lib/poptI.c:308
 msgid "don't install, but tell if it would work or not"
 msgstr "n'installe pas, mais dit si ça marcherait ou pas"
 
-#: lib/poptI.c:304
+#: lib/poptI.c:311
 msgid "upgrade package(s)"
 msgstr "mises à jour des paquetages"
 
@@ -2091,195 +2107,190 @@ msgstr "vérifier/demander le(s) paquetage(s) qui requier(en)t une dépendance"
 msgid "query/verify the package(s) which provide a dependency"
 msgstr "vérifier/demander le(s) paquetage(s) qui fourni(ssen)t une dépendance"
 
-#: lib/poptQV.c:226
+#: lib/poptQV.c:230
 msgid "list all configuration files"
 msgstr "lister les fichiers de configuration"
 
-#: lib/poptQV.c:228
+#: lib/poptQV.c:232
 msgid "list all documentation files"
 msgstr "lister les fichiers documents"
 
-#: lib/poptQV.c:230
+#: lib/poptQV.c:234
 msgid "dump basic file information"
 msgstr "débite les informations de base des fichiers"
 
-#: lib/poptQV.c:234
+#: lib/poptQV.c:238
 msgid "list files in package"
 msgstr "lister les fichiers du paquetage"
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:243
 #, c-format
 msgid "skip %%ghost files"
 msgstr "éviter les fichiers fantômes %%ghost"
 
-#: lib/poptQV.c:243
+#: lib/poptQV.c:247
 #, c-format
 msgid "skip %%license files"
 msgstr "éviter les fichiers %%license"
 
-#: lib/poptQV.c:246
+#: lib/poptQV.c:250
 #, c-format
 msgid "skip %%readme files"
 msgstr "éviter les fichier %%readme"
 
-#: lib/poptQV.c:252
+#: lib/poptQV.c:256
 msgid "use the following query format"
 msgstr "utiliser le format de requête suivant"
 
-#: lib/poptQV.c:254
+#: lib/poptQV.c:258
 msgid "substitute i18n sections into spec file"
 msgstr "substituer les section i18n dans le fichier spec"
 
-#: lib/poptQV.c:256
+#: lib/poptQV.c:260
 msgid "display the states of the listed files"
 msgstr "affiche la liste des fichiers et leur état"
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:286
 msgid "don't verify size of files"
 msgstr "ne pas vérifier la taille des fichiers"
 
-#: lib/poptQV.c:285
+#: lib/poptQV.c:289
 msgid "don't verify symlink path of files"
 msgstr "ne pas vérifier le chemin du lien symbolique des fichiers"
 
-#: lib/poptQV.c:288
+#: lib/poptQV.c:292
 msgid "don't verify owner of files"
 msgstr "ne pas vérifier le possesseur des fichiers"
 
-#: lib/poptQV.c:291
+#: lib/poptQV.c:295
 msgid "don't verify group of files"
 msgstr "ne pas vérifier le groupe possesseur des fichiers"
 
-#: lib/poptQV.c:294
+#: lib/poptQV.c:298
 msgid "don't verify modification time of files"
 msgstr "ne pas vérifier les dates de modification des fichiers"
 
-#: lib/poptQV.c:297 lib/poptQV.c:300
+#: lib/poptQV.c:301 lib/poptQV.c:304
 msgid "don't verify mode of files"
 msgstr "ne pas vérifier les permissions des fichiers"
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:307
+#, fuzzy
+msgid "don't verify file security contexts"
+msgstr "ne pas vérifier les fichiers du paquetage"
+
+#: lib/poptQV.c:309
 msgid "don't verify files in package"
 msgstr "ne pas vérifier les fichiers du paquetage"
 
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
+#: lib/poptQV.c:312 lib/poptQV.c:315 tools/rpmgraph.c:267
 msgid "don't verify package dependencies"
 msgstr "ne pas vérifier les dépendances du paquetage"
 
-#: lib/poptQV.c:314 lib/poptQV.c:318 lib/poptQV.c:321 lib/poptQV.c:324
+#: lib/poptQV.c:320 lib/poptQV.c:324 lib/poptQV.c:327 lib/poptQV.c:330
 msgid "don't execute verify script(s)"
 msgstr "ne pas exécuter le(s) script(s) de vérification"
 
-#: lib/poptQV.c:348
+#: lib/poptQV.c:354
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr "ne pas vérifier la(les) signature(s) GPG V3 DSA"
 
-#: lib/poptQV.c:351
+#: lib/poptQV.c:357
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr "ne pas vérifier la(les) signature(s) PGP V3 RSA/MD5"
 
-#: lib/poptQV.c:366
+#: lib/poptQV.c:372
 msgid "sign package(s) (identical to --resign)"
 msgstr "signer le(s) paquetage(s) (identique à --resign)"
 
-#: lib/poptQV.c:368
+#: lib/poptQV.c:374
 msgid "verify package signature(s)"
 msgstr "vérifier la(les) signature(s) du paquetage"
 
-#: lib/poptQV.c:370
+#: lib/poptQV.c:376
 msgid "import an armored public key"
 msgstr "importer une clé publique blindé"
 
-#: lib/poptQV.c:372
+#: lib/poptQV.c:378
 msgid "sign package(s) (identical to --addsign)"
 msgstr "signer le(s) paquetage(s) (identique à --addsign)"
 
-#: lib/poptQV.c:374
+#: lib/poptQV.c:380
 msgid "generate signature"
 msgstr "génération de signature"
 
-#: lib/psm.c:269
+#: lib/psm.c:268
 msgid "source package expected, binary found\n"
 msgstr "paquetage source attendu, paquetage binaire trouvé\n"
 
-#: lib/psm.c:394
+#: lib/psm.c:386
 msgid "source package contains no .spec file\n"
 msgstr "le paquetage source ne contient pas de fichier .spec\n"
 
-#: lib/psm.c:480
+#: lib/psm.c:472
 #, c-format
 msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
 msgstr ""
 
-#: lib/psm.c:562
+#: lib/psm.c:554
 #, 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:570
+#: lib/psm.c:562
 #, 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:735
+#: lib/psm.c:730
 #, c-format
 msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
 msgstr ""
 
-#: lib/psm.c:756
+#: lib/psm.c:751
 #, 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:762
+#: lib/psm.c:757
 #, 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:1191
+#: lib/psm.c:1188
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "%s: %s avait %d fichiers, test = %d\n"
 
-#: lib/psm.c:1330
+#: lib/psm.c:1323
 #, 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:1439
+#: lib/psm.c:1432
 msgid "Unable to reload signature header\n"
 msgstr "Impossible de recharger l'entête de signature\n"
 
-#: lib/psm.c:1485
-#, c-format
-msgid "user %s does not exist - using root\n"
-msgstr "utilisateur %s inexistant - utilisation de root\n"
-
-#: lib/psm.c:1494
-#, c-format
-msgid "group %s does not exist - using root\n"
-msgstr "groupe %s inexistant - utilisation de root\n"
-
-#: lib/psm.c:1546
+#: lib/psm.c:1510
 #, 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:1547
+#: lib/psm.c:1511
 msgid " on file "
 msgstr " dans fichier "
 
-#: lib/psm.c:1733
+#: lib/psm.c:1697
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "échec de %s sur le fichier %s: %s\n"
 
-#: lib/psm.c:1736
+#: lib/psm.c:1700
 #, c-format
 msgid "%s failed: %s\n"
 msgstr "échec %s: %s\n"
 
-#: lib/query.c:118 lib/rpmts.c:565
+#: lib/query.c:118 lib/rpmts.c:566
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "format incorrect: %s\n"
@@ -2327,8 +2338,8 @@ msgid "package has neither file owner or id lists\n"
 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:462
-#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576
+#: 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
 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157
 #, c-format
 msgid "open of %s failed: %s\n"
@@ -2344,7 +2355,7 @@ msgid "old format source packages cannot be queried\n"
 msgstr ""
 "les vieux formats de paquetage source ne peuvent être sujet aux requêtes\n"
 
-#: lib/query.c:488 lib/rpminstall.c:608
+#: lib/query.c:488 lib/rpminstall.c:622
 #, c-format
 msgid "%s: not an rpm package (or package manifest): %s\n"
 msgstr "%s: n'est pas un paquetage rpm (ni une list de paquetages): %s\n"
@@ -2413,16 +2424,16 @@ msgstr "numéro d'article de paquetage: %u\n"
 msgid "record %u could not be read\n"
 msgstr "impossible de lire l'article %u\n"
 
-#: lib/query.c:766 lib/rpminstall.c:778
+#: lib/query.c:766 lib/rpminstall.c:792
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "le paquetage %s n'est pas installé\n"
 
-#: lib/rpmal.c:692
+#: lib/rpmal.c:694
 msgid "(added files)"
 msgstr "(fichiers ajoutés)"
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:772
 msgid "(added provide)"
 msgstr "(fourniture ajoutée)"
 
@@ -2548,36 +2559,36 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "le paquetage %s a un(e) %s non-satisfaites: %s\n"
 
-#: lib/rpmfi.c:546
+#: lib/rpmfi.c:561
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s ignoré à cause du drapeau missingok\n"
 
-#: lib/rpmfi.c:784
+#: lib/rpmfi.c:799
 msgid "========== relocations\n"
 msgstr "========== relogements\n"
 
-#: lib/rpmfi.c:788
+#: lib/rpmfi.c:803
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr "%5d exclus  %s\n"
 
-#: lib/rpmfi.c:791
+#: lib/rpmfi.c:806
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d reloge %s -> %s\n"
 
-#: lib/rpmfi.c:919
+#: lib/rpmfi.c:934
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "exclusion de %s %s\n"
 
-#: lib/rpmfi.c:929
+#: lib/rpmfi.c:944
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "relogement de %s vers %s\n"
 
-#: lib/rpmfi.c:1021
+#: lib/rpmfi.c:1036
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "relogement du répertoire %s vers %s\n"
@@ -2606,87 +2617,87 @@ msgstr "Mise à jour..."
 msgid "Upgrading packages..."
 msgstr "Mise à jour des paquetages..."
 
-#: lib/rpminstall.c:394
+#: lib/rpminstall.c:408
 #, c-format
 msgid "Adding goal: %s\n"
 msgstr "Nouveau but: %s\n"
 
-#: lib/rpminstall.c:409
+#: lib/rpminstall.c:423
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Récupération de %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:436
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... en tant que %s\n"
 
-#: lib/rpminstall.c:426
+#: lib/rpminstall.c:440
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s ignoré - échec du téléchargement - %s\n"
 
-#: lib/rpminstall.c:481 lib/rpminstall.c:872 tools/rpmgraph.c:140
+#: lib/rpminstall.c:495 lib/rpminstall.c:886 tools/rpmgraph.c:140
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s ne peut être installé\n"
 
-#: lib/rpminstall.c:523
-#, c-format
-msgid "package %s is not relocateable\n"
+#: lib/rpminstall.c:537
+#, fuzzy, c-format
+msgid "package %s is not relocatable\n"
 msgstr "le paquetage %s n'est pas relogeable\n"
 
-#: lib/rpminstall.c:573
+#: lib/rpminstall.c:587
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "erreur en lisant %s\n"
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:593
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "le fichier %s demande une version plus récente de RPM\n"
 
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:637
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "%d paquetage(s) source(s) et %d paquetage(s) binaire(s) trouvé(s)\n"
 
-#: lib/rpminstall.c:637 lib/rpminstall.c:810 lib/rpminstall.c:1239
+#: lib/rpminstall.c:651 lib/rpminstall.c:824 lib/rpminstall.c:1253
 #: tools/rpmgraph.c:195
 msgid "Failed dependencies:\n"
 msgstr "Dépendances requises:\n"
 
-#: lib/rpminstall.c:644 tools/rpmgraph.c:201
+#: lib/rpminstall.c:658 tools/rpmgraph.c:201
 msgid "    Suggested resolutions:\n"
 msgstr "    Résolutions suggérées:\n"
 
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:688
 msgid "installing binary packages\n"
 msgstr "installation des paquetages binaires\n"
 
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:712
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "ne peut ouvrir le fichier %s: %s\n"
 
-#: lib/rpminstall.c:787
+#: lib/rpminstall.c:801
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" spécifie plusieurs paquetages\n"
 
-#: lib/rpminstall.c:856
+#: lib/rpminstall.c:870
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "impossible d'ouvrir %s: %s\n"
 
-#: lib/rpminstall.c:862
+#: lib/rpminstall.c:876
 #, c-format
 msgid "Installing %s\n"
 msgstr "Installation de %s\n"
 
-#: lib/rpminstall.c:1233
+#: lib/rpminstall.c:1247
 #, c-format
 msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
 msgstr ""
@@ -2762,8 +2773,8 @@ msgid "package %s is already installed"
 msgstr "paquetage %s déjà installé"
 
 #: lib/rpmps.c:223
-#, c-format
-msgid "path %s in package %s is not relocateable"
+#, fuzzy, c-format
+msgid "path %s in package %s is not relocatable"
 msgstr "le chemin %s du paquetage %s n'est pas relogeable"
 
 #: lib/rpmps.c:228
@@ -2917,50 +2928,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/rpmts.c:162
+#: lib/rpmsx.c:343
+#, c-format
+msgid "%s:  no newline on line number %d (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:360
+#, c-format
+msgid "%s:  line number %d is missing fields (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:391
+#, 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
+#, c-format
+msgid "%s:  invalid type specifier %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmsx.c:434
+#, c-format
+msgid "%s:  invalid context %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmts.c:163
 #, 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:252
+#: lib/rpmts.c:253
 #, c-format
 msgid "extra '(' in package label: %s\n"
 msgstr "'(' supplémentaire dans le label du paquetage: %s\n"
 
-#: lib/rpmts.c:270
+#: lib/rpmts.c:271
 #, c-format
 msgid "missing '(' in package label: %s\n"
 msgstr "'(' manquante dans le label du paquetage: %s\n"
 
-#: lib/rpmts.c:278
+#: lib/rpmts.c:279
 #, c-format
 msgid "missing ')' in package label: %s\n"
 msgstr "')' manquante dans le label du paquetage: %s\n"
 
-#: lib/rpmts.c:455
+#: lib/rpmts.c:456
 #, 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:597
+#: lib/rpmts.c:598
 #, c-format
 msgid "Adding: %s\n"
 msgstr "Ajout de: %s\n"
 
-#: lib/rpmts.c:609
+#: lib/rpmts.c:610
 #, c-format
 msgid "Suggesting: %s\n"
 msgstr "Suggestion: %s\n"
 
-#: lib/rpmts.c:1077
+#: lib/rpmts.c:1097
 msgid "mounted filesystems:\n"
 msgstr "systèmes de fichiers montés:\n"
 
-#: lib/rpmts.c:1079
+#: lib/rpmts.c:1099
 msgid "    i    dev bsize       bavail       iavail mount point\n"
 msgstr ""
 
-#: lib/rpmts.c:1135
+#: lib/rpmts.c:1155
 #, c-format
 msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
 msgstr "%5d 0x%04x %5u %12ld %12ld %s\n"
@@ -3167,12 +3203,12 @@ msgstr "calcul de %d empreintes de fichier\n"
 msgid "computing file dispositions\n"
 msgstr "calcul de la disposition des fichiers\n"
 
-#: lib/verify.c:288
+#: lib/verify.c:319
 #, c-format
 msgid "missing  %c %s"
 msgstr "manquant %c %s"
 
-#: lib/verify.c:397
+#: lib/verify.c:433
 #, c-format
 msgid "Unsatisfied dependencies for %s: "
 msgstr "dépendances non satisfaites pour %s: "
@@ -3374,166 +3410,166 @@ msgstr "ne peut ouvrir l'index %s en utilisant db%d - %s (%d)\n"
 msgid "cannot open %s index\n"
 msgstr "ne peut ouvrir l'index %s\n"
 
-#: rpmdb/rpmdb.c:915
+#: rpmdb/rpmdb.c:917
 msgid "no dbpath has been set\n"
 msgstr "aucun dbpath n'a été fourni\n"
 
-#: rpmdb/rpmdb.c:1193 rpmdb/rpmdb.c:1322 rpmdb/rpmdb.c:1373 rpmdb/rpmdb.c:2316
-#: rpmdb/rpmdb.c:2432 rpmdb/rpmdb.c:3161
+#: rpmdb/rpmdb.c:1195 rpmdb/rpmdb.c:1324 rpmdb/rpmdb.c:1375 rpmdb/rpmdb.c:2322
+#: rpmdb/rpmdb.c:2438 rpmdb/rpmdb.c:3167
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "erreur(%d) en attrapant les articles \"%s\" de l'index %s\n"
 
-#: rpmdb/rpmdb.c:1567
+#: rpmdb/rpmdb.c:1569
 msgid "miFreeHeader: skipping"
 msgstr "miFreeHeader: on saute"
 
-#: rpmdb/rpmdb.c:1577
+#: rpmdb/rpmdb.c:1579
 #, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "erreur(%d) en stockant l'article nº%d dans %s\n"
 
-#: rpmdb/rpmdb.c:2209
+#: rpmdb/rpmdb.c:2212
 msgid "rpmdbNextIterator: skipping"
 msgstr "rpmdbNextIterator: on saute"
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2242
 #, c-format
 msgid "rpmdb: damaged header #%u retrieved -- skipping.\n"
 msgstr "rpmdb: l'entête nº%u endommagé a été téléchargé -- ignoré.\n"
 
-#: rpmdb/rpmdb.c:2520
+#: rpmdb/rpmdb.c:2526
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "%s: impossible de lire l'entête à 0x%x\n"
 
-#: rpmdb/rpmdb.c:2583
+#: rpmdb/rpmdb.c:2589
 #, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr ""
 "erreur(%d) en affectant l'article de l'entête nº%d pour l'enlèvement de %s\n"
 
-#: rpmdb/rpmdb.c:2698
+#: rpmdb/rpmdb.c:2704
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "enlèvement \"%s\" à l'index %s.\n"
 
-#: rpmdb/rpmdb.c:2702
+#: rpmdb/rpmdb.c:2708
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "enlèvement de %d entrées à l'index %s.\n"
 
-#: rpmdb/rpmdb.c:2730
+#: rpmdb/rpmdb.c:2736
 #, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "erreur(%d) en affectant les articles \"%s\" de l'index %s\n"
 
-#: rpmdb/rpmdb.c:2751
+#: rpmdb/rpmdb.c:2757
 #, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "erreur(%d) en stockant l'article \"%s\" dans %s\n"
 
-#: rpmdb/rpmdb.c:2761
+#: rpmdb/rpmdb.c:2767
 #, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "erreur(%d) en enlevant l'article \"%s\" de %s\n"
 
-#: rpmdb/rpmdb.c:2910
+#: rpmdb/rpmdb.c:2916
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "erreur en allouant une nouvelle instance de paquetage\n"
 
-#: rpmdb/rpmdb.c:2964
+#: rpmdb/rpmdb.c:2970
 msgid "rpmdbAdd: skipping"
 msgstr "rpmdbAdd: on saute"
 
-#: rpmdb/rpmdb.c:3136
+#: rpmdb/rpmdb.c:3142
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "rajout de \"%s\" à l'index %s.\n"
 
-#: rpmdb/rpmdb.c:3140
+#: rpmdb/rpmdb.c:3146
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "rajout de %d entrées à l'index %s.\n"
 
-#: rpmdb/rpmdb.c:3180
+#: rpmdb/rpmdb.c:3186
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "erreur(%d) en stockant l'article %s dans %s\n"
 
-#: rpmdb/rpmdb.c:3581
+#: rpmdb/rpmdb.c:3587
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr "enlèvement de %s après la reconstruction réussie en db3.\n"
 
-#: rpmdb/rpmdb.c:3619
+#: rpmdb/rpmdb.c:3625
 msgid "no dbpath has been set"
 msgstr "aucun dbpath fourni"
 
-#: rpmdb/rpmdb.c:3651
+#: rpmdb/rpmdb.c:3657
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "reconstruction de la base de données de %s en %s\n"
 
-#: rpmdb/rpmdb.c:3655
+#: rpmdb/rpmdb.c:3661
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr "la base de données temporarire %s existe déjà\n"
 
-#: rpmdb/rpmdb.c:3661
+#: rpmdb/rpmdb.c:3667
 #, c-format
 msgid "creating directory %s\n"
 msgstr "création du répertoire %s\n"
 
-#: rpmdb/rpmdb.c:3663
+#: rpmdb/rpmdb.c:3669
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr "création du répertoire %s: %s\n"
 
-#: rpmdb/rpmdb.c:3670
+#: rpmdb/rpmdb.c:3676
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "ouverture d'une vieille base de données avec dbapi %d\n"
 
-#: rpmdb/rpmdb.c:3683
+#: rpmdb/rpmdb.c:3689
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "ouverture d'une nouvelle base de données avec dbapi %d\n"
 
-#: rpmdb/rpmdb.c:3712
+#: rpmdb/rpmdb.c:3718
 #, c-format
 msgid "header #%u in the database is bad -- skipping.\n"
 msgstr "l'entête nº%u dans la base de données n'est pas bon -- ignoré.\n"
 
-#: rpmdb/rpmdb.c:3752
+#: rpmdb/rpmdb.c:3758
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "impossible d'ajouter l'article qui était au départ à %u\n"
 
-#: rpmdb/rpmdb.c:3766
+#: rpmdb/rpmdb.c:3772
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 "Ne peut reconstruire la base de données: la base originale reste telle "
 "qu'elle est\n"
 
-#: rpmdb/rpmdb.c:3774
+#: rpmdb/rpmdb.c:3780
 msgid "failed to replace old database with new database!\n"
 msgstr "Ne peut remplacer la vieille base de données par la nouvelle!\n"
 
-#: rpmdb/rpmdb.c:3776
+#: rpmdb/rpmdb.c:3782
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 "remplacer les fichiers dans %s avec les fichiers de %s pour faire une "
 "récupération"
 
-#: rpmdb/rpmdb.c:3786
+#: rpmdb/rpmdb.c:3792
 #, c-format
 msgid "removing directory %s\n"
 msgstr "destruction du répertoire %s\n"
 
-#: rpmdb/rpmdb.c:3788
+#: rpmdb/rpmdb.c:3794
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "Ne peut détruire le répertoire %s: %s\n"
@@ -3589,42 +3625,42 @@ msgstr "La macro %%%s a un nom illégal (%%undefine)\n"
 msgid "Macro %%%s (%s) was not used below level %d\n"
 msgstr "La macro %%%s (%s) n'est plus utilisée en dessous du niveau %d\n"
 
-#: rpmio/macro.c:982
+#: rpmio/macro.c:984
 #, c-format
 msgid "Unknown option %c in %s(%s)\n"
 msgstr "Option inconnue %c dans %s(%s)\n"
 
-#: rpmio/macro.c:1182
+#: rpmio/macro.c:1184
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)\n"
 msgstr "Profondeur de récursion(%d) plus grande que le max(%d)\n"
 
-#: rpmio/macro.c:1252 rpmio/macro.c:1269
+#: rpmio/macro.c:1255 rpmio/macro.c:1272
 #, c-format
 msgid "Unterminated %c: %s\n"
 msgstr "%c non terminé: %s\n"
 
-#: rpmio/macro.c:1310
+#: rpmio/macro.c:1313
 #, c-format
 msgid "A %% is followed by an unparseable macro\n"
 msgstr "Un % est suivi d'une macro in-analysable\n"
 
-#: rpmio/macro.c:1439
+#: rpmio/macro.c:1442
 #, c-format
 msgid "Macro %%%.*s not found, skipping\n"
 msgstr "Macro %%%.*s non trouvé, ignoré\n"
 
-#: rpmio/macro.c:1510
+#: rpmio/macro.c:1513
 msgid "Target buffer overflow\n"
 msgstr "Tampon cible en surcharge\n"
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1705 rpmio/macro.c:1711
+#: rpmio/macro.c:1708 rpmio/macro.c:1714
 #, c-format
 msgid "File %s: %s\n"
 msgstr "Fichier %s: %s\n"
 
-#: rpmio/macro.c:1714
+#: rpmio/macro.c:1717
 #, c-format
 msgid "File %s is smaller than %u bytes\n"
 msgstr "Le fichier %s est plus petit que %u octets\n"
index aebec47..82fa6a0 100644 (file)
--- a/po/gl.po
+++ b/po/gl.po
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:11-0500\n"
+"POT-Creation-Date: 2003-12-30 08:11-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"
@@ -19,44 +19,44 @@ msgstr ""
 msgid "Unable to open spec file %s: %s\n"
 msgstr ""
 
-#: build.c:152 build.c:164
+#: build.c:150 build.c:162
 #, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr ""
 
 #. Give up
-#: build.c:171
+#: build.c:169
 #, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr ""
 
-#: build.c:199
+#: build.c:197
 #, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr ""
 
-#: build.c:239
+#: build.c:237
 #, c-format
 msgid "failed to stat %s: %m\n"
 msgstr ""
 
-#: build.c:244
+#: build.c:242
 #, c-format
 msgid "File %s is not a regular file.\n"
 msgstr ""
 
-#: build.c:253
+#: build.c:251
 #, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr ""
 
 #. parse up the build operators
-#: build.c:324
+#: build.c:322
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr ""
 
-#: build.c:339
+#: build.c:337
 #, c-format
 msgid "Building for target %s\n"
 msgstr ""
@@ -108,7 +108,7 @@ msgstr ""
 msgid "%s: %s\n"
 msgstr ""
 
-#: rpmqv.c:129 lib/poptALL.c:114
+#: rpmqv.c:129 lib/poptALL.c:119
 #, c-format
 msgid "RPM version %s\n"
 msgstr ""
@@ -404,166 +404,166 @@ msgstr ""
 msgid "syntax error in expression\n"
 msgstr ""
 
-#: build/files.c:278
+#: build/files.c:280
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr ""
 
-#: build/files.c:343 build/files.c:543 build/files.c:739
+#: build/files.c:345 build/files.c:545 build/files.c:741
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr ""
 
-#: build/files.c:354 build/files.c:673 build/files.c:750
+#: build/files.c:356 build/files.c:675 build/files.c:752
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr ""
 
-#: build/files.c:392 build/files.c:698
+#: build/files.c:394 build/files.c:700
 #, c-format
 msgid "Invalid %s token: %s\n"
 msgstr ""
 
-#: build/files.c:502
+#: build/files.c:504
 #, c-format
 msgid "Missing %s in %s %s\n"
 msgstr ""
 
-#: build/files.c:559
+#: build/files.c:561
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr ""
 
-#: build/files.c:597
+#: build/files.c:599
 #, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:607
+#: build/files.c:609
 #, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:619
+#: build/files.c:621
 #, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:777
+#: build/files.c:779
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr ""
 
 #. @innercontinue@
-#: build/files.c:788
+#: build/files.c:790
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr ""
 
-#: build/files.c:917
+#: build/files.c:919
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr ""
 
-#: build/files.c:925
+#: build/files.c:927
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr ""
 
 #. We already got a file -- error
-#: build/files.c:959
+#: build/files.c:961
 #, c-format
 msgid "Two files on one line: %s\n"
 msgstr ""
 
-#: build/files.c:976
+#: build/files.c:978
 #, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:989
+#: build/files.c:991
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr ""
 
-#: build/files.c:1141
+#: build/files.c:1149
 #, c-format
 msgid "File listed twice: %s\n"
 msgstr ""
 
-#: build/files.c:1280
+#: build/files.c:1288
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1520
+#: build/files.c:1535
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1544
+#: build/files.c:1559
 #, c-format
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1752
+#: build/files.c:1767
 #, c-format
 msgid "%s: public key read failed.\n"
 msgstr ""
 
-#: build/files.c:1756 lib/rpmchecksig.c:580
+#: build/files.c:1771 lib/rpmchecksig.c:580
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: build/files.c:1804
+#: build/files.c:1819
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1828
+#: build/files.c:1843
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1845 lib/rpminstall.c:347
+#: build/files.c:1860 lib/rpminstall.c:361
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1905
+#: build/files.c:1920
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1916 build/pack.c:156
+#: build/files.c:1931 build/pack.c:156
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2307
+#: build/files.c:2323
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
-#: build/files.c:2319 build/parsePrep.c:50
+#: build/files.c:2335 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:2363
+#: build/files.c:2379
 #, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr ""
 
-#: build/files.c:2386
+#: build/files.c:2402
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
 "%s"
 msgstr ""
 
-#: build/files.c:2414
+#: build/files.c:2430
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -702,7 +702,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:632 lib/psm.c:1427
+#: build/pack.c:632 lib/psm.c:1420
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -732,7 +732,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:725 lib/psm.c:1725
+#: build/pack.c:725 lib/psm.c:1689
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1212,18 +1212,18 @@ msgstr ""
 msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
 msgstr ""
 
-#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329
-#: lib/poptQV.c:338 lib/poptQV.c:377
+#: build/poptBT.c:229 lib/poptALL.c:240 lib/poptI.c:261 lib/poptQV.c:335
+#: lib/poptQV.c:344 lib/poptQV.c:383
 msgid "don't verify package digest(s)"
 msgstr ""
 
-#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332
-#: lib/poptQV.c:340 lib/poptQV.c:380
+#: build/poptBT.c:231 lib/poptALL.c:242 lib/poptI.c:263 lib/poptQV.c:338
+#: lib/poptQV.c:346 lib/poptQV.c:386
 msgid "don't verify database header(s) when retrieved"
 msgstr ""
 
-#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335
-#: lib/poptQV.c:342 lib/poptQV.c:382
+#: build/poptBT.c:233 lib/poptALL.c:248 lib/poptI.c:265 lib/poptQV.c:341
+#: lib/poptQV.c:348 lib/poptQV.c:388
 msgid "don't verify package signature(s)"
 msgstr ""
 
@@ -1293,31 +1293,31 @@ msgstr ""
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:232
+#: lib/cpio.c:233
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:233
+#: lib/cpio.c:234
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:234
+#: lib/cpio.c:235
 msgid "Missing hard link(s)"
 msgstr ""
 
-#: lib/cpio.c:235
+#: lib/cpio.c:236
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:236
+#: lib/cpio.c:237
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:237
+#: lib/cpio.c:238
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:250
+#: lib/cpio.c:251
 msgid " failed - "
 msgstr ""
 
@@ -1446,46 +1446,56 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:350
+#: lib/fsm.c:352
 msgid "========== Directories not explicitly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:352
+#: lib/fsm.c:354
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1293
+#: lib/fsm.c:768
+#, c-format
+msgid "user %s does not exist - using root\n"
+msgstr ""
+
+#: lib/fsm.c:776
+#, c-format
+msgid "group %s does not exist - using root\n"
+msgstr ""
+
+#: lib/fsm.c:1334
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1592
+#: lib/fsm.c:1633
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1719 lib/fsm.c:1855
+#: lib/fsm.c:1760 lib/fsm.c:1896
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1882
+#: lib/fsm.c:1923
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1888
+#: lib/fsm.c:1929
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1903
+#: lib/fsm.c:1944
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1925
+#: lib/fsm.c:1966
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -1601,108 +1611,108 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/poptALL.c:222
+#: lib/poptALL.c:227
 msgid "predefine MACRO with value EXPR"
 msgstr ""
 
-#: lib/poptALL.c:223 lib/poptALL.c:226
+#: lib/poptALL.c:228 lib/poptALL.c:231
 msgid "'MACRO EXPR'"
 msgstr ""
 
-#: lib/poptALL.c:225
+#: lib/poptALL.c:230
 msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: lib/poptALL.c:228
+#: lib/poptALL.c:233
 msgid "print macro expansion of EXPR"
 msgstr ""
 
-#: lib/poptALL.c:229
+#: lib/poptALL.c:234
 msgid "'EXPR'"
 msgstr ""
 
-#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254
+#: lib/poptALL.c:236 lib/poptALL.c:255 lib/poptALL.c:259
 msgid "read <FILE:...> instead of default file(s)"
 msgstr ""
 
-#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255
+#: lib/poptALL.c:237 lib/poptALL.c:256 lib/poptALL.c:260
 msgid "<FILE:...>"
 msgstr ""
 
-#: lib/poptALL.c:240 lib/poptALL.c:274
+#: lib/poptALL.c:245 lib/poptALL.c:279
 msgid "disable use of libio(3) API"
 msgstr ""
 
-#: lib/poptALL.c:246
+#: lib/poptALL.c:251
 msgid "send stdout to CMD"
 msgstr ""
 
-#: lib/poptALL.c:247
+#: lib/poptALL.c:252
 msgid "CMD"
 msgstr ""
 
-#: lib/poptALL.c:258
+#: lib/poptALL.c:263
 msgid "use ROOT as top level directory"
 msgstr ""
 
-#: lib/poptALL.c:259
+#: lib/poptALL.c:264
 msgid "ROOT"
 msgstr ""
 
-#: lib/poptALL.c:262
+#: lib/poptALL.c:267
 msgid "display known query tags"
 msgstr ""
 
-#: lib/poptALL.c:264
+#: lib/poptALL.c:269
 msgid "display final rpmrc and macro configuration"
 msgstr ""
 
-#: lib/poptALL.c:266
+#: lib/poptALL.c:271
 msgid "provide less detailed output"
 msgstr ""
 
-#: lib/poptALL.c:268
+#: lib/poptALL.c:273
 msgid "provide more detailed output"
 msgstr ""
 
-#: lib/poptALL.c:270
+#: lib/poptALL.c:275
 msgid "print the version of rpm being used"
 msgstr ""
 
-#: lib/poptALL.c:283
+#: lib/poptALL.c:288
 msgid "debug payload file state machine"
 msgstr ""
 
-#: lib/poptALL.c:285
+#: lib/poptALL.c:290
 msgid "use threads for file state machine"
 msgstr ""
 
-#: lib/poptALL.c:287
+#: lib/poptALL.c:292
 msgid "debug protocol data stream"
 msgstr ""
 
-#: lib/poptALL.c:292
+#: lib/poptALL.c:297
 msgid "debug option/argument processing"
 msgstr ""
 
-#: lib/poptALL.c:297
+#: lib/poptALL.c:302
 msgid "debug package state machine"
 msgstr ""
 
-#: lib/poptALL.c:299
+#: lib/poptALL.c:304
 msgid "use threads for package state machine"
 msgstr ""
 
-#: lib/poptALL.c:311
+#: lib/poptALL.c:316
 msgid "debug rpmio I/O"
 msgstr ""
 
-#: lib/poptALL.c:323
+#: lib/poptALL.c:330
 msgid "debug URL cache handling"
 msgstr ""
 
 #. @-nullpass@
-#: lib/poptALL.c:393
+#: lib/poptALL.c:400
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1731,211 +1741,215 @@ msgstr ""
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:151
+#: lib/poptI.c:155
 msgid "add suggested packages to transaction"
 msgstr ""
 
-#: lib/poptI.c:155
+#: lib/poptI.c:159
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: lib/poptI.c:159
+#: lib/poptI.c:163
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: lib/poptI.c:164 tools/rpmgraph.c:273
+#: lib/poptI.c:168 tools/rpmgraph.c:273
 msgid "use anaconda \"presentation order\""
 msgstr ""
 
-#: lib/poptI.c:169 lib/poptI.c:238
+#: lib/poptI.c:173 lib/poptI.c:245
 msgid "do not execute package scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:173
-msgid "relocate files in non-relocateable package"
+#: lib/poptI.c:177
+msgid "relocate files in non-relocatable package"
 msgstr ""
 
-#: lib/poptI.c:176
+#: lib/poptI.c:180
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 msgid "<package>+"
 msgstr ""
 
-#: lib/poptI.c:182 lib/poptI.c:219
+#: lib/poptI.c:186 lib/poptI.c:223
 msgid "do not install configuration files"
 msgstr ""
 
-#: lib/poptI.c:185 lib/poptI.c:224
+#: lib/poptI.c:189 lib/poptI.c:228
 msgid "do not install documentation"
 msgstr ""
 
-#: lib/poptI.c:187
+#: lib/poptI.c:191
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:188
+#: lib/poptI.c:192
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:191
+#: lib/poptI.c:195
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: lib/poptI.c:195
+#: lib/poptI.c:199
 msgid "upgrade package(s) if already installed"
 msgstr ""
 
-#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
+#: lib/poptI.c:200 lib/poptI.c:216 lib/poptI.c:312
 msgid "<packagefile>+"
 msgstr ""
 
-#: lib/poptI.c:198
+#: lib/poptI.c:202
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: lib/poptI.c:201
+#: lib/poptI.c:205
 msgid "don't verify package architecture"
 msgstr ""
 
-#: lib/poptI.c:204
+#: lib/poptI.c:208
 msgid "don't verify package operating system"
 msgstr ""
 
-#: lib/poptI.c:207
+#: lib/poptI.c:211
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:209
+#: lib/poptI.c:213
 msgid "install documentation"
 msgstr ""
 
-#: lib/poptI.c:212
+#: lib/poptI.c:216
 msgid "install package(s)"
 msgstr ""
 
-#: lib/poptI.c:215
+#: lib/poptI.c:219
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: lib/poptI.c:221
+#: lib/poptI.c:225
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:231 lib/poptQV.c:279 lib/poptQV.c:282
 msgid "don't verify MD5 digest of files"
 msgstr ""
 
-#: lib/poptI.c:230
+#: lib/poptI.c:233
+msgid "don't install file security contexts"
+msgstr ""
+
+#: lib/poptI.c:237
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: lib/poptI.c:235
+#: lib/poptI.c:242
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:242
+#: lib/poptI.c:249
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:245
+#: lib/poptI.c:252
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:248
+#: lib/poptI.c:255
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:251
+#: lib/poptI.c:258
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:261
+#: lib/poptI.c:268
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 
-#: lib/poptI.c:264
+#: lib/poptI.c:271
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:267
+#: lib/poptI.c:274
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:270
+#: lib/poptI.c:277
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:273
+#: lib/poptI.c:280
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:277
+#: lib/poptI.c:284
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 
-#: lib/poptI.c:281
+#: lib/poptI.c:288
 msgid "print percentages as package installs"
 msgstr ""
 
-#: lib/poptI.c:283
+#: lib/poptI.c:290
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: lib/poptI.c:284
+#: lib/poptI.c:291
 msgid "<dir>"
 msgstr ""
 
-#: lib/poptI.c:286
+#: lib/poptI.c:293
 msgid "relocate files from path <old> to <new>"
 msgstr ""
 
-#: lib/poptI.c:287
+#: lib/poptI.c:294
 msgid "<old>=<new>"
 msgstr ""
 
-#: lib/poptI.c:290
+#: lib/poptI.c:297
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:293
+#: lib/poptI.c:300
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: lib/poptI.c:296
+#: lib/poptI.c:303
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: lib/poptI.c:298
+#: lib/poptI.c:305
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:299
+#: lib/poptI.c:306
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:301
+#: lib/poptI.c:308
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
-#: lib/poptI.c:304
+#: lib/poptI.c:311
 msgid "upgrade package(s)"
 msgstr ""
 
@@ -2007,195 +2021,189 @@ msgstr ""
 msgid "query/verify the package(s) which provide a dependency"
 msgstr ""
 
-#: lib/poptQV.c:226
+#: lib/poptQV.c:230
 msgid "list all configuration files"
 msgstr ""
 
-#: lib/poptQV.c:228
+#: lib/poptQV.c:232
 msgid "list all documentation files"
 msgstr ""
 
-#: lib/poptQV.c:230
+#: lib/poptQV.c:234
 msgid "dump basic file information"
 msgstr ""
 
-#: lib/poptQV.c:234
+#: lib/poptQV.c:238
 msgid "list files in package"
 msgstr ""
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:243
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:243
+#: lib/poptQV.c:247
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
-#: lib/poptQV.c:246
+#: lib/poptQV.c:250
 #, c-format
 msgid "skip %%readme files"
 msgstr ""
 
-#: lib/poptQV.c:252
+#: lib/poptQV.c:256
 msgid "use the following query format"
 msgstr ""
 
-#: lib/poptQV.c:254
+#: lib/poptQV.c:258
 msgid "substitute i18n sections into spec file"
 msgstr ""
 
-#: lib/poptQV.c:256
+#: lib/poptQV.c:260
 msgid "display the states of the listed files"
 msgstr ""
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:286
 msgid "don't verify size of files"
 msgstr ""
 
-#: lib/poptQV.c:285
+#: lib/poptQV.c:289
 msgid "don't verify symlink path of files"
 msgstr ""
 
-#: lib/poptQV.c:288
+#: lib/poptQV.c:292
 msgid "don't verify owner of files"
 msgstr ""
 
-#: lib/poptQV.c:291
+#: lib/poptQV.c:295
 msgid "don't verify group of files"
 msgstr ""
 
-#: lib/poptQV.c:294
+#: lib/poptQV.c:298
 msgid "don't verify modification time of files"
 msgstr ""
 
-#: lib/poptQV.c:297 lib/poptQV.c:300
+#: lib/poptQV.c:301 lib/poptQV.c:304
 msgid "don't verify mode of files"
 msgstr ""
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:307
+msgid "don't verify file security contexts"
+msgstr ""
+
+#: lib/poptQV.c:309
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
+#: lib/poptQV.c:312 lib/poptQV.c:315 tools/rpmgraph.c:267
 msgid "don't verify package dependencies"
 msgstr ""
 
-#: lib/poptQV.c:314 lib/poptQV.c:318 lib/poptQV.c:321 lib/poptQV.c:324
+#: lib/poptQV.c:320 lib/poptQV.c:324 lib/poptQV.c:327 lib/poptQV.c:330
 msgid "don't execute verify script(s)"
 msgstr ""
 
-#: lib/poptQV.c:348
+#: lib/poptQV.c:354
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:351
+#: lib/poptQV.c:357
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:366
+#: lib/poptQV.c:372
 msgid "sign package(s) (identical to --resign)"
 msgstr ""
 
-#: lib/poptQV.c:368
+#: lib/poptQV.c:374
 msgid "verify package signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:370
+#: lib/poptQV.c:376
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:372
+#: lib/poptQV.c:378
 msgid "sign package(s) (identical to --addsign)"
 msgstr ""
 
-#: lib/poptQV.c:374
+#: lib/poptQV.c:380
 msgid "generate signature"
 msgstr ""
 
-#: lib/psm.c:269
+#: lib/psm.c:268
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:394
+#: lib/psm.c:386
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:480
+#: lib/psm.c:472
 #, c-format
 msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
 msgstr ""
 
-#: lib/psm.c:562
+#: lib/psm.c:554
 #, c-format
 msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
 msgstr ""
 
-#: lib/psm.c:570
+#: lib/psm.c:562
 #, c-format
 msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
 msgstr ""
 
-#: lib/psm.c:735
+#: lib/psm.c:730
 #, c-format
 msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
 msgstr ""
 
-#: lib/psm.c:756
+#: lib/psm.c:751
 #, c-format
 msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
 msgstr ""
 
-#: lib/psm.c:762
+#: lib/psm.c:757
 #, c-format
 msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1191
+#: lib/psm.c:1188
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1330
+#: lib/psm.c:1323
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1439
+#: lib/psm.c:1432
 msgid "Unable to reload signature header\n"
 msgstr ""
 
-#: lib/psm.c:1485
-#, c-format
-msgid "user %s does not exist - using root\n"
-msgstr ""
-
-#: lib/psm.c:1494
-#, c-format
-msgid "group %s does not exist - using root\n"
-msgstr ""
-
-#: lib/psm.c:1546
+#: lib/psm.c:1510
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1547
+#: lib/psm.c:1511
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1733
+#: lib/psm.c:1697
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1736
+#: lib/psm.c:1700
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:118 lib/rpmts.c:565
+#: lib/query.c:118 lib/rpmts.c:566
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
@@ -2242,8 +2250,8 @@ msgstr ""
 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:462
-#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576
+#: 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
 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157
 #, c-format
 msgid "open of %s failed: %s\n"
@@ -2258,7 +2266,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:488 lib/rpminstall.c:608
+#: lib/query.c:488 lib/rpminstall.c:622
 #, c-format
 msgid "%s: not an rpm package (or package manifest): %s\n"
 msgstr ""
@@ -2327,16 +2335,16 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:766 lib/rpminstall.c:778
+#: lib/query.c:766 lib/rpminstall.c:792
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:692
+#: lib/rpmal.c:694
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:772
 msgid "(added provide)"
 msgstr ""
 
@@ -2459,36 +2467,36 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:546
+#: lib/rpmfi.c:561
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/rpmfi.c:784
+#: lib/rpmfi.c:799
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:788
+#: lib/rpmfi.c:803
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:791
+#: lib/rpmfi.c:806
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:919
+#: lib/rpmfi.c:934
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:929
+#: lib/rpmfi.c:944
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:1021
+#: lib/rpmfi.c:1036
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
@@ -2517,87 +2525,87 @@ msgstr ""
 msgid "Upgrading packages..."
 msgstr ""
 
-#: lib/rpminstall.c:394
+#: lib/rpminstall.c:408
 #, c-format
 msgid "Adding goal: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:409
+#: lib/rpminstall.c:423
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:436
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:426
+#: lib/rpminstall.c:440
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:481 lib/rpminstall.c:872 tools/rpmgraph.c:140
+#: lib/rpminstall.c:495 lib/rpminstall.c:886 tools/rpmgraph.c:140
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:523
+#: lib/rpminstall.c:537
 #, c-format
-msgid "package %s is not relocateable\n"
+msgid "package %s is not relocatable\n"
 msgstr ""
 
-#: lib/rpminstall.c:573
+#: lib/rpminstall.c:587
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:593
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:637
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:637 lib/rpminstall.c:810 lib/rpminstall.c:1239
+#: lib/rpminstall.c:651 lib/rpminstall.c:824 lib/rpminstall.c:1253
 #: tools/rpmgraph.c:195
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:644 tools/rpmgraph.c:201
+#: lib/rpminstall.c:658 tools/rpmgraph.c:201
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:688
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:712
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:787
+#: lib/rpminstall.c:801
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:856
+#: lib/rpminstall.c:870
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:862
+#: lib/rpminstall.c:876
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1233
+#: lib/rpminstall.c:1247
 #, c-format
 msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
 msgstr ""
@@ -2665,7 +2673,7 @@ msgstr ""
 
 #: lib/rpmps.c:223
 #, c-format
-msgid "path %s in package %s is not relocateable"
+msgid "path %s in package %s is not relocatable"
 msgstr ""
 
 #: lib/rpmps.c:228
@@ -2812,50 +2820,75 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
 
-#: lib/rpmts.c:162
+#: lib/rpmsx.c:343
+#, c-format
+msgid "%s:  no newline on line number %d (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:360
+#, c-format
+msgid "%s:  line number %d is missing fields (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:391
+#, 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
+#, c-format
+msgid "%s:  invalid type specifier %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmsx.c:434
+#, c-format
+msgid "%s:  invalid context %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmts.c:163
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/rpmts.c:252
+#: lib/rpmts.c:253
 #, c-format
 msgid "extra '(' in package label: %s\n"
 msgstr ""
 
-#: lib/rpmts.c:270
+#: lib/rpmts.c:271
 #, c-format
 msgid "missing '(' in package label: %s\n"
 msgstr ""
 
-#: lib/rpmts.c:278
+#: lib/rpmts.c:279
 #, c-format
 msgid "missing ')' in package label: %s\n"
 msgstr ""
 
-#: lib/rpmts.c:455
+#: lib/rpmts.c:456
 #, c-format
 msgid "cannot open Solve database in %s\n"
 msgstr ""
 
-#: lib/rpmts.c:597
+#: lib/rpmts.c:598
 #, c-format
 msgid "Adding: %s\n"
 msgstr ""
 
-#: lib/rpmts.c:609
+#: lib/rpmts.c:610
 #, c-format
 msgid "Suggesting: %s\n"
 msgstr ""
 
-#: lib/rpmts.c:1077
+#: lib/rpmts.c:1097
 msgid "mounted filesystems:\n"
 msgstr ""
 
-#: lib/rpmts.c:1079
+#: lib/rpmts.c:1099
 msgid "    i    dev bsize       bavail       iavail mount point\n"
 msgstr ""
 
-#: lib/rpmts.c:1135
+#: lib/rpmts.c:1155
 #, c-format
 msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
 msgstr ""
@@ -3058,12 +3091,12 @@ msgstr ""
 msgid "computing file dispositions\n"
 msgstr ""
 
-#: lib/verify.c:288
+#: lib/verify.c:319
 #, c-format
 msgid "missing  %c %s"
 msgstr ""
 
-#: lib/verify.c:397
+#: lib/verify.c:433
 #, c-format
 msgid "Unsatisfied dependencies for %s: "
 msgstr ""
@@ -3261,161 +3294,161 @@ msgstr ""
 msgid "cannot open %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:915
+#: rpmdb/rpmdb.c:917
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1193 rpmdb/rpmdb.c:1322 rpmdb/rpmdb.c:1373 rpmdb/rpmdb.c:2316
-#: rpmdb/rpmdb.c:2432 rpmdb/rpmdb.c:3161
+#: rpmdb/rpmdb.c:1195 rpmdb/rpmdb.c:1324 rpmdb/rpmdb.c:1375 rpmdb/rpmdb.c:2322
+#: rpmdb/rpmdb.c:2438 rpmdb/rpmdb.c:3167
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1567
+#: rpmdb/rpmdb.c:1569
 msgid "miFreeHeader: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1577
+#: rpmdb/rpmdb.c:1579
 #, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2209
+#: rpmdb/rpmdb.c:2212
 msgid "rpmdbNextIterator: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2242
 #, c-format
 msgid "rpmdb: damaged header #%u retrieved -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2520
+#: rpmdb/rpmdb.c:2526
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2583
+#: rpmdb/rpmdb.c:2589
 #, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2698
+#: rpmdb/rpmdb.c:2704
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2702
+#: rpmdb/rpmdb.c:2708
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2730
+#: rpmdb/rpmdb.c:2736
 #, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2751
+#: rpmdb/rpmdb.c:2757
 #, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2761
+#: rpmdb/rpmdb.c:2767
 #, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2910
+#: rpmdb/rpmdb.c:2916
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2964
+#: rpmdb/rpmdb.c:2970
 msgid "rpmdbAdd: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3136
+#: rpmdb/rpmdb.c:3142
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3140
+#: rpmdb/rpmdb.c:3146
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3180
+#: rpmdb/rpmdb.c:3186
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3581
+#: rpmdb/rpmdb.c:3587
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3619
+#: rpmdb/rpmdb.c:3625
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3651
+#: rpmdb/rpmdb.c:3657
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3655
+#: rpmdb/rpmdb.c:3661
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3661
+#: rpmdb/rpmdb.c:3667
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3663
+#: rpmdb/rpmdb.c:3669
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3670
+#: rpmdb/rpmdb.c:3676
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3683
+#: rpmdb/rpmdb.c:3689
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3712
+#: rpmdb/rpmdb.c:3718
 #, c-format
 msgid "header #%u in the database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3752
+#: rpmdb/rpmdb.c:3758
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3766
+#: rpmdb/rpmdb.c:3772
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3774
+#: rpmdb/rpmdb.c:3780
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3776
+#: rpmdb/rpmdb.c:3782
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3786
+#: rpmdb/rpmdb.c:3792
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3788
+#: rpmdb/rpmdb.c:3794
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
@@ -3471,42 +3504,42 @@ msgstr ""
 msgid "Macro %%%s (%s) was not used below level %d\n"
 msgstr ""
 
-#: rpmio/macro.c:982
+#: rpmio/macro.c:984
 #, c-format
 msgid "Unknown option %c in %s(%s)\n"
 msgstr ""
 
-#: rpmio/macro.c:1182
+#: rpmio/macro.c:1184
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)\n"
 msgstr ""
 
-#: rpmio/macro.c:1252 rpmio/macro.c:1269
+#: rpmio/macro.c:1255 rpmio/macro.c:1272
 #, c-format
 msgid "Unterminated %c: %s\n"
 msgstr ""
 
-#: rpmio/macro.c:1310
+#: rpmio/macro.c:1313
 #, c-format
 msgid "A %% is followed by an unparseable macro\n"
 msgstr ""
 
-#: rpmio/macro.c:1439
+#: rpmio/macro.c:1442
 #, c-format
 msgid "Macro %%%.*s not found, skipping\n"
 msgstr ""
 
-#: rpmio/macro.c:1510
+#: rpmio/macro.c:1513
 msgid "Target buffer overflow\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1705 rpmio/macro.c:1711
+#: rpmio/macro.c:1708 rpmio/macro.c:1714
 #, c-format
 msgid "File %s: %s\n"
 msgstr ""
 
-#: rpmio/macro.c:1714
+#: rpmio/macro.c:1717
 #, c-format
 msgid "File %s is smaller than %u bytes\n"
 msgstr ""
index 140e79a..7468ca4 100644 (file)
--- a/po/is.po
+++ b/po/is.po
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:11-0500\n"
+"POT-Creation-Date: 2003-12-30 08:11-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"
@@ -20,44 +20,44 @@ msgstr "gat ekki 
 msgid "Unable to open spec file %s: %s\n"
 msgstr "Get ekki opnað spec skrána %s: %s\n"
 
-#: build.c:152 build.c:164
+#: build.c:150 build.c:162
 #, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr "Gat ekki opnað pípu í tar: %m\n"
 
 #. Give up
-#: build.c:171
+#: build.c:169
 #, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "Gat ekki lesið spec skrá frá %s\n"
 
-#: build.c:199
+#: build.c:197
 #, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr "Gat ekki endurnefnt %s sem %s: %m\n"
 
-#: build.c:239
+#: build.c:237
 #, c-format
 msgid "failed to stat %s: %m\n"
 msgstr "gat ekki skoðað %s: %m\n"
 
-#: build.c:244
+#: build.c:242
 #, c-format
 msgid "File %s is not a regular file.\n"
 msgstr "Skráin %s er ekki venjuleg skrá.\n"
 
-#: build.c:253
+#: build.c:251
 #, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr "Skráin %s virðist ekki vera specskrá.\n"
 
 #. parse up the build operators
-#: build.c:324
+#: build.c:322
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr "Þýði fyrir markkerfi: %s\n"
 
-#: build.c:339
+#: build.c:337
 #, c-format
 msgid "Building for target %s\n"
 msgstr "Þýði fyrir markkerfi %s\n"
@@ -109,7 +109,7 @@ msgstr ""
 msgid "%s: %s\n"
 msgstr "%s: %s\n"
 
-#: rpmqv.c:129 lib/poptALL.c:114
+#: rpmqv.c:129 lib/poptALL.c:119
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM útgáfa %s\n"
@@ -407,166 +407,166 @@ msgstr ""
 msgid "syntax error in expression\n"
 msgstr ""
 
-#: build/files.c:278
+#: build/files.c:280
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr ""
 
-#: build/files.c:343 build/files.c:543 build/files.c:739
+#: build/files.c:345 build/files.c:545 build/files.c:741
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "vantar '(' í  %s %s\n"
 
-#: build/files.c:354 build/files.c:673 build/files.c:750
+#: build/files.c:356 build/files.c:675 build/files.c:752
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "vantar ')' í %s %s\n"
 
-#: build/files.c:392 build/files.c:698
+#: build/files.c:394 build/files.c:700
 #, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "Ógilt %s tákn: %s\n"
 
-#: build/files.c:502
+#: build/files.c:504
 #, fuzzy, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "vantar '(' í  %s %s\n"
 
-#: build/files.c:559
+#: build/files.c:561
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr ""
 
-#: build/files.c:597
+#: build/files.c:599
 #, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:607
+#: build/files.c:609
 #, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:619
+#: build/files.c:621
 #, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:777
+#: build/files.c:779
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr ""
 
 #. @innercontinue@
-#: build/files.c:788
+#: build/files.c:790
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr ""
 
-#: build/files.c:917
+#: build/files.c:919
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr ""
 
-#: build/files.c:925
+#: build/files.c:927
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr ""
 
 #. We already got a file -- error
-#: build/files.c:959
+#: build/files.c:961
 #, c-format
 msgid "Two files on one line: %s\n"
 msgstr "Tvær skrár á einni línu: %s\n"
 
-#: build/files.c:976
+#: build/files.c:978
 #, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:989
+#: build/files.c:991
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr ""
 
-#: build/files.c:1141
+#: build/files.c:1149
 #, c-format
 msgid "File listed twice: %s\n"
 msgstr "Skráin er tvítekin: %s\n"
 
-#: build/files.c:1280
+#: build/files.c:1288
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1520
+#: build/files.c:1535
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1544
+#: build/files.c:1559
 #, c-format
 msgid "File not found: %s\n"
 msgstr "Skráin fannst ekki: %s\n"
 
-#: build/files.c:1752
+#: build/files.c:1767
 #, fuzzy, c-format
 msgid "%s: public key read failed.\n"
 msgstr "%s: Fseek brást: %s\n"
 
-#: build/files.c:1756 lib/rpmchecksig.c:580
+#: build/files.c:1771 lib/rpmchecksig.c:580
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: build/files.c:1804
+#: build/files.c:1819
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1828
+#: build/files.c:1843
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "Gat ekki opnað PreUn skrá: %s\n"
 
-#: build/files.c:1845 lib/rpminstall.c:347
+#: build/files.c:1860 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:1905
+#: build/files.c:1920
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Gat ekki opnað %%files skrána %s: %s\n"
 
-#: build/files.c:1916 build/pack.c:156
+#: build/files.c:1931 build/pack.c:156
 #, c-format
 msgid "line: %s\n"
 msgstr "lína: %s\n"
 
-#: build/files.c:2307
+#: build/files.c:2323
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "Ógild skrá %s: %s\n"
 
-#: build/files.c:2319 build/parsePrep.c:50
+#: build/files.c:2335 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:2363
+#: build/files.c:2379
 #, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr ""
 
-#: build/files.c:2386
+#: build/files.c:2402
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
 "%s"
 msgstr ""
 
-#: build/files.c:2414
+#: build/files.c:2430
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -709,7 +709,7 @@ msgstr "Get ekki lesi
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:632 lib/psm.c:1427
+#: build/pack.c:632 lib/psm.c:1420
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Get ekki ritað í pakka: %s\n"
@@ -739,7 +739,7 @@ msgstr "Get ekki lesi
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Get ekki ritað innihald í %s: %s\n"
 
-#: build/pack.c:725 lib/psm.c:1725
+#: build/pack.c:725 lib/psm.c:1689
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Skrifaði: %s\n"
@@ -1220,20 +1220,20 @@ msgstr "ekki sko
 msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
 msgstr ""
 
-#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329
-#: lib/poptQV.c:338 lib/poptQV.c:377
+#: build/poptBT.c:229 lib/poptALL.c:240 lib/poptI.c:261 lib/poptQV.c:335
+#: lib/poptQV.c:344 lib/poptQV.c:383
 #, fuzzy
 msgid "don't verify package digest(s)"
 msgstr "ekki skoða pakkaskilyrðin"
 
-#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332
-#: lib/poptQV.c:340 lib/poptQV.c:380
+#: build/poptBT.c:231 lib/poptALL.c:242 lib/poptI.c:263 lib/poptQV.c:338
+#: lib/poptQV.c:346 lib/poptQV.c:386
 #, fuzzy
 msgid "don't verify database header(s) when retrieved"
 msgstr "ekki skoða pakkaskilyrðin"
 
-#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335
-#: lib/poptQV.c:342 lib/poptQV.c:382
+#: build/poptBT.c:233 lib/poptALL.c:248 lib/poptI.c:265 lib/poptQV.c:341
+#: lib/poptQV.c:348 lib/poptQV.c:388
 #, fuzzy
 msgid "don't verify package signature(s)"
 msgstr "ekki skoða pakkaskilyrðin"
@@ -1304,31 +1304,31 @@ msgstr ""
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:232
+#: lib/cpio.c:233
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:233
+#: lib/cpio.c:234
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:234
+#: lib/cpio.c:235
 msgid "Missing hard link(s)"
 msgstr "Harðar tengingar vantar"
 
-#: lib/cpio.c:235
+#: lib/cpio.c:236
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:236
+#: lib/cpio.c:237
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:237
+#: lib/cpio.c:238
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:250
+#: lib/cpio.c:251
 msgid " failed - "
 msgstr ""
 
@@ -1459,46 +1459,56 @@ msgstr "Skr
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:350
+#: lib/fsm.c:352
 msgid "========== Directories not explicitly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:352
+#: lib/fsm.c:354
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1293
+#: lib/fsm.c:768
+#, c-format
+msgid "user %s does not exist - using root\n"
+msgstr ""
+
+#: lib/fsm.c:776
+#, c-format
+msgid "group %s does not exist - using root\n"
+msgstr ""
+
+#: lib/fsm.c:1334
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1592
+#: lib/fsm.c:1633
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1719 lib/fsm.c:1855
+#: lib/fsm.c:1760 lib/fsm.c:1896
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s vistað sem %s\n"
 
-#: lib/fsm.c:1882
+#: lib/fsm.c:1923
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1888
+#: lib/fsm.c:1929
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s rmdir %s brást: %s\n"
 
-#: lib/fsm.c:1903
+#: lib/fsm.c:1944
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s gat ekki eytt %s: %s\n"
 
-#: lib/fsm.c:1925
+#: lib/fsm.c:1966
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s búið til sem %s\n"
@@ -1614,110 +1624,110 @@ msgstr "%s: Fseek br
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/poptALL.c:222
+#: lib/poptALL.c:227
 msgid "predefine MACRO with value EXPR"
 msgstr ""
 
-#: lib/poptALL.c:223 lib/poptALL.c:226
+#: lib/poptALL.c:228 lib/poptALL.c:231
 msgid "'MACRO EXPR'"
 msgstr ""
 
-#: lib/poptALL.c:225
+#: lib/poptALL.c:230
 msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: lib/poptALL.c:228
+#: lib/poptALL.c:233
 #, fuzzy
 msgid "print macro expansion of EXPR"
 msgstr "prenta útvíkkun fjölva <expr>+"
 
-#: lib/poptALL.c:229
+#: lib/poptALL.c:234
 msgid "'EXPR'"
 msgstr ""
 
-#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254
+#: lib/poptALL.c:236 lib/poptALL.c:255 lib/poptALL.c:259
 msgid "read <FILE:...> instead of default file(s)"
 msgstr ""
 
-#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255
+#: lib/poptALL.c:237 lib/poptALL.c:256 lib/poptALL.c:260
 msgid "<FILE:...>"
 msgstr ""
 
-#: lib/poptALL.c:240 lib/poptALL.c:274
+#: lib/poptALL.c:245 lib/poptALL.c:279
 msgid "disable use of libio(3) API"
 msgstr ""
 
-#: lib/poptALL.c:246
+#: lib/poptALL.c:251
 #, fuzzy
 msgid "send stdout to CMD"
 msgstr "senda frálag í <skipun>"
 
-#: lib/poptALL.c:247
+#: lib/poptALL.c:252
 msgid "CMD"
 msgstr ""
 
-#: lib/poptALL.c:258
+#: lib/poptALL.c:263
 msgid "use ROOT as top level directory"
 msgstr ""
 
-#: lib/poptALL.c:259
+#: lib/poptALL.c:264
 msgid "ROOT"
 msgstr ""
 
-#: lib/poptALL.c:262
+#: lib/poptALL.c:267
 msgid "display known query tags"
 msgstr ""
 
-#: lib/poptALL.c:264
+#: lib/poptALL.c:269
 msgid "display final rpmrc and macro configuration"
 msgstr "sýna endanlega rpmrc og stillingar fjölva"
 
-#: lib/poptALL.c:266
+#: lib/poptALL.c:271
 msgid "provide less detailed output"
 msgstr ""
 
-#: lib/poptALL.c:268
+#: lib/poptALL.c:273
 msgid "provide more detailed output"
 msgstr ""
 
-#: lib/poptALL.c:270
+#: lib/poptALL.c:275
 msgid "print the version of rpm being used"
 msgstr "prenta útgáfunúmer rpm sem verið er að nota"
 
-#: lib/poptALL.c:283
+#: lib/poptALL.c:288
 msgid "debug payload file state machine"
 msgstr ""
 
-#: lib/poptALL.c:285
+#: lib/poptALL.c:290
 msgid "use threads for file state machine"
 msgstr ""
 
-#: lib/poptALL.c:287
+#: lib/poptALL.c:292
 msgid "debug protocol data stream"
 msgstr ""
 
-#: lib/poptALL.c:292
+#: lib/poptALL.c:297
 msgid "debug option/argument processing"
 msgstr ""
 
-#: lib/poptALL.c:297
+#: lib/poptALL.c:302
 msgid "debug package state machine"
 msgstr ""
 
-#: lib/poptALL.c:299
+#: lib/poptALL.c:304
 msgid "use threads for package state machine"
 msgstr ""
 
-#: lib/poptALL.c:311
+#: lib/poptALL.c:316
 msgid "debug rpmio I/O"
 msgstr ""
 
-#: lib/poptALL.c:323
+#: lib/poptALL.c:330
 msgid "debug URL cache handling"
 msgstr ""
 
 #. @-nullpass@
-#: lib/poptALL.c:393
+#: lib/poptALL.c:400
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1746,214 +1756,219 @@ msgstr ""
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:151
+#: lib/poptI.c:155
 #, fuzzy
 msgid "add suggested packages to transaction"
 msgstr "fyrirspurn/yfirferð á pakkann sam á skrá"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:159
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: lib/poptI.c:159
+#: lib/poptI.c:163
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: lib/poptI.c:164 tools/rpmgraph.c:273
+#: lib/poptI.c:168 tools/rpmgraph.c:273
 msgid "use anaconda \"presentation order\""
 msgstr ""
 
-#: lib/poptI.c:169 lib/poptI.c:238
+#: lib/poptI.c:173 lib/poptI.c:245
 msgid "do not execute package scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:173
-msgid "relocate files in non-relocateable package"
+#: lib/poptI.c:177
+msgid "relocate files in non-relocatable package"
 msgstr ""
 
-#: lib/poptI.c:176
+#: lib/poptI.c:180
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 msgid "<package>+"
 msgstr "<pakkaskrá>+"
 
-#: lib/poptI.c:182 lib/poptI.c:219
+#: lib/poptI.c:186 lib/poptI.c:223
 #, fuzzy
 msgid "do not install configuration files"
 msgstr "birta einungis stillingaskrár (innifelur -l)"
 
-#: lib/poptI.c:185 lib/poptI.c:224
+#: lib/poptI.c:189 lib/poptI.c:228
 msgid "do not install documentation"
 msgstr ""
 
-#: lib/poptI.c:187
+#: lib/poptI.c:191
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:188
+#: lib/poptI.c:192
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:191
+#: lib/poptI.c:195
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: lib/poptI.c:195
+#: lib/poptI.c:199
 msgid "upgrade package(s) if already installed"
 msgstr ""
 
-#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
+#: lib/poptI.c:200 lib/poptI.c:216 lib/poptI.c:312
 msgid "<packagefile>+"
 msgstr "<pakkaskrá>+"
 
-#: lib/poptI.c:198
+#: lib/poptI.c:202
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: lib/poptI.c:201
+#: lib/poptI.c:205
 msgid "don't verify package architecture"
 msgstr ""
 
-#: lib/poptI.c:204
+#: lib/poptI.c:208
 msgid "don't verify package operating system"
 msgstr ""
 
-#: lib/poptI.c:207
+#: lib/poptI.c:211
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:209
+#: lib/poptI.c:213
 msgid "install documentation"
 msgstr ""
 
-#: lib/poptI.c:212
+#: lib/poptI.c:216
 #, fuzzy
 msgid "install package(s)"
 msgstr "setja inn pakka"
 
-#: lib/poptI.c:215
+#: lib/poptI.c:219
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: lib/poptI.c:221
+#: lib/poptI.c:225
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:231 lib/poptQV.c:279 lib/poptQV.c:282
 msgid "don't verify MD5 digest of files"
 msgstr "ekki yfirfara MD5 undirritun skráa"
 
-#: lib/poptI.c:230
+#: lib/poptI.c:233
+#, fuzzy
+msgid "don't install file security contexts"
+msgstr "birta einungis stillingaskrár (innifelur -l)"
+
+#: lib/poptI.c:237
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: lib/poptI.c:235
+#: lib/poptI.c:242
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:242
+#: lib/poptI.c:249
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:245
+#: lib/poptI.c:252
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:248
+#: lib/poptI.c:255
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:251
+#: lib/poptI.c:258
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:261
+#: lib/poptI.c:268
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 
-#: lib/poptI.c:264
+#: lib/poptI.c:271
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:267
+#: lib/poptI.c:274
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:270
+#: lib/poptI.c:277
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:273
+#: lib/poptI.c:280
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:277
+#: lib/poptI.c:284
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 
-#: lib/poptI.c:281
+#: lib/poptI.c:288
 msgid "print percentages as package installs"
 msgstr ""
 
-#: lib/poptI.c:283
+#: lib/poptI.c:290
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: lib/poptI.c:284
+#: lib/poptI.c:291
 msgid "<dir>"
 msgstr ""
 
-#: lib/poptI.c:286
+#: lib/poptI.c:293
 msgid "relocate files from path <old> to <new>"
 msgstr ""
 
-#: lib/poptI.c:287
+#: lib/poptI.c:294
 msgid "<old>=<new>"
 msgstr "<gömul>=<ný>"
 
-#: lib/poptI.c:290
+#: lib/poptI.c:297
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:293
+#: lib/poptI.c:300
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: lib/poptI.c:296
+#: lib/poptI.c:303
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: lib/poptI.c:298
+#: lib/poptI.c:305
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:299
+#: lib/poptI.c:306
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:301
+#: lib/poptI.c:308
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
-#: lib/poptI.c:304
+#: lib/poptI.c:311
 msgid "upgrade package(s)"
 msgstr "uppfæra pakka"
 
@@ -2031,199 +2046,194 @@ msgstr "fyrirspurn/yfirfer
 msgid "query/verify the package(s) which provide a dependency"
 msgstr "fyrirspurn/yfirferð á pakkana sem uppfylla þarfir annara pakka"
 
-#: lib/poptQV.c:226
+#: lib/poptQV.c:230
 msgid "list all configuration files"
 msgstr ""
 
-#: lib/poptQV.c:228
+#: lib/poptQV.c:232
 msgid "list all documentation files"
 msgstr ""
 
-#: lib/poptQV.c:230
+#: lib/poptQV.c:234
 msgid "dump basic file information"
 msgstr ""
 
-#: lib/poptQV.c:234
+#: lib/poptQV.c:238
 msgid "list files in package"
 msgstr ""
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:243
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:243
+#: lib/poptQV.c:247
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
-#: lib/poptQV.c:246
+#: lib/poptQV.c:250
 #, c-format
 msgid "skip %%readme files"
 msgstr ""
 
-#: lib/poptQV.c:252
+#: lib/poptQV.c:256
 msgid "use the following query format"
 msgstr ""
 
-#: lib/poptQV.c:254
+#: lib/poptQV.c:258
 msgid "substitute i18n sections into spec file"
 msgstr ""
 
-#: lib/poptQV.c:256
+#: lib/poptQV.c:260
 msgid "display the states of the listed files"
 msgstr ""
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:286
 msgid "don't verify size of files"
 msgstr "ekki yfirfara stærð skráa"
 
-#: lib/poptQV.c:285
+#: lib/poptQV.c:289
 msgid "don't verify symlink path of files"
 msgstr "ekki yfirfara symlink slóð skráa"
 
-#: lib/poptQV.c:288
+#: lib/poptQV.c:292
 msgid "don't verify owner of files"
 msgstr "ekki yfirfara eiganda skráa"
 
-#: lib/poptQV.c:291
+#: lib/poptQV.c:295
 msgid "don't verify group of files"
 msgstr "ekki yfirfara hop skráa"
 
-#: lib/poptQV.c:294
+#: lib/poptQV.c:298
 msgid "don't verify modification time of files"
 msgstr ""
 
-#: lib/poptQV.c:297 lib/poptQV.c:300
+#: lib/poptQV.c:301 lib/poptQV.c:304
 msgid "don't verify mode of files"
 msgstr "ekki yfirfara heimildir skráa"
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:307
+#, fuzzy
+msgid "don't verify file security contexts"
+msgstr "ekki yfirfara skrárnar í pakkanum"
+
+#: lib/poptQV.c:309
 msgid "don't verify files in package"
 msgstr "ekki yfirfara skrárnar í pakkanum"
 
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
+#: lib/poptQV.c:312 lib/poptQV.c:315 tools/rpmgraph.c:267
 msgid "don't verify package dependencies"
 msgstr "ekki skoða pakkaskilyrðin"
 
-#: lib/poptQV.c:314 lib/poptQV.c:318 lib/poptQV.c:321 lib/poptQV.c:324
+#: lib/poptQV.c:320 lib/poptQV.c:324 lib/poptQV.c:327 lib/poptQV.c:330
 msgid "don't execute verify script(s)"
 msgstr ""
 
-#: lib/poptQV.c:348
+#: lib/poptQV.c:354
 #, fuzzy
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr "ekki yfirfara SHA1 undirritunina"
 
-#: lib/poptQV.c:351
+#: lib/poptQV.c:357
 #, fuzzy
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr "ekki yfirfara MD5 undirritun skráa"
 
-#: lib/poptQV.c:366
+#: lib/poptQV.c:372
 msgid "sign package(s) (identical to --resign)"
 msgstr ""
 
-#: lib/poptQV.c:368
+#: lib/poptQV.c:374
 #, fuzzy
 msgid "verify package signature(s)"
 msgstr "búa til undirskrift"
 
-#: lib/poptQV.c:370
+#: lib/poptQV.c:376
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:372
+#: lib/poptQV.c:378
 msgid "sign package(s) (identical to --addsign)"
 msgstr ""
 
-#: lib/poptQV.c:374
+#: lib/poptQV.c:380
 msgid "generate signature"
 msgstr "búa til undirskrift"
 
-#: lib/psm.c:269
+#: lib/psm.c:268
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:394
+#: lib/psm.c:386
 msgid "source package contains no .spec file\n"
 msgstr "pakkinn inniheldur enga .spec skrá\n"
 
-#: lib/psm.c:480
+#: lib/psm.c:472
 #, c-format
 msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
 msgstr ""
 
-#: lib/psm.c:562
+#: lib/psm.c:554
 #, c-format
 msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
 msgstr ""
 
-#: lib/psm.c:570
+#: lib/psm.c:562
 #, c-format
 msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
 msgstr ""
 
-#: lib/psm.c:735
+#: lib/psm.c:730
 #, c-format
 msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
 msgstr ""
 
-#: lib/psm.c:756
+#: lib/psm.c:751
 #, c-format
 msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
 msgstr ""
 
-#: lib/psm.c:762
+#: lib/psm.c:757
 #, c-format
 msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1191
+#: lib/psm.c:1188
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1330
+#: lib/psm.c:1323
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1439
+#: lib/psm.c:1432
 #, fuzzy
 msgid "Unable to reload signature header\n"
 msgstr "Get ekki lesið haus úr %s: %s\n"
 
-#: lib/psm.c:1485
-#, c-format
-msgid "user %s does not exist - using root\n"
-msgstr ""
-
-#: lib/psm.c:1494
-#, c-format
-msgid "group %s does not exist - using root\n"
-msgstr ""
-
-#: lib/psm.c:1546
+#: lib/psm.c:1510
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1547
+#: lib/psm.c:1511
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1733
+#: lib/psm.c:1697
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "gat ekki opnað %s: %s\n"
 
-#: lib/psm.c:1736
+#: lib/psm.c:1700
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s brást\n"
 
-#: lib/query.c:118 lib/rpmts.c:565
+#: lib/query.c:118 lib/rpmts.c:566
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
@@ -2270,8 +2280,8 @@ msgstr ""
 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:462
-#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576
+#: 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
 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157
 #, c-format
 msgid "open of %s failed: %s\n"
@@ -2286,7 +2296,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:488 lib/rpminstall.c:608
+#: lib/query.c:488 lib/rpminstall.c:622
 #, fuzzy, c-format
 msgid "%s: not an rpm package (or package manifest): %s\n"
 msgstr "get ekki opnað pakka gagnagrunn í\n"
@@ -2355,16 +2365,16 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:766 lib/rpminstall.c:778
+#: lib/query.c:766 lib/rpminstall.c:792
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:692
+#: lib/rpmal.c:694
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:772
 msgid "(added provide)"
 msgstr ""
 
@@ -2487,36 +2497,36 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "get ekki opnað pakka gagnagrunn í\n"
 
-#: lib/rpmfi.c:546
+#: lib/rpmfi.c:561
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/rpmfi.c:784
+#: lib/rpmfi.c:799
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:788
+#: lib/rpmfi.c:803
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "%5d færa %s -> %s\n"
 
-#: lib/rpmfi.c:791
+#: lib/rpmfi.c:806
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d færa %s -> %s\n"
 
-#: lib/rpmfi.c:919
+#: lib/rpmfi.c:934
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "lína %d: %s\n"
 
-#: lib/rpmfi.c:929
+#: lib/rpmfi.c:944
 #, fuzzy, c-format
 msgid "relocating %s to %s\n"
 msgstr "%5d færa %s -> %s\n"
 
-#: lib/rpmfi.c:1021
+#: lib/rpmfi.c:1036
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "%5d færa %s -> %s\n"
@@ -2546,88 +2556,88 @@ msgstr ""
 msgid "Upgrading packages..."
 msgstr "uppfæra pakka"
 
-#: lib/rpminstall.c:394
+#: lib/rpminstall.c:408
 #, fuzzy, c-format
 msgid "Adding goal: %s\n"
 msgstr "Skrá %s: %s\n"
 
-#: lib/rpminstall.c:409
+#: lib/rpminstall.c:423
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:436
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:426
+#: lib/rpminstall.c:440
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:481 lib/rpminstall.c:872 tools/rpmgraph.c:140
+#: lib/rpminstall.c:495 lib/rpminstall.c:886 tools/rpmgraph.c:140
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:523
-#, c-format
-msgid "package %s is not relocateable\n"
-msgstr ""
+#: lib/rpminstall.c:537
+#, fuzzy, c-format
+msgid "package %s is not relocatable\n"
+msgstr "Skráin %s er ekki venjuleg skrá.\n"
 
-#: lib/rpminstall.c:573
+#: lib/rpminstall.c:587
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:593
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:637
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:637 lib/rpminstall.c:810 lib/rpminstall.c:1239
+#: lib/rpminstall.c:651 lib/rpminstall.c:824 lib/rpminstall.c:1253
 #: tools/rpmgraph.c:195
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "gat ekki útbúið pakkaskilyrði:\n"
 
-#: lib/rpminstall.c:644 tools/rpmgraph.c:201
+#: lib/rpminstall.c:658 tools/rpmgraph.c:201
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:688
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:712
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:787
+#: lib/rpminstall.c:801
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:856
+#: lib/rpminstall.c:870
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:862
+#: lib/rpminstall.c:876
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1233
+#: lib/rpminstall.c:1247
 #, c-format
 msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
 msgstr ""
@@ -2695,7 +2705,7 @@ msgstr ""
 
 #: lib/rpmps.c:223
 #, c-format
-msgid "path %s in package %s is not relocateable"
+msgid "path %s in package %s is not relocatable"
 msgstr ""
 
 #: lib/rpmps.c:228
@@ -2842,50 +2852,75 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Get ekki opnað %s til lesturs: %s.\n"
 
-#: lib/rpmts.c:162
+#: lib/rpmsx.c:343
+#, c-format
+msgid "%s:  no newline on line number %d (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:360
+#, c-format
+msgid "%s:  line number %d is missing fields (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:391
+#, 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
+#, c-format
+msgid "%s:  invalid type specifier %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmsx.c:434
+#, c-format
+msgid "%s:  invalid context %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmts.c:163
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "get ekki opnað pakka gagnagrunn í %s\n"
 
-#: lib/rpmts.c:252
+#: lib/rpmts.c:253
 #, c-format
 msgid "extra '(' in package label: %s\n"
 msgstr ""
 
-#: lib/rpmts.c:270
+#: lib/rpmts.c:271
 #, fuzzy, c-format
 msgid "missing '(' in package label: %s\n"
 msgstr "vantar '(' í  %s %s\n"
 
-#: lib/rpmts.c:278
+#: lib/rpmts.c:279
 #, fuzzy, c-format
 msgid "missing ')' in package label: %s\n"
 msgstr "vantar '(' í  %s %s\n"
 
-#: lib/rpmts.c:455
+#: lib/rpmts.c:456
 #, fuzzy, c-format
 msgid "cannot open Solve database in %s\n"
 msgstr "get ekki opnað pakka gagnagrunn í %s\n"
 
-#: lib/rpmts.c:597
+#: lib/rpmts.c:598
 #, fuzzy, c-format
 msgid "Adding: %s\n"
 msgstr "lína: %s\n"
 
-#: lib/rpmts.c:609
+#: lib/rpmts.c:610
 #, c-format
 msgid "Suggesting: %s\n"
 msgstr ""
 
-#: lib/rpmts.c:1077
+#: lib/rpmts.c:1097
 msgid "mounted filesystems:\n"
 msgstr ""
 
-#: lib/rpmts.c:1079
+#: lib/rpmts.c:1099
 msgid "    i    dev bsize       bavail       iavail mount point\n"
 msgstr ""
 
-#: lib/rpmts.c:1135
+#: lib/rpmts.c:1155
 #, c-format
 msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
 msgstr ""
@@ -3089,12 +3124,12 @@ msgstr ""
 msgid "computing file dispositions\n"
 msgstr ""
 
-#: lib/verify.c:288
+#: lib/verify.c:319
 #, fuzzy, c-format
 msgid "missing  %c %s"
 msgstr "vantar     %s"
 
-#: lib/verify.c:397
+#: lib/verify.c:433
 #, fuzzy, c-format
 msgid "Unsatisfied dependencies for %s: "
 msgstr "Óuppfyllt pakkaskilyrði fyrir %s-%s-%s: "
@@ -3292,161 +3327,161 @@ msgstr "get ekki opna
 msgid "cannot open %s index\n"
 msgstr "get ekki opnað %s index\n"
 
-#: rpmdb/rpmdb.c:915
+#: rpmdb/rpmdb.c:917
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1193 rpmdb/rpmdb.c:1322 rpmdb/rpmdb.c:1373 rpmdb/rpmdb.c:2316
-#: rpmdb/rpmdb.c:2432 rpmdb/rpmdb.c:3161
+#: rpmdb/rpmdb.c:1195 rpmdb/rpmdb.c:1324 rpmdb/rpmdb.c:1375 rpmdb/rpmdb.c:2322
+#: rpmdb/rpmdb.c:2438 rpmdb/rpmdb.c:3167
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1567
+#: rpmdb/rpmdb.c:1569
 msgid "miFreeHeader: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1577
+#: rpmdb/rpmdb.c:1579
 #, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2209
+#: rpmdb/rpmdb.c:2212
 msgid "rpmdbNextIterator: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2242
 #, c-format
 msgid "rpmdb: damaged header #%u retrieved -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2520
+#: rpmdb/rpmdb.c:2526
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2583
+#: rpmdb/rpmdb.c:2589
 #, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2698
+#: rpmdb/rpmdb.c:2704
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2702
+#: rpmdb/rpmdb.c:2708
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2730
+#: rpmdb/rpmdb.c:2736
 #, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2751
+#: rpmdb/rpmdb.c:2757
 #, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2761
+#: rpmdb/rpmdb.c:2767
 #, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2910
+#: rpmdb/rpmdb.c:2916
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2964
+#: rpmdb/rpmdb.c:2970
 msgid "rpmdbAdd: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3136
+#: rpmdb/rpmdb.c:3142
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3140
+#: rpmdb/rpmdb.c:3146
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3180
+#: rpmdb/rpmdb.c:3186
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3581
+#: rpmdb/rpmdb.c:3587
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3619
+#: rpmdb/rpmdb.c:3625
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3651
+#: rpmdb/rpmdb.c:3657
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3655
+#: rpmdb/rpmdb.c:3661
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3661
+#: rpmdb/rpmdb.c:3667
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3663
+#: rpmdb/rpmdb.c:3669
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3670
+#: rpmdb/rpmdb.c:3676
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3683
+#: rpmdb/rpmdb.c:3689
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3712
+#: rpmdb/rpmdb.c:3718
 #, c-format
 msgid "header #%u in the database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3752
+#: rpmdb/rpmdb.c:3758
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3766
+#: rpmdb/rpmdb.c:3772
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3774
+#: rpmdb/rpmdb.c:3780
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3776
+#: rpmdb/rpmdb.c:3782
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3786
+#: rpmdb/rpmdb.c:3792
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3788
+#: rpmdb/rpmdb.c:3794
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
@@ -3502,42 +3537,42 @@ msgstr ""
 msgid "Macro %%%s (%s) was not used below level %d\n"
 msgstr ""
 
-#: rpmio/macro.c:982
+#: rpmio/macro.c:984
 #, c-format
 msgid "Unknown option %c in %s(%s)\n"
 msgstr "Óþekkt viðfang %c í %s(%s)\n"
 
-#: rpmio/macro.c:1182
+#: rpmio/macro.c:1184
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)\n"
 msgstr ""
 
-#: rpmio/macro.c:1252 rpmio/macro.c:1269
+#: rpmio/macro.c:1255 rpmio/macro.c:1272
 #, c-format
 msgid "Unterminated %c: %s\n"
 msgstr ""
 
-#: rpmio/macro.c:1310
+#: rpmio/macro.c:1313
 #, c-format
 msgid "A %% is followed by an unparseable macro\n"
 msgstr ""
 
-#: rpmio/macro.c:1439
+#: rpmio/macro.c:1442
 #, c-format
 msgid "Macro %%%.*s not found, skipping\n"
 msgstr "Fjölvi %%%.*s fannst ekki. Sleppi\n"
 
-#: rpmio/macro.c:1510
+#: rpmio/macro.c:1513
 msgid "Target buffer overflow\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1705 rpmio/macro.c:1711
+#: rpmio/macro.c:1708 rpmio/macro.c:1714
 #, c-format
 msgid "File %s: %s\n"
 msgstr "Skrá %s: %s\n"
 
-#: rpmio/macro.c:1714
+#: rpmio/macro.c:1717
 #, c-format
 msgid "File %s is smaller than %u bytes\n"
 msgstr "Skráin %s er minni en %u bæti\n"
index 77a08ff..50e16bd 100644 (file)
--- a/po/ja.po
+++ b/po/ja.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:11-0500\n"
+"POT-Creation-Date: 2003-12-30 08:11-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"
@@ -25,44 +25,44 @@ msgstr "
 msgid "Unable to open spec file %s: %s\n"
 msgstr "spec ¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó: %s\n"
 
-#: build.c:152 build.c:164
+#: build.c:150 build.c:162
 #, fuzzy, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr "tar ¥Ñ¥¤¥×¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s\n"
 
 #. Give up
-#: build.c:171
+#: build.c:169
 #, fuzzy, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "%s ¤«¤é spec ¥Õ¥¡¥¤¥ë¤ÎÆɤ߹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: build.c:199
+#: build.c:197
 #, fuzzy, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr "%s ¤ò %s ¤Ë¤¹¤ë̾Á°¤ÎÊѹ¹¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
 
-#: build.c:239
+#: build.c:237
 #, fuzzy, c-format
 msgid "failed to stat %s: %m\n"
 msgstr "stat %s ¤Ë¼ºÇÔ: %s"
 
-#: build.c:244
+#: build.c:242
 #, fuzzy, c-format
 msgid "File %s is not a regular file.\n"
 msgstr "ÉáÄ̤Υե¡¥¤¥ë¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó: %s\n"
 
-#: build.c:253
+#: build.c:251
 #, fuzzy, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤Ï ¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ë¤Ç¤Ï¤Ê¤¤¤è¤¦¤Ç¤¹¡£\n"
 
 #. parse up the build operators
-#: build.c:324
+#: build.c:322
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr "ºîÀ®Ã楿¡¼¥²¥Ã¥È¥×¥é¥Ã¥È¥Õ¥©¡¼¥à: %s\n"
 
-#: build.c:339
+#: build.c:337
 #, fuzzy, c-format
 msgid "Building for target %s\n"
 msgstr "¥¿¡¼¥²¥Ã¥È %s ÍѤ˺îÀ®Ãæ\n"
@@ -117,7 +117,7 @@ msgstr ""
 msgid "%s: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s: %s\n"
 
-#: rpmqv.c:129 lib/poptALL.c:114
+#: rpmqv.c:129 lib/poptALL.c:119
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM ¥Ð¡¼¥¸¥ç¥ó %s\n"
@@ -449,166 +449,166 @@ msgstr "&& 
 msgid "syntax error in expression\n"
 msgstr "¼°Ãæ¤Çʸˡ¥¨¥é¡¼"
 
-#: build/files.c:278
+#: build/files.c:280
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "TIMECHECK ¼ºÇÔ: %s\n"
 
-#: build/files.c:343 build/files.c:543 build/files.c:739
+#: build/files.c:345 build/files.c:545 build/files.c:741
 #, fuzzy, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "%s %s ¤Ç '('¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
 
-#: build/files.c:354 build/files.c:673 build/files.c:750
+#: build/files.c:356 build/files.c:675 build/files.c:752
 #, fuzzy, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "')' ¤¬¤¢¤ê¤Þ¤»¤ó %s(%s "
 
-#: build/files.c:392 build/files.c:698
+#: build/files.c:394 build/files.c:700
 #, fuzzy, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "̵¸ú¤Ê %s ¤Î¥È¡¼¥¯¥ó: %s"
 
-#: build/files.c:502
+#: build/files.c:504
 #, fuzzy, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "%s %s ¤Ç '('¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
 
-#: build/files.c:559
+#: build/files.c:561
 #, fuzzy, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr "%s() ¤Ë³¤¯¶õÇò¤¬¤¢¤ê¤Þ¤»¤ó: %s"
 
-#: build/files.c:597
+#: build/files.c:599
 #, fuzzy, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "ÉÔÀµ¤Êʸˡ: %s(%s)"
 
-#: build/files.c:607
+#: build/files.c:609
 #, fuzzy, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "ÉÔÀµ¤Ê¥â¡¼¥É¥¹¥Ú¥Ã¥¯: %s(%s)"
 
-#: build/files.c:619
+#: build/files.c:621
 #, fuzzy, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "ÉÔÀµ¤Ê¥Ç¥£¥ì¥¯¥È¥ê¥â¡¼¥É¥¹¥Ú¥Ã¥¯: %s(%s)"
 
-#: build/files.c:777
+#: build/files.c:779
 #, fuzzy, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr "°Û¾ï¤Ê¥í¥«¡¼¥ëĹ: \"%.*s\"  %%lang(%s)"
 
 #. @innercontinue@
-#: build/files.c:788
+#: build/files.c:790
 #, fuzzy, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr "Ê£¿ô¤Î¥í¥«¡¼¥ë %.*s %%lang(%s)"
 
-#: build/files.c:917
+#: build/files.c:919
 #, fuzzy, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr "%%docdir ¤Î¸Â³¦¤Ë㤷¤Þ¤·¤¿"
 
-#: build/files.c:925
+#: build/files.c:927
 #, fuzzy, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr "%%docdir ¤Î°ú¿ô¤Ï1¤Ä¤Î¤ß¤Ç¤¹"
 
 #. We already got a file -- error
-#: build/files.c:959
+#: build/files.c:961
 #, fuzzy, c-format
 msgid "Two files on one line: %s\n"
 msgstr "1¹Ô¤Ë2¤Ä¤Î¥Õ¥¡¥¤¥ë: %s"
 
-#: build/files.c:976
+#: build/files.c:978
 #, fuzzy, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤Ï \"/\" ¤«¤é»Ï¤Þ¤é¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó: %s"
 
-#: build/files.c:989
+#: build/files.c:991
 #, fuzzy, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr "¾¤Î¥Õ¥©¡¼¥à¤ÇÆÃÊ̤ʠ%%doc ¤òº®¤¼¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó: %s"
 
-#: build/files.c:1141
+#: build/files.c:1149
 #, fuzzy, c-format
 msgid "File listed twice: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤¬2²óɽµ­¤µ¤ì¤Æ¤¤¤Þ¤¹: %s"
 
-#: build/files.c:1280
+#: build/files.c:1288
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1520
+#: build/files.c:1535
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤Ï prefix (%s) ¤È°ìÃפ·¤Þ¤»¤ó: %s"
 
-#: build/files.c:1544
+#: build/files.c:1559
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: %s"
 
-#: build/files.c:1752
+#: build/files.c:1767
 #, fuzzy, c-format
 msgid "%s: public key read failed.\n"
 msgstr "%s: readLead ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: build/files.c:1756 lib/rpmchecksig.c:580
+#: build/files.c:1771 lib/rpmchecksig.c:580
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: build/files.c:1804
+#: build/files.c:1819
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤ÏÀèƬ¤Ë \"/\" ¤¬É¬ÍפǤ¹: %s"
 
-#: build/files.c:1828
+#: build/files.c:1843
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "%d ¹ÔÌÜ: ¥Ð¡¼¥¸¥ç¥ó¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s"
 
-#: build/files.c:1845 lib/rpminstall.c:347
+#: build/files.c:1860 lib/rpminstall.c:361
 #, fuzzy, c-format
 msgid "File not found by glob: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó(by glob): %s"
 
-#: build/files.c:1905
+#: build/files.c:1920
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "%%files ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó: %s"
 
-#: build/files.c:1916 build/pack.c:156
+#: build/files.c:1931 build/pack.c:156
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "¹ÔÌÜ: %s"
 
-#: build/files.c:2307
+#: build/files.c:2323
 #, fuzzy, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s: %s\n"
 
-#: build/files.c:2319 build/parsePrep.c:50
+#: build/files.c:2335 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "ÉÔÀµ¤Ê½êÍ­¼Ô/¥°¥ë¡¼¥×: %s\n"
 
-#: build/files.c:2363
+#: build/files.c:2379
 #, fuzzy, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Îõº÷Ãæ\n"
 
-#: build/files.c:2386
+#: build/files.c:2402
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
 "%s"
 msgstr ""
 
-#: build/files.c:2414
+#: build/files.c:2430
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤Î½èÍýÃæ: %s-%s-%s\n"
@@ -752,7 +752,7 @@ msgstr "
 msgid "Could not open %s: %s\n"
 msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: build/pack.c:632 lib/psm.c:1427
+#: build/pack.c:632 lib/psm.c:1420
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s"
@@ -782,7 +782,7 @@ msgstr "
 msgid "Unable to write payload to %s: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s"
 
-#: build/pack.c:725 lib/psm.c:1725
+#: build/pack.c:725 lib/psm.c:1689
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "½ñ¤­¹þ¤ßÃæ: %s\n"
@@ -1280,20 +1280,20 @@ msgstr "
 msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
 msgstr ""
 
-#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329
-#: lib/poptQV.c:338 lib/poptQV.c:377
+#: build/poptBT.c:229 lib/poptALL.c:240 lib/poptI.c:261 lib/poptQV.c:335
+#: lib/poptQV.c:344 lib/poptQV.c:383
 #, fuzzy
 msgid "don't verify package digest(s)"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î°Í¸´Ø·¸¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332
-#: lib/poptQV.c:340 lib/poptQV.c:380
+#: build/poptBT.c:231 lib/poptALL.c:242 lib/poptI.c:263 lib/poptQV.c:338
+#: lib/poptQV.c:346 lib/poptQV.c:386
 #, fuzzy
 msgid "don't verify database header(s) when retrieved"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤ÎÂоݥ¢¡¼¥­¥Æ¥¯¥Á¥ã¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335
-#: lib/poptQV.c:342 lib/poptQV.c:382
+#: build/poptBT.c:233 lib/poptALL.c:248 lib/poptI.c:265 lib/poptQV.c:341
+#: lib/poptQV.c:348 lib/poptQV.c:388
 #, fuzzy
 msgid "don't verify package signature(s)"
 msgstr "½ð̾¤Î¸¡¾Ú¤ò¤·¤Þ¤¹"
@@ -1369,34 +1369,34 @@ msgstr "
 msgid "Bad/unreadable  header"
 msgstr "ÉÔÀµ¤Ê/ÉÔ²ÄÆɤʥإåÀ"
 
-#: lib/cpio.c:232
+#: lib/cpio.c:233
 msgid "Header size too big"
 msgstr "¥Ø¥Ã¥À¥µ¥¤¥º¤¬Â礭¤¹¤®¤Þ¤¹"
 
-#: lib/cpio.c:233
+#: lib/cpio.c:234
 #, fuzzy
 msgid "Unknown file type"
 msgstr "ÉÔÌÀ¤Ê¥Õ¥¡¥¤¥ë¥¿¥¤¥×"
 
-#: lib/cpio.c:234
+#: lib/cpio.c:235
 #, fuzzy
 msgid "Missing hard link(s)"
 msgstr "¥Ï¡¼¥É¥ê¥ó¥¯¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
 
-#: lib/cpio.c:235
+#: lib/cpio.c:236
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:236
+#: lib/cpio.c:237
 #, fuzzy
 msgid "Internal error"
 msgstr "ÆâÉô¥¨¥é¡¼"
 
-#: lib/cpio.c:237
+#: lib/cpio.c:238
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:250
+#: lib/cpio.c:251
 #, fuzzy
 msgid " failed - "
 msgstr "¼ºÇÔ - "
@@ -1534,46 +1534,56 @@ msgstr "
 msgid "file %s is on an unknown device\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤ÏÉÔÌÀ¤Ê¥Ç¥Ð¥¤¥¹¤Ç¤¹"
 
-#: lib/fsm.c:350
+#: lib/fsm.c:352
 msgid "========== Directories not explicitly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:352
+#: lib/fsm.c:354
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%d ¹ÔÌÜ: %s"
 
-#: lib/fsm.c:1293
+#: lib/fsm.c:768
+#, fuzzy, c-format
+msgid "user %s does not exist - using root\n"
+msgstr "¥æ¡¼¥¶ %s ¤Ï¸ºß¤·¤Þ¤»¤ó - root ¤ò»ÈÍѤ·¤Þ¤¹"
+
+#: lib/fsm.c:776
+#, fuzzy, c-format
+msgid "group %s does not exist - using root\n"
+msgstr "¥°¥ë¡¼¥× %s ¤Ï¸ºß¤·¤Þ¤»¤ó - root ¤ò»ÈÍѤ·¤Þ¤¹"
+
+#: lib/fsm.c:1334
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1592
+#: lib/fsm.c:1633
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1719 lib/fsm.c:1855
+#: lib/fsm.c:1760 lib/fsm.c:1896
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "·Ù¹ð: %s ¤Ï %s ¤È¤·¤ÆÊݸ¤µ¤ì¤Þ¤¹"
 
-#: lib/fsm.c:1882
+#: lib/fsm.c:1923
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "%s ¤òºï½ü¤Ç¤­¤Þ¤»¤ó - ¥Ç¥£¥ì¥¯¥È¥ê¤¬¶õ¤Ç¤¢¤ê¤Þ¤»¤ó"
 
-#: lib/fsm.c:1888
+#: lib/fsm.c:1929
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s ¤Î rmdir ¤Ë¼ºÇÔ: %s"
 
-#: lib/fsm.c:1903
+#: lib/fsm.c:1944
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s\n"
 
-#: lib/fsm.c:1925
+#: lib/fsm.c:1966
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "·Ù¹ð: %s ¤Ï %s ¤È¤·¤ÆºîÀ®¤µ¤ì¤Þ¤¹"
@@ -1693,116 +1703,116 @@ msgstr "%s: readLead 
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
 
-#: lib/poptALL.c:222
+#: lib/poptALL.c:227
 msgid "predefine MACRO with value EXPR"
 msgstr ""
 
-#: lib/poptALL.c:223 lib/poptALL.c:226
+#: lib/poptALL.c:228 lib/poptALL.c:231
 msgid "'MACRO EXPR'"
 msgstr ""
 
-#: lib/poptALL.c:225
+#: lib/poptALL.c:230
 msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: lib/poptALL.c:228
+#: lib/poptALL.c:233
 #, fuzzy
 msgid "print macro expansion of EXPR"
 msgstr "»ÈÍѤ·¤Æ¤¤¤ë rpm ¤Î¥Ð¡¼¥¸¥ç¥ó¤òɽ¼¨¤·¤Þ¤¹"
 
-#: lib/poptALL.c:229
+#: lib/poptALL.c:234
 msgid "'EXPR'"
 msgstr ""
 
-#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254
+#: lib/poptALL.c:236 lib/poptALL.c:255 lib/poptALL.c:259
 msgid "read <FILE:...> instead of default file(s)"
 msgstr ""
 
-#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255
+#: lib/poptALL.c:237 lib/poptALL.c:256 lib/poptALL.c:260
 msgid "<FILE:...>"
 msgstr ""
 
-#: lib/poptALL.c:240 lib/poptALL.c:274
+#: lib/poptALL.c:245 lib/poptALL.c:279
 msgid "disable use of libio(3) API"
 msgstr ""
 
-#: lib/poptALL.c:246
+#: lib/poptALL.c:251
 #, fuzzy
 msgid "send stdout to CMD"
 msgstr "ɸ½à½ÐÎϤò <cmd> ¤Ø¥Ñ¥¤¥×¤·¤Þ¤¹"
 
-#: lib/poptALL.c:247
+#: lib/poptALL.c:252
 msgid "CMD"
 msgstr ""
 
-#: lib/poptALL.c:258
+#: lib/poptALL.c:263
 #, fuzzy
 msgid "use ROOT as top level directory"
 msgstr "¥È¥Ã¥×¥Ç¥£¥ì¥¯¥È¥ê¤È¤·¤Æ <dir> ¤ò»ÈÍѤ·¤Þ¤¹"
 
-#: lib/poptALL.c:259
+#: lib/poptALL.c:264
 msgid "ROOT"
 msgstr ""
 
-#: lib/poptALL.c:262
+#: lib/poptALL.c:267
 msgid "display known query tags"
 msgstr ""
 
-#: lib/poptALL.c:264
+#: lib/poptALL.c:269
 msgid "display final rpmrc and macro configuration"
 msgstr ""
 
-#: lib/poptALL.c:266
+#: lib/poptALL.c:271
 msgid "provide less detailed output"
 msgstr ""
 
-#: lib/poptALL.c:268
+#: lib/poptALL.c:273
 msgid "provide more detailed output"
 msgstr ""
 
-#: lib/poptALL.c:270
+#: lib/poptALL.c:275
 msgid "print the version of rpm being used"
 msgstr "»ÈÍѤ·¤Æ¤¤¤ë rpm ¤Î¥Ð¡¼¥¸¥ç¥ó¤òɽ¼¨¤·¤Þ¤¹"
 
-#: lib/poptALL.c:283
+#: lib/poptALL.c:288
 #, fuzzy
 msgid "debug payload file state machine"
 msgstr "ÉÔÀµ¤Ê¥Õ¥¡¥¤¥ë¤Î¾õÂÖ: %s"
 
-#: lib/poptALL.c:285
+#: lib/poptALL.c:290
 #, fuzzy
 msgid "use threads for file state machine"
 msgstr "ÉÔÀµ¤Ê¥Õ¥¡¥¤¥ë¤Î¾õÂÖ: %s"
 
-#: lib/poptALL.c:287
+#: lib/poptALL.c:292
 msgid "debug protocol data stream"
 msgstr ""
 
-#: lib/poptALL.c:292
+#: lib/poptALL.c:297
 #, fuzzy
 msgid "debug option/argument processing"
 msgstr "°ú¿ô½èÍý(%d)¤Ç¤ÎÆâÉô¥¨¥é¡¼ :-(\n"
 
-#: lib/poptALL.c:297
+#: lib/poptALL.c:302
 #, fuzzy
 msgid "debug package state machine"
 msgstr "ÉÔÀµ¤Ê¥Õ¥¡¥¤¥ë¤Î¾õÂÖ: %s"
 
-#: lib/poptALL.c:299
+#: lib/poptALL.c:304
 #, fuzzy
 msgid "use threads for package state machine"
 msgstr "ÉÔÀµ¤Ê¥Õ¥¡¥¤¥ë¤Î¾õÂÖ: %s"
 
-#: lib/poptALL.c:311
+#: lib/poptALL.c:316
 msgid "debug rpmio I/O"
 msgstr ""
 
-#: lib/poptALL.c:323
+#: lib/poptALL.c:330
 msgid "debug URL cache handling"
 msgstr ""
 
 #. @-nullpass@
-#: lib/poptALL.c:393
+#: lib/poptALL.c:400
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1832,16 +1842,16 @@ msgstr ""
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:151
+#: lib/poptI.c:155
 #, fuzzy
 msgid "add suggested packages to transaction"
 msgstr "¥°¥ë¡¼¥×Ãæ¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ë¤Ä¤¤¤ÆÌ䤤¹ç¤ï¤»¤Þ¤¹\n"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:159
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr "ÀßÄê¤ò¥¹¥­¥Ã¥×¤·¡¢Á´¥Õ¥¡¥¤¥ë¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤¹"
 
-#: lib/poptI.c:159
+#: lib/poptI.c:163
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1849,163 +1859,168 @@ msgstr ""
 "<package> ¤È°ìÃפ¹¤ë¥Ñ¥Ã¥±¡¼¥¸Á´¤Æ¤òºï½ü¤·¤Þ¤¹(°ìÈÌ\n"
 "\t\t\t      Åª¤ËÊ£¿ô¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò»ØÄꤹ¤ë¤È¥¨¥é¡¼¤Ë¤Ê¤ê¤Þ¤¹)"
 
-#: lib/poptI.c:164 tools/rpmgraph.c:273
+#: lib/poptI.c:168 tools/rpmgraph.c:273
 msgid "use anaconda \"presentation order\""
 msgstr ""
 
-#: lib/poptI.c:169 lib/poptI.c:238
+#: lib/poptI.c:173 lib/poptI.c:245
 #, fuzzy
 msgid "do not execute package scriptlet(s)"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸»ØÄê¤Î¥¹¥¯¥ê¥×¥È¤ò¼Â¹Ô¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:173
+#: lib/poptI.c:177
 #, fuzzy
-msgid "relocate files in non-relocateable package"
+msgid "relocate files in non-relocatable package"
 msgstr "¥Ñ¥¹ %s ¤ÏºÆÇÛÃ֤Ǥ­¤Þ¤»¤ó(¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤ËÂФ·¤Æ)"
 
-#: lib/poptI.c:176
+#: lib/poptI.c:180
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 msgid "erase (uninstall) package"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤òºï½ü(¥¢¥ó¥¤¥ó¥¹¥È¡¼¥ë)¤·¤Þ¤¹"
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 #, fuzzy
 msgid "<package>+"
 msgstr "%d ¸Ä¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò¸«¤Ä¤±¤Þ¤·¤¿\n"
 
-#: lib/poptI.c:182 lib/poptI.c:219
+#: lib/poptI.c:186 lib/poptI.c:223
 #, fuzzy
 msgid "do not install configuration files"
 msgstr "Á´¤Æ¤ÎÀßÄê¥Õ¥¡¥¤¥ë¤òÎóµó¤·¤Þ¤¹"
 
-#: lib/poptI.c:185 lib/poptI.c:224
+#: lib/poptI.c:189 lib/poptI.c:228
 msgid "do not install documentation"
 msgstr "¥É¥­¥å¥á¥ó¥È¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:187
+#: lib/poptI.c:191
 #, fuzzy
 msgid "skip files with leading component <path> "
 msgstr "¥Ñ¥¹ <path> Ãæ¤Î¥Õ¥¡¥¤¥ë¤ò¥¹¥­¥Ã¥×¤·¤Þ¤¹"
 
-#: lib/poptI.c:188
+#: lib/poptI.c:192
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:191
+#: lib/poptI.c:195
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "--replacepkgs ¤È --replacefiles ¤òû½Ì¤·¤¿¤â¤Î"
 
-#: lib/poptI.c:195
+#: lib/poptI.c:199
 #, fuzzy
 msgid "upgrade package(s) if already installed"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Ï¤¹¤Ç¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤¹"
 
-#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
+#: lib/poptI.c:200 lib/poptI.c:216 lib/poptI.c:312
 #, fuzzy
 msgid "<packagefile>+"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¥Õ¥¡¥¤¥ë¤Ë¤Ä¤¤¤ÆÌ䤤¹ç¤ï¤»¤Þ¤¹"
 
-#: lib/poptI.c:198
+#: lib/poptI.c:202
 msgid "print hash marks as package installs (good with -v)"
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ëºÝ¤Ë '#' ¤Çɽ¼¨¤·¤Þ¤¹(-v ¤ò»ÈÍѤ¹¤ë¤ÈÎɤ¤)"
 
-#: lib/poptI.c:201
+#: lib/poptI.c:205
 msgid "don't verify package architecture"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤ÎÂоݥ¢¡¼¥­¥Æ¥¯¥Á¥ã¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:204
+#: lib/poptI.c:208
 msgid "don't verify package operating system"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ÂоÝOS¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:207
+#: lib/poptI.c:211
 msgid "don't check disk space before installing"
 msgstr "¥¤¥ó¥¹¥È¡¼¥ëÁ°¤Ë¥Ç¥£¥¹¥¯¤ÎÍÆÎÌ¥Á¥§¥Ã¥¯¤ò¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:209
+#: lib/poptI.c:213
 msgid "install documentation"
 msgstr "¥É¥­¥å¥á¥ó¥È¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤¹"
 
-#: lib/poptI.c:212
+#: lib/poptI.c:216
 #, fuzzy
 msgid "install package(s)"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤¹"
 
-#: lib/poptI.c:215
+#: lib/poptI.c:219
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 "¥Ç¡¼¥¿¥Ù¡¼¥¹¤ò¹¹¿·¤·¤Þ¤¹¤¬¡¢\n"
 "¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤ÎÊѹ¹¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:225
 msgid "do not verify package dependencies"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î°Í¸´Ø·¸¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:231 lib/poptQV.c:279 lib/poptQV.c:282
 #, fuzzy
 msgid "don't verify MD5 digest of files"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:230
+#: lib/poptI.c:233
+#, fuzzy
+msgid "don't install file security contexts"
+msgstr "Á´¤Æ¤ÎÀßÄê¥Õ¥¡¥¤¥ë¤òÎóµó¤·¤Þ¤¹"
+
+#: lib/poptI.c:237
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 "°Í¸À­¤òËþ¤¿¤¹¤¿¤á¤Î¥Ñ¥Ã¥±¡¼¥¸¤Î\n"
 "¥¤¥ó¥¹¥È¡¼¥ë¤òÍ׵ᤷ¤Þ¤»¤ó"
 
-#: lib/poptI.c:235
+#: lib/poptI.c:242
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:242
+#: lib/poptI.c:249
 #, fuzzy, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "¤É¤ÎÃʳ¬¤â¼Â¹Ô¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:245
+#: lib/poptI.c:252
 #, fuzzy, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "¤É¤ÎÃʳ¬¤â¼Â¹Ô¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:248
+#: lib/poptI.c:255
 #, fuzzy, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "¤É¤ÎÃʳ¬¤â¼Â¹Ô¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:251
+#: lib/poptI.c:258
 #, fuzzy, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "¤É¤ÎÃʳ¬¤â¼Â¹Ô¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:261
+#: lib/poptI.c:268
 #, fuzzy
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 "¤³¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ë¤è¤Ã¤Æ¥È¥ê¥¬¡¼¤µ¤ì¤ë¥¹¥¯¥ê¥×¥È¤ò\n"
 "¼Â¹Ô¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:264
+#: lib/poptI.c:271
 #, fuzzy, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸»ØÄê¤Î¥¹¥¯¥ê¥×¥È¤ò¼Â¹Ô¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:267
+#: lib/poptI.c:274
 #, fuzzy, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È¤ò¼Â¹Ô¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:270
+#: lib/poptI.c:277
 #, fuzzy, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È¤ò¼Â¹Ô¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:273
+#: lib/poptI.c:280
 #, fuzzy, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È¤ò¼Â¹Ô¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:277
+#: lib/poptI.c:284
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -2013,57 +2028,57 @@ msgstr ""
 "¸Å¤¤¥Ð¡¼¥¸¥ç¥ó¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ë¥¢¥Ã¥×¥°¥ì¡¼¥É¤·¤Þ¤¹\n"
 "(¥¢¥Ã¥×¥°¥ì¡¼¥É»þ¤Î --force ¤Ï¤³¤ì¤ò¼«Æ°Åª¤Ë¹Ô¤¤¤Þ¤¹)"
 
-#: lib/poptI.c:281
+#: lib/poptI.c:288
 msgid "print percentages as package installs"
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ëºÝ¤Ë '%' ¤Çɽ¼¨¤·¤Þ¤¹"
 
-#: lib/poptI.c:283
+#: lib/poptI.c:290
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 "ºÆÇÛÃÖ²Äǽ¤Ê¥Ñ¥Ã¥±¡¼¥¸¤ËÂФ·¡¢¥¤¥ó¥¹¥È¡¼¥ë¥Ñ¥¹\n"
 "ÀÜƬ¼­¤ò <dir> ¤ËÀßÄꤷ¤Þ¤¹"
 
-#: lib/poptI.c:284
+#: lib/poptI.c:291
 msgid "<dir>"
 msgstr ""
 
-#: lib/poptI.c:286
+#: lib/poptI.c:293
 #, fuzzy
 msgid "relocate files from path <old> to <new>"
 msgstr "<oldpath> ¤«¤é <newpath> ¤Ë¥Õ¥¡¥¤¥ë¤òºÆÇÛÃÖ¤µ¤»¤Þ¤¹"
 
-#: lib/poptI.c:287
+#: lib/poptI.c:294
 #, fuzzy
 msgid "<old>=<new>"
 msgstr "<oldpath> ¤«¤é <newpath> ¤Ë¥Õ¥¡¥¤¥ë¤òºÆÇÛÃÖ¤µ¤»¤Þ¤¹"
 
-#: lib/poptI.c:290
+#: lib/poptI.c:297
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:293
+#: lib/poptI.c:300
 msgid "install even if the package replaces installed files"
 msgstr ""
 "¥¤¥ó¥¹¥È¡¼¥ë»þ¤ËÃÖ¤­´¹¤¨¤é¤ì¤ë¥Õ¥¡¥¤¥ë¤¬\n"
 "¤¢¤Ã¤Æ¤â¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤¹"
 
-#: lib/poptI.c:296
+#: lib/poptI.c:303
 msgid "reinstall if the package is already present"
 msgstr "´û¤Ë¸ºß¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ç¤âºÆ¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤¹"
 
-#: lib/poptI.c:298
+#: lib/poptI.c:305
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:299
+#: lib/poptI.c:306
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:301
+#: lib/poptI.c:308
 msgid "don't install, but tell if it would work or not"
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤»¤º¤Ë¡¢¥Æ¥¹¥È¤Î¤ß¹Ô¤¤¤Þ¤¹"
 
-#: lib/poptI.c:304
+#: lib/poptI.c:311
 #, fuzzy
 msgid "upgrade package(s)"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¥Õ¥¡¥¤¥ë¤Ë¤Ä¤¤¤ÆÌ䤤¹ç¤ï¤»¤Þ¤¹"
@@ -2154,218 +2169,213 @@ msgstr ""
 msgid "query/verify the package(s) which provide a dependency"
 msgstr "<cap> ¤òÄ󶡤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ë¤Ä¤¤¤ÆÌ䤤¹ç¤ï¤»¤Þ¤¹"
 
-#: lib/poptQV.c:226
+#: lib/poptQV.c:230
 #, fuzzy
 msgid "list all configuration files"
 msgstr "Á´¤Æ¤ÎÀßÄê¥Õ¥¡¥¤¥ë¤òÎóµó¤·¤Þ¤¹"
 
-#: lib/poptQV.c:228
+#: lib/poptQV.c:232
 #, fuzzy
 msgid "list all documentation files"
 msgstr "Á´¤Æ¤Î¥É¥­¥å¥á¥ó¥È¥Õ¥¡¥¤¥ë¤òÎóµó¤·¤Þ¤¹"
 
-#: lib/poptQV.c:230
+#: lib/poptQV.c:234
 #, fuzzy
 msgid "dump basic file information"
 msgstr "´ðËÜŪ¤Ê¥Õ¥¡¥¤¥ë¾ðÊó¤ò¥À¥ó¥×¤·¤Þ¤¹"
 
-#: lib/poptQV.c:234
+#: lib/poptQV.c:238
 #, fuzzy
 msgid "list files in package"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤òÎóµó¤·¤Þ¤¹\n"
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:243
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:243
+#: lib/poptQV.c:247
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
-#: lib/poptQV.c:246
+#: lib/poptQV.c:250
 #, fuzzy, c-format
 msgid "skip %%readme files"
 msgstr "%s: readLead ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: lib/poptQV.c:252
+#: lib/poptQV.c:256
 msgid "use the following query format"
 msgstr "°Ê²¼¤ÎÌ䤤¹ç¤ï¤»¥Õ¥©¡¼¥Þ¥Ã¥È¤ò»ÈÍѤ·¤Þ¤¹"
 
-#: lib/poptQV.c:254
+#: lib/poptQV.c:258
 #, fuzzy
 msgid "substitute i18n sections into spec file"
 msgstr "°Ê²¼¤Î¥«¥¿¥í¥°¤«¤é i18n ¥»¥¯¥·¥ç¥ó¤òÃÖ¤­´¹¤¨¤Þ¤¹"
 
-#: lib/poptQV.c:256
+#: lib/poptQV.c:260
 msgid "display the states of the listed files"
 msgstr "Îóµó¤·¤¿¥Õ¥¡¥¤¥ë¤Î¾õÂÖ¤òɽ¼¨¤·¤Þ¤¹"
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:286
 #, fuzzy
 msgid "don't verify size of files"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: lib/poptQV.c:285
+#: lib/poptQV.c:289
 #, fuzzy
 msgid "don't verify symlink path of files"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: lib/poptQV.c:288
+#: lib/poptQV.c:292
 #, fuzzy
 msgid "don't verify owner of files"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: lib/poptQV.c:291
+#: lib/poptQV.c:295
 #, fuzzy
 msgid "don't verify group of files"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: lib/poptQV.c:294
+#: lib/poptQV.c:298
 msgid "don't verify modification time of files"
 msgstr ""
 
-#: lib/poptQV.c:297 lib/poptQV.c:300
+#: lib/poptQV.c:301 lib/poptQV.c:304
 #, fuzzy
 msgid "don't verify mode of files"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:307
+#, fuzzy
+msgid "don't verify file security contexts"
+msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
+
+#: lib/poptQV.c:309
 #, fuzzy
 msgid "don't verify files in package"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
+#: lib/poptQV.c:312 lib/poptQV.c:315 tools/rpmgraph.c:267
 #, fuzzy
 msgid "don't verify package dependencies"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î°Í¸´Ø·¸¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: lib/poptQV.c:314 lib/poptQV.c:318 lib/poptQV.c:321 lib/poptQV.c:324
+#: lib/poptQV.c:320 lib/poptQV.c:324 lib/poptQV.c:327 lib/poptQV.c:330
 #, fuzzy
 msgid "don't execute verify script(s)"
 msgstr "¤É¤ÎÃʳ¬¤â¼Â¹Ô¤·¤Þ¤»¤ó"
 
-#: lib/poptQV.c:348
+#: lib/poptQV.c:354
 #, fuzzy
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: lib/poptQV.c:351
+#: lib/poptQV.c:357
 #, fuzzy
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: lib/poptQV.c:366
+#: lib/poptQV.c:372
 #, fuzzy
 msgid "sign package(s) (identical to --resign)"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ë½ð̾¤·¤Þ¤¹(¸½ºß¤Î½ð̾¤Ï¼Î¤Æ¤é¤ì¤Þ¤¹)"
 
-#: lib/poptQV.c:368
+#: lib/poptQV.c:374
 #, fuzzy
 msgid "verify package signature(s)"
 msgstr "½ð̾¤Î¸¡¾Ú¤ò¤·¤Þ¤¹"
 
-#: lib/poptQV.c:370
+#: lib/poptQV.c:376
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:372
+#: lib/poptQV.c:378
 #, fuzzy
 msgid "sign package(s) (identical to --addsign)"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ë½ð̾¤·¤Þ¤¹(¸½ºß¤Î½ð̾¤Ï¼Î¤Æ¤é¤ì¤Þ¤¹)"
 
-#: lib/poptQV.c:374
+#: lib/poptQV.c:380
 #, fuzzy
 msgid "generate signature"
 msgstr "PGP/GPG ½ð̾¤òÀ¸À®¤·¤Þ¤¹"
 
-#: lib/psm.c:269
+#: lib/psm.c:268
 #, fuzzy
 msgid "source package expected, binary found\n"
 msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤¬´üÂÔ¤µ¤ì¤Þ¤¹¡¢¥Ð¥¤¥Ê¥ê¤Ï¸«¤Ä¤«¤ê¤Þ¤·¤¿"
 
-#: lib/psm.c:394
+#: lib/psm.c:386
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤Ï .spec ¥Õ¥¡¥¤¥ë¤ò´Þ¤ó¤Ç¤¤¤Þ¤»¤ó"
 
-#: lib/psm.c:480
+#: lib/psm.c:472
 #, c-format
 msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
 msgstr ""
 
-#: lib/psm.c:562
+#: lib/psm.c:554
 #, c-format
 msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
 msgstr ""
 
-#: lib/psm.c:570
+#: lib/psm.c:562
 #, c-format
 msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
 msgstr ""
 
-#: lib/psm.c:735
+#: lib/psm.c:730
 #, c-format
 msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
 msgstr ""
 
-#: lib/psm.c:756
+#: lib/psm.c:751
 #, fuzzy, c-format
 msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
 msgstr "%s ¤ò¥¹¥­¥Ã¥×¤·¤Þ¤¹ - Å¾Á÷¼ºÇÔ - %s\n"
 
-#: lib/psm.c:762
+#: lib/psm.c:757
 #, fuzzy, c-format
 msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
 msgstr "¥¹¥¯¥ê¥×¥È¤Î¼Â¹Ô¤Ë¼ºÇÔ"
 
-#: lib/psm.c:1191
+#: lib/psm.c:1188
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸: %s-%s-%s ¥Õ¥¡¥¤¥ë¥Æ¥¹¥È = %d\n"
 
-#: lib/psm.c:1330
+#: lib/psm.c:1323
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1439
+#: lib/psm.c:1432
 #, fuzzy
 msgid "Unable to reload signature header\n"
 msgstr "¥¢¥¤¥³¥ó¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó: %s"
 
-#: lib/psm.c:1485
-#, fuzzy, c-format
-msgid "user %s does not exist - using root\n"
-msgstr "¥æ¡¼¥¶ %s ¤Ï¸ºß¤·¤Þ¤»¤ó - root ¤ò»ÈÍѤ·¤Þ¤¹"
-
-#: lib/psm.c:1494
-#, fuzzy, c-format
-msgid "group %s does not exist - using root\n"
-msgstr "¥°¥ë¡¼¥× %s ¤Ï¸ºß¤·¤Þ¤»¤ó - root ¤ò»ÈÍѤ·¤Þ¤¹"
-
-#: lib/psm.c:1546
+#: lib/psm.c:1510
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤Î¥¢¡¼¥«¥¤¥Ö¤Î¿­Ä¹¤Ë¼ºÇÔ %s%s: %s"
 
-#: lib/psm.c:1547
+#: lib/psm.c:1511
 #, fuzzy
 msgid " on file "
 msgstr "¥Õ¥¡¥¤¥ë¾å"
 
-#: lib/psm.c:1733
+#: lib/psm.c:1697
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s"
 
-#: lib/psm.c:1736
+#: lib/psm.c:1700
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s ¼ºÇÔ"
 
-#: lib/query.c:118 lib/rpmts.c:565
+#: lib/query.c:118 lib/rpmts.c:566
 #, fuzzy, c-format
 msgid "incorrect format: %s\n"
 msgstr "¥Õ¥©¡¼¥Þ¥Ã¥ÈÃæ¤Î¥¨¥é¡¼: %s\n"
@@ -2414,8 +2424,8 @@ msgstr "
 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:462
-#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576
+#: 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
 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157
 #, c-format
 msgid "open of %s failed: %s\n"
@@ -2430,7 +2440,7 @@ msgstr "%s 
 msgid "old format source packages cannot be queried\n"
 msgstr "µì·Á¼°¤Î¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤òÌ䤤¹ç¤ï¤»¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/query.c:488 lib/rpminstall.c:608
+#: lib/query.c:488 lib/rpminstall.c:622
 #, fuzzy, c-format
 msgid "%s: not an rpm package (or package manifest): %s\n"
 msgstr "%s ¤ò¥È¥ê¥¬¡¼¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n"
@@ -2500,17 +2510,17 @@ msgstr "
 msgid "record %u could not be read\n"
 msgstr "¥ì¥³¡¼¥É %d ¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿\n"
 
-#: lib/query.c:766 lib/rpminstall.c:778
+#: lib/query.c:766 lib/rpminstall.c:792
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n"
 
-#: lib/rpmal.c:692
+#: lib/rpmal.c:694
 #, fuzzy
 msgid "(added files)"
 msgstr "ÉÔÀµ¤Ê¥Õ¥¡¥¤¥ë¤Î¾õÂÖ: %s"
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:772
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %s ¤Ï provide ¤Ë²Ã¤¨¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
@@ -2638,36 +2648,36 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï require ¤¬Ëþ¤¿¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s\n"
 
-#: lib/rpmfi.c:546
+#: lib/rpmfi.c:561
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s ¤Ï missingok ¥Õ¥é¥°¤Î¤¿¤á¥¹¥­¥Ã¥×¤·¤Þ¤¹\n"
 
-#: lib/rpmfi.c:784
+#: lib/rpmfi.c:799
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:788
+#: lib/rpmfi.c:803
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "OS ¤Ï½ü³°¤µ¤ì¤Æ¤¤¤Þ¤¹: %s"
 
-#: lib/rpmfi.c:791
+#: lib/rpmfi.c:806
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/rpmfi.c:919
+#: lib/rpmfi.c:934
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤Î½ü³°: %s%s\n"
 
-#: lib/rpmfi.c:929
+#: lib/rpmfi.c:944
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "%s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/rpmfi.c:1021
+#: lib/rpmfi.c:1036
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n"
@@ -2699,88 +2709,88 @@ msgstr ""
 msgid "Upgrading packages..."
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¥Õ¥¡¥¤¥ë¤Ë¤Ä¤¤¤ÆÌ䤤¹ç¤ï¤»¤Þ¤¹"
 
-#: lib/rpminstall.c:394
+#: lib/rpminstall.c:408
 #, fuzzy, c-format
 msgid "Adding goal: %s\n"
 msgstr "%s ¤òõ¤·¤Æ¤¤¤Þ¤¹: (%s ¤ò»ÈÍѤ·¤Æ¤¤¤Þ¤¹)...\n"
 
-#: lib/rpminstall.c:409
+#: lib/rpminstall.c:423
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "%s ¤ò¼èÆÀ¤·¤Æ¤¤¤Þ¤¹\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:436
 #, c-format
 msgid " ... as %s\n"
 msgstr "%s ¤È¤·¤Æ...\n"
 
-#: lib/rpminstall.c:426
+#: lib/rpminstall.c:440
 #, fuzzy, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s ¤ò¥¹¥­¥Ã¥×¤·¤Þ¤¹ - Å¾Á÷¼ºÇÔ - %s\n"
 
-#: lib/rpminstall.c:481 lib/rpminstall.c:872 tools/rpmgraph.c:140
+#: lib/rpminstall.c:495 lib/rpminstall.c:886 tools/rpmgraph.c:140
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s ¤ò¥¤¥ó¥¹¥È¡¼¥ë¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/rpminstall.c:523
+#: lib/rpminstall.c:537
 #, fuzzy, c-format
-msgid "package %s is not relocateable\n"
+msgid "package %s is not relocatable\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤ÏºÆÇÛÃ֤Ǥ­¤Þ¤»¤ó"
 
-#: lib/rpminstall.c:573
+#: lib/rpminstall.c:587
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤«¤é¤ÎÆɤ߹þ¤ß¥¨¥é¡¼ "
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:593
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤Ë¤Ï¤è¤ê¿·¤·¤¤ RPM ¤Î¥Ð¡¼¥¸¥ç¥ó¤¬É¬ÍפǤ¹\n"
 
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:637
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "%d ¸Ä¤Î¥½¡¼¥¹¤È %d ¸Ä¤Î¥Ð¥¤¥Ê¥ê¥Ñ¥Ã¥±¡¼¥¸¤¬¸«¤Ä¤«¤ê¤Þ¤·¤¿\n"
 
-#: lib/rpminstall.c:637 lib/rpminstall.c:810 lib/rpminstall.c:1239
+#: lib/rpminstall.c:651 lib/rpminstall.c:824 lib/rpminstall.c:1253
 #: tools/rpmgraph.c:195
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "°Í¸À­¤Î·çÇ¡:\n"
 
-#: lib/rpminstall.c:644 tools/rpmgraph.c:201
+#: lib/rpminstall.c:658 tools/rpmgraph.c:201
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:688
 msgid "installing binary packages\n"
 msgstr "¥Ð¥¤¥Ê¥ê¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ëÃæ\n"
 
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:712
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó: %s"
 
-#: lib/rpminstall.c:787
+#: lib/rpminstall.c:801
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" ¤ÏÊ£¿ô¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò»ØÄꤷ¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/rpminstall.c:856
+#: lib/rpminstall.c:870
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "%s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/rpminstall.c:862
+#: lib/rpminstall.c:876
 #, c-format
 msgid "Installing %s\n"
 msgstr "%s ¤ò¥¤¥ó¥¹¥È¡¼¥ëÃæ\n"
 
-#: lib/rpminstall.c:1233
+#: lib/rpminstall.c:1247
 #, c-format
 msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
 msgstr ""
@@ -2848,7 +2858,7 @@ msgstr "
 
 #: lib/rpmps.c:223
 #, fuzzy, c-format
-msgid "path %s in package %s is not relocateable"
+msgid "path %s in package %s is not relocatable"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤ÏºÆÇÛÃ֤Ǥ­¤Þ¤»¤ó"
 
 #: lib/rpmps.c:228
@@ -3005,51 +3015,76 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Æɤ߹þ¤à¤¿¤á¤Ë %s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó: %s¡£"
 
-#: lib/rpmts.c:162
+#: lib/rpmsx.c:343
+#, c-format
+msgid "%s:  no newline on line number %d (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:360
+#, c-format
+msgid "%s:  line number %d is missing fields (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:391
+#, 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
+#, c-format
+msgid "%s:  invalid type specifier %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmsx.c:434
+#, c-format
+msgid "%s:  invalid context %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmts.c:163
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "%s/packages.rpm ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/rpmts.c:252
+#: lib/rpmts.c:253
 #, fuzzy, c-format
 msgid "extra '(' in package label: %s\n"
 msgstr "̵¸ú¤Ê¥Ñ¥Ã¥±¡¼¥¸ÈÖ¹æ: %s\n"
 
-#: lib/rpmts.c:270
+#: lib/rpmts.c:271
 #, fuzzy, c-format
 msgid "missing '(' in package label: %s\n"
 msgstr "%s %s ¤Ç '('¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
 
-#: lib/rpmts.c:278
+#: lib/rpmts.c:279
 #, fuzzy, c-format
 msgid "missing ')' in package label: %s\n"
 msgstr "̵¸ú¤Ê¥Ñ¥Ã¥±¡¼¥¸ÈÖ¹æ: %s\n"
 
-#: lib/rpmts.c:455
+#: lib/rpmts.c:456
 #, fuzzy, c-format
 msgid "cannot open Solve database in %s\n"
 msgstr "%s/packages.rpm ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/rpmts.c:597
+#: lib/rpmts.c:598
 #, fuzzy, c-format
 msgid "Adding: %s\n"
 msgstr "¹ÔÌÜ: %s"
 
-#: lib/rpmts.c:609
+#: lib/rpmts.c:610
 #, fuzzy, c-format
 msgid "Suggesting: %s\n"
 msgstr "¥½¡¼¥¹¤Ï: %s\n"
 
-#: lib/rpmts.c:1077
+#: lib/rpmts.c:1097
 #, fuzzy
 msgid "mounted filesystems:\n"
 msgstr "¥Þ¥¦¥ó¥È¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤Î¥ê¥¹¥È¤ò¼èÆÀ¤·¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/rpmts.c:1079
+#: lib/rpmts.c:1099
 msgid "    i    dev bsize       bavail       iavail mount point\n"
 msgstr ""
 
-#: lib/rpmts.c:1135
+#: lib/rpmts.c:1155
 #, c-format
 msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
 msgstr ""
@@ -3261,12 +3296,12 @@ msgstr ""
 msgid "computing file dispositions\n"
 msgstr ""
 
-#: lib/verify.c:288
+#: lib/verify.c:319
 #, fuzzy, c-format
 msgid "missing  %c %s"
 msgstr "%s ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó\n"
 
-#: lib/verify.c:397
+#: lib/verify.c:433
 #, fuzzy, c-format
 msgid "Unsatisfied dependencies for %s: "
 msgstr "%s-%s-%s ¤Î¤¿¤á¤Î°Í¸À­¤òËþ¤¿¤·¤Æ¤¤¤Þ¤»¤ó:"
@@ -3466,164 +3501,164 @@ msgstr "%s 
 msgid "cannot open %s index\n"
 msgstr "%s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n"
 
-#: rpmdb/rpmdb.c:915
+#: rpmdb/rpmdb.c:917
 #, fuzzy
 msgid "no dbpath has been set\n"
 msgstr "dbpath ¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
 
-#: rpmdb/rpmdb.c:1193 rpmdb/rpmdb.c:1322 rpmdb/rpmdb.c:1373 rpmdb/rpmdb.c:2316
-#: rpmdb/rpmdb.c:2432 rpmdb/rpmdb.c:3161
+#: rpmdb/rpmdb.c:1195 rpmdb/rpmdb.c:1324 rpmdb/rpmdb.c:1375 rpmdb/rpmdb.c:2322
+#: rpmdb/rpmdb.c:2438 rpmdb/rpmdb.c:3167
 #, fuzzy, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "¥ì¥³¡¼¥É %s ¤Î¼èÆÀ¤Î¥¨¥é¡¼ (%s ¤«¤é)"
 
-#: rpmdb/rpmdb.c:1567
+#: rpmdb/rpmdb.c:1569
 msgid "miFreeHeader: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1577
+#: rpmdb/rpmdb.c:1579
 #, fuzzy, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ë¥¹¥È¥¢¤Ç¥¨¥é¡¼ "
 
-#: rpmdb/rpmdb.c:2209
+#: rpmdb/rpmdb.c:2212
 msgid "rpmdbNextIterator: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2242
 #, c-format
 msgid "rpmdb: damaged header #%u retrieved -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2520
+#: rpmdb/rpmdb.c:2526
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "¸¡º÷¤Î¤¿¤á¤Î %d ¤Ç ¥Ø¥Ã¥À¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó"
 
-#: rpmdb/rpmdb.c:2583
+#: rpmdb/rpmdb.c:2589
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "¥ì¥³¡¼¥É %s ¤Î¼èÆÀ¤Î¥¨¥é¡¼ (%s ¤«¤é)"
 
-#: rpmdb/rpmdb.c:2698
+#: rpmdb/rpmdb.c:2704
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "group ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n"
 
-#: rpmdb/rpmdb.c:2702
+#: rpmdb/rpmdb.c:2708
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "name ¥¤¥ó¥Ç¥Ã¥¯¥¹ºï½ü¤·¤Þ¤¹\n"
 
-#: rpmdb/rpmdb.c:2730
+#: rpmdb/rpmdb.c:2736
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "¥ì¥³¡¼¥É %s ¤Î¼èÆÀ¤Î¥¨¥é¡¼ (%s ¤«¤é)"
 
-#: rpmdb/rpmdb.c:2751
+#: rpmdb/rpmdb.c:2757
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ë¥¹¥È¥¢¤Ç¥¨¥é¡¼ "
 
-#: rpmdb/rpmdb.c:2761
+#: rpmdb/rpmdb.c:2767
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ëºï½ü¤Ç¥¨¥é¡¼"
 
-#: rpmdb/rpmdb.c:2910
+#: rpmdb/rpmdb.c:2916
 #, fuzzy, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Îõº÷¥¨¥é¡¼\n"
 
-#: rpmdb/rpmdb.c:2964
+#: rpmdb/rpmdb.c:2970
 msgid "rpmdbAdd: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3136
+#: rpmdb/rpmdb.c:3142
 #, fuzzy, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "%s ¤ò %s ¤Ø̾Á°¤òÊѹ¹¤·¤Þ¤¹\n"
 
-#: rpmdb/rpmdb.c:3140
+#: rpmdb/rpmdb.c:3146
 #, fuzzy, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "%s ¤ò %s ¤Ø̾Á°¤òÊѹ¹¤·¤Þ¤¹\n"
 
-#: rpmdb/rpmdb.c:3180
+#: rpmdb/rpmdb.c:3186
 #, fuzzy, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ë¥¹¥È¥¢¤Ç¥¨¥é¡¼ "
 
-#: rpmdb/rpmdb.c:3581
+#: rpmdb/rpmdb.c:3587
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3619
+#: rpmdb/rpmdb.c:3625
 msgid "no dbpath has been set"
 msgstr "dbpath ¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
 
-#: rpmdb/rpmdb.c:3651
+#: rpmdb/rpmdb.c:3657
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "rootdir %s Ãæ¤Ç¥Ç¡¼¥¿¥Ù¡¼¥¹¤òºÆ¹½ÃÛ¤·¤Þ¤¹\n"
 
-#: rpmdb/rpmdb.c:3655
+#: rpmdb/rpmdb.c:3661
 #, fuzzy, c-format
 msgid "temporary database %s already exists\n"
 msgstr "°ì»þŪ¤Ê¥Ç¡¼¥¿¥Ù¡¼¥¹ %s ¤Ï¤¹¤Ç¤Ë¸ºß¤·¤Æ¤¤¤Þ¤¹"
 
-#: rpmdb/rpmdb.c:3661
+#: rpmdb/rpmdb.c:3667
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ÎºîÀ®: %s\n"
 
-#: rpmdb/rpmdb.c:3663
+#: rpmdb/rpmdb.c:3669
 #, fuzzy, c-format
 msgid "creating directory %s: %s\n"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ÎºîÀ®: %s\n"
 
-#: rpmdb/rpmdb.c:3670
+#: rpmdb/rpmdb.c:3676
 #, fuzzy, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "¸Å¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î¥ª¡¼¥×¥ó\n"
 
-#: rpmdb/rpmdb.c:3683
+#: rpmdb/rpmdb.c:3689
 #, fuzzy, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "¿·¤·¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î¥ª¡¼¥×¥ó\n"
 
-#: rpmdb/rpmdb.c:3712
+#: rpmdb/rpmdb.c:3718
 #, fuzzy, c-format
 msgid "header #%u in the database is bad -- skipping.\n"
 msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹Ãæ¤Î¥ì¥³¡¼¥ÉÈÖ¹æ %d ¤ÏÉÔÀµ¤Ç¤¹ -- ¥¹¥­¥Ã¥×¤·¤Þ¤¹"
 
-#: rpmdb/rpmdb.c:3752
+#: rpmdb/rpmdb.c:3758
 #, fuzzy, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "%d ¤Ë ¥ª¥ê¥¸¥Ê¥ë¤Î¥ì¥³¡¼¥É¤òÉղäǤ­¤Þ¤»¤ó"
 
-#: rpmdb/rpmdb.c:3766
+#: rpmdb/rpmdb.c:3772
 #, fuzzy
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 "¥Ç¡¼¥¿¥Ù¡¼¥¹¤ÎºÆ¹½Ãۤ˼ºÇÔ; ¥ª¥ê¥¸¥Ê¥ë¥Ç¡¼¥¿¥Ù¡¼¥¹¤¬¤Þ¤À¤½¤³¤Ë»Ä¤Ã¤Æ¤¤¤Þ¤¹\n"
 
-#: rpmdb/rpmdb.c:3774
+#: rpmdb/rpmdb.c:3780
 msgid "failed to replace old database with new database!\n"
 msgstr "¸Å¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤ò¿·¤·¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤ËÃÖ¤­´¹¤¨¤ë¤Î¤Ë¼ºÇÔ!\n"
 
-#: rpmdb/rpmdb.c:3776
+#: rpmdb/rpmdb.c:3782
 #, fuzzy, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "%s Ãæ¤Î¥Õ¥¡¥¤¥ë¤ò¥ê¥«¥Ð¡¼¤¹¤ë¤¿¤á¤Ë %s ¤«¤é¥Õ¥¡¥¤¥ë¤ÈÃÖ¤­´¹¤¨¤Þ¤¹"
 
-#: rpmdb/rpmdb.c:3786
+#: rpmdb/rpmdb.c:3792
 #, fuzzy, c-format
 msgid "removing directory %s\n"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ÎºîÀ®: %s\n"
 
-#: rpmdb/rpmdb.c:3788
+#: rpmdb/rpmdb.c:3794
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤Îºï½ü¼ºÇÔ: %s\n"
@@ -3679,43 +3714,43 @@ msgstr "
 msgid "Macro %%%s (%s) was not used below level %d\n"
 msgstr "¥Þ¥¯¥í %%%s (%s) ¤Ï¥ì¥Ù¥ë %d °Ê²¼¤Ç»ÈÍѤµ¤ì¤Þ¤»¤ó¤Ç¤·¤¿"
 
-#: rpmio/macro.c:982
+#: rpmio/macro.c:984
 #, fuzzy, c-format
 msgid "Unknown option %c in %s(%s)\n"
 msgstr "ÉÔÌÀ¤Ê¥ª¥×¥·¥ç¥ó %c (%s(%s)Ãæ¤Ë)"
 
-#: rpmio/macro.c:1182
+#: rpmio/macro.c:1184
 #, fuzzy, c-format
 msgid "Recursion depth(%d) greater than max(%d)\n"
 msgstr "ºÆµ¢¤Î¿¼¤µ(%d)¤¬ºÇÂçÃÍ(%d)¤è¤ê¤âÂ礭¤¤"
 
-#: rpmio/macro.c:1252 rpmio/macro.c:1269
+#: rpmio/macro.c:1255 rpmio/macro.c:1272
 #, fuzzy, c-format
 msgid "Unterminated %c: %s\n"
 msgstr "½ªÃ¼¤µ¤ì¤Æ¤¤¤Ê¤¤ %c: %s"
 
-#: rpmio/macro.c:1310
+#: rpmio/macro.c:1313
 #, fuzzy, c-format
 msgid "A %% is followed by an unparseable macro\n"
 msgstr "A %% ¤Ï¹½Ê¸²òÀϤǤ­¤Ê¤¤¥Þ¥¯¥í¤¬Â³¤¤¤Æ¤¤¤Þ¤¹"
 
-#: rpmio/macro.c:1439
+#: rpmio/macro.c:1442
 #, fuzzy, c-format
 msgid "Macro %%%.*s not found, skipping\n"
 msgstr "¥Þ¥¯¥í %%%.*s ¤Ï¸«¤Ä¤«¤ê¤Þ¤»¤ó¡¢¥¹¥­¥Ã¥×¤·¤Þ¤¹"
 
-#: rpmio/macro.c:1510
+#: rpmio/macro.c:1513
 #, fuzzy
 msgid "Target buffer overflow\n"
 msgstr "¥¿¡¼¥²¥Ã¥È¥Ð¥Ã¥Õ¥¡¥ª¡¼¥Ð¡¼¥Õ¥í¡¼"
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1705 rpmio/macro.c:1711
+#: rpmio/macro.c:1708 rpmio/macro.c:1714
 #, fuzzy, c-format
 msgid "File %s: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s: %s"
 
-#: rpmio/macro.c:1714
+#: rpmio/macro.c:1717
 #, fuzzy, c-format
 msgid "File %s is smaller than %u bytes\n"
 msgstr "¥Õ¥¡¥¤¥ë %s: ¤Ï %d ¥Ð¥¤¥È¤è¤ê¾®¤µ¤¤¤Ç¤¹"
index ecd1f3f..95e6bcb 100644 (file)
--- a/po/ko.po
+++ b/po/ko.po
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:11-0500\n"
+"POT-Creation-Date: 2003-12-30 08:11-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"
@@ -20,44 +20,44 @@ msgstr "
 msgid "Unable to open spec file %s: %s\n"
 msgstr "%s spec ÆÄÀÏÀ» ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: build.c:152 build.c:164
+#: build.c:150 build.c:162
 #, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr "tar ÆÄÀÌÇÁ¸¦ ¿©´Âµ¥ ½ÇÆÐÇÔ: %m\n"
 
 #. Give up
-#: build.c:171
+#: build.c:169
 #, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "%s¿¡¼­ spec ÆÄÀÏÀ» Àдµ¥ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: build.c:199
+#: build.c:197
 #, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr "%sÀÇ À̸§À» %s(À¸)·Î º¯°æÇϴµ¥ ½ÇÆÐÇÔ: %m\n"
 
-#: build.c:239
+#: build.c:237
 #, c-format
 msgid "failed to stat %s: %m\n"
 msgstr "%sÀÇ »óÅÂ(stat)¸¦ Ç¥½ÃÇϴµ¥ ½ÇÆÐÇÔ: %m\n"
 
-#: build.c:244
+#: build.c:242
 #, c-format
 msgid "File %s is not a regular file.\n"
 msgstr "%s ÆÄÀÏÀº Á¤±Ô(regular) ÆÄÀÏÀÌ ¾Æ´Õ´Ï´Ù.\n"
 
-#: build.c:253
+#: build.c:251
 #, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr "%s ÆÄÀÏÀº spec ÆÄÀÏÀÌ ¾Æ´Ñ °Í °°½À´Ï´Ù.\n"
 
 #. parse up the build operators
-#: build.c:324
+#: build.c:322
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr "¸ñÇ¥´ë»ó(target) Ç÷§ÆûÀ¸·Î Á¦ÀÛ Áß: %s\n"
 
-#: build.c:339
+#: build.c:337
 #, c-format
 msgid "Building for target %s\n"
 msgstr "%s(À»)¸¦ Á¦ÀÛÇÏ°í ÀÖ½À´Ï´Ù\n"
@@ -110,7 +110,7 @@ msgstr "
 msgid "%s: %s\n"
 msgstr "%s: %s\n"
 
-#: rpmqv.c:129 lib/poptALL.c:114
+#: rpmqv.c:129 lib/poptALL.c:119
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM ¹öÀü - %s\n"
@@ -418,166 +418,166 @@ msgstr "'&&' 
 msgid "syntax error in expression\n"
 msgstr "Ç¥Çö½Ä¿¡¼­ ±¸¹® ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù\n"
 
-#: build/files.c:278
+#: build/files.c:280
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "TIMECHECK ½ÇÆÐ: %s\n"
 
-#: build/files.c:343 build/files.c:543 build/files.c:739
+#: build/files.c:345 build/files.c:545 build/files.c:741
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "%s %s¿¡ '(' °¡ ¾ø½À´Ï´Ù\n"
 
-#: build/files.c:354 build/files.c:673 build/files.c:750
+#: build/files.c:356 build/files.c:675 build/files.c:752
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "%s(%s¿¡ ')' °¡ ¾ø½À´Ï´Ù\n"
 
-#: build/files.c:392 build/files.c:698
+#: build/files.c:394 build/files.c:700
 #, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "ºÎÀûÇÕÇÑ %s ÅäÅ«: %s\n"
 
-#: build/files.c:502
+#: build/files.c:504
 #, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "%2$s %3$s¿¡ %1$s °¡ ¾ø½À´Ï´Ù\n"
 
-#: build/files.c:559
+#: build/files.c:561
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr "%s() ´ÙÀ½¿¡ °ø¹éÀÌ ¾øÀ½: %s\n"
 
-#: build/files.c:597
+#: build/files.c:599
 #, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "À߸øµÈ ±¸¹®: %s(%s)\n"
 
-#: build/files.c:607
+#: build/files.c:609
 #, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "À߸øµÈ ¸ðµå spec: %s(%s)\n"
 
-#: build/files.c:619
+#: build/files.c:621
 #, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "À߸øµÈ dir¸ðµå spec: %s(%s)\n"
 
-#: build/files.c:777
+#: build/files.c:779
 #, fuzzy, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr "ºñÁ¤»óÀûÀΠ·ÎÄÉÀÏ ±æÀÌ: %%lang(%2$s)¿¡ \"%1$.*s\"\n"
 
 #. @innercontinue@
-#: build/files.c:788
+#: build/files.c:790
 #, fuzzy, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr "%%lang(%2$s)¿¡ Áߺ¹µÈ ·ÎÄÉÀÏ %1$.*s°¡ Á¸ÀçÇÕ´Ï´Ù\n"
 
-#: build/files.c:917
+#: build/files.c:919
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr "%%docdirÀÇ ÇÑ°è°¡ ÃÊ°úµÇ¾ú½À´Ï´Ù\n"
 
-#: build/files.c:925
+#: build/files.c:927
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr "%%docdir¿¡ ÇϳªÀÇ Àμö¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù\n"
 
 #. We already got a file -- error
-#: build/files.c:959
+#: build/files.c:961
 #, c-format
 msgid "Two files on one line: %s\n"
 msgstr "ÇϳªÀÇ Çà¿¡ µÎ°³ÀÇ ÆÄÀÏÀÌ Á¸ÀçÇÔ: %s\n"
 
-#: build/files.c:976
+#: build/files.c:978
 #, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "ÆÄÀÏÀº ¹Ýµå½Ã \"/\" ·Î ½ÃÀÛÇؾßÇÔ: %s\n"
 
-#: build/files.c:989
+#: build/files.c:991
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr "ƯÁ¤ %%docÀ» ´Ù¸¥ Çü½Ä°ú ÇÔ²² »ç¿ëÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: build/files.c:1141
+#: build/files.c:1149
 #, c-format
 msgid "File listed twice: %s\n"
 msgstr "ÆÄÀÏ ¸ñ·ÏÀÌ Áߺ¹µÊ: %s\n"
 
-#: build/files.c:1280
+#: build/files.c:1288
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "BuildRoot¿¡ ½Éº¼¸¯¸µÅ©ÇÔ: %s -> %s\n"
 
-#: build/files.c:1520
+#: build/files.c:1535
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "ÆÄÀÏÀÌ prefix (%s)¿Í ÀÏÄ¡ÇÏÁö ¾ÊÀ½: %s\n"
 
-#: build/files.c:1544
+#: build/files.c:1559
 #, c-format
 msgid "File not found: %s\n"
 msgstr "ÆÄÀÏÀ» Ã£À» ¼ö ¾øÀ½: %s\n"
 
-#: build/files.c:1752
+#: build/files.c:1767
 #, fuzzy, c-format
 msgid "%s: public key read failed.\n"
 msgstr "%s: readLeadÀÌ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: build/files.c:1756 lib/rpmchecksig.c:580
+#: build/files.c:1771 lib/rpmchecksig.c:580
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: build/files.c:1804
+#: build/files.c:1819
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "ÆÄÀÏÀº \"/\" ·Î ½ÃÀÛÇؾßÇÔ: %s\n"
 
-#: build/files.c:1828
+#: build/files.c:1843
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "GlobÀ» »ç¿ëÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: build/files.c:1845 lib/rpminstall.c:347
+#: build/files.c:1860 lib/rpminstall.c:361
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "globÀ¸·Î ÆÄÀÏÀ» Ã£À» ¼ö ¾øÀ½: %s\n"
 
-#: build/files.c:1905
+#: build/files.c:1920
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "%s ÆÄÀÏÀÇ %%files¸¦ ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: build/files.c:1916 build/pack.c:156
+#: build/files.c:1931 build/pack.c:156
 #, c-format
 msgid "line: %s\n"
 msgstr "Çà: %s\n"
 
-#: build/files.c:2307
+#: build/files.c:2323
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "À߸øµÈ ÆÄÀÏ: %s: %s\n"
 
-#: build/files.c:2319 build/parsePrep.c:50
+#: build/files.c:2335 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "À߸øµÈ ¼ÒÀ¯ÀÚ/±×·ì: %s\n"
 
-#: build/files.c:2363
+#: build/files.c:2379
 #, fuzzy, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr "¾ÆÄ«À̺긦 Çª´Âµ¥ ½ÇÆÐÇÔ%s%s: %s\n"
 
-#: build/files.c:2386
+#: build/files.c:2402
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
 "%s"
 msgstr ""
 
-#: build/files.c:2414
+#: build/files.c:2430
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "ÆÄÀϠ󸮠Áß: %s-%s-%s\n"
@@ -716,7 +716,7 @@ msgstr "
 msgid "Could not open %s: %s\n"
 msgstr "%s(À»)¸¦ ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:632 lib/psm.c:1427
+#: build/pack.c:632 lib/psm.c:1420
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "ÆÐÅ°Áö¸¦ ÀÛ¼ºÇÒ ¼ö ¾øÀ½: %s\n"
@@ -746,7 +746,7 @@ msgstr "%s
 msgid "Unable to write payload to %s: %s\n"
 msgstr "%s¿¡ payload¸¦ ÀÛ¼ºÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:725 lib/psm.c:1725
+#: build/pack.c:725 lib/psm.c:1689
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "ÀÛ¼º: %s\n"
@@ -1229,20 +1229,20 @@ msgstr "
 msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
 msgstr "(±âÁ¸ÀÇ) rpm[23] ÆÐŰ¡°ú È£È¯Çϴ ÆÐÅ°Áö Çì´õ¸¦ »ý¼ºÇÕ´Ï´Ù"
 
-#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329
-#: lib/poptQV.c:338 lib/poptQV.c:377
+#: build/poptBT.c:229 lib/poptALL.c:240 lib/poptI.c:261 lib/poptQV.c:335
+#: lib/poptQV.c:344 lib/poptQV.c:383
 #, fuzzy
 msgid "don't verify package digest(s)"
 msgstr "ÆÐÅ°ÁöÀÇ ÀÇÁ¸¼ºÀ» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332
-#: lib/poptQV.c:340 lib/poptQV.c:380
+#: build/poptBT.c:231 lib/poptALL.c:242 lib/poptI.c:263 lib/poptQV.c:338
+#: lib/poptQV.c:346 lib/poptQV.c:386
 #, fuzzy
 msgid "don't verify database header(s) when retrieved"
 msgstr "ÆÐÅ°ÁöÀÇ ¾ÆÅ°ÅØÃĸ¦ °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335
-#: lib/poptQV.c:342 lib/poptQV.c:382
+#: build/poptBT.c:233 lib/poptALL.c:248 lib/poptI.c:265 lib/poptQV.c:341
+#: lib/poptQV.c:348 lib/poptQV.c:388
 #, fuzzy
 msgid "don't verify package signature(s)"
 msgstr "ÆÐÅ°ÁöÀÇ ¼­¸íÀ» °Ë»çÇÕ´Ï´Ù"
@@ -1314,31 +1314,31 @@ msgstr "
 msgid "Bad/unreadable  header"
 msgstr "À߸øµÈ/ÀÐÀ» ¼ö ¾ø´Â Çì´õÀÔ´Ï´Ù"
 
-#: lib/cpio.c:232
+#: lib/cpio.c:233
 msgid "Header size too big"
 msgstr "Çì´õÀÇ Å©±â°¡ ³Ê¹« Å®´Ï´Ù"
 
-#: lib/cpio.c:233
+#: lib/cpio.c:234
 msgid "Unknown file type"
 msgstr "¾Ë ¼ö ¾ø´Â ÆÄÀÏ À¯ÇüÀÔ´Ï´Ù"
 
-#: lib/cpio.c:234
+#: lib/cpio.c:235
 msgid "Missing hard link(s)"
 msgstr "Çϵ堸µÅ©¸¦ Ã£À» ¼ö ¾ø½À´Ï´Ù"
 
-#: lib/cpio.c:235
+#: lib/cpio.c:236
 msgid "MD5 sum mismatch"
 msgstr "MD5 ÇÕ°è°¡ ÀÏÄ¡ÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/cpio.c:236
+#: lib/cpio.c:237
 msgid "Internal error"
 msgstr "³»ºÎ ¿À·ù"
 
-#: lib/cpio.c:237
+#: lib/cpio.c:238
 msgid "Archive file not in header"
 msgstr "Çì´õ¿¡ ¾ÆÄ«À̺ê ÆÄÀÏÀÌ ¾ø½À´Ï´Ù"
 
-#: lib/cpio.c:250
+#: lib/cpio.c:251
 msgid " failed - "
 msgstr " ½ÇÆÐÇÔ - "
 
@@ -1476,47 +1476,57 @@ msgstr "
 msgid "file %s is on an unknown device\n"
 msgstr "%s ÆÄÀÏÀº ¾Ë ¼ö ¾ø´Â ÀåÄ¡ »ó¿¡ ÀÖ½À´Ï´Ù\n"
 
-#: lib/fsm.c:350
+#: lib/fsm.c:352
 #, fuzzy
 msgid "========== Directories not explicitly included in package:\n"
 msgstr "========= ÆÐÅ°Áö¿¡ µð·ºÅ丮°¡ Æ÷ÇԵǾî ÀÖÁö ¾ÊÀ½:\n"
 
-#: lib/fsm.c:352
+#: lib/fsm.c:354
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1293
+#: lib/fsm.c:768
+#, c-format
+msgid "user %s does not exist - using root\n"
+msgstr "%s »ç¿ëÀÚ°¡ Á¸ÀçÇÏÁö ¾Ê½À´Ï´Ù - root¸¦ ÀÌ¿ëÇÕ´Ï´Ù\n"
+
+#: lib/fsm.c:776
+#, c-format
+msgid "group %s does not exist - using root\n"
+msgstr "%s ±×·ìÀÌ Á¸ÀçÇÏÁö ¾Ê½À´Ï´Ù - root¸¦ ÀÌ¿ëÇÕ´Ï´Ù\n"
+
+#: lib/fsm.c:1334
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr "%2$04oÀÇ Çã°¡±Ç(perms)À» °¡Áø %1$s µð·ºÅ丮°¡ »ý¼ºµÇ¾ú½À´Ï´Ù.\n"
 
-#: lib/fsm.c:1592
+#: lib/fsm.c:1633
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr "Çì´õ ÆÄÀÏ ¸ñ·Ï¿¡¼­ ¾ÆÄ«À̺ê ÆÄÀÏ %s(À»)¸¦ Ã£À» ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/fsm.c:1719 lib/fsm.c:1855
+#: lib/fsm.c:1760 lib/fsm.c:1896
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s(ÀÌ)°¡ %s(À¸)·Î ÀúÀåµÇ¾ú½À´Ï´Ù\n"
 
-#: lib/fsm.c:1882
+#: lib/fsm.c:1923
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "%s %s µð·ºÅ丮 »èÁ¦¿¡ ½ÇÆÐÇÔ: ºó µð·ºÅ丮°¡ ¾Æ´Õ´Ï´Ù\n"
 
-#: lib/fsm.c:1888
+#: lib/fsm.c:1929
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s %s µð·ºÅ丮 »èÁ¦¿¡ ½ÇÆÐÇÔ: %s\n"
 
-#: lib/fsm.c:1903
+#: lib/fsm.c:1944
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s %s ¸µÅ© ÇØÁ¦¿¡ ½ÇÆÐÇÔ: %s\n"
 
-#: lib/fsm.c:1925
+#: lib/fsm.c:1966
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s(ÀÌ)°¡ %s(À¸)·Î »ý¼ºµÇ¾ú½À´Ï´Ù\n"
@@ -1632,117 +1642,117 @@ msgstr "%s: readLead
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: FreadÀÌ ½ÇÆÐÇß½À´Ï´Ù: %s\n"
 
-#: lib/poptALL.c:222
+#: lib/poptALL.c:227
 msgid "predefine MACRO with value EXPR"
 msgstr ""
 
-#: lib/poptALL.c:223 lib/poptALL.c:226
+#: lib/poptALL.c:228 lib/poptALL.c:231
 msgid "'MACRO EXPR'"
 msgstr ""
 
-#: lib/poptALL.c:225
+#: lib/poptALL.c:230
 msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: lib/poptALL.c:228
+#: lib/poptALL.c:233
 #, fuzzy
 msgid "print macro expansion of EXPR"
 msgstr "<Ç¥Çö½Ä>+ ÀÇ ¸ÅÅ©·Î È®ÀåÀ» Ãâ·ÂÇÕ´Ï´Ù"
 
-#: lib/poptALL.c:229
+#: lib/poptALL.c:234
 msgid "'EXPR'"
 msgstr ""
 
-#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254
+#: lib/poptALL.c:236 lib/poptALL.c:255 lib/poptALL.c:259
 #, fuzzy
 msgid "read <FILE:...> instead of default file(s)"
 msgstr "±âº» ¸ÅÅ©·Î ÆÄÀÏ ´ë½Å <ÆÄÀÏ:..>À» ÀоîµéÀÔ´Ï´Ù"
 
-#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255
+#: lib/poptALL.c:237 lib/poptALL.c:256 lib/poptALL.c:260
 msgid "<FILE:...>"
 msgstr ""
 
-#: lib/poptALL.c:240 lib/poptALL.c:274
+#: lib/poptALL.c:245 lib/poptALL.c:279
 msgid "disable use of libio(3) API"
 msgstr "libio(3) APIÀÇ »ç¿ëÀ» ÇØÁ¦ÇÕ´Ï´Ù"
 
-#: lib/poptALL.c:246
+#: lib/poptALL.c:251
 #, fuzzy
 msgid "send stdout to CMD"
 msgstr "Ç¥ÁØÃâ·ÂÀ» <¸í·É>À¸·Î º¸³À´Ï´Ù"
 
-#: lib/poptALL.c:247
+#: lib/poptALL.c:252
 msgid "CMD"
 msgstr ""
 
-#: lib/poptALL.c:258
+#: lib/poptALL.c:263
 #, fuzzy
 msgid "use ROOT as top level directory"
 msgstr "<µð·ºÅ丮>¸¦ ÃÖ»óÀ§ µð·ºÅ丮·Î »ç¿ëÇÕ´Ï´Ù"
 
-#: lib/poptALL.c:259
+#: lib/poptALL.c:264
 msgid "ROOT"
 msgstr ""
 
-#: lib/poptALL.c:262
+#: lib/poptALL.c:267
 msgid "display known query tags"
 msgstr "ÁúÀǠű׸¦ º¸¿©ÁÝ´Ï´Ù"
 
-#: lib/poptALL.c:264
+#: lib/poptALL.c:269
 msgid "display final rpmrc and macro configuration"
 msgstr "ÇöÀç ¼³Á¤µÇ¾î Àִ rpmrcÀÇ ³»¿ë°ú ¸ÅÅ©·Î¸¦ º¸¿©ÁÝ´Ï´Ù"
 
-#: lib/poptALL.c:266
+#: lib/poptALL.c:271
 msgid "provide less detailed output"
 msgstr "ÀÚ¼¼ÇÑ Ãâ·ÂÀ» Á¦°øÇÕ´Ï´Ù"
 
-#: lib/poptALL.c:268
+#: lib/poptALL.c:273
 msgid "provide more detailed output"
 msgstr "¾ÆÁÖ »ó¼¼ÇÑ Ãâ·ÂÀ» Á¦°øÇÕ´Ï´Ù"
 
-#: lib/poptALL.c:270
+#: lib/poptALL.c:275
 msgid "print the version of rpm being used"
 msgstr "ÇöÀç »ç¿ëµÇ°í Àִ rpm ¹öÀüÀ» Ç¥½ÃÇÕ´Ï´Ù"
 
-#: lib/poptALL.c:283
+#: lib/poptALL.c:288
 #, fuzzy
 msgid "debug payload file state machine"
 msgstr "ÄÄÇ»ÅÍÀÇ »óÅÂ(state) ÆÄÀÏÀ» µð¹ö±× ÇÕ´Ï´Ù"
 
-#: lib/poptALL.c:285
+#: lib/poptALL.c:290
 #, fuzzy
 msgid "use threads for file state machine"
 msgstr "ÄÄÇ»ÅÍÀÇ »óÅÂ(state) ÆÄÀÏÀ» µð¹ö±× ÇÕ´Ï´Ù"
 
-#: lib/poptALL.c:287
+#: lib/poptALL.c:292
 msgid "debug protocol data stream"
 msgstr "µ¥ÀÌÅÍ ½ºÆ®¸² ÇÁ·ÎÅäÄÝÀ» µð¹ö±× ÇÕ´Ï´Ù"
 
-#: lib/poptALL.c:292
+#: lib/poptALL.c:297
 #, fuzzy
 msgid "debug option/argument processing"
 msgstr "Àμö Ã³¸®°úÁ¤ (%d) µµÁß ³»ºÎ ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù :-(\n"
 
-#: lib/poptALL.c:297
+#: lib/poptALL.c:302
 #, fuzzy
 msgid "debug package state machine"
 msgstr "ÄÄÇ»ÅÍÀÇ »óÅÂ(state) ÆÄÀÏÀ» µð¹ö±× ÇÕ´Ï´Ù"
 
-#: lib/poptALL.c:299
+#: lib/poptALL.c:304
 #, fuzzy
 msgid "use threads for package state machine"
 msgstr "ÄÄÇ»ÅÍÀÇ »óÅÂ(state) ÆÄÀÏÀ» µð¹ö±× ÇÕ´Ï´Ù"
 
-#: lib/poptALL.c:311
+#: lib/poptALL.c:316
 msgid "debug rpmio I/O"
 msgstr "rpmio ÀÔ/Ãâ·ÂÀ» µð¹ö±× ÇÕ´Ï´Ù"
 
-#: lib/poptALL.c:323
+#: lib/poptALL.c:330
 msgid "debug URL cache handling"
 msgstr "URL Ä³½Ã Çڵ鸵À» µð¹ö±× ÇÕ´Ï´Ù"
 
 #. @-nullpass@
-#: lib/poptALL.c:393
+#: lib/poptALL.c:400
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1771,18 +1781,18 @@ msgstr "
 msgid "malformed rollback time/date stamp argument"
 msgstr "·Ñ¹é(rollback)ÀÇ ÀμöÀΠ½Ã°£/³¯Â¥ ½ºÅÆÇÁ°¡ ¿Ã¹Ù¸£Áö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:151
+#: lib/poptI.c:155
 #, fuzzy
 msgid "add suggested packages to transaction"
 msgstr "¼³Ä¡ ³»¿ëÀ» ÅëÇØ ÆÐÅ°Áö¸¦ ÁúÀÇ/°ËÁõ ÇÕ´Ï´Ù"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:159
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "ƯÁ¤ ÆÄÀÏÀ» »ý·«Çϱâ À§ÇÑ ¼³Á¤ÀÌ Àû¿ëµÈ °æ¿ì¿¡µµ, ÆÐÅ°Áö ¾ÈÀÇ ¸ðµç ÆÄÀÏÀ» ¼³"
 "Ä¡ÇÕ´Ï´Ù"
 
-#: lib/poptI.c:159
+#: lib/poptI.c:163
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1790,153 +1800,159 @@ msgstr ""
 "<ÆÐÅ°Áö> À̸§°ú ÀÏÄ¡Çϴ ÆÐÅ°Áö´Â ¸ðµÎ Á¦°ÅÇÕ´Ï´Ù (<ÆÐÅ°Áö>¿¡ ¿©·¯°³ÀÇ ÆÐÅ°Áö"
 "¸¦ µ¿½Ã¿¡ ÁöÁ¤ÇÒ °æ¿ì¿¡´Â ¿À·ù°¡ ¹ß»ýÇÕ´Ï´Ù)"
 
-#: lib/poptI.c:164 tools/rpmgraph.c:273
+#: lib/poptI.c:168 tools/rpmgraph.c:273
 msgid "use anaconda \"presentation order\""
 msgstr ""
 
-#: lib/poptI.c:169 lib/poptI.c:238
+#: lib/poptI.c:173 lib/poptI.c:245
 msgid "do not execute package scriptlet(s)"
 msgstr "ÆÐÅ°Áö ½ºÅ©¸³Æ²¸´(scriptlet)À» ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:173
-msgid "relocate files in non-relocateable package"
+#: lib/poptI.c:177
+#, fuzzy
+msgid "relocate files in non-relocatable package"
 msgstr "Àç¹èÄ¡ ±â´ÉÀÌ ¾ø´Â ÆÐÅ°ÁöÀÇ ÆÄÀÏÀ» Àç¹èÄ¡ÇÏ¿© ¼³Ä¡ÇÕ´Ï´Ù"
 
-#: lib/poptI.c:176
+#: lib/poptI.c:180
 msgid "save erased package files by renaming into sub-directory"
 msgstr "ÇϺÎ-µð·ºÅ丮·Î À̸§ º¯°æ½Ã »èÁ¦µÈ ÆÐÅ°Áö ÆÄÀÏÀ» ÀúÀåÇÕ´Ï´Ù"
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 msgid "erase (uninstall) package"
 msgstr "ÆÐÅ°Áö¸¦ (Á¦°Å) »èÁ¦ÇÕ´Ï´Ù"
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 msgid "<package>+"
 msgstr "<ÆÐÅ°Áö>+"
 
-#: lib/poptI.c:182 lib/poptI.c:219
+#: lib/poptI.c:186 lib/poptI.c:223
 #, fuzzy
 msgid "do not install configuration files"
 msgstr "¸ðµç ¼³Á¤ ÆÄÀÏÀ» ³ª¿­ÇÕ´Ï´Ù"
 
-#: lib/poptI.c:185 lib/poptI.c:224
+#: lib/poptI.c:189 lib/poptI.c:228
 msgid "do not install documentation"
 msgstr "ÆÐÅ°Áö¿¡ Æ÷ÇԵȠ¹®¼­ ÆÄÀÏÀ» ¼³Ä¡ÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:187
+#: lib/poptI.c:191
 msgid "skip files with leading component <path> "
 msgstr "<°æ·Î>·Î ½ÃÀ۵Ǵ ÆÄÀÏÀº ¼³Ä¡ÇÏÁö ¾Ê½À´Ï´Ù "
 
-#: lib/poptI.c:188
+#: lib/poptI.c:192
 msgid "<path>"
 msgstr "<°æ·Î>"
 
-#: lib/poptI.c:191
+#: lib/poptI.c:195
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "--replacepkgs ¿Í --replacefiles ¿É¼ÇÀ» µ¿½Ã¿¡ »ç¿ëÇÕ´Ï´Ù"
 
-#: lib/poptI.c:195
+#: lib/poptI.c:199
 msgid "upgrade package(s) if already installed"
 msgstr "±âÁ¸¿¡ ¼³Ä¡µÈ ÆÐÅ°Áö¸¦ ¾÷±×·¹À̵å ÇÕ´Ï´Ù"
 
-#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
+#: lib/poptI.c:200 lib/poptI.c:216 lib/poptI.c:312
 msgid "<packagefile>+"
 msgstr "<ÆÐÅ°ÁöÆÄÀÏ>+"
 
-#: lib/poptI.c:198
+#: lib/poptI.c:202
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 "ÆÐÅ°Áö ¼³Ä¡¸¦ Çؽø¶Å©(#)·Î Ç¥½ÃÇÕ´Ï´Ù (-v ¿É¼Ç°ú ÇÔ²² »ç¿ëÇϴ °ÍÀÌ ÁÁ½À´Ï"
 "´Ù)"
 
-#: lib/poptI.c:201
+#: lib/poptI.c:205
 msgid "don't verify package architecture"
 msgstr "ÆÐÅ°ÁöÀÇ ¾ÆÅ°ÅØÃĸ¦ °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:204
+#: lib/poptI.c:208
 msgid "don't verify package operating system"
 msgstr "ÆÐÅ°ÁöÀÇ ¿î¿µÃ¼Á¦¸¦ °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:207
+#: lib/poptI.c:211
 msgid "don't check disk space before installing"
 msgstr "ÆÐÅ°Áö¸¦ ¼³Ä¡Çϱâ Àü¿¡ µð½ºÅ© °ø°£À» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:209
+#: lib/poptI.c:213
 msgid "install documentation"
 msgstr "ÆÐÅ°Áö¿¡ Æ÷ÇԵȠ¹®¼­ ÆÄÀÏÀ» ¼³Ä¡ÇÕ´Ï´Ù"
 
-#: lib/poptI.c:212
+#: lib/poptI.c:216
 #, fuzzy
 msgid "install package(s)"
 msgstr "ÆÐÅ°Áö¸¦ ¼³Ä¡ÇÕ´Ï´Ù"
 
-#: lib/poptI.c:215
+#: lib/poptI.c:219
 msgid "update the database, but do not modify the filesystem"
 msgstr "ÆÄÀϽýºÅÛÀ» º¯°æÇÏÁö ¾Ê°í, µ¥ÀÌÅͺ£À̽º¸¦ °»½ÅÇÕ´Ï´Ù"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:225
 msgid "do not verify package dependencies"
 msgstr "ÆÐÅ°ÁöÀÇ ÀÇÁ¸¼ºÀ» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:231 lib/poptQV.c:279 lib/poptQV.c:282
 msgid "don't verify MD5 digest of files"
 msgstr "ÆÄÀÏÀÇ MD5 Ãà¾à(digest)À» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:230
+#: lib/poptI.c:233
+#, fuzzy
+msgid "don't install file security contexts"
+msgstr "¸ðµç ¼³Á¤ ÆÄÀÏÀ» ³ª¿­ÇÕ´Ï´Ù"
+
+#: lib/poptI.c:237
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "ÀÇÁ¸¼ºÀÌ Àִ ÆÐÅ°Áö¸¦ ¼³Ä¡Çϵµ·Ï Àç¿ä±¸ÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:235
+#: lib/poptI.c:242
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:242
+#: lib/poptI.c:249
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "%%pre ½ºÅ©¸³Æ²¸´(scriptlet)À» ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù (ÀÖÀ» °æ¿ì)"
 
-#: lib/poptI.c:245
+#: lib/poptI.c:252
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "%%post ½ºÅ©¸³Æ²¸´(scriptlet)À» ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù (ÀÖÀ» °æ¿ì)"
 
-#: lib/poptI.c:248
+#: lib/poptI.c:255
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "%%preun ½ºÅ©¸³Æ²¸´(scriptlet)À» ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù (ÀÖÀ» °æ¿ì)"
 
-#: lib/poptI.c:251
+#: lib/poptI.c:258
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "%%postun ½ºÅ©¸³Æ²¸´(scriptlet)À» ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù (ÀÖÀ» °æ¿ì)"
 
-#: lib/poptI.c:261
+#: lib/poptI.c:268
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 "ÀÌ ÆÐÅ°Áö¿¡ ÀÇÇØ »ý¼ºµÇ´Â(triggered) ¾î¶°ÇÑ ½ºÅ©¸³Æ²¸´(scriptlet)µµ ½ÇÇàÇÏÁö "
 "¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:264
+#: lib/poptI.c:271
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "¾î¶°ÇÑ %%triggerprein ½ºÅ©¸³Æ²¸´(scriptlet)µµ ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:267
+#: lib/poptI.c:274
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "¾î¶°ÇÑ %%triggerin ½ºÅ©¸³Æ²¸´(scriptlet)µµ ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:270
+#: lib/poptI.c:277
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "¾î¶°ÇÑ %%triggerun ½ºÅ©¸³Æ²¸´(scriptlet)µµ ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:273
+#: lib/poptI.c:280
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "¾î¶°ÇÑ %%triggerpostun ½ºÅ©¸³Æ²¸´(scriptlet)µµ ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:277
+#: lib/poptI.c:284
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1944,52 +1960,52 @@ msgstr ""
 "ÀÌÀü ¹öÀüÀÇ ÆÐÅ°Áö·Î ´Ù¿î±×·¹À̵å ÇÕ´Ï´Ù (--force ¿É¼ÇÀ» »ç¿ë½Ã¿¡´Â ÀÌ ¿É¼Ç"
 "ÀÌ ÀÚµ¿À¸·Î Àû¿ëµË´Ï´Ù)"
 
-#: lib/poptI.c:281
+#: lib/poptI.c:288
 msgid "print percentages as package installs"
 msgstr "ÆÐÅ°Áö ¼³Ä¡¸¦ ÆÛ¼¾Æ®(%)·Î Ç¥½ÃÇÕ´Ï´Ù"
 
-#: lib/poptI.c:283
+#: lib/poptI.c:290
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 "Àç¹èÄ¡ ±â´ÉÀÌ Àִ ÆÐÅ°ÁöÀÇ °æ¿ì, ÁöÁ¤ÇÑ <µð·ºÅ丮>·Î Àç¹èÄ¡ÇÏ¿© ¼³Ä¡ÇÕ´Ï´Ù"
 
-#: lib/poptI.c:284
+#: lib/poptI.c:291
 msgid "<dir>"
 msgstr "<µð·ºÅ丮>"
 
-#: lib/poptI.c:286
+#: lib/poptI.c:293
 msgid "relocate files from path <old> to <new>"
 msgstr "<ÀÌÀü°æ·Î>¿¡¼­ <»õ·Î¿î°æ·Î>·Î ÆÄÀÏÀ» Àç¹èÄ¡ ÇÕ´Ï´Ù"
 
-#: lib/poptI.c:287
+#: lib/poptI.c:294
 msgid "<old>=<new>"
 msgstr "<ÀÌÀü°æ·Î>=<»õ·Î¿î°æ·Î>"
 
-#: lib/poptI.c:290
+#: lib/poptI.c:297
 msgid "save erased package files by repackaging"
 msgstr "ÀçÆÐŰ¡(repackaging)À¸·Î ÀÎÇØ »èÁ¦µÇ´Â ÆÐÅ°Áö ÆÄÀÏÀ» ÀúÀåÇÕ´Ï´Ù"
 
-#: lib/poptI.c:293
+#: lib/poptI.c:300
 msgid "install even if the package replaces installed files"
 msgstr "ÆÐÅ°Áö ¼³Ä¡½Ã ±âÁ¸¿¡ ¼³Ä¡µÇ¾î Àִ ÆÄÀÏÀ» µ¤¾î¾¹´Ï´Ù"
 
-#: lib/poptI.c:296
+#: lib/poptI.c:303
 msgid "reinstall if the package is already present"
 msgstr "ÆÐÅ°Áö°¡ À̹̠¼³Ä¡µÇ¾î Àִ °æ¿ì¿¡µµ ¼³Ä¡ÇÕ´Ï´Ù"
 
-#: lib/poptI.c:298
+#: lib/poptI.c:305
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr "»õ·Î ¼³Ä¡ »èÁ¦, ÀÌÀü ¼³Ä¡ À缳ġ, ÆÐÅ°Áö, <³¯Â¥> º¹±¸(back to date)"
 
-#: lib/poptI.c:299
+#: lib/poptI.c:306
 msgid "<date>"
 msgstr "<³¯Â¥>"
 
-#: lib/poptI.c:301
+#: lib/poptI.c:308
 msgid "don't install, but tell if it would work or not"
 msgstr "ÆÐÅ°Áö¸¦ ¼³Ä¡ÇÏÁö ¾Ê°í, Á¦´ë·Î ¼³Ä¡µÇ´ÂÁö¸¸ È®ÀÎÇÕ´Ï´Ù"
 
-#: lib/poptI.c:304
+#: lib/poptI.c:311
 msgid "upgrade package(s)"
 msgstr "ÆÐÅ°Áö¸¦ ¾÷±×·¹À̵å ÇÕ´Ï´Ù"
 
@@ -2064,206 +2080,201 @@ msgstr "
 msgid "query/verify the package(s) which provide a dependency"
 msgstr "ÀÇÁ¸¼ºÀ» Á¦°øÇϴ ÆÐÅ°Áö¿¡ ´ëÇØ ÁúÀÇ/°ËÁõ ÇÕ´Ï´Ù"
 
-#: lib/poptQV.c:226
+#: lib/poptQV.c:230
 msgid "list all configuration files"
 msgstr "¸ðµç ¼³Á¤ ÆÄÀÏÀ» ³ª¿­ÇÕ´Ï´Ù"
 
-#: lib/poptQV.c:228
+#: lib/poptQV.c:232
 msgid "list all documentation files"
 msgstr "¸ðµç ¹®¼­ ÆÄÀÏÀ» ³ª¿­ÇÕ´Ï´Ù"
 
-#: lib/poptQV.c:230
+#: lib/poptQV.c:234
 msgid "dump basic file information"
 msgstr "±âº» ÆÄÀÏ Á¤º¸¸¦ º¸¿©ÁÝ´Ï´Ù"
 
-#: lib/poptQV.c:234
+#: lib/poptQV.c:238
 msgid "list files in package"
 msgstr "ÆÐÅ°Áö ¾ÈÀÇ ÆÄÀÏÀ» ³ª¿­ÇÕ´Ï´Ù"
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:243
 #, c-format
 msgid "skip %%ghost files"
 msgstr "%%ghost ÆÄÀÏÀ» »ý·«ÇÕ´Ï´Ù"
 
-#: lib/poptQV.c:243
+#: lib/poptQV.c:247
 #, c-format
 msgid "skip %%license files"
 msgstr "%%license ÆÄÀÏÀ» »ý·«ÇÕ´Ï´Ù"
 
-#: lib/poptQV.c:246
+#: lib/poptQV.c:250
 #, c-format
 msgid "skip %%readme files"
 msgstr "%%readme ÆÄÀÏÀ» »ý·«ÇÕ´Ï´Ù"
 
-#: lib/poptQV.c:252
+#: lib/poptQV.c:256
 msgid "use the following query format"
 msgstr "´ÙÀ½ÀÇ ÁúÀÇ Çü½ÄÀ» »ç¿ëÇϽʽÿä"
 
-#: lib/poptQV.c:254
+#: lib/poptQV.c:258
 msgid "substitute i18n sections into spec file"
 msgstr "spec ÆÄÀÏ ¾ÈÀÇ i18n Ç׸ñ(section)À» ´ëü(substitute)ÇÕ´Ï´Ù"
 
-#: lib/poptQV.c:256
+#: lib/poptQV.c:260
 msgid "display the states of the listed files"
 msgstr "³ª¿­µÈ ÆÄÀÏÀÇ »óÅÂ(state)¸¦ º¸¿©ÁÝ´Ï´Ù"
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:286
 msgid "don't verify size of files"
 msgstr "ÆÄÀÏÀÇ ¿ë·®À» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptQV.c:285
+#: lib/poptQV.c:289
 msgid "don't verify symlink path of files"
 msgstr "ÆÄÀÏÀÇ ½Éº¼¸¯ ¸µÅ© °æ·Î¸¦ °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptQV.c:288
+#: lib/poptQV.c:292
 msgid "don't verify owner of files"
 msgstr "ÆÄÀÏÀÇ ¼ÒÀ¯ÀÚ¸¦ °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptQV.c:291
+#: lib/poptQV.c:295
 msgid "don't verify group of files"
 msgstr "ÆÄÀÏÀÇ ±×·ìÀ» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptQV.c:294
+#: lib/poptQV.c:298
 msgid "don't verify modification time of files"
 msgstr "ÆÄÀÏÀÇ ÃÖÁ¾ º¯°æ ½Ã°£À» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptQV.c:297 lib/poptQV.c:300
+#: lib/poptQV.c:301 lib/poptQV.c:304
 msgid "don't verify mode of files"
 msgstr "ÆÄÀÏÀÇ ¸ðµå¸¦ °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:307
+#, fuzzy
+msgid "don't verify file security contexts"
+msgstr "ÆÐÅ°Áö ¾ÈÀÇ ÆÄÀÏÀ» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
+
+#: lib/poptQV.c:309
 msgid "don't verify files in package"
 msgstr "ÆÐÅ°Áö ¾ÈÀÇ ÆÄÀÏÀ» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
+#: lib/poptQV.c:312 lib/poptQV.c:315 tools/rpmgraph.c:267
 msgid "don't verify package dependencies"
 msgstr "ÆÐÅ°ÁöÀÇ ÀÇÁ¸¼ºÀ» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptQV.c:314 lib/poptQV.c:318 lib/poptQV.c:321 lib/poptQV.c:324
+#: lib/poptQV.c:320 lib/poptQV.c:324 lib/poptQV.c:327 lib/poptQV.c:330
 #, fuzzy
 msgid "don't execute verify script(s)"
 msgstr "%verifyscript¸¦ ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù (ÀÖÀ» °æ¿ì)"
 
-#: lib/poptQV.c:348
+#: lib/poptQV.c:354
 #, fuzzy
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr "SHA1 Ãà¾à(digest) Çì´õ¸¦ °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptQV.c:351
+#: lib/poptQV.c:357
 #, fuzzy
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr "ÆÄÀÏÀÇ MD5 Ãà¾à(digest)À» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptQV.c:366
+#: lib/poptQV.c:372
 #, fuzzy
 msgid "sign package(s) (identical to --resign)"
 msgstr "ÆÐÅ°Áö¿¡ ¼­¸íÇÕ´Ï´Ù (±âÁ¸ÀÇ ¼­¸íÀº »èÁ¦µË´Ï´Ù)"
 
-#: lib/poptQV.c:368
+#: lib/poptQV.c:374
 #, fuzzy
 msgid "verify package signature(s)"
 msgstr "ÆÐÅ°ÁöÀÇ ¼­¸íÀ» °Ë»çÇÕ´Ï´Ù"
 
-#: lib/poptQV.c:370
+#: lib/poptQV.c:376
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:372
+#: lib/poptQV.c:378
 #, fuzzy
 msgid "sign package(s) (identical to --addsign)"
 msgstr "ÆÐÅ°Áö¿¡ ¼­¸íÇÕ´Ï´Ù (±âÁ¸ÀÇ ¼­¸íÀº »èÁ¦µË´Ï´Ù)"
 
-#: lib/poptQV.c:374
+#: lib/poptQV.c:380
 msgid "generate signature"
 msgstr "¼­¸íÀ» ÀÛ¼ºÇÕ´Ï´Ù"
 
-#: lib/psm.c:269
+#: lib/psm.c:268
 msgid "source package expected, binary found\n"
 msgstr "¼Ò½º ÆÐÅ°Áö°¡ ÇÊ¿äÇϸç, ¹ÙÀ̳ʸ®°¡ °Ë»öµÇ¾ú½À´Ï´Ù\n"
 
-#: lib/psm.c:394
+#: lib/psm.c:386
 msgid "source package contains no .spec file\n"
 msgstr "¼Ò½º ÆÐÅ°Áö¿¡ .spec ÆÄÀÏÀÌ Æ÷ÇԵǾî ÀÖÁö ¾Ê½À´Ï´Ù\n"
 
-#: lib/psm.c:480
+#: lib/psm.c:472
 #, c-format
 msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
 msgstr ""
 
-#: lib/psm.c:562
+#: lib/psm.c:554
 #, c-format
 msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
 msgstr ""
 
-#: lib/psm.c:570
+#: lib/psm.c:562
 #, c-format
 msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
 msgstr ""
 
-#: lib/psm.c:735
+#: lib/psm.c:730
 #, c-format
 msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
 msgstr ""
 
-#: lib/psm.c:756
+#: lib/psm.c:751
 #, 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:762
+#: lib/psm.c:757
 #, 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:1191
+#: lib/psm.c:1188
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "%s: %s-%s-%s¿¡ %dÀÇ ÆÄÀÏÀÌ ÀÖ½À´Ï´Ù, Å×½ºÆ® = %d\n"
 
-#: lib/psm.c:1330
+#: lib/psm.c:1323
 #, fuzzy, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 "%s: %s ½ºÅ©¸³Æ²¸´(scriptlet)ÀÌ ½ÇÆÐÇß½À´Ï´Ù (%d), %s-%s-%s(À»)¸¦ »ý·«ÇÕ´Ï´Ù\n"
 
-#: lib/psm.c:1439
+#: lib/psm.c:1432
 #, fuzzy
 msgid "Unable to reload signature header\n"
 msgstr "¼­¸í(signature) Çì´õ¸¦ ´Ù½Ã Àоî¿Ã ¼ö ¾ø½À´Ï´Ù.\n"
 
-#: lib/psm.c:1485
-#, c-format
-msgid "user %s does not exist - using root\n"
-msgstr "%s »ç¿ëÀÚ°¡ Á¸ÀçÇÏÁö ¾Ê½À´Ï´Ù - root¸¦ ÀÌ¿ëÇÕ´Ï´Ù\n"
-
-#: lib/psm.c:1494
-#, c-format
-msgid "group %s does not exist - using root\n"
-msgstr "%s ±×·ìÀÌ Á¸ÀçÇÏÁö ¾Ê½À´Ï´Ù - root¸¦ ÀÌ¿ëÇÕ´Ï´Ù\n"
-
-#: lib/psm.c:1546
+#: lib/psm.c:1510
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "¾ÆÄ«À̺긦 Çª´Âµ¥ ½ÇÆÐÇÔ%s%s: %s\n"
 
-#: lib/psm.c:1547
+#: lib/psm.c:1511
 msgid " on file "
 msgstr " ´ÙÀ½ ÆÄÀÏÀÇ "
 
-#: lib/psm.c:1733
+#: lib/psm.c:1697
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%2$s ÆÄÀÏÀÇ %1$s(ÀÌ)°¡ ½ÇÆÐÇÔ: %3$s\n"
 
-#: lib/psm.c:1736
+#: lib/psm.c:1700
 #, c-format
 msgid "%s failed: %s\n"
 msgstr "%s(ÀÌ)°¡ ½ÇÆÐÇÔ: %s\n"
 
-#: lib/query.c:118 lib/rpmts.c:565
+#: lib/query.c:118 lib/rpmts.c:566
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "¿Ã¹Ù¸£Áö ¸øÇÑ Çü½Ä: %s\n"
@@ -2311,8 +2322,8 @@ msgstr "
 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:462
-#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576
+#: 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
 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157
 #, c-format
 msgid "open of %s failed: %s\n"
@@ -2327,7 +2338,7 @@ msgstr "%s(
 msgid "old format source packages cannot be queried\n"
 msgstr "ÀÌÀü Çü½ÄÀÇ ¼Ò½º ÆÐÅ°Áö´Â ÁúÀÇÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/query.c:488 lib/rpminstall.c:608
+#: lib/query.c:488 lib/rpminstall.c:622
 #, fuzzy, c-format
 msgid "%s: not an rpm package (or package manifest): %s\n"
 msgstr "%s(¿Í)°ú ÀÏÄ¡Çϴ ÆÐÅ°Áö°¡ ¾øÀ½: %s\n"
@@ -2396,17 +2407,17 @@ msgstr "
 msgid "record %u could not be read\n"
 msgstr "±â·Ï(record) ¹øÈ£ %u(Àº)´Â ÀÐÀ» ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/query.c:766 lib/rpminstall.c:778
+#: lib/query.c:766 lib/rpminstall.c:792
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "%s ÆÐÅ°Áö°¡ ¼³Ä¡µÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù\n"
 
-#: lib/rpmal.c:692
+#: lib/rpmal.c:694
 #, fuzzy
 msgid "(added files)"
 msgstr "À߸øµÈ db ÆÄÀÏ %s\n"
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:772
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %-45s ¿¹ (Á¦°øÀÌ Ãß°¡µÊ)\n"
@@ -2532,36 +2543,36 @@ msgstr "  %s    A %s\tB %s\n"
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "%s ÆÐÅ°ÁöÀÇ ÇÊ¿ä»çÇ×(³»¿ª)ÀÌ ¸¸Á·ÇÏÁö ¾ÊÀ½: %s\n"
 
-#: lib/rpmfi.c:546
+#: lib/rpmfi.c:561
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "missingok Ç÷¡±×·Î ÀÎÇØ %s(À»)¸¦ »ý·«ÇÕ´Ï´Ù\n"
 
-#: lib/rpmfi.c:784
+#: lib/rpmfi.c:799
 msgid "========== relocations\n"
 msgstr "========== Àç¹èÄ¡\n"
 
-#: lib/rpmfi.c:788
+#: lib/rpmfi.c:803
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr "%5d Á¦¿Ü  %s\n"
 
-#: lib/rpmfi.c:791
+#: lib/rpmfi.c:806
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d Àç¹èÄ¡ %s -> %s\n"
 
-#: lib/rpmfi.c:919
+#: lib/rpmfi.c:934
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "%s %s(À»)¸¦ Á¦¿Ü½Ãŵ´Ï´Ù\n"
 
-#: lib/rpmfi.c:929
+#: lib/rpmfi.c:944
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "%s(À»)¸¦ %s(À¸)·Î Àç¹èÄ¡ ÇÕ´Ï´Ù\n"
 
-#: lib/rpmfi.c:1021
+#: lib/rpmfi.c:1036
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "%s µð·ºÅ丮¸¦ %s(À¸)·Î Àç¹èÄ¡ ÇÕ´Ï´Ù\n"
@@ -2593,88 +2604,88 @@ msgstr "
 msgid "Upgrading packages..."
 msgstr "ÆÐÅ°Áö¸¦ ¾÷±×·¹À̵å ÇÕ´Ï´Ù"
 
-#: lib/rpminstall.c:394
+#: lib/rpminstall.c:408
 #, fuzzy, c-format
 msgid "Adding goal: %s\n"
 msgstr "%s(À»)¸¦ Ã£´Â Áß: (%s »ç¿ë)...\n"
 
-#: lib/rpminstall.c:409
+#: lib/rpminstall.c:423
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "%s(À»)¸¦ º¹±¸ÇÕ´Ï´Ù\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:436
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... %s(À¸)·Î\n"
 
-#: lib/rpminstall.c:426
+#: lib/rpminstall.c:440
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s(À»)¸¦ »ý·«ÇÕ´Ï´Ù - Àü¼Û(transfer)¿¡ ½ÇÆÐÇÔ - %s\n"
 
-#: lib/rpminstall.c:481 lib/rpminstall.c:872 tools/rpmgraph.c:140
+#: lib/rpminstall.c:495 lib/rpminstall.c:886 tools/rpmgraph.c:140
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s(Àº)´Â ¼³Ä¡ÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/rpminstall.c:523
-#, c-format
-msgid "package %s is not relocateable\n"
+#: lib/rpminstall.c:537
+#, fuzzy, c-format
+msgid "package %s is not relocatable\n"
 msgstr "%s ÆÐÅ°Áö´Â Àç¹èÄ¡ÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/rpminstall.c:573
+#: lib/rpminstall.c:587
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "%s ÆÄÀÏÀ» Àд µµÁß ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù\n"
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:593
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "%s ÆÄÀÏÀº ÃֽŠ¹öÀüÀÇ RPMÀ» ÇÊ¿ä·Î ÇÕ´Ï´Ù\n"
 
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:637
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "%dÀÇ ¼Ò½º¿Í %dÀÇ ¹ÙÀ̳ʸ® ÆÐÅ°Áö°¡ °Ë»öµÇ¾ú½À´Ï´Ù\n"
 
-#: lib/rpminstall.c:637 lib/rpminstall.c:810 lib/rpminstall.c:1239
+#: lib/rpminstall.c:651 lib/rpminstall.c:824 lib/rpminstall.c:1253
 #: tools/rpmgraph.c:195
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "ÀÇÁ¸¼º ¹®Á¦·Î ÀÎÇØ ½ÇÆÐÇÔ:\n"
 
-#: lib/rpminstall.c:644 tools/rpmgraph.c:201
+#: lib/rpminstall.c:658 tools/rpmgraph.c:201
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:688
 msgid "installing binary packages\n"
 msgstr "¹ÙÀ̳ʸ® ÆÐÅ°Áö¸¦ ¼³Ä¡ÇÕ´Ï´Ù\n"
 
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:712
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "%s ÆÄÀÏÀ» ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: lib/rpminstall.c:787
+#: lib/rpminstall.c:801
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" ¿©·¯°³ÀÇ ÆÐÅ°Áö¸¦ ÁöÁ¤ÇÕ´Ï´Ù\n"
 
-#: lib/rpminstall.c:856
+#: lib/rpminstall.c:870
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "%s(À»)¸¦ ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: lib/rpminstall.c:862
+#: lib/rpminstall.c:876
 #, c-format
 msgid "Installing %s\n"
 msgstr "%s(À»)¸¦ ¼³Ä¡ÇÕ´Ï´Ù\n"
 
-#: lib/rpminstall.c:1233
+#: lib/rpminstall.c:1247
 #, c-format
 msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
 msgstr ""
@@ -2741,8 +2752,8 @@ msgid "package %s is already installed"
 msgstr "%s ÆÐÅ°Áö´Â À̹̠¼³Ä¡µÇ¾î ÀÖ½À´Ï´Ù"
 
 #: lib/rpmps.c:223
-#, c-format
-msgid "path %s in package %s is not relocateable"
+#, fuzzy, c-format
+msgid "path %s in package %s is not relocatable"
 msgstr "%2$s ÆÐÅ°Áö ¾ÈÀÇ %1$s °æ·Î´Â Àç¹èÄ¡ÇÒ ¼ö ¾ø½À´Ï´Ù"
 
 #: lib/rpmps.c:228
@@ -2896,50 +2907,75 @@ msgstr "%s(
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "%s(À»)¸¦ ¿­ ¼ö ¾øÀ½: %s.\n"
 
-#: lib/rpmts.c:162
+#: lib/rpmsx.c:343
+#, c-format
+msgid "%s:  no newline on line number %d (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:360
+#, c-format
+msgid "%s:  line number %d is missing fields (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:391
+#, 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
+#, c-format
+msgid "%s:  invalid type specifier %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmsx.c:434
+#, c-format
+msgid "%s:  invalid context %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmts.c:163
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "%s ¾ÈÀÇ ÆÐÅ°Áö µ¥ÀÌÅͺ£À̽º¸¦ ¿­ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/rpmts.c:252
+#: lib/rpmts.c:253
 #, fuzzy, c-format
 msgid "extra '(' in package label: %s\n"
 msgstr "ºÎÀûÇÕÇÑ ÆÐÅ°Áö ¹øÈ£: %s\n"
 
-#: lib/rpmts.c:270
+#: lib/rpmts.c:271
 #, fuzzy, c-format
 msgid "missing '(' in package label: %s\n"
 msgstr "%s %s¿¡ '(' °¡ ¾ø½À´Ï´Ù\n"
 
-#: lib/rpmts.c:278
+#: lib/rpmts.c:279
 #, fuzzy, c-format
 msgid "missing ')' in package label: %s\n"
 msgstr "ºÎÀûÇÕÇÑ ÆÐÅ°Áö ¹øÈ£: %s\n"
 
-#: lib/rpmts.c:455
+#: lib/rpmts.c:456
 #, fuzzy, c-format
 msgid "cannot open Solve database in %s\n"
 msgstr "%sÀÇ rpm µ¥ÀÌÅͺ£À̽º¸¦ ¿­ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/rpmts.c:597
+#: lib/rpmts.c:598
 #, fuzzy, c-format
 msgid "Adding: %s\n"
 msgstr "Çà: %s\n"
 
-#: lib/rpmts.c:609
+#: lib/rpmts.c:610
 #, fuzzy, c-format
 msgid "Suggesting: %s\n"
 msgstr "%s(À»)¸¦ º¹±¸ÇÕ´Ï´Ù\n"
 
-#: lib/rpmts.c:1077
+#: lib/rpmts.c:1097
 msgid "mounted filesystems:\n"
 msgstr ""
 
-#: lib/rpmts.c:1079
+#: lib/rpmts.c:1099
 msgid "    i    dev bsize       bavail       iavail mount point\n"
 msgstr ""
 
-#: lib/rpmts.c:1135
+#: lib/rpmts.c:1155
 #, c-format
 msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
 msgstr ""
@@ -3146,12 +3182,12 @@ msgstr ""
 msgid "computing file dispositions\n"
 msgstr ""
 
-#: lib/verify.c:288
+#: lib/verify.c:319
 #, fuzzy, c-format
 msgid "missing  %c %s"
 msgstr "´ÙÀ½À» Ã£À» ¼ö ¾øÀ½    %s"
 
-#: lib/verify.c:397
+#: lib/verify.c:433
 #, fuzzy, c-format
 msgid "Unsatisfied dependencies for %s: "
 msgstr "%s-%s-%s¿¡ ÀÇÁ¸¼º ¹®Á¦ ¹ß»ý: "
@@ -3353,166 +3389,166 @@ msgstr "db%2$d(
 msgid "cannot open %s index\n"
 msgstr "%s À妽º¸¦ ¿­ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:915
+#: rpmdb/rpmdb.c:917
 msgid "no dbpath has been set\n"
 msgstr "db°æ·Î°¡ ¼³Á¤µÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:1193 rpmdb/rpmdb.c:1322 rpmdb/rpmdb.c:1373 rpmdb/rpmdb.c:2316
-#: rpmdb/rpmdb.c:2432 rpmdb/rpmdb.c:3161
+#: rpmdb/rpmdb.c:1195 rpmdb/rpmdb.c:1324 rpmdb/rpmdb.c:1375 rpmdb/rpmdb.c:2322
+#: rpmdb/rpmdb.c:2438 rpmdb/rpmdb.c:3167
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
 "%3$s À妽º¿¡¼­ \"%2$s\" ·¹Äڵ带 ¾ò´Â µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:1567
+#: rpmdb/rpmdb.c:1569
 msgid "miFreeHeader: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1577
+#: rpmdb/rpmdb.c:1579
 #, fuzzy, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "%3$s(À¸)·Î %2$s ·¹Äڵ带 ÀúÀåÇϴ µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:2209
+#: rpmdb/rpmdb.c:2212
 msgid "rpmdbNextIterator: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2242
 #, fuzzy, c-format
 msgid "rpmdb: damaged header #%u retrieved -- skipping.\n"
 msgstr "rpmdb: ¼Õ»óµÈ Çì´õ #%u(ÀÌ)°¡ º¹±¸(retrieved)µÇ¾ú½À´Ï´Ù, »ý·«ÇÕ´Ï´Ù.\n"
 
-#: rpmdb/rpmdb.c:2520
+#: rpmdb/rpmdb.c:2526
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "%s: 0x%xÀÇ Çì´õ¸¦ ÀÐÀ» ¼ö ¾ø½À´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:2583
+#: rpmdb/rpmdb.c:2589
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr ""
 "%3$s À妽º¿¡¼­ \"%2$s\" ·¹Äڵ带 ¾ò´Â µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:2698
+#: rpmdb/rpmdb.c:2704
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "%2$s À妽º¿¡¼­ \"%1$s\"(À»)¸¦ »èÁ¦ÇÕ´Ï´Ù.\n"
 
-#: rpmdb/rpmdb.c:2702
+#: rpmdb/rpmdb.c:2708
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "%2$s À妽º¿¡¼­ %1$d Ç׸ñµé(entries)À» »èÁ¦ÇÕ´Ï´Ù.\n"
 
-#: rpmdb/rpmdb.c:2730
+#: rpmdb/rpmdb.c:2736
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr ""
 "%3$s À妽º¿¡¼­ \"%2$s\" ·¹Äڵ带 ¾ò´Â µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:2751
+#: rpmdb/rpmdb.c:2757
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "%3$s(À¸)·Î %2$s ·¹Äڵ带 ÀúÀåÇϴ µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:2761
+#: rpmdb/rpmdb.c:2767
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "%3$s¿¡¼­ %2$s ·¹Äڵ带 »èÁ¦Çϴ µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:2910
+#: rpmdb/rpmdb.c:2916
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "»õ·Î¿î ÆÐÅ°Áö¸¦ ¹èÄ¡Çϴ µµÁß ¿À·ù(%d)°¡ ¹ß»ýÇß½À´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:2964
+#: rpmdb/rpmdb.c:2970
 #, fuzzy
 msgid "rpmdbAdd: skipping"
 msgstr "rpmdb: ¼Õ»óµÈ Çì´õ #%u(ÀÌ)°¡ º¹±¸(retrieved)µÇ¾ú½À´Ï´Ù, »ý·«ÇÕ´Ï´Ù.\n"
 
-#: rpmdb/rpmdb.c:3136
+#: rpmdb/rpmdb.c:3142
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "%2$s À妽º¿¡ \"%1$s\"(À»)¸¦ Ãß°¡ÇÕ´Ï´Ù.\n"
 
-#: rpmdb/rpmdb.c:3140
+#: rpmdb/rpmdb.c:3146
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "%2$s À妽º¿¡ %1$d Ç׸ñµé(entries)À» Ãß°¡ÇÕ´Ï´Ù.\n"
 
-#: rpmdb/rpmdb.c:3180
+#: rpmdb/rpmdb.c:3186
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "%3$s(À¸)·Î %2$s ·¹Äڵ带 ÀúÀåÇϴ µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:3581
+#: rpmdb/rpmdb.c:3587
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr "db3¸¦ À籸ÃàÇÑ ÈÄ¿¡ %s(À»)¸¦ »èÁ¦ÇÕ´Ï´Ù.\n"
 
-#: rpmdb/rpmdb.c:3619
+#: rpmdb/rpmdb.c:3625
 msgid "no dbpath has been set"
 msgstr "db°æ·Î°¡ ¼³Á¤µÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù"
 
-#: rpmdb/rpmdb.c:3651
+#: rpmdb/rpmdb.c:3657
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "%2$s¿¡ %1$s µ¥ÀÌÅͺ£À̽º¸¦ À籸Ãà ÇÕ´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:3655
+#: rpmdb/rpmdb.c:3661
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr "Àӽ൥ÀÌÅͺ£À̽º %s(ÀÌ)°¡ À̹̠Á¸ÀçÇÕ´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:3661
+#: rpmdb/rpmdb.c:3667
 #, c-format
 msgid "creating directory %s\n"
 msgstr "%s µð·ºÅ丮¸¦ »ý¼ºÇÕ´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:3663
+#: rpmdb/rpmdb.c:3669
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr "%s µð·ºÅ丮¸¦ »ý¼ºÇÔ: %s\n"
 
-#: rpmdb/rpmdb.c:3670
+#: rpmdb/rpmdb.c:3676
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "dbapi %d·Î ÀÌÀü µ¥ÀÌÅͺ£À̽º¸¦ ¿±´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:3683
+#: rpmdb/rpmdb.c:3689
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "dbapi %d·Î »õ·Î¿î µ¥ÀÌÅͺ£À̽º¸¦ ¿±´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:3712
+#: rpmdb/rpmdb.c:3718
 #, fuzzy, c-format
 msgid "header #%u in the database is bad -- skipping.\n"
 msgstr "µ¥ÀÌÅͺ£À̽ºÀÇ ·¹Äڵ堹øÈ£ %u(ÀÌ)°¡ À߸øµÇ¾ú½À´Ï´Ù -- »ý·«ÇÕ´Ï´Ù.\n"
 
-#: rpmdb/rpmdb.c:3752
+#: rpmdb/rpmdb.c:3758
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "%u¿¡ Ã³À½ºÎÅÍ ·¹Äڵ带 Ãß°¡ÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:3766
+#: rpmdb/rpmdb.c:3772
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 "µ¥ÀÌÅͺ£À̽º¸¦ À籸ÃàÇϴµ¥ ½ÇÆÐÇÔ: ¿øº» µ¥ÀÌÅͺ£À̽º´Â ±×´ë·Î À¯ÁöµË´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:3774
+#: rpmdb/rpmdb.c:3780
 msgid "failed to replace old database with new database!\n"
 msgstr "ÀÌÀü µ¥ÀÌÅͺ£À̽º¸¦ »õ·Î¿î µ¥ÀÌÅͺ£À̽º·Î ±³Ã¼Çϴµ¥ ½ÇÆÐÇß½À´Ï´Ù!\n"
 
-#: rpmdb/rpmdb.c:3776
+#: rpmdb/rpmdb.c:3782
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "º¹±¸Çϱâ À§ÇØ %2$sÀÇ ÆÄÀÏÀ» %1$sÀÇ ÆÄÀϷΠ±³Ã¼ÇÕ´Ï´Ù"
 
-#: rpmdb/rpmdb.c:3786
+#: rpmdb/rpmdb.c:3792
 #, c-format
 msgid "removing directory %s\n"
 msgstr "%s µð·ºÅ丮¸¦ »èÁ¦ÇÕ´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:3788
+#: rpmdb/rpmdb.c:3794
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "%s µð·ºÅ丮¸¦ »èÁ¦Çϴµ¥ ½ÇÆÐÇÔ: %s\n"
@@ -3568,42 +3604,42 @@ msgstr "
 msgid "Macro %%%s (%s) was not used below level %d\n"
 msgstr "¸ÅÅ©·Î %%%s (%s)´Â ·¹º§ %d ÀÌÇÏ¿¡¼­´Â »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: rpmio/macro.c:982
+#: rpmio/macro.c:984
 #, c-format
 msgid "Unknown option %c in %s(%s)\n"
 msgstr "%2$s(%3$s)¿¡ ¾Ë ¼ö ¾ø´Â ¿É¼Ç %1$c(ÀÌ)°¡ ÀÖ½À´Ï´Ù\n"
 
-#: rpmio/macro.c:1182
+#: rpmio/macro.c:1184
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)\n"
 msgstr "¹Ýº¹ È½¼ö(%d)°¡ ÃÖ´ëÄ¡(%d) º¸´Ù Å®´Ï´Ù\n"
 
-#: rpmio/macro.c:1252 rpmio/macro.c:1269
+#: rpmio/macro.c:1255 rpmio/macro.c:1272
 #, c-format
 msgid "Unterminated %c: %s\n"
 msgstr "%c(ÀÌ)°¡ Á¾·áµÇÁö ¾ÊÀ½: %s\n"
 
-#: rpmio/macro.c:1310
+#: rpmio/macro.c:1313
 #, c-format
 msgid "A %% is followed by an unparseable macro\n"
 msgstr "'%%' ´ÙÀ½¿¡ Ã³¸®ÇÒ ¼ö ¾ø´Â(unparseable) ¸ÅÅ©·Î°¡ ÀÖ½À´Ï´Ù\n"
 
-#: rpmio/macro.c:1439
+#: rpmio/macro.c:1442
 #, c-format
 msgid "Macro %%%.*s not found, skipping\n"
 msgstr "¸ÅÅ©·Î %%%.*s¸¦ Ã£À» ¼ö ¾ø½À´Ï´Ù, »ý·«ÇÕ´Ï´Ù\n"
 
-#: rpmio/macro.c:1510
+#: rpmio/macro.c:1513
 msgid "Target buffer overflow\n"
 msgstr "¸ñÇ¥´ë»ó(Target) ¹öÆÛ ¿À¹öÇ÷οì\n"
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1705 rpmio/macro.c:1711
+#: rpmio/macro.c:1708 rpmio/macro.c:1714
 #, c-format
 msgid "File %s: %s\n"
 msgstr "%s ÆÄÀÏ: %s\n"
 
-#: rpmio/macro.c:1714
+#: rpmio/macro.c:1717
 #, c-format
 msgid "File %s is smaller than %u bytes\n"
 msgstr "%s ÆÄÀÏÀÌ %u ¹ÙÀÌÆ® º¸´Ù Àû½À´Ï´Ù\n"
index 044b9ae..d7419ac 100644 (file)
--- a/po/no.po
+++ b/po/no.po
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:11-0500\n"
+"POT-Creation-Date: 2003-12-30 08:11-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"
@@ -20,44 +20,44 @@ msgstr "feil med avhengigheter under bygging:\n"
 msgid "Unable to open spec file %s: %s\n"
 msgstr "Kunne ikke åpne spec fil %s: %s\n"
 
-#: build.c:152 build.c:164
+#: build.c:150 build.c:162
 #, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr "Kunne ikke åpne tar-rør: %m\n"
 
 #. Give up
-#: build.c:171
+#: build.c:169
 #, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "Feil under lesing av spec-fil fra %s\n"
 
-#: build.c:199
+#: build.c:197
 #, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr "Feil under endring av navn fra %s til %s: %m\n"
 
-#: build.c:239
+#: build.c:237
 #, c-format
 msgid "failed to stat %s: %m\n"
 msgstr "kunne ikke kjøre stat på %s: %m\n"
 
-#: build.c:244
+#: build.c:242
 #, c-format
 msgid "File %s is not a regular file.\n"
 msgstr "Fil %s er ikke en vanlig fil.\n"
 
-#: build.c:253
+#: build.c:251
 #, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr "Fil %s ser ikke ut til å være en spec-fil.\n"
 
 #. parse up the build operators
-#: build.c:324
+#: build.c:322
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr "Bygger målplattformene: %s\n"
 
-#: build.c:339
+#: build.c:337
 #, c-format
 msgid "Building for target %s\n"
 msgstr "Bygger for mål %s\n"
@@ -109,7 +109,7 @@ msgstr ""
 msgid "%s: %s\n"
 msgstr "%s: %s\n"
 
-#: rpmqv.c:129 lib/poptALL.c:114
+#: rpmqv.c:129 lib/poptALL.c:119
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM versjon %s\n"
@@ -418,166 +418,166 @@ msgstr "&& og || ikke st
 msgid "syntax error in expression\n"
 msgstr "syntaksfeil i uttrykk\n"
 
-#: build/files.c:278
+#: build/files.c:280
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "TIDSJEKK feil: %s\n"
 
-#: build/files.c:343 build/files.c:543 build/files.c:739
+#: build/files.c:345 build/files.c:545 build/files.c:741
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "Mangler '(' i %s %s\n"
 
-#: build/files.c:354 build/files.c:673 build/files.c:750
+#: build/files.c:356 build/files.c:675 build/files.c:752
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "Mangler ')' i %s(%s\n"
 
-#: build/files.c:392 build/files.c:698
+#: build/files.c:394 build/files.c:700
 #, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "Ugyldig %s-tegn: %s\n"
 
-#: build/files.c:502
+#: build/files.c:504
 #, fuzzy, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "Mangler '(' i %s %s\n"
 
-#: build/files.c:559
+#: build/files.c:561
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr ""
 
-#: build/files.c:597
+#: build/files.c:599
 #, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:607
+#: build/files.c:609
 #, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:619
+#: build/files.c:621
 #, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:777
+#: build/files.c:779
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr ""
 
 #. @innercontinue@
-#: build/files.c:788
+#: build/files.c:790
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr ""
 
-#: build/files.c:917
+#: build/files.c:919
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr ""
 
-#: build/files.c:925
+#: build/files.c:927
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr ""
 
 #. We already got a file -- error
-#: build/files.c:959
+#: build/files.c:961
 #, c-format
 msgid "Two files on one line: %s\n"
 msgstr "To filer på én linje: %s\n"
 
-#: build/files.c:976
+#: build/files.c:978
 #, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "Filen må begynne med \"/\": %s\n"
 
-#: build/files.c:989
+#: build/files.c:991
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr "Kan ikke blande spesiell %%doc med andre skjema: %s\n"
 
-#: build/files.c:1141
+#: build/files.c:1149
 #, c-format
 msgid "File listed twice: %s\n"
 msgstr "Fil listet to ganger: %s\n"
 
-#: build/files.c:1280
+#: build/files.c:1288
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "Symbolsk lenke peker til BuildRoot: %s -> %s\n"
 
-#: build/files.c:1520
+#: build/files.c:1535
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1544
+#: build/files.c:1559
 #, c-format
 msgid "File not found: %s\n"
 msgstr "Fil ikke funnet: %s\n"
 
-#: build/files.c:1752
+#: build/files.c:1767
 #, fuzzy, c-format
 msgid "%s: public key read failed.\n"
 msgstr "%s: readLead feilet\n"
 
-#: build/files.c:1756 lib/rpmchecksig.c:580
+#: build/files.c:1771 lib/rpmchecksig.c:580
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: build/files.c:1804
+#: build/files.c:1819
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1828
+#: build/files.c:1843
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "linje %d: Filnavn ikke tillatt: %s\n"
 
-#: build/files.c:1845 lib/rpminstall.c:347
+#: build/files.c:1860 lib/rpminstall.c:361
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1905
+#: build/files.c:1920
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Kunne ikke åpne spec fil %s: %s\n"
 
-#: build/files.c:1916 build/pack.c:156
+#: build/files.c:1931 build/pack.c:156
 #, c-format
 msgid "line: %s\n"
 msgstr "Installerer %s\n"
 
-#: build/files.c:2307
+#: build/files.c:2323
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "Ugyldig fil %s: %s\n"
 
-#: build/files.c:2319 build/parsePrep.c:50
+#: build/files.c:2335 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Ugyldig eier/gruppe: %s\n"
 
-#: build/files.c:2363
+#: build/files.c:2379
 #, fuzzy, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr "ingen pakke utløser %s\n"
 
-#: build/files.c:2386
+#: build/files.c:2402
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
 "%s"
 msgstr ""
 
-#: build/files.c:2414
+#: build/files.c:2430
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -720,7 +720,7 @@ msgstr "Kunne ikke 
 msgid "Could not open %s: %s\n"
 msgstr "Kunne ikke åpne %s: %s\n"
 
-#: build/pack.c:632 lib/psm.c:1427
+#: build/pack.c:632 lib/psm.c:1420
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Kunne ikke skrive pakke: %s\n"
@@ -750,7 +750,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:1725
+#: build/pack.c:725 lib/psm.c:1689
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Skrev: %s\n"
@@ -1235,20 +1235,20 @@ msgstr "ikke verifiser pakkeavhengigheter"
 msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
 msgstr ""
 
-#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329
-#: lib/poptQV.c:338 lib/poptQV.c:377
+#: build/poptBT.c:229 lib/poptALL.c:240 lib/poptI.c:261 lib/poptQV.c:335
+#: lib/poptQV.c:344 lib/poptQV.c:383
 #, fuzzy
 msgid "don't verify package digest(s)"
 msgstr "ikke verifiser pakkeavhengigheter"
 
-#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332
-#: lib/poptQV.c:340 lib/poptQV.c:380
+#: build/poptBT.c:231 lib/poptALL.c:242 lib/poptI.c:263 lib/poptQV.c:338
+#: lib/poptQV.c:346 lib/poptQV.c:386
 #, fuzzy
 msgid "don't verify database header(s) when retrieved"
 msgstr "ikke verifiser pakkearkitektur"
 
-#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335
-#: lib/poptQV.c:342 lib/poptQV.c:382
+#: build/poptBT.c:233 lib/poptALL.c:248 lib/poptI.c:265 lib/poptQV.c:341
+#: lib/poptQV.c:348 lib/poptQV.c:388
 #, fuzzy
 msgid "don't verify package signature(s)"
 msgstr "verifiser pakkesignatur"
@@ -1319,31 +1319,31 @@ msgstr "Ugyldig magi"
 msgid "Bad/unreadable  header"
 msgstr "Ugyldig/ulesbar header"
 
-#: lib/cpio.c:232
+#: lib/cpio.c:233
 msgid "Header size too big"
 msgstr "For stor header"
 
-#: lib/cpio.c:233
+#: lib/cpio.c:234
 msgid "Unknown file type"
 msgstr "Ukjent filtype"
 
-#: lib/cpio.c:234
+#: lib/cpio.c:235
 msgid "Missing hard link(s)"
 msgstr "Mangler hard(e) lenke(er)"
 
-#: lib/cpio.c:235
+#: lib/cpio.c:236
 msgid "MD5 sum mismatch"
 msgstr "MD5-sum stemmer ikke"
 
-#: lib/cpio.c:236
+#: lib/cpio.c:237
 msgid "Internal error"
 msgstr "Intern feil"
 
-#: lib/cpio.c:237
+#: lib/cpio.c:238
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:250
+#: lib/cpio.c:251
 msgid " failed - "
 msgstr " feilet - "
 
@@ -1474,46 +1474,56 @@ msgstr "Fil %s: %s\n"
 msgid "file %s is on an unknown device\n"
 msgstr "fil %s er på en ukjent enhet\n"
 
-#: lib/fsm.c:350
+#: lib/fsm.c:352
 msgid "========== Directories not explicitly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:352
+#: lib/fsm.c:354
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1293
+#: lib/fsm.c:768
+#, c-format
+msgid "user %s does not exist - using root\n"
+msgstr ""
+
+#: lib/fsm.c:776
+#, c-format
+msgid "group %s does not exist - using root\n"
+msgstr ""
+
+#: lib/fsm.c:1334
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1592
+#: lib/fsm.c:1633
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1719 lib/fsm.c:1855
+#: lib/fsm.c:1760 lib/fsm.c:1896
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s lagret som %s\n"
 
-#: lib/fsm.c:1882
+#: lib/fsm.c:1923
 #, 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:1888
+#: lib/fsm.c:1929
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s rmdir av %s feilet: %s\n"
 
-#: lib/fsm.c:1903
+#: lib/fsm.c:1944
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s unlink av %s feilet: %s\n"
 
-#: lib/fsm.c:1925
+#: lib/fsm.c:1966
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s opprettet som %s\n"
@@ -1629,113 +1639,113 @@ msgstr "%s: readLead feilet\n"
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread feilet: %s\n"
 
-#: lib/poptALL.c:222
+#: lib/poptALL.c:227
 msgid "predefine MACRO with value EXPR"
 msgstr ""
 
-#: lib/poptALL.c:223 lib/poptALL.c:226
+#: lib/poptALL.c:228 lib/poptALL.c:231
 msgid "'MACRO EXPR'"
 msgstr ""
 
-#: lib/poptALL.c:225
+#: lib/poptALL.c:230
 msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: lib/poptALL.c:228
+#: lib/poptALL.c:233
 #, fuzzy
 msgid "print macro expansion of EXPR"
 msgstr "skriv ut makroutvidelsen av <uttr>+"
 
-#: lib/poptALL.c:229
+#: lib/poptALL.c:234
 msgid "'EXPR'"
 msgstr ""
 
-#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254
+#: lib/poptALL.c:236 lib/poptALL.c:255 lib/poptALL.c:259
 #, fuzzy
 msgid "read <FILE:...> instead of default file(s)"
 msgstr "les <fil:...> i stedet for standard makrofil(er)"
 
-#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255
+#: lib/poptALL.c:237 lib/poptALL.c:256 lib/poptALL.c:260
 msgid "<FILE:...>"
 msgstr ""
 
-#: lib/poptALL.c:240 lib/poptALL.c:274
+#: lib/poptALL.c:245 lib/poptALL.c:279
 msgid "disable use of libio(3) API"
 msgstr "slå av bruk av libio(3) API"
 
-#: lib/poptALL.c:246
+#: lib/poptALL.c:251
 #, fuzzy
 msgid "send stdout to CMD"
 msgstr "send stdout til <kmd>"
 
-#: lib/poptALL.c:247
+#: lib/poptALL.c:252
 msgid "CMD"
 msgstr ""
 
-#: lib/poptALL.c:258
+#: lib/poptALL.c:263
 #, fuzzy
 msgid "use ROOT as top level directory"
 msgstr "bruk <katalog> som toppnivåkatalog"
 
-#: lib/poptALL.c:259
+#: lib/poptALL.c:264
 msgid "ROOT"
 msgstr ""
 
-#: lib/poptALL.c:262
+#: lib/poptALL.c:267
 msgid "display known query tags"
 msgstr "vis kjente tagger for spørring"
 
-#: lib/poptALL.c:264
+#: lib/poptALL.c:269
 msgid "display final rpmrc and macro configuration"
 msgstr "vis endelig rpmrc og makrokonfigurasjon"
 
-#: lib/poptALL.c:266
+#: lib/poptALL.c:271
 msgid "provide less detailed output"
 msgstr "gi mindre detaljert info"
 
-#: lib/poptALL.c:268
+#: lib/poptALL.c:273
 msgid "provide more detailed output"
 msgstr "gi mer detaljert info"
 
-#: lib/poptALL.c:270
+#: lib/poptALL.c:275
 msgid "print the version of rpm being used"
 msgstr "skriv ut hvilken versjon av rpm som brukes"
 
-#: lib/poptALL.c:283
+#: lib/poptALL.c:288
 msgid "debug payload file state machine"
 msgstr ""
 
-#: lib/poptALL.c:285
+#: lib/poptALL.c:290
 msgid "use threads for file state machine"
 msgstr ""
 
-#: lib/poptALL.c:287
+#: lib/poptALL.c:292
 msgid "debug protocol data stream"
 msgstr "feilsøking på protokoll-datastrøm"
 
-#: lib/poptALL.c:292
+#: lib/poptALL.c:297
 #, fuzzy
 msgid "debug option/argument processing"
 msgstr "Intern feil i argumentprosesseringen (%d) :-(\n"
 
-#: lib/poptALL.c:297
+#: lib/poptALL.c:302
 msgid "debug package state machine"
 msgstr ""
 
-#: lib/poptALL.c:299
+#: lib/poptALL.c:304
 msgid "use threads for package state machine"
 msgstr ""
 
-#: lib/poptALL.c:311
+#: lib/poptALL.c:316
 msgid "debug rpmio I/O"
 msgstr "feilsøk rpmio I/U"
 
-#: lib/poptALL.c:323
+#: lib/poptALL.c:330
 msgid "debug URL cache handling"
 msgstr "feilsøk URL-cache håndtering"
 
 #. @-nullpass@
-#: lib/poptALL.c:393
+#: lib/poptALL.c:400
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1764,16 +1774,16 @@ msgstr ""
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:151
+#: lib/poptI.c:155
 #, fuzzy
 msgid "add suggested packages to transaction"
 msgstr "spør/verifiser pakke(r) i gruppe"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:159
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr "installer alle filer, selv konfigurasjoner som ellers kan hoppes over"
 
-#: lib/poptI.c:159
+#: lib/poptI.c:163
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1781,149 +1791,155 @@ msgstr ""
 "fjern alle pakker som er lik <pakke> (normalt vil en feil genereres hvis "
 "<pakke> spesifiserer flere pakker)"
 
-#: lib/poptI.c:164 tools/rpmgraph.c:273
+#: lib/poptI.c:168 tools/rpmgraph.c:273
 msgid "use anaconda \"presentation order\""
 msgstr ""
 
-#: lib/poptI.c:169 lib/poptI.c:238
+#: lib/poptI.c:173 lib/poptI.c:245
 msgid "do not execute package scriptlet(s)"
 msgstr "ikke kjør pakkespesifikke skriptlet"
 
-#: lib/poptI.c:173
-msgid "relocate files in non-relocateable package"
+#: lib/poptI.c:177
+#, fuzzy
+msgid "relocate files in non-relocatable package"
 msgstr "omplasser filer i ikke-omplasserbar pakke"
 
-#: lib/poptI.c:176
+#: lib/poptI.c:180
 msgid "save erased package files by renaming into sub-directory"
 msgstr "lagre slettede pakkefiler ved å endre navn til underkatalog"
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 msgid "erase (uninstall) package"
 msgstr "slett (avinstaller) pakke"
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 msgid "<package>+"
 msgstr "<pakke>+"
 
-#: lib/poptI.c:182 lib/poptI.c:219
+#: lib/poptI.c:186 lib/poptI.c:223
 #, fuzzy
 msgid "do not install configuration files"
 msgstr "ikke installer dokumentasjon"
 
-#: lib/poptI.c:185 lib/poptI.c:224
+#: lib/poptI.c:189 lib/poptI.c:228
 msgid "do not install documentation"
 msgstr "ikke installer dokumentasjon"
 
-#: lib/poptI.c:187
+#: lib/poptI.c:191
 msgid "skip files with leading component <path> "
 msgstr "hopp over filer med innledende komponent <sti> "
 
-#: lib/poptI.c:188
+#: lib/poptI.c:192
 msgid "<path>"
 msgstr "<sti>"
 
-#: lib/poptI.c:191
+#: lib/poptI.c:195
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "forkortning for --replacepkgs --replacefiles"
 
-#: lib/poptI.c:195
+#: lib/poptI.c:199
 msgid "upgrade package(s) if already installed"
 msgstr "oppgrader pakke(r) hvis allerede installert"
 
-#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
+#: lib/poptI.c:200 lib/poptI.c:216 lib/poptI.c:312
 msgid "<packagefile>+"
 msgstr "<pakkefil>+"
 
-#: lib/poptI.c:198
+#: lib/poptI.c:202
 msgid "print hash marks as package installs (good with -v)"
 msgstr "skriv ut skigarder etter som pakken installeres (nyttig med -v)"
 
-#: lib/poptI.c:201
+#: lib/poptI.c:205
 msgid "don't verify package architecture"
 msgstr "ikke verifiser pakkearkitektur"
 
-#: lib/poptI.c:204
+#: lib/poptI.c:208
 msgid "don't verify package operating system"
 msgstr "ikke verifiser operativsystem for pakken"
 
-#: lib/poptI.c:207
+#: lib/poptI.c:211
 msgid "don't check disk space before installing"
 msgstr "ikke sjekk diskplass før installasjon"
 
-#: lib/poptI.c:209
+#: lib/poptI.c:213
 msgid "install documentation"
 msgstr "installer dokumentasjon"
 
-#: lib/poptI.c:212
+#: lib/poptI.c:216
 #, fuzzy
 msgid "install package(s)"
 msgstr "installer pakke"
 
-#: lib/poptI.c:215
+#: lib/poptI.c:219
 msgid "update the database, but do not modify the filesystem"
 msgstr "oppdater databasen, men ikke modifiser filsystemet"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:225
 msgid "do not verify package dependencies"
 msgstr "ikke verifiser pakkeavhengigheter"
 
-#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:231 lib/poptQV.c:279 lib/poptQV.c:282
 msgid "don't verify MD5 digest of files"
 msgstr ""
 
-#: lib/poptI.c:230
+#: lib/poptI.c:233
+#, fuzzy
+msgid "don't install file security contexts"
+msgstr "ikke installer dokumentasjon"
+
+#: lib/poptI.c:237
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "ikke ordne pakkeinstallasjon for å tilfredsstille avhengigheter"
 
-#: lib/poptI.c:235
+#: lib/poptI.c:242
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:242
+#: lib/poptI.c:249
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "ikke kjør noen %%pre skriptlet (hvis noen)"
 
-#: lib/poptI.c:245
+#: lib/poptI.c:252
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "ikke kjør %%post skriptlet (hvis noen)"
 
-#: lib/poptI.c:248
+#: lib/poptI.c:255
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "ikke kjør %%preun skriptlet (hvis noen)"
 
-#: lib/poptI.c:251
+#: lib/poptI.c:258
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "ikke kjør %%postun skriptlet (hvis noen)"
 
-#: lib/poptI.c:261
+#: lib/poptI.c:268
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "Ikke kjør noen skriptlets som utløses av denne pakken"
 
-#: lib/poptI.c:264
+#: lib/poptI.c:271
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "ikke kjør %%triggerprein skriptlets"
 
-#: lib/poptI.c:267
+#: lib/poptI.c:274
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "ikke kjør %%triggerin skriptlets"
 
-#: lib/poptI.c:270
+#: lib/poptI.c:277
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "ikke kjør %%triggerun skriplets"
 
-#: lib/poptI.c:273
+#: lib/poptI.c:280
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "ikke kjør %%triggerpostun skriptlets"
 
-#: lib/poptI.c:277
+#: lib/poptI.c:284
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1931,52 +1947,52 @@ msgstr ""
 "oppgrader til en gammel versjon av pakken (--force ved oppgraderinger gjør "
 "dette automatisk)"
 
-#: lib/poptI.c:281
+#: lib/poptI.c:288
 msgid "print percentages as package installs"
 msgstr "skriv ut prosentvis fremgang etter som pakken installeres"
 
-#: lib/poptI.c:283
+#: lib/poptI.c:290
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "omplasser pakken til <kat>, hvis den er omplasserbar"
 
-#: lib/poptI.c:284
+#: lib/poptI.c:291
 msgid "<dir>"
 msgstr "<kat>"
 
-#: lib/poptI.c:286
+#: lib/poptI.c:293
 msgid "relocate files from path <old> to <new>"
 msgstr "omplasser filer fra sti <gml> til <ny>"
 
-#: lib/poptI.c:287
+#: lib/poptI.c:294
 msgid "<old>=<new>"
 msgstr "<gml>=<ny>"
 
-#: lib/poptI.c:290
+#: lib/poptI.c:297
 msgid "save erased package files by repackaging"
 msgstr "lagre slettede pakkefiler ved ompakking"
 
-#: lib/poptI.c:293
+#: lib/poptI.c:300
 msgid "install even if the package replaces installed files"
 msgstr "installer selv om pakken erstatter installerte filer"
 
-#: lib/poptI.c:296
+#: lib/poptI.c:303
 msgid "reinstall if the package is already present"
 msgstr "reinstaller selv om pakken allerede er installert"
 
-#: lib/poptI.c:298
+#: lib/poptI.c:305
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:299
+#: lib/poptI.c:306
 #, fuzzy
 msgid "<date>"
 msgstr "<sti>"
 
-#: lib/poptI.c:301
+#: lib/poptI.c:308
 msgid "don't install, but tell if it would work or not"
 msgstr "ikke installer, men si ifra om det ville virke eller ikke"
 
-#: lib/poptI.c:304
+#: lib/poptI.c:311
 msgid "upgrade package(s)"
 msgstr "oppgrader pakke(r)"
 
@@ -2055,201 +2071,196 @@ msgstr "sp
 msgid "query/verify the package(s) which provide a dependency"
 msgstr "spør etter pakker som tilbyr <funk> funksjonalitet"
 
-#: lib/poptQV.c:226
+#: lib/poptQV.c:230
 msgid "list all configuration files"
 msgstr ""
 
-#: lib/poptQV.c:228
+#: lib/poptQV.c:232
 msgid "list all documentation files"
 msgstr ""
 
-#: lib/poptQV.c:230
+#: lib/poptQV.c:234
 msgid "dump basic file information"
 msgstr ""
 
-#: lib/poptQV.c:234
+#: lib/poptQV.c:238
 msgid "list files in package"
 msgstr ""
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:243
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:243
+#: lib/poptQV.c:247
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
-#: lib/poptQV.c:246
+#: lib/poptQV.c:250
 #, c-format
 msgid "skip %%readme files"
 msgstr ""
 
-#: lib/poptQV.c:252
+#: lib/poptQV.c:256
 msgid "use the following query format"
 msgstr ""
 
-#: lib/poptQV.c:254
+#: lib/poptQV.c:258
 msgid "substitute i18n sections into spec file"
 msgstr ""
 
-#: lib/poptQV.c:256
+#: lib/poptQV.c:260
 msgid "display the states of the listed files"
 msgstr ""
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:286
 msgid "don't verify size of files"
 msgstr "ikke verifiser størrelse på filer"
 
-#: lib/poptQV.c:285
+#: lib/poptQV.c:289
 msgid "don't verify symlink path of files"
 msgstr "ikke verifiser sti til symbolske lenker for filer"
 
-#: lib/poptQV.c:288
+#: lib/poptQV.c:292
 msgid "don't verify owner of files"
 msgstr "ikke verifiser eier av filer"
 
-#: lib/poptQV.c:291
+#: lib/poptQV.c:295
 msgid "don't verify group of files"
 msgstr "ikke verifiser gruppe for filer"
 
-#: lib/poptQV.c:294
+#: lib/poptQV.c:298
 msgid "don't verify modification time of files"
 msgstr "ikke verifisert endringsdato for filer"
 
-#: lib/poptQV.c:297 lib/poptQV.c:300
+#: lib/poptQV.c:301 lib/poptQV.c:304
 msgid "don't verify mode of files"
 msgstr "ikke verifiser modus for filer"
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:307
+#, fuzzy
+msgid "don't verify file security contexts"
+msgstr "ikke verifiser filer i pakke"
+
+#: lib/poptQV.c:309
 msgid "don't verify files in package"
 msgstr "ikke verifiser filer i pakke"
 
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
+#: lib/poptQV.c:312 lib/poptQV.c:315 tools/rpmgraph.c:267
 msgid "don't verify package dependencies"
 msgstr "ikke verifiser pakkeavhengigheter"
 
-#: lib/poptQV.c:314 lib/poptQV.c:318 lib/poptQV.c:321 lib/poptQV.c:324
+#: lib/poptQV.c:320 lib/poptQV.c:324 lib/poptQV.c:327 lib/poptQV.c:330
 #, fuzzy
 msgid "don't execute verify script(s)"
 msgstr "ikke kjør %verifyscript (hvis noen)"
 
-#: lib/poptQV.c:348
+#: lib/poptQV.c:354
 #, fuzzy
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr "ikke verifiser header SHA1 digest"
 
-#: lib/poptQV.c:351
+#: lib/poptQV.c:357
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:366
+#: lib/poptQV.c:372
 #, fuzzy
 msgid "sign package(s) (identical to --resign)"
 msgstr "signer en pakke (forkast nåværende signatur)"
 
-#: lib/poptQV.c:368
+#: lib/poptQV.c:374
 #, fuzzy
 msgid "verify package signature(s)"
 msgstr "verifiser pakkesignatur"
 
-#: lib/poptQV.c:370
+#: lib/poptQV.c:376
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:372
+#: lib/poptQV.c:378
 #, fuzzy
 msgid "sign package(s) (identical to --addsign)"
 msgstr "signer en pakke (forkast nåværende signatur)"
 
-#: lib/poptQV.c:374
+#: lib/poptQV.c:380
 msgid "generate signature"
 msgstr "generer signatur"
 
-#: lib/psm.c:269
+#: lib/psm.c:268
 msgid "source package expected, binary found\n"
 msgstr "kildepakke forventet, binær funnet\n"
 
-#: lib/psm.c:394
+#: lib/psm.c:386
 msgid "source package contains no .spec file\n"
 msgstr "kildepakke inneholder ikke en .spec-fil\n"
 
-#: lib/psm.c:480
+#: lib/psm.c:472
 #, c-format
 msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
 msgstr ""
 
-#: lib/psm.c:562
+#: lib/psm.c:554
 #, c-format
 msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
 msgstr ""
 
-#: lib/psm.c:570
+#: lib/psm.c:562
 #, c-format
 msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
 msgstr ""
 
-#: lib/psm.c:735
+#: lib/psm.c:730
 #, c-format
 msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
 msgstr ""
 
-#: lib/psm.c:756
+#: lib/psm.c:751
 #, c-format
 msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
 msgstr ""
 
-#: lib/psm.c:762
+#: lib/psm.c:757
 #, c-format
 msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1191
+#: lib/psm.c:1188
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1330
+#: lib/psm.c:1323
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1439
+#: lib/psm.c:1432
 #, fuzzy
 msgid "Unable to reload signature header\n"
 msgstr "Kunne ikke åpne spec fil %s: %s\n"
 
-#: lib/psm.c:1485
-#, c-format
-msgid "user %s does not exist - using root\n"
-msgstr ""
-
-#: lib/psm.c:1494
-#, c-format
-msgid "group %s does not exist - using root\n"
-msgstr ""
-
-#: lib/psm.c:1546
+#: lib/psm.c:1510
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1547
+#: lib/psm.c:1511
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1733
+#: lib/psm.c:1697
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "klarte ikke å åpne %s: %s\n"
 
-#: lib/psm.c:1736
+#: lib/psm.c:1700
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s feilet\n"
 
-#: lib/query.c:118 lib/rpmts.c:565
+#: lib/query.c:118 lib/rpmts.c:566
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "ukorrekt format: %s\n"
@@ -2297,8 +2308,8 @@ msgstr "pakken har verken fileier eller id-lister\n"
 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:462
-#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576
+#: 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
 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157
 #, c-format
 msgid "open of %s failed: %s\n"
@@ -2313,7 +2324,7 @@ msgstr "sp
 msgid "old format source packages cannot be queried\n"
 msgstr "kildepakker i gammelt format kan ikke spørres\n"
 
-#: lib/query.c:488 lib/rpminstall.c:608
+#: lib/query.c:488 lib/rpminstall.c:622
 #, fuzzy, c-format
 msgid "%s: not an rpm package (or package manifest): %s\n"
 msgstr "ingen pakke utløser %s\n"
@@ -2382,16 +2393,16 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:766 lib/rpminstall.c:778
+#: lib/query.c:766 lib/rpminstall.c:792
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "pakke %s er ikke installert\n"
 
-#: lib/rpmal.c:692
+#: lib/rpmal.c:694
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:772
 msgid "(added provide)"
 msgstr ""
 
@@ -2514,36 +2525,36 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "pakke %s er i konflikt: %s\n"
 
-#: lib/rpmfi.c:546
+#: lib/rpmfi.c:561
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/rpmfi.c:784
+#: lib/rpmfi.c:799
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:788
+#: lib/rpmfi.c:803
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "eksluderer %s %s\n"
 
-#: lib/rpmfi.c:791
+#: lib/rpmfi.c:806
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d omplasser %s -> %s\n"
 
-#: lib/rpmfi.c:919
+#: lib/rpmfi.c:934
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "eksluderer %s %s\n"
 
-#: lib/rpmfi.c:929
+#: lib/rpmfi.c:944
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "relokerer %s til %s\n"
 
-#: lib/rpmfi.c:1021
+#: lib/rpmfi.c:1036
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "relokerer katalog %s til %s\n"
@@ -2575,88 +2586,88 @@ msgstr "Forbereder..."
 msgid "Upgrading packages..."
 msgstr "oppgrader pakke(r)"
 
-#: lib/rpminstall.c:394
+#: lib/rpminstall.c:408
 #, fuzzy, c-format
 msgid "Adding goal: %s\n"
 msgstr "Fil %s: %s\n"
 
-#: lib/rpminstall.c:409
+#: lib/rpminstall.c:423
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Henter %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:436
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... som %s\n"
 
-#: lib/rpminstall.c:426
+#: lib/rpminstall.c:440
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "hopper over %s - overføring feilet - %s\n"
 
-#: lib/rpminstall.c:481 lib/rpminstall.c:872 tools/rpmgraph.c:140
+#: lib/rpminstall.c:495 lib/rpminstall.c:886 tools/rpmgraph.c:140
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:523
-#, c-format
-msgid "package %s is not relocateable\n"
+#: lib/rpminstall.c:537
+#, fuzzy, c-format
+msgid "package %s is not relocatable\n"
 msgstr "pakke %s kan ikke relokeres\n"
 
-#: lib/rpminstall.c:573
+#: lib/rpminstall.c:587
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "feil under lesing fra fil %s\n"
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:593
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "fil %s trenger en nyere versjon av RPM\n"
 
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:637
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "fant %d kilde- og %d binærpakker\n"
 
-#: lib/rpminstall.c:637 lib/rpminstall.c:810 lib/rpminstall.c:1239
+#: lib/rpminstall.c:651 lib/rpminstall.c:824 lib/rpminstall.c:1253
 #: tools/rpmgraph.c:195
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "feilede avhengigheter:\n"
 
-#: lib/rpminstall.c:644 tools/rpmgraph.c:201
+#: lib/rpminstall.c:658 tools/rpmgraph.c:201
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:688
 msgid "installing binary packages\n"
 msgstr "installerer binærpakker\n"
 
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:712
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:787
+#: lib/rpminstall.c:801
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" spesifiserer flere pakker\n"
 
-#: lib/rpminstall.c:856
+#: lib/rpminstall.c:870
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "kan ikke åpne %s: %s\n"
 
-#: lib/rpminstall.c:862
+#: lib/rpminstall.c:876
 #, c-format
 msgid "Installing %s\n"
 msgstr "Installerer %s\n"
 
-#: lib/rpminstall.c:1233
+#: lib/rpminstall.c:1247
 #, c-format
 msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
 msgstr ""
@@ -2723,8 +2734,8 @@ msgid "package %s is already installed"
 msgstr "pakke %s er allerede installert"
 
 #: lib/rpmps.c:223
-#, c-format
-msgid "path %s in package %s is not relocateable"
+#, fuzzy, c-format
+msgid "path %s in package %s is not relocatable"
 msgstr "sti %s i pakke %s kan ikke relokeres"
 
 #: lib/rpmps.c:228
@@ -2872,51 +2883,76 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Kunne ikke åpne spec fil %s: %s\n"
 
-#: lib/rpmts.c:162
+#: lib/rpmsx.c:343
+#, c-format
+msgid "%s:  no newline on line number %d (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:360
+#, c-format
+msgid "%s:  line number %d is missing fields (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:391
+#, 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
+#, c-format
+msgid "%s:  invalid type specifier %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmsx.c:434
+#, c-format
+msgid "%s:  invalid context %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmts.c:163
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "kan ikke åpne pakkedatabase i %s\n"
 
-#: lib/rpmts.c:252
+#: lib/rpmts.c:253
 #, fuzzy, c-format
 msgid "extra '(' in package label: %s\n"
 msgstr "ugyldig pakkenummer: %s\n"
 
-#: lib/rpmts.c:270
+#: lib/rpmts.c:271
 #, fuzzy, c-format
 msgid "missing '(' in package label: %s\n"
 msgstr "Mangler '(' i %s %s\n"
 
-#: lib/rpmts.c:278
+#: lib/rpmts.c:279
 #, fuzzy, c-format
 msgid "missing ')' in package label: %s\n"
 msgstr "ugyldig pakkenummer: %s\n"
 
-#: lib/rpmts.c:455
+#: lib/rpmts.c:456
 #, fuzzy, c-format
 msgid "cannot open Solve database in %s\n"
 msgstr "kan ikke åpne database i %s\n"
 
-#: lib/rpmts.c:597
+#: lib/rpmts.c:598
 #, fuzzy, c-format
 msgid "Adding: %s\n"
 msgstr "Installerer %s\n"
 
-#: lib/rpmts.c:609
+#: lib/rpmts.c:610
 #, fuzzy, c-format
 msgid "Suggesting: %s\n"
 msgstr "Henter %s\n"
 
-#: lib/rpmts.c:1077
+#: lib/rpmts.c:1097
 #, fuzzy
 msgid "mounted filesystems:\n"
 msgstr "henter liste over monterte filsystemer\n"
 
-#: lib/rpmts.c:1079
+#: lib/rpmts.c:1099
 msgid "    i    dev bsize       bavail       iavail mount point\n"
 msgstr ""
 
-#: lib/rpmts.c:1135
+#: lib/rpmts.c:1155
 #, c-format
 msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
 msgstr ""
@@ -3122,12 +3158,12 @@ msgstr ""
 msgid "computing file dispositions\n"
 msgstr ""
 
-#: lib/verify.c:288
+#: lib/verify.c:319
 #, fuzzy, c-format
 msgid "missing  %c %s"
 msgstr "mangler    %s"
 
-#: lib/verify.c:397
+#: lib/verify.c:433
 #, fuzzy, c-format
 msgid "Unsatisfied dependencies for %s: "
 msgstr "feilede avhengigheter:\n"
@@ -3325,161 +3361,161 @@ msgstr "kan ikke 
 msgid "cannot open %s index\n"
 msgstr "kan ikke åpne %s indeks\n"
 
-#: rpmdb/rpmdb.c:915
+#: rpmdb/rpmdb.c:917
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1193 rpmdb/rpmdb.c:1322 rpmdb/rpmdb.c:1373 rpmdb/rpmdb.c:2316
-#: rpmdb/rpmdb.c:2432 rpmdb/rpmdb.c:3161
+#: rpmdb/rpmdb.c:1195 rpmdb/rpmdb.c:1324 rpmdb/rpmdb.c:1375 rpmdb/rpmdb.c:2322
+#: rpmdb/rpmdb.c:2438 rpmdb/rpmdb.c:3167
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1567
+#: rpmdb/rpmdb.c:1569
 msgid "miFreeHeader: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1577
+#: rpmdb/rpmdb.c:1579
 #, fuzzy, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "feil(%d) under lagring av post %s til %s\n"
 
-#: rpmdb/rpmdb.c:2209
+#: rpmdb/rpmdb.c:2212
 msgid "rpmdbNextIterator: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2242
 #, c-format
 msgid "rpmdb: damaged header #%u retrieved -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2520
+#: rpmdb/rpmdb.c:2526
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2583
+#: rpmdb/rpmdb.c:2589
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "feil(%d) under lagring av post %s til %s\n"
 
-#: rpmdb/rpmdb.c:2698
+#: rpmdb/rpmdb.c:2704
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2702
+#: rpmdb/rpmdb.c:2708
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2730
+#: rpmdb/rpmdb.c:2736
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "feil(%d) under fjerning av post %s fra %s\n"
 
-#: rpmdb/rpmdb.c:2751
+#: rpmdb/rpmdb.c:2757
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "feil(%d) under lagring av post %s til %s\n"
 
-#: rpmdb/rpmdb.c:2761
+#: rpmdb/rpmdb.c:2767
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "feil(%d) under fjerning av post %s fra %s\n"
 
-#: rpmdb/rpmdb.c:2910
+#: rpmdb/rpmdb.c:2916
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2964
+#: rpmdb/rpmdb.c:2970
 msgid "rpmdbAdd: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3136
+#: rpmdb/rpmdb.c:3142
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3140
+#: rpmdb/rpmdb.c:3146
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3180
+#: rpmdb/rpmdb.c:3186
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "feil(%d) under lagring av post %s til %s\n"
 
-#: rpmdb/rpmdb.c:3581
+#: rpmdb/rpmdb.c:3587
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3619
+#: rpmdb/rpmdb.c:3625
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3651
+#: rpmdb/rpmdb.c:3657
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3655
+#: rpmdb/rpmdb.c:3661
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3661
+#: rpmdb/rpmdb.c:3667
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3663
+#: rpmdb/rpmdb.c:3669
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3670
+#: rpmdb/rpmdb.c:3676
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3683
+#: rpmdb/rpmdb.c:3689
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3712
+#: rpmdb/rpmdb.c:3718
 #, c-format
 msgid "header #%u in the database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3752
+#: rpmdb/rpmdb.c:3758
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3766
+#: rpmdb/rpmdb.c:3772
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3774
+#: rpmdb/rpmdb.c:3780
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3776
+#: rpmdb/rpmdb.c:3782
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3786
+#: rpmdb/rpmdb.c:3792
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3788
+#: rpmdb/rpmdb.c:3794
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
@@ -3535,42 +3571,42 @@ msgstr ""
 msgid "Macro %%%s (%s) was not used below level %d\n"
 msgstr ""
 
-#: rpmio/macro.c:982
+#: rpmio/macro.c:984
 #, c-format
 msgid "Unknown option %c in %s(%s)\n"
 msgstr ""
 
-#: rpmio/macro.c:1182
+#: rpmio/macro.c:1184
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)\n"
 msgstr ""
 
-#: rpmio/macro.c:1252 rpmio/macro.c:1269
+#: rpmio/macro.c:1255 rpmio/macro.c:1272
 #, c-format
 msgid "Unterminated %c: %s\n"
 msgstr ""
 
-#: rpmio/macro.c:1310
+#: rpmio/macro.c:1313
 #, c-format
 msgid "A %% is followed by an unparseable macro\n"
 msgstr ""
 
-#: rpmio/macro.c:1439
+#: rpmio/macro.c:1442
 #, c-format
 msgid "Macro %%%.*s not found, skipping\n"
 msgstr ""
 
-#: rpmio/macro.c:1510
+#: rpmio/macro.c:1513
 msgid "Target buffer overflow\n"
 msgstr "Overflyt i målbuffer\n"
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1705 rpmio/macro.c:1711
+#: rpmio/macro.c:1708 rpmio/macro.c:1714
 #, c-format
 msgid "File %s: %s\n"
 msgstr "Fil %s: %s\n"
 
-#: rpmio/macro.c:1714
+#: rpmio/macro.c:1717
 #, c-format
 msgid "File %s is smaller than %u bytes\n"
 msgstr "Fil %s er mindre enn %u bytes\n"
index 96f9a09..806d21c 100644 (file)
--- a/po/pl.po
+++ b/po/pl.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.3-20030515\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:11-0500\n"
+"POT-Creation-Date: 2003-12-30 08:11-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"
@@ -27,44 +27,44 @@ msgstr "Niespe
 msgid "Unable to open spec file %s: %s\n"
 msgstr "Nie mo¿na otworzyæ pliku spec %s: %s\n"
 
-#: build.c:152 build.c:164
+#: build.c:150 build.c:162
 #, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr "Otwarcie potoku tara nie powiod³o siê: %m\n"
 
 #. Give up
-#: build.c:171
+#: build.c:169
 #, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "Odczytanie pliku spec z %s nie powiod³o siê\n"
 
-#: build.c:199
+#: build.c:197
 #, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr "Zmiana nazwy %s na %s nie powiod³a siê: %m\n"
 
-#: build.c:239
+#: build.c:237
 #, c-format
 msgid "failed to stat %s: %m\n"
 msgstr "stat nie powiod³o siê %s: %m\n"
 
-#: build.c:244
+#: build.c:242
 #, c-format
 msgid "File %s is not a regular file.\n"
 msgstr "Plik %s nie jest zwyk³ym plikiem.\n"
 
-#: build.c:253
+#: build.c:251
 #, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr "Plik %s nie wygl±da na plik spec.\n"
 
 #. parse up the build operators
-#: build.c:324
+#: build.c:322
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr "Budowanie dla platform: %s\n"
 
-#: build.c:339
+#: build.c:337
 #, c-format
 msgid "Building for target %s\n"
 msgstr "Budowanie dla %s\n"
@@ -116,7 +116,7 @@ msgstr "Wsp
 msgid "%s: %s\n"
 msgstr "%s: %s\n"
 
-#: rpmqv.c:129 lib/poptALL.c:114
+#: rpmqv.c:129 lib/poptALL.c:119
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM wersja %s\n"
@@ -428,159 +428,159 @@ msgstr "&& i || nie s
 msgid "syntax error in expression\n"
 msgstr "b³±d sk³adni w wyra¿eniu\n"
 
-#: build/files.c:278
+#: build/files.c:280
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "TIMECHECK nie powiod³o siê: %s\n"
 
-#: build/files.c:343 build/files.c:543 build/files.c:739
+#: build/files.c:345 build/files.c:545 build/files.c:741
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "Brak '(' w %s %s\n"
 
-#: build/files.c:354 build/files.c:673 build/files.c:750
+#: build/files.c:356 build/files.c:675 build/files.c:752
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "Brak ')' w %s(%s\n"
 
-#: build/files.c:392 build/files.c:698
+#: build/files.c:394 build/files.c:700
 #, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "B³êdny znak %s: %s\n"
 
-#: build/files.c:502
+#: build/files.c:504
 #, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "Brak %s w %s %s\n"
 
-#: build/files.c:559
+#: build/files.c:561
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr "Brak bia³ego znaku po %s(): %s\n"
 
-#: build/files.c:597
+#: build/files.c:599
 #, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "B³êdna sk³adnia: %s(%s)\n"
 
-#: build/files.c:607
+#: build/files.c:609
 #, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "B³êdne okre¶lenie uprawnieñ: %s(%s)\n"
 
-#: build/files.c:619
+#: build/files.c:621
 #, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "B³êdne okre¶lenie uprawnieñ katalogu: %s(%s)\n"
 
-#: build/files.c:777
+#: build/files.c:779
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr "Niespotykana d³ugo¶æ okre¶lenia lokalizacji \"%.*s\" w %%lang(%s)\n"
 
 #. @innercontinue@
-#: build/files.c:788
+#: build/files.c:790
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr "Powtórzone okre¶lenie lokalizacji %.*s w %%lang(%s)\n"
 
-#: build/files.c:917
+#: build/files.c:919
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr "Limit trafieñ dla %%docdir\n"
 
-#: build/files.c:925
+#: build/files.c:927
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr "Tylko jeden argument dla %%docdir\n"
 
 #. We already got a file -- error
-#: build/files.c:959
+#: build/files.c:961
 #, c-format
 msgid "Two files on one line: %s\n"
 msgstr "Dwa pliki w jednej linii: %s\n"
 
-#: build/files.c:976
+#: build/files.c:978
 #, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "Plik musi siê zaczynaæ od \"/\": %s\n"
 
-#: build/files.c:989
+#: build/files.c:991
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr "Nie mo¿na mieszaæ specjalnego %%doc z innymi formami: %s\n"
 
-#: build/files.c:1141
+#: build/files.c:1149
 #, c-format
 msgid "File listed twice: %s\n"
 msgstr "Plik podany dwukrotnie: %s\n"
 
-#: build/files.c:1280
+#: build/files.c:1288
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "Dowi±zanie symboliczne wskazuje na BuildRoot: %s -> %s\n"
 
-#: build/files.c:1520
+#: build/files.c:1535
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Plik nie zgadza siê z prefiksem (%s): %s\n"
 
-#: build/files.c:1544
+#: build/files.c:1559
 #, c-format
 msgid "File not found: %s\n"
 msgstr "Nie znaleziono pliku: %s\n"
 
-#: build/files.c:1752
+#: build/files.c:1767
 #, c-format
 msgid "%s: public key read failed.\n"
 msgstr "%s: odczyt klucza publicznego nie powiód³ siê.\n"
 
-#: build/files.c:1756 lib/rpmchecksig.c:580
+#: build/files.c:1771 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:1804
+#: build/files.c:1819
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Plik musi siê zaczynaæ od \"/\": %s\n"
 
-#: build/files.c:1828
+#: build/files.c:1843
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "Glob niedozwolony: %s\n"
 
-#: build/files.c:1845 lib/rpminstall.c:347
+#: build/files.c:1860 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:1905
+#: build/files.c:1920
 #, 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:1916 build/pack.c:156
+#: build/files.c:1931 build/pack.c:156
 #, c-format
 msgid "line: %s\n"
 msgstr "linia: %s\n"
 
-#: build/files.c:2307
+#: build/files.c:2323
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "B³êdny plik: %s: %s\n"
 
-#: build/files.c:2319 build/parsePrep.c:50
+#: build/files.c:2335 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "B³êdny u¿ytkownik/grupa: %s\n"
 
-#: build/files.c:2363
+#: build/files.c:2379
 #, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr "Szukanie niespakietowanych plików: %s\n"
 
-#: build/files.c:2386
+#: build/files.c:2402
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
@@ -589,7 +589,7 @@ msgstr ""
 "Znaleziono zainstalowane (ale niespakietowane) pliki:\n"
 "%s"
 
-#: build/files.c:2414
+#: build/files.c:2430
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Przetwarzanie plików: %s-%s-%s\n"
@@ -728,7 +728,7 @@ msgstr "Nie mo
 msgid "Could not open %s: %s\n"
 msgstr "Nie mo¿na otworzyæ %s: %s\n"
 
-#: build/pack.c:632 lib/psm.c:1427
+#: build/pack.c:632 lib/psm.c:1420
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Nie mo¿na zapisaæ pakietu: %s\n"
@@ -758,7 +758,7 @@ msgstr "Nie mo
 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:1725
+#: build/pack.c:725 lib/psm.c:1689
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Zapisano: %s\n"
@@ -1242,18 +1242,18 @@ msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
 msgstr ""
 "generuj nag³ówki pakietu kompatybilne z (wymieraj±cymi) pakietami rpm[23]"
 
-#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329
-#: lib/poptQV.c:338 lib/poptQV.c:377
+#: build/poptBT.c:229 lib/poptALL.c:240 lib/poptI.c:261 lib/poptQV.c:335
+#: lib/poptQV.c:344 lib/poptQV.c:383
 msgid "don't verify package digest(s)"
 msgstr "nie sprawdzaj skrótów pakietu"
 
-#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332
-#: lib/poptQV.c:340 lib/poptQV.c:380
+#: build/poptBT.c:231 lib/poptALL.c:242 lib/poptI.c:263 lib/poptQV.c:338
+#: lib/poptQV.c:346 lib/poptQV.c:386
 msgid "don't verify database header(s) when retrieved"
 msgstr "nie sprawdzaj nag³ówków bazy danych przy odczycie"
 
-#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335
-#: lib/poptQV.c:342 lib/poptQV.c:382
+#: build/poptBT.c:233 lib/poptALL.c:248 lib/poptI.c:265 lib/poptQV.c:341
+#: lib/poptQV.c:348 lib/poptQV.c:388
 msgid "don't verify package signature(s)"
 msgstr "nie sprawdzaj sygnatur pakietu"
 
@@ -1323,31 +1323,31 @@ msgstr "B
 msgid "Bad/unreadable  header"
 msgstr "B³êdny/nieczytelny nag³ówek"
 
-#: lib/cpio.c:232
+#: lib/cpio.c:233
 msgid "Header size too big"
 msgstr "Rozmiar nag³ówka jest zbyt du¿y"
 
-#: lib/cpio.c:233
+#: lib/cpio.c:234
 msgid "Unknown file type"
 msgstr "Nieznany typ pliku"
 
-#: lib/cpio.c:234
+#: lib/cpio.c:235
 msgid "Missing hard link(s)"
 msgstr "Brakuj±ce twarde dowi±zania"
 
-#: lib/cpio.c:235
+#: lib/cpio.c:236
 msgid "MD5 sum mismatch"
 msgstr "B³±d sumy MD5"
 
-#: lib/cpio.c:236
+#: lib/cpio.c:237
 msgid "Internal error"
 msgstr "B³±d wewnêtrzny"
 
-#: lib/cpio.c:237
+#: lib/cpio.c:238
 msgid "Archive file not in header"
 msgstr "Brak pliku archiwum w nag³ówku"
 
-#: lib/cpio.c:250
+#: lib/cpio.c:251
 msgid " failed - "
 msgstr " nie powiod³o siê -"
 
@@ -1478,47 +1478,57 @@ msgstr "%6d 0x%04x %s %s\n"
 msgid "file %s is on an unknown device\n"
 msgstr "plik %s jest na nieznanym urz±dzeniu\n"
 
-#: lib/fsm.c:350
+#: lib/fsm.c:352
 #, fuzzy
 msgid "========== Directories not explicitly included in package:\n"
 msgstr "========== Katalogi nie w³±czone explicite do pakietu:\n"
 
-#: lib/fsm.c:352
+#: lib/fsm.c:354
 #, c-format
 msgid "%10d %s\n"
 msgstr "%10d %s\n"
 
-#: lib/fsm.c:1293
+#: lib/fsm.c:768
+#, 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:776
+#, c-format
+msgid "group %s does not exist - using root\n"
+msgstr "grupa %s nie istnieje - u¿yto grupy root\n"
+
+#: lib/fsm.c:1334
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr "katalog %s utworzony z uprawnieniami %04o.\n"
 
-#: lib/fsm.c:1592
+#: lib/fsm.c:1633
 #, 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:1719 lib/fsm.c:1855
+#: lib/fsm.c:1760 lib/fsm.c:1896
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s zapisano jako %s\n"
 
-#: lib/fsm.c:1882
+#: lib/fsm.c:1923
 #, 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:1888
+#: lib/fsm.c:1929
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s rmdir %s nie powiod³o siê: %s\n"
 
-#: lib/fsm.c:1903
+#: lib/fsm.c:1944
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s unlink %s nie powiod³o siê: %s\n"
 
-#: lib/fsm.c:1925
+#: lib/fsm.c:1966
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s utworzony jako %s\n"
@@ -1635,108 +1645,108 @@ msgstr "%s: headerRead nie powiod
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread nie powiod³o siê: %s\n"
 
-#: lib/poptALL.c:222
+#: lib/poptALL.c:227
 msgid "predefine MACRO with value EXPR"
 msgstr "predefiniuj MAKRO z warto¶ci± WYR"
 
-#: lib/poptALL.c:223 lib/poptALL.c:226
+#: lib/poptALL.c:228 lib/poptALL.c:231
 msgid "'MACRO EXPR'"
 msgstr "'MAKRO WYR'"
 
-#: lib/poptALL.c:225
+#: lib/poptALL.c:230
 msgid "define MACRO with value EXPR"
 msgstr "definiuj MAKRO z warto¶ci± WYR"
 
-#: lib/poptALL.c:228
+#: lib/poptALL.c:233
 msgid "print macro expansion of EXPR"
 msgstr "wy¶wietl rozwiniêcie makr z WYR"
 
-#: lib/poptALL.c:229
+#: lib/poptALL.c:234
 msgid "'EXPR'"
 msgstr "'WYR'"
 
-#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254
+#: lib/poptALL.c:236 lib/poptALL.c:255 lib/poptALL.c:259
 msgid "read <FILE:...> instead of default file(s)"
 msgstr "czytaj <PLIK:...> zamiast domy¶lnego pliku(ów)"
 
-#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255
+#: lib/poptALL.c:237 lib/poptALL.c:256 lib/poptALL.c:260
 msgid "<FILE:...>"
 msgstr "<PLIK:...>"
 
-#: lib/poptALL.c:240 lib/poptALL.c:274
+#: lib/poptALL.c:245 lib/poptALL.c:279
 msgid "disable use of libio(3) API"
 msgstr "wy³±cz u¿ywanie API libio(3)"
 
-#: lib/poptALL.c:246
+#: lib/poptALL.c:251
 msgid "send stdout to CMD"
 msgstr "przeka¿ standardowe wyj¶cie do POLECENIA"
 
-#: lib/poptALL.c:247
+#: lib/poptALL.c:252
 msgid "CMD"
 msgstr "POLECENIE"
 
-#: lib/poptALL.c:258
+#: lib/poptALL.c:263
 msgid "use ROOT as top level directory"
 msgstr "u¿yj KAGALOGu jako katalogu najwy¿szego poziomu"
 
-#: lib/poptALL.c:259
+#: lib/poptALL.c:264
 msgid "ROOT"
 msgstr "KATALOG"
 
-#: lib/poptALL.c:262
+#: lib/poptALL.c:267
 msgid "display known query tags"
 msgstr "wy¶wietl znane etykiety zapytañ"
 
-#: lib/poptALL.c:264
+#: lib/poptALL.c:269
 msgid "display final rpmrc and macro configuration"
 msgstr "wy¶wietl ostateczn± konfiguracjê rpmrc i makr"
 
-#: lib/poptALL.c:266
+#: lib/poptALL.c:271
 msgid "provide less detailed output"
 msgstr "u¿ywaj mniej szczegó³owego wyj¶cia"
 
-#: lib/poptALL.c:268
+#: lib/poptALL.c:273
 msgid "provide more detailed output"
 msgstr "u¿ywaj bardziej szczegó³owego wyj¶cia"
 
-#: lib/poptALL.c:270
+#: lib/poptALL.c:275
 msgid "print the version of rpm being used"
 msgstr "wy¶wietl wersjê u¿ywanego rpm-a"
 
-#: lib/poptALL.c:283
+#: lib/poptALL.c:288
 msgid "debug payload file state machine"
 msgstr "¶led¼ maszynê stanu danych pliku"
 
-#: lib/poptALL.c:285
+#: lib/poptALL.c:290
 msgid "use threads for file state machine"
 msgstr "u¿yj w±tków dla maszyny stanu plików"
 
-#: lib/poptALL.c:287
+#: lib/poptALL.c:292
 msgid "debug protocol data stream"
 msgstr "¶led¼ strumieñ danych protoko³u"
 
-#: lib/poptALL.c:292
+#: lib/poptALL.c:297
 msgid "debug option/argument processing"
 msgstr "¶led¼ przetwarzanie opcji/argumentów"
 
-#: lib/poptALL.c:297
+#: lib/poptALL.c:302
 msgid "debug package state machine"
 msgstr "¶led¼ maszynê stanu pakietu"
 
-#: lib/poptALL.c:299
+#: lib/poptALL.c:304
 msgid "use threads for package state machine"
 msgstr "u¿yj w±tków dla maszyny stanu pakietów"
 
-#: lib/poptALL.c:311
+#: lib/poptALL.c:316
 msgid "debug rpmio I/O"
 msgstr "¶led¼ wej¶cie/wyj¶cie rpmio"
 
-#: lib/poptALL.c:323
+#: lib/poptALL.c:330
 msgid "debug URL cache handling"
 msgstr "¶led¼ obs³ugê buforowania URL-i"
 
 #. @-nullpass@
-#: lib/poptALL.c:393
+#: lib/poptALL.c:400
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr "%s: tabela opcji b³êdnie skonfigurowana (%d)\n"
@@ -1765,17 +1775,17 @@ msgstr "cofni
 msgid "malformed rollback time/date stamp argument"
 msgstr "b³êdny argument znacznika czasu/daty dla cofniêcie"
 
-#: lib/poptI.c:151
+#: lib/poptI.c:155
 msgid "add suggested packages to transaction"
 msgstr "dodaj sugerowane pakiety do transakcji"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:159
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "instaluj wszystkie pliki, nawet konfiguracyjne, które w innym przypadku by "
 "pominiêto"
 
-#: lib/poptI.c:159
+#: lib/poptI.c:163
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1783,147 +1793,153 @@ msgstr ""
 "usuñ wszystkie pakiety, które spe³niaj± wzorzec <pakiet> (zazwyczaj "
 "wy¶wietlany jest b³±d gdy <pakiet> opisuje wiele pakietów)"
 
-#: lib/poptI.c:164 tools/rpmgraph.c:273
+#: lib/poptI.c:168 tools/rpmgraph.c:273
 msgid "use anaconda \"presentation order\""
 msgstr "u¿yj porz±dku wy¶wietlania anacondy"
 
-#: lib/poptI.c:169 lib/poptI.c:238
+#: lib/poptI.c:173 lib/poptI.c:245
 msgid "do not execute package scriptlet(s)"
 msgstr "nie wykonuj ¿adnych skryptów instalacyjnych"
 
-#: lib/poptI.c:173
-msgid "relocate files in non-relocateable package"
+#: lib/poptI.c:177
+#, fuzzy
+msgid "relocate files in non-relocatable package"
 msgstr "przesuñ pliki w nieprzesuwalnym pakiecie"
 
-#: lib/poptI.c:176
+#: lib/poptI.c:180
 msgid "save erased package files by renaming into sub-directory"
 msgstr "zapisz usuwane pliki z pakietu przenosz±c do podkatalogu"
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 msgid "erase (uninstall) package"
 msgstr "usuñ (odinstaluj) pakiet"
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 msgid "<package>+"
 msgstr "<pakiet>+"
 
-#: lib/poptI.c:182 lib/poptI.c:219
+#: lib/poptI.c:186 lib/poptI.c:223
 msgid "do not install configuration files"
 msgstr "nie instaluj plików konfiguracyjnych"
 
-#: lib/poptI.c:185 lib/poptI.c:224
+#: lib/poptI.c:189 lib/poptI.c:228
 msgid "do not install documentation"
 msgstr "nie instaluj dokumentacji"
 
-#: lib/poptI.c:187
+#: lib/poptI.c:191
 msgid "skip files with leading component <path> "
 msgstr "pomiñ pliki zaczynaj±ce siê od <¶cie¿ki> "
 
-#: lib/poptI.c:188
+#: lib/poptI.c:192
 msgid "<path>"
 msgstr "<¶cie¿ka>"
 
-#: lib/poptI.c:191
+#: lib/poptI.c:195
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "skrócona wersja kombinacji --replacepkgs --replacefiles"
 
-#: lib/poptI.c:195
+#: lib/poptI.c:199
 msgid "upgrade package(s) if already installed"
 msgstr "uaktualnij pakiet(y) je¶li jest ju¿ zainstalowany"
 
-#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
+#: lib/poptI.c:200 lib/poptI.c:216 lib/poptI.c:312
 msgid "<packagefile>+"
 msgstr "<plik pakietu>+"
 
-#: lib/poptI.c:198
+#: lib/poptI.c:202
 msgid "print hash marks as package installs (good with -v)"
 msgstr "wy¶wietlaj znaki hash przy instalacji (dobre z -v)"
 
-#: lib/poptI.c:201
+#: lib/poptI.c:205
 msgid "don't verify package architecture"
 msgstr "nie sprawdzaj architektury systemu"
 
-#: lib/poptI.c:204
+#: lib/poptI.c:208
 msgid "don't verify package operating system"
 msgstr "nie sprawdzaj rodzaju systemu operacyjnego"
 
-#: lib/poptI.c:207
+#: lib/poptI.c:211
 msgid "don't check disk space before installing"
 msgstr "nie sprawdzaj zajêto¶ci dysku przed instalacj±"
 
-#: lib/poptI.c:209
+#: lib/poptI.c:213
 msgid "install documentation"
 msgstr "zainstaluj dokumentacjê"
 
-#: lib/poptI.c:212
+#: lib/poptI.c:216
 msgid "install package(s)"
 msgstr "instaluj pakiet(y)"
 
-#: lib/poptI.c:215
+#: lib/poptI.c:219
 msgid "update the database, but do not modify the filesystem"
 msgstr "uaktualnij bazê, ale nie modyfikuj systemu plików"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:225
 msgid "do not verify package dependencies"
 msgstr "nie sprawdzaj zale¿no¶ci pakietu"
 
-#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:231 lib/poptQV.c:279 lib/poptQV.c:282
 msgid "don't verify MD5 digest of files"
 msgstr "nie sprawdzaj skrótów MD5 plików"
 
-#: lib/poptI.c:230
+#: lib/poptI.c:233
+#, fuzzy
+msgid "don't install file security contexts"
+msgstr "nie instaluj plików konfiguracyjnych"
+
+#: lib/poptI.c:237
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "nie zmieniaj kolejno¶ci instalacji pakietów by zapewniæ zale¿no¶ci"
 
-#: lib/poptI.c:235
+#: lib/poptI.c:242
 msgid "do not suggest missing dependency resolution(s)"
 msgstr "nie sugeruj sposobu(ów) spe³nienia brakuj±cych zale¿no¶ci"
 
-#: lib/poptI.c:242
+#: lib/poptI.c:249
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "nie wykonuj skryptu %%pre (je¶li jest)"
 
-#: lib/poptI.c:245
+#: lib/poptI.c:252
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "nie wykonuj skryptu %%post (je¶li jest)"
 
-#: lib/poptI.c:248
+#: lib/poptI.c:255
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "nie wykonuj skryptu %%preun (je¶li jest)"
 
-#: lib/poptI.c:251
+#: lib/poptI.c:258
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "nie wykonuj skryptu %%postun (je¶li jest)"
 
-#: lib/poptI.c:261
+#: lib/poptI.c:268
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "nie wykonuj ¿adnych triggerów uaktywnianych przez ten pakiet"
 
-#: lib/poptI.c:264
+#: lib/poptI.c:271
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "nie wykonuj ¿adnych skryptów %%triggerprein"
 
-#: lib/poptI.c:267
+#: lib/poptI.c:274
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "nie wykonuj ¿adnych skryptów %%triggerin"
 
-#: lib/poptI.c:270
+#: lib/poptI.c:277
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "nie wykonuj ¿adnych skryptów %%triggerun"
 
-#: lib/poptI.c:273
+#: lib/poptI.c:280
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "nie wykonuj ¿adnych skryptów %%triggerpostun"
 
-#: lib/poptI.c:277
+#: lib/poptI.c:284
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1931,51 +1947,51 @@ msgstr ""
 "uaktualnij do starej wersji (--force robi to samo automatycznie podczas "
 "uaktualniania)"
 
-#: lib/poptI.c:281
+#: lib/poptI.c:288
 msgid "print percentages as package installs"
 msgstr "wy¶wietlaj stan instalacji w procentach"
 
-#: lib/poptI.c:283
+#: lib/poptI.c:290
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "przesuñ pliki pakietu do drzewa <katalog>, je¶li jest przesuwalny"
 
-#: lib/poptI.c:284
+#: lib/poptI.c:291
 msgid "<dir>"
 msgstr "<katalog>"
 
-#: lib/poptI.c:286
+#: lib/poptI.c:293
 msgid "relocate files from path <old> to <new>"
 msgstr "przesuñ pliki z drzewa <stara-¶cie¿ka> do drzewa <nowa-¶cie¿ka>"
 
-#: lib/poptI.c:287
+#: lib/poptI.c:294
 msgid "<old>=<new>"
 msgstr "<stara-¶cie¿ka>=<nowa-¶cie¿ka>"
 
-#: lib/poptI.c:290
+#: lib/poptI.c:297
 msgid "save erased package files by repackaging"
 msgstr "zapisz usuwane pliki z pakietu poprzez przepakowanie"
 
-#: lib/poptI.c:293
+#: lib/poptI.c:300
 msgid "install even if the package replaces installed files"
 msgstr "instaluj nawet gdy pakiet zastêpuje inne zainstalowane pliki"
 
-#: lib/poptI.c:296
+#: lib/poptI.c:303
 msgid "reinstall if the package is already present"
 msgstr "przeinstaluj je¶li pakiet jest ju¿ zainstalowany"
 
-#: lib/poptI.c:298
+#: lib/poptI.c:305
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr "odinstaluj nowe, zainstaluj z powrotem stare pakiety a¿ do <daty>"
 
-#: lib/poptI.c:299
+#: lib/poptI.c:306
 msgid "<date>"
 msgstr "<data>"
 
-#: lib/poptI.c:301
+#: lib/poptI.c:308
 msgid "don't install, but tell if it would work or not"
 msgstr "nie instaluj, podaj tylko czy instalacja zadzia³a czy nie"
 
-#: lib/poptI.c:304
+#: lib/poptI.c:311
 msgid "upgrade package(s)"
 msgstr "uaktualnij pakiet(y)"
 
@@ -2047,195 +2063,190 @@ msgstr "odpytaj/sprawd
 msgid "query/verify the package(s) which provide a dependency"
 msgstr "odpytaj/sprawd¼ pakiet(y) udostêpniaj±ce zasób"
 
-#: lib/poptQV.c:226
+#: lib/poptQV.c:230
 msgid "list all configuration files"
 msgstr "wy¶wietl wszystkie pliki konfiguracyjne"
 
-#: lib/poptQV.c:228
+#: lib/poptQV.c:232
 msgid "list all documentation files"
 msgstr "wy¶wietl wszystkie pliki dokumentacji"
 
-#: lib/poptQV.c:230
+#: lib/poptQV.c:234
 msgid "dump basic file information"
 msgstr "podaj podstawowe informacje o pliku"
 
-#: lib/poptQV.c:234
+#: lib/poptQV.c:238
 msgid "list files in package"
 msgstr "wy¶wietl pliki zawarte w pakiecie"
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:243
 #, c-format
 msgid "skip %%ghost files"
 msgstr "pomiñ pliki %%ghost"
 
-#: lib/poptQV.c:243
+#: lib/poptQV.c:247
 #, c-format
 msgid "skip %%license files"
 msgstr "pomiñ pliki %%license"
 
-#: lib/poptQV.c:246
+#: lib/poptQV.c:250
 #, c-format
 msgid "skip %%readme files"
 msgstr "pomiñ pliki %%readme"
 
-#: lib/poptQV.c:252
+#: lib/poptQV.c:256
 msgid "use the following query format"
 msgstr "u¿yj nastêpuj±cego formatu zapytania"
 
-#: lib/poptQV.c:254
+#: lib/poptQV.c:258
 msgid "substitute i18n sections into spec file"
 msgstr "zamieñ sekcje i18n w plik spec"
 
-#: lib/poptQV.c:256
+#: lib/poptQV.c:260
 msgid "display the states of the listed files"
 msgstr "wy¶wietl status pokazywanych plików"
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:286
 msgid "don't verify size of files"
 msgstr "nie sprawdzaj rozmiaru plików"
 
-#: lib/poptQV.c:285
+#: lib/poptQV.c:289
 msgid "don't verify symlink path of files"
 msgstr "nie sprawdzaj ¶cie¿ek dowi±zañ plików"
 
-#: lib/poptQV.c:288
+#: lib/poptQV.c:292
 msgid "don't verify owner of files"
 msgstr "nie sprawdzaj w³a¶cicieli plików"
 
-#: lib/poptQV.c:291
+#: lib/poptQV.c:295
 msgid "don't verify group of files"
 msgstr "nie sprawdzaj grup plików"
 
-#: lib/poptQV.c:294
+#: lib/poptQV.c:298
 msgid "don't verify modification time of files"
 msgstr "nie sprawdzaj czasu modyfikacji plików"
 
-#: lib/poptQV.c:297 lib/poptQV.c:300
+#: lib/poptQV.c:301 lib/poptQV.c:304
 msgid "don't verify mode of files"
 msgstr "nie sprawdzaj uprawnieñ plików"
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:307
+#, fuzzy
+msgid "don't verify file security contexts"
+msgstr "nie sprawdzaj plików pakietu"
+
+#: lib/poptQV.c:309
 msgid "don't verify files in package"
 msgstr "nie sprawdzaj plików pakietu"
 
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
+#: lib/poptQV.c:312 lib/poptQV.c:315 tools/rpmgraph.c:267
 msgid "don't verify package dependencies"
 msgstr "nie sprawdzaj zale¿no¶ci pakietu"
 
-#: lib/poptQV.c:314 lib/poptQV.c:318 lib/poptQV.c:321 lib/poptQV.c:324
+#: lib/poptQV.c:320 lib/poptQV.c:324 lib/poptQV.c:327 lib/poptQV.c:330
 msgid "don't execute verify script(s)"
 msgstr "nie wykonuj ¿adnych skryptów verify"
 
-#: lib/poptQV.c:348
+#: lib/poptQV.c:354
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr "nie sprawdzaj sygnatur GPG V3 DSS"
 
-#: lib/poptQV.c:351
+#: lib/poptQV.c:357
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr "nie sprawdzaj sygnatur PGP V3 RSA/MD5"
 
-#: lib/poptQV.c:366
+#: lib/poptQV.c:372
 msgid "sign package(s) (identical to --resign)"
 msgstr "podpisz pakiet(y) (identyczne z --resign)"
 
-#: lib/poptQV.c:368
+#: lib/poptQV.c:374
 msgid "verify package signature(s)"
 msgstr "sprawd¼ sygnaturê pakietu"
 
-#: lib/poptQV.c:370
+#: lib/poptQV.c:376
 msgid "import an armored public key"
 msgstr "importuj opakowany klucz publiczny"
 
-#: lib/poptQV.c:372
+#: lib/poptQV.c:378
 msgid "sign package(s) (identical to --addsign)"
 msgstr "podpisz pakiet(y) (identyczne z --addsign)"
 
-#: lib/poptQV.c:374
+#: lib/poptQV.c:380
 msgid "generate signature"
 msgstr "generuj sygnaturê"
 
-#: lib/psm.c:269
+#: lib/psm.c:268
 msgid "source package expected, binary found\n"
 msgstr "spodziewany pakiet ¼ród³owy, a napotkano binarny\n"
 
-#: lib/psm.c:394
+#: lib/psm.c:386
 msgid "source package contains no .spec file\n"
 msgstr "pakiet ¼ród³owy nie zawiera pliku .spec\n"
 
-#: lib/psm.c:480
+#: lib/psm.c:472
 #, c-format
 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:562
+#: lib/psm.c:554
 #, 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:570
+#: lib/psm.c:562
 #, 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:735
+#: lib/psm.c:730
 #, 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:756
+#: lib/psm.c:751
 #, 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:762
+#: lib/psm.c:757
 #, 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:1191
+#: lib/psm.c:1188
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "%s: %s ma %d plików, test = %d\n"
 
-#: lib/psm.c:1330
+#: lib/psm.c:1323
 #, 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:1439
+#: lib/psm.c:1432
 msgid "Unable to reload signature header\n"
 msgstr "Nie mo¿na ponownie odczytaæ nag³ówka sygnatury\n"
 
-#: lib/psm.c:1485
-#, c-format
-msgid "user %s does not exist - using root\n"
-msgstr "u¿ytkownik %s nie istnieje - u¿yto konta root\n"
-
-#: lib/psm.c:1494
-#, c-format
-msgid "group %s does not exist - using root\n"
-msgstr "grupa %s nie istnieje - u¿yto grupy root\n"
-
-#: lib/psm.c:1546
+#: lib/psm.c:1510
 #, 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:1547
+#: lib/psm.c:1511
 msgid " on file "
 msgstr " na pliku "
 
-#: lib/psm.c:1733
+#: lib/psm.c:1697
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%s nie powiód³ siê na pliku %s: %s\n"
 
-#: lib/psm.c:1736
+#: lib/psm.c:1700
 #, c-format
 msgid "%s failed: %s\n"
 msgstr "%s nie powiod³o siê: %s\n"
 
-#: lib/query.c:118 lib/rpmts.c:565
+#: lib/query.c:118 lib/rpmts.c:566
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "b³êdny format: %s\n"
@@ -2282,8 +2293,8 @@ msgstr "pakiet nie ma list w
 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:462
-#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576
+#: 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
 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157
 #, c-format
 msgid "open of %s failed: %s\n"
@@ -2298,7 +2309,7 @@ msgstr "odpytywanie %s nie powiod
 msgid "old format source packages cannot be queried\n"
 msgstr "pakiety w starym formacie nie mog± byæ odpytywane\n"
 
-#: lib/query.c:488 lib/rpminstall.c:608
+#: lib/query.c:488 lib/rpminstall.c:622
 #, c-format
 msgid "%s: not an rpm package (or package manifest): %s\n"
 msgstr "%s: nie jest pakietem rpm (ani \"manifestem\" pakietu): %s\n"
@@ -2367,16 +2378,16 @@ msgstr "numer rekordu pakietu: %u\n"
 msgid "record %u could not be read\n"
 msgstr "nie mo¿na odczytaæ rekordu %u\n"
 
-#: lib/query.c:766 lib/rpminstall.c:778
+#: lib/query.c:766 lib/rpminstall.c:792
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "pakiet %s nie jest zainstalowany\n"
 
-#: lib/rpmal.c:692
+#: lib/rpmal.c:694
 msgid "(added files)"
 msgstr "(dodane pliki)"
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:772
 msgid "(added provide)"
 msgstr "(dodany zasób)"
 
@@ -2501,36 +2512,36 @@ msgstr "  %s    A %s\tB %s\n"
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "pakiet %s ma niespe³nione %s: %s\n"
 
-#: lib/rpmfi.c:546
+#: lib/rpmfi.c:561
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s pominiêty z powodu flagi missingok\n"
 
-#: lib/rpmfi.c:784
+#: lib/rpmfi.c:799
 msgid "========== relocations\n"
 msgstr "========== przesuniêcia\n"
 
-#: lib/rpmfi.c:788
+#: lib/rpmfi.c:803
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr "%5d wy³±czenie  %s\n"
 
-#: lib/rpmfi.c:791
+#: lib/rpmfi.c:806
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d przesuniêcie %s -> %s\n"
 
-#: lib/rpmfi.c:919
+#: lib/rpmfi.c:934
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "wy³±czanie %s %s\n"
 
-#: lib/rpmfi.c:929
+#: lib/rpmfi.c:944
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "przesuwanie %s do %s\n"
 
-#: lib/rpmfi.c:1021
+#: lib/rpmfi.c:1036
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "przesuwanie katalogu %s do %s\n"
@@ -2559,87 +2570,87 @@ msgstr "Uaktualnianie..."
 msgid "Upgrading packages..."
 msgstr "Uaktualnianie pakietów..."
 
-#: lib/rpminstall.c:394
+#: lib/rpminstall.c:408
 #, c-format
 msgid "Adding goal: %s\n"
 msgstr "Dodawanie celu: %s\n"
 
-#: lib/rpminstall.c:409
+#: lib/rpminstall.c:423
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "¦ci±ganie %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:436
 #, c-format
 msgid " ... as %s\n"
 msgstr "... jako %s\n"
 
-#: lib/rpminstall.c:426
+#: lib/rpminstall.c:440
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s pomijany - transmisja %s nie powiod³a siê\n"
 
-#: lib/rpminstall.c:481 lib/rpminstall.c:872 tools/rpmgraph.c:140
+#: lib/rpminstall.c:495 lib/rpminstall.c:886 tools/rpmgraph.c:140
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s nie mo¿e byæ zainstalowany\n"
 
-#: lib/rpminstall.c:523
-#, c-format
-msgid "package %s is not relocateable\n"
+#: lib/rpminstall.c:537
+#, fuzzy, c-format
+msgid "package %s is not relocatable\n"
 msgstr "pakiet %s nie jest przesuwalny\n"
 
-#: lib/rpminstall.c:573
+#: lib/rpminstall.c:587
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "b³±d czytania z pliku %s\n"
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:593
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "plik %s wymaga nowszej wersji RPM-a\n"
 
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:637
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "znaleziono %d pakietów ¼ród³owych i %d binarnych\n"
 
-#: lib/rpminstall.c:637 lib/rpminstall.c:810 lib/rpminstall.c:1239
+#: lib/rpminstall.c:651 lib/rpminstall.c:824 lib/rpminstall.c:1253
 #: tools/rpmgraph.c:195
 msgid "Failed dependencies:\n"
 msgstr "Niespe³nione zale¿no¶ci:\n"
 
-#: lib/rpminstall.c:644 tools/rpmgraph.c:201
+#: lib/rpminstall.c:658 tools/rpmgraph.c:201
 msgid "    Suggested resolutions:\n"
 msgstr "    Sugerowane sposoby spe³nienia:\n"
 
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:688
 msgid "installing binary packages\n"
 msgstr "instalacja pakietów binarnych\n"
 
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:712
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "nie mo¿na otworzyæ pliku %s: %s\n"
 
-#: lib/rpminstall.c:787
+#: lib/rpminstall.c:801
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" okre¶la wiele pakietów\n"
 
-#: lib/rpminstall.c:856
+#: lib/rpminstall.c:870
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "nie mo¿na otworzyæ %s: %s\n"
 
-#: lib/rpminstall.c:862
+#: lib/rpminstall.c:876
 #, c-format
 msgid "Installing %s\n"
 msgstr "Instalacja %s\n"
 
-#: lib/rpminstall.c:1233
+#: lib/rpminstall.c:1247
 #, c-format
 msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
 msgstr "Cofniêcie pakietów (+%d/-%d) do %-24.24s (0x%08x):\n"
@@ -2707,8 +2718,8 @@ msgid "package %s is already installed"
 msgstr "pakiet %s jest ju¿ zainstalowany"
 
 #: lib/rpmps.c:223
-#, c-format
-msgid "path %s in package %s is not relocateable"
+#, fuzzy, c-format
+msgid "path %s in package %s is not relocatable"
 msgstr "¶cie¿na %s w pakiecie %s nie jest przesuwalna"
 
 #: lib/rpmps.c:228
@@ -2856,50 +2867,75 @@ msgstr "Nie mo
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Nie mo¿na otworzyæ %s do odczytu: %s.\n"
 
-#: lib/rpmts.c:162
+#: lib/rpmsx.c:343
+#, c-format
+msgid "%s:  no newline on line number %d (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:360
+#, c-format
+msgid "%s:  line number %d is missing fields (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:391
+#, 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
+#, c-format
+msgid "%s:  invalid type specifier %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmsx.c:434
+#, c-format
+msgid "%s:  invalid context %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmts.c:163
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "nie mo¿na otworzyæ bazy danych Packages w %s\n"
 
-#: lib/rpmts.c:252
+#: lib/rpmts.c:253
 #, fuzzy, c-format
 msgid "extra '(' in package label: %s\n"
 msgstr "b³êdny numer pakietu: %s\n"
 
-#: lib/rpmts.c:270
+#: lib/rpmts.c:271
 #, fuzzy, c-format
 msgid "missing '(' in package label: %s\n"
 msgstr "Brak '(' w %s %s\n"
 
-#: lib/rpmts.c:278
+#: lib/rpmts.c:279
 #, fuzzy, c-format
 msgid "missing ')' in package label: %s\n"
 msgstr "b³êdny numer pakietu: %s\n"
 
-#: lib/rpmts.c:455
+#: lib/rpmts.c:456
 #, c-format
 msgid "cannot open Solve database in %s\n"
 msgstr "nie mo¿na otworzyæ bazy danych Solve w %s\n"
 
-#: lib/rpmts.c:597
+#: lib/rpmts.c:598
 #, c-format
 msgid "Adding: %s\n"
 msgstr "Dodawane: %s\n"
 
-#: lib/rpmts.c:609
+#: lib/rpmts.c:610
 #, c-format
 msgid "Suggesting: %s\n"
 msgstr "Sugerowane: %s\n"
 
-#: lib/rpmts.c:1077
+#: lib/rpmts.c:1097
 msgid "mounted filesystems:\n"
 msgstr "podmontowane systemy plików:\n"
 
-#: lib/rpmts.c:1079
+#: lib/rpmts.c:1099
 msgid "    i    dev bsize       bavail       iavail mount point\n"
 msgstr "    i    urz bloków  bl.wolnych    i.wolnych punkt montowania\n"
 
-#: lib/rpmts.c:1135
+#: lib/rpmts.c:1155
 #, c-format
 msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
 msgstr "%5d 0x%04x %5u %12ld %12ld %s\n"
@@ -3102,12 +3138,12 @@ msgstr "obliczanie %d odcisk
 msgid "computing file dispositions\n"
 msgstr "obliczanie dyspozycji plików\n"
 
-#: lib/verify.c:288
+#: lib/verify.c:319
 #, c-format
 msgid "missing  %c %s"
 msgstr "brak     %c %s"
 
-#: lib/verify.c:397
+#: lib/verify.c:433
 #, c-format
 msgid "Unsatisfied dependencies for %s: "
 msgstr "Niespe³nione zale¿no¶ci dla %s: "
@@ -3308,161 +3344,161 @@ msgstr "nie mo
 msgid "cannot open %s index\n"
 msgstr "nie mo¿na otworzyæ indeksu %s\n"
 
-#: rpmdb/rpmdb.c:915
+#: rpmdb/rpmdb.c:917
 msgid "no dbpath has been set\n"
 msgstr "¶cie¿ka bazy danych nie zosta³a podana\n"
 
-#: rpmdb/rpmdb.c:1193 rpmdb/rpmdb.c:1322 rpmdb/rpmdb.c:1373 rpmdb/rpmdb.c:2316
-#: rpmdb/rpmdb.c:2432 rpmdb/rpmdb.c:3161
+#: rpmdb/rpmdb.c:1195 rpmdb/rpmdb.c:1324 rpmdb/rpmdb.c:1375 rpmdb/rpmdb.c:2322
+#: rpmdb/rpmdb.c:2438 rpmdb/rpmdb.c:3167
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "b³±d(%d) pobierania rekordów \"%s\" z indeksu %s\n"
 
-#: rpmdb/rpmdb.c:1567
+#: rpmdb/rpmdb.c:1569
 msgid "miFreeHeader: skipping"
 msgstr "miFreeHeader: pomijanie"
 
-#: rpmdb/rpmdb.c:1577
+#: rpmdb/rpmdb.c:1579
 #, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "b³±d(%d) zapisywania rekordu #%d do %s\n"
 
-#: rpmdb/rpmdb.c:2209
+#: rpmdb/rpmdb.c:2212
 msgid "rpmdbNextIterator: skipping"
 msgstr "rpmdbNextIterator: pomijanie"
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2242
 #, c-format
 msgid "rpmdb: damaged header #%u retrieved -- skipping.\n"
 msgstr "rpmdb: uszkodzony nag³ówek #%u odtworzony -- pomijanie.\n"
 
-#: rpmdb/rpmdb.c:2520
+#: rpmdb/rpmdb.c:2526
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "%s: nie mo¿na odczytaæ nag³ówka pod 0x%x\n"
 
-#: rpmdb/rpmdb.c:2583
+#: rpmdb/rpmdb.c:2589
 #, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "b³±d(%d) ustawiania rekordu nag³ówka #%d do usuniêcia %s\n"
 
-#: rpmdb/rpmdb.c:2698
+#: rpmdb/rpmdb.c:2704
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "usuwanie \"%s\" z indeksu %s.\n"
 
-#: rpmdb/rpmdb.c:2702
+#: rpmdb/rpmdb.c:2708
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "usuwanie %d wpisów z indeksu %s.\n"
 
-#: rpmdb/rpmdb.c:2730
+#: rpmdb/rpmdb.c:2736
 #, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "b³±d(%d) ustawiania rekordów \"%s\" z indeksu %s\n"
 
-#: rpmdb/rpmdb.c:2751
+#: rpmdb/rpmdb.c:2757
 #, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "b³±d(%d) zapisywania rekordu \"%s\" do %s\n"
 
-#: rpmdb/rpmdb.c:2761
+#: rpmdb/rpmdb.c:2767
 #, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "b³±d(%d) usuwania rekordu \"%s\" z %s\n"
 
-#: rpmdb/rpmdb.c:2910
+#: rpmdb/rpmdb.c:2916
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "b³±d(%d) alokowania nowej instancji pakietu\n"
 
-#: rpmdb/rpmdb.c:2964
+#: rpmdb/rpmdb.c:2970
 msgid "rpmdbAdd: skipping"
 msgstr "rpmdbAdd: pomijanie"
 
-#: rpmdb/rpmdb.c:3136
+#: rpmdb/rpmdb.c:3142
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "dodawanie \"%s\" do indeksu %s.\n"
 
-#: rpmdb/rpmdb.c:3140
+#: rpmdb/rpmdb.c:3146
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "dodawanie %d wpisów do indeksu %s.\n"
 
-#: rpmdb/rpmdb.c:3180
+#: rpmdb/rpmdb.c:3186
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "b³±d(%d) zapisywania rekordu %s do %s\n"
 
-#: rpmdb/rpmdb.c:3581
+#: rpmdb/rpmdb.c:3587
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr "usuwanie %s po udanym przebudowaniu db3.\n"
 
-#: rpmdb/rpmdb.c:3619
+#: rpmdb/rpmdb.c:3625
 msgid "no dbpath has been set"
 msgstr "¶cie¿ka bazy danych nie zosta³a podana"
 
-#: rpmdb/rpmdb.c:3651
+#: rpmdb/rpmdb.c:3657
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "odbudowywanie bazy danych %s w %s\n"
 
-#: rpmdb/rpmdb.c:3655
+#: rpmdb/rpmdb.c:3661
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr "tymczasowa baza danych %s ju¿ istnieje\n"
 
-#: rpmdb/rpmdb.c:3661
+#: rpmdb/rpmdb.c:3667
 #, c-format
 msgid "creating directory %s\n"
 msgstr "tworzenie katalogu %s\n"
 
-#: rpmdb/rpmdb.c:3663
+#: rpmdb/rpmdb.c:3669
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr "tworzenie katalogu %s: %s\n"
 
-#: rpmdb/rpmdb.c:3670
+#: rpmdb/rpmdb.c:3676
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "otwieranie starej bazy danych przy u¿yciu dbapi %d\n"
 
-#: rpmdb/rpmdb.c:3683
+#: rpmdb/rpmdb.c:3689
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "otwieranie nowej bazy danych przy u¿yciu dbapi %d\n"
 
-#: rpmdb/rpmdb.c:3712
+#: rpmdb/rpmdb.c:3718
 #, c-format
 msgid "header #%u in the database is bad -- skipping.\n"
 msgstr "nag³ówek #%u w bazie danych jest b³êdny -- pominiêto.\n"
 
-#: rpmdb/rpmdb.c:3752
+#: rpmdb/rpmdb.c:3758
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "nie mo¿na dodaæ rekordu bêd±cego oryginalnie przy %u\n"
 
-#: rpmdb/rpmdb.c:3766
+#: rpmdb/rpmdb.c:3772
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr "przebudowanie bazy nie powiod³o siê; stara pozosta³a na miejscu\n"
 
-#: rpmdb/rpmdb.c:3774
+#: rpmdb/rpmdb.c:3780
 msgid "failed to replace old database with new database!\n"
 msgstr "zamiana starej bazy na now± nie powiod³a siê!\n"
 
-#: rpmdb/rpmdb.c:3776
+#: rpmdb/rpmdb.c:3782
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "aby odzyskaæ, nale¿y zast±piæ pliki w %s plikami z %s"
 
-#: rpmdb/rpmdb.c:3786
+#: rpmdb/rpmdb.c:3792
 #, c-format
 msgid "removing directory %s\n"
 msgstr "usuwanie katalogu %s\n"
 
-#: rpmdb/rpmdb.c:3788
+#: rpmdb/rpmdb.c:3794
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "usuniêcie katalogu %s nie powiod³o siê: %s\n"
@@ -3518,42 +3554,42 @@ msgstr "Makro %%%s ma niedozwolon
 msgid "Macro %%%s (%s) was not used below level %d\n"
 msgstr "Makro %%%s (%s) nie by³o u¿yte poni¿ej poziomu %d\n"
 
-#: rpmio/macro.c:982
+#: rpmio/macro.c:984
 #, c-format
 msgid "Unknown option %c in %s(%s)\n"
 msgstr "Nieznana opcja %c w %s(%s)\n"
 
-#: rpmio/macro.c:1182
+#: rpmio/macro.c:1184
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)\n"
 msgstr "G³êboko¶æ rekursji(%d) wiêksza ni¿ maksymalna(%d)\n"
 
-#: rpmio/macro.c:1252 rpmio/macro.c:1269
+#: rpmio/macro.c:1255 rpmio/macro.c:1272
 #, c-format
 msgid "Unterminated %c: %s\n"
 msgstr "Niezakoñczone %c: %s\n"
 
-#: rpmio/macro.c:1310
+#: rpmio/macro.c:1313
 #, c-format
 msgid "A %% is followed by an unparseable macro\n"
 msgstr "Napotkano nieprzetwarzalne makro po %%\n"
 
-#: rpmio/macro.c:1439
+#: rpmio/macro.c:1442
 #, c-format
 msgid "Macro %%%.*s not found, skipping\n"
 msgstr "Nie znaleziono makra %%%.*s, makro pominiête\n"
 
-#: rpmio/macro.c:1510
+#: rpmio/macro.c:1513
 msgid "Target buffer overflow\n"
 msgstr "Przepe³nienie bufora docelowego\n"
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1705 rpmio/macro.c:1711
+#: rpmio/macro.c:1708 rpmio/macro.c:1714
 #, c-format
 msgid "File %s: %s\n"
 msgstr "Plik %s: %s\n"
 
-#: rpmio/macro.c:1714
+#: rpmio/macro.c:1717
 #, c-format
 msgid "File %s is smaller than %u bytes\n"
 msgstr "Plik %s jest mniejszy ni¿ %u bajtów\n"
index 0d3ed26..c2da1a4 100644 (file)
--- a/po/pt.po
+++ b/po/pt.po
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: rpm\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:11-0500\n"
+"POT-Creation-Date: 2003-12-30 08:11-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"
@@ -20,44 +20,44 @@ msgstr "n
 msgid "Unable to open spec file %s: %s\n"
 msgstr "Não consegui abrir ficheiro spec %s: %s\n"
 
-#: build.c:152 build.c:164
+#: build.c:150 build.c:162
 #, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr "Não consegui abrir o 'pipe' para o tar: %m\n"
 
 #. Give up
-#: build.c:171
+#: build.c:169
 #, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "Não consegui ler o ficheiro spec do %s\n"
 
-#: build.c:199
+#: build.c:197
 #, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr "Não consegui mudar o nome de %s para %s: %m\n"
 
-#: build.c:239
+#: build.c:237
 #, c-format
 msgid "failed to stat %s: %m\n"
 msgstr "Não consegui analisar o %s: %m\n"
 
-#: build.c:244
+#: build.c:242
 #, c-format
 msgid "File %s is not a regular file.\n"
 msgstr "O ficheiro %s não é um ficheiro normal.\n"
 
-#: build.c:253
+#: build.c:251
 #, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr "O ficheiro %s não parece ser um ficheiro spec.\n"
 
 #. parse up the build operators
-#: build.c:324
+#: build.c:322
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr "A construir plataformas alvo: %s\n"
 
-#: build.c:339
+#: build.c:337
 #, c-format
 msgid "Building for target %s\n"
 msgstr "A construir para o alvo %s\n"
@@ -109,7 +109,7 @@ msgstr "Op
 msgid "%s: %s\n"
 msgstr "%s: %s\n"
 
-#: rpmqv.c:129 lib/poptALL.c:114
+#: rpmqv.c:129 lib/poptALL.c:119
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM versão %s\n"
@@ -426,166 +426,166 @@ msgstr "&& e || n
 msgid "syntax error in expression\n"
 msgstr "erro de sintaxe na expressão\n"
 
-#: build/files.c:278
+#: build/files.c:280
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "Falha no TIMECHECK: %s\n"
 
-#: build/files.c:343 build/files.c:543 build/files.c:739
+#: build/files.c:345 build/files.c:545 build/files.c:741
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "Falta um '(' em %s %s\n"
 
-#: build/files.c:354 build/files.c:673 build/files.c:750
+#: build/files.c:356 build/files.c:675 build/files.c:752
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "Falta um ')' em %s(%s\n"
 
-#: build/files.c:392 build/files.c:698
+#: build/files.c:394 build/files.c:700
 #, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "Elemento %s inválido: %s\n"
 
-#: build/files.c:502
+#: build/files.c:504
 #, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "Falta um %s em %s %s\n"
 
-#: build/files.c:559
+#: build/files.c:561
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr "Carácter sem ser espaço a seguir a %s(): %s\n"
 
-#: build/files.c:597
+#: build/files.c:599
 #, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "Sintaxe inválida: %s(%s)\n"
 
-#: build/files.c:607
+#: build/files.c:609
 #, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "Spec de modo inválido: %s(%s)\n"
 
-#: build/files.c:619
+#: build/files.c:621
 #, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "Spec de dirmode inválido: %s(%s)\n"
 
-#: build/files.c:777
+#: build/files.c:779
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr "Tamanho anormal do locale: \"%.*s\" no %%lang(%s)\n"
 
 #. @innercontinue@
-#: build/files.c:788
+#: build/files.c:790
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr "Locale %.*s duplicado no %%lang(%s)\n"
 
-#: build/files.c:917
+#: build/files.c:919
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr "Limite atingido para o %%docdir\n"
 
-#: build/files.c:925
+#: build/files.c:927
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr "Só um argumento no %%docdir\n"
 
 #. We already got a file -- error
-#: build/files.c:959
+#: build/files.c:961
 #, c-format
 msgid "Two files on one line: %s\n"
 msgstr "Dois ficheiros na mesma linha: %s\n"
 
-#: build/files.c:976
+#: build/files.c:978
 #, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "O ficheiro tem de começar por \"/\": %s\n"
 
-#: build/files.c:989
+#: build/files.c:991
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr "Não é possível misturar o %%doc especial com outras formas: %s\n"
 
-#: build/files.c:1141
+#: build/files.c:1149
 #, c-format
 msgid "File listed twice: %s\n"
 msgstr "Ficheiro listado duas vezes: %s\n"
 
-#: build/files.c:1280
+#: build/files.c:1288
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "A 'symlink' aponta para a BuildRoot: %s -> %s\n"
 
-#: build/files.c:1520
+#: build/files.c:1535
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "O ficheiro não corresponde ao prefixo (%s): %s\n"
 
-#: build/files.c:1544
+#: build/files.c:1559
 #, c-format
 msgid "File not found: %s\n"
 msgstr "Ficheiro não encontrado: %s\n"
 
-#: build/files.c:1752
+#: build/files.c:1767
 #, fuzzy, c-format
 msgid "%s: public key read failed.\n"
 msgstr ":%s: o readLead falhou\n"
 
-#: build/files.c:1756 lib/rpmchecksig.c:580
+#: build/files.c:1771 lib/rpmchecksig.c:580
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: build/files.c:1804
+#: build/files.c:1819
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "O ficheiro precisa de começar por \"/\": %s\n"
 
-#: build/files.c:1828
+#: build/files.c:1843
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "Glob não permitido: %s\n"
 
-#: build/files.c:1845 lib/rpminstall.c:347
+#: build/files.c:1860 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:1905
+#: build/files.c:1920
 #, 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:1916 build/pack.c:156
+#: build/files.c:1931 build/pack.c:156
 #, c-format
 msgid "line: %s\n"
 msgstr "linha: %s\n"
 
-#: build/files.c:2307
+#: build/files.c:2323
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "Ficheiro inválido: %s: %s\n"
 
-#: build/files.c:2319 build/parsePrep.c:50
+#: build/files.c:2335 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Dono/grupo inválido: %s\n"
 
-#: build/files.c:2363
+#: build/files.c:2379
 #, fuzzy, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr "a abertura do pacote falhou%s%s: %s\n"
 
-#: build/files.c:2386
+#: build/files.c:2402
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
 "%s"
 msgstr ""
 
-#: build/files.c:2414
+#: build/files.c:2430
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "A processar os ficheiros: %s-%s-%s\n"
@@ -726,7 +726,7 @@ msgstr "N
 msgid "Could not open %s: %s\n"
 msgstr "Não consigo aceder ao %s: %s\n"
 
-#: build/pack.c:632 lib/psm.c:1427
+#: build/pack.c:632 lib/psm.c:1420
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Não consegui gravar o pacote: %s\n"
@@ -756,7 +756,7 @@ msgstr "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:1725
+#: build/pack.c:725 lib/psm.c:1689
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Gravei: %s\n"
@@ -1245,20 +1245,20 @@ msgstr "n
 msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
 msgstr "gerar um cabeçalho do pacote compatível com os pacotes do rpm[23]"
 
-#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329
-#: lib/poptQV.c:338 lib/poptQV.c:377
+#: build/poptBT.c:229 lib/poptALL.c:240 lib/poptI.c:261 lib/poptQV.c:335
+#: lib/poptQV.c:344 lib/poptQV.c:383
 #, fuzzy
 msgid "don't verify package digest(s)"
 msgstr "não verificar as dependências do pacote"
 
-#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332
-#: lib/poptQV.c:340 lib/poptQV.c:380
+#: build/poptBT.c:231 lib/poptALL.c:242 lib/poptI.c:263 lib/poptQV.c:338
+#: lib/poptQV.c:346 lib/poptQV.c:386
 #, fuzzy
 msgid "don't verify database header(s) when retrieved"
 msgstr "não verifica a arquitectura do pacote"
 
-#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335
-#: lib/poptQV.c:342 lib/poptQV.c:382
+#: build/poptBT.c:233 lib/poptALL.c:248 lib/poptI.c:265 lib/poptQV.c:341
+#: lib/poptQV.c:348 lib/poptQV.c:388
 #, fuzzy
 msgid "don't verify package signature(s)"
 msgstr "verificar a assinatura do pacote"
@@ -1329,31 +1329,31 @@ msgstr "C
 msgid "Bad/unreadable  header"
 msgstr "Cabeçalho inválido/ilegível"
 
-#: lib/cpio.c:232
+#: lib/cpio.c:233
 msgid "Header size too big"
 msgstr "Tamanho do cabeçalho demasiado grande"
 
-#: lib/cpio.c:233
+#: lib/cpio.c:234
 msgid "Unknown file type"
 msgstr "Tipo de ficheiro desconhecido"
 
-#: lib/cpio.c:234
+#: lib/cpio.c:235
 msgid "Missing hard link(s)"
 msgstr "Falta(m) o(s) 'hard link(s)'"
 
-#: lib/cpio.c:235
+#: lib/cpio.c:236
 msgid "MD5 sum mismatch"
 msgstr "erro na soma de MD5"
 
-#: lib/cpio.c:236
+#: lib/cpio.c:237
 msgid "Internal error"
 msgstr "Erro interno"
 
-#: lib/cpio.c:237
+#: lib/cpio.c:238
 msgid "Archive file not in header"
 msgstr "Ficheiro de arquivo não está no cabeçalho"
 
-#: lib/cpio.c:250
+#: lib/cpio.c:251
 msgid " failed - "
 msgstr " falhou - "
 
@@ -1490,49 +1490,59 @@ msgstr "Ficheiro%5d: %07o %s.%s\t %s\n"
 msgid "file %s is on an unknown device\n"
 msgstr "o ficheiro %s está num dispositivo desconhecido\n"
 
-#: lib/fsm.c:350
+#: lib/fsm.c:352
 #, fuzzy
 msgid "========== Directories not explicitly included in package:\n"
 msgstr "========= Directorias não incluidas explicitamente no pacote:\n"
 
-#: lib/fsm.c:352
+#: lib/fsm.c:354
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1293
+#: lib/fsm.c:768
+#, 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:776
+#, 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:1334
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr "directoria %s criada com as permissões %04o.\n"
 
-#: lib/fsm.c:1592
+#: lib/fsm.c:1633
 #, 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:1719 lib/fsm.c:1855
+#: lib/fsm.c:1760 lib/fsm.c:1896
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s gravado como %s\n"
 
-#: lib/fsm.c:1882
+#: lib/fsm.c:1923
 #, 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:1888
+#: lib/fsm.c:1929
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s rmdir de %s falhou: %s\n"
 
-#: lib/fsm.c:1903
+#: lib/fsm.c:1944
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s unlink de %s falhou: %s\n"
 
-#: lib/fsm.c:1925
+#: lib/fsm.c:1966
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s criado como %s\n"
@@ -1648,117 +1658,117 @@ msgstr ":%s: o readLead falhou\n"
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: O fread falhou: %s\n"
 
-#: lib/poptALL.c:222
+#: lib/poptALL.c:227
 msgid "predefine MACRO with value EXPR"
 msgstr ""
 
-#: lib/poptALL.c:223 lib/poptALL.c:226
+#: lib/poptALL.c:228 lib/poptALL.c:231
 msgid "'MACRO EXPR'"
 msgstr ""
 
-#: lib/poptALL.c:225
+#: lib/poptALL.c:230
 msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: lib/poptALL.c:228
+#: lib/poptALL.c:233
 #, fuzzy
 msgid "print macro expansion of EXPR"
 msgstr "imprimir a expansão da macro <expr>+"
 
-#: lib/poptALL.c:229
+#: lib/poptALL.c:234
 msgid "'EXPR'"
 msgstr ""
 
-#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254
+#: lib/poptALL.c:236 lib/poptALL.c:255 lib/poptALL.c:259
 #, fuzzy
 msgid "read <FILE:...> instead of default file(s)"
 msgstr "ler o <fich:...> em vez do(s) ficheiro(s) de macros por omissão"
 
-#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255
+#: lib/poptALL.c:237 lib/poptALL.c:256 lib/poptALL.c:260
 msgid "<FILE:...>"
 msgstr ""
 
-#: lib/poptALL.c:240 lib/poptALL.c:274
+#: lib/poptALL.c:245 lib/poptALL.c:279
 msgid "disable use of libio(3) API"
 msgstr "desactivar o uso da API da libio(3)"
 
-#: lib/poptALL.c:246
+#: lib/poptALL.c:251
 #, fuzzy
 msgid "send stdout to CMD"
 msgstr "manda o stdout para <cmd>"
 
-#: lib/poptALL.c:247
+#: lib/poptALL.c:252
 msgid "CMD"
 msgstr ""
 
-#: lib/poptALL.c:258
+#: lib/poptALL.c:263
 #, fuzzy
 msgid "use ROOT as top level directory"
 msgstr "usa <dir> como a directoria de topo"
 
-#: lib/poptALL.c:259
+#: lib/poptALL.c:264
 msgid "ROOT"
 msgstr ""
 
-#: lib/poptALL.c:262
+#: lib/poptALL.c:267
 msgid "display known query tags"
 msgstr "mostrar as opções de pesquisa conhecidas"
 
-#: lib/poptALL.c:264
+#: lib/poptALL.c:269
 msgid "display final rpmrc and macro configuration"
 msgstr "mostra a configuração final do rpmrc e das macros"
 
-#: lib/poptALL.c:266
+#: lib/poptALL.c:271
 msgid "provide less detailed output"
 msgstr "devolver um resultado menos detalhado"
 
-#: lib/poptALL.c:268
+#: lib/poptALL.c:273
 msgid "provide more detailed output"
 msgstr "devolver um resultado mais detalhado"
 
-#: lib/poptALL.c:270
+#: lib/poptALL.c:275
 msgid "print the version of rpm being used"
 msgstr "imprime a versão do RPM que está a usar"
 
-#: lib/poptALL.c:283
+#: lib/poptALL.c:288
 #, fuzzy
 msgid "debug payload file state machine"
 msgstr "depurar máquina de estados de ficheiros"
 
-#: lib/poptALL.c:285
+#: lib/poptALL.c:290
 #, fuzzy
 msgid "use threads for file state machine"
 msgstr "depurar máquina de estados de ficheiros"
 
-#: lib/poptALL.c:287
+#: lib/poptALL.c:292
 msgid "debug protocol data stream"
 msgstr "depurar a sequência de dados do protocolo"
 
-#: lib/poptALL.c:292
+#: lib/poptALL.c:297
 #, fuzzy
 msgid "debug option/argument processing"
 msgstr "Erro interno no processamento de argumentos (%d) :-(\n"
 
-#: lib/poptALL.c:297
+#: lib/poptALL.c:302
 #, fuzzy
 msgid "debug package state machine"
 msgstr "depurar máquina de estados de ficheiros"
 
-#: lib/poptALL.c:299
+#: lib/poptALL.c:304
 #, fuzzy
 msgid "use threads for package state machine"
 msgstr "depurar máquina de estados de ficheiros"
 
-#: lib/poptALL.c:311
+#: lib/poptALL.c:316
 msgid "debug rpmio I/O"
 msgstr "depurar a E/S da rpmio"
 
-#: lib/poptALL.c:323
+#: lib/poptALL.c:330
 msgid "debug URL cache handling"
 msgstr "depurar a gestão da 'cache' de URLs"
 
 #. @-nullpass@
-#: lib/poptALL.c:393
+#: lib/poptALL.c:400
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1787,18 +1797,18 @@ msgstr "'rollback' recebe como argumento uma hora/data"
 msgid "malformed rollback time/date stamp argument"
 msgstr "argumento hora/data inválido para 'rollback'"
 
-#: lib/poptI.c:151
+#: lib/poptI.c:155
 #, fuzzy
 msgid "add suggested packages to transaction"
 msgstr "pesquisar/verificar o(s) pacote(s) de transacção de instalação"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:159
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "instala todos os ficheiros, mesmo as configurações que de outro modo seriam "
 "ignoradas"
 
-#: lib/poptI.c:159
+#: lib/poptI.c:163
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1806,151 +1816,157 @@ msgstr ""
 "remove todos os pacotes que correspondam a <pacote> (normalmente aparece um "
 "erro se o <pacote> especifica vários pacotes)"
 
-#: lib/poptI.c:164 tools/rpmgraph.c:273
+#: lib/poptI.c:168 tools/rpmgraph.c:273
 msgid "use anaconda \"presentation order\""
 msgstr ""
 
-#: lib/poptI.c:169 lib/poptI.c:238
+#: lib/poptI.c:173 lib/poptI.c:245
 msgid "do not execute package scriptlet(s)"
 msgstr "não executar nenhuns scripts do pacote"
 
-#: lib/poptI.c:173
-msgid "relocate files in non-relocateable package"
+#: lib/poptI.c:177
+#, fuzzy
+msgid "relocate files in non-relocatable package"
 msgstr "muda os ficheiros de sítio num pacote de localização fixa"
 
-#: lib/poptI.c:176
+#: lib/poptI.c:180
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 "gravar os ficheiros do pacote apagado mudando o nome para sub-directoria"
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 msgid "erase (uninstall) package"
 msgstr "apaga (desinstala) o pacote"
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 msgid "<package>+"
 msgstr "<pacote>+"
 
-#: lib/poptI.c:182 lib/poptI.c:219
+#: lib/poptI.c:186 lib/poptI.c:223
 #, fuzzy
 msgid "do not install configuration files"
 msgstr "listar todos os ficheiros de configuração"
 
-#: lib/poptI.c:185 lib/poptI.c:224
+#: lib/poptI.c:189 lib/poptI.c:228
 msgid "do not install documentation"
 msgstr "não instala a documentação"
 
-#: lib/poptI.c:187
+#: lib/poptI.c:191
 msgid "skip files with leading component <path> "
 msgstr "ignorar os ficheiros com a componente inicial <dir> "
 
-#: lib/poptI.c:188
+#: lib/poptI.c:192
 msgid "<path>"
 msgstr "<caminho>"
 
-#: lib/poptI.c:191
+#: lib/poptI.c:195
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "abreviatura para --replacepkgs --replacefiles"
 
-#: lib/poptI.c:195
+#: lib/poptI.c:199
 msgid "upgrade package(s) if already installed"
 msgstr "actualizar o pacote(s) se já estiver instalado"
 
-#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
+#: lib/poptI.c:200 lib/poptI.c:216 lib/poptI.c:312
 msgid "<packagefile>+"
 msgstr "<pacote>+"
 
-#: lib/poptI.c:198
+#: lib/poptI.c:202
 msgid "print hash marks as package installs (good with -v)"
 msgstr "mostra cardinais enquanto o pacote instala (conveniente com o -v)"
 
-#: lib/poptI.c:201
+#: lib/poptI.c:205
 msgid "don't verify package architecture"
 msgstr "não verifica a arquitectura do pacote"
 
-#: lib/poptI.c:204
+#: lib/poptI.c:208
 msgid "don't verify package operating system"
 msgstr "não verifica o sistema operativo do pacote"
 
-#: lib/poptI.c:207
+#: lib/poptI.c:211
 msgid "don't check disk space before installing"
 msgstr "não verifica o espaço em disco antes de instalar"
 
-#: lib/poptI.c:209
+#: lib/poptI.c:213
 msgid "install documentation"
 msgstr "instala a documentação"
 
-#: lib/poptI.c:212
+#: lib/poptI.c:216
 #, fuzzy
 msgid "install package(s)"
 msgstr "instala o pacote"
 
-#: lib/poptI.c:215
+#: lib/poptI.c:219
 msgid "update the database, but do not modify the filesystem"
 msgstr "actualiza a base de dados, mas não altera o sistema de ficheiros"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:225
 msgid "do not verify package dependencies"
 msgstr "não verifica as dependências do pacote"
 
-#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:231 lib/poptQV.c:279 lib/poptQV.c:282
 msgid "don't verify MD5 digest of files"
 msgstr "não verificar o MD5 dos ficheiros"
 
-#: lib/poptI.c:230
+#: lib/poptI.c:233
+#, fuzzy
+msgid "don't install file security contexts"
+msgstr "listar todos os ficheiros de configuração"
+
+#: lib/poptI.c:237
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 "não reorganiza a instalação dos pacotes para satisfazer as dependências"
 
-#: lib/poptI.c:235
+#: lib/poptI.c:242
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:242
+#: lib/poptI.c:249
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "não executar o script %%pre (se existir)"
 
-#: lib/poptI.c:245
+#: lib/poptI.c:252
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "não executar o script %%post (se existir)"
 
-#: lib/poptI.c:248
+#: lib/poptI.c:255
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "não executar o script %%preun (se existir)"
 
-#: lib/poptI.c:251
+#: lib/poptI.c:258
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "não executar o script %%postun (se existir)"
 
-#: lib/poptI.c:261
+#: lib/poptI.c:268
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "não executar nenhum dos scripts activados por este pacote"
 
-#: lib/poptI.c:264
+#: lib/poptI.c:271
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "não executar nenhum dos scripts %%triggerprein"
 
-#: lib/poptI.c:267
+#: lib/poptI.c:274
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "não executar nenhum dos scripts %%triggerin"
 
-#: lib/poptI.c:270
+#: lib/poptI.c:277
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "não executar nenhum dos scripts %%triggerun"
 
-#: lib/poptI.c:273
+#: lib/poptI.c:280
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "não executar nenhum dos scripts %%triggerpostun"
 
-#: lib/poptI.c:277
+#: lib/poptI.c:284
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1958,51 +1974,51 @@ msgstr ""
 "actualiza para um versão antiga do pacote (o --force faz isto "
 "automaticamente)"
 
-#: lib/poptI.c:281
+#: lib/poptI.c:288
 msgid "print percentages as package installs"
 msgstr "mostra percentagens enquanto o pacote instala"
 
-#: lib/poptI.c:283
+#: lib/poptI.c:290
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "muda o pacote para <dir>, se for possível"
 
-#: lib/poptI.c:284
+#: lib/poptI.c:291
 msgid "<dir>"
 msgstr "<dir>"
 
-#: lib/poptI.c:286
+#: lib/poptI.c:293
 msgid "relocate files from path <old> to <new>"
 msgstr "muda os ficheiros de <velho> para <novo>"
 
-#: lib/poptI.c:287
+#: lib/poptI.c:294
 msgid "<old>=<new>"
 msgstr "<velho>=<novo>"
 
-#: lib/poptI.c:290
+#: lib/poptI.c:297
 msgid "save erased package files by repackaging"
 msgstr "gravar ficheiros apagados reempacotando-os"
 
-#: lib/poptI.c:293
+#: lib/poptI.c:300
 msgid "install even if the package replaces installed files"
 msgstr "instala mesmo se o pacote substituir ficheiros instalados"
 
-#: lib/poptI.c:296
+#: lib/poptI.c:303
 msgid "reinstall if the package is already present"
 msgstr "reinstalar se o pacote já estiver presente"
 
-#: lib/poptI.c:298
+#: lib/poptI.c:305
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr "desinstalador novo, reinstalar velho, pacote(s) voltar à <data>"
 
-#: lib/poptI.c:299
+#: lib/poptI.c:306
 msgid "<date>"
 msgstr "<data>"
 
-#: lib/poptI.c:301
+#: lib/poptI.c:308
 msgid "don't install, but tell if it would work or not"
 msgstr "não instala, mas indica se iria funcionar ou não"
 
-#: lib/poptI.c:304
+#: lib/poptI.c:311
 msgid "upgrade package(s)"
 msgstr "actualizar pacote(s)"
 
@@ -2077,204 +2093,199 @@ msgstr "pesquisar/verificar o(s) pacote(s) que precisa duma depend
 msgid "query/verify the package(s) which provide a dependency"
 msgstr "pesquisar/verificar o(s) pacote(s) que oferecem uma dependência"
 
-#: lib/poptQV.c:226
+#: lib/poptQV.c:230
 msgid "list all configuration files"
 msgstr "listar todos os ficheiros de configuração"
 
-#: lib/poptQV.c:228
+#: lib/poptQV.c:232
 msgid "list all documentation files"
 msgstr "listar todos os ficheiros de documentação"
 
-#: lib/poptQV.c:230
+#: lib/poptQV.c:234
 msgid "dump basic file information"
 msgstr "apresentar a informação básica do ficheiro"
 
-#: lib/poptQV.c:234
+#: lib/poptQV.c:238
 msgid "list files in package"
 msgstr "listar os ficheiros no pacote"
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:243
 #, c-format
 msgid "skip %%ghost files"
 msgstr "ignorar ficheiros %%ghost"
 
-#: lib/poptQV.c:243
+#: lib/poptQV.c:247
 #, c-format
 msgid "skip %%license files"
 msgstr "ignorar ficheiro %%licence"
 
-#: lib/poptQV.c:246
+#: lib/poptQV.c:250
 #, c-format
 msgid "skip %%readme files"
 msgstr "ignorar ficheiros %%readme"
 
-#: lib/poptQV.c:252
+#: lib/poptQV.c:256
 msgid "use the following query format"
 msgstr "usar o formato de pesquisa seguinte"
 
-#: lib/poptQV.c:254
+#: lib/poptQV.c:258
 msgid "substitute i18n sections into spec file"
 msgstr "substituir as secções i18n no ficheiro spec"
 
-#: lib/poptQV.c:256
+#: lib/poptQV.c:260
 msgid "display the states of the listed files"
 msgstr "mostrar os estados dos ficheiros listados"
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:286
 msgid "don't verify size of files"
 msgstr "não verificar os tamanho dos ficheiros"
 
-#: lib/poptQV.c:285
+#: lib/poptQV.c:289
 msgid "don't verify symlink path of files"
 msgstr "não verificar as ligações simbólicas dos ficheiros"
 
-#: lib/poptQV.c:288
+#: lib/poptQV.c:292
 msgid "don't verify owner of files"
 msgstr "não verificar o dono dos ficheiros"
 
-#: lib/poptQV.c:291
+#: lib/poptQV.c:295
 msgid "don't verify group of files"
 msgstr "não verificar o grupo dos ficheiros"
 
-#: lib/poptQV.c:294
+#: lib/poptQV.c:298
 msgid "don't verify modification time of files"
 msgstr "não verificar hora de modificação dos ficheiros"
 
-#: lib/poptQV.c:297 lib/poptQV.c:300
+#: lib/poptQV.c:301 lib/poptQV.c:304
 msgid "don't verify mode of files"
 msgstr "não verificar o modo dos ficheiros"
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:307
+#, fuzzy
+msgid "don't verify file security contexts"
+msgstr "não verificar os ficheiros no pacote"
+
+#: lib/poptQV.c:309
 msgid "don't verify files in package"
 msgstr "não verificar os ficheiros no pacote"
 
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
+#: lib/poptQV.c:312 lib/poptQV.c:315 tools/rpmgraph.c:267
 msgid "don't verify package dependencies"
 msgstr "não verificar as dependências do pacote"
 
-#: lib/poptQV.c:314 lib/poptQV.c:318 lib/poptQV.c:321 lib/poptQV.c:324
+#: lib/poptQV.c:320 lib/poptQV.c:324 lib/poptQV.c:327 lib/poptQV.c:330
 #, fuzzy
 msgid "don't execute verify script(s)"
 msgstr "não executar o %verifyscript (se existir)"
 
-#: lib/poptQV.c:348
+#: lib/poptQV.c:354
 #, fuzzy
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr "não verificar o SHA1 do cabeçalho"
 
-#: lib/poptQV.c:351
+#: lib/poptQV.c:357
 #, fuzzy
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr "não verificar o MD5 dos ficheiros"
 
-#: lib/poptQV.c:366
+#: lib/poptQV.c:372
 #, fuzzy
 msgid "sign package(s) (identical to --resign)"
 msgstr "assinar um pacote (retira a assinatura actual)"
 
-#: lib/poptQV.c:368
+#: lib/poptQV.c:374
 #, fuzzy
 msgid "verify package signature(s)"
 msgstr "verificar a assinatura do pacote"
 
-#: lib/poptQV.c:370
+#: lib/poptQV.c:376
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:372
+#: lib/poptQV.c:378
 #, fuzzy
 msgid "sign package(s) (identical to --addsign)"
 msgstr "assinar um pacote (retira a assinatura actual)"
 
-#: lib/poptQV.c:374
+#: lib/poptQV.c:380
 msgid "generate signature"
 msgstr "gerar a assinatura"
 
-#: lib/psm.c:269
+#: lib/psm.c:268
 msgid "source package expected, binary found\n"
 msgstr ""
 "esperava-se um pacote com código-fonte, foi encontrado um pacote binário\n"
 
-#: lib/psm.c:394
+#: lib/psm.c:386
 msgid "source package contains no .spec file\n"
 msgstr "o pacote de código-fonte não contem um ficheiro .spec\n"
 
-#: lib/psm.c:480
+#: lib/psm.c:472
 #, c-format
 msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
 msgstr ""
 
-#: lib/psm.c:562
+#: lib/psm.c:554
 #, c-format
 msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
 msgstr ""
 
-#: lib/psm.c:570
+#: lib/psm.c:562
 #, c-format
 msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
 msgstr ""
 
-#: lib/psm.c:735
+#: lib/psm.c:730
 #, c-format
 msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
 msgstr ""
 
-#: lib/psm.c:756
+#: lib/psm.c:751
 #, 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:762
+#: lib/psm.c:757
 #, 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:1191
+#: lib/psm.c:1188
 #, 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:1330
+#: lib/psm.c:1323
 #, 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:1439
+#: lib/psm.c:1432
 #, fuzzy
 msgid "Unable to reload signature header\n"
 msgstr "Não consegui reler o cabeçalho do assinatura.\n"
 
-#: lib/psm.c:1485
-#, c-format
-msgid "user %s does not exist - using root\n"
-msgstr "o utilizador %s não existe - a usar o root\n"
-
-#: lib/psm.c:1494
-#, c-format
-msgid "group %s does not exist - using root\n"
-msgstr "o grupo %s não existe - a usar o root\n"
-
-#: lib/psm.c:1546
+#: lib/psm.c:1510
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "a abertura do pacote falhou%s%s: %s\n"
 
-#: lib/psm.c:1547
+#: lib/psm.c:1511
 msgid " on file "
 msgstr " no ficheiro "
 
-#: lib/psm.c:1733
+#: lib/psm.c:1697
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%s falhou no ficheiro %s: %s\n"
 
-#: lib/psm.c:1736
+#: lib/psm.c:1700
 #, c-format
 msgid "%s failed: %s\n"
 msgstr "%s falhou: %s\n"
 
-#: lib/query.c:118 lib/rpmts.c:565
+#: lib/query.c:118 lib/rpmts.c:566
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "formato incorrecto: %s\n"
@@ -2322,8 +2333,8 @@ msgstr "o pacote nem tem um dono do ficheiro ou as listas de IDs\n"
 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:462
-#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576
+#: 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
 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157
 #, c-format
 msgid "open of %s failed: %s\n"
@@ -2339,7 +2350,7 @@ msgid "old format source packages cannot be queried\n"
 msgstr ""
 "os pacotes com código-fonte no formato antigo não podem ser pesquisados\n"
 
-#: lib/query.c:488 lib/rpminstall.c:608
+#: lib/query.c:488 lib/rpminstall.c:622
 #, fuzzy, c-format
 msgid "%s: not an rpm package (or package manifest): %s\n"
 msgstr "nenhum pacote coincide com %s: %s\n"
@@ -2408,17 +2419,17 @@ msgstr "n
 msgid "record %u could not be read\n"
 msgstr "o registo %u não pôde ser lido\n"
 
-#: lib/query.c:766 lib/rpminstall.c:778
+#: lib/query.c:766 lib/rpminstall.c:792
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "o pacote %s não está instalado\n"
 
-#: lib/rpmal.c:692
+#: lib/rpmal.c:694
 #, fuzzy
 msgid "(added files)"
 msgstr "ficheiro db inválido %s\n"
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:772
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %-45s SIM (oferecidos para adição)\n"
@@ -2544,36 +2555,36 @@ msgstr "  %s     A %s\tB %s\n"
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "o pacote %s tem requisitos não satisfeitos: %s\n"
 
-#: lib/rpmfi.c:546
+#: lib/rpmfi.c:561
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s ignorado devido à opção missingok\n"
 
-#: lib/rpmfi.c:784
+#: lib/rpmfi.c:799
 msgid "========== relocations\n"
 msgstr "========== mudanças de local\n"
 
-#: lib/rpmfi.c:788
+#: lib/rpmfi.c:803
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr "%5d excluir o %s\n"
 
-#: lib/rpmfi.c:791
+#: lib/rpmfi.c:806
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d mudar de local %s -> %s\n"
 
-#: lib/rpmfi.c:919
+#: lib/rpmfi.c:934
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "a excluir o %s %s\n"
 
-#: lib/rpmfi.c:929
+#: lib/rpmfi.c:944
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "a mudar o %s para %s\n"
 
-#: lib/rpmfi.c:1021
+#: lib/rpmfi.c:1036
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "a mudar a directoria %s para %s\n"
@@ -2605,88 +2616,88 @@ msgstr "A preparar..."
 msgid "Upgrading packages..."
 msgstr "actualizar pacote(s)"
 
-#: lib/rpminstall.c:394
+#: lib/rpminstall.c:408
 #, fuzzy, c-format
 msgid "Adding goal: %s\n"
 msgstr "A procurar o %s: (usando o %s)...\n"
 
-#: lib/rpminstall.c:409
+#: lib/rpminstall.c:423
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "A obter o %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:436
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... como %s\n"
 
-#: lib/rpminstall.c:426
+#: lib/rpminstall.c:440
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "a ignorar o %s - a transferência falhou - %s\n"
 
-#: lib/rpminstall.c:481 lib/rpminstall.c:872 tools/rpmgraph.c:140
+#: lib/rpminstall.c:495 lib/rpminstall.c:886 tools/rpmgraph.c:140
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "o %s não pode ser instalado\n"
 
-#: lib/rpminstall.c:523
-#, c-format
-msgid "package %s is not relocateable\n"
+#: lib/rpminstall.c:537
+#, fuzzy, c-format
+msgid "package %s is not relocatable\n"
 msgstr "o pacote %s não pode ser mudado de sítio\n"
 
-#: lib/rpminstall.c:573
+#: lib/rpminstall.c:587
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "erro ao ler do ficheiros %s\n"
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:593
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "o %s precisa duma versão mais recente do RPM\n"
 
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:637
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "encontrados %d pacotes com código-fonte e %d binários\n"
 
-#: lib/rpminstall.c:637 lib/rpminstall.c:810 lib/rpminstall.c:1239
+#: lib/rpminstall.c:651 lib/rpminstall.c:824 lib/rpminstall.c:1253
 #: tools/rpmgraph.c:195
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "dependências falhadas:\n"
 
-#: lib/rpminstall.c:644 tools/rpmgraph.c:201
+#: lib/rpminstall.c:658 tools/rpmgraph.c:201
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:688
 msgid "installing binary packages\n"
 msgstr "a instalar os pacotes binários\n"
 
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:712
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "não consigo aceder ao ficheiro %s: %s\n"
 
-#: lib/rpminstall.c:787
+#: lib/rpminstall.c:801
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "o \"%s\" especifica vários pacotes\n"
 
-#: lib/rpminstall.c:856
+#: lib/rpminstall.c:870
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "não consigo aceder ao %s: %s\n"
 
-#: lib/rpminstall.c:862
+#: lib/rpminstall.c:876
 #, c-format
 msgid "Installing %s\n"
 msgstr "A instalar o %s\n"
 
-#: lib/rpminstall.c:1233
+#: lib/rpminstall.c:1247
 #, c-format
 msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
 msgstr ""
@@ -2753,8 +2764,8 @@ msgid "package %s is already installed"
 msgstr "o pacote %s já está instalado"
 
 #: lib/rpmps.c:223
-#, c-format
-msgid "path %s in package %s is not relocateable"
+#, fuzzy, c-format
+msgid "path %s in package %s is not relocatable"
 msgstr "a directoria %s no pacote %s não pode ser mudada de sítio"
 
 #: lib/rpmps.c:228
@@ -2906,50 +2917,75 @@ msgstr "N
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Não consegui abrir o %s para leitura: %s.\n"
 
-#: lib/rpmts.c:162
+#: lib/rpmsx.c:343
+#, c-format
+msgid "%s:  no newline on line number %d (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:360
+#, c-format
+msgid "%s:  line number %d is missing fields (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:391
+#, 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
+#, c-format
+msgid "%s:  invalid type specifier %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmsx.c:434
+#, c-format
+msgid "%s:  invalid context %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmts.c:163
 #, 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:252
+#: lib/rpmts.c:253
 #, fuzzy, c-format
 msgid "extra '(' in package label: %s\n"
 msgstr "número de pacote inválido: %s\n"
 
-#: lib/rpmts.c:270
+#: lib/rpmts.c:271
 #, fuzzy, c-format
 msgid "missing '(' in package label: %s\n"
 msgstr "Falta um '(' em %s %s\n"
 
-#: lib/rpmts.c:278
+#: lib/rpmts.c:279
 #, fuzzy, c-format
 msgid "missing ')' in package label: %s\n"
 msgstr "número de pacote inválido: %s\n"
 
-#: lib/rpmts.c:455
+#: lib/rpmts.c:456
 #, 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:597
+#: lib/rpmts.c:598
 #, fuzzy, c-format
 msgid "Adding: %s\n"
 msgstr "linha: %s\n"
 
-#: lib/rpmts.c:609
+#: lib/rpmts.c:610
 #, fuzzy, c-format
 msgid "Suggesting: %s\n"
 msgstr "A obter o %s\n"
 
-#: lib/rpmts.c:1077
+#: lib/rpmts.c:1097
 msgid "mounted filesystems:\n"
 msgstr ""
 
-#: lib/rpmts.c:1079
+#: lib/rpmts.c:1099
 msgid "    i    dev bsize       bavail       iavail mount point\n"
 msgstr ""
 
-#: lib/rpmts.c:1135
+#: lib/rpmts.c:1155
 #, c-format
 msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
 msgstr ""
@@ -3157,12 +3193,12 @@ msgstr ""
 msgid "computing file dispositions\n"
 msgstr ""
 
-#: lib/verify.c:288
+#: lib/verify.c:319
 #, fuzzy, c-format
 msgid "missing  %c %s"
 msgstr "falta     %s"
 
-#: lib/verify.c:397
+#: lib/verify.c:433
 #, fuzzy, c-format
 msgid "Unsatisfied dependencies for %s: "
 msgstr "Dependências não satisfeitas para o %s-%s-%s: "
@@ -3362,163 +3398,163 @@ msgstr "n
 msgid "cannot open %s index\n"
 msgstr "não consigo abrir o índice do %s\n"
 
-#: rpmdb/rpmdb.c:915
+#: rpmdb/rpmdb.c:917
 msgid "no dbpath has been set\n"
 msgstr "não foi definido o dbpath\n"
 
-#: rpmdb/rpmdb.c:1193 rpmdb/rpmdb.c:1322 rpmdb/rpmdb.c:1373 rpmdb/rpmdb.c:2316
-#: rpmdb/rpmdb.c:2432 rpmdb/rpmdb.c:3161
+#: rpmdb/rpmdb.c:1195 rpmdb/rpmdb.c:1324 rpmdb/rpmdb.c:1375 rpmdb/rpmdb.c:2322
+#: rpmdb/rpmdb.c:2438 rpmdb/rpmdb.c:3167
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "erro(%d) ao obter os registos \"%s\" do índice %s\n"
 
-#: rpmdb/rpmdb.c:1567
+#: rpmdb/rpmdb.c:1569
 msgid "miFreeHeader: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1577
+#: rpmdb/rpmdb.c:1579
 #, fuzzy, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "erro(%d) ao guardar o registo %s em %s\n"
 
-#: rpmdb/rpmdb.c:2209
+#: rpmdb/rpmdb.c:2212
 msgid "rpmdbNextIterator: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2242
 #, fuzzy, c-format
 msgid "rpmdb: damaged header #%u retrieved -- skipping.\n"
 msgstr "rpmdb: recebida instância do cabeçalho #%u estragada, a ignorar.\n"
 
-#: rpmdb/rpmdb.c:2520
+#: rpmdb/rpmdb.c:2526
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "%s: não consigo ler o cabeçalho em 0x%x\n"
 
-#: rpmdb/rpmdb.c:2583
+#: rpmdb/rpmdb.c:2589
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "erro(%d) ao obter os registos \"%s\" do índice %s\n"
 
-#: rpmdb/rpmdb.c:2698
+#: rpmdb/rpmdb.c:2704
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "a remover o \"%s\" do índice %s.\n"
 
-#: rpmdb/rpmdb.c:2702
+#: rpmdb/rpmdb.c:2708
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "a remover %d registos do índice %s.\n"
 
-#: rpmdb/rpmdb.c:2730
+#: rpmdb/rpmdb.c:2736
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "erro(%d) ao obter os registos \"%s\" do índice %s\n"
 
-#: rpmdb/rpmdb.c:2751
+#: rpmdb/rpmdb.c:2757
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "erro(%d) ao guardar o registo %s em %s\n"
 
-#: rpmdb/rpmdb.c:2761
+#: rpmdb/rpmdb.c:2767
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "erro(%d) ao remover o registo %s do %s\n"
 
-#: rpmdb/rpmdb.c:2910
+#: rpmdb/rpmdb.c:2916
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "erro(%d) ao criar uma nova instância do pacote\n"
 
-#: rpmdb/rpmdb.c:2964
+#: rpmdb/rpmdb.c:2970
 #, fuzzy
 msgid "rpmdbAdd: skipping"
 msgstr "rpmdb: recebida instância do cabeçalho #%u estragada, a ignorar.\n"
 
-#: rpmdb/rpmdb.c:3136
+#: rpmdb/rpmdb.c:3142
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "a adicionar o \"%s\" ao índice %s.\n"
 
-#: rpmdb/rpmdb.c:3140
+#: rpmdb/rpmdb.c:3146
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "a adicionar %d registos ao índice %s.\n"
 
-#: rpmdb/rpmdb.c:3180
+#: rpmdb/rpmdb.c:3186
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "erro(%d) ao guardar o registo %s em %s\n"
 
-#: rpmdb/rpmdb.c:3581
+#: rpmdb/rpmdb.c:3587
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr "a remover o %s depois duma reconstrução bem sucedida do db3.\n"
 
-#: rpmdb/rpmdb.c:3619
+#: rpmdb/rpmdb.c:3625
 msgid "no dbpath has been set"
 msgstr "não foi definido o dbpath"
 
-#: rpmdb/rpmdb.c:3651
+#: rpmdb/rpmdb.c:3657
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "a reconstruir a base de dados %s em %s\n"
 
-#: rpmdb/rpmdb.c:3655
+#: rpmdb/rpmdb.c:3661
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr "A base de dados temporária %s já existe\n"
 
-#: rpmdb/rpmdb.c:3661
+#: rpmdb/rpmdb.c:3667
 #, c-format
 msgid "creating directory %s\n"
 msgstr "a criar a directoria %s\n"
 
-#: rpmdb/rpmdb.c:3663
+#: rpmdb/rpmdb.c:3669
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr "a criar a directoria %s: %s\n"
 
-#: rpmdb/rpmdb.c:3670
+#: rpmdb/rpmdb.c:3676
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "a abrir a base de dados antiga com a dbapi %d\n"
 
-#: rpmdb/rpmdb.c:3683
+#: rpmdb/rpmdb.c:3689
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "a abrir a base de dados nova com a dbapi %d\n"
 
-#: rpmdb/rpmdb.c:3712
+#: rpmdb/rpmdb.c:3718
 #, fuzzy, c-format
 msgid "header #%u in the database is bad -- skipping.\n"
 msgstr "o número do registo %u na base de dados está errado -- a ignorar.\n"
 
-#: rpmdb/rpmdb.c:3752
+#: rpmdb/rpmdb.c:3758
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "não consigo adicionar o registo originalmente em %u\n"
 
-#: rpmdb/rpmdb.c:3766
+#: rpmdb/rpmdb.c:3772
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 "falhou a reconstrução da base de dados: a base de dados original mantém-se\n"
 
-#: rpmdb/rpmdb.c:3774
+#: rpmdb/rpmdb.c:3780
 msgid "failed to replace old database with new database!\n"
 msgstr "falhou a substituição da base de dados antiga pela nova!\n"
 
-#: rpmdb/rpmdb.c:3776
+#: rpmdb/rpmdb.c:3782
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "substituir os ficheiros em %s por ficheiros de %s a recuperar"
 
-#: rpmdb/rpmdb.c:3786
+#: rpmdb/rpmdb.c:3792
 #, c-format
 msgid "removing directory %s\n"
 msgstr "a remover a directoria %s\n"
 
-#: rpmdb/rpmdb.c:3788
+#: rpmdb/rpmdb.c:3794
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "falhou a remoção da directoria %s: %s\n"
@@ -3574,42 +3610,42 @@ msgstr "A macro %%%s tem um nome ilegal (%%undefine)\n"
 msgid "Macro %%%s (%s) was not used below level %d\n"
 msgstr "A macro %%%s (%s) não foi usada abaixo do nível %d\n"
 
-#: rpmio/macro.c:982
+#: rpmio/macro.c:984
 #, c-format
 msgid "Unknown option %c in %s(%s)\n"
 msgstr "Opção desconhecida %c em %s(%s)\n"
 
-#: rpmio/macro.c:1182
+#: rpmio/macro.c:1184
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)\n"
 msgstr "Nível de recursividade(%d) maior que o máximo(%d)\n"
 
-#: rpmio/macro.c:1252 rpmio/macro.c:1269
+#: rpmio/macro.c:1255 rpmio/macro.c:1272
 #, c-format
 msgid "Unterminated %c: %s\n"
 msgstr "%c não terminado: %s\n"
 
-#: rpmio/macro.c:1310
+#: rpmio/macro.c:1313
 #, c-format
 msgid "A %% is followed by an unparseable macro\n"
 msgstr "Segue-se uma macro impossível de analisar ao %%\n"
 
-#: rpmio/macro.c:1439
+#: rpmio/macro.c:1442
 #, c-format
 msgid "Macro %%%.*s not found, skipping\n"
 msgstr "A macro %%%.*s não foi encontrada, por isso foi ignorada\n"
 
-#: rpmio/macro.c:1510
+#: rpmio/macro.c:1513
 msgid "Target buffer overflow\n"
 msgstr "Sobrecarga do tampão de destino\n"
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1705 rpmio/macro.c:1711
+#: rpmio/macro.c:1708 rpmio/macro.c:1714
 #, c-format
 msgid "File %s: %s\n"
 msgstr "Ficheiro %s: %s\n"
 
-#: rpmio/macro.c:1714
+#: rpmio/macro.c:1717
 #, c-format
 msgid "File %s is smaller than %u bytes\n"
 msgstr "O ficheiro %s tem menos de %u bytes\n"
index aec41c8..ce89e3f 100644 (file)
@@ -5,7 +5,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:11-0500\n"
+"POT-Creation-Date: 2003-12-30 08:11-0500\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=ISO-8859-1\n"
 "Content-Transfer-Encoding: 8-bit\n"
@@ -22,47 +22,47 @@ msgid "Unable to open spec file %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build.c:152 build.c:164
+#: build.c:150 build.c:162
 #, fuzzy, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
 #. Give up
-#: build.c:171
+#: build.c:169
 #, fuzzy, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
 # , c-format
-#: build.c:199
+#: build.c:197
 #, fuzzy, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
 # , c-format
-#: build.c:239
+#: build.c:237
 #, fuzzy, c-format
 msgid "failed to stat %s: %m\n"
 msgstr "No consegui abrir: %s\n"
 
-#: build.c:244
+#: build.c:242
 #, fuzzy, c-format
 msgid "File %s is not a regular file.\n"
 msgstr "no foi passado pacote para instalao"
 
-#: build.c:253
+#: build.c:251
 #, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr ""
 
 #. parse up the build operators
-#: build.c:324
+#: build.c:322
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr ""
 
-#: build.c:339
+#: build.c:337
 #, fuzzy, c-format
 msgid "Building for target %s\n"
 msgstr "instale pacote"
@@ -124,7 +124,7 @@ 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
-#: rpmqv.c:129 lib/poptALL.c:114
+#: rpmqv.c:129 lib/poptALL.c:119
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM verso %s\n"
@@ -467,178 +467,178 @@ msgstr ""
 msgid "syntax error in expression\n"
 msgstr ""
 
-#: build/files.c:278
+#: build/files.c:280
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr ""
 
-#: build/files.c:343 build/files.c:543 build/files.c:739
+#: build/files.c:345 build/files.c:545 build/files.c:741
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr ""
 
-#: build/files.c:354 build/files.c:673 build/files.c:750
+#: build/files.c:356 build/files.c:675 build/files.c:752
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:392 build/files.c:698
+#: build/files.c:394 build/files.c:700
 #, fuzzy, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: build/files.c:502
+#: build/files.c:504
 #, c-format
 msgid "Missing %s in %s %s\n"
 msgstr ""
 
-#: build/files.c:559
+#: build/files.c:561
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:597
+#: build/files.c:599
 #, fuzzy, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
 # , c-format
-#: build/files.c:607
+#: build/files.c:609
 #, fuzzy, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
 # , c-format
-#: build/files.c:619
+#: build/files.c:621
 #, fuzzy, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
-#: build/files.c:777
+#: build/files.c:779
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr ""
 
 #. @innercontinue@
-#: build/files.c:788
+#: build/files.c:790
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr ""
 
-#: build/files.c:917
+#: build/files.c:919
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr ""
 
-#: build/files.c:925
+#: build/files.c:927
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr ""
 
 # , c-format
 #. We already got a file -- error
-#: build/files.c:959
+#: build/files.c:961
 #, fuzzy, c-format
 msgid "Two files on one line: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: build/files.c:976
+#: build/files.c:978
 #, fuzzy, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "argumentos para o --dbpath devem comear com uma /"
 
-#: build/files.c:989
+#: build/files.c:991
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:1141
+#: build/files.c:1149
 #, fuzzy, c-format
 msgid "File listed twice: %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
-#: build/files.c:1280
+#: build/files.c:1288
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:1520
+#: build/files.c:1535
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
-#: build/files.c:1544
+#: build/files.c:1559
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "no foi passado pacote para desinstalao"
 
 # , c-format
-#: build/files.c:1752
+#: build/files.c:1767
 #, fuzzy, c-format
 msgid "%s: public key read failed.\n"
 msgstr "No consegui abrir: %s\n"
 
-#: build/files.c:1756 lib/rpmchecksig.c:580
+#: build/files.c:1771 lib/rpmchecksig.c:580
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: build/files.c:1804
+#: build/files.c:1819
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "argumentos para o --dbpath devem comear com uma /"
 
 # , c-format
-#: build/files.c:1828
+#: build/files.c:1843
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: build/files.c:1845 lib/rpminstall.c:347
+#: build/files.c:1860 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:1905
+#: build/files.c:1920
 #, fuzzy, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/files.c:1916 build/pack.c:156
+#: build/files.c:1931 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:2307
+#: build/files.c:2323
 #, fuzzy, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
-#: build/files.c:2319 build/parsePrep.c:50
+#: build/files.c:2335 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:2363
+#: build/files.c:2379
 #, fuzzy, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr "instale pacote"
 
-#: build/files.c:2386
+#: build/files.c:2402
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
 "%s"
 msgstr ""
 
-#: build/files.c:2414
+#: build/files.c:2430
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -800,7 +800,7 @@ msgid "Could not open %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:632 lib/psm.c:1427
+#: build/pack.c:632 lib/psm.c:1420
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "No consegui abrir: %s\n"
@@ -835,7 +835,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:1725
+#: build/pack.c:725 lib/psm.c:1689
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1376,20 +1376,20 @@ msgstr "no verifique as dependncias do pacote"
 msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
 msgstr ""
 
-#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329
-#: lib/poptQV.c:338 lib/poptQV.c:377
+#: build/poptBT.c:229 lib/poptALL.c:240 lib/poptI.c:261 lib/poptQV.c:335
+#: lib/poptQV.c:344 lib/poptQV.c:383
 #, fuzzy
 msgid "don't verify package digest(s)"
 msgstr "no verifique as dependncias do pacote"
 
-#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332
-#: lib/poptQV.c:340 lib/poptQV.c:380
+#: build/poptBT.c:231 lib/poptALL.c:242 lib/poptI.c:263 lib/poptQV.c:338
+#: lib/poptQV.c:346 lib/poptQV.c:386
 #, fuzzy
 msgid "don't verify database header(s) when retrieved"
 msgstr "no verifique a arquitetura do pacote"
 
-#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335
-#: lib/poptQV.c:342 lib/poptQV.c:382
+#: build/poptBT.c:233 lib/poptALL.c:248 lib/poptI.c:265 lib/poptQV.c:341
+#: lib/poptQV.c:348 lib/poptQV.c:388
 #, fuzzy
 msgid "don't verify package signature(s)"
 msgstr "verifique a assinatura do pacote"
@@ -1466,31 +1466,31 @@ msgstr ""
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:232
+#: lib/cpio.c:233
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:233
+#: lib/cpio.c:234
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:234
+#: lib/cpio.c:235
 msgid "Missing hard link(s)"
 msgstr ""
 
-#: lib/cpio.c:235
+#: lib/cpio.c:236
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:236
+#: lib/cpio.c:237
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:237
+#: lib/cpio.c:238
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:250
+#: lib/cpio.c:251
 #, fuzzy
 msgid " failed - "
 msgstr "Construo falhou.\n"
@@ -1629,50 +1629,60 @@ msgstr "No consegui ler o arquivo spec de %s\n"
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:350
+#: lib/fsm.c:352
 msgid "========== Directories not explicitly included in package:\n"
 msgstr ""
 
 # , c-format
-#: lib/fsm.c:352
+#: lib/fsm.c:354
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
-#: lib/fsm.c:1293
+#: lib/fsm.c:768
+#, c-format
+msgid "user %s does not exist - using root\n"
+msgstr ""
+
+#: lib/fsm.c:776
+#, c-format
+msgid "group %s does not exist - using root\n"
+msgstr ""
+
+#: lib/fsm.c:1334
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1592
+#: lib/fsm.c:1633
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
 # , c-format
-#: lib/fsm.c:1719 lib/fsm.c:1855
+#: lib/fsm.c:1760 lib/fsm.c:1896
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: lib/fsm.c:1882
+#: lib/fsm.c:1923
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/fsm.c:1888
+#: lib/fsm.c:1929
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "Construo falhou.\n"
 
-#: lib/fsm.c:1903
+#: lib/fsm.c:1944
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "Construo falhou.\n"
 
 # , c-format
-#: lib/fsm.c:1925
+#: lib/fsm.c:1966
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "No consegui abrir: %s\n"
@@ -1794,119 +1804,119 @@ msgstr "No consegui abrir: %s\n"
 msgid "%s: Fread failed: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/poptALL.c:222
+#: lib/poptALL.c:227
 msgid "predefine MACRO with value EXPR"
 msgstr ""
 
-#: lib/poptALL.c:223 lib/poptALL.c:226
+#: lib/poptALL.c:228 lib/poptALL.c:231
 msgid "'MACRO EXPR'"
 msgstr ""
 
-#: lib/poptALL.c:225
+#: lib/poptALL.c:230
 msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: lib/poptALL.c:228
+#: lib/poptALL.c:233
 #, fuzzy
 msgid "print macro expansion of EXPR"
 msgstr "mostra a verso do programa rpm sendo usado"
 
-#: lib/poptALL.c:229
+#: lib/poptALL.c:234
 msgid "'EXPR'"
 msgstr ""
 
-#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254
+#: lib/poptALL.c:236 lib/poptALL.c:255 lib/poptALL.c:259
 msgid "read <FILE:...> instead of default file(s)"
 msgstr ""
 
-#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255
+#: lib/poptALL.c:237 lib/poptALL.c:256 lib/poptALL.c:260
 msgid "<FILE:...>"
 msgstr ""
 
-#: lib/poptALL.c:240 lib/poptALL.c:274
+#: lib/poptALL.c:245 lib/poptALL.c:279
 msgid "disable use of libio(3) API"
 msgstr ""
 
-#: lib/poptALL.c:246
+#: lib/poptALL.c:251
 #, fuzzy
 msgid "send stdout to CMD"
 msgstr "envia a saida padro para <cmd>"
 
-#: lib/poptALL.c:247
+#: lib/poptALL.c:252
 msgid "CMD"
 msgstr ""
 
-#: lib/poptALL.c:258
+#: lib/poptALL.c:263
 #, fuzzy
 msgid "use ROOT as top level directory"
 msgstr "use <diretrio> como diretrio raiz"
 
-#: lib/poptALL.c:259
+#: lib/poptALL.c:264
 msgid "ROOT"
 msgstr ""
 
-#: lib/poptALL.c:262
+#: lib/poptALL.c:267
 msgid "display known query tags"
 msgstr ""
 
-#: lib/poptALL.c:264
+#: lib/poptALL.c:269
 msgid "display final rpmrc and macro configuration"
 msgstr ""
 
-#: lib/poptALL.c:266
+#: lib/poptALL.c:271
 msgid "provide less detailed output"
 msgstr ""
 
-#: lib/poptALL.c:268
+#: lib/poptALL.c:273
 msgid "provide more detailed output"
 msgstr ""
 
-#: lib/poptALL.c:270
+#: lib/poptALL.c:275
 msgid "print the version of rpm being used"
 msgstr "mostra a verso do programa rpm sendo usado"
 
 # , c-format
-#: lib/poptALL.c:283
+#: lib/poptALL.c:288
 #, fuzzy
 msgid "debug payload file state machine"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: lib/poptALL.c:285
+#: lib/poptALL.c:290
 #, fuzzy
 msgid "use threads for file state machine"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/poptALL.c:287
+#: lib/poptALL.c:292
 msgid "debug protocol data stream"
 msgstr ""
 
-#: lib/poptALL.c:292
+#: lib/poptALL.c:297
 msgid "debug option/argument processing"
 msgstr ""
 
 # , c-format
-#: lib/poptALL.c:297
+#: lib/poptALL.c:302
 #, fuzzy
 msgid "debug package state machine"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: lib/poptALL.c:299
+#: lib/poptALL.c:304
 #, fuzzy
 msgid "use threads for package state machine"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/poptALL.c:311
+#: lib/poptALL.c:316
 msgid "debug rpmio I/O"
 msgstr ""
 
-#: lib/poptALL.c:323
+#: lib/poptALL.c:330
 msgid "debug URL cache handling"
 msgstr ""
 
 #. @-nullpass@
-#: lib/poptALL.c:393
+#: lib/poptALL.c:400
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1937,16 +1947,16 @@ msgstr ""
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:151
+#: lib/poptI.c:155
 #, fuzzy
 msgid "add suggested packages to transaction"
 msgstr "no foi passado pacote para desinstalao"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:159
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: lib/poptI.c:159
+#: lib/poptI.c:163
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1954,158 +1964,163 @@ msgstr ""
 "remova todos os pacotes iguais a <pacote> (normalmente um erro  gerado se "
 "<pacote> especificou mltiplos pacotes)"
 
-#: lib/poptI.c:164 tools/rpmgraph.c:273
+#: lib/poptI.c:168 tools/rpmgraph.c:273
 msgid "use anaconda \"presentation order\""
 msgstr ""
 
-#: lib/poptI.c:169 lib/poptI.c:238
+#: lib/poptI.c:173 lib/poptI.c:245
 #, fuzzy
 msgid "do not execute package scriptlet(s)"
 msgstr "no execute nenhuma script especfica do pacote"
 
-#: lib/poptI.c:173
+#: lib/poptI.c:177
 #, fuzzy
-msgid "relocate files in non-relocateable package"
+msgid "relocate files in non-relocatable package"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/poptI.c:176
+#: lib/poptI.c:180
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 msgid "erase (uninstall) package"
 msgstr "apague (desinstale) pacote"
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 #, fuzzy
 msgid "<package>+"
 msgstr "pesquise todos os pacotes"
 
-#: lib/poptI.c:182 lib/poptI.c:219
+#: lib/poptI.c:186 lib/poptI.c:223
 #, fuzzy
 msgid "do not install configuration files"
 msgstr "liste somente os arquivos de configurao (implica -l)"
 
-#: lib/poptI.c:185 lib/poptI.c:224
+#: lib/poptI.c:189 lib/poptI.c:228
 msgid "do not install documentation"
 msgstr "no instale documentao"
 
-#: lib/poptI.c:187
+#: lib/poptI.c:191
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:188
+#: lib/poptI.c:192
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:191
+#: lib/poptI.c:195
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "alis para --replacepkgs --replacefiles"
 
-#: lib/poptI.c:195
+#: lib/poptI.c:199
 #, fuzzy
 msgid "upgrade package(s) if already installed"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
+#: lib/poptI.c:200 lib/poptI.c:216 lib/poptI.c:312
 #, fuzzy
 msgid "<packagefile>+"
 msgstr "    -b<estgio> <spec>    "
 
-#: lib/poptI.c:198
+#: lib/poptI.c:202
 msgid "print hash marks as package installs (good with -v)"
 msgstr "mostre caracteres # a medida que o pacote instala (bom com -v)"
 
-#: lib/poptI.c:201
+#: lib/poptI.c:205
 #, fuzzy
 msgid "don't verify package architecture"
 msgstr "no verifique a arquitetura do pacote"
 
-#: lib/poptI.c:204
+#: lib/poptI.c:208
 msgid "don't verify package operating system"
 msgstr "no verifique o sistema operacional do pacote"
 
-#: lib/poptI.c:207
+#: lib/poptI.c:211
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:209
+#: lib/poptI.c:213
 msgid "install documentation"
 msgstr "instale documentao"
 
-#: lib/poptI.c:212
+#: lib/poptI.c:216
 #, fuzzy
 msgid "install package(s)"
 msgstr "instale pacote"
 
-#: lib/poptI.c:215
+#: lib/poptI.c:219
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: lib/poptI.c:221
+#: lib/poptI.c:225
 msgid "do not verify package dependencies"
 msgstr "no verifique as dependncias do pacote"
 
-#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:231 lib/poptQV.c:279 lib/poptQV.c:282
 #, fuzzy
 msgid "don't verify MD5 digest of files"
 msgstr "instale pacote"
 
-#: lib/poptI.c:230
+#: lib/poptI.c:233
+#, fuzzy
+msgid "don't install file security contexts"
+msgstr "liste somente os arquivos de configurao (implica -l)"
+
+#: lib/poptI.c:237
 #, fuzzy
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "no verifique as dependncias do pacote"
 
-#: lib/poptI.c:235
+#: lib/poptI.c:242
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:242
+#: lib/poptI.c:249
 #, fuzzy, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "no execute nenhum estgio"
 
-#: lib/poptI.c:245
+#: lib/poptI.c:252
 #, fuzzy, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "no execute nenhum estgio"
 
-#: lib/poptI.c:248
+#: lib/poptI.c:255
 #, fuzzy, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "no execute nenhum estgio"
 
-#: lib/poptI.c:251
+#: lib/poptI.c:258
 #, fuzzy, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "no execute nenhum estgio"
 
-#: lib/poptI.c:261
+#: lib/poptI.c:268
 #, fuzzy
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "pesquise o pacote ao qual <arquivo> pertence"
 
-#: lib/poptI.c:264
+#: lib/poptI.c:271
 #, fuzzy, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "no execute nenhuma script especfica do pacote"
 
-#: lib/poptI.c:267
+#: lib/poptI.c:274
 #, fuzzy, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "no execute nenhuma script de instalao"
 
-#: lib/poptI.c:270
+#: lib/poptI.c:277
 #, fuzzy, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "no execute nenhuma script de instalao"
 
-#: lib/poptI.c:273
+#: lib/poptI.c:280
 #, fuzzy, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "no execute nenhuma script de instalao"
 
-#: lib/poptI.c:277
+#: lib/poptI.c:284
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -2113,52 +2128,52 @@ msgstr ""
 "atualize para uma verso mais velha do pacote (--force em atualizaes no faz "
 "isto automaticamente)"
 
-#: lib/poptI.c:281
+#: lib/poptI.c:288
 msgid "print percentages as package installs"
 msgstr "imprima porcentagens a medida que o pacote vai sendo instalado"
 
-#: lib/poptI.c:283
+#: lib/poptI.c:290
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "realoque o pacote para <diretrio>, se realocvel"
 
-#: lib/poptI.c:284
+#: lib/poptI.c:291
 msgid "<dir>"
 msgstr ""
 
-#: lib/poptI.c:286
+#: lib/poptI.c:293
 msgid "relocate files from path <old> to <new>"
 msgstr ""
 
-#: lib/poptI.c:287
+#: lib/poptI.c:294
 #, fuzzy
 msgid "<old>=<new>"
 msgstr "                        [--nomd5] [alvos]"
 
-#: lib/poptI.c:290
+#: lib/poptI.c:297
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:293
+#: lib/poptI.c:300
 msgid "install even if the package replaces installed files"
 msgstr "instale mesmo que o pacote substitua arquivos j instalados"
 
-#: lib/poptI.c:296
+#: lib/poptI.c:303
 msgid "reinstall if the package is already present"
 msgstr "reinstale se o pacote j estiver presente"
 
-#: lib/poptI.c:298
+#: lib/poptI.c:305
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:299
+#: lib/poptI.c:306
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:301
+#: lib/poptI.c:308
 msgid "don't install, but tell if it would work or not"
 msgstr "no instale, mas diga se a instalao funcionar ou no"
 
-#: lib/poptI.c:304
+#: lib/poptI.c:311
 #, fuzzy
 msgid "upgrade package(s)"
 msgstr "instale pacote"
@@ -2247,220 +2262,215 @@ msgstr "pesquise pacotes que requerem capacidade <i>"
 msgid "query/verify the package(s) which provide a dependency"
 msgstr "pesquise pacotes que fornecem a capacidade <i>"
 
-#: lib/poptQV.c:226
+#: lib/poptQV.c:230
 #, fuzzy
 msgid "list all configuration files"
 msgstr "liste somente os arquivos de configurao (implica -l)"
 
-#: lib/poptQV.c:228
+#: lib/poptQV.c:232
 #, fuzzy
 msgid "list all documentation files"
 msgstr "instale documentao"
 
-#: lib/poptQV.c:230
+#: lib/poptQV.c:234
 #, fuzzy
 msgid "dump basic file information"
 msgstr "mostre informao do pacote"
 
-#: lib/poptQV.c:234
+#: lib/poptQV.c:238
 #, fuzzy
 msgid "list files in package"
 msgstr "instale pacote"
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:243
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:243
+#: lib/poptQV.c:247
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
 # , c-format
-#: lib/poptQV.c:246
+#: lib/poptQV.c:250
 #, fuzzy, c-format
 msgid "skip %%readme files"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/poptQV.c:252
+#: lib/poptQV.c:256
 #, fuzzy
 msgid "use the following query format"
 msgstr "fonte de pesquisa no esperado"
 
-#: lib/poptQV.c:254
+#: lib/poptQV.c:258
 #, fuzzy
 msgid "substitute i18n sections into spec file"
 msgstr "pesquise o pacote ao qual <arquivo> pertence"
 
-#: lib/poptQV.c:256
+#: lib/poptQV.c:260
 msgid "display the states of the listed files"
 msgstr ""
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:286
 #, fuzzy
 msgid "don't verify size of files"
 msgstr "instale pacote"
 
-#: lib/poptQV.c:285
+#: lib/poptQV.c:289
 #, fuzzy
 msgid "don't verify symlink path of files"
 msgstr "instale pacote"
 
-#: lib/poptQV.c:288
+#: lib/poptQV.c:292
 #, fuzzy
 msgid "don't verify owner of files"
 msgstr "instale pacote"
 
-#: lib/poptQV.c:291
+#: lib/poptQV.c:295
 #, fuzzy
 msgid "don't verify group of files"
 msgstr "instale pacote"
 
-#: lib/poptQV.c:294
+#: lib/poptQV.c:298
 msgid "don't verify modification time of files"
 msgstr ""
 
-#: lib/poptQV.c:297 lib/poptQV.c:300
+#: lib/poptQV.c:301 lib/poptQV.c:304
 #, fuzzy
 msgid "don't verify mode of files"
 msgstr "instale pacote"
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:307
+#, fuzzy
+msgid "don't verify file security contexts"
+msgstr "instale pacote"
+
+#: lib/poptQV.c:309
 #, fuzzy
 msgid "don't verify files in package"
 msgstr "instale pacote"
 
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
+#: lib/poptQV.c:312 lib/poptQV.c:315 tools/rpmgraph.c:267
 #, fuzzy
 msgid "don't verify package dependencies"
 msgstr "no verifique as dependncias do pacote"
 
-#: lib/poptQV.c:314 lib/poptQV.c:318 lib/poptQV.c:321 lib/poptQV.c:324
+#: lib/poptQV.c:320 lib/poptQV.c:324 lib/poptQV.c:327 lib/poptQV.c:330
 #, fuzzy
 msgid "don't execute verify script(s)"
 msgstr "no execute nenhum estgio"
 
-#: lib/poptQV.c:348
+#: lib/poptQV.c:354
 #, fuzzy
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr "instale pacote"
 
-#: lib/poptQV.c:351
+#: lib/poptQV.c:357
 #, fuzzy
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr "instale pacote"
 
-#: lib/poptQV.c:366
+#: lib/poptQV.c:372
 #, fuzzy
 msgid "sign package(s) (identical to --resign)"
 msgstr "assine um pacote (descarte a assinatura corrente)"
 
-#: lib/poptQV.c:368
+#: lib/poptQV.c:374
 #, fuzzy
 msgid "verify package signature(s)"
 msgstr "verifique a assinatura do pacote"
 
-#: lib/poptQV.c:370
+#: lib/poptQV.c:376
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:372
+#: lib/poptQV.c:378
 #, fuzzy
 msgid "sign package(s) (identical to --addsign)"
 msgstr "assine um pacote (descarte a assinatura corrente)"
 
-#: lib/poptQV.c:374
+#: lib/poptQV.c:380
 #, fuzzy
 msgid "generate signature"
 msgstr "gere assinatura PGP"
 
-#: lib/psm.c:269
+#: lib/psm.c:268
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:394
+#: lib/psm.c:386
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "pesquise o pacote ao qual <arquivo> pertence"
 
-#: lib/psm.c:480
+#: lib/psm.c:472
 #, c-format
 msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
 msgstr ""
 
-#: lib/psm.c:562
+#: lib/psm.c:554
 #, c-format
 msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
 msgstr ""
 
-#: lib/psm.c:570
+#: lib/psm.c:562
 #, c-format
 msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
 msgstr ""
 
-#: lib/psm.c:735
+#: lib/psm.c:730
 #, c-format
 msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
 msgstr ""
 
-#: lib/psm.c:756
+#: lib/psm.c:751
 #, c-format
 msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
 msgstr ""
 
-#: lib/psm.c:762
+#: lib/psm.c:757
 #, c-format
 msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1191
+#: lib/psm.c:1188
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/psm.c:1330
+#: lib/psm.c:1323
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
 # , c-format
-#: lib/psm.c:1439
+#: lib/psm.c:1432
 #, fuzzy
 msgid "Unable to reload signature header\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/psm.c:1485
-#, c-format
-msgid "user %s does not exist - using root\n"
-msgstr ""
-
-#: lib/psm.c:1494
-#, c-format
-msgid "group %s does not exist - using root\n"
-msgstr ""
-
-#: lib/psm.c:1546
+#: lib/psm.c:1510
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "Construo falhou.\n"
 
-#: lib/psm.c:1547
+#: lib/psm.c:1511
 msgid " on file "
 msgstr ""
 
 # , c-format
-#: lib/psm.c:1733
+#: lib/psm.c:1697
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/psm.c:1736
+#: lib/psm.c:1700
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "Construo falhou.\n"
 
-#: lib/query.c:118 lib/rpmts.c:565
+#: lib/query.c:118 lib/rpmts.c:566
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
@@ -2510,8 +2520,8 @@ msgstr "no foi passado pacote para instalao"
 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:462
-#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576
+#: 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
 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
@@ -2526,7 +2536,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:488 lib/rpminstall.c:608
+#: lib/query.c:488 lib/rpminstall.c:622
 #, fuzzy, c-format
 msgid "%s: not an rpm package (or package manifest): %s\n"
 msgstr "no foram passados pacotes para assinatura"
@@ -2598,18 +2608,18 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:766 lib/rpminstall.c:778
+#: lib/query.c:766 lib/rpminstall.c:792
 #, fuzzy, c-format
 msgid "package %s is not installed\n"
 msgstr "no foi passado pacote para instalao"
 
 # , c-format
-#: lib/rpmal.c:692
+#: lib/rpmal.c:694
 #, fuzzy
 msgid "(added files)"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:772
 msgid "(added provide)"
 msgstr ""
 
@@ -2740,12 +2750,12 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/rpmfi.c:546
+#: lib/rpmfi.c:561
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/rpmfi.c:784
+#: lib/rpmfi.c:799
 msgid "========== relocations\n"
 msgstr ""
 
@@ -2757,13 +2767,13 @@ msgstr ""
 # "Content-Type: text/plain; charset=ISO-8859-1\n"
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
-#: lib/rpmfi.c:788
+#: lib/rpmfi.c:803
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "RPM verso %s\n"
 
 # , c-format
-#: lib/rpmfi.c:791
+#: lib/rpmfi.c:806
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "No consegui abrir: %s\n"
@@ -2776,19 +2786,19 @@ msgstr "No consegui abrir: %s\n"
 # "Content-Type: text/plain; charset=ISO-8859-1\n"
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
-#: lib/rpmfi.c:919
+#: lib/rpmfi.c:934
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "RPM verso %s\n"
 
 # , c-format
-#: lib/rpmfi.c:929
+#: lib/rpmfi.c:944
 #, fuzzy, c-format
 msgid "relocating %s to %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: lib/rpmfi.c:1021
+#: lib/rpmfi.c:1036
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "No consegui abrir: %s\n"
@@ -2820,7 +2830,7 @@ msgid "Upgrading packages..."
 msgstr "instale pacote"
 
 # , c-format
-#: lib/rpminstall.c:394
+#: lib/rpminstall.c:408
 #, fuzzy, c-format
 msgid "Adding goal: %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
@@ -2833,86 +2843,86 @@ 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/rpminstall.c:409
+#: lib/rpminstall.c:423
 #, fuzzy, c-format
 msgid "Retrieving %s\n"
 msgstr "RPM verso %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:436
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:426
+#: lib/rpminstall.c:440
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:481 lib/rpminstall.c:872 tools/rpmgraph.c:140
+#: lib/rpminstall.c:495 lib/rpminstall.c:886 tools/rpmgraph.c:140
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/rpminstall.c:523
+#: lib/rpminstall.c:537
 #, fuzzy, c-format
-msgid "package %s is not relocateable\n"
+msgid "package %s is not relocatable\n"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/rpminstall.c:573
+#: lib/rpminstall.c:587
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:593
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:637
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:637 lib/rpminstall.c:810 lib/rpminstall.c:1239
+#: lib/rpminstall.c:651 lib/rpminstall.c:824 lib/rpminstall.c:1253
 #: tools/rpmgraph.c:195
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "lista dependncias do pacote"
 
-#: lib/rpminstall.c:644 tools/rpmgraph.c:201
+#: lib/rpminstall.c:658 tools/rpmgraph.c:201
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:688
 #, fuzzy
 msgid "installing binary packages\n"
 msgstr "instale pacote"
 
 # , c-format
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:712
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/rpminstall.c:787
+#: lib/rpminstall.c:801
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
 # , c-format
-#: lib/rpminstall.c:856
+#: lib/rpminstall.c:870
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/rpminstall.c:862
+#: lib/rpminstall.c:876
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1233
+#: lib/rpminstall.c:1247
 #, c-format
 msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
 msgstr ""
@@ -2981,7 +2991,7 @@ msgstr "no foi passado pacote para instalao"
 
 #: lib/rpmps.c:223
 #, fuzzy, c-format
-msgid "path %s in package %s is not relocateable"
+msgid "path %s in package %s is not relocatable"
 msgstr "no foi passado pacote para instalao"
 
 #: lib/rpmps.c:228
@@ -3135,35 +3145,60 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "No consegui abrir: %s\n"
 
+#: lib/rpmsx.c:343
+#, c-format
+msgid "%s:  no newline on line number %d (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:360
+#, c-format
+msgid "%s:  line number %d is missing fields (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:391
+#, 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
+#, c-format
+msgid "%s:  invalid type specifier %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmsx.c:434
+#, c-format
+msgid "%s:  invalid context %s on line number %d\n"
+msgstr ""
+
 # , c-format
-#: lib/rpmts.c:162
+#: lib/rpmts.c:163
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/rpmts.c:252
+#: lib/rpmts.c:253
 #, c-format
 msgid "extra '(' in package label: %s\n"
 msgstr ""
 
-#: lib/rpmts.c:270
+#: lib/rpmts.c:271
 #, fuzzy, c-format
 msgid "missing '(' in package label: %s\n"
 msgstr "instale pacote"
 
-#: lib/rpmts.c:278
+#: lib/rpmts.c:279
 #, fuzzy, c-format
 msgid "missing ')' in package label: %s\n"
 msgstr "instale pacote"
 
 # , c-format
-#: lib/rpmts.c:455
+#: lib/rpmts.c:456
 #, fuzzy, c-format
 msgid "cannot open Solve database in %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: lib/rpmts.c:597
+#: lib/rpmts.c:598
 #, fuzzy, c-format
 msgid "Adding: %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
@@ -3176,20 +3211,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:609
+#: lib/rpmts.c:610
 #, fuzzy, c-format
 msgid "Suggesting: %s\n"
 msgstr "RPM verso %s\n"
 
-#: lib/rpmts.c:1077
+#: lib/rpmts.c:1097
 msgid "mounted filesystems:\n"
 msgstr ""
 
-#: lib/rpmts.c:1079
+#: lib/rpmts.c:1099
 msgid "    i    dev bsize       bavail       iavail mount point\n"
 msgstr ""
 
-#: lib/rpmts.c:1135
+#: lib/rpmts.c:1155
 #, c-format
 msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
 msgstr ""
@@ -3409,12 +3444,12 @@ msgstr ""
 msgid "computing file dispositions\n"
 msgstr ""
 
-#: lib/verify.c:288
+#: lib/verify.c:319
 #, c-format
 msgid "missing  %c %s"
 msgstr ""
 
-#: lib/verify.c:397
+#: lib/verify.c:433
 #, fuzzy, c-format
 msgid "Unsatisfied dependencies for %s: "
 msgstr "lista dependncias do pacote"
@@ -3618,162 +3653,162 @@ msgstr "No consegui abrir: %s\n"
 msgid "cannot open %s index\n"
 msgstr "No consegui abrir: %s\n"
 
-#: rpmdb/rpmdb.c:915
+#: rpmdb/rpmdb.c:917
 msgid "no dbpath has been set\n"
 msgstr ""
 
 # , c-format
-#: rpmdb/rpmdb.c:1193 rpmdb/rpmdb.c:1322 rpmdb/rpmdb.c:1373 rpmdb/rpmdb.c:2316
-#: rpmdb/rpmdb.c:2432 rpmdb/rpmdb.c:3161
+#: rpmdb/rpmdb.c:1195 rpmdb/rpmdb.c:1324 rpmdb/rpmdb.c:1375 rpmdb/rpmdb.c:2322
+#: rpmdb/rpmdb.c:2438 rpmdb/rpmdb.c:3167
 #, fuzzy, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "No consegui abrir: %s\n"
 
-#: rpmdb/rpmdb.c:1567
+#: rpmdb/rpmdb.c:1569
 msgid "miFreeHeader: skipping"
 msgstr ""
 
 # , c-format
-#: rpmdb/rpmdb.c:1577
+#: rpmdb/rpmdb.c:1579
 #, fuzzy, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: rpmdb/rpmdb.c:2209
+#: rpmdb/rpmdb.c:2212
 msgid "rpmdbNextIterator: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2242
 #, c-format
 msgid "rpmdb: damaged header #%u retrieved -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2520
+#: rpmdb/rpmdb.c:2526
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "no foi passado pacote para desinstalao"
 
 # , c-format
-#: rpmdb/rpmdb.c:2583
+#: rpmdb/rpmdb.c:2589
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "No consegui abrir: %s\n"
 
-#: rpmdb/rpmdb.c:2698
+#: rpmdb/rpmdb.c:2704
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
 # , c-format
-#: rpmdb/rpmdb.c:2702
+#: rpmdb/rpmdb.c:2708
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: rpmdb/rpmdb.c:2730
+#: rpmdb/rpmdb.c:2736
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: rpmdb/rpmdb.c:2751
+#: rpmdb/rpmdb.c:2757
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: rpmdb/rpmdb.c:2761
+#: rpmdb/rpmdb.c:2767
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: rpmdb/rpmdb.c:2910
+#: rpmdb/rpmdb.c:2916
 #, fuzzy, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "no foi passado pacote para instalao"
 
-#: rpmdb/rpmdb.c:2964
+#: rpmdb/rpmdb.c:2970
 msgid "rpmdbAdd: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3136
+#: rpmdb/rpmdb.c:3142
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
 # , c-format
-#: rpmdb/rpmdb.c:3140
+#: rpmdb/rpmdb.c:3146
 #, fuzzy, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: rpmdb/rpmdb.c:3180
+#: rpmdb/rpmdb.c:3186
 #, fuzzy, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: rpmdb/rpmdb.c:3581
+#: rpmdb/rpmdb.c:3587
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3619
+#: rpmdb/rpmdb.c:3625
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3651
+#: rpmdb/rpmdb.c:3657
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
 
-#: rpmdb/rpmdb.c:3655
+#: rpmdb/rpmdb.c:3661
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
 # , c-format
-#: rpmdb/rpmdb.c:3661
+#: rpmdb/rpmdb.c:3667
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: rpmdb/rpmdb.c:3663
+#: rpmdb/rpmdb.c:3669
 #, fuzzy, c-format
 msgid "creating directory %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: rpmdb/rpmdb.c:3670
+#: rpmdb/rpmdb.c:3676
 #, fuzzy, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
 
-#: rpmdb/rpmdb.c:3683
+#: rpmdb/rpmdb.c:3689
 #, fuzzy, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
 
-#: rpmdb/rpmdb.c:3712
+#: rpmdb/rpmdb.c:3718
 #, c-format
 msgid "header #%u in the database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3752
+#: rpmdb/rpmdb.c:3758
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3766
+#: rpmdb/rpmdb.c:3772
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3774
+#: rpmdb/rpmdb.c:3780
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3776
+#: rpmdb/rpmdb.c:3782
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
@@ -3786,13 +3821,13 @@ msgstr ""
 # "Content-Type: text/plain; charset=ISO-8859-1\n"
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
-#: rpmdb/rpmdb.c:3786
+#: rpmdb/rpmdb.c:3792
 #, fuzzy, c-format
 msgid "removing directory %s\n"
 msgstr "RPM verso %s\n"
 
 # , c-format
-#: rpmdb/rpmdb.c:3788
+#: rpmdb/rpmdb.c:3794
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "No consegui abrir: %s\n"
@@ -3848,44 +3883,44 @@ msgstr ""
 msgid "Macro %%%s (%s) was not used below level %d\n"
 msgstr ""
 
-#: rpmio/macro.c:982
+#: rpmio/macro.c:984
 #, c-format
 msgid "Unknown option %c in %s(%s)\n"
 msgstr ""
 
-#: rpmio/macro.c:1182
+#: rpmio/macro.c:1184
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)\n"
 msgstr ""
 
 # , c-format
-#: rpmio/macro.c:1252 rpmio/macro.c:1269
+#: rpmio/macro.c:1255 rpmio/macro.c:1272
 #, fuzzy, c-format
 msgid "Unterminated %c: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: rpmio/macro.c:1310
+#: rpmio/macro.c:1313
 #, c-format
 msgid "A %% is followed by an unparseable macro\n"
 msgstr ""
 
-#: rpmio/macro.c:1439
+#: rpmio/macro.c:1442
 #, fuzzy, c-format
 msgid "Macro %%%.*s not found, skipping\n"
 msgstr "no foi passado pacote para desinstalao"
 
-#: rpmio/macro.c:1510
+#: rpmio/macro.c:1513
 msgid "Target buffer overflow\n"
 msgstr ""
 
 # , c-format
 #. XXX Fstrerror
-#: rpmio/macro.c:1705 rpmio/macro.c:1711
+#: rpmio/macro.c:1708 rpmio/macro.c:1714
 #, fuzzy, c-format
 msgid "File %s: %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
 
-#: rpmio/macro.c:1714
+#: rpmio/macro.c:1717
 #, c-format
 msgid "File %s is smaller than %u bytes\n"
 msgstr ""
index 9b22ac5..30ee5d7 100644 (file)
--- a/po/ro.po
+++ b/po/ro.po
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:11-0500\n"
+"POT-Creation-Date: 2003-12-30 08:11-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"
@@ -19,44 +19,44 @@ msgstr ""
 msgid "Unable to open spec file %s: %s\n"
 msgstr ""
 
-#: build.c:152 build.c:164
+#: build.c:150 build.c:162
 #, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr ""
 
 #. Give up
-#: build.c:171
+#: build.c:169
 #, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr ""
 
-#: build.c:199
+#: build.c:197
 #, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr ""
 
-#: build.c:239
+#: build.c:237
 #, c-format
 msgid "failed to stat %s: %m\n"
 msgstr ""
 
-#: build.c:244
+#: build.c:242
 #, c-format
 msgid "File %s is not a regular file.\n"
 msgstr ""
 
-#: build.c:253
+#: build.c:251
 #, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr ""
 
 #. parse up the build operators
-#: build.c:324
+#: build.c:322
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr ""
 
-#: build.c:339
+#: build.c:337
 #, c-format
 msgid "Building for target %s\n"
 msgstr ""
@@ -108,7 +108,7 @@ msgstr ""
 msgid "%s: %s\n"
 msgstr ""
 
-#: rpmqv.c:129 lib/poptALL.c:114
+#: rpmqv.c:129 lib/poptALL.c:119
 #, c-format
 msgid "RPM version %s\n"
 msgstr ""
@@ -404,166 +404,166 @@ msgstr ""
 msgid "syntax error in expression\n"
 msgstr ""
 
-#: build/files.c:278
+#: build/files.c:280
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr ""
 
-#: build/files.c:343 build/files.c:543 build/files.c:739
+#: build/files.c:345 build/files.c:545 build/files.c:741
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr ""
 
-#: build/files.c:354 build/files.c:673 build/files.c:750
+#: build/files.c:356 build/files.c:675 build/files.c:752
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr ""
 
-#: build/files.c:392 build/files.c:698
+#: build/files.c:394 build/files.c:700
 #, c-format
 msgid "Invalid %s token: %s\n"
 msgstr ""
 
-#: build/files.c:502
+#: build/files.c:504
 #, c-format
 msgid "Missing %s in %s %s\n"
 msgstr ""
 
-#: build/files.c:559
+#: build/files.c:561
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr ""
 
-#: build/files.c:597
+#: build/files.c:599
 #, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:607
+#: build/files.c:609
 #, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:619
+#: build/files.c:621
 #, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:777
+#: build/files.c:779
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr ""
 
 #. @innercontinue@
-#: build/files.c:788
+#: build/files.c:790
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr ""
 
-#: build/files.c:917
+#: build/files.c:919
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr ""
 
-#: build/files.c:925
+#: build/files.c:927
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr ""
 
 #. We already got a file -- error
-#: build/files.c:959
+#: build/files.c:961
 #, c-format
 msgid "Two files on one line: %s\n"
 msgstr ""
 
-#: build/files.c:976
+#: build/files.c:978
 #, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:989
+#: build/files.c:991
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr ""
 
-#: build/files.c:1141
+#: build/files.c:1149
 #, c-format
 msgid "File listed twice: %s\n"
 msgstr ""
 
-#: build/files.c:1280
+#: build/files.c:1288
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1520
+#: build/files.c:1535
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1544
+#: build/files.c:1559
 #, c-format
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1752
+#: build/files.c:1767
 #, c-format
 msgid "%s: public key read failed.\n"
 msgstr ""
 
-#: build/files.c:1756 lib/rpmchecksig.c:580
+#: build/files.c:1771 lib/rpmchecksig.c:580
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: build/files.c:1804
+#: build/files.c:1819
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1828
+#: build/files.c:1843
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1845 lib/rpminstall.c:347
+#: build/files.c:1860 lib/rpminstall.c:361
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1905
+#: build/files.c:1920
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1916 build/pack.c:156
+#: build/files.c:1931 build/pack.c:156
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2307
+#: build/files.c:2323
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
-#: build/files.c:2319 build/parsePrep.c:50
+#: build/files.c:2335 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:2363
+#: build/files.c:2379
 #, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr ""
 
-#: build/files.c:2386
+#: build/files.c:2402
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
 "%s"
 msgstr ""
 
-#: build/files.c:2414
+#: build/files.c:2430
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -702,7 +702,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:632 lib/psm.c:1427
+#: build/pack.c:632 lib/psm.c:1420
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -732,7 +732,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:725 lib/psm.c:1725
+#: build/pack.c:725 lib/psm.c:1689
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1212,18 +1212,18 @@ msgstr ""
 msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
 msgstr ""
 
-#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329
-#: lib/poptQV.c:338 lib/poptQV.c:377
+#: build/poptBT.c:229 lib/poptALL.c:240 lib/poptI.c:261 lib/poptQV.c:335
+#: lib/poptQV.c:344 lib/poptQV.c:383
 msgid "don't verify package digest(s)"
 msgstr ""
 
-#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332
-#: lib/poptQV.c:340 lib/poptQV.c:380
+#: build/poptBT.c:231 lib/poptALL.c:242 lib/poptI.c:263 lib/poptQV.c:338
+#: lib/poptQV.c:346 lib/poptQV.c:386
 msgid "don't verify database header(s) when retrieved"
 msgstr ""
 
-#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335
-#: lib/poptQV.c:342 lib/poptQV.c:382
+#: build/poptBT.c:233 lib/poptALL.c:248 lib/poptI.c:265 lib/poptQV.c:341
+#: lib/poptQV.c:348 lib/poptQV.c:388
 msgid "don't verify package signature(s)"
 msgstr ""
 
@@ -1293,31 +1293,31 @@ msgstr ""
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:232
+#: lib/cpio.c:233
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:233
+#: lib/cpio.c:234
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:234
+#: lib/cpio.c:235
 msgid "Missing hard link(s)"
 msgstr ""
 
-#: lib/cpio.c:235
+#: lib/cpio.c:236
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:236
+#: lib/cpio.c:237
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:237
+#: lib/cpio.c:238
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:250
+#: lib/cpio.c:251
 msgid " failed - "
 msgstr ""
 
@@ -1446,46 +1446,56 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:350
+#: lib/fsm.c:352
 msgid "========== Directories not explicitly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:352
+#: lib/fsm.c:354
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1293
+#: lib/fsm.c:768
+#, c-format
+msgid "user %s does not exist - using root\n"
+msgstr ""
+
+#: lib/fsm.c:776
+#, c-format
+msgid "group %s does not exist - using root\n"
+msgstr ""
+
+#: lib/fsm.c:1334
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1592
+#: lib/fsm.c:1633
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1719 lib/fsm.c:1855
+#: lib/fsm.c:1760 lib/fsm.c:1896
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1882
+#: lib/fsm.c:1923
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1888
+#: lib/fsm.c:1929
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1903
+#: lib/fsm.c:1944
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1925
+#: lib/fsm.c:1966
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -1601,108 +1611,108 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/poptALL.c:222
+#: lib/poptALL.c:227
 msgid "predefine MACRO with value EXPR"
 msgstr ""
 
-#: lib/poptALL.c:223 lib/poptALL.c:226
+#: lib/poptALL.c:228 lib/poptALL.c:231
 msgid "'MACRO EXPR'"
 msgstr ""
 
-#: lib/poptALL.c:225
+#: lib/poptALL.c:230
 msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: lib/poptALL.c:228
+#: lib/poptALL.c:233
 msgid "print macro expansion of EXPR"
 msgstr ""
 
-#: lib/poptALL.c:229
+#: lib/poptALL.c:234
 msgid "'EXPR'"
 msgstr ""
 
-#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254
+#: lib/poptALL.c:236 lib/poptALL.c:255 lib/poptALL.c:259
 msgid "read <FILE:...> instead of default file(s)"
 msgstr ""
 
-#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255
+#: lib/poptALL.c:237 lib/poptALL.c:256 lib/poptALL.c:260
 msgid "<FILE:...>"
 msgstr ""
 
-#: lib/poptALL.c:240 lib/poptALL.c:274
+#: lib/poptALL.c:245 lib/poptALL.c:279
 msgid "disable use of libio(3) API"
 msgstr ""
 
-#: lib/poptALL.c:246
+#: lib/poptALL.c:251
 msgid "send stdout to CMD"
 msgstr ""
 
-#: lib/poptALL.c:247
+#: lib/poptALL.c:252
 msgid "CMD"
 msgstr ""
 
-#: lib/poptALL.c:258
+#: lib/poptALL.c:263
 msgid "use ROOT as top level directory"
 msgstr ""
 
-#: lib/poptALL.c:259
+#: lib/poptALL.c:264
 msgid "ROOT"
 msgstr ""
 
-#: lib/poptALL.c:262
+#: lib/poptALL.c:267
 msgid "display known query tags"
 msgstr ""
 
-#: lib/poptALL.c:264
+#: lib/poptALL.c:269
 msgid "display final rpmrc and macro configuration"
 msgstr ""
 
-#: lib/poptALL.c:266
+#: lib/poptALL.c:271
 msgid "provide less detailed output"
 msgstr ""
 
-#: lib/poptALL.c:268
+#: lib/poptALL.c:273
 msgid "provide more detailed output"
 msgstr ""
 
-#: lib/poptALL.c:270
+#: lib/poptALL.c:275
 msgid "print the version of rpm being used"
 msgstr ""
 
-#: lib/poptALL.c:283
+#: lib/poptALL.c:288
 msgid "debug payload file state machine"
 msgstr ""
 
-#: lib/poptALL.c:285
+#: lib/poptALL.c:290
 msgid "use threads for file state machine"
 msgstr ""
 
-#: lib/poptALL.c:287
+#: lib/poptALL.c:292
 msgid "debug protocol data stream"
 msgstr ""
 
-#: lib/poptALL.c:292
+#: lib/poptALL.c:297
 msgid "debug option/argument processing"
 msgstr ""
 
-#: lib/poptALL.c:297
+#: lib/poptALL.c:302
 msgid "debug package state machine"
 msgstr ""
 
-#: lib/poptALL.c:299
+#: lib/poptALL.c:304
 msgid "use threads for package state machine"
 msgstr ""
 
-#: lib/poptALL.c:311
+#: lib/poptALL.c:316
 msgid "debug rpmio I/O"
 msgstr ""
 
-#: lib/poptALL.c:323
+#: lib/poptALL.c:330
 msgid "debug URL cache handling"
 msgstr ""
 
 #. @-nullpass@
-#: lib/poptALL.c:393
+#: lib/poptALL.c:400
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1731,211 +1741,215 @@ msgstr ""
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:151
+#: lib/poptI.c:155
 msgid "add suggested packages to transaction"
 msgstr ""
 
-#: lib/poptI.c:155
+#: lib/poptI.c:159
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: lib/poptI.c:159
+#: lib/poptI.c:163
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: lib/poptI.c:164 tools/rpmgraph.c:273
+#: lib/poptI.c:168 tools/rpmgraph.c:273
 msgid "use anaconda \"presentation order\""
 msgstr ""
 
-#: lib/poptI.c:169 lib/poptI.c:238
+#: lib/poptI.c:173 lib/poptI.c:245
 msgid "do not execute package scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:173
-msgid "relocate files in non-relocateable package"
+#: lib/poptI.c:177
+msgid "relocate files in non-relocatable package"
 msgstr ""
 
-#: lib/poptI.c:176
+#: lib/poptI.c:180
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 msgid "<package>+"
 msgstr ""
 
-#: lib/poptI.c:182 lib/poptI.c:219
+#: lib/poptI.c:186 lib/poptI.c:223
 msgid "do not install configuration files"
 msgstr ""
 
-#: lib/poptI.c:185 lib/poptI.c:224
+#: lib/poptI.c:189 lib/poptI.c:228
 msgid "do not install documentation"
 msgstr ""
 
-#: lib/poptI.c:187
+#: lib/poptI.c:191
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:188
+#: lib/poptI.c:192
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:191
+#: lib/poptI.c:195
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: lib/poptI.c:195
+#: lib/poptI.c:199
 msgid "upgrade package(s) if already installed"
 msgstr ""
 
-#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
+#: lib/poptI.c:200 lib/poptI.c:216 lib/poptI.c:312
 msgid "<packagefile>+"
 msgstr ""
 
-#: lib/poptI.c:198
+#: lib/poptI.c:202
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: lib/poptI.c:201
+#: lib/poptI.c:205
 msgid "don't verify package architecture"
 msgstr ""
 
-#: lib/poptI.c:204
+#: lib/poptI.c:208
 msgid "don't verify package operating system"
 msgstr ""
 
-#: lib/poptI.c:207
+#: lib/poptI.c:211
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:209
+#: lib/poptI.c:213
 msgid "install documentation"
 msgstr ""
 
-#: lib/poptI.c:212
+#: lib/poptI.c:216
 msgid "install package(s)"
 msgstr ""
 
-#: lib/poptI.c:215
+#: lib/poptI.c:219
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: lib/poptI.c:221
+#: lib/poptI.c:225
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:231 lib/poptQV.c:279 lib/poptQV.c:282
 msgid "don't verify MD5 digest of files"
 msgstr ""
 
-#: lib/poptI.c:230
+#: lib/poptI.c:233
+msgid "don't install file security contexts"
+msgstr ""
+
+#: lib/poptI.c:237
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: lib/poptI.c:235
+#: lib/poptI.c:242
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:242
+#: lib/poptI.c:249
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:245
+#: lib/poptI.c:252
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:248
+#: lib/poptI.c:255
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:251
+#: lib/poptI.c:258
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:261
+#: lib/poptI.c:268
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 
-#: lib/poptI.c:264
+#: lib/poptI.c:271
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:267
+#: lib/poptI.c:274
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:270
+#: lib/poptI.c:277
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:273
+#: lib/poptI.c:280
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:277
+#: lib/poptI.c:284
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 
-#: lib/poptI.c:281
+#: lib/poptI.c:288
 msgid "print percentages as package installs"
 msgstr ""
 
-#: lib/poptI.c:283
+#: lib/poptI.c:290
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: lib/poptI.c:284
+#: lib/poptI.c:291
 msgid "<dir>"
 msgstr ""
 
-#: lib/poptI.c:286
+#: lib/poptI.c:293
 msgid "relocate files from path <old> to <new>"
 msgstr ""
 
-#: lib/poptI.c:287
+#: lib/poptI.c:294
 msgid "<old>=<new>"
 msgstr ""
 
-#: lib/poptI.c:290
+#: lib/poptI.c:297
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:293
+#: lib/poptI.c:300
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: lib/poptI.c:296
+#: lib/poptI.c:303
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: lib/poptI.c:298
+#: lib/poptI.c:305
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:299
+#: lib/poptI.c:306
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:301
+#: lib/poptI.c:308
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
-#: lib/poptI.c:304
+#: lib/poptI.c:311
 msgid "upgrade package(s)"
 msgstr ""
 
@@ -2007,195 +2021,189 @@ msgstr ""
 msgid "query/verify the package(s) which provide a dependency"
 msgstr ""
 
-#: lib/poptQV.c:226
+#: lib/poptQV.c:230
 msgid "list all configuration files"
 msgstr ""
 
-#: lib/poptQV.c:228
+#: lib/poptQV.c:232
 msgid "list all documentation files"
 msgstr ""
 
-#: lib/poptQV.c:230
+#: lib/poptQV.c:234
 msgid "dump basic file information"
 msgstr ""
 
-#: lib/poptQV.c:234
+#: lib/poptQV.c:238
 msgid "list files in package"
 msgstr ""
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:243
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:243
+#: lib/poptQV.c:247
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
-#: lib/poptQV.c:246
+#: lib/poptQV.c:250
 #, c-format
 msgid "skip %%readme files"
 msgstr ""
 
-#: lib/poptQV.c:252
+#: lib/poptQV.c:256
 msgid "use the following query format"
 msgstr ""
 
-#: lib/poptQV.c:254
+#: lib/poptQV.c:258
 msgid "substitute i18n sections into spec file"
 msgstr ""
 
-#: lib/poptQV.c:256
+#: lib/poptQV.c:260
 msgid "display the states of the listed files"
 msgstr ""
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:286
 msgid "don't verify size of files"
 msgstr ""
 
-#: lib/poptQV.c:285
+#: lib/poptQV.c:289
 msgid "don't verify symlink path of files"
 msgstr ""
 
-#: lib/poptQV.c:288
+#: lib/poptQV.c:292
 msgid "don't verify owner of files"
 msgstr ""
 
-#: lib/poptQV.c:291
+#: lib/poptQV.c:295
 msgid "don't verify group of files"
 msgstr ""
 
-#: lib/poptQV.c:294
+#: lib/poptQV.c:298
 msgid "don't verify modification time of files"
 msgstr ""
 
-#: lib/poptQV.c:297 lib/poptQV.c:300
+#: lib/poptQV.c:301 lib/poptQV.c:304
 msgid "don't verify mode of files"
 msgstr ""
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:307
+msgid "don't verify file security contexts"
+msgstr ""
+
+#: lib/poptQV.c:309
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
+#: lib/poptQV.c:312 lib/poptQV.c:315 tools/rpmgraph.c:267
 msgid "don't verify package dependencies"
 msgstr ""
 
-#: lib/poptQV.c:314 lib/poptQV.c:318 lib/poptQV.c:321 lib/poptQV.c:324
+#: lib/poptQV.c:320 lib/poptQV.c:324 lib/poptQV.c:327 lib/poptQV.c:330
 msgid "don't execute verify script(s)"
 msgstr ""
 
-#: lib/poptQV.c:348
+#: lib/poptQV.c:354
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:351
+#: lib/poptQV.c:357
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:366
+#: lib/poptQV.c:372
 msgid "sign package(s) (identical to --resign)"
 msgstr ""
 
-#: lib/poptQV.c:368
+#: lib/poptQV.c:374
 msgid "verify package signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:370
+#: lib/poptQV.c:376
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:372
+#: lib/poptQV.c:378
 msgid "sign package(s) (identical to --addsign)"
 msgstr ""
 
-#: lib/poptQV.c:374
+#: lib/poptQV.c:380
 msgid "generate signature"
 msgstr ""
 
-#: lib/psm.c:269
+#: lib/psm.c:268
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:394
+#: lib/psm.c:386
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:480
+#: lib/psm.c:472
 #, c-format
 msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
 msgstr ""
 
-#: lib/psm.c:562
+#: lib/psm.c:554
 #, c-format
 msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
 msgstr ""
 
-#: lib/psm.c:570
+#: lib/psm.c:562
 #, c-format
 msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
 msgstr ""
 
-#: lib/psm.c:735
+#: lib/psm.c:730
 #, c-format
 msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
 msgstr ""
 
-#: lib/psm.c:756
+#: lib/psm.c:751
 #, c-format
 msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
 msgstr ""
 
-#: lib/psm.c:762
+#: lib/psm.c:757
 #, c-format
 msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1191
+#: lib/psm.c:1188
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1330
+#: lib/psm.c:1323
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1439
+#: lib/psm.c:1432
 msgid "Unable to reload signature header\n"
 msgstr ""
 
-#: lib/psm.c:1485
-#, c-format
-msgid "user %s does not exist - using root\n"
-msgstr ""
-
-#: lib/psm.c:1494
-#, c-format
-msgid "group %s does not exist - using root\n"
-msgstr ""
-
-#: lib/psm.c:1546
+#: lib/psm.c:1510
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1547
+#: lib/psm.c:1511
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1733
+#: lib/psm.c:1697
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1736
+#: lib/psm.c:1700
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:118 lib/rpmts.c:565
+#: lib/query.c:118 lib/rpmts.c:566
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
@@ -2242,8 +2250,8 @@ msgstr ""
 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:462
-#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576
+#: 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
 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157
 #, c-format
 msgid "open of %s failed: %s\n"
@@ -2258,7 +2266,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:488 lib/rpminstall.c:608
+#: lib/query.c:488 lib/rpminstall.c:622
 #, c-format
 msgid "%s: not an rpm package (or package manifest): %s\n"
 msgstr ""
@@ -2327,16 +2335,16 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:766 lib/rpminstall.c:778
+#: lib/query.c:766 lib/rpminstall.c:792
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:692
+#: lib/rpmal.c:694
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:772
 msgid "(added provide)"
 msgstr ""
 
@@ -2459,36 +2467,36 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:546
+#: lib/rpmfi.c:561
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/rpmfi.c:784
+#: lib/rpmfi.c:799
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:788
+#: lib/rpmfi.c:803
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:791
+#: lib/rpmfi.c:806
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:919
+#: lib/rpmfi.c:934
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:929
+#: lib/rpmfi.c:944
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:1021
+#: lib/rpmfi.c:1036
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
@@ -2517,87 +2525,87 @@ msgstr ""
 msgid "Upgrading packages..."
 msgstr ""
 
-#: lib/rpminstall.c:394
+#: lib/rpminstall.c:408
 #, c-format
 msgid "Adding goal: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:409
+#: lib/rpminstall.c:423
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:436
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:426
+#: lib/rpminstall.c:440
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:481 lib/rpminstall.c:872 tools/rpmgraph.c:140
+#: lib/rpminstall.c:495 lib/rpminstall.c:886 tools/rpmgraph.c:140
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:523
+#: lib/rpminstall.c:537
 #, c-format
-msgid "package %s is not relocateable\n"
+msgid "package %s is not relocatable\n"
 msgstr ""
 
-#: lib/rpminstall.c:573
+#: lib/rpminstall.c:587
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:593
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:637
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:637 lib/rpminstall.c:810 lib/rpminstall.c:1239
+#: lib/rpminstall.c:651 lib/rpminstall.c:824 lib/rpminstall.c:1253
 #: tools/rpmgraph.c:195
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:644 tools/rpmgraph.c:201
+#: lib/rpminstall.c:658 tools/rpmgraph.c:201
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:688
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:712
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:787
+#: lib/rpminstall.c:801
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:856
+#: lib/rpminstall.c:870
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:862
+#: lib/rpminstall.c:876
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1233
+#: lib/rpminstall.c:1247
 #, c-format
 msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
 msgstr ""
@@ -2665,7 +2673,7 @@ msgstr ""
 
 #: lib/rpmps.c:223
 #, c-format
-msgid "path %s in package %s is not relocateable"
+msgid "path %s in package %s is not relocatable"
 msgstr ""
 
 #: lib/rpmps.c:228
@@ -2812,50 +2820,75 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
 
-#: lib/rpmts.c:162
+#: lib/rpmsx.c:343
+#, c-format
+msgid "%s:  no newline on line number %d (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:360
+#, c-format
+msgid "%s:  line number %d is missing fields (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:391
+#, 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
+#, c-format
+msgid "%s:  invalid type specifier %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmsx.c:434
+#, c-format
+msgid "%s:  invalid context %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmts.c:163
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/rpmts.c:252
+#: lib/rpmts.c:253
 #, c-format
 msgid "extra '(' in package label: %s\n"
 msgstr ""
 
-#: lib/rpmts.c:270
+#: lib/rpmts.c:271
 #, c-format
 msgid "missing '(' in package label: %s\n"
 msgstr ""
 
-#: lib/rpmts.c:278
+#: lib/rpmts.c:279
 #, c-format
 msgid "missing ')' in package label: %s\n"
 msgstr ""
 
-#: lib/rpmts.c:455
+#: lib/rpmts.c:456
 #, c-format
 msgid "cannot open Solve database in %s\n"
 msgstr ""
 
-#: lib/rpmts.c:597
+#: lib/rpmts.c:598
 #, c-format
 msgid "Adding: %s\n"
 msgstr ""
 
-#: lib/rpmts.c:609
+#: lib/rpmts.c:610
 #, c-format
 msgid "Suggesting: %s\n"
 msgstr ""
 
-#: lib/rpmts.c:1077
+#: lib/rpmts.c:1097
 msgid "mounted filesystems:\n"
 msgstr ""
 
-#: lib/rpmts.c:1079
+#: lib/rpmts.c:1099
 msgid "    i    dev bsize       bavail       iavail mount point\n"
 msgstr ""
 
-#: lib/rpmts.c:1135
+#: lib/rpmts.c:1155
 #, c-format
 msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
 msgstr ""
@@ -3058,12 +3091,12 @@ msgstr ""
 msgid "computing file dispositions\n"
 msgstr ""
 
-#: lib/verify.c:288
+#: lib/verify.c:319
 #, c-format
 msgid "missing  %c %s"
 msgstr ""
 
-#: lib/verify.c:397
+#: lib/verify.c:433
 #, c-format
 msgid "Unsatisfied dependencies for %s: "
 msgstr ""
@@ -3261,161 +3294,161 @@ msgstr ""
 msgid "cannot open %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:915
+#: rpmdb/rpmdb.c:917
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1193 rpmdb/rpmdb.c:1322 rpmdb/rpmdb.c:1373 rpmdb/rpmdb.c:2316
-#: rpmdb/rpmdb.c:2432 rpmdb/rpmdb.c:3161
+#: rpmdb/rpmdb.c:1195 rpmdb/rpmdb.c:1324 rpmdb/rpmdb.c:1375 rpmdb/rpmdb.c:2322
+#: rpmdb/rpmdb.c:2438 rpmdb/rpmdb.c:3167
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1567
+#: rpmdb/rpmdb.c:1569
 msgid "miFreeHeader: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1577
+#: rpmdb/rpmdb.c:1579
 #, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2209
+#: rpmdb/rpmdb.c:2212
 msgid "rpmdbNextIterator: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2242
 #, c-format
 msgid "rpmdb: damaged header #%u retrieved -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2520
+#: rpmdb/rpmdb.c:2526
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2583
+#: rpmdb/rpmdb.c:2589
 #, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2698
+#: rpmdb/rpmdb.c:2704
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2702
+#: rpmdb/rpmdb.c:2708
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2730
+#: rpmdb/rpmdb.c:2736
 #, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2751
+#: rpmdb/rpmdb.c:2757
 #, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2761
+#: rpmdb/rpmdb.c:2767
 #, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2910
+#: rpmdb/rpmdb.c:2916
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2964
+#: rpmdb/rpmdb.c:2970
 msgid "rpmdbAdd: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3136
+#: rpmdb/rpmdb.c:3142
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3140
+#: rpmdb/rpmdb.c:3146
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3180
+#: rpmdb/rpmdb.c:3186
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3581
+#: rpmdb/rpmdb.c:3587
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3619
+#: rpmdb/rpmdb.c:3625
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3651
+#: rpmdb/rpmdb.c:3657
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3655
+#: rpmdb/rpmdb.c:3661
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3661
+#: rpmdb/rpmdb.c:3667
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3663
+#: rpmdb/rpmdb.c:3669
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3670
+#: rpmdb/rpmdb.c:3676
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3683
+#: rpmdb/rpmdb.c:3689
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3712
+#: rpmdb/rpmdb.c:3718
 #, c-format
 msgid "header #%u in the database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3752
+#: rpmdb/rpmdb.c:3758
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3766
+#: rpmdb/rpmdb.c:3772
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3774
+#: rpmdb/rpmdb.c:3780
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3776
+#: rpmdb/rpmdb.c:3782
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3786
+#: rpmdb/rpmdb.c:3792
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3788
+#: rpmdb/rpmdb.c:3794
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
@@ -3471,42 +3504,42 @@ msgstr ""
 msgid "Macro %%%s (%s) was not used below level %d\n"
 msgstr ""
 
-#: rpmio/macro.c:982
+#: rpmio/macro.c:984
 #, c-format
 msgid "Unknown option %c in %s(%s)\n"
 msgstr ""
 
-#: rpmio/macro.c:1182
+#: rpmio/macro.c:1184
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)\n"
 msgstr ""
 
-#: rpmio/macro.c:1252 rpmio/macro.c:1269
+#: rpmio/macro.c:1255 rpmio/macro.c:1272
 #, c-format
 msgid "Unterminated %c: %s\n"
 msgstr ""
 
-#: rpmio/macro.c:1310
+#: rpmio/macro.c:1313
 #, c-format
 msgid "A %% is followed by an unparseable macro\n"
 msgstr ""
 
-#: rpmio/macro.c:1439
+#: rpmio/macro.c:1442
 #, c-format
 msgid "Macro %%%.*s not found, skipping\n"
 msgstr ""
 
-#: rpmio/macro.c:1510
+#: rpmio/macro.c:1513
 msgid "Target buffer overflow\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1705 rpmio/macro.c:1711
+#: rpmio/macro.c:1708 rpmio/macro.c:1714
 #, c-format
 msgid "File %s: %s\n"
 msgstr ""
 
-#: rpmio/macro.c:1714
+#: rpmio/macro.c:1717
 #, c-format
 msgid "File %s is smaller than %u bytes\n"
 msgstr ""
index 0c67248..113e0a8 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:11-0500\n"
+"POT-Creation-Date: 2003-12-30 08:11-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"
@@ -25,44 +25,44 @@ msgstr ""
 msgid "Unable to open spec file %s: %s\n"
 msgstr ""
 
-#: build.c:152 build.c:164
+#: build.c:150 build.c:162
 #, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr ""
 
 #. Give up
-#: build.c:171
+#: build.c:169
 #, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr ""
 
-#: build.c:199
+#: build.c:197
 #, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr ""
 
-#: build.c:239
+#: build.c:237
 #, c-format
 msgid "failed to stat %s: %m\n"
 msgstr ""
 
-#: build.c:244
+#: build.c:242
 #, c-format
 msgid "File %s is not a regular file.\n"
 msgstr ""
 
-#: build.c:253
+#: build.c:251
 #, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr ""
 
 #. parse up the build operators
-#: build.c:324
+#: build.c:322
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr ""
 
-#: build.c:339
+#: build.c:337
 #, c-format
 msgid "Building for target %s\n"
 msgstr ""
@@ -114,7 +114,7 @@ msgstr ""
 msgid "%s: %s\n"
 msgstr ""
 
-#: rpmqv.c:129 lib/poptALL.c:114
+#: rpmqv.c:129 lib/poptALL.c:119
 #, c-format
 msgid "RPM version %s\n"
 msgstr ""
@@ -410,166 +410,166 @@ msgstr ""
 msgid "syntax error in expression\n"
 msgstr ""
 
-#: build/files.c:278
+#: build/files.c:280
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr ""
 
-#: build/files.c:343 build/files.c:543 build/files.c:739
+#: build/files.c:345 build/files.c:545 build/files.c:741
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr ""
 
-#: build/files.c:354 build/files.c:673 build/files.c:750
+#: build/files.c:356 build/files.c:675 build/files.c:752
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr ""
 
-#: build/files.c:392 build/files.c:698
+#: build/files.c:394 build/files.c:700
 #, c-format
 msgid "Invalid %s token: %s\n"
 msgstr ""
 
-#: build/files.c:502
+#: build/files.c:504
 #, c-format
 msgid "Missing %s in %s %s\n"
 msgstr ""
 
-#: build/files.c:559
+#: build/files.c:561
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr ""
 
-#: build/files.c:597
+#: build/files.c:599
 #, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:607
+#: build/files.c:609
 #, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:619
+#: build/files.c:621
 #, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr ""
 
-#: build/files.c:777
+#: build/files.c:779
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr ""
 
 #. @innercontinue@
-#: build/files.c:788
+#: build/files.c:790
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr ""
 
-#: build/files.c:917
+#: build/files.c:919
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr ""
 
-#: build/files.c:925
+#: build/files.c:927
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr ""
 
 #. We already got a file -- error
-#: build/files.c:959
+#: build/files.c:961
 #, c-format
 msgid "Two files on one line: %s\n"
 msgstr ""
 
-#: build/files.c:976
+#: build/files.c:978
 #, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:989
+#: build/files.c:991
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr ""
 
-#: build/files.c:1141
+#: build/files.c:1149
 #, c-format
 msgid "File listed twice: %s\n"
 msgstr ""
 
-#: build/files.c:1280
+#: build/files.c:1288
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1520
+#: build/files.c:1535
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr ""
 
-#: build/files.c:1544
+#: build/files.c:1559
 #, c-format
 msgid "File not found: %s\n"
 msgstr ""
 
-#: build/files.c:1752
+#: build/files.c:1767
 #, c-format
 msgid "%s: public key read failed.\n"
 msgstr ""
 
-#: build/files.c:1756 lib/rpmchecksig.c:580
+#: build/files.c:1771 lib/rpmchecksig.c:580
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: build/files.c:1804
+#: build/files.c:1819
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr ""
 
-#: build/files.c:1828
+#: build/files.c:1843
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr ""
 
-#: build/files.c:1845 lib/rpminstall.c:347
+#: build/files.c:1860 lib/rpminstall.c:361
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr ""
 
-#: build/files.c:1905
+#: build/files.c:1920
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr ""
 
-#: build/files.c:1916 build/pack.c:156
+#: build/files.c:1931 build/pack.c:156
 #, c-format
 msgid "line: %s\n"
 msgstr ""
 
-#: build/files.c:2307
+#: build/files.c:2323
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr ""
 
-#: build/files.c:2319 build/parsePrep.c:50
+#: build/files.c:2335 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:2363
+#: build/files.c:2379
 #, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr ""
 
-#: build/files.c:2386
+#: build/files.c:2402
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
 "%s"
 msgstr ""
 
-#: build/files.c:2414
+#: build/files.c:2430
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -708,7 +708,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:632 lib/psm.c:1427
+#: build/pack.c:632 lib/psm.c:1420
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -738,7 +738,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:725 lib/psm.c:1725
+#: build/pack.c:725 lib/psm.c:1689
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1218,18 +1218,18 @@ msgstr ""
 msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
 msgstr ""
 
-#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329
-#: lib/poptQV.c:338 lib/poptQV.c:377
+#: build/poptBT.c:229 lib/poptALL.c:240 lib/poptI.c:261 lib/poptQV.c:335
+#: lib/poptQV.c:344 lib/poptQV.c:383
 msgid "don't verify package digest(s)"
 msgstr ""
 
-#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332
-#: lib/poptQV.c:340 lib/poptQV.c:380
+#: build/poptBT.c:231 lib/poptALL.c:242 lib/poptI.c:263 lib/poptQV.c:338
+#: lib/poptQV.c:346 lib/poptQV.c:386
 msgid "don't verify database header(s) when retrieved"
 msgstr ""
 
-#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335
-#: lib/poptQV.c:342 lib/poptQV.c:382
+#: build/poptBT.c:233 lib/poptALL.c:248 lib/poptI.c:265 lib/poptQV.c:341
+#: lib/poptQV.c:348 lib/poptQV.c:388
 msgid "don't verify package signature(s)"
 msgstr ""
 
@@ -1299,31 +1299,31 @@ msgstr ""
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:232
+#: lib/cpio.c:233
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:233
+#: lib/cpio.c:234
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:234
+#: lib/cpio.c:235
 msgid "Missing hard link(s)"
 msgstr ""
 
-#: lib/cpio.c:235
+#: lib/cpio.c:236
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:236
+#: lib/cpio.c:237
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:237
+#: lib/cpio.c:238
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:250
+#: lib/cpio.c:251
 msgid " failed - "
 msgstr ""
 
@@ -1452,46 +1452,56 @@ msgstr ""
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:350
+#: lib/fsm.c:352
 msgid "========== Directories not explicitly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:352
+#: lib/fsm.c:354
 #, c-format
 msgid "%10d %s\n"
 msgstr ""
 
-#: lib/fsm.c:1293
+#: lib/fsm.c:768
+#, c-format
+msgid "user %s does not exist - using root\n"
+msgstr ""
+
+#: lib/fsm.c:776
+#, c-format
+msgid "group %s does not exist - using root\n"
+msgstr ""
+
+#: lib/fsm.c:1334
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1592
+#: lib/fsm.c:1633
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1719 lib/fsm.c:1855
+#: lib/fsm.c:1760 lib/fsm.c:1896
 #, c-format
 msgid "%s saved as %s\n"
 msgstr ""
 
-#: lib/fsm.c:1882
+#: lib/fsm.c:1923
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr ""
 
-#: lib/fsm.c:1888
+#: lib/fsm.c:1929
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1903
+#: lib/fsm.c:1944
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr ""
 
-#: lib/fsm.c:1925
+#: lib/fsm.c:1966
 #, c-format
 msgid "%s created as %s\n"
 msgstr ""
@@ -1607,108 +1617,108 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/poptALL.c:222
+#: lib/poptALL.c:227
 msgid "predefine MACRO with value EXPR"
 msgstr ""
 
-#: lib/poptALL.c:223 lib/poptALL.c:226
+#: lib/poptALL.c:228 lib/poptALL.c:231
 msgid "'MACRO EXPR'"
 msgstr ""
 
-#: lib/poptALL.c:225
+#: lib/poptALL.c:230
 msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: lib/poptALL.c:228
+#: lib/poptALL.c:233
 msgid "print macro expansion of EXPR"
 msgstr ""
 
-#: lib/poptALL.c:229
+#: lib/poptALL.c:234
 msgid "'EXPR'"
 msgstr ""
 
-#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254
+#: lib/poptALL.c:236 lib/poptALL.c:255 lib/poptALL.c:259
 msgid "read <FILE:...> instead of default file(s)"
 msgstr ""
 
-#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255
+#: lib/poptALL.c:237 lib/poptALL.c:256 lib/poptALL.c:260
 msgid "<FILE:...>"
 msgstr ""
 
-#: lib/poptALL.c:240 lib/poptALL.c:274
+#: lib/poptALL.c:245 lib/poptALL.c:279
 msgid "disable use of libio(3) API"
 msgstr ""
 
-#: lib/poptALL.c:246
+#: lib/poptALL.c:251
 msgid "send stdout to CMD"
 msgstr ""
 
-#: lib/poptALL.c:247
+#: lib/poptALL.c:252
 msgid "CMD"
 msgstr ""
 
-#: lib/poptALL.c:258
+#: lib/poptALL.c:263
 msgid "use ROOT as top level directory"
 msgstr ""
 
-#: lib/poptALL.c:259
+#: lib/poptALL.c:264
 msgid "ROOT"
 msgstr ""
 
-#: lib/poptALL.c:262
+#: lib/poptALL.c:267
 msgid "display known query tags"
 msgstr ""
 
-#: lib/poptALL.c:264
+#: lib/poptALL.c:269
 msgid "display final rpmrc and macro configuration"
 msgstr ""
 
-#: lib/poptALL.c:266
+#: lib/poptALL.c:271
 msgid "provide less detailed output"
 msgstr ""
 
-#: lib/poptALL.c:268
+#: lib/poptALL.c:273
 msgid "provide more detailed output"
 msgstr ""
 
-#: lib/poptALL.c:270
+#: lib/poptALL.c:275
 msgid "print the version of rpm being used"
 msgstr ""
 
-#: lib/poptALL.c:283
+#: lib/poptALL.c:288
 msgid "debug payload file state machine"
 msgstr ""
 
-#: lib/poptALL.c:285
+#: lib/poptALL.c:290
 msgid "use threads for file state machine"
 msgstr ""
 
-#: lib/poptALL.c:287
+#: lib/poptALL.c:292
 msgid "debug protocol data stream"
 msgstr ""
 
-#: lib/poptALL.c:292
+#: lib/poptALL.c:297
 msgid "debug option/argument processing"
 msgstr ""
 
-#: lib/poptALL.c:297
+#: lib/poptALL.c:302
 msgid "debug package state machine"
 msgstr ""
 
-#: lib/poptALL.c:299
+#: lib/poptALL.c:304
 msgid "use threads for package state machine"
 msgstr ""
 
-#: lib/poptALL.c:311
+#: lib/poptALL.c:316
 msgid "debug rpmio I/O"
 msgstr ""
 
-#: lib/poptALL.c:323
+#: lib/poptALL.c:330
 msgid "debug URL cache handling"
 msgstr ""
 
 #. @-nullpass@
-#: lib/poptALL.c:393
+#: lib/poptALL.c:400
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1737,211 +1747,215 @@ msgstr ""
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:151
+#: lib/poptI.c:155
 msgid "add suggested packages to transaction"
 msgstr ""
 
-#: lib/poptI.c:155
+#: lib/poptI.c:159
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: lib/poptI.c:159
+#: lib/poptI.c:163
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: lib/poptI.c:164 tools/rpmgraph.c:273
+#: lib/poptI.c:168 tools/rpmgraph.c:273
 msgid "use anaconda \"presentation order\""
 msgstr ""
 
-#: lib/poptI.c:169 lib/poptI.c:238
+#: lib/poptI.c:173 lib/poptI.c:245
 msgid "do not execute package scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:173
-msgid "relocate files in non-relocateable package"
+#: lib/poptI.c:177
+msgid "relocate files in non-relocatable package"
 msgstr ""
 
-#: lib/poptI.c:176
+#: lib/poptI.c:180
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 msgid "<package>+"
 msgstr ""
 
-#: lib/poptI.c:182 lib/poptI.c:219
+#: lib/poptI.c:186 lib/poptI.c:223
 msgid "do not install configuration files"
 msgstr ""
 
-#: lib/poptI.c:185 lib/poptI.c:224
+#: lib/poptI.c:189 lib/poptI.c:228
 msgid "do not install documentation"
 msgstr ""
 
-#: lib/poptI.c:187
+#: lib/poptI.c:191
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:188
+#: lib/poptI.c:192
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:191
+#: lib/poptI.c:195
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: lib/poptI.c:195
+#: lib/poptI.c:199
 msgid "upgrade package(s) if already installed"
 msgstr ""
 
-#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
+#: lib/poptI.c:200 lib/poptI.c:216 lib/poptI.c:312
 msgid "<packagefile>+"
 msgstr ""
 
-#: lib/poptI.c:198
+#: lib/poptI.c:202
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: lib/poptI.c:201
+#: lib/poptI.c:205
 msgid "don't verify package architecture"
 msgstr ""
 
-#: lib/poptI.c:204
+#: lib/poptI.c:208
 msgid "don't verify package operating system"
 msgstr ""
 
-#: lib/poptI.c:207
+#: lib/poptI.c:211
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:209
+#: lib/poptI.c:213
 msgid "install documentation"
 msgstr ""
 
-#: lib/poptI.c:212
+#: lib/poptI.c:216
 msgid "install package(s)"
 msgstr ""
 
-#: lib/poptI.c:215
+#: lib/poptI.c:219
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: lib/poptI.c:221
+#: lib/poptI.c:225
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:231 lib/poptQV.c:279 lib/poptQV.c:282
 msgid "don't verify MD5 digest of files"
 msgstr ""
 
-#: lib/poptI.c:230
+#: lib/poptI.c:233
+msgid "don't install file security contexts"
+msgstr ""
+
+#: lib/poptI.c:237
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: lib/poptI.c:235
+#: lib/poptI.c:242
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:242
+#: lib/poptI.c:249
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:245
+#: lib/poptI.c:252
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:248
+#: lib/poptI.c:255
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:251
+#: lib/poptI.c:258
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:261
+#: lib/poptI.c:268
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 
-#: lib/poptI.c:264
+#: lib/poptI.c:271
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:267
+#: lib/poptI.c:274
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:270
+#: lib/poptI.c:277
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:273
+#: lib/poptI.c:280
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:277
+#: lib/poptI.c:284
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 
-#: lib/poptI.c:281
+#: lib/poptI.c:288
 msgid "print percentages as package installs"
 msgstr ""
 
-#: lib/poptI.c:283
+#: lib/poptI.c:290
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: lib/poptI.c:284
+#: lib/poptI.c:291
 msgid "<dir>"
 msgstr ""
 
-#: lib/poptI.c:286
+#: lib/poptI.c:293
 msgid "relocate files from path <old> to <new>"
 msgstr ""
 
-#: lib/poptI.c:287
+#: lib/poptI.c:294
 msgid "<old>=<new>"
 msgstr ""
 
-#: lib/poptI.c:290
+#: lib/poptI.c:297
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:293
+#: lib/poptI.c:300
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: lib/poptI.c:296
+#: lib/poptI.c:303
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: lib/poptI.c:298
+#: lib/poptI.c:305
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:299
+#: lib/poptI.c:306
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:301
+#: lib/poptI.c:308
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
-#: lib/poptI.c:304
+#: lib/poptI.c:311
 msgid "upgrade package(s)"
 msgstr ""
 
@@ -2013,195 +2027,189 @@ msgstr ""
 msgid "query/verify the package(s) which provide a dependency"
 msgstr ""
 
-#: lib/poptQV.c:226
+#: lib/poptQV.c:230
 msgid "list all configuration files"
 msgstr ""
 
-#: lib/poptQV.c:228
+#: lib/poptQV.c:232
 msgid "list all documentation files"
 msgstr ""
 
-#: lib/poptQV.c:230
+#: lib/poptQV.c:234
 msgid "dump basic file information"
 msgstr ""
 
-#: lib/poptQV.c:234
+#: lib/poptQV.c:238
 msgid "list files in package"
 msgstr ""
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:243
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:243
+#: lib/poptQV.c:247
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
-#: lib/poptQV.c:246
+#: lib/poptQV.c:250
 #, c-format
 msgid "skip %%readme files"
 msgstr ""
 
-#: lib/poptQV.c:252
+#: lib/poptQV.c:256
 msgid "use the following query format"
 msgstr ""
 
-#: lib/poptQV.c:254
+#: lib/poptQV.c:258
 msgid "substitute i18n sections into spec file"
 msgstr ""
 
-#: lib/poptQV.c:256
+#: lib/poptQV.c:260
 msgid "display the states of the listed files"
 msgstr ""
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:286
 msgid "don't verify size of files"
 msgstr ""
 
-#: lib/poptQV.c:285
+#: lib/poptQV.c:289
 msgid "don't verify symlink path of files"
 msgstr ""
 
-#: lib/poptQV.c:288
+#: lib/poptQV.c:292
 msgid "don't verify owner of files"
 msgstr ""
 
-#: lib/poptQV.c:291
+#: lib/poptQV.c:295
 msgid "don't verify group of files"
 msgstr ""
 
-#: lib/poptQV.c:294
+#: lib/poptQV.c:298
 msgid "don't verify modification time of files"
 msgstr ""
 
-#: lib/poptQV.c:297 lib/poptQV.c:300
+#: lib/poptQV.c:301 lib/poptQV.c:304
 msgid "don't verify mode of files"
 msgstr ""
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:307
+msgid "don't verify file security contexts"
+msgstr ""
+
+#: lib/poptQV.c:309
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
+#: lib/poptQV.c:312 lib/poptQV.c:315 tools/rpmgraph.c:267
 msgid "don't verify package dependencies"
 msgstr ""
 
-#: lib/poptQV.c:314 lib/poptQV.c:318 lib/poptQV.c:321 lib/poptQV.c:324
+#: lib/poptQV.c:320 lib/poptQV.c:324 lib/poptQV.c:327 lib/poptQV.c:330
 msgid "don't execute verify script(s)"
 msgstr ""
 
-#: lib/poptQV.c:348
+#: lib/poptQV.c:354
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:351
+#: lib/poptQV.c:357
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:366
+#: lib/poptQV.c:372
 msgid "sign package(s) (identical to --resign)"
 msgstr ""
 
-#: lib/poptQV.c:368
+#: lib/poptQV.c:374
 msgid "verify package signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:370
+#: lib/poptQV.c:376
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:372
+#: lib/poptQV.c:378
 msgid "sign package(s) (identical to --addsign)"
 msgstr ""
 
-#: lib/poptQV.c:374
+#: lib/poptQV.c:380
 msgid "generate signature"
 msgstr ""
 
-#: lib/psm.c:269
+#: lib/psm.c:268
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:394
+#: lib/psm.c:386
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:480
+#: lib/psm.c:472
 #, c-format
 msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
 msgstr ""
 
-#: lib/psm.c:562
+#: lib/psm.c:554
 #, c-format
 msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
 msgstr ""
 
-#: lib/psm.c:570
+#: lib/psm.c:562
 #, c-format
 msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
 msgstr ""
 
-#: lib/psm.c:735
+#: lib/psm.c:730
 #, c-format
 msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
 msgstr ""
 
-#: lib/psm.c:756
+#: lib/psm.c:751
 #, c-format
 msgid "%s(%s-%s-%s) scriptlet failed, waitpid(%d) rc %d: %s\n"
 msgstr ""
 
-#: lib/psm.c:762
+#: lib/psm.c:757
 #, c-format
 msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1191
+#: lib/psm.c:1188
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1330
+#: lib/psm.c:1323
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1439
+#: lib/psm.c:1432
 msgid "Unable to reload signature header\n"
 msgstr ""
 
-#: lib/psm.c:1485
-#, c-format
-msgid "user %s does not exist - using root\n"
-msgstr ""
-
-#: lib/psm.c:1494
-#, c-format
-msgid "group %s does not exist - using root\n"
-msgstr ""
-
-#: lib/psm.c:1546
+#: lib/psm.c:1510
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1547
+#: lib/psm.c:1511
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1733
+#: lib/psm.c:1697
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1736
+#: lib/psm.c:1700
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:118 lib/rpmts.c:565
+#: lib/query.c:118 lib/rpmts.c:566
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
@@ -2248,8 +2256,8 @@ msgstr ""
 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:462
-#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576
+#: 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
 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157
 #, c-format
 msgid "open of %s failed: %s\n"
@@ -2264,7 +2272,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:488 lib/rpminstall.c:608
+#: lib/query.c:488 lib/rpminstall.c:622
 #, c-format
 msgid "%s: not an rpm package (or package manifest): %s\n"
 msgstr ""
@@ -2333,16 +2341,16 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:766 lib/rpminstall.c:778
+#: lib/query.c:766 lib/rpminstall.c:792
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:692
+#: lib/rpmal.c:694
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:772
 msgid "(added provide)"
 msgstr ""
 
@@ -2465,36 +2473,36 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:546
+#: lib/rpmfi.c:561
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/rpmfi.c:784
+#: lib/rpmfi.c:799
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:788
+#: lib/rpmfi.c:803
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:791
+#: lib/rpmfi.c:806
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:919
+#: lib/rpmfi.c:934
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:929
+#: lib/rpmfi.c:944
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:1021
+#: lib/rpmfi.c:1036
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
@@ -2523,87 +2531,87 @@ msgstr ""
 msgid "Upgrading packages..."
 msgstr ""
 
-#: lib/rpminstall.c:394
+#: lib/rpminstall.c:408
 #, c-format
 msgid "Adding goal: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:409
+#: lib/rpminstall.c:423
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:436
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:426
+#: lib/rpminstall.c:440
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:481 lib/rpminstall.c:872 tools/rpmgraph.c:140
+#: lib/rpminstall.c:495 lib/rpminstall.c:886 tools/rpmgraph.c:140
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:523
+#: lib/rpminstall.c:537
 #, c-format
-msgid "package %s is not relocateable\n"
+msgid "package %s is not relocatable\n"
 msgstr ""
 
-#: lib/rpminstall.c:573
+#: lib/rpminstall.c:587
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:593
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:637
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:637 lib/rpminstall.c:810 lib/rpminstall.c:1239
+#: lib/rpminstall.c:651 lib/rpminstall.c:824 lib/rpminstall.c:1253
 #: tools/rpmgraph.c:195
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:644 tools/rpmgraph.c:201
+#: lib/rpminstall.c:658 tools/rpmgraph.c:201
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:688
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:712
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:787
+#: lib/rpminstall.c:801
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:856
+#: lib/rpminstall.c:870
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:862
+#: lib/rpminstall.c:876
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1233
+#: lib/rpminstall.c:1247
 #, c-format
 msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
 msgstr ""
@@ -2671,7 +2679,7 @@ msgstr ""
 
 #: lib/rpmps.c:223
 #, c-format
-msgid "path %s in package %s is not relocateable"
+msgid "path %s in package %s is not relocatable"
 msgstr ""
 
 #: lib/rpmps.c:228
@@ -2818,50 +2826,75 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
 
-#: lib/rpmts.c:162
+#: lib/rpmsx.c:343
+#, c-format
+msgid "%s:  no newline on line number %d (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:360
+#, c-format
+msgid "%s:  line number %d is missing fields (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:391
+#, 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
+#, c-format
+msgid "%s:  invalid type specifier %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmsx.c:434
+#, c-format
+msgid "%s:  invalid context %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmts.c:163
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/rpmts.c:252
+#: lib/rpmts.c:253
 #, c-format
 msgid "extra '(' in package label: %s\n"
 msgstr ""
 
-#: lib/rpmts.c:270
+#: lib/rpmts.c:271
 #, c-format
 msgid "missing '(' in package label: %s\n"
 msgstr ""
 
-#: lib/rpmts.c:278
+#: lib/rpmts.c:279
 #, c-format
 msgid "missing ')' in package label: %s\n"
 msgstr ""
 
-#: lib/rpmts.c:455
+#: lib/rpmts.c:456
 #, c-format
 msgid "cannot open Solve database in %s\n"
 msgstr ""
 
-#: lib/rpmts.c:597
+#: lib/rpmts.c:598
 #, c-format
 msgid "Adding: %s\n"
 msgstr ""
 
-#: lib/rpmts.c:609
+#: lib/rpmts.c:610
 #, c-format
 msgid "Suggesting: %s\n"
 msgstr ""
 
-#: lib/rpmts.c:1077
+#: lib/rpmts.c:1097
 msgid "mounted filesystems:\n"
 msgstr ""
 
-#: lib/rpmts.c:1079
+#: lib/rpmts.c:1099
 msgid "    i    dev bsize       bavail       iavail mount point\n"
 msgstr ""
 
-#: lib/rpmts.c:1135
+#: lib/rpmts.c:1155
 #, c-format
 msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
 msgstr ""
@@ -3064,12 +3097,12 @@ msgstr ""
 msgid "computing file dispositions\n"
 msgstr ""
 
-#: lib/verify.c:288
+#: lib/verify.c:319
 #, c-format
 msgid "missing  %c %s"
 msgstr ""
 
-#: lib/verify.c:397
+#: lib/verify.c:433
 #, c-format
 msgid "Unsatisfied dependencies for %s: "
 msgstr ""
@@ -3267,161 +3300,161 @@ msgstr ""
 msgid "cannot open %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:915
+#: rpmdb/rpmdb.c:917
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1193 rpmdb/rpmdb.c:1322 rpmdb/rpmdb.c:1373 rpmdb/rpmdb.c:2316
-#: rpmdb/rpmdb.c:2432 rpmdb/rpmdb.c:3161
+#: rpmdb/rpmdb.c:1195 rpmdb/rpmdb.c:1324 rpmdb/rpmdb.c:1375 rpmdb/rpmdb.c:2322
+#: rpmdb/rpmdb.c:2438 rpmdb/rpmdb.c:3167
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1567
+#: rpmdb/rpmdb.c:1569
 msgid "miFreeHeader: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1577
+#: rpmdb/rpmdb.c:1579
 #, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2209
+#: rpmdb/rpmdb.c:2212
 msgid "rpmdbNextIterator: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2242
 #, c-format
 msgid "rpmdb: damaged header #%u retrieved -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2520
+#: rpmdb/rpmdb.c:2526
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2583
+#: rpmdb/rpmdb.c:2589
 #, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2698
+#: rpmdb/rpmdb.c:2704
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2702
+#: rpmdb/rpmdb.c:2708
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2730
+#: rpmdb/rpmdb.c:2736
 #, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2751
+#: rpmdb/rpmdb.c:2757
 #, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2761
+#: rpmdb/rpmdb.c:2767
 #, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2910
+#: rpmdb/rpmdb.c:2916
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2964
+#: rpmdb/rpmdb.c:2970
 msgid "rpmdbAdd: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3136
+#: rpmdb/rpmdb.c:3142
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3140
+#: rpmdb/rpmdb.c:3146
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3180
+#: rpmdb/rpmdb.c:3186
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3581
+#: rpmdb/rpmdb.c:3587
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3619
+#: rpmdb/rpmdb.c:3625
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3651
+#: rpmdb/rpmdb.c:3657
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3655
+#: rpmdb/rpmdb.c:3661
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3661
+#: rpmdb/rpmdb.c:3667
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3663
+#: rpmdb/rpmdb.c:3669
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3670
+#: rpmdb/rpmdb.c:3676
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3683
+#: rpmdb/rpmdb.c:3689
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3712
+#: rpmdb/rpmdb.c:3718
 #, c-format
 msgid "header #%u in the database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3752
+#: rpmdb/rpmdb.c:3758
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3766
+#: rpmdb/rpmdb.c:3772
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3774
+#: rpmdb/rpmdb.c:3780
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3776
+#: rpmdb/rpmdb.c:3782
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3786
+#: rpmdb/rpmdb.c:3792
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3788
+#: rpmdb/rpmdb.c:3794
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
@@ -3477,42 +3510,42 @@ msgstr ""
 msgid "Macro %%%s (%s) was not used below level %d\n"
 msgstr ""
 
-#: rpmio/macro.c:982
+#: rpmio/macro.c:984
 #, c-format
 msgid "Unknown option %c in %s(%s)\n"
 msgstr ""
 
-#: rpmio/macro.c:1182
+#: rpmio/macro.c:1184
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)\n"
 msgstr ""
 
-#: rpmio/macro.c:1252 rpmio/macro.c:1269
+#: rpmio/macro.c:1255 rpmio/macro.c:1272
 #, c-format
 msgid "Unterminated %c: %s\n"
 msgstr ""
 
-#: rpmio/macro.c:1310
+#: rpmio/macro.c:1313
 #, c-format
 msgid "A %% is followed by an unparseable macro\n"
 msgstr ""
 
-#: rpmio/macro.c:1439
+#: rpmio/macro.c:1442
 #, c-format
 msgid "Macro %%%.*s not found, skipping\n"
 msgstr ""
 
-#: rpmio/macro.c:1510
+#: rpmio/macro.c:1513
 msgid "Target buffer overflow\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1705 rpmio/macro.c:1711
+#: rpmio/macro.c:1708 rpmio/macro.c:1714
 #, c-format
 msgid "File %s: %s\n"
 msgstr ""
 
-#: rpmio/macro.c:1714
+#: rpmio/macro.c:1717
 #, c-format
 msgid "File %s is smaller than %u bytes\n"
 msgstr ""
index d2302c0..677be3e 100644 (file)
--- a/po/ru.po
+++ b/po/ru.po
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:11-0500\n"
+"POT-Creation-Date: 2003-12-30 08:11-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"
@@ -21,44 +21,44 @@ msgstr "
 msgid "Unable to open spec file %s: %s\n"
 msgstr "ïÛÉÂËÁ ÏÔËÒÙÔÉÑ ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ %s: %s\n"
 
-#: build.c:152 build.c:164
+#: build.c:150 build.c:162
 #, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr "ïÛÉÂËÁ ÏÔËÒÙÔÉÑ ËÁÎÁÌÁ tar: %m\n"
 
 #. Give up
-#: build.c:171
+#: build.c:169
 #, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "ïÛÉÂËÁ ÞÔÅÎÉÑ ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ ÉÚ %s\n"
 
-#: build.c:199
+#: build.c:197
 #, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÅÒÅÉÍÅÎÏ×ÁÔØ %s × %s: %m\n"
 
-#: build.c:239
+#: build.c:237
 #, c-format
 msgid "failed to stat %s: %m\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÏÌÕÞÉÔØ ÉÎÆÏÒÍÁÃÉÀ Ï %s: %m\n"
 
-#: build.c:244
+#: build.c:242
 #, c-format
 msgid "File %s is not a regular file.\n"
 msgstr "îÅ ÏÂÙÞÎÙÊ ÆÁÊÌ: %s.\n"
 
-#: build.c:253
+#: build.c:251
 #, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr "æÁÊÌ %s ÎÅ ÐÏÈÏÖ ÎÁ ÆÁÊÌ ÓÐÅÃÉÆÉËÁÃÉÉ.\n"
 
 #. parse up the build operators
-#: build.c:324
+#: build.c:322
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr "ðÌÁÔÆÏÒÍÙ ÄÌÑ ÓÂÏÒËÉ: %s\n"
 
-#: build.c:339
+#: build.c:337
 #, c-format
 msgid "Building for target %s\n"
 msgstr "óÂÏÒËÁ ÄÌÑ ÐÌÁÔÆÏÒÍÙ %s\n"
@@ -111,7 +111,7 @@ msgstr "
 msgid "%s: %s\n"
 msgstr "%s: %s\n"
 
-#: rpmqv.c:129 lib/poptALL.c:114
+#: rpmqv.c:129 lib/poptALL.c:119
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM ×ÅÒÓÉÑ %s\n"
@@ -425,159 +425,159 @@ msgstr "&& 
 msgid "syntax error in expression\n"
 msgstr "ÓÉÎÔÁËÓÉÞÅÓËÁÑ ÏÛÉÂËÁ × ×ÙÒÁÖÅÎÉÉ\n"
 
-#: build/files.c:278
+#: build/files.c:280
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "ïÛÉÂËÁ TIMECHECK: %s\n"
 
-#: build/files.c:343 build/files.c:543 build/files.c:739
+#: build/files.c:345 build/files.c:545 build/files.c:741
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "ïÔÓÕÔÓÔ×ÕÅÔ '(' × %s %s\n"
 
-#: build/files.c:354 build/files.c:673 build/files.c:750
+#: build/files.c:356 build/files.c:675 build/files.c:752
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ')' × %s(%s\n"
 
-#: build/files.c:392 build/files.c:698
+#: build/files.c:394 build/files.c:700
 #, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "îÅ×ÅÒÎÙÊ ÔÏËÅΠ%s: %s\n"
 
-#: build/files.c:502
+#: build/files.c:504
 #, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "ïÔÓÕÔÓÔ×ÕÅÔ %s × %s %s\n"
 
-#: build/files.c:559
+#: build/files.c:561
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr "îÅ ÐÒÏÂÅÌ ÓÌÅÄÕÅÔ ÐÏÓÌÅ %s(): %s\n"
 
-#: build/files.c:597
+#: build/files.c:599
 #, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "îÅ×ÅÒÎÙÊ ÓÉÎÔÁËÓÉÓ: %s(%s)\n"
 
-#: build/files.c:607
+#: build/files.c:609
 #, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "îÅ×ÅÒÎÙÅ ÐÒÁ×Á: %s(%s)\n"
 
-#: build/files.c:619
+#: build/files.c:621
 #, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "îÅ×ÅÒÎÙÅ ÐÒÁ×Á ÎÁ ËÁÔÁÌÏÇ %s(%s)\n"
 
-#: build/files.c:777
+#: build/files.c:779
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr "îÅÏÂÙÞÎÁÑ ÄÌÉÎÁ locale: \"%.*s\" × %%lang(%s)\n"
 
 #. @innercontinue@
-#: build/files.c:788
+#: build/files.c:790
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr "äÕÂÌÉËÁÔ locale %.*s × %%lang(%s)\n"
 
-#: build/files.c:917
+#: build/files.c:919
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr "ìÉÍÉÔ ÄÌÑ %%docdir ÐÒÅ×ÙÛÅÎ\n"
 
-#: build/files.c:925
+#: build/files.c:927
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr "ôÏÌØËÏ ÏÄÉΠÁÒÇÕÍÅÎÔ ÄÌÑ %%docdir\n"
 
 #. We already got a file -- error
-#: build/files.c:959
+#: build/files.c:961
 #, c-format
 msgid "Two files on one line: %s\n"
 msgstr "ä×Á ÆÁÊÌÁ × ÏÄÎÏÊ ÓÔÒÏËÅ: %s\n"
 
-#: build/files.c:976
+#: build/files.c:978
 #, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "æÁÊÌ ÄÏÌÖÅΠÎÁÞÉÎÁÔØÓÑ Ó \"/\": %s\n"
 
-#: build/files.c:989
+#: build/files.c:991
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr "îÅÌØÚÑ ÓÍÅÛÉ×ÁÔØ ÓÐÅÃ. %%doc Ó ÄÒÕÇÉÍÉ ÆÏÒÍÁÍÉ: %s\n"
 
-#: build/files.c:1141
+#: build/files.c:1149
 #, c-format
 msgid "File listed twice: %s\n"
 msgstr "æÁÊÌ ÕËÁÚÁΠÄ×ÁÖÄÙ: %s\n"
 
-#: build/files.c:1280
+#: build/files.c:1288
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "óÉÍ×ÏÌÉÞÅÓËÁÑ ÓÓÙÌËÁ ÕËÁÚÙ×ÁÅÔ ÎÁ BuildRoot: %s -> %s\n"
 
-#: build/files.c:1520
+#: build/files.c:1535
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "æÁÊÌ ÎÅ ÓÏÏÔ×ÅÔÓÔÕÅÔ ÐÒÅÆÉËÓÕ (%s): %s\n"
 
-#: build/files.c:1544
+#: build/files.c:1559
 #, c-format
 msgid "File not found: %s\n"
 msgstr "æÁÊÌ ÎÅ ÎÁÊÄÅÎ: %s\n"
 
-#: build/files.c:1752
+#: build/files.c:1767
 #, fuzzy, c-format
 msgid "%s: public key read failed.\n"
 msgstr "%s: ÏÛÉÂËÁ ÞÔÅÎÉÑ ×Ï ×ÒÅÍÑ ÉÍÐÏÒÔÉÒÏ×ÁÎÉÑ.\n"
 
-#: build/files.c:1756 lib/rpmchecksig.c:580
+#: build/files.c:1771 lib/rpmchecksig.c:580
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr "%s: ÜÔÏ ÎÅ ÏÔËÒÙÔÙÊ ËÌÀÞ.\n"
 
-#: build/files.c:1804
+#: build/files.c:1819
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "æÁÊÌ ÄÏÌÖÅΠÎÁÞÉÎÁÔØÓÑ Ó \"/\": %s\n"
 
-#: build/files.c:1828
+#: build/files.c:1843
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "Glob ÎÅ ÒÁÚÒÅÛÁÀÔÓÑ: %s\n"
 
-#: build/files.c:1845 lib/rpminstall.c:347
+#: build/files.c:1860 lib/rpminstall.c:361
 #, c-format
 msgid "File not found by glob: %s\n"
 msgstr "æÁÊÌ ÎÅ ÎÁÊÄÅÎ: %s\n"
 
-#: build/files.c:1905
+#: build/files.c:1920
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ %%files %s: %s\n"
 
-#: build/files.c:1916 build/pack.c:156
+#: build/files.c:1931 build/pack.c:156
 #, c-format
 msgid "line: %s\n"
 msgstr "ÓÔÒÏËÁ: %s\n"
 
-#: build/files.c:2307
+#: build/files.c:2323
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "îÅ×ÅÒÎÙÊ ÆÁÊÌ %s: %s\n"
 
-#: build/files.c:2319 build/parsePrep.c:50
+#: build/files.c:2335 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "îÅ×ÅÒÎÁÑ ÐÁÒÁ ×ÌÁÄÅÌÅÃ/ÇÒÕÐÐÁ: %s\n"
 
-#: build/files.c:2363
+#: build/files.c:2379
 #, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr "ðÒÏ×ÅÒËÁ ÎÁ ÎÅÕÐÁËÏ×ÁÎÎÙÊ(Å) ÆÁÊÌ(Ù): %s\n"
 
-#: build/files.c:2386
+#: build/files.c:2402
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
@@ -586,7 +586,7 @@ msgstr ""
 "ïÂÎÁÒÕÖÅÎ(Ù) ÕÓÔÁÎÏ×ÌÅÎÎÙÊ(Å) (ÎÏ ÎÅ ÕÐÁËÏ×ÁÎÎÙÊ(Å)) ÆÁÊÌ(Ù):\n"
 "%s"
 
-#: build/files.c:2414
+#: build/files.c:2430
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "ïÂÒÁÂÁÔÙ×ÁÀÔÓÑ ÆÁÊÌÙ: %s-%s-%s\n"
@@ -725,7 +725,7 @@ msgstr "
 msgid "Could not open %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
 
-#: build/pack.c:632 lib/psm.c:1427
+#: build/pack.c:632 lib/psm.c:1420
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÐÁËÅÔ: %s\n"
@@ -755,7 +755,7 @@ msgstr "
 msgid "Unable to write payload to %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÓÏÄÅÒÖÉÍÏÅ × %s: %s\n"
 
-#: build/pack.c:725 lib/psm.c:1725
+#: build/pack.c:725 lib/psm.c:1689
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "úÁÐÉÓÁÎ: %s\n"
@@ -1248,18 +1248,18 @@ msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
 msgstr ""
 "ÓÏÚÄÁÔØ ÚÁÇÏÌÏ×ÏË(ËÉ) ÐÁËÅÔÁ, ÓÏ×ÍÅÓÔÉÍÙÅ Ó (ÕÓÔÁÒÅ×ÛÉÍÉ)  ÆÏÒÍÁÔÁÍÉ rpm[23]"
 
-#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329
-#: lib/poptQV.c:338 lib/poptQV.c:377
+#: build/poptBT.c:229 lib/poptALL.c:240 lib/poptI.c:261 lib/poptQV.c:335
+#: lib/poptQV.c:344 lib/poptQV.c:383
 msgid "don't verify package digest(s)"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÄÁÊÄÖÅÓÔ ÐÁËÅÔÁ(Ï×)"
 
-#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332
-#: lib/poptQV.c:340 lib/poptQV.c:380
+#: build/poptBT.c:231 lib/poptALL.c:242 lib/poptI.c:263 lib/poptQV.c:338
+#: lib/poptQV.c:346 lib/poptQV.c:386
 msgid "don't verify database header(s) when retrieved"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÚÁÇÏÌÏ×ËÉ, ÉÚ×ÌÅËÁÅÍÙÅ ÉÚ ÂÁÚÙ ÄÁÎÎÙÈ"
 
-#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335
-#: lib/poptQV.c:342 lib/poptQV.c:382
+#: build/poptBT.c:233 lib/poptALL.c:248 lib/poptI.c:265 lib/poptQV.c:341
+#: lib/poptQV.c:348 lib/poptQV.c:388
 msgid "don't verify package signature(s)"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÐÏÄÐÉÓØ(É) × ÐÁËÅÔÅ(ÁÈ)"
 
@@ -1329,31 +1329,31 @@ msgstr "
 msgid "Bad/unreadable  header"
 msgstr "îÅ×ÅÒÎÙÊ/ÎÅÞÉÔÁÅÍÙÊ ÚÁÇÏÌÏ×ÏË"
 
-#: lib/cpio.c:232
+#: lib/cpio.c:233
 msgid "Header size too big"
 msgstr "úÁÇÏÌÏ×ÏË ÓÌÉÛËÏÍ ×ÅÌÉË"
 
-#: lib/cpio.c:233
+#: lib/cpio.c:234
 msgid "Unknown file type"
 msgstr "îÅÉÚ×ÅÓÔÎÙÊ ÔÉРÆÁÊÌÁ"
 
-#: lib/cpio.c:234
+#: lib/cpio.c:235
 msgid "Missing hard link(s)"
 msgstr "ïÔÓÕÔÓÔ×ÕÅÔ ÖÅÓÔËÁÑ ÓÓÙÌËÁ"
 
-#: lib/cpio.c:235
+#: lib/cpio.c:236
 msgid "MD5 sum mismatch"
 msgstr "ËÏÎÔÒÏÌØÎÙÅ MD5-ÓÕÍÍÙ ÎÅ ÓÏ×ÐÁÄÁÀÔ"
 
-#: lib/cpio.c:236
+#: lib/cpio.c:237
 msgid "Internal error"
 msgstr "÷ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ"
 
-#: lib/cpio.c:237
+#: lib/cpio.c:238
 msgid "Archive file not in header"
 msgstr "æÁÊÌ ÁÒÈÉ×Á ÎÅ ÎÁÊÄÅΠנÚÁÇÏÌÏ×ËÅ ÐÁËÅÔÁ"
 
-#: lib/cpio.c:250
+#: lib/cpio.c:251
 msgid " failed - "
 msgstr "ÎÅ ÕÄÁÌÏÓØ - "
 
@@ -1485,47 +1485,57 @@ msgstr "
 msgid "file %s is on an unknown device\n"
 msgstr "ÆÁÊÌ %s - ÎÁ ÎÅÉÚ×ÅÓÔÎÏÍ ÕÓÔÒÏÊÓÔ×Å\n"
 
-#: lib/fsm.c:350
+#: lib/fsm.c:352
 #, fuzzy
 msgid "========== Directories not explicitly included in package:\n"
 msgstr "========= ëÁÔÁÌÏÇÉ, ËÏÔÏÒÙÅ ÎÅ ×ËÌÀÞÅÎÙ × ÐÁËÅÔ Ñ×ÎÏ:\n"
 
-#: lib/fsm.c:352
+#: lib/fsm.c:354
 #, c-format
 msgid "%10d %s\n"
 msgstr "%10d %s\n"
 
-#: lib/fsm.c:1293
+#: lib/fsm.c:768
+#, c-format
+msgid "user %s does not exist - using root\n"
+msgstr "ÐÏÌØÚÏ×ÁÔÅÌØ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ - ÉÓÐÏÌØÚÕÅÔÓÑ root\n"
+
+#: lib/fsm.c:776
+#, c-format
+msgid "group %s does not exist - using root\n"
+msgstr "ÇÒÕÐÐÁ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ - ÉÓÐÏÌØÚÕÅÔÓÑ root\n"
+
+#: lib/fsm.c:1334
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr "ËÁÔÁÌÏÇ %s ÓÏÚÄÁΠӠÐÒÁ×ÁÍÉ ÄÏÓÔÕÐÁ %04o.\n"
 
-#: lib/fsm.c:1592
+#: lib/fsm.c:1633
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr "ÆÁÊÌ ÁÒÈÉ×Á %s ÎÅ ÎÁÊÄÅΠנÓÐÉÓËÅ ÆÁÊÌÏ× ÚÁÇÏÌÏ×ËÁ\n"
 
-#: lib/fsm.c:1719 lib/fsm.c:1855
+#: lib/fsm.c:1760 lib/fsm.c:1896
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s ÓÏÈÒÁÎÅΠËÁË %s\n"
 
-#: lib/fsm.c:1882
+#: lib/fsm.c:1923
 #, c-format
 msgid "%s rmdir of %s failed: Directory not empty\n"
 msgstr "%s ÎÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ %s: ËÁÔÁÌÏÇ ÎÅ ÐÕÓÔ\n"
 
-#: lib/fsm.c:1888
+#: lib/fsm.c:1929
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ËÁÔÁÌÏÇÁ %s: %s\n"
 
-#: lib/fsm.c:1903
+#: lib/fsm.c:1944
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s ÎÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ %s: %s\n"
 
-#: lib/fsm.c:1925
+#: lib/fsm.c:1966
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s ÓÏÚÄÁΠËÁË %s\n"
@@ -1642,110 +1652,110 @@ msgstr "%s: 
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: ÏÛÉÂËÁ Fread: %s\n"
 
-#: lib/poptALL.c:222
+#: lib/poptALL.c:227
 msgid "predefine MACRO with value EXPR"
 msgstr "ÐÒÅÏÐÒÅÄÅÌÉÔØ MACRO ÓÏ ÚÎÁÞÅÎÉÅÍ EXPR"
 
-#: lib/poptALL.c:223 lib/poptALL.c:226
+#: lib/poptALL.c:228 lib/poptALL.c:231
 msgid "'MACRO EXPR'"
 msgstr "'MACRO EXPR'"
 
-#: lib/poptALL.c:225
+#: lib/poptALL.c:230
 msgid "define MACRO with value EXPR"
 msgstr "ÏÐÒÅÄÅÌÉÔØ MACRO ÓÏ ÚÎÁÞÅÎÉÅÍ EXPR"
 
-#: lib/poptALL.c:228
+#: lib/poptALL.c:233
 msgid "print macro expansion of EXPR"
 msgstr "×Ù×ÅÓÔÉ ÚÎÁÞÅÎÉÅ ÍÁËÒÏÓÁ EXPR"
 
-#: lib/poptALL.c:229
+#: lib/poptALL.c:234
 msgid "'EXPR'"
 msgstr "'EXPR'"
 
-#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254
+#: lib/poptALL.c:236 lib/poptALL.c:255 lib/poptALL.c:259
 msgid "read <FILE:...> instead of default file(s)"
 msgstr "ÉÓÐÏÌØÚÏ×ÁÔØ <FILE:...> ×ÍÅÓÔÏ ÆÁÊÌÁ(Ï×) ÐÏ ÕÍÏÌÞÁÎÉÀ"
 
-#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255
+#: lib/poptALL.c:237 lib/poptALL.c:256 lib/poptALL.c:260
 msgid "<FILE:...>"
 msgstr "<FILE:...>"
 
-#: lib/poptALL.c:240 lib/poptALL.c:274
+#: lib/poptALL.c:245 lib/poptALL.c:279
 msgid "disable use of libio(3) API"
 msgstr "ÚÁÐÒÅÔÉÔØ ÉÓÐÏÌØÚÏ×ÁÎÉÅ libio(3) API"
 
-#: lib/poptALL.c:246
+#: lib/poptALL.c:251
 msgid "send stdout to CMD"
 msgstr "ÐÏÓÌÁÔØ ÓÔÁÎÄÁÒÔÎÙÊ ×Ù×ÏÄ × CMD"
 
-#: lib/poptALL.c:247
+#: lib/poptALL.c:252
 msgid "CMD"
 msgstr "CMD"
 
-#: lib/poptALL.c:258
+#: lib/poptALL.c:263
 msgid "use ROOT as top level directory"
 msgstr "ÉÓÐÏÌØÚÏ×ÁÔØ ROOT ËÁË ËÏÒÎÅ×ÏÊ ËÁÔÁÌÏÇ"
 
-#: lib/poptALL.c:259
+#: lib/poptALL.c:264
 msgid "ROOT"
 msgstr "ROOT"
 
-#: lib/poptALL.c:262
+#: lib/poptALL.c:267
 msgid "display known query tags"
 msgstr "ÏÔÏÂÒÁÚÉÔØ ÉÚ×ÅÓÔÎÙÅ ËÌÀÞÉ ÚÁÐÒÏÓÁ"
 
-#: lib/poptALL.c:264
+#: lib/poptALL.c:269
 msgid "display final rpmrc and macro configuration"
 msgstr "ÐÏËÁÚÁÔØ ÔÅËÕÝÅÅ ÚÎÁÞÅÎÉÅ rpmrc É ÍÁËÒÏÓÏ×"
 
-#: lib/poptALL.c:266
+#: lib/poptALL.c:271
 msgid "provide less detailed output"
 msgstr "×Ù×ÏÄÉÔØ ÍÉÎÉÍÕÍ ÓÏÏÂÝÅÎÉÊ"
 
-#: lib/poptALL.c:268
+#: lib/poptALL.c:273
 msgid "provide more detailed output"
 msgstr "×Ù×ÏÄÉÔØ ÂÏÌÅÅ ÄÅÔÁÌØÎÙÅ ÓÏÏÂÝÅÎÉÑ"
 
-#: lib/poptALL.c:270
+#: lib/poptALL.c:275
 msgid "print the version of rpm being used"
 msgstr "×Ù×ÅÓÔÉ ÎÏÍÅÒ ×ÅÒÓÉÉ ÜÔÏÊ ÐÒÇÒÁÍÍÙ"
 
-#: lib/poptALL.c:283
+#: lib/poptALL.c:288
 msgid "debug payload file state machine"
 msgstr "ÏÔÌÁÄËÁ ÍÁÛÉÎÙ ÓÏÓÔÏÑÎÉÑ ÐÒÉÓÏÅÄÉÎÅÎÎÙÈ ÆÁÊÌÏ× "
 
-#: lib/poptALL.c:285
+#: lib/poptALL.c:290
 #, fuzzy
 msgid "use threads for file state machine"
 msgstr "ÏÔÌÁÄËÁ ÍÁÛÉÎÙ ÓÏÓÔÏÑÎÉÑ ÐÒÉÓÏÅÄÉÎÅÎÎÙÈ ÆÁÊÌÏ× "
 
-#: lib/poptALL.c:287
+#: lib/poptALL.c:292
 msgid "debug protocol data stream"
 msgstr "ÏÔÌÁÄËÁ ÐÒÏÔÏËÏÌÁ ÐÏÔÏËÁ ÄÁÎÎÙÈ"
 
-#: lib/poptALL.c:292
+#: lib/poptALL.c:297
 msgid "debug option/argument processing"
 msgstr "ÏÔÌÁÄËÁ ÏÂÒÁÂÏÔËÉ ÐÁÒÁÍÅÔÒÏ×/ÁÒÇÕÍÅÎÔÏ×"
 
-#: lib/poptALL.c:297
+#: lib/poptALL.c:302
 msgid "debug package state machine"
 msgstr "ÏÔÌÁÄËÁ ÍÁÛÉÎÙ ÓÏÓÔÏÑÎÉÑ ÐÁËÅÔÏ×"
 
-#: lib/poptALL.c:299
+#: lib/poptALL.c:304
 #, fuzzy
 msgid "use threads for package state machine"
 msgstr "ÏÔÌÁÄËÁ ÍÁÛÉÎÙ ÓÏÓÔÏÑÎÉÑ ÐÁËÅÔÏ×"
 
-#: lib/poptALL.c:311
+#: lib/poptALL.c:316
 msgid "debug rpmio I/O"
 msgstr "ÏÔÌÁÄËÁ ÐÒÏÃÅÓÓÁ ××ÏÄÁ/×Ù×ÏÄÁ rpmio"
 
-#: lib/poptALL.c:323
+#: lib/poptALL.c:330
 msgid "debug URL cache handling"
 msgstr "ÏÔÌÁÄËÁ ÏÂÒÁÂÏÔËÉ URL ËÜÛ"
 
 #. @-nullpass@
-#: lib/poptALL.c:393
+#: lib/poptALL.c:400
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr "%s: ÔÁÂÌÉÃÁ ÐÁÒÁÍÅÔÒÏ× ÎÅÐÒÁ×ÉÌØÎÏ ÎÁÓÔÒÏÅÎÁ (%d)\n"
@@ -1774,17 +1784,17 @@ msgstr "
 msgid "malformed rollback time/date stamp argument"
 msgstr "ÎÅÐÒÁ×ÉÌØÎÙÊ ÆÏÒÍÁÔ ×ÒÅÍÅÎÉ ÏÔËÁÔÁ"
 
-#: lib/poptI.c:151
+#: lib/poptI.c:155
 msgid "add suggested packages to transaction"
 msgstr "ÄÏÂÁ×ÉÔØ ÐÒÅÄÌÏÖÅÎÎÙÅ ÐÁËÅÔÙ × ÔÒÁÎÚÁËÃÉÀ"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:159
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "ÕÓÔÁÎÁ×ÌÉ×ÁÔØ ×ÓÅ ÆÁÊÌÙ, ÄÁÖÅ ËÏÎÆÉÇÕÒÁÃÉÏÎÎÙÅ, ËÏÔÏÒÙÅ ÍÏÇÌÉ ÂÙ ÂÙÔØ "
 "ÐÒÏÐÕÝÅÎÙ"
 
-#: lib/poptI.c:159
+#: lib/poptI.c:163
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1792,148 +1802,154 @@ msgstr ""
 "ÕÄÁÌÉÔØ ×ÓÅ ÐÁËÅÔÙ, ÓÏ×ÐÁÄÁÀÝÉÅ Ó <ÐÁËÅÔ> (ÏÂÙÞÎÏ, ÅÓÌÉ <ÐÁËÅÔ> "
 "ÓÏÏÔ×ÅÔÓÔ×ÕÅÔ ÎÅÓËÏÌØËÉÍ ÐÁËÅÔÁÍ, ÇÅÎÅÒÉÒÕÅÔÓÑ ÏÛÉÂËÁ)"
 
-#: lib/poptI.c:164 tools/rpmgraph.c:273
+#: lib/poptI.c:168 tools/rpmgraph.c:273
 msgid "use anaconda \"presentation order\""
 msgstr ""
 
-#: lib/poptI.c:169 lib/poptI.c:238
+#: lib/poptI.c:173 lib/poptI.c:245
 msgid "do not execute package scriptlet(s)"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ ÎÉËÁËÉÈ ÓÃÅÎÁÒÉÅ× ÐÁËÅÔÁ(Ï×)"
 
-#: lib/poptI.c:173
-msgid "relocate files in non-relocateable package"
+#: lib/poptI.c:177
+#, fuzzy
+msgid "relocate files in non-relocatable package"
 msgstr "ÐÅÒÅÍÅÓÔÉÔØ ÆÁÊÌÙ × ÎÅÐÅÒÅÍÅÝÁÅÍÏÍ ÐÁËÅÔÅ"
 
-#: lib/poptI.c:176
+#: lib/poptI.c:180
 msgid "save erased package files by renaming into sub-directory"
 msgstr "ÓÏÈÒÁÎÉÔØ × ÐÏÄËÁÔÁÌÏÇÅ ÐÏÄÌÅÖÁÝÉÅ ÕÄÁÌÅÎÉÀ ÆÁÊÌÙ ÐÁËÅÔÁ"
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 msgid "erase (uninstall) package"
 msgstr "ÕÄÁÌÉÔØ (ÄÅÉÎÓÔÁÌÌÉÒÏ×ÁÔØ) ÐÁËÅÔ"
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 msgid "<package>+"
 msgstr "<ÐÁËÅÔ>+"
 
-#: lib/poptI.c:182 lib/poptI.c:219
+#: lib/poptI.c:186 lib/poptI.c:223
 #, fuzzy
 msgid "do not install configuration files"
 msgstr "ÐÏËÁÚÁÔØ ×ÓÅ ÆÁÊÌÙ ËÏÎÆÉÇÕÒÁÃÉÉ"
 
-#: lib/poptI.c:185 lib/poptI.c:224
+#: lib/poptI.c:189 lib/poptI.c:228
 msgid "do not install documentation"
 msgstr "ÎÅ ÕÓÔÁÎÁ×ÌÉ×ÁÔØ ÄÏËÕÍÅÎÔÁÃÉÀ"
 
-#: lib/poptI.c:187
+#: lib/poptI.c:191
 msgid "skip files with leading component <path> "
 msgstr "ÐÒÏÐÕÓÔÉÔØ ÆÁÊÌÙ × ÐÕÔÉ <ÐÕÔØ>"
 
-#: lib/poptI.c:188
+#: lib/poptI.c:192
 msgid "<path>"
 msgstr "<ÐÕÔØ>"
 
-#: lib/poptI.c:191
+#: lib/poptI.c:195
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "ÓÏËÒÁÝÅÎÉÅ ÄÌÑ --replacepkgs --replacefiles"
 
-#: lib/poptI.c:195
+#: lib/poptI.c:199
 msgid "upgrade package(s) if already installed"
 msgstr "ÏÂÎÏ×ÉÔØ ÐÁËÅÔ(Ù) ÅÓÌÉ ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ"
 
-#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
+#: lib/poptI.c:200 lib/poptI.c:216 lib/poptI.c:312
 msgid "<packagefile>+"
 msgstr "<ÆÁÊÌ ÐÁËÅÔÁ>+"
 
-#: lib/poptI.c:198
+#: lib/poptI.c:202
 msgid "print hash marks as package installs (good with -v)"
 msgstr "×Ù×ÏÄÉÔØ \"#\" ÐÏ ÍÅÒÅ ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÁ (ÈÏÒÏÛÏ Ó -v)"
 
-#: lib/poptI.c:201
+#: lib/poptI.c:205
 msgid "don't verify package architecture"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÁÒÈÉÔÅËÔÕÒÕ ÐÁËÅÔÁ"
 
-#: lib/poptI.c:204
+#: lib/poptI.c:208
 msgid "don't verify package operating system"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÏÐÅÒÁÃÉÏÎÎÕÀ ÓÉÓÔÅÍÕ ÐÁËÅÔÁ"
 
-#: lib/poptI.c:207
+#: lib/poptI.c:211
 msgid "don't check disk space before installing"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÄÉÓËÏ×ÏÅ ÐÒÏÓÔÒÁÎÓÔ×Ï ÐÅÒÅÄ ÕÓÔÁÎÏ×ËÏÊ"
 
-#: lib/poptI.c:209
+#: lib/poptI.c:213
 msgid "install documentation"
 msgstr "ÕÓÔÁÎÏ×ÉÔØ ÄÏËÕÍÅÎÔÁÃÉÀ"
 
-#: lib/poptI.c:212
+#: lib/poptI.c:216
 msgid "install package(s)"
 msgstr "ÕÓÔÁÎÏ×ÉÔØ ÐÁËÅÔ(Ù)"
 
-#: lib/poptI.c:215
+#: lib/poptI.c:219
 msgid "update the database, but do not modify the filesystem"
 msgstr "ÏÂÎÏ×ÉÔØ ÂÁÚÕ ÄÁÎÎÙÈ, ÎÏ ÎÅ ÍÏÄÉÆÉÃÉÒÏ×ÁÔØ ÆÁÊÌÏ×ÕÀ ÓÉÓÔÅÍÕ"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:225
 msgid "do not verify package dependencies"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÚÁ×ÉÓÉÍÏÓÔÉ ÐÁËÅÔÁ"
 
-#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:231 lib/poptQV.c:279 lib/poptQV.c:282
 msgid "don't verify MD5 digest of files"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÆÁÊÌÙ ÎÁ ËÏÎÔÒÏÌØÎÕÀ ÓÕÍÍÕ MD5"
 
-#: lib/poptI.c:230
+#: lib/poptI.c:233
+#, fuzzy
+msgid "don't install file security contexts"
+msgstr "ÐÏËÁÚÁÔØ ×ÓÅ ÆÁÊÌÙ ËÏÎÆÉÇÕÒÁÃÉÉ"
+
+#: lib/poptI.c:237
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "ÎÅ ÍÅÎÑÔØ ÐÏÒÑÄÏË ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÏ× ÄÌÑ ÕÄÏ×ÌÅÔ×ÏÒÅÎÉÑ ÚÁ×ÉÓÉÍÏÓÔÅÊ"
 
-#: lib/poptI.c:235
+#: lib/poptI.c:242
 msgid "do not suggest missing dependency resolution(s)"
 msgstr "ÎÅ ÐÒÅÄÌÁÇÁÔØ ÒÁÚÒÅÛÅÎÉÅ ÐÒÏÐÕÝÅÎÎÏÊ(ÙÈ) ÚÁ×ÉÓÉÍÏÓÔÉ(ÅÊ)"
 
-#: lib/poptI.c:242
+#: lib/poptI.c:249
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ  %%pre ÓÃÅÎÁÒÉÅ× (ÅÓÌÉ ÅÓÔØ)"
 
-#: lib/poptI.c:245
+#: lib/poptI.c:252
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %%post ÓÃÅÎÁÒÉÅ× (ÅÓÌÉ ÅÓÔØ)"
 
-#: lib/poptI.c:248
+#: lib/poptI.c:255
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %%preun ÓÃÅÎÁÒÉÅ× (ÅÓÌÉ ÅÓÔØ)"
 
-#: lib/poptI.c:251
+#: lib/poptI.c:258
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %%postun ÓÃÅÎÁÒÉÅ× (ÅÓÌÉ ÅÓÔØ)"
 
-#: lib/poptI.c:261
+#: lib/poptI.c:268
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ ÔÒÉÇÇÅÒ-ÓÃÅÎÁÒÉÅ×, ×Ú×ÅÄÅÎÎÙÈ ÜÔÉÍ ÐÁËÅÔÏÍ"
 
-#: lib/poptI.c:264
+#: lib/poptI.c:271
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %%triggerprein ÓÃÅÎÁÒÉÅ×"
 
-#: lib/poptI.c:267
+#: lib/poptI.c:274
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %%triggerin ÓÃÅÎÁÒÉÅ×"
 
-#: lib/poptI.c:270
+#: lib/poptI.c:277
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %%triggerun ÓÃÅÎÁÒÉÅ×"
 
-#: lib/poptI.c:273
+#: lib/poptI.c:280
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %%triggerpostun ÓÃÅÎÁÒÉÅ×"
 
-#: lib/poptI.c:277
+#: lib/poptI.c:284
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1941,53 +1957,53 @@ msgstr ""
 "ÏÔËÁÔ ÎÁ ÂÏÌÅÅ ÓÔÁÒÕÀ ×ÅÒÓÉÀ ÐÁËÅÔÁ (--force ÐÒÉ ÏÂÎÏ×ÌÅÎÉÉ ÄÅÌÁÅÔ ÜÔÏ "
 "Á×ÔÏÍÁÔÉÞÅÓËÉ)"
 
-#: lib/poptI.c:281
+#: lib/poptI.c:288
 msgid "print percentages as package installs"
 msgstr "×Ù×ÏÄÉÔØ ÐÒÏÃÅÎÔ ÇÏÔÏ×ÎÏÓÔÉ ÐÏ ÍÅÒÅ ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÁ"
 
-#: lib/poptI.c:283
+#: lib/poptI.c:290
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "ÐÅÒÅÍÅÓÔÉÔØ ÐÁËÅÔ × <ËÁÔÁÌÏÇ>, ÅÓÌÉ ÐÁËÅÔ ÜÔÏ ÐÏÚ×ÏÌÑÅÔ"
 
-#: lib/poptI.c:284
+#: lib/poptI.c:291
 msgid "<dir>"
 msgstr "<ËÁÔÁÌÏÇ>"
 
-#: lib/poptI.c:286
+#: lib/poptI.c:293
 msgid "relocate files from path <old> to <new>"
 msgstr "ÐÅÒÅÍÅÓÔÉÔØ ÆÁÊÌÙ ÉÚ ÐÕÔÉ <old> × <new>"
 
-#: lib/poptI.c:287
+#: lib/poptI.c:294
 msgid "<old>=<new>"
 msgstr "<old>=<new>"
 
-#: lib/poptI.c:290
+#: lib/poptI.c:297
 msgid "save erased package files by repackaging"
 msgstr "ÓÏÈÒÁÎÉÔØ ÐÏÄÌÅÖÁÝÉÅ ÕÄÁÌÅÎÉÀ ÆÁÊÌÙ × ÎÏ×ÏÍ ÐÁËÅÔÅ"
 
-#: lib/poptI.c:293
+#: lib/poptI.c:300
 msgid "install even if the package replaces installed files"
 msgstr "ÕÓÔÁÎÁ×ÌÉ×ÁÔØ, ÄÁÖÅ ÅÓÌÉ ÐÁËÅÔ ÐÅÒÅÐÉÛÅÔ ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎÎÙÅ ÆÁÊÌÙ"
 
-#: lib/poptI.c:296
+#: lib/poptI.c:303
 msgid "reinstall if the package is already present"
 msgstr "ÐÅÒÅÕÓÔÁÎÏ×ÉÔØ, ÅÓÌÉ ÐÁËÅÔ ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ"
 
-#: lib/poptI.c:298
+#: lib/poptI.c:305
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 "ÕÄÁÌÉÔØ ÎÏ×ÙÊ(Å) ÐÁËÅÔ(Ù), ÐÅÒÅÕÓÔÁÎÏ×ÉÔØ ÓÔÁÒÙÊ(Å) ÐÁËÅÔ(Ù), ÏÂÒÁÔÎÏ ÎÁ "
 "ÕËÁÚÁÎÎÕÀ ÄÁÔÕ"
 
-#: lib/poptI.c:299
+#: lib/poptI.c:306
 msgid "<date>"
 msgstr "<ÄÁÔÁ>"
 
-#: lib/poptI.c:301
+#: lib/poptI.c:308
 msgid "don't install, but tell if it would work or not"
 msgstr "ÎÅ ÕÓÔÁÎÁ×ÌÉ×ÁÔØ, Á ÔÏÌØËÏ ÓÏÏÂÝÉÔØ, ÕÄÁÓÔÓÑ ÌÉ ÕÓÔÁÎÏ×ËÁ"
 
-#: lib/poptI.c:304
+#: lib/poptI.c:311
 msgid "upgrade package(s)"
 msgstr "ÏÂÎÏ×ÉÔØ ÐÁËÅÔ(Ù)"
 
@@ -2059,195 +2075,190 @@ msgstr "
 msgid "query/verify the package(s) which provide a dependency"
 msgstr "ÎÁÊÔÉ/ÐÒÏ×ÅÒÉÔØ ÐÁËÅÔÙ, ÐÒÅÄÏÓÔÁ×ÌÑÀÝÉÅ ÓÅÒ×ÉÓ"
 
-#: lib/poptQV.c:226
+#: lib/poptQV.c:230
 msgid "list all configuration files"
 msgstr "ÐÏËÁÚÁÔØ ×ÓÅ ÆÁÊÌÙ ËÏÎÆÉÇÕÒÁÃÉÉ"
 
-#: lib/poptQV.c:228
+#: lib/poptQV.c:232
 msgid "list all documentation files"
 msgstr "ÐÏËÁÚÁÔØ ×ÓÅ ÆÁÊÌÙ ÄÏËÕÍÅÎÔÁÃÉÉ"
 
-#: lib/poptQV.c:230
+#: lib/poptQV.c:234
 msgid "dump basic file information"
 msgstr "ÐÏËÁÚÁÔØ ÏÓÎÏ×ÎÕÀ ÉÎÆÏÒÍÁÃÉÀ Ï ÆÁÊÌÅ"
 
-#: lib/poptQV.c:234
+#: lib/poptQV.c:238
 msgid "list files in package"
 msgstr "ÐÏËÁÚÁÔØ ÓÐÉÓÏË ÆÁÊÌÏ× ÐÁËÅÔÁ"
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:243
 #, c-format
 msgid "skip %%ghost files"
 msgstr "ÐÒÏÐÕÓÔÉÔØ ÆÁÊÌÙ %%ghost"
 
-#: lib/poptQV.c:243
+#: lib/poptQV.c:247
 #, c-format
 msgid "skip %%license files"
 msgstr "ÐÒÏÐÕÓÔÉÔØ ÆÁÊÌÙ %%license"
 
-#: lib/poptQV.c:246
+#: lib/poptQV.c:250
 #, c-format
 msgid "skip %%readme files"
 msgstr "ÐÒÏÐÕÓÔÉÔØ ÆÁÊÌÙ %%readme"
 
-#: lib/poptQV.c:252
+#: lib/poptQV.c:256
 msgid "use the following query format"
 msgstr "ÉÓÐÏÌØÚÕÊÔÅ ÓÌÅÄÕÀÝÉÊ ÆÏÒÍÁÔ ÚÁÐÒÏÓÁ"
 
-#: lib/poptQV.c:254
+#: lib/poptQV.c:258
 msgid "substitute i18n sections into spec file"
 msgstr "ÚÁÍÅÎÉÔØ ÓÅËÃÉÉ i18n × ÆÁÊÌÅ ÓÐÅÃÉÆÉËÁÃÉÉ"
 
-#: lib/poptQV.c:256
+#: lib/poptQV.c:260
 msgid "display the states of the listed files"
 msgstr "ÐÏËÁÚÁÔØ ÓÏÓÔÏÑÎÉÅ ÐÅÒÅÞÉÓÌÅÎÎÙÈ ÆÁÊÌÏ×"
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:286
 msgid "don't verify size of files"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÒÁÚÍÅÒ ÆÁÊÌÏ×"
 
-#: lib/poptQV.c:285
+#: lib/poptQV.c:289
 msgid "don't verify symlink path of files"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÐÕÔØ ÓÉÍ×ÏÌÉÞÅÓËÉÈ ÓÓÙÌÏË"
 
-#: lib/poptQV.c:288
+#: lib/poptQV.c:292
 msgid "don't verify owner of files"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÈÏÚÑÉÎÁ ÆÁÊÌÏ×"
 
-#: lib/poptQV.c:291
+#: lib/poptQV.c:295
 msgid "don't verify group of files"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÇÒÕÐÐÕ ÆÁÊÌÏ×"
 
-#: lib/poptQV.c:294
+#: lib/poptQV.c:298
 msgid "don't verify modification time of files"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ×ÒÅÍÑ ÍÏÄÉÆÉËÁÃÉÉ ÆÁÊÌÏ×"
 
-#: lib/poptQV.c:297 lib/poptQV.c:300
+#: lib/poptQV.c:301 lib/poptQV.c:304
 msgid "don't verify mode of files"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÐÒÁ×Á ÄÏÓÔÕÐÁ ÆÁÊÌÏ× ÐÁËÅÔÁ"
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:307
+#, fuzzy
+msgid "don't verify file security contexts"
+msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÆÁÊÌÙ ÐÁËÅÔÁ"
+
+#: lib/poptQV.c:309
 msgid "don't verify files in package"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÆÁÊÌÙ ÐÁËÅÔÁ"
 
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
+#: lib/poptQV.c:312 lib/poptQV.c:315 tools/rpmgraph.c:267
 msgid "don't verify package dependencies"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÚÁ×ÉÓÉÍÏÓÔÉ ÐÁËÅÔÁ"
 
-#: lib/poptQV.c:314 lib/poptQV.c:318 lib/poptQV.c:321 lib/poptQV.c:324
+#: lib/poptQV.c:320 lib/poptQV.c:324 lib/poptQV.c:327 lib/poptQV.c:330
 msgid "don't execute verify script(s)"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ ÓÃÅÎÁÒÉÊ(É) ÐÒÏ×ÅÒËÉ"
 
-#: lib/poptQV.c:348
+#: lib/poptQV.c:354
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÐÏÄÐÉÓØ(É) ÔÉÐÁ GPG V3 DSA"
 
-#: lib/poptQV.c:351
+#: lib/poptQV.c:357
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÐÏÄÐÉÓÉ ÔÉÐÁ PGP V3 RSA/MD5"
 
-#: lib/poptQV.c:366
+#: lib/poptQV.c:372
 msgid "sign package(s) (identical to --resign)"
 msgstr "ÐÏÄÐÉÓÁÔØ ÐÁËÅÔ(Ù) (ÔÏ ÖÅ ÓÁÍÏÅ ÞÔÏ --resign)"
 
-#: lib/poptQV.c:368
+#: lib/poptQV.c:374
 msgid "verify package signature(s)"
 msgstr "ÐÒÏ×ÅÒÉÔØ ÐÏÄÐÉÓØ(É) ÐÁËÅÔÁ"
 
-#: lib/poptQV.c:370
+#: lib/poptQV.c:376
 msgid "import an armored public key"
 msgstr "ÉÍÐÏÒÔÉÒÏ×ÁÔØ ÏÔËÒÙÔÙÊ ËÌÀÞ"
 
-#: lib/poptQV.c:372
+#: lib/poptQV.c:378
 msgid "sign package(s) (identical to --addsign)"
 msgstr "ÐÏÄÐÉÓÁÔØ ÐÁËÅÔ (ÔÏ ÖÅ ÓÁÍÏÅ ÞÔÏ --addsign)"
 
-#: lib/poptQV.c:374
+#: lib/poptQV.c:380
 msgid "generate signature"
 msgstr "ÇÅÎÅÒÉÒÏ×ÁÔØ ÐÏÄÐÉÓØ"
 
-#: lib/psm.c:269
+#: lib/psm.c:268
 msgid "source package expected, binary found\n"
 msgstr "ÏÂÎÁÒÕÖÅΠÄ×ÏÉÞÎÙÊ ÐÁËÅÔ ×ÍÅÓÔÏ ÏÖÉÄÁÅÍÏÇÏ ÉÓÈÏÄÎÏÇÏ\n"
 
-#: lib/psm.c:394
+#: lib/psm.c:386
 msgid "source package contains no .spec file\n"
 msgstr "ÉÓÈÏÄÎÙÊ ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ\n"
 
-#: lib/psm.c:480
+#: lib/psm.c:472
 #, fuzzy, c-format
 msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
 msgstr "%s: waitpid(%d) rc %d status %x\n"
 
-#: lib/psm.c:562
+#: lib/psm.c:554
 #, c-format
 msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
 msgstr "%s: %s(%s-%s-%s) ÐÒÏÐÕÓËÁÅÔÓÑ ÌÉÛÎÉÊ \"%s\".\n"
 
-#: lib/psm.c:570
+#: lib/psm.c:562
 #, c-format
 msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
 msgstr "%s: %s(%s-%s-%s) %sÚÁÐÕÓË ÓÉÎÈÒÏÎÎÏÇÏ ÓÃÅÎÁÒÉÑ\n"
 
-#: lib/psm.c:735
+#: lib/psm.c:730
 #, 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:756
+#: lib/psm.c:751
 #, 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:762
+#: lib/psm.c:757
 #, c-format
 msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
 msgstr "%s(%s-%s-%s) ÏÛÉÂËÁ ×ÙÐÏÌÎÅÎÉÑ ÓÃÅÎÁÒÉÑ, ËÏÄ ×ÏÚ×ÒÁÔÁ %d\n"
 
-#: lib/psm.c:1191
+#: lib/psm.c:1188
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "%s: %s ÓÏÄÅÒÖÉÔ %d ÆÁÊÌÏ×, ÒÅÚÕÌØÔÁÔ ÐÒÏ×ÅÒËÉ: %d\n"
 
-#: lib/psm.c:1330
+#: lib/psm.c:1323
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr "%s: %s ÏÛÉÂËÁ ÓÃÅÎÁÒÉÑ (%d), ÐÒÏÐÕÓËÁÅÔÓÑ %s\n"
 
-#: lib/psm.c:1439
+#: lib/psm.c:1432
 msgid "Unable to reload signature header\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÅÒÅÚÁÇÒÕÚÉÔØ ÚÁÇÏÌÏ×ÏË ÐÏÄÐÉÓÉ\n"
 
-#: lib/psm.c:1485
-#, c-format
-msgid "user %s does not exist - using root\n"
-msgstr "ÐÏÌØÚÏ×ÁÔÅÌØ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ - ÉÓÐÏÌØÚÕÅÔÓÑ root\n"
-
-#: lib/psm.c:1494
-#, c-format
-msgid "group %s does not exist - using root\n"
-msgstr "ÇÒÕÐÐÁ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ - ÉÓÐÏÌØÚÕÅÔÓÑ root\n"
-
-#: lib/psm.c:1546
+#: lib/psm.c:1510
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "ÒÁÓÐÁËÏ×ËÁ ÁÒÈÉ×Á ÎÅ ÕÄÁÌÁÓØ%s%s: %s\n"
 
-#: lib/psm.c:1547
+#: lib/psm.c:1511
 msgid " on file "
 msgstr " ÎÁ ÆÁÊÌÅ "
 
-#: lib/psm.c:1733
+#: lib/psm.c:1697
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%s ÏÛÉÂËÁ ÎÁ ÆÁÊÌÅ %s: %s\n"
 
-#: lib/psm.c:1736
+#: lib/psm.c:1700
 #, c-format
 msgid "%s failed: %s\n"
 msgstr "%s ÎÅ ÕÄÁÌÏÓØ: %s\n"
 
-#: lib/query.c:118 lib/rpmts.c:565
+#: lib/query.c:118 lib/rpmts.c:566
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "ÏÛÉÂËÁ × ÆÏÒÍÁÔÅ: %s\n"
@@ -2294,8 +2305,8 @@ msgstr "
 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:462
-#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576
+#: 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
 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157
 #, c-format
 msgid "open of %s failed: %s\n"
@@ -2310,7 +2321,7 @@ msgstr "
 msgid "old format source packages cannot be queried\n"
 msgstr "ÚÁÐÒÏÓÙ Ë ÉÓÈÏÄÎÙÍ ÐÁËÅÔÁÍ × ÓÔÁÒÏÍ ÆÏÒÍÁÔÅ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ\n"
 
-#: lib/query.c:488 lib/rpminstall.c:608
+#: lib/query.c:488 lib/rpminstall.c:622
 #, c-format
 msgid "%s: not an rpm package (or package manifest): %s\n"
 msgstr "%s: ÎÅ ÐÁËÅÔ (ÉÌÉ ÍÁÎÉÆÅÓÔ ÐÁËÅÔÁ) rpm : %s\n"
@@ -2379,16 +2390,16 @@ msgstr "
 msgid "record %u could not be read\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ ÚÁÐÉÓØ %u\n"
 
-#: lib/query.c:766 lib/rpminstall.c:778
+#: lib/query.c:766 lib/rpminstall.c:792
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "ÐÁËÅÔ %s ÎÅ ÕÓÔÁÎÏ×ÌÅÎ\n"
 
-#: lib/rpmal.c:692
+#: lib/rpmal.c:694
 msgid "(added files)"
 msgstr "(ÆÁÊÌÙ ÄÏÂÁ×ÌÅÎÙ)"
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:772
 msgid "(added provide)"
 msgstr "(added provide)"
 
@@ -2514,36 +2525,36 @@ msgstr "  %s    A %s\tB %s\n"
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "ÐÁËÅÔ %s ÓÏÄÅÒÖÉÔ ÎÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ %s: %s\n"
 
-#: lib/rpmfi.c:546
+#: lib/rpmfi.c:561
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s ÐÒÏÐÕÝÅΠÉÚ-ÚÁ ÆÌÁÇÁ missingok\n"
 
-#: lib/rpmfi.c:784
+#: lib/rpmfi.c:799
 msgid "========== relocations\n"
 msgstr "========== ÐÅÒÅÍÅÝÅÎÉÊ\n"
 
-#: lib/rpmfi.c:788
+#: lib/rpmfi.c:803
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr "%5d ÉÓËÌÀÞÅΠ%s\n"
 
-#: lib/rpmfi.c:791
+#: lib/rpmfi.c:806
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d ÐÅÒÅÍÅÝÅÎÉÅ %s -> %s\n"
 
-#: lib/rpmfi.c:919
+#: lib/rpmfi.c:934
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "ÉÓËÌÀÞÁÅÔÓÑ %s %s\n"
 
-#: lib/rpmfi.c:929
+#: lib/rpmfi.c:944
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "ÐÅÒÅÍÅÝÁÅÔÓÑ %s × %s\n"
 
-#: lib/rpmfi.c:1021
+#: lib/rpmfi.c:1036
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "ÐÅÒÅÍÅÝÁÅÔÓÑ ËÁÔÁÌÏÇ %s × %s\n"
@@ -2572,87 +2583,87 @@ msgstr "
 msgid "Upgrading packages..."
 msgstr "ïÂÎÏ×ÌÅÎÉÅ ÐÁËÅÔÏ×..."
 
-#: lib/rpminstall.c:394
+#: lib/rpminstall.c:408
 #, c-format
 msgid "Adding goal: %s\n"
 msgstr "äÏÂÁ×ÌÑÅÔÓÑ ÃÅÌØ: %s\n"
 
-#: lib/rpminstall.c:409
+#: lib/rpminstall.c:423
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "úÁÇÒÕÖÁÅÔÓÑ %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:436
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... ËÁË %s\n"
 
-#: lib/rpminstall.c:426
+#: lib/rpminstall.c:440
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s ÐÒÏÐÕÓËÁÅÔÓÑ - ÏÛÉÂËÁ ÐÅÒÅÄÁÞÉ - %s\n"
 
-#: lib/rpminstall.c:481 lib/rpminstall.c:872 tools/rpmgraph.c:140
+#: lib/rpminstall.c:495 lib/rpminstall.c:886 tools/rpmgraph.c:140
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s ÎÅ ÍÏÖÅÔ ÂÙÔØ ÕÓÔÁÎÏ×ÌÅÎ\n"
 
-#: lib/rpminstall.c:523
-#, c-format
-msgid "package %s is not relocateable\n"
+#: lib/rpminstall.c:537
+#, fuzzy, c-format
+msgid "package %s is not relocatable\n"
 msgstr "ÐÁËÅÔ %s - ÎÅ ÐÅÒÅÍÅÝÁÅÍÙÊ\n"
 
-#: lib/rpminstall.c:573
+#: lib/rpminstall.c:587
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "ÏÛÉÂËÁ ÞÔÅÎÉÑ ÉÚ ÆÁÊÌÁ %s\n"
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:593
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "ÄÌÑ ÆÁÊÌÁ %s ÎÅÏÂÈÏÄÉÍÁ ÂÏÌÅÅ ÎÏ×ÁÑ ×ÅÒÓÉÑ RPM\n"
 
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:637
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "ÎÁÊÄÅÎÏ %d ÉÓÈÏÄÎÙÈ É %d ÂÉÎÁÒÎÙÈ ÐÁËÅÔÏ×\n"
 
-#: lib/rpminstall.c:637 lib/rpminstall.c:810 lib/rpminstall.c:1239
+#: lib/rpminstall.c:651 lib/rpminstall.c:824 lib/rpminstall.c:1253
 #: tools/rpmgraph.c:195
 msgid "Failed dependencies:\n"
 msgstr "îÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ:\n"
 
-#: lib/rpminstall.c:644 tools/rpmgraph.c:201
+#: lib/rpminstall.c:658 tools/rpmgraph.c:201
 msgid "    Suggested resolutions:\n"
 msgstr "    ðÒÅÄÌÁÇÁÅÍÏÅ ÒÁÚÒÅÛÅÎÉÅ:\n"
 
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:688
 msgid "installing binary packages\n"
 msgstr "ÕÓÔÁÎÁ×ÌÉ×ÁÀ ÂÉÎÁÒÎÙÅ ÐÁËÅÔÙ\n"
 
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:712
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ %s: %s\n"
 
-#: lib/rpminstall.c:787
+#: lib/rpminstall.c:801
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" ÚÁÄÁÅÔ ÎÅÓËÏÌØËÏ ÐÁËÅÔÏ×\n"
 
-#: lib/rpminstall.c:856
+#: lib/rpminstall.c:870
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
 
-#: lib/rpminstall.c:862
+#: lib/rpminstall.c:876
 #, c-format
 msgid "Installing %s\n"
 msgstr "õÓÔÁÎÁ×ÌÉ×ÁÅÔÓÑ %s\n"
 
-#: lib/rpminstall.c:1233
+#: lib/rpminstall.c:1247
 #, c-format
 msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
 msgstr "ïÔËÁÔ ÐÁËÅÔÏ× (+%d/-%d) ÎÁ %-24.24s (0x%08x):\n"
@@ -2719,8 +2730,8 @@ msgid "package %s is already installed"
 msgstr "ÐÁËÅÔ %s ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ"
 
 #: lib/rpmps.c:223
-#, c-format
-msgid "path %s in package %s is not relocateable"
+#, fuzzy, c-format
+msgid "path %s in package %s is not relocatable"
 msgstr "ÐÕÔØ %s × ÐÁËÅÔÅ %s - ÎÅ ÐÅÒÅÍÅÝÁÅÍÙÊ"
 
 #: lib/rpmps.c:228
@@ -2868,51 +2879,76 @@ msgstr "
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s ÄÌÑ ÞÔÅÎÉÑ: %s.\n"
 
-#: lib/rpmts.c:162
+#: lib/rpmsx.c:343
+#, c-format
+msgid "%s:  no newline on line number %d (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:360
+#, c-format
+msgid "%s:  line number %d is missing fields (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:391
+#, 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
+#, c-format
+msgid "%s:  invalid type specifier %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmsx.c:434
+#, c-format
+msgid "%s:  invalid context %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmts.c:163
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ ÂÁÚÕ ÄÁÎÎÙÈ Packages × %s\n"
 
-#: lib/rpmts.c:252
+#: lib/rpmts.c:253
 #, fuzzy, c-format
 msgid "extra '(' in package label: %s\n"
 msgstr "ÎÅ×ÅÒÎÙÊ ÎÏÍÅÒ ÐÁËÅÔÁ: %s\n"
 
-#: lib/rpmts.c:270
+#: lib/rpmts.c:271
 #, fuzzy, c-format
 msgid "missing '(' in package label: %s\n"
 msgstr "ïÔÓÕÔÓÔ×ÕÅÔ '(' × %s %s\n"
 
-#: lib/rpmts.c:278
+#: lib/rpmts.c:279
 #, fuzzy, c-format
 msgid "missing ')' in package label: %s\n"
 msgstr "ÎÅ×ÅÒÎÙÊ ÎÏÍÅÒ ÐÁËÅÔÁ: %s\n"
 
-#: lib/rpmts.c:455
+#: lib/rpmts.c:456
 #, c-format
 msgid "cannot open Solve database in %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÂÁÚÕ ÄÁÎÎÙÈ ÒÁÚÒÅÛÅÎÉÑ ÚÁ×ÉÓÉÍÏÓÔÅÊ × %s\n"
 
-#: lib/rpmts.c:597
+#: lib/rpmts.c:598
 #, c-format
 msgid "Adding: %s\n"
 msgstr "äÏÂÁ×ÌÑÅÔÓÑ: %s\n"
 
-#: lib/rpmts.c:609
+#: lib/rpmts.c:610
 #, c-format
 msgid "Suggesting: %s\n"
 msgstr "ðÒÅÄÌÁÇÁÅÔÓÑ: %s\n"
 
-#: lib/rpmts.c:1077
+#: lib/rpmts.c:1097
 #, fuzzy
 msgid "mounted filesystems:\n"
 msgstr "ÓÔÒÏÉÔÓÑ ÓÐÉÓÏË ÓÍÏÎÔÉÒÏ×ÁÎÎÙÈ ÆÁÊÌÏ×ÙÈ ÓÉÓÔÅÍ\n"
 
-#: lib/rpmts.c:1079
+#: lib/rpmts.c:1099
 msgid "    i    dev bsize       bavail       iavail mount point\n"
 msgstr ""
 
-#: lib/rpmts.c:1135
+#: lib/rpmts.c:1155
 #, c-format
 msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
 msgstr ""
@@ -3115,12 +3151,12 @@ msgstr "
 msgid "computing file dispositions\n"
 msgstr "ÐÏÄÓÞÉÔÙ×ÁÅÔÓÑ ÄÉÓÐÏÚÉÃÉÑ ÆÁÊÌÏ×\n"
 
-#: lib/verify.c:288
+#: lib/verify.c:319
 #, c-format
 msgid "missing  %c %s"
 msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ   %c %s"
 
-#: lib/verify.c:397
+#: lib/verify.c:433
 #, c-format
 msgid "Unsatisfied dependencies for %s: "
 msgstr "îÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ ÄÌÑ %s: "
@@ -3321,165 +3357,165 @@ msgstr "
 msgid "cannot open %s index\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÉÎÄÅËÓ %s\n"
 
-#: rpmdb/rpmdb.c:915
+#: rpmdb/rpmdb.c:917
 msgid "no dbpath has been set\n"
 msgstr "ÐÁÒÁÍÅÔÅÒ dbpath ÎÅ ÕÓÔÁÎÏ×ÌÅÎ\n"
 
-#: rpmdb/rpmdb.c:1193 rpmdb/rpmdb.c:1322 rpmdb/rpmdb.c:1373 rpmdb/rpmdb.c:2316
-#: rpmdb/rpmdb.c:2432 rpmdb/rpmdb.c:3161
+#: rpmdb/rpmdb.c:1195 rpmdb/rpmdb.c:1324 rpmdb/rpmdb.c:1375 rpmdb/rpmdb.c:2322
+#: rpmdb/rpmdb.c:2438 rpmdb/rpmdb.c:3167
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "ÏÛÉÂËÁ(%d) ÐÏÌÕÞÅÎÉÑ ÚÁÐÉÓÅÊ \"%s\" ÉÚ ÉÎÄÅËÓÁ %s\n"
 
-#: rpmdb/rpmdb.c:1567
+#: rpmdb/rpmdb.c:1569
 #, fuzzy
 msgid "miFreeHeader: skipping"
 msgstr "rpmdb: ÐÒÏÐÕÓËÁÅÔÓÑ"
 
-#: rpmdb/rpmdb.c:1577
+#: rpmdb/rpmdb.c:1579
 #, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "ÏÛÉÂËÁ (%d) ÓÏÈÒÁÎÅÎÉÑ ÚÁÐÉÓÉ #%d × %s\n"
 
-#: rpmdb/rpmdb.c:2209
+#: rpmdb/rpmdb.c:2212
 #, fuzzy
 msgid "rpmdbNextIterator: skipping"
 msgstr "rpmdb: ÐÒÏÐÕÓËÁÅÔÓÑ"
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2242
 #, c-format
 msgid "rpmdb: damaged header #%u retrieved -- skipping.\n"
 msgstr "rpmdb: ÐÏÌÕÞÅΠÐÏ×ÒÅÖÄÅÎÎÙÊ ÚÁÇÏÌÏ×ÏË #%u -- ÐÒÏÐÕÓËÁÅÔÓÑ.\n"
 
-#: rpmdb/rpmdb.c:2520
+#: rpmdb/rpmdb.c:2526
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "%s: ÎÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÅÓÔØ ÚÁÇÏÌÏ×ÏË × 0x%x\n"
 
-#: rpmdb/rpmdb.c:2583
+#: rpmdb/rpmdb.c:2589
 #, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "ÏÛÉÂËÁ(%d) ÐÏÄÇÏÔÏ×ËÉ ÚÁÐÉÓÉ ÚÁÇÏÌÏ×ËÁ  #%d ÄÌÑ ÕÄÁÌÅÎÉÑ %s\n"
 
-#: rpmdb/rpmdb.c:2698
+#: rpmdb/rpmdb.c:2704
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "ÕÄÁÌÑÅÔÓÑ \"%s\" ÉÚ ÉÎÄÅËÓÁ %s.\n"
 
-#: rpmdb/rpmdb.c:2702
+#: rpmdb/rpmdb.c:2708
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "ÕÄÁÌÑÅÔÓÑ %d ÚÁÐÉÓÅÊ ÉÚ ÉÎÄÅËÓÁ %s.\n"
 
-#: rpmdb/rpmdb.c:2730
+#: rpmdb/rpmdb.c:2736
 #, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "ÏÛÉÂËÁ(%d) ÐÏÌÕÞÅÎÉÑ \"%s\" ÚÁÐÉÓÅÊ ÉÚ ÉÎÄÅËÓÁ %s\n"
 
-#: rpmdb/rpmdb.c:2751
+#: rpmdb/rpmdb.c:2757
 #, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "ÏÛÉÂËÁ(%d) ÓÏÈÒÁÎÅÎÉÑ ÚÁÐÉÓÉ \"%s\" × %s\n"
 
-#: rpmdb/rpmdb.c:2761
+#: rpmdb/rpmdb.c:2767
 #, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "ÏÛÉÂËÁ(%d) ÕÄÁÌÅÎÉÑ ÚÁÐÉÓÉ %s ÉÚ %s\n"
 
-#: rpmdb/rpmdb.c:2910
+#: rpmdb/rpmdb.c:2916
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "ÏÛÉÂËÁ(%d) ÒÅÚÅÒ×ÉÒÏ×ÁÎÉÑ ÐÁÍÑÔÉ ÄÌÑ ÏÂÒÁÚÁ ÎÏ×ÏÇÏ ÐÁËÅÔÁ\n"
 
-#: rpmdb/rpmdb.c:2964
+#: rpmdb/rpmdb.c:2970
 #, fuzzy
 msgid "rpmdbAdd: skipping"
 msgstr "rpmdb: ÐÒÏÐÕÓËÁÅÔÓÑ"
 
-#: rpmdb/rpmdb.c:3136
+#: rpmdb/rpmdb.c:3142
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "ÄÏÂÁ×ÌÑÅÔÓÑ \"%s\" × ÉÎÄÅËÓ %s.\n"
 
-#: rpmdb/rpmdb.c:3140
+#: rpmdb/rpmdb.c:3146
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "ÄÏÂÁ×ÌÑÅÔÓÑ %d ÚÁÐÉÓÅÊ × ÉÎÄÅËÓ %s\n"
 
-#: rpmdb/rpmdb.c:3180
+#: rpmdb/rpmdb.c:3186
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "ÏÛÉÂËÁ(%d) ÚÁÐÉÓÉ ÚÁÐÉÓÉ %s × %s\n"
 
-#: rpmdb/rpmdb.c:3581
+#: rpmdb/rpmdb.c:3587
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr "ÕÄÁÌÑÅÔÓÑ %s ÐÏÓÌÅ ÕÓÐÅÛÎÏÇÏ ÚÁ×ÅÒÛÅÎÉÑ ÐÅÒÅÉÎÄÅËÁÃÉÉ ÂÁÚÙ × db3.\n"
 
-#: rpmdb/rpmdb.c:3619
+#: rpmdb/rpmdb.c:3625
 msgid "no dbpath has been set"
 msgstr "ÐÁÒÁÍÅÔÅÒ dbpath ÎÅ ÕÓÔÁÎÏ×ÌÅÎ"
 
-#: rpmdb/rpmdb.c:3651
+#: rpmdb/rpmdb.c:3657
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "ÐÅÒÅÓÔÒÁÉ×ÁÅÔÓÑ ÂÁÚÁ ÄÁÎÎÙÈ %s × %s\n"
 
-#: rpmdb/rpmdb.c:3655
+#: rpmdb/rpmdb.c:3661
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr "×ÒÅÍÅÎÎÁÑ ÂÁÚÁ ÄÁÎÎÙÈ %s ÕÖÅ ÓÕÝÅÓÔ×ÕÅÔ\n"
 
-#: rpmdb/rpmdb.c:3661
+#: rpmdb/rpmdb.c:3667
 #, c-format
 msgid "creating directory %s\n"
 msgstr "ÓÏÚÄÁ£ÔÓÑ ËÁÔÁÌÏÇ %s\n"
 
-#: rpmdb/rpmdb.c:3663
+#: rpmdb/rpmdb.c:3669
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr "ÓÏÚÄÁ£ÔÓÑ ËÁÔÁÌÏÇ %s: %s\n"
 
-#: rpmdb/rpmdb.c:3670
+#: rpmdb/rpmdb.c:3676
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "ÏÔËÒÙ×ÁÅÔÓÑ ÓÔÁÒÁÑ ÂÁÚÁ ÄÁÎÎÙÈ ÞÅÒÅÚ dbapi %d\n"
 
-#: rpmdb/rpmdb.c:3683
+#: rpmdb/rpmdb.c:3689
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "ÏÔËÒÙ×ÁÅÔÓÑ ÎÏ×ÁÑ ÂÁÚÁ ÄÁÎÎÙÈ ÞÅÒÅÚ dbapi %d\n"
 
-#: rpmdb/rpmdb.c:3712
+#: rpmdb/rpmdb.c:3718
 #, c-format
 msgid "header #%u in the database is bad -- skipping.\n"
 msgstr "ÚÁÇÏÌÏ×ÏË ÎÏÍÅÒ %u × ÂÁÚÅ ÄÁÎÎÙÈ ÎÅ×ÅÒÎÙÊ -- ÐÒÏÐÕÓËÁÅÔÓÑ.\n"
 
-#: rpmdb/rpmdb.c:3752
+#: rpmdb/rpmdb.c:3758
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÄÏÂÁ×ÉÔØ ÚÁÐÉÓØ (ÐÅÒ×ÏÎÁÞÁÌØÎÏ × %u)\n"
 
-#: rpmdb/rpmdb.c:3766
+#: rpmdb/rpmdb.c:3772
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 "ÐÅÒÅÓÔÒÏÅÎÉÅ ÂÁÚÙ ÄÁÎÎÙÈ ÎÅ ÕÄÁÌÏÓØ, ÓÔÁÒÁÑ ÂÁÚÁ ÄÁÎÎÙÈ ÏÓÔÁÅÔÓÑ ÎÁ ÍÅÓÔÅ\n"
 
-#: rpmdb/rpmdb.c:3774
+#: rpmdb/rpmdb.c:3780
 msgid "failed to replace old database with new database!\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÚÁÍÅÎÉÔØ ÓÔÁÒÕÀ ÂÁÚÕ ÄÁÎÎÙÈ ÎÁ ÎÏ×ÕÀ!\n"
 
-#: rpmdb/rpmdb.c:3776
+#: rpmdb/rpmdb.c:3782
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "ÆÁÊÌÙ × %s ÚÁÍÅÎÑÀÔÓÑ ÆÁÊÌÁÍÉ ÉÚ %s ÄÌÑ ×ÏÓÓÔÁÎÏ×ÌÅÎÉÑ"
 
-#: rpmdb/rpmdb.c:3786
+#: rpmdb/rpmdb.c:3792
 #, c-format
 msgid "removing directory %s\n"
 msgstr "ÕÄÁÌÑÅÔÓÑ ËÁÔÁÌÏÇ %s\n"
 
-#: rpmdb/rpmdb.c:3788
+#: rpmdb/rpmdb.c:3794
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ËÁÔÁÌÏÇÁ %s: %s\n"
@@ -3535,42 +3571,42 @@ msgstr "
 msgid "Macro %%%s (%s) was not used below level %d\n"
 msgstr "íÁËÒÏÓ %%%s (%s) ÎÅ ÂÙÌ ÉÓÐÏÌØÚÏ×ÁΠÎÉÖÅ ÕÒÏ×ÎÑ %d\n"
 
-#: rpmio/macro.c:982
+#: rpmio/macro.c:984
 #, c-format
 msgid "Unknown option %c in %s(%s)\n"
 msgstr "îÅÉÚ×ÅÓÔÎÙÊ ÐÁÒÁÍÅÔÒ %c × %s(%s)\n"
 
-#: rpmio/macro.c:1182
+#: rpmio/macro.c:1184
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)\n"
 msgstr "çÌÕÂÉÎÁ ÒÅËÕÒÓÉÉ(%d) ÂÏÌØÛÅ ÄÏÐÕÓÔÉÍÏÊ(%d)\n"
 
-#: rpmio/macro.c:1252 rpmio/macro.c:1269
+#: rpmio/macro.c:1255 rpmio/macro.c:1272
 #, c-format
 msgid "Unterminated %c: %s\n"
 msgstr "îÅÚÁËÒÙÔÁÑ %c: %s\n"
 
-#: rpmio/macro.c:1310
+#: rpmio/macro.c:1313
 #, c-format
 msgid "A %% is followed by an unparseable macro\n"
 msgstr "ÎÅÐÏÎÑÔÎÙÊ ÍÁËÒÏÓ ÐÏÓÌÅ %%\n"
 
-#: rpmio/macro.c:1439
+#: rpmio/macro.c:1442
 #, c-format
 msgid "Macro %%%.*s not found, skipping\n"
 msgstr "íÁËÒÏÓ %%%.*s ÎÅ ÎÁÊÄÅÎ, ÐÒÏÐÕÓËÁÀ\n"
 
-#: rpmio/macro.c:1510
+#: rpmio/macro.c:1513
 msgid "Target buffer overflow\n"
 msgstr "ðÅÒÅÐÏÌÎÅÎÉÅ ÃÅÌÅ×ÏÇÏ ÂÕÆÅÒÁ\n"
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1705 rpmio/macro.c:1711
+#: rpmio/macro.c:1708 rpmio/macro.c:1714
 #, c-format
 msgid "File %s: %s\n"
 msgstr "æÁÊÌ %s: %s\n"
 
-#: rpmio/macro.c:1714
+#: rpmio/macro.c:1717
 #, c-format
 msgid "File %s is smaller than %u bytes\n"
 msgstr "äÌÉÎÁ ÆÁÊÌÁ %s ÍÅÎØÛÅ ÞÅÍ %u ÂÁÊÔ\n"
index 11d4e4d..df1da4f 100644 (file)
--- a/po/sk.po
+++ b/po/sk.po
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:11-0500\n"
+"POT-Creation-Date: 2003-12-30 08:11-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"
@@ -20,44 +20,44 @@ msgstr "nevyrie
 msgid "Unable to open spec file %s: %s\n"
 msgstr "Nie je mo¾né otvori» spec súbor: %s\n"
 
-#: build.c:152 build.c:164
+#: build.c:150 build.c:162
 #, fuzzy, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr "Otvorenie rúry pre tar zlyhalo: %s\n"
 
 #. Give up
-#: build.c:171
+#: build.c:169
 #, fuzzy, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "Nie je mo¾né preèíta» spec súbor z %s\n"
 
-#: build.c:199
+#: build.c:197
 #, fuzzy, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr "Nie je mo¾né premenova» %s na %s: %s\n"
 
-#: build.c:239
+#: build.c:237
 #, fuzzy, c-format
 msgid "failed to stat %s: %m\n"
 msgstr "nepodarilo sa zisti» stav %s: %s"
 
-#: build.c:244
+#: build.c:242
 #, fuzzy, c-format
 msgid "File %s is not a regular file.\n"
 msgstr "Súbor nie je obyèajný súbor: %s\n"
 
-#: build.c:253
+#: build.c:251
 #, fuzzy, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr "%s zrejme nie je RPM balík\n"
 
 #. parse up the build operators
-#: build.c:324
+#: build.c:322
 #, fuzzy, c-format
 msgid "Building target platforms: %s\n"
 msgstr "predefinova» cieµovú platformu"
 
-#: build.c:339
+#: build.c:337
 #, fuzzy, c-format
 msgid "Building for target %s\n"
 msgstr "vyhµadáva sa balík %s\n"
@@ -110,7 +110,7 @@ msgstr ""
 msgid "%s: %s\n"
 msgstr "súbor %s: %s\n"
 
-#: rpmqv.c:129 lib/poptALL.c:114
+#: rpmqv.c:129 lib/poptALL.c:119
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM verzia %s\n"
@@ -437,166 +437,166 @@ msgstr "&& a || nie s
 msgid "syntax error in expression\n"
 msgstr "chyba syntaxe vo výraze"
 
-#: build/files.c:278
+#: build/files.c:280
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "chyba PREKROÈENIA ÈASU: %s\n"
 
-#: build/files.c:343 build/files.c:543 build/files.c:739
+#: build/files.c:345 build/files.c:545 build/files.c:741
 #, fuzzy, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "chýbajúce    %s\n"
 
-#: build/files.c:354 build/files.c:673 build/files.c:750
+#: build/files.c:356 build/files.c:675 build/files.c:752
 #, fuzzy, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "chýbajúca ':' na %s:%d"
 
-#: build/files.c:392 build/files.c:698
+#: build/files.c:394 build/files.c:700
 #, fuzzy, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "Chybný %s prvok: %s"
 
-#: build/files.c:502
+#: build/files.c:504
 #, fuzzy, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "chýbajúce    %s\n"
 
-#: build/files.c:559
+#: build/files.c:561
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr ""
 
-#: build/files.c:597
+#: build/files.c:599
 #, fuzzy, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "Chybná %s() syntax: %s"
 
-#: build/files.c:607
+#: build/files.c:609
 #, fuzzy, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "Chybná ¹pecifikácia práv %s(): %s"
 
-#: build/files.c:619
+#: build/files.c:621
 #, fuzzy, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "Chybná ¹pecifikácia práv adresára %s(): %s"
 
-#: build/files.c:777
+#: build/files.c:779
 #, fuzzy, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr "Iba jeden záznam v %%lang(): %s"
 
 #. @innercontinue@
-#: build/files.c:788
+#: build/files.c:790
 #, fuzzy, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr "Iba jeden záznam v %%lang(): %s"
 
-#: build/files.c:917
+#: build/files.c:919
 #, fuzzy, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr "Dosiahnutý limit pre %%docdir"
 
-#: build/files.c:925
+#: build/files.c:927
 #, fuzzy, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr "Iba jeden argument pre %%docdir"
 
 #. We already got a file -- error
-#: build/files.c:959
+#: build/files.c:961
 #, fuzzy, c-format
 msgid "Two files on one line: %s\n"
 msgstr "Dva súbory na riadku: %s"
 
-#: build/files.c:976
+#: build/files.c:978
 #, fuzzy, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "Súbory musia zaèína» znakom \"/\": %s"
 
-#: build/files.c:989
+#: build/files.c:991
 #, fuzzy, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr "Nie je mo¾né mie¹a» ¹peciálne %%doc s inými formami: %s"
 
-#: build/files.c:1141
+#: build/files.c:1149
 #, fuzzy, c-format
 msgid "File listed twice: %s\n"
 msgstr "Súbor zadaný dvakrát: %s."
 
-#: build/files.c:1280
+#: build/files.c:1288
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1520
+#: build/files.c:1535
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Súbor nesúhlasí s prefixom (%s): %s."
 
-#: build/files.c:1544
+#: build/files.c:1559
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "Súbor nebol nájdený: %s"
 
-#: build/files.c:1752
+#: build/files.c:1767
 #, fuzzy, c-format
 msgid "%s: public key read failed.\n"
 msgstr "%s: readLead zlyhalo\n"
 
-#: build/files.c:1756 lib/rpmchecksig.c:580
+#: build/files.c:1771 lib/rpmchecksig.c:580
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: build/files.c:1804
+#: build/files.c:1819
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Súbor potrebuje na zaèiatku \"/\": %s"
 
-#: build/files.c:1828
+#: build/files.c:1843
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "riadok %d: V %s sú vy¾adované verzie: %s"
 
-#: build/files.c:1845 lib/rpminstall.c:347
+#: build/files.c:1860 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:1905
+#: build/files.c:1920
 #, 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:1916 build/pack.c:156
+#: build/files.c:1931 build/pack.c:156
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "riadok: %s"
 
-#: build/files.c:2307
+#: build/files.c:2323
 #, fuzzy, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "súbor %s: %s\n"
 
-#: build/files.c:2319 build/parsePrep.c:50
+#: build/files.c:2335 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Chybný vlastník/skupina: %s\n"
 
-#: build/files.c:2363
+#: build/files.c:2379
 #, fuzzy, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr "vyhµadáva sa balík %s\n"
 
-#: build/files.c:2386
+#: build/files.c:2402
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
 "%s"
 msgstr ""
 
-#: build/files.c:2414
+#: build/files.c:2430
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Spracovávajú sa súbory: %s\n"
@@ -740,7 +740,7 @@ msgstr "Nie je mo
 msgid "Could not open %s: %s\n"
 msgstr "Otvorenie %s zlyhalo\n"
 
-#: build/pack.c:632 lib/psm.c:1427
+#: build/pack.c:632 lib/psm.c:1420
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Nie je mo¾né zapísa» balík: %s"
@@ -770,7 +770,7 @@ msgstr "Nie je mo
 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:1725
+#: build/pack.c:725 lib/psm.c:1689
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Zapísané: %s\n"
@@ -1265,20 +1265,20 @@ msgstr "neoverova
 msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
 msgstr ""
 
-#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329
-#: lib/poptQV.c:338 lib/poptQV.c:377
+#: build/poptBT.c:229 lib/poptALL.c:240 lib/poptI.c:261 lib/poptQV.c:335
+#: lib/poptQV.c:344 lib/poptQV.c:383
 #, fuzzy
 msgid "don't verify package digest(s)"
 msgstr "neoverova» závislosti balíka"
 
-#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332
-#: lib/poptQV.c:340 lib/poptQV.c:380
+#: build/poptBT.c:231 lib/poptALL.c:242 lib/poptI.c:263 lib/poptQV.c:338
+#: lib/poptQV.c:346 lib/poptQV.c:386
 #, fuzzy
 msgid "don't verify database header(s) when retrieved"
 msgstr "neoverova» architektúru balíka"
 
-#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335
-#: lib/poptQV.c:342 lib/poptQV.c:382
+#: build/poptBT.c:233 lib/poptALL.c:248 lib/poptI.c:265 lib/poptQV.c:341
+#: lib/poptQV.c:348 lib/poptQV.c:388
 #, fuzzy
 msgid "don't verify package signature(s)"
 msgstr "overi» podpis balíka"
@@ -1353,32 +1353,32 @@ msgstr "Chybn
 msgid "Bad/unreadable  header"
 msgstr "Chybná/neèitateµná hlavièka"
 
-#: lib/cpio.c:232
+#: lib/cpio.c:233
 msgid "Header size too big"
 msgstr "Priveµká hlavièka"
 
-#: lib/cpio.c:233
+#: lib/cpio.c:234
 msgid "Unknown file type"
 msgstr "Neznámy typ súboru"
 
-#: lib/cpio.c:234
+#: lib/cpio.c:235
 #, fuzzy
 msgid "Missing hard link(s)"
 msgstr "chýbajúca ':' na %s:%d"
 
-#: lib/cpio.c:235
+#: lib/cpio.c:236
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:236
+#: lib/cpio.c:237
 msgid "Internal error"
 msgstr "Interná chyba"
 
-#: lib/cpio.c:237
+#: lib/cpio.c:238
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:250
+#: lib/cpio.c:251
 msgid " failed - "
 msgstr " zlyhalo - "
 
@@ -1514,46 +1514,56 @@ msgstr "S
 msgid "file %s is on an unknown device\n"
 msgstr "súbor %s sa nachádza na neznámom zariadení"
 
-#: lib/fsm.c:350
+#: lib/fsm.c:352
 msgid "========== Directories not explicitly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:352
+#: lib/fsm.c:354
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "riadok %d: %s"
 
-#: lib/fsm.c:1293
+#: lib/fsm.c:768
+#, fuzzy, c-format
+msgid "user %s does not exist - using root\n"
+msgstr "pou¾ívateµ %s neexistuje - pou¾ije sa root"
+
+#: lib/fsm.c:776
+#, fuzzy, c-format
+msgid "group %s does not exist - using root\n"
+msgstr "skupina %s neexistuje - pou¾ije sa root"
+
+#: lib/fsm.c:1334
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1592
+#: lib/fsm.c:1633
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1719 lib/fsm.c:1855
+#: lib/fsm.c:1760 lib/fsm.c:1896
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "varovanie: %s uchovaný ako %s"
 
-#: lib/fsm.c:1882
+#: lib/fsm.c:1923
 #, 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:1888
+#: lib/fsm.c:1929
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "rmdir %s zlyhalo: %s"
 
-#: lib/fsm.c:1903
+#: lib/fsm.c:1944
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "otvorenie %s zlyhalo\n"
 
-#: lib/fsm.c:1925
+#: lib/fsm.c:1966
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "varovanie: %s vytvorené ako %s"
@@ -1671,116 +1681,116 @@ msgstr "%s: readLead zlyhalo\n"
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: readLead zlyhalo\n"
 
-#: lib/poptALL.c:222
+#: lib/poptALL.c:227
 msgid "predefine MACRO with value EXPR"
 msgstr ""
 
-#: lib/poptALL.c:223 lib/poptALL.c:226
+#: lib/poptALL.c:228 lib/poptALL.c:231
 msgid "'MACRO EXPR'"
 msgstr ""
 
-#: lib/poptALL.c:225
+#: lib/poptALL.c:230
 msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: lib/poptALL.c:228
+#: lib/poptALL.c:233
 #, fuzzy
 msgid "print macro expansion of EXPR"
 msgstr "vypísa» verziu pou¾ívaného rpm"
 
-#: lib/poptALL.c:229
+#: lib/poptALL.c:234
 msgid "'EXPR'"
 msgstr ""
 
-#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254
+#: lib/poptALL.c:236 lib/poptALL.c:255 lib/poptALL.c:259
 msgid "read <FILE:...> instead of default file(s)"
 msgstr ""
 
-#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255
+#: lib/poptALL.c:237 lib/poptALL.c:256 lib/poptALL.c:260
 msgid "<FILE:...>"
 msgstr ""
 
-#: lib/poptALL.c:240 lib/poptALL.c:274
+#: lib/poptALL.c:245 lib/poptALL.c:279
 msgid "disable use of libio(3) API"
 msgstr ""
 
-#: lib/poptALL.c:246
+#: lib/poptALL.c:251
 #, fuzzy
 msgid "send stdout to CMD"
 msgstr "posla» ¹tandardný výstup do <príkazu>"
 
-#: lib/poptALL.c:247
+#: lib/poptALL.c:252
 msgid "CMD"
 msgstr ""
 
-#: lib/poptALL.c:258
+#: lib/poptALL.c:263
 #, fuzzy
 msgid "use ROOT as top level directory"
 msgstr "pou¾i» <adresár> ako adresár najvy¹¹ej úrovne"
 
-#: lib/poptALL.c:259
+#: lib/poptALL.c:264
 msgid "ROOT"
 msgstr ""
 
-#: lib/poptALL.c:262
+#: lib/poptALL.c:267
 msgid "display known query tags"
 msgstr ""
 
-#: lib/poptALL.c:264
+#: lib/poptALL.c:269
 msgid "display final rpmrc and macro configuration"
 msgstr ""
 
-#: lib/poptALL.c:266
+#: lib/poptALL.c:271
 msgid "provide less detailed output"
 msgstr ""
 
-#: lib/poptALL.c:268
+#: lib/poptALL.c:273
 msgid "provide more detailed output"
 msgstr ""
 
-#: lib/poptALL.c:270
+#: lib/poptALL.c:275
 msgid "print the version of rpm being used"
 msgstr "vypísa» verziu pou¾ívaného rpm"
 
-#: lib/poptALL.c:283
+#: lib/poptALL.c:288
 #, fuzzy
 msgid "debug payload file state machine"
 msgstr "chybný stav súboru: %s"
 
-#: lib/poptALL.c:285
+#: lib/poptALL.c:290
 #, fuzzy
 msgid "use threads for file state machine"
 msgstr "chybný stav súboru: %s"
 
-#: lib/poptALL.c:287
+#: lib/poptALL.c:292
 msgid "debug protocol data stream"
 msgstr ""
 
-#: lib/poptALL.c:292
+#: lib/poptALL.c:297
 #, fuzzy
 msgid "debug option/argument processing"
 msgstr "Vnútorná chyba pri spracovaní argumentu (%d) :-(\n"
 
-#: lib/poptALL.c:297
+#: lib/poptALL.c:302
 #, fuzzy
 msgid "debug package state machine"
 msgstr "chybný stav súboru: %s"
 
-#: lib/poptALL.c:299
+#: lib/poptALL.c:304
 #, fuzzy
 msgid "use threads for package state machine"
 msgstr "chybný stav súboru: %s"
 
-#: lib/poptALL.c:311
+#: lib/poptALL.c:316
 msgid "debug rpmio I/O"
 msgstr ""
 
-#: lib/poptALL.c:323
+#: lib/poptALL.c:330
 msgid "debug URL cache handling"
 msgstr ""
 
 #. @-nullpass@
-#: lib/poptALL.c:393
+#: lib/poptALL.c:400
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1809,18 +1819,18 @@ msgstr ""
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:151
+#: lib/poptI.c:155
 #, fuzzy
 msgid "add suggested packages to transaction"
 msgstr "opýta» sa v¹etkých balíkov v skupine"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:159
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "in¹talova» v¹etky súbory vrátane konfiguraèných súborov, ktoré by inak mohli "
 "by» vynechané"
 
-#: lib/poptI.c:159
+#: lib/poptI.c:163
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1828,157 +1838,162 @@ msgstr ""
 "odin¹talova» v¹etky balíky urèené <balíkom> (inak je chybou, pokiaµ <balík> "
 "¹pecifikuje viac ako jeden balík)"
 
-#: lib/poptI.c:164 tools/rpmgraph.c:273
+#: lib/poptI.c:168 tools/rpmgraph.c:273
 msgid "use anaconda \"presentation order\""
 msgstr ""
 
-#: lib/poptI.c:169 lib/poptI.c:238
+#: lib/poptI.c:173 lib/poptI.c:245
 #, fuzzy
 msgid "do not execute package scriptlet(s)"
 msgstr "nevykona» ¾iadne skripty ¹pecifikované balíkom"
 
-#: lib/poptI.c:173
+#: lib/poptI.c:177
 #, fuzzy
-msgid "relocate files in non-relocateable package"
+msgid "relocate files in non-relocatable package"
 msgstr "balík %s nie je nain¹talovaný\n"
 
-#: lib/poptI.c:176
+#: lib/poptI.c:180
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 msgid "erase (uninstall) package"
 msgstr "odin¹talova» balík"
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 #, fuzzy
 msgid "<package>+"
 msgstr "nájdených %d balíkov\n"
 
-#: lib/poptI.c:182 lib/poptI.c:219
+#: lib/poptI.c:186 lib/poptI.c:223
 #, fuzzy
 msgid "do not install configuration files"
 msgstr "zobrazi» v¹etky konfiguraèné súbory"
 
-#: lib/poptI.c:185 lib/poptI.c:224
+#: lib/poptI.c:189 lib/poptI.c:228
 msgid "do not install documentation"
 msgstr "nein¹talova» dokumentáciu"
 
-#: lib/poptI.c:187
+#: lib/poptI.c:191
 #, fuzzy
 msgid "skip files with leading component <path> "
 msgstr "vynecha» súbory v ceste <cesta>"
 
-#: lib/poptI.c:188
+#: lib/poptI.c:192
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:191
+#: lib/poptI.c:195
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "skratka pre --replacepkgs --replacefiles"
 
-#: lib/poptI.c:195
+#: lib/poptI.c:199
 #, fuzzy
 msgid "upgrade package(s) if already installed"
 msgstr "balík %s nie je nain¹talovaný\n"
 
-#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
+#: lib/poptI.c:200 lib/poptI.c:216 lib/poptI.c:312
 #, fuzzy
 msgid "<packagefile>+"
 msgstr "        -p <súbor_balíku>+"
 
-#: lib/poptI.c:198
+#: lib/poptI.c:202
 msgid "print hash marks as package installs (good with -v)"
 msgstr "vypisova» znaèky poèas in¹talácie balíka (vhodné s -v)"
 
-#: lib/poptI.c:201
+#: lib/poptI.c:205
 msgid "don't verify package architecture"
 msgstr "neoverova» architektúru balíka"
 
-#: lib/poptI.c:204
+#: lib/poptI.c:208
 msgid "don't verify package operating system"
 msgstr "neoverova» operaèný systém balíka"
 
-#: lib/poptI.c:207
+#: lib/poptI.c:211
 msgid "don't check disk space before installing"
 msgstr "pred in¹taláciou nekontrolova» dostupné miesto na disku"
 
-#: lib/poptI.c:209
+#: lib/poptI.c:213
 msgid "install documentation"
 msgstr "in¹talova» dokumentáciu"
 
-#: lib/poptI.c:212
+#: lib/poptI.c:216
 #, fuzzy
 msgid "install package(s)"
 msgstr "in¹talova» balík"
 
-#: lib/poptI.c:215
+#: lib/poptI.c:219
 msgid "update the database, but do not modify the filesystem"
 msgstr "aktualizova» databázu bez zmeny súborového systému"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:225
 msgid "do not verify package dependencies"
 msgstr "neoverova» závislosti balíka"
 
-#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:231 lib/poptQV.c:279 lib/poptQV.c:282
 #, fuzzy
 msgid "don't verify MD5 digest of files"
 msgstr "zobrazi» súbory v balíku"
 
-#: lib/poptI.c:230
+#: lib/poptI.c:233
+#, fuzzy
+msgid "don't install file security contexts"
+msgstr "zobrazi» v¹etky konfiguraèné súbory"
+
+#: lib/poptI.c:237
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "nemeni» poradie balíkov kvôli vyrie¹eniu závislostí"
 
-#: lib/poptI.c:235
+#: lib/poptI.c:242
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:242
+#: lib/poptI.c:249
 #, fuzzy, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "nevykona» ¾iadne etapy"
 
-#: lib/poptI.c:245
+#: lib/poptI.c:252
 #, fuzzy, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "nevykona» ¾iadne etapy"
 
-#: lib/poptI.c:248
+#: lib/poptI.c:255
 #, fuzzy, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "nevykona» ¾iadne etapy"
 
-#: lib/poptI.c:251
+#: lib/poptI.c:258
 #, fuzzy, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "nevykona» ¾iadne etapy"
 
-#: lib/poptI.c:261
+#: lib/poptI.c:268
 #, fuzzy
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "nevykona» ¾iadne skripty spú¹»ané týmto balíkom"
 
-#: lib/poptI.c:264
+#: lib/poptI.c:271
 #, fuzzy, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "nevykona» ¾iadne skripty ¹pecifikované balíkom"
 
-#: lib/poptI.c:267
+#: lib/poptI.c:274
 #, fuzzy, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "nevykona» ¾iadne in¹talaèné skripty"
 
-#: lib/poptI.c:270
+#: lib/poptI.c:277
 #, fuzzy, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "nevykona» ¾iadne in¹talaèné skripty"
 
-#: lib/poptI.c:273
+#: lib/poptI.c:280
 #, fuzzy, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "nevykona» ¾iadne in¹talaèné skripty"
 
-#: lib/poptI.c:277
+#: lib/poptI.c:284
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1986,53 +2001,53 @@ msgstr ""
 "aktualizova» na star¹iu verziu balíka (--force to pri aktualizácii urobí "
 "automaticky)"
 
-#: lib/poptI.c:281
+#: lib/poptI.c:288
 msgid "print percentages as package installs"
 msgstr "vypisova» percentá poèas in¹talácie balíka"
 
-#: lib/poptI.c:283
+#: lib/poptI.c:290
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "presunú» balík do <adresára>, pokiaµ to balík povoµuje"
 
-#: lib/poptI.c:284
+#: lib/poptI.c:291
 msgid "<dir>"
 msgstr ""
 
-#: lib/poptI.c:286
+#: lib/poptI.c:293
 #, fuzzy
 msgid "relocate files from path <old> to <new>"
 msgstr "presunú» súbory zo <starej_cesty> do <novej_cesty>"
 
-#: lib/poptI.c:287
+#: lib/poptI.c:294
 #, fuzzy
 msgid "<old>=<new>"
 msgstr "      --relocate <stará_cesta>=<nová_cesta>"
 
-#: lib/poptI.c:290
+#: lib/poptI.c:297
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:293
+#: lib/poptI.c:300
 msgid "install even if the package replaces installed files"
 msgstr "in¹talova» aj pokiaµ balík prepí¹e in¹talované súbory"
 
-#: lib/poptI.c:296
+#: lib/poptI.c:303
 msgid "reinstall if the package is already present"
 msgstr "prein¹talova», pokiaµ u¾ balík existuje"
 
-#: lib/poptI.c:298
+#: lib/poptI.c:305
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:299
+#: lib/poptI.c:306
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:301
+#: lib/poptI.c:308
 msgid "don't install, but tell if it would work or not"
 msgstr "nein¹talova», ale oznámi», èi by to bolo mo¾né"
 
-#: lib/poptI.c:304
+#: lib/poptI.c:311
 #, fuzzy
 msgid "upgrade package(s)"
 msgstr "    --upgrade <súbor_balíka>"
@@ -2120,214 +2135,209 @@ msgstr "op
 msgid "query/verify the package(s) which provide a dependency"
 msgstr "opýta» sa na balíky poskytujúce schopnos» <schopnos»>"
 
-#: lib/poptQV.c:226
+#: lib/poptQV.c:230
 msgid "list all configuration files"
 msgstr "zobrazi» v¹etky konfiguraèné súbory"
 
-#: lib/poptQV.c:228
+#: lib/poptQV.c:232
 #, fuzzy
 msgid "list all documentation files"
 msgstr "zobrazi» v¹etky dokumentaèné súbory"
 
-#: lib/poptQV.c:230
+#: lib/poptQV.c:234
 msgid "dump basic file information"
 msgstr "zobrazi» základné informácie o balíku"
 
-#: lib/poptQV.c:234
+#: lib/poptQV.c:238
 msgid "list files in package"
 msgstr "zobrazi» súbory v balíku"
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:243
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:243
+#: lib/poptQV.c:247
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
-#: lib/poptQV.c:246
+#: lib/poptQV.c:250
 #, fuzzy, c-format
 msgid "skip %%readme files"
 msgstr "%s: readLead zlyhalo\n"
 
-#: lib/poptQV.c:252
+#: lib/poptQV.c:256
 msgid "use the following query format"
 msgstr "pou¾i» nasledovný formát otázky"
 
-#: lib/poptQV.c:254
+#: lib/poptQV.c:258
 #, fuzzy
 msgid "substitute i18n sections into spec file"
 msgstr "zdrojový balík neobsahuje ¾iadny .spec súbor"
 
-#: lib/poptQV.c:256
+#: lib/poptQV.c:260
 msgid "display the states of the listed files"
 msgstr "zobrazii» stav daných súborov"
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:286
 #, fuzzy
 msgid "don't verify size of files"
 msgstr "zobrazi» súbory v balíku"
 
-#: lib/poptQV.c:285
+#: lib/poptQV.c:289
 #, fuzzy
 msgid "don't verify symlink path of files"
 msgstr "zobrazi» súbory v balíku"
 
-#: lib/poptQV.c:288
+#: lib/poptQV.c:292
 #, fuzzy
 msgid "don't verify owner of files"
 msgstr "zobrazi» súbory v balíku"
 
-#: lib/poptQV.c:291
+#: lib/poptQV.c:295
 #, fuzzy
 msgid "don't verify group of files"
 msgstr "zobrazi» súbory v balíku"
 
-#: lib/poptQV.c:294
+#: lib/poptQV.c:298
 msgid "don't verify modification time of files"
 msgstr ""
 
-#: lib/poptQV.c:297 lib/poptQV.c:300
+#: lib/poptQV.c:301 lib/poptQV.c:304
 #, fuzzy
 msgid "don't verify mode of files"
 msgstr "zobrazi» súbory v balíku"
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:307
+#, fuzzy
+msgid "don't verify file security contexts"
+msgstr "zobrazi» súbory v balíku"
+
+#: lib/poptQV.c:309
 #, fuzzy
 msgid "don't verify files in package"
 msgstr "zobrazi» súbory v balíku"
 
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
+#: lib/poptQV.c:312 lib/poptQV.c:315 tools/rpmgraph.c:267
 #, fuzzy
 msgid "don't verify package dependencies"
 msgstr "neoverova» závislosti balíka"
 
-#: lib/poptQV.c:314 lib/poptQV.c:318 lib/poptQV.c:321 lib/poptQV.c:324
+#: lib/poptQV.c:320 lib/poptQV.c:324 lib/poptQV.c:327 lib/poptQV.c:330
 #, fuzzy
 msgid "don't execute verify script(s)"
 msgstr "nevykona» ¾iadne etapy"
 
-#: lib/poptQV.c:348
+#: lib/poptQV.c:354
 #, fuzzy
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr "zobrazi» súbory v balíku"
 
-#: lib/poptQV.c:351
+#: lib/poptQV.c:357
 #, fuzzy
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr "zobrazi» súbory v balíku"
 
-#: lib/poptQV.c:366
+#: lib/poptQV.c:372
 #, fuzzy
 msgid "sign package(s) (identical to --resign)"
 msgstr "podpísa» balík (znièi» aktuálny podpis)"
 
-#: lib/poptQV.c:368
+#: lib/poptQV.c:374
 #, fuzzy
 msgid "verify package signature(s)"
 msgstr "overi» podpis balíka"
 
-#: lib/poptQV.c:370
+#: lib/poptQV.c:376
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:372
+#: lib/poptQV.c:378
 #, fuzzy
 msgid "sign package(s) (identical to --addsign)"
 msgstr "podpísa» balík (znièi» aktuálny podpis)"
 
-#: lib/poptQV.c:374
+#: lib/poptQV.c:380
 #, fuzzy
 msgid "generate signature"
 msgstr "vytvori» PGP/GPG podpis"
 
-#: lib/psm.c:269
+#: lib/psm.c:268
 #, fuzzy
 msgid "source package expected, binary found\n"
 msgstr "oèakávaný zdrojový balík, nájdený binárny"
 
-#: lib/psm.c:394
+#: lib/psm.c:386
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "zdrojový balík neobsahuje ¾iadny .spec súbor"
 
-#: lib/psm.c:480
+#: lib/psm.c:472
 #, c-format
 msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
 msgstr ""
 
-#: lib/psm.c:562
+#: lib/psm.c:554
 #, c-format
 msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
 msgstr ""
 
-#: lib/psm.c:570
+#: lib/psm.c:562
 #, c-format
 msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
 msgstr ""
 
-#: lib/psm.c:735
+#: lib/psm.c:730
 #, c-format
 msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
 msgstr ""
 
-#: lib/psm.c:756
+#: lib/psm.c:751
 #, 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:762
+#: lib/psm.c:757
 #, fuzzy, c-format
 msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
 msgstr "vykonanie skriptu zlyhalo"
 
-#: lib/psm.c:1191
+#: lib/psm.c:1188
 #, 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:1330
+#: lib/psm.c:1323
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1439
+#: lib/psm.c:1432
 #, fuzzy
 msgid "Unable to reload signature header\n"
 msgstr "Nie je mo¾né preèíta» ikonu: %s"
 
-#: lib/psm.c:1485
-#, fuzzy, c-format
-msgid "user %s does not exist - using root\n"
-msgstr "pou¾ívateµ %s neexistuje - pou¾ije sa root"
-
-#: lib/psm.c:1494
-#, fuzzy, c-format
-msgid "group %s does not exist - using root\n"
-msgstr "skupina %s neexistuje - pou¾ije sa root"
-
-#: lib/psm.c:1546
+#: lib/psm.c:1510
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "rozbalenie archívu zlyhalo%s%s: %s"
 
-#: lib/psm.c:1547
+#: lib/psm.c:1511
 msgid " on file "
 msgstr " pre súbor "
 
-#: lib/psm.c:1733
+#: lib/psm.c:1697
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "nepodarilo sa otvori» %s: %s"
 
-#: lib/psm.c:1736
+#: lib/psm.c:1700
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s zlyhalo"
 
-#: lib/query.c:118 lib/rpmts.c:565
+#: lib/query.c:118 lib/rpmts.c:566
 #, fuzzy, c-format
 msgid "incorrect format: %s\n"
 msgstr "chyba formátu: %s\n"
@@ -2376,8 +2386,8 @@ msgstr "bal
 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:462
-#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576
+#: 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
 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
@@ -2392,7 +2402,7 @@ msgstr "ot
 msgid "old format source packages cannot be queried\n"
 msgstr "nie je mo¾né pýta» sa zdrojových balíkov v starom formáte\n"
 
-#: lib/query.c:488 lib/rpminstall.c:608
+#: lib/query.c:488 lib/rpminstall.c:622
 #, fuzzy, c-format
 msgid "%s: not an rpm package (or package manifest): %s\n"
 msgstr "¾iadny z balíkov nespú¹»a %s\n"
@@ -2462,17 +2472,17 @@ msgstr "po
 msgid "record %u could not be read\n"
 msgstr "záznam %d nie je mo¾né preèíta»\n"
 
-#: lib/query.c:766 lib/rpminstall.c:778
+#: lib/query.c:766 lib/rpminstall.c:792
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "balík %s nie je nain¹talovaný\n"
 
-#: lib/rpmal.c:692
+#: lib/rpmal.c:694
 #, fuzzy
 msgid "(added files)"
 msgstr "chybný stav súboru: %s"
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:772
 msgid "(added provide)"
 msgstr ""
 
@@ -2597,36 +2607,36 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "po¾iadavka balíka %s nie je uspokojená: %s\n"
 
-#: lib/rpmfi.c:546
+#: lib/rpmfi.c:561
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s vynechané kvôli príznaku missingok\n"
 
-#: lib/rpmfi.c:784
+#: lib/rpmfi.c:799
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:788
+#: lib/rpmfi.c:803
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "OS je vynechaný: %s"
 
-#: lib/rpmfi.c:791
+#: lib/rpmfi.c:806
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "presúva sa %s do %s\n"
 
-#: lib/rpmfi.c:919
+#: lib/rpmfi.c:934
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "vynecháva sa %s\n"
 
-#: lib/rpmfi.c:929
+#: lib/rpmfi.c:944
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "presúva sa %s do %s\n"
 
-#: lib/rpmfi.c:1021
+#: lib/rpmfi.c:1036
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "presúva sa %s do %s\n"
@@ -2658,88 +2668,88 @@ msgstr ""
 msgid "Upgrading packages..."
 msgstr "    --upgrade <súbor_balíka>"
 
-#: lib/rpminstall.c:394
+#: lib/rpminstall.c:408
 #, fuzzy, c-format
 msgid "Adding goal: %s\n"
 msgstr "Zis»ujú sa po¾adované vlastnosti...\n"
 
-#: lib/rpminstall.c:409
+#: lib/rpminstall.c:423
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Prená¹a sa %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:436
 #, c-format
 msgid " ... as %s\n"
 msgstr "... ako %s\n"
 
-#: lib/rpminstall.c:426
+#: lib/rpminstall.c:440
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s vynechané - prenos zlyhal - %s\n"
 
-#: lib/rpminstall.c:481 lib/rpminstall.c:872 tools/rpmgraph.c:140
+#: lib/rpminstall.c:495 lib/rpminstall.c:886 tools/rpmgraph.c:140
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s nie je mo¾né nain¹talova»\n"
 
-#: lib/rpminstall.c:523
+#: lib/rpminstall.c:537
 #, fuzzy, c-format
-msgid "package %s is not relocateable\n"
+msgid "package %s is not relocatable\n"
 msgstr "balík %s nie je nain¹talovaný\n"
 
-#: lib/rpminstall.c:573
+#: lib/rpminstall.c:587
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "chyba pri vytváraní doèasného súboru %s"
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:593
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:637
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "nájdených %d zdrojových a %d binárnych balíkov\n"
 
-#: lib/rpminstall.c:637 lib/rpminstall.c:810 lib/rpminstall.c:1239
+#: lib/rpminstall.c:651 lib/rpminstall.c:824 lib/rpminstall.c:1253
 #: tools/rpmgraph.c:195
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "nevyrie¹ené závislosti:\n"
 
-#: lib/rpminstall.c:644 tools/rpmgraph.c:201
+#: lib/rpminstall.c:658 tools/rpmgraph.c:201
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:688
 msgid "installing binary packages\n"
 msgstr "in¹talujú sa binárne balíky\n"
 
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:712
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "nie je mo¾né otvori» súbor %s: %s"
 
-#: lib/rpminstall.c:787
+#: lib/rpminstall.c:801
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" ¹pecifikuje viac balíkov\n"
 
-#: lib/rpminstall.c:856
+#: lib/rpminstall.c:870
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "nie je mo¾né otvori» %s\n"
 
-#: lib/rpminstall.c:862
+#: lib/rpminstall.c:876
 #, c-format
 msgid "Installing %s\n"
 msgstr "In¹taluje sa %s\n"
 
-#: lib/rpminstall.c:1233
+#: lib/rpminstall.c:1247
 #, c-format
 msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
 msgstr ""
@@ -2807,7 +2817,7 @@ msgstr "bal
 
 #: lib/rpmps.c:223
 #, fuzzy, c-format
-msgid "path %s in package %s is not relocateable"
+msgid "path %s in package %s is not relocatable"
 msgstr "balík %s nie je nain¹talovaný\n"
 
 #: lib/rpmps.c:228
@@ -2955,50 +2965,75 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Nie je mo¾né otvori» %s pre èítanie: %s."
 
-#: lib/rpmts.c:162
+#: lib/rpmsx.c:343
+#, c-format
+msgid "%s:  no newline on line number %d (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:360
+#, c-format
+msgid "%s:  line number %d is missing fields (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:391
+#, 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
+#, c-format
+msgid "%s:  invalid type specifier %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmsx.c:434
+#, c-format
+msgid "%s:  invalid context %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmts.c:163
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "nie je mo¾né otvori» %s/packages.rpm\n"
 
-#: lib/rpmts.c:252
+#: lib/rpmts.c:253
 #, fuzzy, c-format
 msgid "extra '(' in package label: %s\n"
 msgstr "chybné èíslo balíku: %s\n"
 
-#: lib/rpmts.c:270
+#: lib/rpmts.c:271
 #, fuzzy, c-format
 msgid "missing '(' in package label: %s\n"
 msgstr "chýbajúce    %s\n"
 
-#: lib/rpmts.c:278
+#: lib/rpmts.c:279
 #, fuzzy, c-format
 msgid "missing ')' in package label: %s\n"
 msgstr "chybné èíslo balíku: %s\n"
 
-#: lib/rpmts.c:455
+#: lib/rpmts.c:456
 #, fuzzy, c-format
 msgid "cannot open Solve database in %s\n"
 msgstr "nie je mo¾né otvori» %s/packages.rpm\n"
 
-#: lib/rpmts.c:597
+#: lib/rpmts.c:598
 #, fuzzy, c-format
 msgid "Adding: %s\n"
 msgstr "riadok: %s"
 
-#: lib/rpmts.c:609
+#: lib/rpmts.c:610
 #, fuzzy, c-format
 msgid "Suggesting: %s\n"
 msgstr "zdroje v: %s\n"
 
-#: lib/rpmts.c:1077
+#: lib/rpmts.c:1097
 msgid "mounted filesystems:\n"
 msgstr ""
 
-#: lib/rpmts.c:1079
+#: lib/rpmts.c:1099
 msgid "    i    dev bsize       bavail       iavail mount point\n"
 msgstr ""
 
-#: lib/rpmts.c:1135
+#: lib/rpmts.c:1155
 #, c-format
 msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
 msgstr ""
@@ -3210,12 +3245,12 @@ msgstr ""
 msgid "computing file dispositions\n"
 msgstr ""
 
-#: lib/verify.c:288
+#: lib/verify.c:319
 #, fuzzy, c-format
 msgid "missing  %c %s"
 msgstr "chýbajúce    %s\n"
 
-#: lib/verify.c:397
+#: lib/verify.c:433
 #, fuzzy, c-format
 msgid "Unsatisfied dependencies for %s: "
 msgstr "Nevyrie¹ené závislosti pre %s-%s-%s: "
@@ -3415,163 +3450,163 @@ msgstr "nie je mo
 msgid "cannot open %s index\n"
 msgstr "nie je mo¾né otvori» %s\n"
 
-#: rpmdb/rpmdb.c:915
+#: rpmdb/rpmdb.c:917
 #, fuzzy
 msgid "no dbpath has been set\n"
 msgstr "nebola nastavená ¾iadna dbpath"
 
-#: rpmdb/rpmdb.c:1193 rpmdb/rpmdb.c:1322 rpmdb/rpmdb.c:1373 rpmdb/rpmdb.c:2316
-#: rpmdb/rpmdb.c:2432 rpmdb/rpmdb.c:3161
+#: rpmdb/rpmdb.c:1195 rpmdb/rpmdb.c:1324 rpmdb/rpmdb.c:1375 rpmdb/rpmdb.c:2322
+#: rpmdb/rpmdb.c:2438 rpmdb/rpmdb.c:3167
 #, fuzzy, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "chyba pri naèítaní záznamu %s z %s"
 
-#: rpmdb/rpmdb.c:1567
+#: rpmdb/rpmdb.c:1569
 msgid "miFreeHeader: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1577
+#: rpmdb/rpmdb.c:1579
 #, fuzzy, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "chyba pri zápise záznamu %s do %s"
 
-#: rpmdb/rpmdb.c:2209
+#: rpmdb/rpmdb.c:2212
 msgid "rpmdbNextIterator: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2242
 #, c-format
 msgid "rpmdb: damaged header #%u retrieved -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2520
+#: rpmdb/rpmdb.c:2526
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "nie je mo¾né preèíta» hlavièku na %d pre vyhµadanie"
 
-#: rpmdb/rpmdb.c:2583
+#: rpmdb/rpmdb.c:2589
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "chyba pri naèítaní záznamu %s z %s"
 
-#: rpmdb/rpmdb.c:2698
+#: rpmdb/rpmdb.c:2704
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "odstraòuje sa index skupín\n"
 
-#: rpmdb/rpmdb.c:2702
+#: rpmdb/rpmdb.c:2708
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "odstraòuje sa index názvov\n"
 
-#: rpmdb/rpmdb.c:2730
+#: rpmdb/rpmdb.c:2736
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "chyba pri naèítaní záznamu %s z %s"
 
-#: rpmdb/rpmdb.c:2751
+#: rpmdb/rpmdb.c:2757
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "chyba pri zápise záznamu %s do %s"
 
-#: rpmdb/rpmdb.c:2761
+#: rpmdb/rpmdb.c:2767
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "chyba pri odstraòovaní záznamu %s z %s"
 
-#: rpmdb/rpmdb.c:2910
+#: rpmdb/rpmdb.c:2916
 #, fuzzy, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "chyba pri hµadaní balíka %s\n"
 
-#: rpmdb/rpmdb.c:2964
+#: rpmdb/rpmdb.c:2970
 msgid "rpmdbAdd: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3136
+#: rpmdb/rpmdb.c:3142
 #, fuzzy, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "premenováva sa %s na %s\n"
 
-#: rpmdb/rpmdb.c:3140
+#: rpmdb/rpmdb.c:3146
 #, fuzzy, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "premenováva sa %s na %s\n"
 
-#: rpmdb/rpmdb.c:3180
+#: rpmdb/rpmdb.c:3186
 #, fuzzy, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "chyba pri zápise záznamu %s do %s"
 
-#: rpmdb/rpmdb.c:3581
+#: rpmdb/rpmdb.c:3587
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3619
+#: rpmdb/rpmdb.c:3625
 msgid "no dbpath has been set"
 msgstr "nebola nastavená ¾iadna dbpath"
 
-#: rpmdb/rpmdb.c:3651
+#: rpmdb/rpmdb.c:3657
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "znovu sa vytvára databáza v adresári %s\n"
 
-#: rpmdb/rpmdb.c:3655
+#: rpmdb/rpmdb.c:3661
 #, fuzzy, c-format
 msgid "temporary database %s already exists\n"
 msgstr "doèasná databáza %s u¾ existuje"
 
-#: rpmdb/rpmdb.c:3661
+#: rpmdb/rpmdb.c:3667
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "vytvára sa adresár %s\n"
 
-#: rpmdb/rpmdb.c:3663
+#: rpmdb/rpmdb.c:3669
 #, fuzzy, c-format
 msgid "creating directory %s: %s\n"
 msgstr "vytvára sa adresár %s\n"
 
-#: rpmdb/rpmdb.c:3670
+#: rpmdb/rpmdb.c:3676
 #, fuzzy, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "otvára sa stará databáza\n"
 
-#: rpmdb/rpmdb.c:3683
+#: rpmdb/rpmdb.c:3689
 #, fuzzy, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "otvára sa nová databáza\n"
 
-#: rpmdb/rpmdb.c:3712
+#: rpmdb/rpmdb.c:3718
 #, fuzzy, c-format
 msgid "header #%u in the database is bad -- skipping.\n"
 msgstr "záznam èíslo %d v databáze je chybný -- bol vynechaný"
 
-#: rpmdb/rpmdb.c:3752
+#: rpmdb/rpmdb.c:3758
 #, fuzzy, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "nie je mo¾né prida» záznam pôvodne na %d"
 
-#: rpmdb/rpmdb.c:3766
+#: rpmdb/rpmdb.c:3772
 #, fuzzy
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr "nepodarilo sa znovu vytvori» databázu; zostáva pôvodná\n"
 
-#: rpmdb/rpmdb.c:3774
+#: rpmdb/rpmdb.c:3780
 msgid "failed to replace old database with new database!\n"
 msgstr "nepodarilo sa nahradi» starú databázu novou!\n"
 
-#: rpmdb/rpmdb.c:3776
+#: rpmdb/rpmdb.c:3782
 #, fuzzy, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "nahradí súbory v %s súbormi z %s kvôli obnove"
 
-#: rpmdb/rpmdb.c:3786
+#: rpmdb/rpmdb.c:3792
 #, fuzzy, c-format
 msgid "removing directory %s\n"
 msgstr "vytvára sa adresár %s\n"
 
-#: rpmdb/rpmdb.c:3788
+#: rpmdb/rpmdb.c:3794
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "nepodarilo sa odstráni» adresár %s: %s\n"
@@ -3627,43 +3662,43 @@ msgstr "Makro %%%s obsahuje chybn
 msgid "Macro %%%s (%s) was not used below level %d\n"
 msgstr "Makro %%%s (%s) nebolo pou¾ité pod úrovòou %d "
 
-#: rpmio/macro.c:982
+#: rpmio/macro.c:984
 #, fuzzy, c-format
 msgid "Unknown option %c in %s(%s)\n"
 msgstr "Neznáma voµba %c v %s(%s)"
 
-#: rpmio/macro.c:1182
+#: rpmio/macro.c:1184
 #, fuzzy, c-format
 msgid "Recursion depth(%d) greater than max(%d)\n"
 msgstr "Håbka rekurzie (%d) väè¹ia ako maximálna (%d)"
 
-#: rpmio/macro.c:1252 rpmio/macro.c:1269
+#: rpmio/macro.c:1255 rpmio/macro.c:1272
 #, fuzzy, c-format
 msgid "Unterminated %c: %s\n"
 msgstr "Neukonèené %c: %s"
 
-#: rpmio/macro.c:1310
+#: rpmio/macro.c:1313
 #, c-format
 msgid "A %% is followed by an unparseable macro\n"
 msgstr ""
 
-#: rpmio/macro.c:1439
+#: rpmio/macro.c:1442
 #, fuzzy, c-format
 msgid "Macro %%%.*s not found, skipping\n"
 msgstr "balík %%%.*s nebol nájdený, vynecháva sa"
 
-#: rpmio/macro.c:1510
+#: rpmio/macro.c:1513
 #, fuzzy
 msgid "Target buffer overflow\n"
 msgstr "Preplnenie cieµovej vyrovnávacej pamäti"
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1705 rpmio/macro.c:1711
+#: rpmio/macro.c:1708 rpmio/macro.c:1714
 #, fuzzy, c-format
 msgid "File %s: %s\n"
 msgstr "Súbor %s: %s"
 
-#: rpmio/macro.c:1714
+#: rpmio/macro.c:1717
 #, fuzzy, c-format
 msgid "File %s is smaller than %u bytes\n"
 msgstr "Súbor %s je men¹í ako %d bajtov"
index 43050dc..177b1ef 100644 (file)
--- a/po/sl.po
+++ b/po/sl.po
@@ -1,13 +1,13 @@
 # -*- 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.382 2003/12/11 19:10:36 jbj Exp $
+# $Id: sl.po,v 1.383 2003/12/30 13:15:30 jbj Exp $
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:11-0500\n"
+"POT-Creation-Date: 2003-12-30 08:11-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"
@@ -25,44 +25,44 @@ msgstr "izdelava soodvisnosti je bila neuspe
 msgid "Unable to open spec file %s: %s\n"
 msgstr "Datoteke s specifikacijami %s ni mo¾no odpreti: %s\n"
 
-#: build.c:152 build.c:164
+#: build.c:150 build.c:162
 #, fuzzy, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr "Povezava s programom tar je bila neuspe¹na: %m\n"
 
 #. Give up
-#: build.c:171
+#: build.c:169
 #, fuzzy, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "Neuspe¹no branje datoteke s specifikacijami iz %s"
 
-#: build.c:199
+#: build.c:197
 #, fuzzy, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr "Preimenovanje %s v %s je bilo neuspe¹no: %m"
 
-#: build.c:239
+#: build.c:237
 #, fuzzy, c-format
 msgid "failed to stat %s: %m\n"
 msgstr "status %s ni na voljo: %s"
 
-#: build.c:244
+#: build.c:242
 #, fuzzy, c-format
 msgid "File %s is not a regular file.\n"
 msgstr "Datoteka ni obièajna datoteka: %s\n"
 
-#: build.c:253
+#: build.c:251
 #, fuzzy, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr "Ne ka¾e, da je %s datoteka s specifikacijami."
 
 #. parse up the build operators
-#: build.c:324
+#: build.c:322
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr "Izgradnja za ciljna strojna okolja: %s\n"
 
-#: build.c:339
+#: build.c:337
 #, c-format
 msgid "Building for target %s\n"
 msgstr "Izgradnja za ciljni sistem %s\n"
@@ -115,7 +115,7 @@ msgstr ""
 msgid "%s: %s\n"
 msgstr "datoteka %s: %s\n"
 
-#: rpmqv.c:129 lib/poptALL.c:114
+#: rpmqv.c:129 lib/poptALL.c:119
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM razlièica %s\n"
@@ -436,166 +436,166 @@ msgstr "&& in || nista podprta za nize"
 msgid "syntax error in expression\n"
 msgstr "napaka v sklanji izraza"
 
-#: build/files.c:278
+#: build/files.c:280
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "TIMECHECK neuspe¹en: %s\n"
 
-#: build/files.c:343 build/files.c:543 build/files.c:739
+#: build/files.c:345 build/files.c:545 build/files.c:741
 #, fuzzy, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "Manjkajoèi ,(` v %s %s"
 
-#: build/files.c:354 build/files.c:673 build/files.c:750
+#: build/files.c:356 build/files.c:675 build/files.c:752
 #, fuzzy, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "Manjkajoèi ,)` v %s(%s"
 
-#: build/files.c:392 build/files.c:698
+#: build/files.c:394 build/files.c:700
 #, fuzzy, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "Neveljaven ¾eton %s: %s"
 
-#: build/files.c:502
+#: build/files.c:504
 #, fuzzy, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "Manjkajoèi ,(` v %s %s"
 
-#: build/files.c:559
+#: build/files.c:561
 #, fuzzy, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr "Neprazen znak sledi %s(): %s"
 
-#: build/files.c:597
+#: build/files.c:599
 #, fuzzy, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "Nepravilna skladnja: %s(%s)"
 
-#: build/files.c:607
+#: build/files.c:609
 #, fuzzy, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "Nepravilno doloèilo naèina: %s(%s)"
 
-#: build/files.c:619
+#: build/files.c:621
 #, fuzzy, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "Nepravilno doloèilo naèina imenika: %s(%s)"
 
-#: build/files.c:777
+#: build/files.c:779
 #, fuzzy, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr "Nenavadna dol¾ina za locale: \"%.s\" pri %%lang(%s)"
 
 #. @innercontinue@
-#: build/files.c:788
+#: build/files.c:790
 #, fuzzy, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr "Podvojeni locale %.*s za %%lang(%s)"
 
-#: build/files.c:917
+#: build/files.c:919
 #, fuzzy, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr "Dosegli smo omejitev za %%docdir"
 
-#: build/files.c:925
+#: build/files.c:927
 #, fuzzy, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr "Za %%docdir je podan samo en argument"
 
 #. We already got a file -- error
-#: build/files.c:959
+#: build/files.c:961
 #, fuzzy, c-format
 msgid "Two files on one line: %s\n"
 msgstr "Dve datoteki v eni vrstici: %s"
 
-#: build/files.c:976
+#: build/files.c:978
 #, fuzzy, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "Ime datoteke se mora zaèeti z \"/\": %s"
 
-#: build/files.c:989
+#: build/files.c:991
 #, fuzzy, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr "Posebnih %%doc ni mo¾no me¹ati z ostalimi oblikami: %s"
 
-#: build/files.c:1141
+#: build/files.c:1149
 #, fuzzy, c-format
 msgid "File listed twice: %s\n"
 msgstr "Datoteka je navedena dvakrat: %s"
 
-#: build/files.c:1280
+#: build/files.c:1288
 #, fuzzy, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "Simbolna povezava ka¾e na BuildRoot: %s -> %s"
 
-#: build/files.c:1520
+#: build/files.c:1535
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Datoteka se ne ujema s predpono (%s): %s"
 
-#: build/files.c:1544
+#: build/files.c:1559
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "Datoteke ni mogoèe najti: %s"
 
-#: build/files.c:1752
+#: build/files.c:1767
 #, fuzzy, c-format
 msgid "%s: public key read failed.\n"
 msgstr "%s: readLead je bil neuspe¹en\n"
 
-#: build/files.c:1756 lib/rpmchecksig.c:580
+#: build/files.c:1771 lib/rpmchecksig.c:580
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: build/files.c:1804
+#: build/files.c:1819
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Datoteki manjka uvodni \"/\": %s"
 
-#: build/files.c:1828
+#: build/files.c:1843
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "vrstica %d: Razlièica ni dovoljena: %s"
 
-#: build/files.c:1845 lib/rpminstall.c:347
+#: build/files.c:1860 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:1905
+#: build/files.c:1920
 #, 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:1916 build/pack.c:156
+#: build/files.c:1931 build/pack.c:156
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "vrstica: %s"
 
-#: build/files.c:2307
+#: build/files.c:2323
 #, fuzzy, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "Po¹kodovana datoteka: %s: %s"
 
-#: build/files.c:2319 build/parsePrep.c:50
+#: build/files.c:2335 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Neobstojeè lastnik/skupina: %s\n"
 
-#: build/files.c:2363
+#: build/files.c:2379
 #, fuzzy, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr "i¹èemo paket %s\n"
 
-#: build/files.c:2386
+#: build/files.c:2402
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
 "%s"
 msgstr ""
 
-#: build/files.c:2414
+#: build/files.c:2430
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Obdeloavnje datotek: %s-%s-%s\n"
@@ -739,7 +739,7 @@ msgstr "Ikone %s ni mo
 msgid "Could not open %s: %s\n"
 msgstr "Ni mo¾no odpreti %s: %s\n"
 
-#: build/pack.c:632 lib/psm.c:1427
+#: build/pack.c:632 lib/psm.c:1420
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Ni mo¾no zapisati paketa: %s"
@@ -769,7 +769,7 @@ msgstr "Ikone %s ni mo
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Ni mo¾no zapisati paketa %s: %s"
 
-#: build/pack.c:725 lib/psm.c:1725
+#: build/pack.c:725 lib/psm.c:1689
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Zapisano: %s\n"
@@ -1269,20 +1269,20 @@ msgstr "brez preverjanja soodvisnosti paketa"
 msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
 msgstr ""
 
-#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329
-#: lib/poptQV.c:338 lib/poptQV.c:377
+#: build/poptBT.c:229 lib/poptALL.c:240 lib/poptI.c:261 lib/poptQV.c:335
+#: lib/poptQV.c:344 lib/poptQV.c:383
 #, fuzzy
 msgid "don't verify package digest(s)"
 msgstr "brez preverjanja soodvisnosti paketa"
 
-#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332
-#: lib/poptQV.c:340 lib/poptQV.c:380
+#: build/poptBT.c:231 lib/poptALL.c:242 lib/poptI.c:263 lib/poptQV.c:338
+#: lib/poptQV.c:346 lib/poptQV.c:386
 #, fuzzy
 msgid "don't verify database header(s) when retrieved"
 msgstr "brez preverjanja arhitekture paketa"
 
-#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335
-#: lib/poptQV.c:342 lib/poptQV.c:382
+#: build/poptBT.c:233 lib/poptALL.c:248 lib/poptI.c:265 lib/poptQV.c:341
+#: lib/poptQV.c:348 lib/poptQV.c:388
 #, fuzzy
 msgid "don't verify package signature(s)"
 msgstr "preveri podpis paketa(-ov)"
@@ -1355,32 +1355,32 @@ msgstr "Napa
 msgid "Bad/unreadable  header"
 msgstr "Po¹kodovana/neberljiva glava"
 
-#: lib/cpio.c:232
+#: lib/cpio.c:233
 msgid "Header size too big"
 msgstr "Glava je predolga"
 
-#: lib/cpio.c:233
+#: lib/cpio.c:234
 msgid "Unknown file type"
 msgstr "Neznan tip datoteke"
 
-#: lib/cpio.c:234
+#: lib/cpio.c:235
 #, fuzzy
 msgid "Missing hard link(s)"
 msgstr "Trda povezava manjka"
 
-#: lib/cpio.c:235
+#: lib/cpio.c:236
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:236
+#: lib/cpio.c:237
 msgid "Internal error"
 msgstr "Notranja napaka"
 
-#: lib/cpio.c:237
+#: lib/cpio.c:238
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:250
+#: lib/cpio.c:251
 msgid " failed - "
 msgstr " neuspe¹no - "
 
@@ -1517,46 +1517,56 @@ msgstr "Datoteka: %4d: %07o %s.%s\t %s\n"
 msgid "file %s is on an unknown device\n"
 msgstr "datoteka %s se nahaja na neznani napravi"
 
-#: lib/fsm.c:350
+#: lib/fsm.c:352
 msgid "========== Directories not explicitly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:352
+#: lib/fsm.c:354
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "vrstica %d: %s"
 
-#: lib/fsm.c:1293
+#: lib/fsm.c:768
+#, fuzzy, c-format
+msgid "user %s does not exist - using root\n"
+msgstr "uporabnik %s ne obstaja - uporabljam root"
+
+#: lib/fsm.c:776
+#, fuzzy, c-format
+msgid "group %s does not exist - using root\n"
+msgstr "skupina %s ne obstaja - uporabljam root"
+
+#: lib/fsm.c:1334
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1592
+#: lib/fsm.c:1633
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1719 lib/fsm.c:1855
+#: lib/fsm.c:1760 lib/fsm.c:1896
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "opozorilo: %s shranjen kot %s"
 
-#: lib/fsm.c:1882
+#: lib/fsm.c:1923
 #, 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:1888
+#: lib/fsm.c:1929
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "odstranitev imenika %s je bila neuspe¹na: %s"
 
-#: lib/fsm.c:1903
+#: lib/fsm.c:1944
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "odpiranje %s je bilo neuspe¹no: %s\n"
 
-#: lib/fsm.c:1925
+#: lib/fsm.c:1966
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "opozorilo: %s ustvarjen kot %s"
@@ -1674,116 +1684,116 @@ msgstr "%s: readLead je bil neuspe
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: branje Fread je bilo neuspe¹no: %s\n"
 
-#: lib/poptALL.c:222
+#: lib/poptALL.c:227
 msgid "predefine MACRO with value EXPR"
 msgstr ""
 
-#: lib/poptALL.c:223 lib/poptALL.c:226
+#: lib/poptALL.c:228 lib/poptALL.c:231
 msgid "'MACRO EXPR'"
 msgstr ""
 
-#: lib/poptALL.c:225
+#: lib/poptALL.c:230
 msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: lib/poptALL.c:228
+#: lib/poptALL.c:233
 #, fuzzy
 msgid "print macro expansion of EXPR"
 msgstr "uporabljana razlièica rpm"
 
-#: lib/poptALL.c:229
+#: lib/poptALL.c:234
 msgid "'EXPR'"
 msgstr ""
 
-#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254
+#: lib/poptALL.c:236 lib/poptALL.c:255 lib/poptALL.c:259
 msgid "read <FILE:...> instead of default file(s)"
 msgstr ""
 
-#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255
+#: lib/poptALL.c:237 lib/poptALL.c:256 lib/poptALL.c:260
 msgid "<FILE:...>"
 msgstr ""
 
-#: lib/poptALL.c:240 lib/poptALL.c:274
+#: lib/poptALL.c:245 lib/poptALL.c:279
 msgid "disable use of libio(3) API"
 msgstr ""
 
-#: lib/poptALL.c:246
+#: lib/poptALL.c:251
 #, fuzzy
 msgid "send stdout to CMD"
 msgstr "standardni izhod preusmerjen na <ukaz>"
 
-#: lib/poptALL.c:247
+#: lib/poptALL.c:252
 msgid "CMD"
 msgstr ""
 
-#: lib/poptALL.c:258
+#: lib/poptALL.c:263
 #, fuzzy
 msgid "use ROOT as top level directory"
 msgstr "uporabi <imenik> za korenski imenik"
 
-#: lib/poptALL.c:259
+#: lib/poptALL.c:264
 msgid "ROOT"
 msgstr ""
 
-#: lib/poptALL.c:262
+#: lib/poptALL.c:267
 msgid "display known query tags"
 msgstr "prika¾i znane znaèke za poizvedovanje"
 
-#: lib/poptALL.c:264
+#: lib/poptALL.c:269
 msgid "display final rpmrc and macro configuration"
 msgstr "prika¾i konèni rpmrc in nastavitev makra"
 
-#: lib/poptALL.c:266
+#: lib/poptALL.c:271
 msgid "provide less detailed output"
 msgstr ""
 
-#: lib/poptALL.c:268
+#: lib/poptALL.c:273
 msgid "provide more detailed output"
 msgstr ""
 
-#: lib/poptALL.c:270
+#: lib/poptALL.c:275
 msgid "print the version of rpm being used"
 msgstr "razlièica rpm, ki jo uporabljate"
 
-#: lib/poptALL.c:283
+#: lib/poptALL.c:288
 #, fuzzy
 msgid "debug payload file state machine"
 msgstr "okvarjeno stanje datoteke: %s"
 
-#: lib/poptALL.c:285
+#: lib/poptALL.c:290
 #, fuzzy
 msgid "use threads for file state machine"
 msgstr "okvarjeno stanje datoteke: %s"
 
-#: lib/poptALL.c:287
+#: lib/poptALL.c:292
 msgid "debug protocol data stream"
 msgstr ""
 
-#: lib/poptALL.c:292
+#: lib/poptALL.c:297
 #, fuzzy
 msgid "debug option/argument processing"
 msgstr "Notranja napaka pri obdelavi argumentov (%d) :-\n"
 
-#: lib/poptALL.c:297
+#: lib/poptALL.c:302
 #, fuzzy
 msgid "debug package state machine"
 msgstr "okvarjeno stanje datoteke: %s"
 
-#: lib/poptALL.c:299
+#: lib/poptALL.c:304
 #, fuzzy
 msgid "use threads for package state machine"
 msgstr "okvarjeno stanje datoteke: %s"
 
-#: lib/poptALL.c:311
+#: lib/poptALL.c:316
 msgid "debug rpmio I/O"
 msgstr ""
 
-#: lib/poptALL.c:323
+#: lib/poptALL.c:330
 msgid "debug URL cache handling"
 msgstr ""
 
 #. @-nullpass@
-#: lib/poptALL.c:393
+#: lib/poptALL.c:400
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1812,17 +1822,17 @@ msgstr ""
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:151
+#: lib/poptI.c:155
 #, fuzzy
 msgid "add suggested packages to transaction"
 msgstr "poizvedba po paketu v skupini"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:159
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "namestitev vseh datotek, vkljuèno z nastavitvenimi, ki so sicer izpu¹èene"
 
-#: lib/poptI.c:159
+#: lib/poptI.c:163
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1830,157 +1840,163 @@ msgstr ""
 "odstrani vse pakete, ki vsebujejo vzorec <paket> (sicer program izide z "
 "napako, èe paket <paket> doloèa veè paketov)"
 
-#: lib/poptI.c:164 tools/rpmgraph.c:273
+#: lib/poptI.c:168 tools/rpmgraph.c:273
 msgid "use anaconda \"presentation order\""
 msgstr ""
 
-#: lib/poptI.c:169 lib/poptI.c:238
+#: lib/poptI.c:173 lib/poptI.c:245
 #, fuzzy
 msgid "do not execute package scriptlet(s)"
 msgstr "brez izvajanja skriptov paketa"
 
-#: lib/poptI.c:173
-msgid "relocate files in non-relocateable package"
-msgstr ""
+#: lib/poptI.c:177
+#, fuzzy
+msgid "relocate files in non-relocatable package"
+msgstr "poti %s ni mo¾no premakniti za paket %s-%s-%s"
 
-#: lib/poptI.c:176
+#: lib/poptI.c:180
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 msgid "erase (uninstall) package"
 msgstr "izbri¹i (odstrani) paket"
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 #, fuzzy
 msgid "<package>+"
 msgstr "ni paketov\n"
 
-#: lib/poptI.c:182 lib/poptI.c:219
+#: lib/poptI.c:186 lib/poptI.c:223
 #, fuzzy
 msgid "do not install configuration files"
 msgstr "izpis vseh nastavitvene datoteke"
 
-#: lib/poptI.c:185 lib/poptI.c:224
+#: lib/poptI.c:189 lib/poptI.c:228
 msgid "do not install documentation"
 msgstr "brez namestitve dokumentacije"
 
-#: lib/poptI.c:187
+#: lib/poptI.c:191
 #, fuzzy
 msgid "skip files with leading component <path> "
 msgstr "preskok datotek v navedeni poti"
 
-#: lib/poptI.c:188
+#: lib/poptI.c:192
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:191
+#: lib/poptI.c:195
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "okraj¹ava za --replacepkgs --replacefiles"
 
-#: lib/poptI.c:195
+#: lib/poptI.c:199
 #, fuzzy
 msgid "upgrade package(s) if already installed"
 msgstr "paket %s-%s-%s je ¾e name¹èen"
 
-#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
+#: lib/poptI.c:200 lib/poptI.c:216 lib/poptI.c:312
 #, fuzzy
 msgid "<packagefile>+"
 msgstr "        -p <paket>+       "
 
-#: lib/poptI.c:198
+#: lib/poptI.c:202
 msgid "print hash marks as package installs (good with -v)"
 msgstr "z izpisom znakov # ob namestitvi (uporabno z -v)"
 
-#: lib/poptI.c:201
+#: lib/poptI.c:205
 msgid "don't verify package architecture"
 msgstr "brez preverjanja arhitekture paketa"
 
-#: lib/poptI.c:204
+#: lib/poptI.c:208
 msgid "don't verify package operating system"
 msgstr "brez preverjanja operacijskega sistema paketa"
 
-#: lib/poptI.c:207
+#: lib/poptI.c:211
 msgid "don't check disk space before installing"
 msgstr "brez preverjanja prostora na disku pred name¹èanjem"
 
-#: lib/poptI.c:209
+#: lib/poptI.c:213
 msgid "install documentation"
 msgstr "namesti dokumentacijo"
 
-#: lib/poptI.c:212
+#: lib/poptI.c:216
 #, fuzzy
 msgid "install package(s)"
 msgstr "name¹èanje paketa"
 
-#: lib/poptI.c:215
+#: lib/poptI.c:219
 msgid "update the database, but do not modify the filesystem"
 msgstr "obnovi podatkovno zbirko, a ne spreminjaj datoteènega sistema"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:225
 msgid "do not verify package dependencies"
 msgstr "brez preverjanja soodvisnosti paketa"
 
-#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:231 lib/poptQV.c:279 lib/poptQV.c:282
 #, fuzzy
 msgid "don't verify MD5 digest of files"
 msgstr "brez preverjanja datotek v paketu"
 
-#: lib/poptI.c:230
+#: lib/poptI.c:233
+#, fuzzy
+msgid "don't install file security contexts"
+msgstr "izpis vseh nastavitvene datoteke"
+
+#: lib/poptI.c:237
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 "brez spreminjanja vrstnega reda paketov z namenom zadovoljevanja soodvisnosti"
 
-#: lib/poptI.c:235
+#: lib/poptI.c:242
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:242
+#: lib/poptI.c:249
 #, fuzzy, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "brez izvajanja katerekoli stopen izgradnje"
 
-#: lib/poptI.c:245
+#: lib/poptI.c:252
 #, fuzzy, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "brez izvajanja katerekoli stopen izgradnje"
 
-#: lib/poptI.c:248
+#: lib/poptI.c:255
 #, fuzzy, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "brez izvajanja katerekoli stopen izgradnje"
 
-#: lib/poptI.c:251
+#: lib/poptI.c:258
 #, fuzzy, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "brez izvajanja katerekoli stopen izgradnje"
 
-#: lib/poptI.c:261
+#: lib/poptI.c:268
 #, fuzzy
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "brez izvajanja katerihkoli skriptov, ki jih po¾ene ta paket"
 
-#: lib/poptI.c:264
+#: lib/poptI.c:271
 #, fuzzy, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "brez izvajanja skriptov paketa"
 
-#: lib/poptI.c:267
+#: lib/poptI.c:274
 #, fuzzy, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "brez izvajanja namestitvenih skriptov"
 
-#: lib/poptI.c:270
+#: lib/poptI.c:277
 #, fuzzy, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "brez izvajanja namestitvenih skriptov"
 
-#: lib/poptI.c:273
+#: lib/poptI.c:280
 #, fuzzy, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "brez izvajanja namestitvenih skriptov"
 
-#: lib/poptI.c:277
+#: lib/poptI.c:284
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1988,53 +2004,53 @@ msgstr ""
 "nadgraditev na starej¹o razlièico paketa (--force pri nadgradnjah "
 "avtomatièno vkljuèi to izbiro)"
 
-#: lib/poptI.c:281
+#: lib/poptI.c:288
 msgid "print percentages as package installs"
 msgstr "izpis odstotkov med namestitvijo"
 
-#: lib/poptI.c:283
+#: lib/poptI.c:290
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "èe je mogoèe, bo paket prestavljen v imenik <imenik>"
 
-#: lib/poptI.c:284
+#: lib/poptI.c:291
 msgid "<dir>"
 msgstr ""
 
-#: lib/poptI.c:286
+#: lib/poptI.c:293
 #, fuzzy
 msgid "relocate files from path <old> to <new>"
 msgstr "prestavljanje datoteke iz stare poti v novo"
 
-#: lib/poptI.c:287
+#: lib/poptI.c:294
 #, fuzzy
 msgid "<old>=<new>"
 msgstr "      --relocate <starapot>=<novapot>"
 
-#: lib/poptI.c:290
+#: lib/poptI.c:297
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:293
+#: lib/poptI.c:300
 msgid "install even if the package replaces installed files"
 msgstr "namesti, èetudi paket pi¹e prek ¾e name¹èene datoteke"
 
-#: lib/poptI.c:296
+#: lib/poptI.c:303
 msgid "reinstall if the package is already present"
 msgstr "ponovno namesti, èe paket ¾e obstaja"
 
-#: lib/poptI.c:298
+#: lib/poptI.c:305
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:299
+#: lib/poptI.c:306
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:301
+#: lib/poptI.c:308
 msgid "don't install, but tell if it would work or not"
 msgstr "ne namesti, a ugotovi, èe bi delovalo"
 
-#: lib/poptI.c:304
+#: lib/poptI.c:311
 #, fuzzy
 msgid "upgrade package(s)"
 msgstr "    --upgrade <paket>      "
@@ -2122,212 +2138,207 @@ msgstr "poizvedba po paketih, ki potrebujejo dano zmo
 msgid "query/verify the package(s) which provide a dependency"
 msgstr "poizvedba po paketih, ki ponujajo dano zmo¾nost <mo¾>"
 
-#: lib/poptQV.c:226
+#: lib/poptQV.c:230
 msgid "list all configuration files"
 msgstr "izpis vseh nastavitvene datoteke"
 
-#: lib/poptQV.c:228
+#: lib/poptQV.c:232
 msgid "list all documentation files"
 msgstr "izpis vseh dokumentacijske datoteke"
 
-#: lib/poptQV.c:230
+#: lib/poptQV.c:234
 msgid "dump basic file information"
 msgstr "iznos osnovnih podatkov o datoteki"
 
-#: lib/poptQV.c:234
+#: lib/poptQV.c:238
 msgid "list files in package"
 msgstr "izpis seznama datotek v paketu"
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:243
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:243
+#: lib/poptQV.c:247
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
-#: lib/poptQV.c:246
+#: lib/poptQV.c:250
 #, fuzzy, c-format
 msgid "skip %%readme files"
 msgstr "%s: readLead je bil neuspe¹en\n"
 
-#: lib/poptQV.c:252
+#: lib/poptQV.c:256
 msgid "use the following query format"
 msgstr "uporabi naslednjo obliko poizvedbe"
 
-#: lib/poptQV.c:254
+#: lib/poptQV.c:258
 #, fuzzy
 msgid "substitute i18n sections into spec file"
 msgstr "zamenjava razdeljkov I18N z naslednjim katalogom"
 
-#: lib/poptQV.c:256
+#: lib/poptQV.c:260
 msgid "display the states of the listed files"
 msgstr "izpis stanja seznama datotek"
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:286
 #, fuzzy
 msgid "don't verify size of files"
 msgstr "brez preverjanja datotek v paketu"
 
-#: lib/poptQV.c:285
+#: lib/poptQV.c:289
 #, fuzzy
 msgid "don't verify symlink path of files"
 msgstr "brez preverjanja datotek v paketu"
 
-#: lib/poptQV.c:288
+#: lib/poptQV.c:292
 #, fuzzy
 msgid "don't verify owner of files"
 msgstr "brez preverjanja datotek v paketu"
 
-#: lib/poptQV.c:291
+#: lib/poptQV.c:295
 #, fuzzy
 msgid "don't verify group of files"
 msgstr "brez preverjanja datotek v paketu"
 
-#: lib/poptQV.c:294
+#: lib/poptQV.c:298
 msgid "don't verify modification time of files"
 msgstr ""
 
-#: lib/poptQV.c:297 lib/poptQV.c:300
+#: lib/poptQV.c:301 lib/poptQV.c:304
 #, fuzzy
 msgid "don't verify mode of files"
 msgstr "brez preverjanja datotek v paketu"
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:307
+#, fuzzy
+msgid "don't verify file security contexts"
+msgstr "brez preverjanja datotek v paketu"
+
+#: lib/poptQV.c:309
 msgid "don't verify files in package"
 msgstr "brez preverjanja datotek v paketu"
 
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
+#: lib/poptQV.c:312 lib/poptQV.c:315 tools/rpmgraph.c:267
 #, fuzzy
 msgid "don't verify package dependencies"
 msgstr "brez preverjanja soodvisnosti paketa"
 
-#: lib/poptQV.c:314 lib/poptQV.c:318 lib/poptQV.c:321 lib/poptQV.c:324
+#: lib/poptQV.c:320 lib/poptQV.c:324 lib/poptQV.c:327 lib/poptQV.c:330
 #, fuzzy
 msgid "don't execute verify script(s)"
 msgstr "brez izvajanja katerekoli stopen izgradnje"
 
-#: lib/poptQV.c:348
+#: lib/poptQV.c:354
 #, fuzzy
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr "brez preverjanja datotek v paketu"
 
-#: lib/poptQV.c:351
+#: lib/poptQV.c:357
 #, fuzzy
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr "brez preverjanja datotek v paketu"
 
-#: lib/poptQV.c:366
+#: lib/poptQV.c:372
 #, fuzzy
 msgid "sign package(s) (identical to --resign)"
 msgstr "podpi¹i paket(e) (trenutni podpis zavrzi)"
 
-#: lib/poptQV.c:368
+#: lib/poptQV.c:374
 #, fuzzy
 msgid "verify package signature(s)"
 msgstr "preveri podpis paketa(-ov)"
 
-#: lib/poptQV.c:370
+#: lib/poptQV.c:376
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:372
+#: lib/poptQV.c:378
 #, fuzzy
 msgid "sign package(s) (identical to --addsign)"
 msgstr "podpi¹i paket(e) (trenutni podpis zavrzi)"
 
-#: lib/poptQV.c:374
+#: lib/poptQV.c:380
 #, fuzzy
 msgid "generate signature"
 msgstr "izdelava podpisa PGP/GPG"
 
-#: lib/psm.c:269
+#: lib/psm.c:268
 #, fuzzy
 msgid "source package expected, binary found\n"
 msgstr "prièakovan je bil izvorni paket, najden binarni"
 
-#: lib/psm.c:394
+#: lib/psm.c:386
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "izvorni paket ne vsebuje datoteke .spec"
 
-#: lib/psm.c:480
+#: lib/psm.c:472
 #, c-format
 msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
 msgstr ""
 
-#: lib/psm.c:562
+#: lib/psm.c:554
 #, c-format
 msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
 msgstr ""
 
-#: lib/psm.c:570
+#: lib/psm.c:562
 #, c-format
 msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
 msgstr ""
 
-#: lib/psm.c:735
+#: lib/psm.c:730
 #, c-format
 msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
 msgstr ""
 
-#: lib/psm.c:756
+#: lib/psm.c:751
 #, 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:762
+#: lib/psm.c:757
 #, fuzzy, c-format
 msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
 msgstr "skript se ni uspe¹no izvedel"
 
-#: lib/psm.c:1191
+#: lib/psm.c:1188
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "paket: %s-%s-%s datoteke test = %d\n"
 
-#: lib/psm.c:1330
+#: lib/psm.c:1323
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1439
+#: lib/psm.c:1432
 #, fuzzy
 msgid "Unable to reload signature header\n"
 msgstr "Ikone %s ni mo¾no prebrati: %s"
 
-#: lib/psm.c:1485
-#, fuzzy, c-format
-msgid "user %s does not exist - using root\n"
-msgstr "uporabnik %s ne obstaja - uporabljam root"
-
-#: lib/psm.c:1494
-#, fuzzy, c-format
-msgid "group %s does not exist - using root\n"
-msgstr "skupina %s ne obstaja - uporabljam root"
-
-#: lib/psm.c:1546
+#: lib/psm.c:1510
 #, 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:1547
+#: lib/psm.c:1511
 msgid " on file "
 msgstr " za datoteko "
 
-#: lib/psm.c:1733
+#: lib/psm.c:1697
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "neuspe¹no odpiranje %s: %s\n"
 
-#: lib/psm.c:1736
+#: lib/psm.c:1700
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s neuspe¹en"
 
-#: lib/query.c:118 lib/rpmts.c:565
+#: lib/query.c:118 lib/rpmts.c:566
 #, fuzzy, c-format
 msgid "incorrect format: %s\n"
 msgstr "napaka v obliki: %s\n"
@@ -2376,8 +2387,8 @@ msgstr "paket ne vsebuje ne lastnika datotek niti seznamov id"
 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:462
-#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576
+#: 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
 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157
 #, c-format
 msgid "open of %s failed: %s\n"
@@ -2392,7 +2403,7 @@ msgstr "poizvedba po %s je bila neuspe
 msgid "old format source packages cannot be queried\n"
 msgstr "poizvedba po izvornih paketih v stari obliki ni mo¾na\n"
 
-#: lib/query.c:488 lib/rpminstall.c:608
+#: lib/query.c:488 lib/rpminstall.c:622
 #, fuzzy, c-format
 msgid "%s: not an rpm package (or package manifest): %s\n"
 msgstr "noben paket ne pro¾i %s\n"
@@ -2462,17 +2473,17 @@ msgstr "
 msgid "record %u could not be read\n"
 msgstr "zapisa %d ni mo¾no prebrati\n"
 
-#: lib/query.c:766 lib/rpminstall.c:778
+#: lib/query.c:766 lib/rpminstall.c:792
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "paket %s ni name¹èen\n"
 
-#: lib/rpmal.c:692
+#: lib/rpmal.c:694
 #, fuzzy
 msgid "(added files)"
 msgstr "po¹kodovana zbirka podatkov %s"
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:772
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %-45s DA (dodane ponudbe)\n"
@@ -2599,36 +2610,36 @@ msgstr "  %s    A %s\tB %s\n"
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "Za paket %s-%s-%s: zahteva %s ni zadovoljena\n"
 
-#: lib/rpmfi.c:546
+#: lib/rpmfi.c:561
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s preskoèen zaradi manjkajoèe zastavice OK\n"
 
-#: lib/rpmfi.c:784
+#: lib/rpmfi.c:799
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:788
+#: lib/rpmfi.c:803
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "OS je izkljuèen: %s"
 
-#: lib/rpmfi.c:791
+#: lib/rpmfi.c:806
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "premikanje %s v %s\n"
 
-#: lib/rpmfi.c:919
+#: lib/rpmfi.c:934
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "izkljuèevanje datoteke %s%s\n"
 
-#: lib/rpmfi.c:929
+#: lib/rpmfi.c:944
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "premikanje %s v %s\n"
 
-#: lib/rpmfi.c:1021
+#: lib/rpmfi.c:1036
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "premiokanje imenika %s v %s\n"
@@ -2660,88 +2671,88 @@ msgstr ""
 msgid "Upgrading packages..."
 msgstr "    --upgrade <paket>      "
 
-#: lib/rpminstall.c:394
+#: lib/rpminstall.c:408
 #, fuzzy, c-format
 msgid "Adding goal: %s\n"
 msgstr "Iskanje  %s: (z uporabo %s)...\n"
 
-#: lib/rpminstall.c:409
+#: lib/rpminstall.c:423
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Prena¹anje %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:436
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... kot %s\n"
 
-#: lib/rpminstall.c:426
+#: lib/rpminstall.c:440
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "preskoèeno - %s - prenos neuspe¹en - %s\n"
 
-#: lib/rpminstall.c:481 lib/rpminstall.c:872 tools/rpmgraph.c:140
+#: lib/rpminstall.c:495 lib/rpminstall.c:886 tools/rpmgraph.c:140
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s ni mo¾no namestiti\n"
 
-#: lib/rpminstall.c:523
-#, c-format
-msgid "package %s is not relocateable\n"
+#: lib/rpminstall.c:537
+#, fuzzy, c-format
+msgid "package %s is not relocatable\n"
 msgstr "paketa %s ni mo¾no premakniti\n"
 
-#: lib/rpminstall.c:573
+#: lib/rpminstall.c:587
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "napaka pri branju iz datoteke %s\n"
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:593
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "datoteka %s zahteva novej¹o razlièico RPM\n"
 
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:637
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "najdeno %d izvornih in %d binarnih paketov\n"
 
-#: lib/rpminstall.c:637 lib/rpminstall.c:810 lib/rpminstall.c:1239
+#: lib/rpminstall.c:651 lib/rpminstall.c:824 lib/rpminstall.c:1253
 #: tools/rpmgraph.c:195
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "neuspe¹ne soodvisnosti:\n"
 
-#: lib/rpminstall.c:644 tools/rpmgraph.c:201
+#: lib/rpminstall.c:658 tools/rpmgraph.c:201
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:688
 msgid "installing binary packages\n"
 msgstr "name¹èanje binarnih paketov\n"
 
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:712
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "ni mo¾no odpreti datoteke %s: %s\n"
 
-#: lib/rpminstall.c:787
+#: lib/rpminstall.c:801
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" doloèa veè paketov\n"
 
-#: lib/rpminstall.c:856
+#: lib/rpminstall.c:870
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "ni mo¾no odpreti %s: %s\n"
 
-#: lib/rpminstall.c:862
+#: lib/rpminstall.c:876
 #, c-format
 msgid "Installing %s\n"
 msgstr "Name¹èanje %s\n"
 
-#: lib/rpminstall.c:1233
+#: lib/rpminstall.c:1247
 #, c-format
 msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
 msgstr ""
@@ -2809,7 +2820,7 @@ msgstr "paket %s-%s-%s je 
 
 #: lib/rpmps.c:223
 #, fuzzy, c-format
-msgid "path %s in package %s is not relocateable"
+msgid "path %s in package %s is not relocatable"
 msgstr "paketa %s ni mo¾no prestaviti\n"
 
 #: lib/rpmps.c:228
@@ -2958,51 +2969,76 @@ msgstr "Ni mo
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "%s ni mo¾no odpreti za branje: %s."
 
-#: lib/rpmts.c:162
+#: lib/rpmsx.c:343
+#, c-format
+msgid "%s:  no newline on line number %d (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:360
+#, c-format
+msgid "%s:  line number %d is missing fields (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:391
+#, 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
+#, c-format
+msgid "%s:  invalid type specifier %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmsx.c:434
+#, c-format
+msgid "%s:  invalid context %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmts.c:163
 #, 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:252
+#: lib/rpmts.c:253
 #, fuzzy, c-format
 msgid "extra '(' in package label: %s\n"
 msgstr "neveljavna ¹tevilka paketa: %s\n"
 
-#: lib/rpmts.c:270
+#: lib/rpmts.c:271
 #, fuzzy, c-format
 msgid "missing '(' in package label: %s\n"
 msgstr "Manjkajoèi ,(` v %s %s"
 
-#: lib/rpmts.c:278
+#: lib/rpmts.c:279
 #, fuzzy, c-format
 msgid "missing ')' in package label: %s\n"
 msgstr "neveljavna ¹tevilka paketa: %s\n"
 
-#: lib/rpmts.c:455
+#: lib/rpmts.c:456
 #, fuzzy, c-format
 msgid "cannot open Solve database in %s\n"
 msgstr "datoteke %s/packages.rpm ni mogo¾no odpreti\n"
 
-#: lib/rpmts.c:597
+#: lib/rpmts.c:598
 #, fuzzy, c-format
 msgid "Adding: %s\n"
 msgstr "vrstica: %s"
 
-#: lib/rpmts.c:609
+#: lib/rpmts.c:610
 #, fuzzy, c-format
 msgid "Suggesting: %s\n"
 msgstr "izvori v: %s\n"
 
-#: lib/rpmts.c:1077
+#: lib/rpmts.c:1097
 #, fuzzy
 msgid "mounted filesystems:\n"
 msgstr "zbiranje seznama priklopljenih datoteènih sistemov.\n"
 
-#: lib/rpmts.c:1079
+#: lib/rpmts.c:1099
 msgid "    i    dev bsize       bavail       iavail mount point\n"
 msgstr ""
 
-#: lib/rpmts.c:1135
+#: lib/rpmts.c:1155
 #, c-format
 msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
 msgstr ""
@@ -3214,12 +3250,12 @@ msgstr ""
 msgid "computing file dispositions\n"
 msgstr ""
 
-#: lib/verify.c:288
+#: lib/verify.c:319
 #, fuzzy, c-format
 msgid "missing  %c %s"
 msgstr "manjka     %s\n"
 
-#: lib/verify.c:397
+#: lib/verify.c:433
 #, fuzzy, c-format
 msgid "Unsatisfied dependencies for %s: "
 msgstr "Nezadovoljene soodvisnosti za %s-%s-%s: "
@@ -3421,165 +3457,165 @@ msgstr "ni mo
 msgid "cannot open %s index\n"
 msgstr "ni mo¾no odpreti kazala %s:"
 
-#: rpmdb/rpmdb.c:915
+#: rpmdb/rpmdb.c:917
 #, fuzzy
 msgid "no dbpath has been set\n"
 msgstr "dbpath ni nastavljena"
 
-#: rpmdb/rpmdb.c:1193 rpmdb/rpmdb.c:1322 rpmdb/rpmdb.c:1373 rpmdb/rpmdb.c:2316
-#: rpmdb/rpmdb.c:2432 rpmdb/rpmdb.c:3161
+#: rpmdb/rpmdb.c:1195 rpmdb/rpmdb.c:1324 rpmdb/rpmdb.c:1375 rpmdb/rpmdb.c:2322
+#: rpmdb/rpmdb.c:2438 rpmdb/rpmdb.c:3167
 #, fuzzy, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "napaka(%d) pri branju zapisov \"%s\" iz kazala %s"
 
-#: rpmdb/rpmdb.c:1567
+#: rpmdb/rpmdb.c:1569
 msgid "miFreeHeader: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1577
+#: rpmdb/rpmdb.c:1579
 #, fuzzy, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "napaka(%d) pri pisanju zapisa %s v %s"
 
-#: rpmdb/rpmdb.c:2209
+#: rpmdb/rpmdb.c:2212
 msgid "rpmdbNextIterator: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2242
 #, c-format
 msgid "rpmdb: damaged header #%u retrieved -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2520
+#: rpmdb/rpmdb.c:2526
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "%s: ni mo¾no prebrati glave pri 0x%x"
 
-#: rpmdb/rpmdb.c:2583
+#: rpmdb/rpmdb.c:2589
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "napaka(%d) pri branju zapisov \"%s\" iz kazala %s"
 
-#: rpmdb/rpmdb.c:2698
+#: rpmdb/rpmdb.c:2704
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "odstranjevanje \"%s\" iz kazala %s.\n"
 
-#: rpmdb/rpmdb.c:2702
+#: rpmdb/rpmdb.c:2708
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "odstranjevanje %d vnosov iz kazala %s\n"
 
-#: rpmdb/rpmdb.c:2730
+#: rpmdb/rpmdb.c:2736
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "napaka(%d) pri branju zapisov \"%s\" iz kazala %s"
 
-#: rpmdb/rpmdb.c:2751
+#: rpmdb/rpmdb.c:2757
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "napaka(%d) pri pisanju zapisa %s v %s"
 
-#: rpmdb/rpmdb.c:2761
+#: rpmdb/rpmdb.c:2767
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "napaka(%d) pri brisanju zapisa %s iz %s"
 
-#: rpmdb/rpmdb.c:2910
+#: rpmdb/rpmdb.c:2916
 #, fuzzy, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "napaka(%d) pri iskanju paketa %s\n"
 
-#: rpmdb/rpmdb.c:2964
+#: rpmdb/rpmdb.c:2970
 msgid "rpmdbAdd: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3136
+#: rpmdb/rpmdb.c:3142
 #, fuzzy, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "dodajanje \"%s\" v kazalo %s.\n"
 
-#: rpmdb/rpmdb.c:3140
+#: rpmdb/rpmdb.c:3146
 #, fuzzy, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "dodajanje %d vnosov v kazalo %s.\n"
 
-#: rpmdb/rpmdb.c:3180
+#: rpmdb/rpmdb.c:3186
 #, fuzzy, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "napaka(%d) pri pisanju zapisa %s v %s"
 
-#: rpmdb/rpmdb.c:3581
+#: rpmdb/rpmdb.c:3587
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3619
+#: rpmdb/rpmdb.c:3625
 msgid "no dbpath has been set"
 msgstr "dbpath ni nastavljena"
 
-#: rpmdb/rpmdb.c:3651
+#: rpmdb/rpmdb.c:3657
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "ponovna izgradnja podatkovne zbirke %s v %s\n"
 
-#: rpmdb/rpmdb.c:3655
+#: rpmdb/rpmdb.c:3661
 #, fuzzy, c-format
 msgid "temporary database %s already exists\n"
 msgstr "zaèasna podatkovna zbirka %s ¾e obstaja"
 
-#: rpmdb/rpmdb.c:3661
+#: rpmdb/rpmdb.c:3667
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "ustvarjanje imenika: %s\n"
 
-#: rpmdb/rpmdb.c:3663
+#: rpmdb/rpmdb.c:3669
 #, fuzzy, c-format
 msgid "creating directory %s: %s\n"
 msgstr "ustvarjanje imenika: %s\n"
 
-#: rpmdb/rpmdb.c:3670
+#: rpmdb/rpmdb.c:3676
 #, fuzzy, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "odpiranje stare podatkovne zbirke\n"
 
-#: rpmdb/rpmdb.c:3683
+#: rpmdb/rpmdb.c:3689
 #, fuzzy, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "odpiramo nove podatkovne zbirke z dbapi %d\n"
 
-#: rpmdb/rpmdb.c:3712
+#: rpmdb/rpmdb.c:3718
 #, fuzzy, c-format
 msgid "header #%u in the database is bad -- skipping.\n"
 msgstr "zapis ¹t. %d v zbirki je po¹kodovan -- preskoèeno."
 
-#: rpmdb/rpmdb.c:3752
+#: rpmdb/rpmdb.c:3758
 #, fuzzy, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "zapisa ni mo¾no dodati na %d"
 
-#: rpmdb/rpmdb.c:3766
+#: rpmdb/rpmdb.c:3772
 #, fuzzy
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 "ponovna izgradnja podatkovne zbirke je bila neuspe¹na; stara ostaja na\n"
 "istem mestu\n"
 
-#: rpmdb/rpmdb.c:3774
+#: rpmdb/rpmdb.c:3780
 msgid "failed to replace old database with new database!\n"
 msgstr "zamenjava stare podatkovne zbirke z novo je bila neuspe¹na!\n"
 
-#: rpmdb/rpmdb.c:3776
+#: rpmdb/rpmdb.c:3782
 #, fuzzy, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "poskus povrnitve z nadomestitvijo datotek v %s z datotekami v %s"
 
-#: rpmdb/rpmdb.c:3786
+#: rpmdb/rpmdb.c:3792
 #, fuzzy, c-format
 msgid "removing directory %s\n"
 msgstr "odstranjevanje imenika: %s\n"
 
-#: rpmdb/rpmdb.c:3788
+#: rpmdb/rpmdb.c:3794
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "neuspe¹na odstranitev imenika %s: %s\n"
@@ -3635,43 +3671,43 @@ msgstr "Makro %%%s vsebuje nedovoljeno ime (%%undefine)"
 msgid "Macro %%%s (%s) was not used below level %d\n"
 msgstr "Makro %%%s (%s) ni bil uporabljen pod ravnijo %d"
 
-#: rpmio/macro.c:982
+#: rpmio/macro.c:984
 #, fuzzy, c-format
 msgid "Unknown option %c in %s(%s)\n"
 msgstr "Neznana izbira %c v %s(%s)"
 
-#: rpmio/macro.c:1182
+#: rpmio/macro.c:1184
 #, fuzzy, c-format
 msgid "Recursion depth(%d) greater than max(%d)\n"
 msgstr "Globina rekurzije (%d) veèja od maksimalne (%d)"
 
-#: rpmio/macro.c:1252 rpmio/macro.c:1269
+#: rpmio/macro.c:1255 rpmio/macro.c:1272
 #, fuzzy, c-format
 msgid "Unterminated %c: %s\n"
 msgstr "Nezakljuèeni %c: %s"
 
-#: rpmio/macro.c:1310
+#: rpmio/macro.c:1313
 #, fuzzy, c-format
 msgid "A %% is followed by an unparseable macro\n"
 msgstr "Oznaki %% sledi nerazèlenljiv makro"
 
-#: rpmio/macro.c:1439
+#: rpmio/macro.c:1442
 #, fuzzy, c-format
 msgid "Macro %%%.*s not found, skipping\n"
 msgstr "Makro %%%.*s ni najden - preskoèeno"
 
-#: rpmio/macro.c:1510
+#: rpmio/macro.c:1513
 #, fuzzy
 msgid "Target buffer overflow\n"
 msgstr "Ciljni medpomnilnik je bil prekoraèen"
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1705 rpmio/macro.c:1711
+#: rpmio/macro.c:1708 rpmio/macro.c:1714
 #, fuzzy, c-format
 msgid "File %s: %s\n"
 msgstr "Datoteka %s: %s"
 
-#: rpmio/macro.c:1714
+#: rpmio/macro.c:1717
 #, fuzzy, c-format
 msgid "File %s is smaller than %u bytes\n"
 msgstr "Datoteka %s je kraj¹a od %d bajtov"
@@ -5356,9 +5392,6 @@ msgstr ""
 #~ msgid "expected size   : %d\n"
 #~ msgstr "prièakovana vel.: %d\n"
 
-#~ msgid "path %s is not relocateable for package %s-%s-%s"
-#~ msgstr "poti %s ni mo¾no premakniti za paket %s-%s-%s"
-
 #~ msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
 #~ msgstr "RPMERR_INTERNAL: Dose¾ena omejitev v getUname()\n"
 
index 2b4b740..9c12056 100644 (file)
--- a/po/sr.po
+++ b/po/sr.po
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:11-0500\n"
+"POT-Creation-Date: 2003-12-30 08:11-0500\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=iso-8859-2\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -18,44 +18,44 @@ msgstr "lo
 msgid "Unable to open spec file %s: %s\n"
 msgstr "Ne mogu da otvorim %s za èitanje: %s"
 
-#: build.c:152 build.c:164
+#: build.c:150 build.c:162
 #, fuzzy, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr "neuspelo otvaranje %s\n"
 
 #. Give up
-#: build.c:171
+#: build.c:169
 #, fuzzy, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "Neuspelo èitanje %s: %s."
 
-#: build.c:199
+#: build.c:197
 #, fuzzy, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr "Neuspelo èitanje %s: %s."
 
-#: build.c:239
+#: build.c:237
 #, fuzzy, c-format
 msgid "failed to stat %s: %m\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: build.c:244
+#: build.c:242
 #, fuzzy, c-format
 msgid "File %s is not a regular file.\n"
 msgstr "%s ne lièi na RPM paket\n"
 
-#: build.c:253
+#: build.c:251
 #, fuzzy, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr "%s ne lièi na RPM paket\n"
 
 #. parse up the build operators
-#: build.c:324
+#: build.c:322
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr ""
 
-#: build.c:339
+#: build.c:337
 #, fuzzy, c-format
 msgid "Building for target %s\n"
 msgstr "gre¹ka potrage za paketom %s\n"
@@ -108,7 +108,7 @@ msgstr ""
 msgid "%s: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: rpmqv.c:129 lib/poptALL.c:114
+#: rpmqv.c:129 lib/poptALL.c:119
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM verzija %s\n"
@@ -427,166 +427,166 @@ msgstr ""
 msgid "syntax error in expression\n"
 msgstr "oèekivan znak ? u izrazu"
 
-#: build/files.c:278
+#: build/files.c:280
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr ""
 
-#: build/files.c:343 build/files.c:543 build/files.c:739
+#: build/files.c:345 build/files.c:545 build/files.c:741
 #, fuzzy, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "nedostaje { posle %"
 
-#: build/files.c:354 build/files.c:673 build/files.c:750
+#: build/files.c:356 build/files.c:675 build/files.c:752
 #, fuzzy, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "nedostaje ':' na %s:%d"
 
-#: build/files.c:392 build/files.c:698
+#: build/files.c:394 build/files.c:700
 #, fuzzy, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "pogre¹an broj paketa: %s\n"
 
-#: build/files.c:502
+#: build/files.c:504
 #, fuzzy, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "nedostaje { posle %"
 
-#: build/files.c:559
+#: build/files.c:561
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr ""
 
-#: build/files.c:597
+#: build/files.c:599
 #, fuzzy, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "Neuspelo èitanje %s: %s."
 
-#: build/files.c:607
+#: build/files.c:609
 #, fuzzy, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "Neuspelo èitanje %s: %s."
 
-#: build/files.c:619
+#: build/files.c:621
 #, fuzzy, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "Neuspelo èitanje %s: %s."
 
-#: build/files.c:777
+#: build/files.c:779
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr ""
 
 #. @innercontinue@
-#: build/files.c:788
+#: build/files.c:790
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr ""
 
-#: build/files.c:917
+#: build/files.c:919
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr ""
 
-#: build/files.c:925
+#: build/files.c:927
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr ""
 
 #. We already got a file -- error
-#: build/files.c:959
+#: build/files.c:961
 #, fuzzy, c-format
 msgid "Two files on one line: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: build/files.c:976
+#: build/files.c:978
 #, fuzzy, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "preme¹tanja moraju poèeti znakom '/'"
 
-#: build/files.c:989
+#: build/files.c:991
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr ""
 
-#: build/files.c:1141
+#: build/files.c:1149
 #, fuzzy, c-format
 msgid "File listed twice: %s\n"
 msgstr "Neuspelo èitanje %s: %s."
 
-#: build/files.c:1280
+#: build/files.c:1288
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr ""
 
-#: build/files.c:1520
+#: build/files.c:1535
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Neuspelo èitanje %s: %s."
 
-#: build/files.c:1544
+#: build/files.c:1559
 #, fuzzy, c-format
 msgid "File not found: %s\n"
 msgstr "Datoteka nije pronaðena na serveru"
 
-#: build/files.c:1752
+#: build/files.c:1767
 #, fuzzy, c-format
 msgid "%s: public key read failed.\n"
 msgstr "%s: Neuspeo 'readLead'\n"
 
-#: build/files.c:1756 lib/rpmchecksig.c:580
+#: build/files.c:1771 lib/rpmchecksig.c:580
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: build/files.c:1804
+#: build/files.c:1819
 #, fuzzy, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "preme¹tanja moraju poèeti znakom '/'"
 
-#: build/files.c:1828
+#: build/files.c:1843
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "paket %s nije naveden u %s"
 
-#: build/files.c:1845 lib/rpminstall.c:347
+#: build/files.c:1860 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:1905
+#: build/files.c:1920
 #, 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:1916 build/pack.c:156
+#: build/files.c:1931 build/pack.c:156
 #, fuzzy, c-format
 msgid "line: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: build/files.c:2307
+#: build/files.c:2323
 #, fuzzy, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: build/files.c:2319 build/parsePrep.c:50
+#: build/files.c:2335 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: build/files.c:2363
+#: build/files.c:2379
 #, fuzzy, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr "gre¹ka potrage za paketom %s\n"
 
-#: build/files.c:2386
+#: build/files.c:2402
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
 "%s"
 msgstr ""
 
-#: build/files.c:2414
+#: build/files.c:2430
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "neuspelo otvaranje %s: %s"
@@ -729,7 +729,7 @@ msgstr "Ne mogu da upi
 msgid "Could not open %s: %s\n"
 msgstr "neuspelo otvaranje %s\n"
 
-#: build/pack.c:632 lib/psm.c:1427
+#: build/pack.c:632 lib/psm.c:1420
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Ne mogu da upi¹em %s"
@@ -759,7 +759,7 @@ msgstr "Ne mogu da upi
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Ne mogu da upi¹em %s"
 
-#: build/pack.c:725 lib/psm.c:1725
+#: build/pack.c:725 lib/psm.c:1689
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1254,20 +1254,20 @@ msgstr "nemoj proveravati zavisnosti paketa"
 msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
 msgstr ""
 
-#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329
-#: lib/poptQV.c:338 lib/poptQV.c:377
+#: build/poptBT.c:229 lib/poptALL.c:240 lib/poptI.c:261 lib/poptQV.c:335
+#: lib/poptQV.c:344 lib/poptQV.c:383
 #, fuzzy
 msgid "don't verify package digest(s)"
 msgstr "nemoj proveravati zavisnosti paketa"
 
-#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332
-#: lib/poptQV.c:340 lib/poptQV.c:380
+#: build/poptBT.c:231 lib/poptALL.c:242 lib/poptI.c:263 lib/poptQV.c:338
+#: lib/poptQV.c:346 lib/poptQV.c:386
 #, fuzzy
 msgid "don't verify database header(s) when retrieved"
 msgstr "nemoj proveravati arhitekturu paketa"
 
-#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335
-#: lib/poptQV.c:342 lib/poptQV.c:382
+#: build/poptBT.c:233 lib/poptALL.c:248 lib/poptI.c:265 lib/poptQV.c:341
+#: lib/poptQV.c:348 lib/poptQV.c:388
 #, fuzzy
 msgid "don't verify package signature(s)"
 msgstr "proveri potpis u paketu"
@@ -1341,34 +1341,34 @@ msgstr ""
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:232
+#: lib/cpio.c:233
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:233
+#: lib/cpio.c:234
 #, fuzzy
 msgid "Unknown file type"
 msgstr "(nepoznat tip)"
 
-#: lib/cpio.c:234
+#: lib/cpio.c:235
 #, fuzzy
 msgid "Missing hard link(s)"
 msgstr "nedostaje ':' na %s:%d"
 
-#: lib/cpio.c:235
+#: lib/cpio.c:236
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:236
+#: lib/cpio.c:237
 #, fuzzy
 msgid "Internal error"
 msgstr "fatalna gre¹ka: "
 
-#: lib/cpio.c:237
+#: lib/cpio.c:238
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:250
+#: lib/cpio.c:251
 #, fuzzy
 msgid " failed - "
 msgstr "PGP omanuo"
@@ -1504,46 +1504,56 @@ msgstr "neuspelo otvaranje %s: %s"
 msgid "file %s is on an unknown device\n"
 msgstr ""
 
-#: lib/fsm.c:350
+#: lib/fsm.c:352
 msgid "========== Directories not explicitly included in package:\n"
 msgstr ""
 
-#: lib/fsm.c:352
+#: lib/fsm.c:354
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/fsm.c:1293
+#: lib/fsm.c:768
+#, c-format
+msgid "user %s does not exist - using root\n"
+msgstr ""
+
+#: lib/fsm.c:776
+#, fuzzy, c-format
+msgid "group %s does not exist - using root\n"
+msgstr "grupa %s ne sadr¾i nijedan paket\n"
+
+#: lib/fsm.c:1334
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr ""
 
-#: lib/fsm.c:1592
+#: lib/fsm.c:1633
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1719 lib/fsm.c:1855
+#: lib/fsm.c:1760 lib/fsm.c:1896
 #, fuzzy, c-format
 msgid "%s saved as %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/fsm.c:1882
+#: lib/fsm.c:1923
 #, 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:1888
+#: lib/fsm.c:1929
 #, fuzzy, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "neuspela komanda rmdir %s: %s"
 
-#: lib/fsm.c:1903
+#: lib/fsm.c:1944
 #, fuzzy, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "neuspelo otvaranje %s: %s\n"
 
-#: lib/fsm.c:1925
+#: lib/fsm.c:1966
 #, fuzzy, c-format
 msgid "%s created as %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
@@ -1661,115 +1671,115 @@ msgstr "%s: Neuspeo 'readLead'\n"
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Neuspeo 'readLead'\n"
 
-#: lib/poptALL.c:222
+#: lib/poptALL.c:227
 msgid "predefine MACRO with value EXPR"
 msgstr ""
 
-#: lib/poptALL.c:223 lib/poptALL.c:226
+#: lib/poptALL.c:228 lib/poptALL.c:231
 msgid "'MACRO EXPR'"
 msgstr ""
 
-#: lib/poptALL.c:225
+#: lib/poptALL.c:230
 msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: lib/poptALL.c:228
+#: lib/poptALL.c:233
 #, fuzzy
 msgid "print macro expansion of EXPR"
 msgstr "napi¹i verziju rpm-a koja se koristi"
 
-#: lib/poptALL.c:229
+#: lib/poptALL.c:234
 msgid "'EXPR'"
 msgstr ""
 
-#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254
+#: lib/poptALL.c:236 lib/poptALL.c:255 lib/poptALL.c:259
 msgid "read <FILE:...> instead of default file(s)"
 msgstr ""
 
-#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255
+#: lib/poptALL.c:237 lib/poptALL.c:256 lib/poptALL.c:260
 msgid "<FILE:...>"
 msgstr ""
 
-#: lib/poptALL.c:240 lib/poptALL.c:274
+#: lib/poptALL.c:245 lib/poptALL.c:279
 msgid "disable use of libio(3) API"
 msgstr ""
 
-#: lib/poptALL.c:246
+#: lib/poptALL.c:251
 #, fuzzy
 msgid "send stdout to CMD"
 msgstr "po¹alji standardni izlaz u <komandu>"
 
-#: lib/poptALL.c:247
+#: lib/poptALL.c:252
 msgid "CMD"
 msgstr ""
 
-#: lib/poptALL.c:258
+#: lib/poptALL.c:263
 #, fuzzy
 msgid "use ROOT as top level directory"
 msgstr "koristi <dir> kao direktorijum najvi¹eg nivoa"
 
-#: lib/poptALL.c:259
+#: lib/poptALL.c:264
 msgid "ROOT"
 msgstr ""
 
-#: lib/poptALL.c:262
+#: lib/poptALL.c:267
 msgid "display known query tags"
 msgstr ""
 
-#: lib/poptALL.c:264
+#: lib/poptALL.c:269
 msgid "display final rpmrc and macro configuration"
 msgstr ""
 
-#: lib/poptALL.c:266
+#: lib/poptALL.c:271
 msgid "provide less detailed output"
 msgstr ""
 
-#: lib/poptALL.c:268
+#: lib/poptALL.c:273
 msgid "provide more detailed output"
 msgstr ""
 
-#: lib/poptALL.c:270
+#: lib/poptALL.c:275
 msgid "print the version of rpm being used"
 msgstr "napi¹i verziju rpm-a koja se koristi"
 
-#: lib/poptALL.c:283
+#: lib/poptALL.c:288
 #, fuzzy
 msgid "debug payload file state machine"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/poptALL.c:285
+#: lib/poptALL.c:290
 #, fuzzy
 msgid "use threads for file state machine"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/poptALL.c:287
+#: lib/poptALL.c:292
 msgid "debug protocol data stream"
 msgstr ""
 
-#: lib/poptALL.c:292
+#: lib/poptALL.c:297
 msgid "debug option/argument processing"
 msgstr ""
 
-#: lib/poptALL.c:297
+#: lib/poptALL.c:302
 #, fuzzy
 msgid "debug package state machine"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/poptALL.c:299
+#: lib/poptALL.c:304
 #, fuzzy
 msgid "use threads for package state machine"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/poptALL.c:311
+#: lib/poptALL.c:316
 msgid "debug rpmio I/O"
 msgstr ""
 
-#: lib/poptALL.c:323
+#: lib/poptALL.c:330
 msgid "debug URL cache handling"
 msgstr ""
 
 #. @-nullpass@
-#: lib/poptALL.c:393
+#: lib/poptALL.c:400
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1799,17 +1809,17 @@ msgstr ""
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:151
+#: lib/poptI.c:155
 #, fuzzy
 msgid "add suggested packages to transaction"
 msgstr "paket nema imena"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:159
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "instaliraj sve datoteke, èak i konfiguracije koje bi inaèe bile preskoèene"
 
-#: lib/poptI.c:159
+#: lib/poptI.c:163
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1817,210 +1827,215 @@ msgstr ""
 "ukloni sve pakete koji odgovaraju <paketu> (normalno, javlja se gre¹ka ako "
 "<paket> oznaèava vi¹e paketa)"
 
-#: lib/poptI.c:164 tools/rpmgraph.c:273
+#: lib/poptI.c:168 tools/rpmgraph.c:273
 msgid "use anaconda \"presentation order\""
 msgstr ""
 
-#: lib/poptI.c:169 lib/poptI.c:238
+#: lib/poptI.c:173 lib/poptI.c:245
 #, fuzzy
 msgid "do not execute package scriptlet(s)"
 msgstr "nemoj izvr¹iti nijedan skript iz paketa"
 
-#: lib/poptI.c:173
+#: lib/poptI.c:177
 #, fuzzy
-msgid "relocate files in non-relocateable package"
+msgid "relocate files in non-relocatable package"
 msgstr "paket %s nije instaliran\n"
 
-#: lib/poptI.c:176
+#: lib/poptI.c:180
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 msgid "erase (uninstall) package"
 msgstr "izbri¹i (deinstaliraj) paket"
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 #, fuzzy
 msgid "<package>+"
 msgstr "upit nad svim paketima"
 
-#: lib/poptI.c:182 lib/poptI.c:219
+#: lib/poptI.c:186 lib/poptI.c:223
 #, fuzzy
 msgid "do not install configuration files"
 msgstr "prika¾i samo konfiguracione datoteke (povlaèi -i)"
 
-#: lib/poptI.c:185 lib/poptI.c:224
+#: lib/poptI.c:189 lib/poptI.c:228
 msgid "do not install documentation"
 msgstr "nemoj da instalira¹ dokumentaciju"
 
-#: lib/poptI.c:187
+#: lib/poptI.c:191
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:188
+#: lib/poptI.c:192
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:191
+#: lib/poptI.c:195
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "skraæenica za --replacepkgs --replacefiles"
 
-#: lib/poptI.c:195
+#: lib/poptI.c:199
 #, fuzzy
 msgid "upgrade package(s) if already installed"
 msgstr "paket %s nije instaliran\n"
 
-#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
+#: lib/poptI.c:200 lib/poptI.c:216 lib/poptI.c:312
 #, fuzzy
 msgid "<packagefile>+"
 msgstr "    -b<faza> <spec>\t "
 
-#: lib/poptI.c:198
+#: lib/poptI.c:202
 msgid "print hash marks as package installs (good with -v)"
 msgstr "pi¹i he¹-znak (#) kako odmièe instaliranje paketa (dobro doðe sa -v)"
 
-#: lib/poptI.c:201
+#: lib/poptI.c:205
 msgid "don't verify package architecture"
 msgstr "nemoj proveravati arhitekturu paketa"
 
-#: lib/poptI.c:204
+#: lib/poptI.c:208
 msgid "don't verify package operating system"
 msgstr "nemoj proveravati operativni sistem za paket"
 
-#: lib/poptI.c:207
+#: lib/poptI.c:211
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:209
+#: lib/poptI.c:213
 msgid "install documentation"
 msgstr "instaliraj dokumentaciju"
 
-#: lib/poptI.c:212
+#: lib/poptI.c:216
 #, fuzzy
 msgid "install package(s)"
 msgstr "instaliraj paket"
 
-#: lib/poptI.c:215
+#: lib/poptI.c:219
 msgid "update the database, but do not modify the filesystem"
 msgstr "a¾uriraj bazu podataka, ali nemoj menjati fajl-sistem"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:225
 msgid "do not verify package dependencies"
 msgstr "nemoj proveravati zavisnosti paketa"
 
-#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:231 lib/poptQV.c:279 lib/poptQV.c:282
 #, fuzzy
 msgid "don't verify MD5 digest of files"
 msgstr "instaliraj paket"
 
-#: lib/poptI.c:230
+#: lib/poptI.c:233
+#, fuzzy
+msgid "don't install file security contexts"
+msgstr "prika¾i samo konfiguracione datoteke (povlaèi -i)"
+
+#: lib/poptI.c:237
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 "nemoj preurediti redosled instalacije paketa kako bi zadovoljio zavisnosti"
 
-#: lib/poptI.c:235
+#: lib/poptI.c:242
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:242
+#: lib/poptI.c:249
 #, fuzzy, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "nemoj izvr¹iti nijednu fazu"
 
-#: lib/poptI.c:245
+#: lib/poptI.c:252
 #, fuzzy, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "nemoj izvr¹iti nijednu fazu"
 
-#: lib/poptI.c:248
+#: lib/poptI.c:255
 #, fuzzy, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "nemoj izvr¹iti nijednu fazu"
 
-#: lib/poptI.c:251
+#: lib/poptI.c:258
 #, fuzzy, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "nemoj izvr¹iti nijednu fazu"
 
-#: lib/poptI.c:261
+#: lib/poptI.c:268
 #, fuzzy
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "upit nad paketom koji ima <datoteku>"
 
-#: lib/poptI.c:264
+#: lib/poptI.c:271
 #, fuzzy, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "nemoj izvr¹iti nijedan skript iz paketa"
 
-#: lib/poptI.c:267
+#: lib/poptI.c:274
 #, fuzzy, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "nemoj izvr¹iti nijedan instalacioni skript"
 
-#: lib/poptI.c:270
+#: lib/poptI.c:277
 #, fuzzy, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "nemoj izvr¹iti nijedan instalacioni skript"
 
-#: lib/poptI.c:273
+#: lib/poptI.c:280
 #, fuzzy, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "nemoj izvr¹iti nijedan instalacioni skript"
 
-#: lib/poptI.c:277
+#: lib/poptI.c:284
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 "a¾uriraj na staru verziju paketa (--force kod a¾uriranja ovo radi automatski)"
 
-#: lib/poptI.c:281
+#: lib/poptI.c:288
 msgid "print percentages as package installs"
 msgstr "pi¹i procente instalacije paketa"
 
-#: lib/poptI.c:283
+#: lib/poptI.c:290
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "premesti paket u <dir>, ako se mo¾e premestiti"
 
-#: lib/poptI.c:284
+#: lib/poptI.c:291
 msgid "<dir>"
 msgstr ""
 
-#: lib/poptI.c:286
+#: lib/poptI.c:293
 #, fuzzy
 msgid "relocate files from path <old> to <new>"
 msgstr "premesti datoteke iz <starog-puta> u <novi-put>"
 
-#: lib/poptI.c:287
+#: lib/poptI.c:294
 #, fuzzy
 msgid "<old>=<new>"
 msgstr "premesti datoteke iz <starog-puta> u <novi-put>"
 
-#: lib/poptI.c:290
+#: lib/poptI.c:297
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:293
+#: lib/poptI.c:300
 msgid "install even if the package replaces installed files"
 msgstr "instaliraj èak iako æe paket zameniti instalirane datoteke"
 
-#: lib/poptI.c:296
+#: lib/poptI.c:303
 msgid "reinstall if the package is already present"
 msgstr "ponovo instaliraj ako je paket veæ prisutan"
 
-#: lib/poptI.c:298
+#: lib/poptI.c:305
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:299
+#: lib/poptI.c:306
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:301
+#: lib/poptI.c:308
 msgid "don't install, but tell if it would work or not"
 msgstr "nemoj instalirati, ali reci da li æe da radi ili ne"
 
-#: lib/poptI.c:304
+#: lib/poptI.c:311
 #, fuzzy
 msgid "upgrade package(s)"
 msgstr "instaliraj paket"
@@ -2109,217 +2124,212 @@ msgstr "upit za pakete koji zahtevaju <i> svojstvo"
 msgid "query/verify the package(s) which provide a dependency"
 msgstr "upit za pakete koji omoguæavaju <i> svojstvo"
 
-#: lib/poptQV.c:226
+#: lib/poptQV.c:230
 #, fuzzy
 msgid "list all configuration files"
 msgstr "prika¾i samo konfiguracione datoteke (povlaèi -i)"
 
-#: lib/poptQV.c:228
+#: lib/poptQV.c:232
 #, fuzzy
 msgid "list all documentation files"
 msgstr "instaliraj dokumentaciju"
 
-#: lib/poptQV.c:230
+#: lib/poptQV.c:234
 #, fuzzy
 msgid "dump basic file information"
 msgstr "prika¾i informacije o paketu"
 
-#: lib/poptQV.c:234
+#: lib/poptQV.c:238
 #, fuzzy
 msgid "list files in package"
 msgstr "instaliraj paket"
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:243
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:243
+#: lib/poptQV.c:247
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
-#: lib/poptQV.c:246
+#: lib/poptQV.c:250
 #, fuzzy, c-format
 msgid "skip %%readme files"
 msgstr "%s: Neuspeo 'readLead'\n"
 
-#: lib/poptQV.c:252
+#: lib/poptQV.c:256
 #, fuzzy
 msgid "use the following query format"
 msgstr "neoèekivan izvor upita"
 
-#: lib/poptQV.c:254
+#: lib/poptQV.c:258
 #, fuzzy
 msgid "substitute i18n sections into spec file"
 msgstr "upit nad paketom koji ima <datoteku>"
 
-#: lib/poptQV.c:256
+#: lib/poptQV.c:260
 msgid "display the states of the listed files"
 msgstr ""
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:286
 #, fuzzy
 msgid "don't verify size of files"
 msgstr "instaliraj paket"
 
-#: lib/poptQV.c:285
+#: lib/poptQV.c:289
 #, fuzzy
 msgid "don't verify symlink path of files"
 msgstr "instaliraj paket"
 
-#: lib/poptQV.c:288
+#: lib/poptQV.c:292
 #, fuzzy
 msgid "don't verify owner of files"
 msgstr "instaliraj paket"
 
-#: lib/poptQV.c:291
+#: lib/poptQV.c:295
 #, fuzzy
 msgid "don't verify group of files"
 msgstr "instaliraj paket"
 
-#: lib/poptQV.c:294
+#: lib/poptQV.c:298
 msgid "don't verify modification time of files"
 msgstr ""
 
-#: lib/poptQV.c:297 lib/poptQV.c:300
+#: lib/poptQV.c:301 lib/poptQV.c:304
 #, fuzzy
 msgid "don't verify mode of files"
 msgstr "instaliraj paket"
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:307
+#, fuzzy
+msgid "don't verify file security contexts"
+msgstr "instaliraj paket"
+
+#: lib/poptQV.c:309
 #, fuzzy
 msgid "don't verify files in package"
 msgstr "instaliraj paket"
 
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
+#: lib/poptQV.c:312 lib/poptQV.c:315 tools/rpmgraph.c:267
 #, fuzzy
 msgid "don't verify package dependencies"
 msgstr "nemoj proveravati zavisnosti paketa"
 
-#: lib/poptQV.c:314 lib/poptQV.c:318 lib/poptQV.c:321 lib/poptQV.c:324
+#: lib/poptQV.c:320 lib/poptQV.c:324 lib/poptQV.c:327 lib/poptQV.c:330
 #, fuzzy
 msgid "don't execute verify script(s)"
 msgstr "nemoj izvr¹iti nijednu fazu"
 
-#: lib/poptQV.c:348
+#: lib/poptQV.c:354
 #, fuzzy
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr "instaliraj paket"
 
-#: lib/poptQV.c:351
+#: lib/poptQV.c:357
 #, fuzzy
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr "instaliraj paket"
 
-#: lib/poptQV.c:366
+#: lib/poptQV.c:372
 #, fuzzy
 msgid "sign package(s) (identical to --resign)"
 msgstr "potpi¹i paket (ukloni tekuæi potpis)"
 
-#: lib/poptQV.c:368
+#: lib/poptQV.c:374
 #, fuzzy
 msgid "verify package signature(s)"
 msgstr "proveri potpis u paketu"
 
-#: lib/poptQV.c:370
+#: lib/poptQV.c:376
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:372
+#: lib/poptQV.c:378
 #, fuzzy
 msgid "sign package(s) (identical to --addsign)"
 msgstr "potpi¹i paket (ukloni tekuæi potpis)"
 
-#: lib/poptQV.c:374
+#: lib/poptQV.c:380
 #, fuzzy
 msgid "generate signature"
 msgstr "napravi PGP potpis"
 
-#: lib/psm.c:269
+#: lib/psm.c:268
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:394
+#: lib/psm.c:386
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "upit nad paketom koji ima <datoteku>"
 
-#: lib/psm.c:480
+#: lib/psm.c:472
 #, c-format
 msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
 msgstr ""
 
-#: lib/psm.c:562
+#: lib/psm.c:554
 #, c-format
 msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
 msgstr ""
 
-#: lib/psm.c:570
+#: lib/psm.c:562
 #, c-format
 msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
 msgstr ""
 
-#: lib/psm.c:735
+#: lib/psm.c:730
 #, c-format
 msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
 msgstr ""
 
-#: lib/psm.c:756
+#: lib/psm.c:751
 #, 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:762
+#: lib/psm.c:757
 #, fuzzy, c-format
 msgid "%s(%s-%s-%s) scriptlet failed, exit status %d\n"
 msgstr "neuspelo izvr¹avanje skripta"
 
-#: lib/psm.c:1191
+#: lib/psm.c:1188
 #, 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:1330
+#: lib/psm.c:1323
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1439
+#: lib/psm.c:1432
 #, fuzzy
 msgid "Unable to reload signature header\n"
 msgstr "Ne mogu da upi¹em %s"
 
-#: lib/psm.c:1485
-#, c-format
-msgid "user %s does not exist - using root\n"
-msgstr ""
-
-#: lib/psm.c:1494
-#, fuzzy, c-format
-msgid "group %s does not exist - using root\n"
-msgstr "grupa %s ne sadr¾i nijedan paket\n"
-
-#: lib/psm.c:1546
+#: lib/psm.c:1510
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "neuspelo otvaranje %s: %s\n"
 
-#: lib/psm.c:1547
+#: lib/psm.c:1511
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1733
+#: lib/psm.c:1697
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/psm.c:1736
+#: lib/psm.c:1700
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "PGP omanuo"
 
-#: lib/query.c:118 lib/rpmts.c:565
+#: lib/query.c:118 lib/rpmts.c:566
 #, fuzzy, c-format
 msgid "incorrect format: %s\n"
 msgstr "gre¹ka u formatu: %s\n"
@@ -2369,8 +2379,8 @@ msgstr "paket nema imena"
 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:462
-#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576
+#: 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
 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
@@ -2385,7 +2395,7 @@ msgstr "upit nad %s neuspeo\n"
 msgid "old format source packages cannot be queried\n"
 msgstr "Upit se ne mo¾e izvesti nad izvorni paketima u starom formatu\n"
 
-#: lib/query.c:488 lib/rpminstall.c:608
+#: lib/query.c:488 lib/rpminstall.c:622
 #, fuzzy, c-format
 msgid "%s: not an rpm package (or package manifest): %s\n"
 msgstr "nijedan paket ne aktivira %s\n"
@@ -2455,17 +2465,17 @@ msgstr "pogre
 msgid "record %u could not be read\n"
 msgstr "ne mogu da proèitam slog %d\n"
 
-#: lib/query.c:766 lib/rpminstall.c:778
+#: lib/query.c:766 lib/rpminstall.c:792
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "paket %s nije instaliran\n"
 
-#: lib/rpmal.c:692
+#: lib/rpmal.c:694
 #, fuzzy
 msgid "(added files)"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:772
 msgid "(added provide)"
 msgstr ""
 
@@ -2590,36 +2600,36 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "paket %s nije naveden u %s"
 
-#: lib/rpmfi.c:546
+#: lib/rpmfi.c:561
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/rpmfi.c:784
+#: lib/rpmfi.c:799
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:788
+#: lib/rpmfi.c:803
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "Pribavljam %s\n"
 
-#: lib/rpmfi.c:791
+#: lib/rpmfi.c:806
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/rpmfi.c:919
+#: lib/rpmfi.c:934
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "Pribavljam %s\n"
 
-#: lib/rpmfi.c:929
+#: lib/rpmfi.c:944
 #, fuzzy, c-format
 msgid "relocating %s to %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: lib/rpmfi.c:1021
+#: lib/rpmfi.c:1036
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
@@ -2650,89 +2660,89 @@ msgstr ""
 msgid "Upgrading packages..."
 msgstr "instaliraj paket"
 
-#: lib/rpminstall.c:394
+#: lib/rpminstall.c:408
 #, fuzzy, c-format
 msgid "Adding goal: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/rpminstall.c:409
+#: lib/rpminstall.c:423
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Pribavljam %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:436
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:426
+#: lib/rpminstall.c:440
 #, fuzzy, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "gre¹ka: preskaèem %s - neuspelo preno¹enje - %s\n"
 
-#: lib/rpminstall.c:481 lib/rpminstall.c:872 tools/rpmgraph.c:140
+#: lib/rpminstall.c:495 lib/rpminstall.c:886 tools/rpmgraph.c:140
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "gre¹ka: %s se ne mo¾e instalirati\n"
 
-#: lib/rpminstall.c:523
+#: lib/rpminstall.c:537
 #, fuzzy, c-format
-msgid "package %s is not relocateable\n"
+msgid "package %s is not relocatable\n"
 msgstr "paket %s nije instaliran\n"
 
-#: lib/rpminstall.c:573
+#: lib/rpminstall.c:587
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:593
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:637
 #, fuzzy, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "grupa %s ne sadr¾i nijedan paket\n"
 
-#: lib/rpminstall.c:637 lib/rpminstall.c:810 lib/rpminstall.c:1239
+#: lib/rpminstall.c:651 lib/rpminstall.c:824 lib/rpminstall.c:1253
 #: tools/rpmgraph.c:195
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "lo¹e meðuzavisnosti:\n"
 
-#: lib/rpminstall.c:644 tools/rpmgraph.c:201
+#: lib/rpminstall.c:658 tools/rpmgraph.c:201
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:688
 #, fuzzy
 msgid "installing binary packages\n"
 msgstr "instaliraj paket"
 
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:712
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/rpminstall.c:787
+#: lib/rpminstall.c:801
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" odreðuje vi¹e paketa\n"
 
-#: lib/rpminstall.c:856
+#: lib/rpminstall.c:870
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "gre¹ka: ne mogu da otvorim %s\n"
 
-#: lib/rpminstall.c:862
+#: lib/rpminstall.c:876
 #, c-format
 msgid "Installing %s\n"
 msgstr "Instaliram %s\n"
 
-#: lib/rpminstall.c:1233
+#: lib/rpminstall.c:1247
 #, c-format
 msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
 msgstr ""
@@ -2800,7 +2810,7 @@ msgstr "paket %s nije instaliran\n"
 
 #: lib/rpmps.c:223
 #, fuzzy, c-format
-msgid "path %s in package %s is not relocateable"
+msgid "path %s in package %s is not relocatable"
 msgstr "paket %s nije instaliran\n"
 
 #: lib/rpmps.c:228
@@ -2948,50 +2958,75 @@ msgstr ""
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Ne mogu da otvorim %s za èitanje: %s"
 
-#: lib/rpmts.c:162
+#: lib/rpmsx.c:343
+#, c-format
+msgid "%s:  no newline on line number %d (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:360
+#, c-format
+msgid "%s:  line number %d is missing fields (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:391
+#, 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
+#, c-format
+msgid "%s:  invalid type specifier %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmsx.c:434
+#, c-format
+msgid "%s:  invalid context %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmts.c:163
 #, 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:252
+#: lib/rpmts.c:253
 #, fuzzy, c-format
 msgid "extra '(' in package label: %s\n"
 msgstr "pogre¹an broj paketa: %s\n"
 
-#: lib/rpmts.c:270
+#: lib/rpmts.c:271
 #, fuzzy, c-format
 msgid "missing '(' in package label: %s\n"
 msgstr "nedostaje { posle %"
 
-#: lib/rpmts.c:278
+#: lib/rpmts.c:279
 #, fuzzy, c-format
 msgid "missing ')' in package label: %s\n"
 msgstr "pogre¹an broj paketa: %s\n"
 
-#: lib/rpmts.c:455
+#: lib/rpmts.c:456
 #, 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:597
+#: lib/rpmts.c:598
 #, fuzzy, c-format
 msgid "Adding: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/rpmts.c:609
+#: lib/rpmts.c:610
 #, fuzzy, c-format
 msgid "Suggesting: %s\n"
 msgstr "Pribavljam %s\n"
 
-#: lib/rpmts.c:1077
+#: lib/rpmts.c:1097
 msgid "mounted filesystems:\n"
 msgstr ""
 
-#: lib/rpmts.c:1079
+#: lib/rpmts.c:1099
 msgid "    i    dev bsize       bavail       iavail mount point\n"
 msgstr ""
 
-#: lib/rpmts.c:1135
+#: lib/rpmts.c:1155
 #, c-format
 msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
 msgstr ""
@@ -3202,12 +3237,12 @@ msgstr ""
 msgid "computing file dispositions\n"
 msgstr ""
 
-#: lib/verify.c:288
+#: lib/verify.c:319
 #, fuzzy, c-format
 msgid "missing  %c %s"
 msgstr "nedostaje { posle %"
 
-#: lib/verify.c:397
+#: lib/verify.c:433
 #, fuzzy, c-format
 msgid "Unsatisfied dependencies for %s: "
 msgstr "Nezadovoljene meðuzavisnosti za %s-%s-%s: "
@@ -3409,162 +3444,162 @@ msgstr "Ne mogu da otvorim datoteku %s: "
 msgid "cannot open %s index\n"
 msgstr "gre¹ka: ne mogu da otvorim %s\n"
 
-#: rpmdb/rpmdb.c:915
+#: rpmdb/rpmdb.c:917
 #, fuzzy
 msgid "no dbpath has been set\n"
 msgstr "dbpath nije odreðen"
 
-#: rpmdb/rpmdb.c:1193 rpmdb/rpmdb.c:1322 rpmdb/rpmdb.c:1373 rpmdb/rpmdb.c:2316
-#: rpmdb/rpmdb.c:2432 rpmdb/rpmdb.c:3161
+#: rpmdb/rpmdb.c:1195 rpmdb/rpmdb.c:1324 rpmdb/rpmdb.c:1375 rpmdb/rpmdb.c:2322
+#: rpmdb/rpmdb.c:2438 rpmdb/rpmdb.c:3167
 #, fuzzy, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "gre¹ka kod uzimanja sloga %s iz %s"
 
-#: rpmdb/rpmdb.c:1567
+#: rpmdb/rpmdb.c:1569
 msgid "miFreeHeader: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1577
+#: rpmdb/rpmdb.c:1579
 #, fuzzy, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "gre¹ka zapisivanja sloga %s u %s"
 
-#: rpmdb/rpmdb.c:2209
+#: rpmdb/rpmdb.c:2212
 msgid "rpmdbNextIterator: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2242
 #, c-format
 msgid "rpmdb: damaged header #%u retrieved -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2520
+#: rpmdb/rpmdb.c:2526
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "ne mogu da proèitam zaglavlje na %d za proveru"
 
-#: rpmdb/rpmdb.c:2583
+#: rpmdb/rpmdb.c:2589
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "gre¹ka kod uzimanja sloga %s iz %s"
 
-#: rpmdb/rpmdb.c:2698
+#: rpmdb/rpmdb.c:2704
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "gre¹ka uklanjanja sloga %s u %s"
 
-#: rpmdb/rpmdb.c:2702
+#: rpmdb/rpmdb.c:2708
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "gre¹ka uklanjanja sloga %s u %s"
 
-#: rpmdb/rpmdb.c:2730
+#: rpmdb/rpmdb.c:2736
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "gre¹ka kod uzimanja sloga %s iz %s"
 
-#: rpmdb/rpmdb.c:2751
+#: rpmdb/rpmdb.c:2757
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "gre¹ka zapisivanja sloga %s u %s"
 
-#: rpmdb/rpmdb.c:2761
+#: rpmdb/rpmdb.c:2767
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "gre¹ka uklanjanja sloga %s u %s"
 
-#: rpmdb/rpmdb.c:2910
+#: rpmdb/rpmdb.c:2916
 #, fuzzy, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "gre¹ka kod potrage za paketom %s\n"
 
-#: rpmdb/rpmdb.c:2964
+#: rpmdb/rpmdb.c:2970
 msgid "rpmdbAdd: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3136
+#: rpmdb/rpmdb.c:3142
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3140
+#: rpmdb/rpmdb.c:3146
 #, fuzzy, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "gre¹ka uklanjanja sloga %s u %s"
 
-#: rpmdb/rpmdb.c:3180
+#: rpmdb/rpmdb.c:3186
 #, fuzzy, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "gre¹ka zapisivanja sloga %s u %s"
 
-#: rpmdb/rpmdb.c:3581
+#: rpmdb/rpmdb.c:3587
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3619
+#: rpmdb/rpmdb.c:3625
 msgid "no dbpath has been set"
 msgstr "dbpath nije odreðen"
 
-#: rpmdb/rpmdb.c:3651
+#: rpmdb/rpmdb.c:3657
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "rekreiraj bazu podataka iz postojeæe baze"
 
-#: rpmdb/rpmdb.c:3655
+#: rpmdb/rpmdb.c:3661
 #, fuzzy, c-format
 msgid "temporary database %s already exists\n"
 msgstr "privremena baza podataka %s veæ postoji"
 
-#: rpmdb/rpmdb.c:3661
+#: rpmdb/rpmdb.c:3667
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: rpmdb/rpmdb.c:3663
+#: rpmdb/rpmdb.c:3669
 #, fuzzy, c-format
 msgid "creating directory %s: %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: rpmdb/rpmdb.c:3670
+#: rpmdb/rpmdb.c:3676
 #, fuzzy, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "rekreiraj bazu podataka iz postojeæe baze"
 
-#: rpmdb/rpmdb.c:3683
+#: rpmdb/rpmdb.c:3689
 #, fuzzy, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "rekreiraj bazu podataka iz postojeæe baze"
 
-#: rpmdb/rpmdb.c:3712
+#: rpmdb/rpmdb.c:3718
 #, fuzzy, c-format
 msgid "header #%u in the database is bad -- skipping.\n"
 msgstr "slog broj %d u bazi podataka je neispravan -- preskaèem ga"
 
-#: rpmdb/rpmdb.c:3752
+#: rpmdb/rpmdb.c:3758
 #, fuzzy, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "ne mogu da dodam slog originalno na %d"
 
-#: rpmdb/rpmdb.c:3766
+#: rpmdb/rpmdb.c:3772
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3774
+#: rpmdb/rpmdb.c:3780
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3776
+#: rpmdb/rpmdb.c:3782
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3786
+#: rpmdb/rpmdb.c:3792
 #, fuzzy, c-format
 msgid "removing directory %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: rpmdb/rpmdb.c:3788
+#: rpmdb/rpmdb.c:3794
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
@@ -3620,42 +3655,42 @@ msgstr ""
 msgid "Macro %%%s (%s) was not used below level %d\n"
 msgstr ""
 
-#: rpmio/macro.c:982
+#: rpmio/macro.c:984
 #, fuzzy, c-format
 msgid "Unknown option %c in %s(%s)\n"
 msgstr "(nepoznat tip)"
 
-#: rpmio/macro.c:1182
+#: rpmio/macro.c:1184
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)\n"
 msgstr ""
 
-#: rpmio/macro.c:1252 rpmio/macro.c:1269
+#: rpmio/macro.c:1255 rpmio/macro.c:1272
 #, fuzzy, c-format
 msgid "Unterminated %c: %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: rpmio/macro.c:1310
+#: rpmio/macro.c:1313
 #, c-format
 msgid "A %% is followed by an unparseable macro\n"
 msgstr ""
 
-#: rpmio/macro.c:1439
+#: rpmio/macro.c:1442
 #, fuzzy, c-format
 msgid "Macro %%%.*s not found, skipping\n"
 msgstr "paket %s nije naðen u %s"
 
-#: rpmio/macro.c:1510
+#: rpmio/macro.c:1513
 msgid "Target buffer overflow\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1705 rpmio/macro.c:1711
+#: rpmio/macro.c:1708 rpmio/macro.c:1714
 #, fuzzy, c-format
 msgid "File %s: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: rpmio/macro.c:1714
+#: rpmio/macro.c:1717
 #, c-format
 msgid "File %s is smaller than %u bytes\n"
 msgstr ""
index de73553..2308ed0 100644 (file)
--- a/po/sv.po
+++ b/po/sv.po
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:11-0500\n"
+"POT-Creation-Date: 2003-12-30 08:11-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"
@@ -19,44 +19,44 @@ msgstr "Ouppfyllda byggberoenden:\n"
 msgid "Unable to open spec file %s: %s\n"
 msgstr "Kan inte öppna specfilen %s: %s\n"
 
-#: build.c:152 build.c:164
+#: build.c:150 build.c:162
 #, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr "Kunde inte öppna \"tar\"-rör: %m\n"
 
 #. Give up
-#: build.c:171
+#: build.c:169
 #, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "Kunde inte läsa specfil från %s\n"
 
-#: build.c:199
+#: build.c:197
 #, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr "Kunde inte byta namn på %s till %s: %m\n"
 
-#: build.c:239
+#: build.c:237
 #, c-format
 msgid "failed to stat %s: %m\n"
 msgstr "kunde inte ta status på %s: %m\n"
 
-#: build.c:244
+#: build.c:242
 #, c-format
 msgid "File %s is not a regular file.\n"
 msgstr "Filen %s är inte en vanlig fil.\n"
 
-#: build.c:253
+#: build.c:251
 #, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr "Filen %s tycks inte vara en specfil.\n"
 
 #. parse up the build operators
-#: build.c:324
+#: build.c:322
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr "Bygger målplattformar: %s\n"
 
-#: build.c:339
+#: build.c:337
 #, c-format
 msgid "Building for target %s\n"
 msgstr "Bygger för målet %s\n"
@@ -108,7 +108,7 @@ msgstr "Gemensamma flaggor f
 msgid "%s: %s\n"
 msgstr "%s: %s\n"
 
-#: rpmqv.c:129 lib/poptALL.c:114
+#: rpmqv.c:129 lib/poptALL.c:119
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM version %s\n"
@@ -417,159 +417,159 @@ msgstr "&& och || st
 msgid "syntax error in expression\n"
 msgstr "syntaxfel i uttryck\n"
 
-#: build/files.c:278
+#: build/files.c:280
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "TIMECHECK-fel: %s\n"
 
-#: build/files.c:343 build/files.c:543 build/files.c:739
+#: build/files.c:345 build/files.c:545 build/files.c:741
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "\"(\" saknas i %s %s\n"
 
-#: build/files.c:354 build/files.c:673 build/files.c:750
+#: build/files.c:356 build/files.c:675 build/files.c:752
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "\")\" saknas i %s(%s\n"
 
-#: build/files.c:392 build/files.c:698
+#: build/files.c:394 build/files.c:700
 #, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "Ogiltigt %s-element: %s\n"
 
-#: build/files.c:502
+#: build/files.c:504
 #, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "%s saknas i %s %s\n"
 
-#: build/files.c:559
+#: build/files.c:561
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr "Annat än blanktecken följer på %s(): %s\n"
 
-#: build/files.c:597
+#: build/files.c:599
 #, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "Felaktig syntax: %s(%s)\n"
 
-#: build/files.c:607
+#: build/files.c:609
 #, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "Felaktig rättighetsspecifikation: %s(%s)\n"
 
-#: build/files.c:619
+#: build/files.c:621
 #, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "Felaktig specifikation av katalogrättigheter: %s(%s)\n"
 
-#: build/files.c:777
+#: build/files.c:779
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr "Ovanlig lokallängd: \"%.*s\" i %%lang(%s)\n"
 
 #. @innercontinue@
-#: build/files.c:788
+#: build/files.c:790
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr "Duplicerad lokal %.*s i %%lang(%s)\n"
 
-#: build/files.c:917
+#: build/files.c:919
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr "Slog i gränsen för %%docdir\n"
 
-#: build/files.c:925
+#: build/files.c:927
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr "Endast ett argument till %%docdir\n"
 
 #. We already got a file -- error
-#: build/files.c:959
+#: build/files.c:961
 #, c-format
 msgid "Two files on one line: %s\n"
 msgstr "Två filer på en rad: %s\n"
 
-#: build/files.c:976
+#: build/files.c:978
 #, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "Filnamn måste börja med \"/\": %s\n"
 
-#: build/files.c:989
+#: build/files.c:991
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr "Kan inte blanda special %%doc med andra former: %s\n"
 
-#: build/files.c:1141
+#: build/files.c:1149
 #, c-format
 msgid "File listed twice: %s\n"
 msgstr "Filen uppräknad två gånger: %s\n"
 
-#: build/files.c:1280
+#: build/files.c:1288
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "Symbolisk länk pekar på BuildRoot: %s -> %s\n"
 
-#: build/files.c:1520
+#: build/files.c:1535
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Filen matchar inte prefixet (%s): %s\n"
 
-#: build/files.c:1544
+#: build/files.c:1559
 #, c-format
 msgid "File not found: %s\n"
 msgstr "Filen hittades inte: %s\n"
 
-#: build/files.c:1752
+#: build/files.c:1767
 #, c-format
 msgid "%s: public key read failed.\n"
 msgstr "%s: läsning av publik nyckel misslyckades.\n"
 
-#: build/files.c:1756 lib/rpmchecksig.c:580
+#: build/files.c:1771 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:1804
+#: build/files.c:1819
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Filen behöver inledande \"/\": %s\n"
 
-#: build/files.c:1828
+#: build/files.c:1843
 #, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "Matchning inte tillåtet: %s\n"
 
-#: build/files.c:1845 lib/rpminstall.c:347
+#: build/files.c:1860 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:1905
+#: build/files.c:1920
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "Kunde inte öppna %%files-fil %s: %s\n"
 
-#: build/files.c:1916 build/pack.c:156
+#: build/files.c:1931 build/pack.c:156
 #, c-format
 msgid "line: %s\n"
 msgstr "rad: %s\n"
 
-#: build/files.c:2307
+#: build/files.c:2323
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "Felaktig fil: %s: %s\n"
 
-#: build/files.c:2319 build/parsePrep.c:50
+#: build/files.c:2335 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Felaktig ägare/grupp: %s\n"
 
-#: build/files.c:2363
+#: build/files.c:2379
 #, c-format
 msgid "Checking for unpackaged file(s): %s\n"
 msgstr "Letar efter opackade fil(er): %s\n"
 
-#: build/files.c:2386
+#: build/files.c:2402
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
@@ -578,7 +578,7 @@ msgstr ""
 "Installerade (men opaketerade) filer funna:\n"
 "%s"
 
-#: build/files.c:2414
+#: build/files.c:2430
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Bearbetar filer: %s-%s-%s\n"
@@ -717,7 +717,7 @@ msgstr "Kan inte l
 msgid "Could not open %s: %s\n"
 msgstr "Kunde inte öppna %s: %s\n"
 
-#: build/pack.c:632 lib/psm.c:1427
+#: build/pack.c:632 lib/psm.c:1420
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Kunde inte skriva paket: %s\n"
@@ -747,7 +747,7 @@ msgstr "Kan inte l
 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:1725
+#: build/pack.c:725 lib/psm.c:1689
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Skrev: %s\n"
@@ -1234,18 +1234,18 @@ msgstr "verifiera inte byggberoenden"
 msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
 msgstr "generera pakethuvuden kompatibla med (äldre) rpm[23]-paketering"
 
-#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329
-#: lib/poptQV.c:338 lib/poptQV.c:377
+#: build/poptBT.c:229 lib/poptALL.c:240 lib/poptI.c:261 lib/poptQV.c:335
+#: lib/poptQV.c:344 lib/poptQV.c:383
 msgid "don't verify package digest(s)"
 msgstr "verifiera inte paketkontrollsummor"
 
-#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332
-#: lib/poptQV.c:340 lib/poptQV.c:380
+#: build/poptBT.c:231 lib/poptALL.c:242 lib/poptI.c:263 lib/poptQV.c:338
+#: lib/poptQV.c:346 lib/poptQV.c:386
 msgid "don't verify database header(s) when retrieved"
 msgstr "verifiera inte databashuvuden när de hämtas"
 
-#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335
-#: lib/poptQV.c:342 lib/poptQV.c:382
+#: build/poptBT.c:233 lib/poptALL.c:248 lib/poptI.c:265 lib/poptQV.c:341
+#: lib/poptQV.c:348 lib/poptQV.c:388
 msgid "don't verify package signature(s)"
 msgstr "verifiera inte paketsignatur(er)"
 
@@ -1315,31 +1315,31 @@ msgstr "Felaktigt magiskt tal"
 msgid "Bad/unreadable  header"
 msgstr "Felaktigt/oläsbart huvud"
 
-#: lib/cpio.c:232
+#: lib/cpio.c:233
 msgid "Header size too big"
 msgstr "Huvudstorleken för stor"
 
-#: lib/cpio.c:233
+#: lib/cpio.c:234
 msgid "Unknown file type"
 msgstr "Okänd filtyp"
 
-#: lib/cpio.c:234
+#: lib/cpio.c:235
 msgid "Missing hard link(s)"
 msgstr "Saknade hårda länkar"
 
-#: lib/cpio.c:235
+#: lib/cpio.c:236
 msgid "MD5 sum mismatch"
 msgstr "MD5-summan stämmer inte"
 
-#: lib/cpio.c:236
+#: lib/cpio.c:237
 msgid "Internal error"
 msgstr "Internt fel"
 
-#: lib/cpio.c:237
+#: lib/cpio.c:238
 msgid "Archive file not in header"
 msgstr "Ingen arkivfilen i huvud"
 
-#: lib/cpio.c:250
+#: lib/cpio.c:251
 msgid " failed - "
 msgstr " misslyckades - "
 
@@ -1471,47 +1471,57 @@ msgstr "%5d 0x%04x %s %s\n"
 msgid "file %s is on an unknown device\n"
 msgstr "filen %s är på en okänd enhet\n"
 
-#: lib/fsm.c:350
+#: lib/fsm.c:352
 #, fuzzy
 msgid "========== Directories not explicitly included in package:\n"
 msgstr "========== Kataloger ej uttryckligen inkluderade i paketet:\n"
 
-#: lib/fsm.c:352
+#: lib/fsm.c:354
 #, c-format
 msgid "%10d %s\n"
 msgstr "%10d %s\n"
 
-#: lib/fsm.c:1293
+#: lib/fsm.c:768
+#, c-format
+msgid "user %s does not exist - using root\n"
+msgstr "användare %s finns inte - använder root\n"
+
+#: lib/fsm.c:776
+#, c-format
+msgid "group %s does not exist - using root\n"
+msgstr "grupp %s finns inte - använder root\n"
+
+#: lib/fsm.c:1334
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr "katalog %s skapad med rättigheter %04o.\n"
 
-#: lib/fsm.c:1592
+#: lib/fsm.c:1633
 #, 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:1719 lib/fsm.c:1855
+#: lib/fsm.c:1760 lib/fsm.c:1896
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s sparades som %s\n"
 
-#: lib/fsm.c:1882
+#: lib/fsm.c:1923
 #, 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:1888
+#: lib/fsm.c:1929
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s rmdir av %s misslyckades: %s\n"
 
-#: lib/fsm.c:1903
+#: lib/fsm.c:1944
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s unlink av %s misslyckades: %s\n"
 
-#: lib/fsm.c:1925
+#: lib/fsm.c:1966
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s skapades som %s\n"
@@ -1627,110 +1637,110 @@ msgstr "%s: headerRead misslyckades: %s"
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread misslyckades: %s\n"
 
-#: lib/poptALL.c:222
+#: lib/poptALL.c:227
 msgid "predefine MACRO with value EXPR"
 msgstr "fördefiniera MAKRO till värdet UTTR"
 
-#: lib/poptALL.c:223 lib/poptALL.c:226
+#: lib/poptALL.c:228 lib/poptALL.c:231
 msgid "'MACRO EXPR'"
 msgstr "'MAKRO UTTR'"
 
-#: lib/poptALL.c:225
+#: lib/poptALL.c:230
 msgid "define MACRO with value EXPR"
 msgstr "definiera MAKRO till värdet UTTR"
 
-#: lib/poptALL.c:228
+#: lib/poptALL.c:233
 msgid "print macro expansion of EXPR"
 msgstr "skriv ut makroexpansion av UTTR"
 
-#: lib/poptALL.c:229
+#: lib/poptALL.c:234
 msgid "'EXPR'"
 msgstr "'UTTR'"
 
-#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254
+#: lib/poptALL.c:236 lib/poptALL.c:255 lib/poptALL.c:259
 msgid "read <FILE:...> instead of default file(s)"
 msgstr "läs <FIL:...> istället för standardfil(er)"
 
-#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255
+#: lib/poptALL.c:237 lib/poptALL.c:256 lib/poptALL.c:260
 msgid "<FILE:...>"
 msgstr "<FIL:...>"
 
-#: lib/poptALL.c:240 lib/poptALL.c:274
+#: lib/poptALL.c:245 lib/poptALL.c:279
 msgid "disable use of libio(3) API"
 msgstr "inaktivera användningen av libio(3)-API:et"
 
-#: lib/poptALL.c:246
+#: lib/poptALL.c:251
 msgid "send stdout to CMD"
 msgstr "skicka standard ut till KMD"
 
-#: lib/poptALL.c:247
+#: lib/poptALL.c:252
 msgid "CMD"
 msgstr "KMD"
 
-#: lib/poptALL.c:258
+#: lib/poptALL.c:263
 msgid "use ROOT as top level directory"
 msgstr "använd ROT som toppnivåkatalog"
 
-#: lib/poptALL.c:259
+#: lib/poptALL.c:264
 msgid "ROOT"
 msgstr "ROT"
 
-#: lib/poptALL.c:262
+#: lib/poptALL.c:267
 msgid "display known query tags"
 msgstr "visa kända frågetaggar"
 
-#: lib/poptALL.c:264
+#: lib/poptALL.c:269
 msgid "display final rpmrc and macro configuration"
 msgstr "visa slutliga rpmrc- och makrokonfigurationer"
 
-#: lib/poptALL.c:266
+#: lib/poptALL.c:271
 msgid "provide less detailed output"
 msgstr "visa mindre detaljerad utdata"
 
-#: lib/poptALL.c:268
+#: lib/poptALL.c:273
 msgid "provide more detailed output"
 msgstr "visa mer detaljerad utdata"
 
-#: lib/poptALL.c:270
+#: lib/poptALL.c:275
 msgid "print the version of rpm being used"
 msgstr "visa vilken version av rpm som används"
 
-#: lib/poptALL.c:283
+#: lib/poptALL.c:288
 msgid "debug payload file state machine"
 msgstr "felsök lastfilstillståndsmaskin"
 
-#: lib/poptALL.c:285
+#: lib/poptALL.c:290
 #, fuzzy
 msgid "use threads for file state machine"
 msgstr "felsök lastfilstillståndsmaskin"
 
-#: lib/poptALL.c:287
+#: lib/poptALL.c:292
 msgid "debug protocol data stream"
 msgstr "felsök protokolldataström"
 
-#: lib/poptALL.c:292
+#: lib/poptALL.c:297
 msgid "debug option/argument processing"
 msgstr "felsök flagg-/argumenthantering"
 
-#: lib/poptALL.c:297
+#: lib/poptALL.c:302
 msgid "debug package state machine"
 msgstr "felsök pakettillståndsmaskin"
 
-#: lib/poptALL.c:299
+#: lib/poptALL.c:304
 #, fuzzy
 msgid "use threads for package state machine"
 msgstr "felsök pakettillståndsmaskin"
 
-#: lib/poptALL.c:311
+#: lib/poptALL.c:316
 msgid "debug rpmio I/O"
 msgstr "felsök rpmio I/O"
 
-#: lib/poptALL.c:323
+#: lib/poptALL.c:330
 msgid "debug URL cache handling"
 msgstr "felsök cache-hanteringen av URL:ar"
 
 #. @-nullpass@
-#: lib/poptALL.c:393
+#: lib/poptALL.c:400
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr "%s: flaggtabell felkonfigurerad (%d)\n"
@@ -1759,16 +1769,16 @@ msgstr "
 msgid "malformed rollback time/date stamp argument"
 msgstr "felformaterat tid-/datumstämpelargument för återställning"
 
-#: lib/poptI.c:151
+#: lib/poptI.c:155
 msgid "add suggested packages to transaction"
 msgstr "lägg till föreslagna paket till transaktion"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:159
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "installera alla filer, även konfigurationer som annars kunde hoppats över"
 
-#: lib/poptI.c:159
+#: lib/poptI.c:163
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1776,148 +1786,154 @@ msgstr ""
 "ta bort alla paket som matchar <paket> (normalt ger det ett fel om <paket> "
 "anger flera paket)"
 
-#: lib/poptI.c:164 tools/rpmgraph.c:273
+#: lib/poptI.c:168 tools/rpmgraph.c:273
 msgid "use anaconda \"presentation order\""
 msgstr "använda anacondas \"presentationsordning\""
 
-#: lib/poptI.c:169 lib/poptI.c:238
+#: lib/poptI.c:173 lib/poptI.c:245
 msgid "do not execute package scriptlet(s)"
 msgstr "kör inte paketskript"
 
-#: lib/poptI.c:173
-msgid "relocate files in non-relocateable package"
+#: lib/poptI.c:177
+#, fuzzy
+msgid "relocate files in non-relocatable package"
 msgstr "relokera filer i ej relokerbart paket"
 
-#: lib/poptI.c:176
+#: lib/poptI.c:180
 msgid "save erased package files by renaming into sub-directory"
 msgstr "spara raderade paketfiler genom att spara dem i underkatalog"
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 msgid "erase (uninstall) package"
 msgstr "radera (avinstallera) paket"
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 msgid "<package>+"
 msgstr "<paket>+"
 
-#: lib/poptI.c:182 lib/poptI.c:219
+#: lib/poptI.c:186 lib/poptI.c:223
 msgid "do not install configuration files"
 msgstr "installera inte konfigurationsfiler"
 
-#: lib/poptI.c:185 lib/poptI.c:224
+#: lib/poptI.c:189 lib/poptI.c:228
 msgid "do not install documentation"
 msgstr "installera inte dokumentation"
 
-#: lib/poptI.c:187
+#: lib/poptI.c:191
 msgid "skip files with leading component <path> "
 msgstr "hoppa över filer med inledande <sökväg>"
 
-#: lib/poptI.c:188
+#: lib/poptI.c:192
 msgid "<path>"
 msgstr "<sökväg>"
 
-#: lib/poptI.c:191
+#: lib/poptI.c:195
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "kortform för --replacepkgs --replacefiles"
 
-#: lib/poptI.c:195
+#: lib/poptI.c:199
 msgid "upgrade package(s) if already installed"
 msgstr "uppgradera paket om redan installerade"
 
-#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
+#: lib/poptI.c:200 lib/poptI.c:216 lib/poptI.c:312
 msgid "<packagefile>+"
 msgstr "<paketfil>+"
 
-#: lib/poptI.c:198
+#: lib/poptI.c:202
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 "skriv ut brädgårdar allteftersom paketet installeras (bra tillsammans med -v)"
 
-#: lib/poptI.c:201
+#: lib/poptI.c:205
 msgid "don't verify package architecture"
 msgstr "verifiera inte paketarkitektur"
 
-#: lib/poptI.c:204
+#: lib/poptI.c:208
 msgid "don't verify package operating system"
 msgstr "verifiera inte paketets operativsystem"
 
-#: lib/poptI.c:207
+#: lib/poptI.c:211
 msgid "don't check disk space before installing"
 msgstr "kontrollera inte diskutrymme före installation"
 
-#: lib/poptI.c:209
+#: lib/poptI.c:213
 msgid "install documentation"
 msgstr "installera dokumentation"
 
-#: lib/poptI.c:212
+#: lib/poptI.c:216
 msgid "install package(s)"
 msgstr "installera paket"
 
-#: lib/poptI.c:215
+#: lib/poptI.c:219
 msgid "update the database, but do not modify the filesystem"
 msgstr "uppdatera databasen, men ändra inte filsystemet"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:225
 msgid "do not verify package dependencies"
 msgstr "verifiera inte paketberoenden"
 
-#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:231 lib/poptQV.c:279 lib/poptQV.c:282
 msgid "don't verify MD5 digest of files"
 msgstr "verifiera inte MD5-summor för filer"
 
-#: lib/poptI.c:230
+#: lib/poptI.c:233
+#, fuzzy
+msgid "don't install file security contexts"
+msgstr "installera inte konfigurationsfiler"
+
+#: lib/poptI.c:237
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "flytta inte om paketinstallationen för att tillfredsställa beroenden"
 
-#: lib/poptI.c:235
+#: lib/poptI.c:242
 msgid "do not suggest missing dependency resolution(s)"
 msgstr "föreslå inte lösning(ar) på saknade beroenden"
 
-#: lib/poptI.c:242
+#: lib/poptI.c:249
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "utför inte (eventuellt) %%pre-skript"
 
-#: lib/poptI.c:245
+#: lib/poptI.c:252
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "utför inte (eventuellt) %%post-skript"
 
-#: lib/poptI.c:248
+#: lib/poptI.c:255
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "utför inte (eventuellt) %%preun-skript"
 
-#: lib/poptI.c:251
+#: lib/poptI.c:258
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "utför inte (eventuellt) %%postun-skript"
 
-#: lib/poptI.c:261
+#: lib/poptI.c:268
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "kör inte skript utlösta av detta paket"
 
-#: lib/poptI.c:264
+#: lib/poptI.c:271
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "kör inte %%triggerprein-skript"
 
-#: lib/poptI.c:267
+#: lib/poptI.c:274
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "kör inte %%triggerin-skript"
 
-#: lib/poptI.c:270
+#: lib/poptI.c:277
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "kör inte %%triggerun-skript"
 
-#: lib/poptI.c:273
+#: lib/poptI.c:280
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "kör inte %%triggerpostun-skript"
 
-#: lib/poptI.c:277
+#: lib/poptI.c:284
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1925,51 +1941,51 @@ msgstr ""
 "uppgradera till en gammal version av paketet (--force vid uppgraderingar gör "
 "detta automatiskt)"
 
-#: lib/poptI.c:281
+#: lib/poptI.c:288
 msgid "print percentages as package installs"
 msgstr "skriv procent allt eftersom paketet installeras"
 
-#: lib/poptI.c:283
+#: lib/poptI.c:290
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "flytta paketet till <katalog>, om flyttbart"
 
-#: lib/poptI.c:284
+#: lib/poptI.c:291
 msgid "<dir>"
 msgstr "<kat>"
 
-#: lib/poptI.c:286
+#: lib/poptI.c:293
 msgid "relocate files from path <old> to <new>"
 msgstr "relokera filer från <gammal> till <ny>"
 
-#: lib/poptI.c:287
+#: lib/poptI.c:294
 msgid "<old>=<new>"
 msgstr "<gammal>=<ny>"
 
-#: lib/poptI.c:290
+#: lib/poptI.c:297
 msgid "save erased package files by repackaging"
 msgstr "spara raderade paketfiler genom ompaketering"
 
-#: lib/poptI.c:293
+#: lib/poptI.c:300
 msgid "install even if the package replaces installed files"
 msgstr "installera även om paketet byter ut installerade filer"
 
-#: lib/poptI.c:296
+#: lib/poptI.c:303
 msgid "reinstall if the package is already present"
 msgstr "ominstallera när paketet redan är installerat"
 
-#: lib/poptI.c:298
+#: lib/poptI.c:305
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr "avinstallera nya, ominstallera gamla, paket tillbaka till <datum>"
 
-#: lib/poptI.c:299
+#: lib/poptI.c:306
 msgid "<date>"
 msgstr "<datum>"
 
-#: lib/poptI.c:301
+#: lib/poptI.c:308
 msgid "don't install, but tell if it would work or not"
 msgstr "installera inte, men tala om ifall det skulle fungera eller inte"
 
-#: lib/poptI.c:304
+#: lib/poptI.c:311
 msgid "upgrade package(s)"
 msgstr "uppgradera paket"
 
@@ -2041,197 +2057,192 @@ msgstr "fr
 msgid "query/verify the package(s) which provide a dependency"
 msgstr "fråga/verifiera paket som tillhandahåller ett beroende"
 
-#: lib/poptQV.c:226
+#: lib/poptQV.c:230
 msgid "list all configuration files"
 msgstr "lista alla konfigurationsfiler"
 
-#: lib/poptQV.c:228
+#: lib/poptQV.c:232
 msgid "list all documentation files"
 msgstr "lista alla dokumentationsfiler"
 
-#: lib/poptQV.c:230
+#: lib/poptQV.c:234
 msgid "dump basic file information"
 msgstr "visa filinformation"
 
-#: lib/poptQV.c:234
+#: lib/poptQV.c:238
 msgid "list files in package"
 msgstr "lista filer i paketet"
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:243
 #, c-format
 msgid "skip %%ghost files"
 msgstr "hoppa över %%ghost-filer"
 
-#: lib/poptQV.c:243
+#: lib/poptQV.c:247
 #, c-format
 msgid "skip %%license files"
 msgstr "hoppa över %%license-filer"
 
-#: lib/poptQV.c:246
+#: lib/poptQV.c:250
 #, c-format
 msgid "skip %%readme files"
 msgstr "hoppa över %%readme-filer"
 
-#: lib/poptQV.c:252
+#: lib/poptQV.c:256
 msgid "use the following query format"
 msgstr "använd följande frågeformat"
 
-#: lib/poptQV.c:254
+#: lib/poptQV.c:258
 msgid "substitute i18n sections into spec file"
 msgstr "ersätt översatta sektioner till specfil"
 
-#: lib/poptQV.c:256
+#: lib/poptQV.c:260
 msgid "display the states of the listed files"
 msgstr "visa tillstånd för de listade filerna"
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:286
 msgid "don't verify size of files"
 msgstr "verifiera inte storlekar på filer"
 
-#: lib/poptQV.c:285
+#: lib/poptQV.c:289
 msgid "don't verify symlink path of files"
 msgstr "verifiera inte sökvägen i symboliska länkar"
 
-#: lib/poptQV.c:288
+#: lib/poptQV.c:292
 msgid "don't verify owner of files"
 msgstr "verifiera inte ägare till filer"
 
-#: lib/poptQV.c:291
+#: lib/poptQV.c:295
 msgid "don't verify group of files"
 msgstr "verifiera inte grupper till filer"
 
-#: lib/poptQV.c:294
+#: lib/poptQV.c:298
 msgid "don't verify modification time of files"
 msgstr "verifiera inte modifikationstiden för filer"
 
-#: lib/poptQV.c:297 lib/poptQV.c:300
+#: lib/poptQV.c:301 lib/poptQV.c:304
 msgid "don't verify mode of files"
 msgstr "verifiera inte rättigheter för filer"
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:307
+#, fuzzy
+msgid "don't verify file security contexts"
+msgstr "verifiera inte filerna i paketet"
+
+#: lib/poptQV.c:309
 msgid "don't verify files in package"
 msgstr "verifiera inte filerna i paketet"
 
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
+#: lib/poptQV.c:312 lib/poptQV.c:315 tools/rpmgraph.c:267
 msgid "don't verify package dependencies"
 msgstr "verifiera inte paketberoenden"
 
-#: lib/poptQV.c:314 lib/poptQV.c:318 lib/poptQV.c:321 lib/poptQV.c:324
+#: lib/poptQV.c:320 lib/poptQV.c:324 lib/poptQV.c:327 lib/poptQV.c:330
 msgid "don't execute verify script(s)"
 msgstr "utför inte verifieringsskript"
 
-#: lib/poptQV.c:348
+#: lib/poptQV.c:354
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr "verifiera inte GPG V3 DSA-signatur(er)"
 
-#: lib/poptQV.c:351
+#: lib/poptQV.c:357
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr "verifiera inte PGP V3 RSA/MD5-signatur(er)"
 
-#: lib/poptQV.c:366
+#: lib/poptQV.c:372
 msgid "sign package(s) (identical to --resign)"
 msgstr "signera paket (detsamma som --resign)"
 
-#: lib/poptQV.c:368
+#: lib/poptQV.c:374
 msgid "verify package signature(s)"
 msgstr "verifiera paketsignatur(er)"
 
-#: lib/poptQV.c:370
+#: lib/poptQV.c:376
 msgid "import an armored public key"
 msgstr "importera en publik nyckel med skal"
 
-#: lib/poptQV.c:372
+#: lib/poptQV.c:378
 msgid "sign package(s) (identical to --addsign)"
 msgstr "signera paket (detsamma som --addsign)"
 
-#: lib/poptQV.c:374
+#: lib/poptQV.c:380
 msgid "generate signature"
 msgstr "generera signatur"
 
-#: lib/psm.c:269
+#: lib/psm.c:268
 msgid "source package expected, binary found\n"
 msgstr "källpaket förväntades, fann binärpaket\n"
 
-#: lib/psm.c:394
+#: lib/psm.c:386
 msgid "source package contains no .spec file\n"
 msgstr "källpaket innehåller ingen .spec-fil\n"
 
-#: lib/psm.c:480
+#: lib/psm.c:472
 #, fuzzy, c-format
 msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
 msgstr "%s: waitpid(%d) rk %d status %x\n"
 
 # 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:562
+#: lib/psm.c:554
 #, 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:570
+#: lib/psm.c:562
 #, 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:735
+#: lib/psm.c:730
 #, 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:756
+#: lib/psm.c:751
 #, 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:762
+#: lib/psm.c:757
 #, 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:1191
+#: lib/psm.c:1188
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "%s: %s har %d filer, test = %d\n"
 
-#: lib/psm.c:1330
+#: lib/psm.c:1323
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr "%s: %s-skript misslyckades (%d), hoppar över %s\n"
 
-#: lib/psm.c:1439
+#: lib/psm.c:1432
 msgid "Unable to reload signature header\n"
 msgstr "Kan inte läsa om signaturhuvud\n"
 
-#: lib/psm.c:1485
-#, c-format
-msgid "user %s does not exist - using root\n"
-msgstr "användare %s finns inte - använder root\n"
-
-#: lib/psm.c:1494
-#, c-format
-msgid "group %s does not exist - using root\n"
-msgstr "grupp %s finns inte - använder root\n"
-
-#: lib/psm.c:1546
+#: lib/psm.c:1510
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "uppackning av arkiv misslyckades%s%s: %s\n"
 
-#: lib/psm.c:1547
+#: lib/psm.c:1511
 msgid " on file "
 msgstr " vid fil "
 
-#: lib/psm.c:1733
+#: lib/psm.c:1697
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%s misslyckades på fil %s: %s\n"
 
-#: lib/psm.c:1736
+#: lib/psm.c:1700
 #, c-format
 msgid "%s failed: %s\n"
 msgstr "%s misslyckades: %s\n"
 
-#: lib/query.c:118 lib/rpmts.c:565
+#: lib/query.c:118 lib/rpmts.c:566
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "fel format: %s\n"
@@ -2278,8 +2289,8 @@ msgstr "paketet har inte fil
 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:462
-#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576
+#: 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
 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157
 #, c-format
 msgid "open of %s failed: %s\n"
@@ -2294,7 +2305,7 @@ msgstr "fr
 msgid "old format source packages cannot be queried\n"
 msgstr "källpaket i gammalt format går inte att fråga om\n"
 
-#: lib/query.c:488 lib/rpminstall.c:608
+#: lib/query.c:488 lib/rpminstall.c:622
 #, c-format
 msgid "%s: not an rpm package (or package manifest): %s\n"
 msgstr "%s: inte ett rpm-paket (eller paketspecifikation): %s\n"
@@ -2363,16 +2374,16 @@ msgstr "paketpost nummer: %u\n"
 msgid "record %u could not be read\n"
 msgstr "post %u kunde inte läsas\n"
 
-#: lib/query.c:766 lib/rpminstall.c:778
+#: lib/query.c:766 lib/rpminstall.c:792
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "paket %s är inte installerat\n"
 
-#: lib/rpmal.c:692
+#: lib/rpmal.c:694
 msgid "(added files)"
 msgstr "(lade till filer)"
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:772
 msgid "(added provide)"
 msgstr "(lade till tillhandahållande)"
 
@@ -2497,36 +2508,36 @@ msgstr "  %s    A %s\tB %s\n"
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "paket %s har ouppfyllda %s: %s\n"
 
-#: lib/rpmfi.c:546
+#: lib/rpmfi.c:561
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s överhoppad på grund av missingok-flagga\n"
 
-#: lib/rpmfi.c:784
+#: lib/rpmfi.c:799
 msgid "========== relocations\n"
 msgstr "========== omflyttningar\n"
 
-#: lib/rpmfi.c:788
+#: lib/rpmfi.c:803
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr "%5d utesluter  %s\n"
 
-#: lib/rpmfi.c:791
+#: lib/rpmfi.c:806
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d flyttar om %s -> %s\n"
 
-#: lib/rpmfi.c:919
+#: lib/rpmfi.c:934
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "hoppar över %s %s\n"
 
-#: lib/rpmfi.c:929
+#: lib/rpmfi.c:944
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "flyttar %s till %s\n"
 
-#: lib/rpmfi.c:1021
+#: lib/rpmfi.c:1036
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "flyttar katalogen %s till %s\n"
@@ -2555,87 +2566,87 @@ msgstr "Uppgraderar..."
 msgid "Upgrading packages..."
 msgstr "Uppgraderar paket..."
 
-#: lib/rpminstall.c:394
+#: lib/rpminstall.c:408
 #, c-format
 msgid "Adding goal: %s\n"
 msgstr "Lägger till mål: %s\n"
 
-#: lib/rpminstall.c:409
+#: lib/rpminstall.c:423
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Hämtar %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:436
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... som %s\n"
 
-#: lib/rpminstall.c:426
+#: lib/rpminstall.c:440
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "hoppar över %s - överföring misslyckades - %s\n"
 
-#: lib/rpminstall.c:481 lib/rpminstall.c:872 tools/rpmgraph.c:140
+#: lib/rpminstall.c:495 lib/rpminstall.c:886 tools/rpmgraph.c:140
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s kan inte installeras\n"
 
-#: lib/rpminstall.c:523
-#, c-format
-msgid "package %s is not relocateable\n"
+#: lib/rpminstall.c:537
+#, fuzzy, c-format
+msgid "package %s is not relocatable\n"
 msgstr "paket %s är inte relokerbart\n"
 
-#: lib/rpminstall.c:573
+#: lib/rpminstall.c:587
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "fel vid läsning från fil %s\n"
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:593
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "filen %s behöver en nyare version av RPM\n"
 
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:637
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "hittade %d käll- och %d binärpaket\n"
 
-#: lib/rpminstall.c:637 lib/rpminstall.c:810 lib/rpminstall.c:1239
+#: lib/rpminstall.c:651 lib/rpminstall.c:824 lib/rpminstall.c:1253
 #: tools/rpmgraph.c:195
 msgid "Failed dependencies:\n"
 msgstr "Ouppfyllda beroenden:\n"
 
-#: lib/rpminstall.c:644 tools/rpmgraph.c:201
+#: lib/rpminstall.c:658 tools/rpmgraph.c:201
 msgid "    Suggested resolutions:\n"
 msgstr "    Föreslagna lösningar:\n"
 
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:688
 msgid "installing binary packages\n"
 msgstr "installerar binärpaket\n"
 
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:712
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "kan inte öppna filen %s: %s\n"
 
-#: lib/rpminstall.c:787
+#: lib/rpminstall.c:801
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" anger flera paket\n"
 
-#: lib/rpminstall.c:856
+#: lib/rpminstall.c:870
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "kan inte öppna %s: %s\n"
 
-#: lib/rpminstall.c:862
+#: lib/rpminstall.c:876
 #, c-format
 msgid "Installing %s\n"
 msgstr "Installerar %s\n"
 
-#: lib/rpminstall.c:1233
+#: lib/rpminstall.c:1247
 #, c-format
 msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
 msgstr "Återställer paket (+%d/-%d) till %-24.24s (0x%08x):\n"
@@ -2702,8 +2713,8 @@ msgid "package %s is already installed"
 msgstr "paket %s är redan installerat"
 
 #: lib/rpmps.c:223
-#, c-format
-msgid "path %s in package %s is not relocateable"
+#, fuzzy, c-format
+msgid "path %s in package %s is not relocatable"
 msgstr "sökväg %s i paket %s är inte relokerbar"
 
 #: lib/rpmps.c:228
@@ -2850,50 +2861,75 @@ msgstr "Kan inte l
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Kan inte öppna %s för läsning: %s.\n"
 
-#: lib/rpmts.c:162
+#: lib/rpmsx.c:343
+#, c-format
+msgid "%s:  no newline on line number %d (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:360
+#, c-format
+msgid "%s:  line number %d is missing fields (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:391
+#, 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
+#, c-format
+msgid "%s:  invalid type specifier %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmsx.c:434
+#, c-format
+msgid "%s:  invalid context %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmts.c:163
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "kan inte öppna paketdatabas i %s\n"
 
-#: lib/rpmts.c:252
+#: lib/rpmts.c:253
 #, fuzzy, c-format
 msgid "extra '(' in package label: %s\n"
 msgstr "felaktigt paketnummer: %s\n"
 
-#: lib/rpmts.c:270
+#: lib/rpmts.c:271
 #, fuzzy, c-format
 msgid "missing '(' in package label: %s\n"
 msgstr "\"(\" saknas i %s %s\n"
 
-#: lib/rpmts.c:278
+#: lib/rpmts.c:279
 #, fuzzy, c-format
 msgid "missing ')' in package label: %s\n"
 msgstr "felaktigt paketnummer: %s\n"
 
-#: lib/rpmts.c:455
+#: lib/rpmts.c:456
 #, c-format
 msgid "cannot open Solve database in %s\n"
 msgstr "kan inte öppna Solve-databas i %s\n"
 
-#: lib/rpmts.c:597
+#: lib/rpmts.c:598
 #, c-format
 msgid "Adding: %s\n"
 msgstr "Lägger till: %s\n"
 
-#: lib/rpmts.c:609
+#: lib/rpmts.c:610
 #, c-format
 msgid "Suggesting: %s\n"
 msgstr "Föreslår %s\n"
 
-#: lib/rpmts.c:1077
+#: lib/rpmts.c:1097
 msgid "mounted filesystems:\n"
 msgstr "monterade filsystem:\n"
 
-#: lib/rpmts.c:1079
+#: lib/rpmts.c:1099
 msgid "    i    dev bsize       bavail       iavail mount point\n"
 msgstr "    i  enhet bstrl       btillg       itillg monteringspunkt\n"
 
-#: lib/rpmts.c:1135
+#: lib/rpmts.c:1155
 #, c-format
 msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
 msgstr "%5d 0x%04x %5u %12ld %12ld %s\n"
@@ -3098,12 +3134,12 @@ msgstr "ber
 msgid "computing file dispositions\n"
 msgstr "beräknar filåtgärder\n"
 
-#: lib/verify.c:288
+#: lib/verify.c:319
 #, c-format
 msgid "missing  %c %s"
 msgstr "saknas   %c %s"
 
-#: lib/verify.c:397
+#: lib/verify.c:433
 #, c-format
 msgid "Unsatisfied dependencies for %s: "
 msgstr "Ouppfyllda beroenden för %s: "
@@ -3302,161 +3338,161 @@ msgstr "kan inte 
 msgid "cannot open %s index\n"
 msgstr "kan inte öppna %s-indexet\n"
 
-#: rpmdb/rpmdb.c:915
+#: rpmdb/rpmdb.c:917
 msgid "no dbpath has been set\n"
 msgstr "ingen dbpath har satts\n"
 
-#: rpmdb/rpmdb.c:1193 rpmdb/rpmdb.c:1322 rpmdb/rpmdb.c:1373 rpmdb/rpmdb.c:2316
-#: rpmdb/rpmdb.c:2432 rpmdb/rpmdb.c:3161
+#: rpmdb/rpmdb.c:1195 rpmdb/rpmdb.c:1324 rpmdb/rpmdb.c:1375 rpmdb/rpmdb.c:2322
+#: rpmdb/rpmdb.c:2438 rpmdb/rpmdb.c:3167
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "fel(%d) när \"%s\"-poster hämtades från %s-indexet\n"
 
-#: rpmdb/rpmdb.c:1567
+#: rpmdb/rpmdb.c:1569
 msgid "miFreeHeader: skipping"
 msgstr "miFreeHeader: hoppar över"
 
-#: rpmdb/rpmdb.c:1577
+#: rpmdb/rpmdb.c:1579
 #, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "fel(%d) när post nr. %d sparades i %s\n"
 
-#: rpmdb/rpmdb.c:2209
+#: rpmdb/rpmdb.c:2212
 msgid "rpmdbNextIterator: skipping"
 msgstr "rpmdbNextIterator: hoppar över"
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2242
 #, c-format
 msgid "rpmdb: damaged header #%u retrieved -- skipping.\n"
 msgstr "rpmdb: skadat huvud nr. %u hämtat -- hoppar över.\n"
 
-#: rpmdb/rpmdb.c:2520
+#: rpmdb/rpmdb.c:2526
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "%s: kan inte läsa huvud vid 0x%x\n"
 
-#: rpmdb/rpmdb.c:2583
+#: rpmdb/rpmdb.c:2589
 #, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "fel(%d) när huvudpost nr. %d  för %s skulle tas bort\n"
 
-#: rpmdb/rpmdb.c:2698
+#: rpmdb/rpmdb.c:2704
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "tar bort \"%s\" från %s-indexet.\n"
 
-#: rpmdb/rpmdb.c:2702
+#: rpmdb/rpmdb.c:2708
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "tar bort %d poster från %s-indexet.\n"
 
-#: rpmdb/rpmdb.c:2730
+#: rpmdb/rpmdb.c:2736
 #, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "fel(%d) när \"%s\"-poster från %s-indexet sattes\n"
 
-#: rpmdb/rpmdb.c:2751
+#: rpmdb/rpmdb.c:2757
 #, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "fel(%d) när post \"%s\" sparades i %s\n"
 
-#: rpmdb/rpmdb.c:2761
+#: rpmdb/rpmdb.c:2767
 #, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "fel(%d) när post \"%s\" togs bort från %s\n"
 
-#: rpmdb/rpmdb.c:2910
+#: rpmdb/rpmdb.c:2916
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "fel(%d) vid allokering av ny paketinstans\n"
 
-#: rpmdb/rpmdb.c:2964
+#: rpmdb/rpmdb.c:2970
 msgid "rpmdbAdd: skipping"
 msgstr "rpmdbAdd: hoppar över"
 
-#: rpmdb/rpmdb.c:3136
+#: rpmdb/rpmdb.c:3142
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "lägger till \"%s\" till %s-indexet.\n"
 
-#: rpmdb/rpmdb.c:3140
+#: rpmdb/rpmdb.c:3146
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "lägger till %d poster till %s-indexet.\n"
 
-#: rpmdb/rpmdb.c:3180
+#: rpmdb/rpmdb.c:3186
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "fel(%d) när post %s sparades i %s\n"
 
-#: rpmdb/rpmdb.c:3581
+#: rpmdb/rpmdb.c:3587
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr "tar bort %s efter lyckad db3-ombyggnad.\n"
 
-#: rpmdb/rpmdb.c:3619
+#: rpmdb/rpmdb.c:3625
 msgid "no dbpath has been set"
 msgstr "ingen dbpath har satts"
 
-#: rpmdb/rpmdb.c:3651
+#: rpmdb/rpmdb.c:3657
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "bygger om databas %s till %s\n"
 
-#: rpmdb/rpmdb.c:3655
+#: rpmdb/rpmdb.c:3661
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr "tillfällig databas %s existerar redan\n"
 
-#: rpmdb/rpmdb.c:3661
+#: rpmdb/rpmdb.c:3667
 #, c-format
 msgid "creating directory %s\n"
 msgstr "skapar katalog %s\n"
 
-#: rpmdb/rpmdb.c:3663
+#: rpmdb/rpmdb.c:3669
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr "skapar katalog %s: %s\n"
 
-#: rpmdb/rpmdb.c:3670
+#: rpmdb/rpmdb.c:3676
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "öppnar gammal databas med dbapi %d\n"
 
-#: rpmdb/rpmdb.c:3683
+#: rpmdb/rpmdb.c:3689
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "öppnar ny databas med dbapi %d\n"
 
-#: rpmdb/rpmdb.c:3712
+#: rpmdb/rpmdb.c:3718
 #, c-format
 msgid "header #%u in the database is bad -- skipping.\n"
 msgstr "huvud nr. %u i databasen är felaktigt -- hoppar över.\n"
 
-#: rpmdb/rpmdb.c:3752
+#: rpmdb/rpmdb.c:3758
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "kan inte lägga till post ursprungligen vid %u\n"
 
-#: rpmdb/rpmdb.c:3766
+#: rpmdb/rpmdb.c:3772
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr "kunde inte bygga om databasen: orginaldatabasen finns kvar\n"
 
-#: rpmdb/rpmdb.c:3774
+#: rpmdb/rpmdb.c:3780
 msgid "failed to replace old database with new database!\n"
 msgstr "kunde inte ersätta gammal databas med ny databas!\n"
 
-#: rpmdb/rpmdb.c:3776
+#: rpmdb/rpmdb.c:3782
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "byt ut filer i %s med filer från %s för att återställa"
 
-#: rpmdb/rpmdb.c:3786
+#: rpmdb/rpmdb.c:3792
 #, c-format
 msgid "removing directory %s\n"
 msgstr "tar bort katalog %s\n"
 
-#: rpmdb/rpmdb.c:3788
+#: rpmdb/rpmdb.c:3794
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "kunde inte ta bort katalogen %s: %s\n"
@@ -3512,42 +3548,42 @@ msgstr "Makro %%%s har otill
 msgid "Macro %%%s (%s) was not used below level %d\n"
 msgstr "Makro %%%s (%s) användes inte under nivå %d\n"
 
-#: rpmio/macro.c:982
+#: rpmio/macro.c:984
 #, c-format
 msgid "Unknown option %c in %s(%s)\n"
 msgstr "Okänd flagga %c i %s(%s)\n"
 
-#: rpmio/macro.c:1182
+#: rpmio/macro.c:1184
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)\n"
 msgstr "Rekursionsdjup(%d) större än max(%d)\n"
 
-#: rpmio/macro.c:1252 rpmio/macro.c:1269
+#: rpmio/macro.c:1255 rpmio/macro.c:1272
 #, c-format
 msgid "Unterminated %c: %s\n"
 msgstr "Oavslutad %c: %s\n"
 
-#: rpmio/macro.c:1310
+#: rpmio/macro.c:1313
 #, c-format
 msgid "A %% is followed by an unparseable macro\n"
 msgstr "Ett %% följs av ett makro som inte kan tolkas\n"
 
-#: rpmio/macro.c:1439
+#: rpmio/macro.c:1442
 #, c-format
 msgid "Macro %%%.*s not found, skipping\n"
 msgstr "Inget makro %%%.*s hittat, hoppar över\n"
 
-#: rpmio/macro.c:1510
+#: rpmio/macro.c:1513
 msgid "Target buffer overflow\n"
 msgstr "Målbuffert översvämmad\n"
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1705 rpmio/macro.c:1711
+#: rpmio/macro.c:1708 rpmio/macro.c:1714
 #, c-format
 msgid "File %s: %s\n"
 msgstr "Fil %s: %s\n"
 
-#: rpmio/macro.c:1714
+#: rpmio/macro.c:1717
 #, c-format
 msgid "File %s is smaller than %u bytes\n"
 msgstr "Filen %s är mindre än %u byte\n"
index 3e9d797..0ce0b2c 100644 (file)
--- a/po/tr.po
+++ b/po/tr.po
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:11-0500\n"
+"POT-Creation-Date: 2003-12-30 08:11-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"
@@ -21,44 +21,44 @@ msgstr "i
 msgid "Unable to open spec file %s: %s\n"
 msgstr "%s spec dosyasý açýlamadý: %s\n"
 
-#: build.c:152 build.c:164
+#: build.c:150 build.c:162
 #, c-format
 msgid "Failed to open tar pipe: %m\n"
 msgstr "tar veriyolu açýlamadý: %m\n"
 
 #. Give up
-#: build.c:171
+#: build.c:169
 #, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "%s paketinden spec dosyasý okunamadý\n"
 
-#: build.c:199
+#: build.c:197
 #, c-format
 msgid "Failed to rename %s to %s: %m\n"
 msgstr "%s %s olarak deðiþtirilemedi: %m\n"
 
-#: build.c:239
+#: build.c:237
 #, c-format
 msgid "failed to stat %s: %m\n"
 msgstr "%s durum bilgileri alýnamadý: %m\n"
 
-#: build.c:244
+#: build.c:242
 #, c-format
 msgid "File %s is not a regular file.\n"
 msgstr "%s bir normal bir dosya deðil.\n"
 
-#: build.c:253
+#: build.c:251
 #, c-format
 msgid "File %s does not appear to be a specfile.\n"
 msgstr "%s bir spec dosyasý gibi görünmüyor.\n"
 
 #. parse up the build operators
-#: build.c:324
+#: build.c:322
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr "Hedef platformlar derleniyor: %s\n"
 
-#: build.c:339
+#: build.c:337
 #, c-format
 msgid "Building for target %s\n"
 msgstr "%s için derleniyor\n"
@@ -111,7 +111,7 @@ msgstr "T
 msgid "%s: %s\n"
 msgstr "dosya %s: %s\n"
 
-#: rpmqv.c:129 lib/poptALL.c:114
+#: rpmqv.c:129 lib/poptALL.c:119
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM Sürüm %s\n"
@@ -429,166 +429,166 @@ msgstr "&& ve || dizgelerde desteklenmez\n"
 msgid "syntax error in expression\n"
 msgstr "ifadede sözdizimi hatasý\n"
 
-#: build/files.c:278
+#: build/files.c:280
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "TIMECHECK baþarýsýz: %s\n"
 
-#: build/files.c:343 build/files.c:543 build/files.c:739
+#: build/files.c:345 build/files.c:545 build/files.c:741
 #, c-format
 msgid "Missing '(' in %s %s\n"
 msgstr "%s içinde '(' yok: %s\n"
 
-#: build/files.c:354 build/files.c:673 build/files.c:750
+#: build/files.c:356 build/files.c:675 build/files.c:752
 #, c-format
 msgid "Missing ')' in %s(%s\n"
 msgstr "%s içinde ')' yok: (%s\n"
 
-#: build/files.c:392 build/files.c:698
+#: build/files.c:394 build/files.c:700
 #, c-format
 msgid "Invalid %s token: %s\n"
 msgstr "Andaç %s geçersiz: %s\n"
 
-#: build/files.c:502
+#: build/files.c:504
 #, fuzzy, c-format
 msgid "Missing %s in %s %s\n"
 msgstr "%s içinde '(' yok: %s\n"
 
-#: build/files.c:559
+#: build/files.c:561
 #, c-format
 msgid "Non-white space follows %s(): %s\n"
 msgstr "%s() boþluksuz yazýlmýþ: %s\n"
 
-#: build/files.c:597
+#: build/files.c:599
 #, c-format
 msgid "Bad syntax: %s(%s)\n"
 msgstr "Sözdizimi hatasý: %s(%s)\n"
 
-#: build/files.c:607
+#: build/files.c:609
 #, c-format
 msgid "Bad mode spec: %s(%s)\n"
 msgstr "mode spec hatalý: %s(%s)\n"
 
-#: build/files.c:619
+#: build/files.c:621
 #, c-format
 msgid "Bad dirmode spec: %s(%s)\n"
 msgstr "dirmode spec hatalý: %s(%s)\n"
 
-#: build/files.c:777
+#: build/files.c:779
 #, c-format
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n"
 msgstr "yerel uzunluðu hatalý: \"%.*s\" (%%lang(%s))\n"
 
 #. @innercontinue@
-#: build/files.c:788
+#: build/files.c:790
 #, c-format
 msgid "Duplicate locale %.*s in %%lang(%s)\n"
 msgstr "%.*s yereli %%lang(%s) içinde tekrarlanmýþ\n"
 
-#: build/files.c:917
+#: build/files.c:919
 #, c-format
 msgid "Hit limit for %%docdir\n"
 msgstr "%%docdir için hit sýnýrý\n"
 
-#: build/files.c:925
+#: build/files.c:927
 #, c-format
 msgid "Only one arg for %%docdir\n"
 msgstr "%%docdir için sadece tek argüman\n"
 
 #. We already got a file -- error
-#: build/files.c:959
+#: build/files.c:961
 #, c-format
 msgid "Two files on one line: %s\n"
 msgstr "Bir satýrda 2 dosya: %s\n"
 
-#: build/files.c:976
+#: build/files.c:978
 #, c-format
 msgid "File must begin with \"/\": %s\n"
 msgstr "Dosya \"/\" ile baþlamalý: %s\n"
 
-#: build/files.c:989
+#: build/files.c:991
 #, c-format
 msgid "Can't mix special %%doc with other forms: %s\n"
 msgstr "Özel %%doc ile diðer formlar karýþtýrýlamaz: %s\n"
 
-#: build/files.c:1141
+#: build/files.c:1149
 #, c-format
 msgid "File listed twice: %s\n"
 msgstr "Dosya iki kere gösterildi: %s\n"
 
-#: build/files.c:1280
+#: build/files.c:1288
 #, c-format
 msgid "Symlink points to BuildRoot: %s -> %s\n"
 msgstr "Sembolik bað BuildRoot gösteriyor: %s -> %s\n"
 
-#: build/files.c:1520
+#: build/files.c:1535
 #, c-format
 msgid "File doesn't match prefix (%s): %s\n"
 msgstr "Dosya önek (%s) ile uyumsuz: %s\n"
 
-#: build/files.c:1544
+#: build/files.c:1559
 #, c-format
 msgid "File not found: %s\n"
 msgstr "Dosya bulunamadý: %s\n"
 
-#: build/files.c:1752
+#: build/files.c:1767
 #, fuzzy, c-format
 msgid "%s: public key read failed.\n"
 msgstr "%s: readLead baþarýsýz\n"
 
-#: build/files.c:1756 lib/rpmchecksig.c:580
+#: build/files.c:1771 lib/rpmchecksig.c:580
 #, c-format
 msgid "%s: not an armored public key.\n"
 msgstr ""
 
-#: build/files.c:1804
+#: build/files.c:1819
 #, c-format
 msgid "File needs leading \"/\": %s\n"
 msgstr "Dosya \"/\" ile içermeli: %s\n"
 
-#: build/files.c:1828
+#: build/files.c:1843
 #, fuzzy, c-format
 msgid "Glob not permitted: %s\n"
 msgstr "satýr %d: Dosya adý uygun deðil: %s\n"
 
-#: build/files.c:1845 lib/rpminstall.c:347
+#: build/files.c:1860 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:1905
+#: build/files.c:1920
 #, c-format
 msgid "Could not open %%files file %s: %s\n"
 msgstr "%%files dosya %s dosyasýnda açýlamadý: %s\n"
 
-#: build/files.c:1916 build/pack.c:156
+#: build/files.c:1931 build/pack.c:156
 #, c-format
 msgid "line: %s\n"
 msgstr "satýr: %s\n"
 
-#: build/files.c:2307
+#: build/files.c:2323
 #, c-format
 msgid "Bad file: %s: %s\n"
 msgstr "Dosya hatalý: %s: %s\n"
 
-#: build/files.c:2319 build/parsePrep.c:50
+#: build/files.c:2335 build/parsePrep.c:50
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Kullanýcý/grup hatalý: %s\n"
 
-#: build/files.c:2363
+#: build/files.c:2379
 #, 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:2386
+#: build/files.c:2402
 #, c-format
 msgid ""
 "Installed (but unpackaged) file(s) found:\n"
 "%s"
 msgstr ""
 
-#: build/files.c:2414
+#: build/files.c:2430
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Ýþlenen dosyalar: %s-%s-%s\n"
@@ -731,7 +731,7 @@ msgstr "%s'den ba
 msgid "Could not open %s: %s\n"
 msgstr "%s açýlamadý: %s\n"
 
-#: build/pack.c:632 lib/psm.c:1427
+#: build/pack.c:632 lib/psm.c:1420
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "paket yazýlamadý: %s\n"
@@ -761,7 +761,7 @@ msgstr "%s'den payload okunamad
 msgid "Unable to write payload to %s: %s\n"
 msgstr "%s'e payload yazýlamadý: %s\n"
 
-#: build/pack.c:725 lib/psm.c:1725
+#: build/pack.c:725 lib/psm.c:1689
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Yazýldý: %s\n"
@@ -1257,20 +1257,20 @@ msgstr "paket ba
 msgid "generate package header(s) compatible with (legacy) rpm[23] packaging"
 msgstr "paket baþlýklarýný (eski) rpm[23] paketleme ile uyumlu üretir"
 
-#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329
-#: lib/poptQV.c:338 lib/poptQV.c:377
+#: build/poptBT.c:229 lib/poptALL.c:240 lib/poptI.c:261 lib/poptQV.c:335
+#: lib/poptQV.c:344 lib/poptQV.c:383
 #, fuzzy
 msgid "don't verify package digest(s)"
 msgstr "paket baðýmlýlýklarý doðrulanmaz"
 
-#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332
-#: lib/poptQV.c:340 lib/poptQV.c:380
+#: build/poptBT.c:231 lib/poptALL.c:242 lib/poptI.c:263 lib/poptQV.c:338
+#: lib/poptQV.c:346 lib/poptQV.c:386
 #, fuzzy
 msgid "don't verify database header(s) when retrieved"
 msgstr "paket mimarisi denetlenmez"
 
-#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335
-#: lib/poptQV.c:342 lib/poptQV.c:382
+#: build/poptBT.c:233 lib/poptALL.c:248 lib/poptI.c:265 lib/poptQV.c:341
+#: lib/poptQV.c:348 lib/poptQV.c:388
 #, fuzzy
 msgid "don't verify package signature(s)"
 msgstr "paket imzasýný denetler"
@@ -1341,31 +1341,31 @@ msgstr "Magic hatal
 msgid "Bad/unreadable  header"
 msgstr "Hatalý/okunamayan baþlýk"
 
-#: lib/cpio.c:232
+#: lib/cpio.c:233
 msgid "Header size too big"
 msgstr "Baþlýk çok uzun"
 
-#: lib/cpio.c:233
+#: lib/cpio.c:234
 msgid "Unknown file type"
 msgstr "Bilinmeyen dosya türü"
 
-#: lib/cpio.c:234
+#: lib/cpio.c:235
 msgid "Missing hard link(s)"
 msgstr "Sabit bað(lar) eksik"
 
-#: lib/cpio.c:235
+#: lib/cpio.c:236
 msgid "MD5 sum mismatch"
 msgstr "MD5 toplamý çeliþkili"
 
-#: lib/cpio.c:236
+#: lib/cpio.c:237
 msgid "Internal error"
 msgstr "Ýç hata"
 
-#: lib/cpio.c:237
+#: lib/cpio.c:238
 msgid "Archive file not in header"
 msgstr ""
 
-#: lib/cpio.c:250
+#: lib/cpio.c:251
 msgid " failed - "
 msgstr " baþarýsýz - "
 
@@ -1504,47 +1504,57 @@ msgstr "Dosya %4d: %07o %s.%s\t %s\n"
 msgid "file %s is on an unknown device\n"
 msgstr "%s dosyasýnýn bulunduðu aygýt anlaþýlamadý\n"
 
-#: lib/fsm.c:350
+#: lib/fsm.c:352
 #, fuzzy
 msgid "========== Directories not explicitly included in package:\n"
 msgstr "========= Pakette bulunmayan dizinler:\n"
 
-#: lib/fsm.c:352
+#: lib/fsm.c:354
 #, fuzzy, c-format
 msgid "%10d %s\n"
 msgstr "%9d %s\n"
 
-#: lib/fsm.c:1293
+#: lib/fsm.c:768
+#, c-format
+msgid "user %s does not exist - using root\n"
+msgstr "kullanýcý %s yok - root kullanýlacak\n"
+
+#: lib/fsm.c:776
+#, c-format
+msgid "group %s does not exist - using root\n"
+msgstr "grup %s yok - root kullanýlacak\n"
+
+#: lib/fsm.c:1334
 #, c-format
 msgid "%s directory created with perms %04o.\n"
 msgstr "%s dizin %04o izinleriyle oluþturuldu.\n"
 
-#: lib/fsm.c:1592
+#: lib/fsm.c:1633
 #, c-format
 msgid "archive file %s was not found in header file list\n"
 msgstr ""
 
-#: lib/fsm.c:1719 lib/fsm.c:1855
+#: lib/fsm.c:1760 lib/fsm.c:1896
 #, c-format
 msgid "%s saved as %s\n"
 msgstr "%s %s olarak kaydedildi\n"
 
-#: lib/fsm.c:1882
+#: lib/fsm.c:1923
 #, 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:1888
+#: lib/fsm.c:1929
 #, c-format
 msgid "%s rmdir of %s failed: %s\n"
 msgstr "%s / %s dizinin silinmesi baþarýsýz: %s\n"
 
-#: lib/fsm.c:1903
+#: lib/fsm.c:1944
 #, c-format
 msgid "%s unlink of %s failed: %s\n"
 msgstr "%s / %s bað kaldýrýlamadý: %s\n"
 
-#: lib/fsm.c:1925
+#: lib/fsm.c:1966
 #, c-format
 msgid "%s created as %s\n"
 msgstr "%s %s olarak oluþturuldu\n"
@@ -1662,117 +1672,117 @@ msgstr "%s: readLead ba
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread baþarýsýz: %s\n"
 
-#: lib/poptALL.c:222
+#: lib/poptALL.c:227
 msgid "predefine MACRO with value EXPR"
 msgstr ""
 
-#: lib/poptALL.c:223 lib/poptALL.c:226
+#: lib/poptALL.c:228 lib/poptALL.c:231
 msgid "'MACRO EXPR'"
 msgstr ""
 
-#: lib/poptALL.c:225
+#: lib/poptALL.c:230
 msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: lib/poptALL.c:228
+#: lib/poptALL.c:233
 #, fuzzy
 msgid "print macro expansion of EXPR"
 msgstr "<ifade>+ için makro açýlýmýný gösterir"
 
-#: lib/poptALL.c:229
+#: lib/poptALL.c:234
 msgid "'EXPR'"
 msgstr ""
 
-#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254
+#: lib/poptALL.c:236 lib/poptALL.c:255 lib/poptALL.c:259
 #, fuzzy
 msgid "read <FILE:...> instead of default file(s)"
 msgstr "öntanýmlý makro dosyasý yerine <dosya:...> okunur"
 
-#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255
+#: lib/poptALL.c:237 lib/poptALL.c:256 lib/poptALL.c:260
 msgid "<FILE:...>"
 msgstr ""
 
-#: lib/poptALL.c:240 lib/poptALL.c:274
+#: lib/poptALL.c:245 lib/poptALL.c:279
 msgid "disable use of libio(3) API"
 msgstr "libio(3) API kullanýmýný iptal eder"
 
-#: lib/poptALL.c:246
+#: lib/poptALL.c:251
 #, fuzzy
 msgid "send stdout to CMD"
 msgstr "standart çýktýyý <KOMUT>'a gönderir"
 
-#: lib/poptALL.c:247
+#: lib/poptALL.c:252
 msgid "CMD"
 msgstr ""
 
-#: lib/poptALL.c:258
+#: lib/poptALL.c:263
 #, fuzzy
 msgid "use ROOT as top level directory"
 msgstr "Üst düzey dizin olarak <dizin> kullanýlýr"
 
-#: lib/poptALL.c:259
+#: lib/poptALL.c:264
 msgid "ROOT"
 msgstr ""
 
-#: lib/poptALL.c:262
+#: lib/poptALL.c:267
 msgid "display known query tags"
 msgstr "tanýmlanmýþ sorgulama etiketlerini gösterir"
 
-#: lib/poptALL.c:264
+#: lib/poptALL.c:269
 msgid "display final rpmrc and macro configuration"
 msgstr "son rpmrc ve makro yapýlandýrmasýný gösterir"
 
-#: lib/poptALL.c:266
+#: lib/poptALL.c:271
 msgid "provide less detailed output"
 msgstr "daha az ayrýntýlý çýktý saðlar"
 
-#: lib/poptALL.c:268
+#: lib/poptALL.c:273
 msgid "provide more detailed output"
 msgstr "daha ayrýntýlý çýktý saðlar"
 
-#: lib/poptALL.c:270
+#: lib/poptALL.c:275
 msgid "print the version of rpm being used"
 msgstr "Kullanýlan RPM sürümünü verir"
 
-#: lib/poptALL.c:283
+#: lib/poptALL.c:288
 #, fuzzy
 msgid "debug payload file state machine"
 msgstr "hata ayýklama dosyasý durum motoru"
 
-#: lib/poptALL.c:285
+#: lib/poptALL.c:290
 #, fuzzy
 msgid "use threads for file state machine"
 msgstr "hata ayýklama dosyasý durum motoru"
 
-#: lib/poptALL.c:287
+#: lib/poptALL.c:292
 msgid "debug protocol data stream"
 msgstr "protokol veri akýþýnda hata kontrolu"
 
-#: lib/poptALL.c:292
+#: lib/poptALL.c:297
 #, fuzzy
 msgid "debug option/argument processing"
 msgstr "(%d) argümaný iþlenirken iç hata oluþtu :-(\n"
 
-#: lib/poptALL.c:297
+#: lib/poptALL.c:302
 #, fuzzy
 msgid "debug package state machine"
 msgstr "hata ayýklama dosyasý durum motoru"
 
-#: lib/poptALL.c:299
+#: lib/poptALL.c:304
 #, fuzzy
 msgid "use threads for package state machine"
 msgstr "hata ayýklama dosyasý durum motoru"
 
-#: lib/poptALL.c:311
+#: lib/poptALL.c:316
 msgid "debug rpmio I/O"
 msgstr "rpmio G/Ç hata kontrolu"
 
-#: lib/poptALL.c:323
+#: lib/poptALL.c:330
 msgid "debug URL cache handling"
 msgstr "URL arabellek kullanýmý hata kontrolu"
 
 #. @-nullpass@
-#: lib/poptALL.c:393
+#: lib/poptALL.c:400
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1802,16 +1812,16 @@ msgstr ""
 msgid "malformed rollback time/date stamp argument"
 msgstr "tekrarlama zamaný bozuk"
 
-#: lib/poptI.c:151
+#: lib/poptI.c:155
 #, fuzzy
 msgid "add suggested packages to transaction"
 msgstr "gruptaki paketleri sorgular/denetler"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:159
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr "yapýlandýrmalarda atlanmýþ bile olsa tüm dosyalarý kurar"
 
-#: lib/poptI.c:159
+#: lib/poptI.c:163
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1819,151 +1829,157 @@ msgstr ""
 "<paket> ile eþlenen tüm paketleri kaldýrýr(<paket> ile çok sayýda paket "
 "belirtilmiþse normalde bir hata oluþur)"
 
-#: lib/poptI.c:164 tools/rpmgraph.c:273
+#: lib/poptI.c:168 tools/rpmgraph.c:273
 msgid "use anaconda \"presentation order\""
 msgstr ""
 
-#: lib/poptI.c:169 lib/poptI.c:238
+#: lib/poptI.c:173 lib/poptI.c:245
 msgid "do not execute package scriptlet(s)"
 msgstr "paket betikleri çalýþtýrýlmaz"
 
-#: lib/poptI.c:173
-msgid "relocate files in non-relocateable package"
+#: lib/poptI.c:177
+#, fuzzy
+msgid "relocate files in non-relocatable package"
 msgstr "yeniden konumlanamayan paketin dosyalarýný yeniden konumlandýrýr"
 
-#: lib/poptI.c:176
+#: lib/poptI.c:180
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 "ismi deðiþtirilerek alt dizine kaydedilmek suretiyle silinen dosyalarý "
 "kaydeder"
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 msgid "erase (uninstall) package"
 msgstr "paketi kaldýrýr"
 
-#: lib/poptI.c:179
+#: lib/poptI.c:183
 msgid "<package>+"
 msgstr "<paket>+"
 
-#: lib/poptI.c:182 lib/poptI.c:219
+#: lib/poptI.c:186 lib/poptI.c:223
 #, fuzzy
 msgid "do not install configuration files"
 msgstr "tüm yapýlandýrma dosyalarýný listeler"
 
-#: lib/poptI.c:185 lib/poptI.c:224
+#: lib/poptI.c:189 lib/poptI.c:228
 msgid "do not install documentation"
 msgstr "belgeleri kurmaz"
 
-#: lib/poptI.c:187
+#: lib/poptI.c:191
 msgid "skip files with leading component <path> "
 msgstr "<dosyayolu> ile baþlayan dosyalarý atlar "
 
-#: lib/poptI.c:188
+#: lib/poptI.c:192
 msgid "<path>"
 msgstr "<dosyaYolu>"
 
-#: lib/poptI.c:191
+#: lib/poptI.c:195
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "--replacepkgs --replacefiles için kýsaltma"
 
-#: lib/poptI.c:195
+#: lib/poptI.c:199
 msgid "upgrade package(s) if already installed"
 msgstr "paket(ler) kurulu ise paket(ler)i günceller"
 
-#: lib/poptI.c:196 lib/poptI.c:212 lib/poptI.c:305
+#: lib/poptI.c:200 lib/poptI.c:216 lib/poptI.c:312
 msgid "<packagefile>+"
 msgstr "<paketDosyasý>+"
 
-#: lib/poptI.c:198
+#: lib/poptI.c:202
 msgid "print hash marks as package installs (good with -v)"
 msgstr "paketin kurulma sürecini gösteren imler basar (-v ile)"
 
-#: lib/poptI.c:201
+#: lib/poptI.c:205
 msgid "don't verify package architecture"
 msgstr "paket mimarisi denetlenmez"
 
-#: lib/poptI.c:204
+#: lib/poptI.c:208
 msgid "don't verify package operating system"
 msgstr "paketin ait olduðu iþletim sistemini doðrulamaz"
 
-#: lib/poptI.c:207
+#: lib/poptI.c:211
 msgid "don't check disk space before installing"
 msgstr "yüklemeden önce yeterli disk alaný kontrolu yapmaz"
 
-#: lib/poptI.c:209
+#: lib/poptI.c:213
 msgid "install documentation"
 msgstr "paket ile gelen belgeleri kurar"
 
-#: lib/poptI.c:212
+#: lib/poptI.c:216
 #, fuzzy
 msgid "install package(s)"
 msgstr "paketi kurar"
 
-#: lib/poptI.c:215
+#: lib/poptI.c:219
 msgid "update the database, but do not modify the filesystem"
 msgstr "veri tabanýný günceller, ama dosya sistemini deðiþtirmez"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:225
 msgid "do not verify package dependencies"
 msgstr "paket baðýmlýlýklarýný denetlemez"
 
-#: lib/poptI.c:227 lib/poptQV.c:275 lib/poptQV.c:278
+#: lib/poptI.c:231 lib/poptQV.c:279 lib/poptQV.c:282
 msgid "don't verify MD5 digest of files"
 msgstr "dosyalarýn MD5 özümlemesi doðrulanmaz"
 
-#: lib/poptI.c:230
+#: lib/poptI.c:233
+#, fuzzy
+msgid "don't install file security contexts"
+msgstr "tüm yapýlandýrma dosyalarýný listeler"
+
+#: lib/poptI.c:237
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "paket kurulum sýrasýný baðýmlýlýklara göre düzenlemez"
 
-#: lib/poptI.c:235
+#: lib/poptI.c:242
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:242
+#: lib/poptI.c:249
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "%%pre betiði (varsa) çalýþtýrýlmaz"
 
-#: lib/poptI.c:245
+#: lib/poptI.c:252
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "%%post betiði (varsa) çalýþtýrýlmaz"
 
-#: lib/poptI.c:248
+#: lib/poptI.c:255
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "%%preun betiði (varsa) çalýþtýrýlmaz"
 
-#: lib/poptI.c:251
+#: lib/poptI.c:258
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "%%postun betiði (varsa) çalýþtýrýlmaz"
 
-#: lib/poptI.c:261
+#: lib/poptI.c:268
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "bu paket tarafýndan tetiklenen hiç bir betik çalýþtýrýlmaz"
 
-#: lib/poptI.c:264
+#: lib/poptI.c:271
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "hiçbir %%triggerprein betiði çalýþtýrýlmaz"
 
-#: lib/poptI.c:267
+#: lib/poptI.c:274
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "hiçbir %%triggerin betiði çalýþtýrýlmaz."
 
-#: lib/poptI.c:270
+#: lib/poptI.c:277
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "hiçbir %%triggerun betiði çalýþtýrýlmaz."
 
-#: lib/poptI.c:273
+#: lib/poptI.c:280
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "hiçbir %%triggerpostun betiði çalýþtýrýlmaz."
 
-#: lib/poptI.c:277
+#: lib/poptI.c:284
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1971,53 +1987,53 @@ msgstr ""
 "paketin eski bir sürüme güncellenmesini saðlar (--force ayný iþi otomatik "
 "yapar)"
 
-#: lib/poptI.c:281
+#: lib/poptI.c:288
 msgid "print percentages as package installs"
 msgstr "kurulumun geliþimi yüzde olarak gösterilir"
 
-#: lib/poptI.c:283
+#: lib/poptI.c:290
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "eðer deðitirilebiliyorsa paketin yerini <dizin>'e deðiþtirir"
 
-#: lib/poptI.c:284
+#: lib/poptI.c:291
 msgid "<dir>"
 msgstr "<dizin>"
 
-#: lib/poptI.c:286
+#: lib/poptI.c:293
 msgid "relocate files from path <old> to <new>"
 msgstr "dosyalarý <eski> dizininden kaldýrýp <yeni> dizinine yerleþtirir"
 
-#: lib/poptI.c:287
+#: lib/poptI.c:294
 msgid "<old>=<new>"
 msgstr "<eski>=<yeni>"
 
-#: lib/poptI.c:290
+#: lib/poptI.c:297
 msgid "save erased package files by repackaging"
 msgstr "yeniden paketleme sýrasýnda silinen paket dosyalarýný kaydeder"
 
-#: lib/poptI.c:293
+#: lib/poptI.c:300
 msgid "install even if the package replaces installed files"
 msgstr "paket dosyalarý mevcut dosyalarla yer deðiþtirse bile paketi kurar"
 
-#: lib/poptI.c:296
+#: lib/poptI.c:303
 msgid "reinstall if the package is already present"
 msgstr "paketi yeniden kurar"
 
-#: lib/poptI.c:298
+#: lib/poptI.c:305
 #, fuzzy
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 "yeni paket(ler) kaldýrýlýr, geriye dönük eski paket(ler) yeniden kurulur"
 
-#: lib/poptI.c:299
+#: lib/poptI.c:306
 msgid "<date>"
 msgstr "<tarih>"
 
-#: lib/poptI.c:301
+#: lib/poptI.c:308
 msgid "don't install, but tell if it would work or not"
 msgstr "yükleme yapmaz, sadece çalýþýp çalýþmayacaðýný belirtir"
 
-#: lib/poptI.c:304
+#: lib/poptI.c:311
 msgid "upgrade package(s)"
 msgstr "paket günceller"
 
@@ -2096,202 +2112,197 @@ msgstr "bir ba
 msgid "query/verify the package(s) which provide a dependency"
 msgstr "bir baðýmlýlýðý saðlayan  paketleri sorgular/denetler"
 
-#: lib/poptQV.c:226
+#: lib/poptQV.c:230
 msgid "list all configuration files"
 msgstr "tüm yapýlandýrma dosyalarýný listeler"
 
-#: lib/poptQV.c:228
+#: lib/poptQV.c:232
 msgid "list all documentation files"
 msgstr "tüm belgeleme dosyalarýný gösterir"
 
-#: lib/poptQV.c:230
+#: lib/poptQV.c:234
 msgid "dump basic file information"
 msgstr "temel dosya bilgilerini gösterir"
 
-#: lib/poptQV.c:234
+#: lib/poptQV.c:238
 msgid "list files in package"
 msgstr "paketteki dosyalarý gösterir"
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:243
 #, c-format
 msgid "skip %%ghost files"
 msgstr "%%ghost dosyalarý atlanýr"
 
-#: lib/poptQV.c:243
+#: lib/poptQV.c:247
 #, c-format
 msgid "skip %%license files"
 msgstr "%%license dosyalarý atlanýr"
 
-#: lib/poptQV.c:246
+#: lib/poptQV.c:250
 #, c-format
 msgid "skip %%readme files"
 msgstr "%%readme dosyalarý atlanýr"
 
-#: lib/poptQV.c:252
+#: lib/poptQV.c:256
 msgid "use the following query format"
 msgstr "izleyen sorgulama biçimini kullanýr"
 
-#: lib/poptQV.c:254
+#: lib/poptQV.c:258
 msgid "substitute i18n sections into spec file"
 msgstr "spec dosyasýndaki i18n bölümleri yerine kullanýlýr"
 
-#: lib/poptQV.c:256
+#: lib/poptQV.c:260
 msgid "display the states of the listed files"
 msgstr "listelenmiþ dosyalarýn durumunu gösterir"
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:286
 msgid "don't verify size of files"
 msgstr "dosyalarýn uzunluklarý doðrulanmaz"
 
-#: lib/poptQV.c:285
+#: lib/poptQV.c:289
 msgid "don't verify symlink path of files"
 msgstr "dosyalarýn sembolik bað dosya yollarý doðrulanmaz"
 
-#: lib/poptQV.c:288
+#: lib/poptQV.c:292
 msgid "don't verify owner of files"
 msgstr "dosyalarýn sahipleri doðrulanmaz"
 
-#: lib/poptQV.c:291
+#: lib/poptQV.c:295
 msgid "don't verify group of files"
 msgstr "dosyalarýn gruplarý doðrulanmaz"
 
-#: lib/poptQV.c:294
+#: lib/poptQV.c:298
 msgid "don't verify modification time of files"
 msgstr "dosyalarýn deðiþiklik zamanlarý doðrulanmaz"
 
-#: lib/poptQV.c:297 lib/poptQV.c:300
+#: lib/poptQV.c:301 lib/poptQV.c:304
 msgid "don't verify mode of files"
 msgstr "dosyalarýn kipleri doðrulanmaz"
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:307
+#, fuzzy
+msgid "don't verify file security contexts"
+msgstr "paketteki dosyalar doðrulanamaz"
+
+#: lib/poptQV.c:309
 msgid "don't verify files in package"
 msgstr "paketteki dosyalar doðrulanamaz"
 
-#: lib/poptQV.c:306 lib/poptQV.c:309 tools/rpmgraph.c:267
+#: lib/poptQV.c:312 lib/poptQV.c:315 tools/rpmgraph.c:267
 msgid "don't verify package dependencies"
 msgstr "paket baðýmlýlýklarý doðrulanmaz"
 
-#: lib/poptQV.c:314 lib/poptQV.c:318 lib/poptQV.c:321 lib/poptQV.c:324
+#: lib/poptQV.c:320 lib/poptQV.c:324 lib/poptQV.c:327 lib/poptQV.c:330
 #, fuzzy
 msgid "don't execute verify script(s)"
 msgstr "(varsa) %verifyscript çalýþtýrýlmaz"
 
-#: lib/poptQV.c:348
+#: lib/poptQV.c:354
 #, fuzzy
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr "Baþlýk SHA1 özümlemesi doðrulanmaz"
 
-#: lib/poptQV.c:351
+#: lib/poptQV.c:357
 #, fuzzy
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr "dosyalarýn MD5 özümlemesi doðrulanmaz"
 
-#: lib/poptQV.c:366
+#: lib/poptQV.c:372
 #, fuzzy
 msgid "sign package(s) (identical to --resign)"
 msgstr "paketi imzalar (mevcut imza kaldýrýlýr)"
 
-#: lib/poptQV.c:368
+#: lib/poptQV.c:374
 #, fuzzy
 msgid "verify package signature(s)"
 msgstr "paket imzasýný denetler"
 
-#: lib/poptQV.c:370
+#: lib/poptQV.c:376
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:372
+#: lib/poptQV.c:378
 #, fuzzy
 msgid "sign package(s) (identical to --addsign)"
 msgstr "paketi imzalar (mevcut imza kaldýrýlýr)"
 
-#: lib/poptQV.c:374
+#: lib/poptQV.c:380
 msgid "generate signature"
 msgstr "imza üretir"
 
-#: lib/psm.c:269
+#: lib/psm.c:268
 msgid "source package expected, binary found\n"
 msgstr "kaynak paketi gerekirken çalýþtýrýlabilir paketi bulundu\n"
 
-#: lib/psm.c:394
+#: lib/psm.c:386
 msgid "source package contains no .spec file\n"
 msgstr "kaynak paketi .spec dosyasý içermiyor\n"
 
-#: lib/psm.c:480
+#: lib/psm.c:472
 #, c-format
 msgid "%s: waitpid(%d) rc %d status %x secs %u.%03u\n"
 msgstr ""
 
-#: lib/psm.c:562
+#: lib/psm.c:554
 #, c-format
 msgid "%s: %s(%s-%s-%s) skipping redundant \"%s\".\n"
 msgstr ""
 
-#: lib/psm.c:570
+#: lib/psm.c:562
 #, c-format
 msgid "%s: %s(%s-%s-%s) %ssynchronous scriptlet start\n"
 msgstr ""
 
-#: lib/psm.c:735
+#: lib/psm.c:730
 #, c-format
 msgid "%s: %s(%s-%s-%s)\texecv(%s) pid %d\n"
 msgstr ""
 
-#: lib/psm.c:756
+#: lib/psm.c:751
 #, 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:762
+#: lib/psm.c:757
 #, 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:1191
+#: lib/psm.c:1188
 #, 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:1330
+#: lib/psm.c:1323
 #, 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:1439
+#: lib/psm.c:1432
 #, fuzzy
 msgid "Unable to reload signature header\n"
 msgstr "%s'den baþlýk okunamadý: %s\n"
 
-#: lib/psm.c:1485
-#, c-format
-msgid "user %s does not exist - using root\n"
-msgstr "kullanýcý %s yok - root kullanýlacak\n"
-
-#: lib/psm.c:1494
-#, c-format
-msgid "group %s does not exist - using root\n"
-msgstr "grup %s yok - root kullanýlacak\n"
-
-#: lib/psm.c:1546
+#: lib/psm.c:1510
 #, 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:1547
+#: lib/psm.c:1511
 msgid " on file "
 msgstr " dosyada "
 
-#: lib/psm.c:1733
+#: lib/psm.c:1697
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%s açýlamadý: %s\n"
 
-#: lib/psm.c:1736
+#: lib/psm.c:1700
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s baþarýsýz\n"
 
-#: lib/query.c:118 lib/rpmts.c:565
+#: lib/query.c:118 lib/rpmts.c:566
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "biçem yanlýþ: %s\n"
@@ -2339,8 +2350,8 @@ msgstr "paket ne dosya sahibi ne de kimlik listesi i
 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:462
-#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576
+#: 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
 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157
 #, c-format
 msgid "open of %s failed: %s\n"
@@ -2355,7 +2366,7 @@ msgstr "%s 'nin sorgulamas
 msgid "old format source packages cannot be queried\n"
 msgstr "eski biçem kaynak paketleri sorgulanamaz\n"
 
-#: lib/query.c:488 lib/rpminstall.c:608
+#: lib/query.c:488 lib/rpminstall.c:622
 #, fuzzy, c-format
 msgid "%s: not an rpm package (or package manifest): %s\n"
 msgstr "%s tetikleyen paket yok\n"
@@ -2424,17 +2435,17 @@ msgstr "paket kay
 msgid "record %u could not be read\n"
 msgstr "%u. kayýt okunamadý\n"
 
-#: lib/query.c:766 lib/rpminstall.c:778
+#: lib/query.c:766 lib/rpminstall.c:792
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "%s paketi kurulu deðil\n"
 
-#: lib/rpmal.c:692
+#: lib/rpmal.c:694
 #, fuzzy
 msgid "(added files)"
 msgstr "db dosyasý %s hatalý\n"
 
-#: lib/rpmal.c:770
+#: lib/rpmal.c:772
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %-45s EVET (önlem eklendi)\n"
@@ -2560,36 +2571,36 @@ msgstr "  %s    A %s\tB %s\n"
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "paket %s-%s-%s gereksinimi tatmin edici deðil: %s\n"
 
-#: lib/rpmfi.c:546
+#: lib/rpmfi.c:561
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "missingok flamasýndan dolayý %s atlandý\n"
 
-#: lib/rpmfi.c:784
+#: lib/rpmfi.c:799
 msgid "========== relocations\n"
 msgstr "========== yeniden konumlama\n"
 
-#: lib/rpmfi.c:788
+#: lib/rpmfi.c:803
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr "%5d %s'i dýþlýyor\n"
 
-#: lib/rpmfi.c:791
+#: lib/rpmfi.c:806
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d yeniden konumlandýrýlýyor: %s -> %s\n"
 
-#: lib/rpmfi.c:919
+#: lib/rpmfi.c:934
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "%s %s dýþlanýyor\n"
 
-#: lib/rpmfi.c:929
+#: lib/rpmfi.c:944
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "%s %s'e konumlanýyor\n"
 
-#: lib/rpmfi.c:1021
+#: lib/rpmfi.c:1036
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "%s dizini %s de yeniden konumlanýyor\n"
@@ -2621,88 +2632,88 @@ msgstr "Haz
 msgid "Upgrading packages..."
 msgstr "paket günceller"
 
-#: lib/rpminstall.c:394
+#: lib/rpminstall.c:408
 #, fuzzy, c-format
 msgid "Adding goal: %s\n"
 msgstr "%s aranýyor: (%s kullanarak)...\n"
 
-#: lib/rpminstall.c:409
+#: lib/rpminstall.c:423
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "%s alýnýyor\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:422
+#: lib/rpminstall.c:436
 #, c-format
 msgid " ... as %s\n"
 msgstr "... %s olarak\n"
 
-#: lib/rpminstall.c:426
+#: lib/rpminstall.c:440
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s atlanýyor - aktarým baþarýsýz - %s\n"
 
-#: lib/rpminstall.c:481 lib/rpminstall.c:872 tools/rpmgraph.c:140
+#: lib/rpminstall.c:495 lib/rpminstall.c:886 tools/rpmgraph.c:140
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s yüklenemedi\n"
 
-#: lib/rpminstall.c:523
-#, c-format
-msgid "package %s is not relocateable\n"
+#: lib/rpminstall.c:537
+#, fuzzy, c-format
+msgid "package %s is not relocatable\n"
 msgstr "%s paketi yeniden konumlandýrýlamaz\n"
 
-#: lib/rpminstall.c:573
+#: lib/rpminstall.c:587
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "%s dosyasýndan okuma hatalý\n"
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:593
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "%s dosyasý RPM'nin daha yeni bir sürümünü gerektiriyor\n"
 
-#: lib/rpminstall.c:623
+#: lib/rpminstall.c:637
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "%d kaynak ve %d icra edilebilir paketi bulundu\n"
 
-#: lib/rpminstall.c:637 lib/rpminstall.c:810 lib/rpminstall.c:1239
+#: lib/rpminstall.c:651 lib/rpminstall.c:824 lib/rpminstall.c:1253
 #: tools/rpmgraph.c:195
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "baðýmlýlýklarda hata; gerekli paketler:\n"
 
-#: lib/rpminstall.c:644 tools/rpmgraph.c:201
+#: lib/rpminstall.c:658 tools/rpmgraph.c:201
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:674
+#: lib/rpminstall.c:688
 msgid "installing binary packages\n"
 msgstr "icra edilebilir paketleri kuruluyor\n"
 
-#: lib/rpminstall.c:698
+#: lib/rpminstall.c:712
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "%s dosyasý açýlamadý: %s\n"
 
-#: lib/rpminstall.c:787
+#: lib/rpminstall.c:801
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" birden fazla paketi tanýmlýyor\n"
 
-#: lib/rpminstall.c:856
+#: lib/rpminstall.c:870
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "%s açýlamadý: %s\n"
 
-#: lib/rpminstall.c:862
+#: lib/rpminstall.c:876
 #, c-format
 msgid "Installing %s\n"
 msgstr "%s kuruluyor\n"
 
-#: lib/rpminstall.c:1233
+#: lib/rpminstall.c:1247
 #, c-format
 msgid "Rollback packages (+%d/-%d) to %-24.24s (0x%08x):\n"
 msgstr ""
@@ -2769,8 +2780,8 @@ msgid "package %s is already installed"
 msgstr "%s zaten kurulu"
 
 #: lib/rpmps.c:223
-#, c-format
-msgid "path %s in package %s is not relocateable"
+#, fuzzy, c-format
+msgid "path %s in package %s is not relocatable"
 msgstr "%s dosya yolu %s paketinde yeniden konumlandýrýlamaz"
 
 #: lib/rpmps.c:228
@@ -2918,51 +2929,76 @@ msgstr "%s okunam
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "%s okuma eriþimi için açýlamadý: %s.\n"
 
-#: lib/rpmts.c:162
+#: lib/rpmsx.c:343
+#, c-format
+msgid "%s:  no newline on line number %d (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:360
+#, c-format
+msgid "%s:  line number %d is missing fields (only read %s)\n"
+msgstr ""
+
+#: lib/rpmsx.c:391
+#, 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
+#, c-format
+msgid "%s:  invalid type specifier %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmsx.c:434
+#, c-format
+msgid "%s:  invalid context %s on line number %d\n"
+msgstr ""
+
+#: lib/rpmts.c:163
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "%s de Paket veritabaný açýlamadý\n"
 
-#: lib/rpmts.c:252
+#: lib/rpmts.c:253
 #, fuzzy, c-format
 msgid "extra '(' in package label: %s\n"
 msgstr "geçersiz paket numarasý: %s\n"
 
-#: lib/rpmts.c:270
+#: lib/rpmts.c:271
 #, fuzzy, c-format
 msgid "missing '(' in package label: %s\n"
 msgstr "%s içinde '(' yok: %s\n"
 
-#: lib/rpmts.c:278
+#: lib/rpmts.c:279
 #, fuzzy, c-format
 msgid "missing ')' in package label: %s\n"
 msgstr "geçersiz paket numarasý: %s\n"
 
-#: lib/rpmts.c:455
+#: lib/rpmts.c:456
 #, fuzzy, c-format
 msgid "cannot open Solve database in %s\n"
 msgstr "%s dizininde rpm veritabaný açýlamýyor\n"
 
-#: lib/rpmts.c:597
+#: lib/rpmts.c:598
 #, fuzzy, c-format
 msgid "Adding: %s\n"
 msgstr "satýr: %s\n"
 
-#: lib/rpmts.c:609
+#: lib/rpmts.c:610
 #, fuzzy, c-format
 msgid "Suggesting: %s\n"
 msgstr "%s alýnýyor\n"
 
-#: lib/rpmts.c:1077
+#: lib/rpmts.c:1097
 #, fuzzy
 msgid "mounted filesystems:\n"
 msgstr "baðlý dosya sistemlerinin listesi alýnýyor\n"
 
-#: lib/rpmts.c:1079
+#: lib/rpmts.c:1099
 msgid "    i    dev bsize       bavail       iavail mount point\n"
 msgstr ""
 
-#: lib/rpmts.c:1135
+#: lib/rpmts.c:1155
 #, c-format
 msgid "%5d 0x%04x %5u %12ld %12ld %s\n"
 msgstr ""
@@ -3169,12 +3205,12 @@ msgstr ""
 msgid "computing file dispositions\n"
 msgstr ""
 
-#: lib/verify.c:288
+#: lib/verify.c:319
 #, fuzzy, c-format
 msgid "missing  %c %s"
 msgstr "eksik      %s"
 
-#: lib/verify.c:397
+#: lib/verify.c:433
 #, fuzzy, c-format
 msgid "Unsatisfied dependencies for %s: "
 msgstr "%s-%s-%s için tatmin edici olmayan baðýmlýlýklar: "
@@ -3372,164 +3408,164 @@ msgstr "%s indeksi db%d - %s (%d) kullanarak a
 msgid "cannot open %s index\n"
 msgstr "%s indeksi açýlamadý\n"
 
-#: rpmdb/rpmdb.c:915
+#: rpmdb/rpmdb.c:917
 msgid "no dbpath has been set\n"
 msgstr "belirtilmiþ bir dbpath deðeri yok\n"
 
-#: rpmdb/rpmdb.c:1193 rpmdb/rpmdb.c:1322 rpmdb/rpmdb.c:1373 rpmdb/rpmdb.c:2316
-#: rpmdb/rpmdb.c:2432 rpmdb/rpmdb.c:3161
+#: rpmdb/rpmdb.c:1195 rpmdb/rpmdb.c:1324 rpmdb/rpmdb.c:1375 rpmdb/rpmdb.c:2322
+#: rpmdb/rpmdb.c:2438 rpmdb/rpmdb.c:3167
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "hata(%d): \"%s\" kayýt %s indeksinden alýnýyor\n"
 
-#: rpmdb/rpmdb.c:1567
+#: rpmdb/rpmdb.c:1569
 msgid "miFreeHeader: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1577
+#: rpmdb/rpmdb.c:1579
 #, fuzzy, c-format
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "hata(%d): %s kayýt %s içine yazýlýyor\n"
 
-#: rpmdb/rpmdb.c:2209
+#: rpmdb/rpmdb.c:2212
 msgid "rpmdbNextIterator: skipping"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2242
 #, fuzzy, c-format
 msgid "rpmdb: damaged header #%u retrieved -- skipping.\n"
 msgstr "rpmdb: bozuk baþlýk örneði #%u alýndý, atlanýyor.\n"
 
-#: rpmdb/rpmdb.c:2520
+#: rpmdb/rpmdb.c:2526
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "%s: 0x%x de baþlýk okunamadý\n"
 
-#: rpmdb/rpmdb.c:2583
+#: rpmdb/rpmdb.c:2589
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "hata(%d): \"%s\" kayýt %s indeksinden alýnýyor\n"
 
-#: rpmdb/rpmdb.c:2698
+#: rpmdb/rpmdb.c:2704
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "\"%s\" %s indeksinden siliniyor.\n"
 
-#: rpmdb/rpmdb.c:2702
+#: rpmdb/rpmdb.c:2708
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "%d girdi %s indeksinden siliniyor.\n"
 
-#: rpmdb/rpmdb.c:2730
+#: rpmdb/rpmdb.c:2736
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "hata(%d): \"%s\" kayýt %s indeksinden alýnýyor\n"
 
-#: rpmdb/rpmdb.c:2751
+#: rpmdb/rpmdb.c:2757
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "hata(%d): %s kayýt %s içine yazýlýyor\n"
 
-#: rpmdb/rpmdb.c:2761
+#: rpmdb/rpmdb.c:2767
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "hata(%d) %s kaydýn %s dosyasýndan silinmesi\n"
 
-#: rpmdb/rpmdb.c:2910
+#: rpmdb/rpmdb.c:2916
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "yeni paket örneðini tutma hatasý(%d)\n"
 
-#: rpmdb/rpmdb.c:2964
+#: rpmdb/rpmdb.c:2970
 #, fuzzy
 msgid "rpmdbAdd: skipping"
 msgstr "rpmdb: bozuk baþlýk örneði #%u alýndý, atlanýyor.\n"
 
-#: rpmdb/rpmdb.c:3136
+#: rpmdb/rpmdb.c:3142
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "\"%s\" %s indeksine ekleniyor.\n"
 
-#: rpmdb/rpmdb.c:3140
+#: rpmdb/rpmdb.c:3146
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "%d girdi %s indeksine ekleniyor.\n"
 
-#: rpmdb/rpmdb.c:3180
+#: rpmdb/rpmdb.c:3186
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "hata(%d): %s kayýt %s içine yazýlýyor\n"
 
-#: rpmdb/rpmdb.c:3581
+#: rpmdb/rpmdb.c:3587
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr "baþarýlý db3 yeniden oluþturma ertesinde %s kaldýrýlýyor\n"
 
-#: rpmdb/rpmdb.c:3619
+#: rpmdb/rpmdb.c:3625
 msgid "no dbpath has been set"
 msgstr "belirtilmiþ bir dbpath yok"
 
-#: rpmdb/rpmdb.c:3651
+#: rpmdb/rpmdb.c:3657
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "%s veritabaný %s içinde yeniden oluþturuluyor\n"
 
-#: rpmdb/rpmdb.c:3655
+#: rpmdb/rpmdb.c:3661
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr "geçici veritabaný %s zaten mevcut\n"
 
-#: rpmdb/rpmdb.c:3661
+#: rpmdb/rpmdb.c:3667
 #, c-format
 msgid "creating directory %s\n"
 msgstr "%s dizini oluþturuluyor\n"
 
-#: rpmdb/rpmdb.c:3663
+#: rpmdb/rpmdb.c:3669
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr "%s dizini oluþturuluyor: %s\n"
 
-#: rpmdb/rpmdb.c:3670
+#: rpmdb/rpmdb.c:3676
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "eski veritabaný dbapi %d ile açýlýyor\n"
 
-#: rpmdb/rpmdb.c:3683
+#: rpmdb/rpmdb.c:3689
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "yeni veritabaný dbapi %d ile açýlýyor\n"
 
-#: rpmdb/rpmdb.c:3712
+#: rpmdb/rpmdb.c:3718
 #, fuzzy, c-format
 msgid "header #%u in the database is bad -- skipping.\n"
 msgstr "veritabanýndaki %u. kayýt hatalý -- atlanýyor\n"
 
-#: rpmdb/rpmdb.c:3752
+#: rpmdb/rpmdb.c:3758
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "kayýt özgün olarak %u e eklenemedi\n"
 
-#: rpmdb/rpmdb.c:3766
+#: rpmdb/rpmdb.c:3772
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 "veritabaný yeniden oluþturulamadý: mevcut veritabaný deðiþmeden\n"
 "yerinde býrakýldý\n"
 
-#: rpmdb/rpmdb.c:3774
+#: rpmdb/rpmdb.c:3780
 msgid "failed to replace old database with new database!\n"
 msgstr "eski veritabanýnýn yenisiyle deðiþtirilirmesi baþarýsýz!\n"
 
-#: rpmdb/rpmdb.c:3776
+#: rpmdb/rpmdb.c:3782
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "kurtarmak için %s içindeki dosyalar %s deki dosyalarla deðiþtiriliyor"
 
-#: rpmdb/rpmdb.c:3786
+#: rpmdb/rpmdb.c:3792
 #, c-format
 msgid "removing directory %s\n"
 msgstr "%s dizini siliniyor\n"
 
-#: rpmdb/rpmdb.c:3788
+#: rpmdb/rpmdb.c:3794
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "%s dizininin silinmesi baþarýsýz: %s\n"
@@ -3585,42 +3621,42 @@ msgstr "%%%s makrosunun ismi kurald
 msgid "Macro %%%s (%s) was not used below level %d\n"
 msgstr "%%%s (%s) makrosu %d seviyenin altýnda kullanýlmadý\n"
 
-#: rpmio/macro.c:982
+#: rpmio/macro.c:984
 #, c-format
 msgid "Unknown option %c in %s(%s)\n"
 msgstr "%c seçeneði %s(%s) de anlaþýlamadý\n"
 
-#: rpmio/macro.c:1182
+#: rpmio/macro.c:1184
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)\n"
 msgstr "Yineleme derinliði(%d) mümkün miktardan(%d) büyük\n"
 
-#: rpmio/macro.c:1252 rpmio/macro.c:1269
+#: rpmio/macro.c:1255 rpmio/macro.c:1272
 #, c-format
 msgid "Unterminated %c: %s\n"
 msgstr "%c sonlandýrýlmamýþ: %s\n"
 
-#: rpmio/macro.c:1310
+#: rpmio/macro.c:1313
 #, c-format
 msgid "A %% is followed by an unparseable macro\n"
 msgstr "Bir ayrýþtýrýlamayan makro tarafýndan bir %% izlendi\n"
 
-#: rpmio/macro.c:1439
+#: rpmio/macro.c:1442
 #, c-format
 msgid "Macro %%%.*s not found, skipping\n"
 msgstr "%%%.*s makrosu bulunamadý, atlanýyor\n"
 
-#: rpmio/macro.c:1510
+#: rpmio/macro.c:1513
 msgid "Target buffer overflow\n"
 msgstr "Hedef tampon bellek taþtý\n"
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1705 rpmio/macro.c:1711
+#: rpmio/macro.c:1708 rpmio/macro.c:1714
 #, c-format
 msgid "File %s: %s\n"
 msgstr "%s dosyasý: %s\n"
 
-#: rpmio/macro.c:1714
+#: rpmio/macro.c:1717
 #, c-format
 msgid "File %s is smaller than %u bytes\n"
 msgstr "%s dosyasý %u bayttan küçük\n"
index b5f4d1f..71ed365 100644 (file)
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:21-0500\n"
+"POT-Creation-Date: 2003-12-30 08:12-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"
@@ -14,99 +14,99 @@ msgstr ""
 msgid "unknown errno"
 msgstr "neznámé èíslo chyby"
 
-#: popt.c:944
+#: popt.c:964
 #, c-format
 msgid "option type (%d) not implemented in popt\n"
 msgstr "volba (%d) není v popt implementována\n"
 
-#: popt.c:1164
+#: popt.c:1184
 msgid "missing argument"
 msgstr "chybí argument"
 
-#: popt.c:1166
+#: popt.c:1186
 msgid "unknown option"
 msgstr "neznámá volba"
 
-#: popt.c:1168
+#: popt.c:1188
 msgid "mutually exclusive logical operations requested"
 msgstr "po¾adovány vzájemnì výluèné logické operace"
 
-#: popt.c:1170
+#: popt.c:1190
 msgid "opt->arg should not be NULL"
 msgstr "opt->arg nesmí být NULL"
 
-#: popt.c:1172
+#: popt.c:1192
 msgid "aliases nested too deeply"
 msgstr "aliasy vnoøené pøíli¹ hluboko"
 
-#: popt.c:1174
+#: popt.c:1194
 msgid "error in parameter quoting"
 msgstr "chyba v quotování parametrù"
 
-#: popt.c:1176
+#: popt.c:1196
 msgid "invalid numeric value"
 msgstr "chybná numerická hodnota"
 
-#: popt.c:1178
+#: popt.c:1198
 msgid "number too large or too small"
 msgstr "èíslo je pøíli¹ velké nebo pøíli¹ malé"
 
-#: popt.c:1180
+#: popt.c:1200
 msgid "memory allocation failed"
 msgstr "selhala alokace pamìti"
 
-#: popt.c:1184
+#: popt.c:1204
 msgid "unknown error"
 msgstr "neznámá chyba"
 
-#: popthelp.c:61
+#: popthelp.c:58 popthelp.c:73
 msgid "Show this help message"
 msgstr "Vypí¹e tuto nápovìdu"
 
-#: popthelp.c:62
+#: popthelp.c:59 popthelp.c:74
 msgid "Display brief usage message"
 msgstr "Vypí¹e krátký návod k pou¾ití"
 
-#: popthelp.c:65
+#: popthelp.c:62 popthelp.c:77
 msgid "Display option defaults in message"
 msgstr "Zobrazit implicitní volby ve zprávì"
 
-#: popthelp.c:107
+#: popthelp.c:122
 msgid "NONE"
 msgstr "NONE"
 
-#: popthelp.c:109
+#: popthelp.c:124
 msgid "VAL"
 msgstr "VAL"
 
-#: popthelp.c:113
+#: popthelp.c:128
 msgid "INT"
 msgstr "INT"
 
-#: popthelp.c:114
+#: popthelp.c:129
 msgid "LONG"
 msgstr "LONG"
 
-#: popthelp.c:115
+#: popthelp.c:130
 msgid "STRING"
 msgstr "STRING"
 
-#: popthelp.c:116
+#: popthelp.c:131
 msgid "FLOAT"
 msgstr "FLOAT"
 
-#: popthelp.c:117
+#: popthelp.c:132
 msgid "DOUBLE"
 msgstr "DOUBLE"
 
-#: popthelp.c:118
+#: popthelp.c:133
 msgid "ARG"
 msgstr "ARG"
 
-#: popthelp.c:493
+#: popthelp.c:508
 msgid "Usage:"
 msgstr "Pou¾ití:"
 
-#: popthelp.c:517
+#: popthelp.c:532
 msgid "[OPTION...]"
 msgstr "[VOLBY...]"
index f0f9023..79182cf 100644 (file)
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:21-0500\n"
+"POT-Creation-Date: 2003-12-30 08:12-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"
@@ -15,100 +15,100 @@ msgstr ""
 msgid "unknown errno"
 msgstr "ukendt fejlnr."
 
-#: popt.c:944
+#: popt.c:964
 #, c-format
 msgid "option type (%d) not implemented in popt\n"
 msgstr "tilvalgstype (%d) er ikke implementeret i popt\n"
 
-#: popt.c:1164
+#: popt.c:1184
 msgid "missing argument"
 msgstr "mangler argument"
 
-#: popt.c:1166
+#: popt.c:1186
 msgid "unknown option"
 msgstr "ukendt tilvalg"
 
-#: popt.c:1168
+#: popt.c:1188
 msgid "mutually exclusive logical operations requested"
 msgstr "de ønskede handlinger udelukker hinanden"
 
-#: popt.c:1170
+#: popt.c:1190
 msgid "opt->arg should not be NULL"
 msgstr ""
 
-#: popt.c:1172
+#: popt.c:1192
 msgid "aliases nested too deeply"
 msgstr "aliaser er for dybt indlejret"
 
-#: popt.c:1174
+#: popt.c:1194
 msgid "error in parameter quoting"
 msgstr "fejl i parameter citering"
 
-#: popt.c:1176
+#: popt.c:1196
 msgid "invalid numeric value"
 msgstr "ugyldig numerisk værdi"
 
-#: popt.c:1178
+#: popt.c:1198
 msgid "number too large or too small"
 msgstr "nummer for stort, eller for lille"
 
-#: popt.c:1180
+#: popt.c:1200
 msgid "memory allocation failed"
 msgstr ""
 
-#: popt.c:1184
+#: popt.c:1204
 msgid "unknown error"
 msgstr "ukendt fejl"
 
-#: popthelp.c:61
+#: popthelp.c:58 popthelp.c:73
 msgid "Show this help message"
 msgstr "Vis denne hjælpemeddelelse"
 
-#: popthelp.c:62
+#: popthelp.c:59 popthelp.c:74
 msgid "Display brief usage message"
 msgstr "Vis kortfattet brugsanvisning"
 
-#: popthelp.c:65
+#: popthelp.c:62 popthelp.c:77
 #, fuzzy
 msgid "Display option defaults in message"
 msgstr "Vis kortfattet brugsanvisning"
 
-#: popthelp.c:107
+#: popthelp.c:122
 msgid "NONE"
 msgstr "INGEN"
 
-#: popthelp.c:109
+#: popthelp.c:124
 msgid "VAL"
 msgstr "VAL"
 
-#: popthelp.c:113
+#: popthelp.c:128
 msgid "INT"
 msgstr "INT"
 
-#: popthelp.c:114
+#: popthelp.c:129
 msgid "LONG"
 msgstr "LONG"
 
-#: popthelp.c:115
+#: popthelp.c:130
 msgid "STRING"
 msgstr "STRING"
 
-#: popthelp.c:116
+#: popthelp.c:131
 msgid "FLOAT"
 msgstr "FLOAT"
 
-#: popthelp.c:117
+#: popthelp.c:132
 msgid "DOUBLE"
 msgstr "DOUBLE"
 
-#: popthelp.c:118
+#: popthelp.c:133
 msgid "ARG"
 msgstr "ARG"
 
-#: popthelp.c:493
+#: popthelp.c:508
 msgid "Usage:"
 msgstr "Brug:"
 
-#: popthelp.c:517
+#: popthelp.c:532
 msgid "[OPTION...]"
 msgstr "[TILVALG...]"
index 7cce06e..44701c9 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:21-0500\n"
+"POT-Creation-Date: 2003-12-30 08:12-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"
@@ -19,99 +19,99 @@ msgstr ""
 msgid "unknown errno"
 msgstr ""
 
-#: popt.c:944
+#: popt.c:964
 #, c-format
 msgid "option type (%d) not implemented in popt\n"
 msgstr ""
 
-#: popt.c:1164
+#: popt.c:1184
 msgid "missing argument"
 msgstr ""
 
-#: popt.c:1166
+#: popt.c:1186
 msgid "unknown option"
 msgstr ""
 
-#: popt.c:1168
+#: popt.c:1188
 msgid "mutually exclusive logical operations requested"
 msgstr ""
 
-#: popt.c:1170
+#: popt.c:1190
 msgid "opt->arg should not be NULL"
 msgstr ""
 
-#: popt.c:1172
+#: popt.c:1192
 msgid "aliases nested too deeply"
 msgstr ""
 
-#: popt.c:1174
+#: popt.c:1194
 msgid "error in parameter quoting"
 msgstr ""
 
-#: popt.c:1176
+#: popt.c:1196
 msgid "invalid numeric value"
 msgstr ""
 
-#: popt.c:1178
+#: popt.c:1198
 msgid "number too large or too small"
 msgstr ""
 
-#: popt.c:1180
+#: popt.c:1200
 msgid "memory allocation failed"
 msgstr ""
 
-#: popt.c:1184
+#: popt.c:1204
 msgid "unknown error"
 msgstr ""
 
-#: popthelp.c:61
+#: popthelp.c:58 popthelp.c:73
 msgid "Show this help message"
 msgstr ""
 
-#: popthelp.c:62
+#: popthelp.c:59 popthelp.c:74
 msgid "Display brief usage message"
 msgstr ""
 
-#: popthelp.c:65
+#: popthelp.c:62 popthelp.c:77
 msgid "Display option defaults in message"
 msgstr ""
 
-#: popthelp.c:107
+#: popthelp.c:122
 msgid "NONE"
 msgstr ""
 
-#: popthelp.c:109
+#: popthelp.c:124
 msgid "VAL"
 msgstr ""
 
-#: popthelp.c:113
+#: popthelp.c:128
 msgid "INT"
 msgstr ""
 
-#: popthelp.c:114
+#: popthelp.c:129
 msgid "LONG"
 msgstr ""
 
-#: popthelp.c:115
+#: popthelp.c:130
 msgid "STRING"
 msgstr ""
 
-#: popthelp.c:116
+#: popthelp.c:131
 msgid "FLOAT"
 msgstr ""
 
-#: popthelp.c:117
+#: popthelp.c:132
 msgid "DOUBLE"
 msgstr ""
 
-#: popthelp.c:118
+#: popthelp.c:133
 msgid "ARG"
 msgstr ""
 
-#: popthelp.c:493
+#: popthelp.c:508
 msgid "Usage:"
 msgstr ""
 
-#: popthelp.c:517
+#: popthelp.c:532
 msgid "[OPTION...]"
 msgstr ""
index 09c65c6..ed248cf 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:21-0500\n"
+"POT-Creation-Date: 2003-12-30 08:12-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"
@@ -19,100 +19,100 @@ msgstr ""
 msgid "unknown errno"
 msgstr "errno desconocido"
 
-#: popt.c:944
+#: popt.c:964
 #, c-format
 msgid "option type (%d) not implemented in popt\n"
 msgstr "tipo de opcin (%d) no implementada en popt\n"
 
-#: popt.c:1164
+#: popt.c:1184
 msgid "missing argument"
 msgstr "falta argumento"
 
-#: popt.c:1166
+#: popt.c:1186
 msgid "unknown option"
 msgstr "opcin desconocida"
 
-#: popt.c:1168
+#: popt.c:1188
 msgid "mutually exclusive logical operations requested"
 msgstr "requerida operacin lgica mutuamente exclusiva"
 
-#: popt.c:1170
+#: popt.c:1190
 msgid "opt->arg should not be NULL"
 msgstr ""
 
-#: popt.c:1172
+#: popt.c:1192
 msgid "aliases nested too deeply"
 msgstr "alias anidados muy profundamente"
 
-#: popt.c:1174
+#: popt.c:1194
 msgid "error in parameter quoting"
 msgstr "error en cita de parmetros"
 
-#: popt.c:1176
+#: popt.c:1196
 msgid "invalid numeric value"
 msgstr "valor numrico invlido"
 
-#: popt.c:1178
+#: popt.c:1198
 msgid "number too large or too small"
 msgstr "nmero muy largo o muy pequeo"
 
-#: popt.c:1180
+#: popt.c:1200
 msgid "memory allocation failed"
 msgstr ""
 
-#: popt.c:1184
+#: popt.c:1204
 msgid "unknown error"
 msgstr "error desconocido"
 
-#: popthelp.c:61
+#: popthelp.c:58 popthelp.c:73
 msgid "Show this help message"
 msgstr "Muestra este mensaje de ayuda"
 
-#: popthelp.c:62
+#: popthelp.c:59 popthelp.c:74
 msgid "Display brief usage message"
 msgstr "Indica el modo de uso resumido"
 
-#: popthelp.c:65
+#: popthelp.c:62 popthelp.c:77
 #, fuzzy
 msgid "Display option defaults in message"
 msgstr "Indica el modo de uso resumido"
 
-#: popthelp.c:107
+#: popthelp.c:122
 msgid "NONE"
 msgstr "NONE"
 
-#: popthelp.c:109
+#: popthelp.c:124
 msgid "VAL"
 msgstr "VAL"
 
-#: popthelp.c:113
+#: popthelp.c:128
 msgid "INT"
 msgstr "INT"
 
-#: popthelp.c:114
+#: popthelp.c:129
 msgid "LONG"
 msgstr "LONG"
 
-#: popthelp.c:115
+#: popthelp.c:130
 msgid "STRING"
 msgstr "STRING"
 
-#: popthelp.c:116
+#: popthelp.c:131
 msgid "FLOAT"
 msgstr "FLOAT"
 
-#: popthelp.c:117
+#: popthelp.c:132
 msgid "DOUBLE"
 msgstr "DOUBLE"
 
-#: popthelp.c:118
+#: popthelp.c:133
 msgid "ARG"
 msgstr "ARG"
 
-#: popthelp.c:493
+#: popthelp.c:508
 msgid "Usage:"
 msgstr "Modo de Uso:"
 
-#: popthelp.c:517
+#: popthelp.c:532
 msgid "[OPTION...]"
 msgstr "[OPCIN...]"
index 7cce06e..44701c9 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:21-0500\n"
+"POT-Creation-Date: 2003-12-30 08:12-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"
@@ -19,99 +19,99 @@ msgstr ""
 msgid "unknown errno"
 msgstr ""
 
-#: popt.c:944
+#: popt.c:964
 #, c-format
 msgid "option type (%d) not implemented in popt\n"
 msgstr ""
 
-#: popt.c:1164
+#: popt.c:1184
 msgid "missing argument"
 msgstr ""
 
-#: popt.c:1166
+#: popt.c:1186
 msgid "unknown option"
 msgstr ""
 
-#: popt.c:1168
+#: popt.c:1188
 msgid "mutually exclusive logical operations requested"
 msgstr ""
 
-#: popt.c:1170
+#: popt.c:1190
 msgid "opt->arg should not be NULL"
 msgstr ""
 
-#: popt.c:1172
+#: popt.c:1192
 msgid "aliases nested too deeply"
 msgstr ""
 
-#: popt.c:1174
+#: popt.c:1194
 msgid "error in parameter quoting"
 msgstr ""
 
-#: popt.c:1176
+#: popt.c:1196
 msgid "invalid numeric value"
 msgstr ""
 
-#: popt.c:1178
+#: popt.c:1198
 msgid "number too large or too small"
 msgstr ""
 
-#: popt.c:1180
+#: popt.c:1200
 msgid "memory allocation failed"
 msgstr ""
 
-#: popt.c:1184
+#: popt.c:1204
 msgid "unknown error"
 msgstr ""
 
-#: popthelp.c:61
+#: popthelp.c:58 popthelp.c:73
 msgid "Show this help message"
 msgstr ""
 
-#: popthelp.c:62
+#: popthelp.c:59 popthelp.c:74
 msgid "Display brief usage message"
 msgstr ""
 
-#: popthelp.c:65
+#: popthelp.c:62 popthelp.c:77
 msgid "Display option defaults in message"
 msgstr ""
 
-#: popthelp.c:107
+#: popthelp.c:122
 msgid "NONE"
 msgstr ""
 
-#: popthelp.c:109
+#: popthelp.c:124
 msgid "VAL"
 msgstr ""
 
-#: popthelp.c:113
+#: popthelp.c:128
 msgid "INT"
 msgstr ""
 
-#: popthelp.c:114
+#: popthelp.c:129
 msgid "LONG"
 msgstr ""
 
-#: popthelp.c:115
+#: popthelp.c:130
 msgid "STRING"
 msgstr ""
 
-#: popthelp.c:116
+#: popthelp.c:131
 msgid "FLOAT"
 msgstr ""
 
-#: popthelp.c:117
+#: popthelp.c:132
 msgid "DOUBLE"
 msgstr ""
 
-#: popthelp.c:118
+#: popthelp.c:133
 msgid "ARG"
 msgstr ""
 
-#: popthelp.c:493
+#: popthelp.c:508
 msgid "Usage:"
 msgstr ""
 
-#: popthelp.c:517
+#: popthelp.c:532
 msgid "[OPTION...]"
 msgstr ""
index 7cce06e..44701c9 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:21-0500\n"
+"POT-Creation-Date: 2003-12-30 08:12-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"
@@ -19,99 +19,99 @@ msgstr ""
 msgid "unknown errno"
 msgstr ""
 
-#: popt.c:944
+#: popt.c:964
 #, c-format
 msgid "option type (%d) not implemented in popt\n"
 msgstr ""
 
-#: popt.c:1164
+#: popt.c:1184
 msgid "missing argument"
 msgstr ""
 
-#: popt.c:1166
+#: popt.c:1186
 msgid "unknown option"
 msgstr ""
 
-#: popt.c:1168
+#: popt.c:1188
 msgid "mutually exclusive logical operations requested"
 msgstr ""
 
-#: popt.c:1170
+#: popt.c:1190
 msgid "opt->arg should not be NULL"
 msgstr ""
 
-#: popt.c:1172
+#: popt.c:1192
 msgid "aliases nested too deeply"
 msgstr ""
 
-#: popt.c:1174
+#: popt.c:1194
 msgid "error in parameter quoting"
 msgstr ""
 
-#: popt.c:1176
+#: popt.c:1196
 msgid "invalid numeric value"
 msgstr ""
 
-#: popt.c:1178
+#: popt.c:1198
 msgid "number too large or too small"
 msgstr ""
 
-#: popt.c:1180
+#: popt.c:1200
 msgid "memory allocation failed"
 msgstr ""
 
-#: popt.c:1184
+#: popt.c:1204
 msgid "unknown error"
 msgstr ""
 
-#: popthelp.c:61
+#: popthelp.c:58 popthelp.c:73
 msgid "Show this help message"
 msgstr ""
 
-#: popthelp.c:62
+#: popthelp.c:59 popthelp.c:74
 msgid "Display brief usage message"
 msgstr ""
 
-#: popthelp.c:65
+#: popthelp.c:62 popthelp.c:77
 msgid "Display option defaults in message"
 msgstr ""
 
-#: popthelp.c:107
+#: popthelp.c:122
 msgid "NONE"
 msgstr ""
 
-#: popthelp.c:109
+#: popthelp.c:124
 msgid "VAL"
 msgstr ""
 
-#: popthelp.c:113
+#: popthelp.c:128
 msgid "INT"
 msgstr ""
 
-#: popthelp.c:114
+#: popthelp.c:129
 msgid "LONG"
 msgstr ""
 
-#: popthelp.c:115
+#: popthelp.c:130
 msgid "STRING"
 msgstr ""
 
-#: popthelp.c:116
+#: popthelp.c:131
 msgid "FLOAT"
 msgstr ""
 
-#: popthelp.c:117
+#: popthelp.c:132
 msgid "DOUBLE"
 msgstr ""
 
-#: popthelp.c:118
+#: popthelp.c:133
 msgid "ARG"
 msgstr ""
 
-#: popthelp.c:493
+#: popthelp.c:508
 msgid "Usage:"
 msgstr ""
 
-#: popthelp.c:517
+#: popthelp.c:532
 msgid "[OPTION...]"
 msgstr ""
index 21bcfe3..f543cdc 100644 (file)
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.8.1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:21-0500\n"
+"POT-Creation-Date: 2003-12-30 08:12-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"
@@ -24,99 +24,99 @@ msgstr ""
 msgid "unknown errno"
 msgstr "errno inconnu"
 
-#: popt.c:944
+#: popt.c:964
 #, c-format
 msgid "option type (%d) not implemented in popt\n"
 msgstr "type(%d) d'option non implémenté dans popt\n"
 
-#: popt.c:1164
+#: popt.c:1184
 msgid "missing argument"
 msgstr "argument manquant"
 
-#: popt.c:1166
+#: popt.c:1186
 msgid "unknown option"
 msgstr "option iconnue"
 
-#: popt.c:1168
+#: popt.c:1188
 msgid "mutually exclusive logical operations requested"
 msgstr "opérations logiques mutuellement exclusives requises"
 
-#: popt.c:1170
+#: popt.c:1190
 msgid "opt->arg should not be NULL"
 msgstr "opt->arg ne devrait pas être NULL"
 
-#: popt.c:1172
+#: popt.c:1192
 msgid "aliases nested too deeply"
 msgstr "les alias sont trop entremellés"
 
-#: popt.c:1174
+#: popt.c:1194
 msgid "error in parameter quoting"
 msgstr "erreur en citant les paramètres"
 
-#: popt.c:1176
+#: popt.c:1196
 msgid "invalid numeric value"
 msgstr "valeur numérique invalide"
 
-#: popt.c:1178
+#: popt.c:1198
 msgid "number too large or too small"
 msgstr "nombre trop grand ou trop petit"
 
-#: popt.c:1180
+#: popt.c:1200
 msgid "memory allocation failed"
 msgstr "échec de l'allocation de mémoire"
 
-#: popt.c:1184
+#: popt.c:1204
 msgid "unknown error"
 msgstr "erreur inconnue"
 
-#: popthelp.c:61
+#: popthelp.c:58 popthelp.c:73
 msgid "Show this help message"
 msgstr "Montre ce message d'aide"
 
-#: popthelp.c:62
+#: popthelp.c:59 popthelp.c:74
 msgid "Display brief usage message"
 msgstr "Affiche un bref descriptif de l'utilisation"
 
-#: popthelp.c:65
+#: popthelp.c:62 popthelp.c:77
 msgid "Display option defaults in message"
 msgstr "Afficher les valeurs par défaut des options dans le message"
 
-#: popthelp.c:107
+#: popthelp.c:122
 msgid "NONE"
 msgstr "RIEN"
 
-#: popthelp.c:109
+#: popthelp.c:124
 msgid "VAL"
 msgstr "VAL"
 
-#: popthelp.c:113
+#: popthelp.c:128
 msgid "INT"
 msgstr "ENTIER"
 
-#: popthelp.c:114
+#: popthelp.c:129
 msgid "LONG"
 msgstr "LONG"
 
-#: popthelp.c:115
+#: popthelp.c:130
 msgid "STRING"
 msgstr "CHAINE"
 
-#: popthelp.c:116
+#: popthelp.c:131
 msgid "FLOAT"
 msgstr "FLOTTANT"
 
-#: popthelp.c:117
+#: popthelp.c:132
 msgid "DOUBLE"
 msgstr "DOUBLE"
 
-#: popthelp.c:118
+#: popthelp.c:133
 msgid "ARG"
 msgstr "ARG"
 
-#: popthelp.c:493
+#: popthelp.c:508
 msgid "Usage:"
 msgstr "Utilisation:"
 
-#: popthelp.c:517
+#: popthelp.c:532
 msgid "[OPTION...]"
 msgstr "[OPTION...]"
index f9bbca2..cadd96a 100644 (file)
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:21-0500\n"
+"POT-Creation-Date: 2003-12-30 08:12-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"
@@ -14,100 +14,100 @@ msgstr ""
 msgid "unknown errno"
 msgstr "errno descoñecido"
 
-#: popt.c:944
+#: popt.c:964
 #, c-format
 msgid "option type (%d) not implemented in popt\n"
 msgstr "tipo de opción (%d) non implementada en popt\n"
 
-#: popt.c:1164
+#: popt.c:1184
 msgid "missing argument"
 msgstr "falta un argumento"
 
-#: popt.c:1166
+#: popt.c:1186
 msgid "unknown option"
 msgstr "opción descoñecida"
 
-#: popt.c:1168
+#: popt.c:1188
 msgid "mutually exclusive logical operations requested"
 msgstr "solicitáronse operacións lóxicas mutuamente excluíntes"
 
-#: popt.c:1170
+#: popt.c:1190
 msgid "opt->arg should not be NULL"
 msgstr ""
 
-#: popt.c:1172
+#: popt.c:1192
 msgid "aliases nested too deeply"
 msgstr "aliases aniñados a un nivel demasiado profundo"
 
-#: popt.c:1174
+#: popt.c:1194
 msgid "error in parameter quoting"
 msgstr "erro nas comiñas do parámetro"
 
-#: popt.c:1176
+#: popt.c:1196
 msgid "invalid numeric value"
 msgstr "valor numérico non válido"
 
-#: popt.c:1178
+#: popt.c:1198
 msgid "number too large or too small"
 msgstr "número demasiado grande ou pequeno"
 
-#: popt.c:1180
+#: popt.c:1200
 msgid "memory allocation failed"
 msgstr ""
 
-#: popt.c:1184
+#: popt.c:1204
 msgid "unknown error"
 msgstr "erro descoñecido"
 
-#: popthelp.c:61
+#: popthelp.c:58 popthelp.c:73
 msgid "Show this help message"
 msgstr "Amosar esta mensaxe de axuda"
 
-#: popthelp.c:62
+#: popthelp.c:59 popthelp.c:74
 msgid "Display brief usage message"
 msgstr "Amosar brevemente o xeito de utilización"
 
-#: popthelp.c:65
+#: popthelp.c:62 popthelp.c:77
 #, fuzzy
 msgid "Display option defaults in message"
 msgstr "Amosar brevemente o xeito de utilización"
 
-#: popthelp.c:107
+#: popthelp.c:122
 msgid "NONE"
 msgstr "NADA"
 
-#: popthelp.c:109
+#: popthelp.c:124
 msgid "VAL"
 msgstr "VAL"
 
-#: popthelp.c:113
+#: popthelp.c:128
 msgid "INT"
 msgstr "INT"
 
-#: popthelp.c:114
+#: popthelp.c:129
 msgid "LONG"
 msgstr "LONG"
 
-#: popthelp.c:115
+#: popthelp.c:130
 msgid "STRING"
 msgstr "CADEA"
 
-#: popthelp.c:116
+#: popthelp.c:131
 msgid "FLOAT"
 msgstr "FLOAT"
 
-#: popthelp.c:117
+#: popthelp.c:132
 msgid "DOUBLE"
 msgstr "DOUBLE"
 
-#: popthelp.c:118
+#: popthelp.c:133
 msgid "ARG"
 msgstr "ARG"
 
-#: popthelp.c:493
+#: popthelp.c:508
 msgid "Usage:"
 msgstr "Uso:"
 
-#: popthelp.c:517
+#: popthelp.c:532
 msgid "[OPTION...]"
 msgstr "[OPCIÓN...]"
index 08f15d5..cb75f46 100644 (file)
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:21-0500\n"
+"POT-Creation-Date: 2003-12-30 08:12-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"
@@ -14,100 +14,100 @@ msgstr ""
 msgid "unknown errno"
 msgstr ""
 
-#: popt.c:944
+#: popt.c:964
 #, c-format
 msgid "option type (%d) not implemented in popt\n"
 msgstr ""
 
-#: popt.c:1164
+#: popt.c:1184
 msgid "missing argument"
 msgstr ""
 
-#: popt.c:1166
+#: popt.c:1186
 msgid "unknown option"
 msgstr ""
 
-#: popt.c:1168
+#: popt.c:1188
 msgid "mutually exclusive logical operations requested"
 msgstr ""
 
-#: popt.c:1170
+#: popt.c:1190
 msgid "opt->arg should not be NULL"
 msgstr ""
 
-#: popt.c:1172
+#: popt.c:1192
 msgid "aliases nested too deeply"
 msgstr ""
 
-#: popt.c:1174
+#: popt.c:1194
 msgid "error in parameter quoting"
 msgstr ""
 
-#: popt.c:1176
+#: popt.c:1196
 msgid "invalid numeric value"
 msgstr ""
 
-#: popt.c:1178
+#: popt.c:1198
 msgid "number too large or too small"
 msgstr ""
 
-#: popt.c:1180
+#: popt.c:1200
 msgid "memory allocation failed"
 msgstr ""
 
-#: popt.c:1184
+#: popt.c:1204
 msgid "unknown error"
 msgstr ""
 
-#: popthelp.c:61
+#: popthelp.c:58 popthelp.c:73
 msgid "Show this help message"
 msgstr "E súgó megjelenítése"
 
-#: popthelp.c:62
+#: popthelp.c:59 popthelp.c:74
 msgid "Display brief usage message"
 msgstr "Rövid használati utasítás megjelenítése"
 
-#: popthelp.c:65
+#: popthelp.c:62 popthelp.c:77
 #, fuzzy
 msgid "Display option defaults in message"
 msgstr "Rövid használati utasítás megjelenítése"
 
-#: popthelp.c:107
+#: popthelp.c:122
 msgid "NONE"
 msgstr ""
 
-#: popthelp.c:109
+#: popthelp.c:124
 msgid "VAL"
 msgstr ""
 
-#: popthelp.c:113
+#: popthelp.c:128
 msgid "INT"
 msgstr ""
 
-#: popthelp.c:114
+#: popthelp.c:129
 msgid "LONG"
 msgstr ""
 
-#: popthelp.c:115
+#: popthelp.c:130
 msgid "STRING"
 msgstr ""
 
-#: popthelp.c:116
+#: popthelp.c:131
 msgid "FLOAT"
 msgstr ""
 
-#: popthelp.c:117
+#: popthelp.c:132
 msgid "DOUBLE"
 msgstr ""
 
-#: popthelp.c:118
+#: popthelp.c:133
 msgid "ARG"
 msgstr ""
 
-#: popthelp.c:493
+#: popthelp.c:508
 msgid "Usage:"
 msgstr ""
 
-#: popthelp.c:517
+#: popthelp.c:532
 msgid "[OPTION...]"
 msgstr ""
index 7cce06e..44701c9 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:21-0500\n"
+"POT-Creation-Date: 2003-12-30 08:12-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"
@@ -19,99 +19,99 @@ msgstr ""
 msgid "unknown errno"
 msgstr ""
 
-#: popt.c:944
+#: popt.c:964
 #, c-format
 msgid "option type (%d) not implemented in popt\n"
 msgstr ""
 
-#: popt.c:1164
+#: popt.c:1184
 msgid "missing argument"
 msgstr ""
 
-#: popt.c:1166
+#: popt.c:1186
 msgid "unknown option"
 msgstr ""
 
-#: popt.c:1168
+#: popt.c:1188
 msgid "mutually exclusive logical operations requested"
 msgstr ""
 
-#: popt.c:1170
+#: popt.c:1190
 msgid "opt->arg should not be NULL"
 msgstr ""
 
-#: popt.c:1172
+#: popt.c:1192
 msgid "aliases nested too deeply"
 msgstr ""
 
-#: popt.c:1174
+#: popt.c:1194
 msgid "error in parameter quoting"
 msgstr ""
 
-#: popt.c:1176
+#: popt.c:1196
 msgid "invalid numeric value"
 msgstr ""
 
-#: popt.c:1178
+#: popt.c:1198
 msgid "number too large or too small"
 msgstr ""
 
-#: popt.c:1180
+#: popt.c:1200
 msgid "memory allocation failed"
 msgstr ""
 
-#: popt.c:1184
+#: popt.c:1204
 msgid "unknown error"
 msgstr ""
 
-#: popthelp.c:61
+#: popthelp.c:58 popthelp.c:73
 msgid "Show this help message"
 msgstr ""
 
-#: popthelp.c:62
+#: popthelp.c:59 popthelp.c:74
 msgid "Display brief usage message"
 msgstr ""
 
-#: popthelp.c:65
+#: popthelp.c:62 popthelp.c:77
 msgid "Display option defaults in message"
 msgstr ""
 
-#: popthelp.c:107
+#: popthelp.c:122
 msgid "NONE"
 msgstr ""
 
-#: popthelp.c:109
+#: popthelp.c:124
 msgid "VAL"
 msgstr ""
 
-#: popthelp.c:113
+#: popthelp.c:128
 msgid "INT"
 msgstr ""
 
-#: popthelp.c:114
+#: popthelp.c:129
 msgid "LONG"
 msgstr ""
 
-#: popthelp.c:115
+#: popthelp.c:130
 msgid "STRING"
 msgstr ""
 
-#: popthelp.c:116
+#: popthelp.c:131
 msgid "FLOAT"
 msgstr ""
 
-#: popthelp.c:117
+#: popthelp.c:132
 msgid "DOUBLE"
 msgstr ""
 
-#: popthelp.c:118
+#: popthelp.c:133
 msgid "ARG"
 msgstr ""
 
-#: popthelp.c:493
+#: popthelp.c:508
 msgid "Usage:"
 msgstr ""
 
-#: popthelp.c:517
+#: popthelp.c:532
 msgid "[OPTION...]"
 msgstr ""
index f68db48..ea00ac1 100644 (file)
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:21-0500\n"
+"POT-Creation-Date: 2003-12-30 08:12-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"
@@ -14,99 +14,99 @@ msgstr ""
 msgid "unknown errno"
 msgstr "óþekkt villunúmer"
 
-#: popt.c:944
+#: popt.c:964
 #, c-format
 msgid "option type (%d) not implemented in popt\n"
 msgstr "rofagerðin (%d) er ekki studd í popt\n"
 
-#: popt.c:1164
+#: popt.c:1184
 msgid "missing argument"
 msgstr "vantar viðfang"
 
-#: popt.c:1166
+#: popt.c:1186
 msgid "unknown option"
 msgstr "óþekktur rofi"
 
-#: popt.c:1168
+#: popt.c:1188
 msgid "mutually exclusive logical operations requested"
 msgstr "beðið um rofa sem slökkva hvor á öðrum"
 
-#: popt.c:1170
+#: popt.c:1190
 msgid "opt->arg should not be NULL"
 msgstr "opt->arg ætti ekki að vera NULL"
 
-#: popt.c:1172
+#: popt.c:1192
 msgid "aliases nested too deeply"
 msgstr "alíasar of flóknir"
 
-#: popt.c:1174
+#: popt.c:1194
 msgid "error in parameter quoting"
 msgstr "villa í viðföngum (gæsalappir og svo frv.)"
 
-#: popt.c:1176
+#: popt.c:1196
 msgid "invalid numeric value"
 msgstr "ógilt tölulegt gildi"
 
-#: popt.c:1178
+#: popt.c:1198
 msgid "number too large or too small"
 msgstr "talan of stór eða smá"
 
-#: popt.c:1180
+#: popt.c:1200
 msgid "memory allocation failed"
 msgstr "ekki tókst að taka frá minni"
 
-#: popt.c:1184
+#: popt.c:1204
 msgid "unknown error"
 msgstr "óþekkt villa"
 
-#: popthelp.c:61
+#: popthelp.c:58 popthelp.c:73
 msgid "Show this help message"
 msgstr "Sýna þessa hjálp"
 
-#: popthelp.c:62
+#: popthelp.c:59 popthelp.c:74
 msgid "Display brief usage message"
 msgstr "Sýna stuttar notkunarleiðbeiningar"
 
-#: popthelp.c:65
+#: popthelp.c:62 popthelp.c:77
 msgid "Display option defaults in message"
 msgstr "Sýna sjálfgefin gildi rofa í skilaboðum"
 
-#: popthelp.c:107
+#: popthelp.c:122
 msgid "NONE"
 msgstr "ENGIN"
 
-#: popthelp.c:109
+#: popthelp.c:124
 msgid "VAL"
 msgstr "VAL"
 
-#: popthelp.c:113
+#: popthelp.c:128
 msgid "INT"
 msgstr "INT"
 
-#: popthelp.c:114
+#: popthelp.c:129
 msgid "LONG"
 msgstr "LONG"
 
-#: popthelp.c:115
+#: popthelp.c:130
 msgid "STRING"
 msgstr "STRING"
 
-#: popthelp.c:116
+#: popthelp.c:131
 msgid "FLOAT"
 msgstr "FLOAT"
 
-#: popthelp.c:117
+#: popthelp.c:132
 msgid "DOUBLE"
 msgstr "DOUBLE"
 
-#: popthelp.c:118
+#: popthelp.c:133
 msgid "ARG"
 msgstr "ARG"
 
-#: popthelp.c:493
+#: popthelp.c:508
 msgid "Usage:"
 msgstr "Notkun:"
 
-#: popthelp.c:517
+#: popthelp.c:532
 msgid "[OPTION...]"
 msgstr "[ROFI...]"
index 7cce06e..44701c9 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:21-0500\n"
+"POT-Creation-Date: 2003-12-30 08:12-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"
@@ -19,99 +19,99 @@ msgstr ""
 msgid "unknown errno"
 msgstr ""
 
-#: popt.c:944
+#: popt.c:964
 #, c-format
 msgid "option type (%d) not implemented in popt\n"
 msgstr ""
 
-#: popt.c:1164
+#: popt.c:1184
 msgid "missing argument"
 msgstr ""
 
-#: popt.c:1166
+#: popt.c:1186
 msgid "unknown option"
 msgstr ""
 
-#: popt.c:1168
+#: popt.c:1188
 msgid "mutually exclusive logical operations requested"
 msgstr ""
 
-#: popt.c:1170
+#: popt.c:1190
 msgid "opt->arg should not be NULL"
 msgstr ""
 
-#: popt.c:1172
+#: popt.c:1192
 msgid "aliases nested too deeply"
 msgstr ""
 
-#: popt.c:1174
+#: popt.c:1194
 msgid "error in parameter quoting"
 msgstr ""
 
-#: popt.c:1176
+#: popt.c:1196
 msgid "invalid numeric value"
 msgstr ""
 
-#: popt.c:1178
+#: popt.c:1198
 msgid "number too large or too small"
 msgstr ""
 
-#: popt.c:1180
+#: popt.c:1200
 msgid "memory allocation failed"
 msgstr ""
 
-#: popt.c:1184
+#: popt.c:1204
 msgid "unknown error"
 msgstr ""
 
-#: popthelp.c:61
+#: popthelp.c:58 popthelp.c:73
 msgid "Show this help message"
 msgstr ""
 
-#: popthelp.c:62
+#: popthelp.c:59 popthelp.c:74
 msgid "Display brief usage message"
 msgstr ""
 
-#: popthelp.c:65
+#: popthelp.c:62 popthelp.c:77
 msgid "Display option defaults in message"
 msgstr ""
 
-#: popthelp.c:107
+#: popthelp.c:122
 msgid "NONE"
 msgstr ""
 
-#: popthelp.c:109
+#: popthelp.c:124
 msgid "VAL"
 msgstr ""
 
-#: popthelp.c:113
+#: popthelp.c:128
 msgid "INT"
 msgstr ""
 
-#: popthelp.c:114
+#: popthelp.c:129
 msgid "LONG"
 msgstr ""
 
-#: popthelp.c:115
+#: popthelp.c:130
 msgid "STRING"
 msgstr ""
 
-#: popthelp.c:116
+#: popthelp.c:131
 msgid "FLOAT"
 msgstr ""
 
-#: popthelp.c:117
+#: popthelp.c:132
 msgid "DOUBLE"
 msgstr ""
 
-#: popthelp.c:118
+#: popthelp.c:133
 msgid "ARG"
 msgstr ""
 
-#: popthelp.c:493
+#: popthelp.c:508
 msgid "Usage:"
 msgstr ""
 
-#: popthelp.c:517
+#: popthelp.c:532
 msgid "[OPTION...]"
 msgstr ""
index 7cce06e..44701c9 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:21-0500\n"
+"POT-Creation-Date: 2003-12-30 08:12-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"
@@ -19,99 +19,99 @@ msgstr ""
 msgid "unknown errno"
 msgstr ""
 
-#: popt.c:944
+#: popt.c:964
 #, c-format
 msgid "option type (%d) not implemented in popt\n"
 msgstr ""
 
-#: popt.c:1164
+#: popt.c:1184
 msgid "missing argument"
 msgstr ""
 
-#: popt.c:1166
+#: popt.c:1186
 msgid "unknown option"
 msgstr ""
 
-#: popt.c:1168
+#: popt.c:1188
 msgid "mutually exclusive logical operations requested"
 msgstr ""
 
-#: popt.c:1170
+#: popt.c:1190
 msgid "opt->arg should not be NULL"
 msgstr ""
 
-#: popt.c:1172
+#: popt.c:1192
 msgid "aliases nested too deeply"
 msgstr ""
 
-#: popt.c:1174
+#: popt.c:1194
 msgid "error in parameter quoting"
 msgstr ""
 
-#: popt.c:1176
+#: popt.c:1196
 msgid "invalid numeric value"
 msgstr ""
 
-#: popt.c:1178
+#: popt.c:1198
 msgid "number too large or too small"
 msgstr ""
 
-#: popt.c:1180
+#: popt.c:1200
 msgid "memory allocation failed"
 msgstr ""
 
-#: popt.c:1184
+#: popt.c:1204
 msgid "unknown error"
 msgstr ""
 
-#: popthelp.c:61
+#: popthelp.c:58 popthelp.c:73
 msgid "Show this help message"
 msgstr ""
 
-#: popthelp.c:62
+#: popthelp.c:59 popthelp.c:74
 msgid "Display brief usage message"
 msgstr ""
 
-#: popthelp.c:65
+#: popthelp.c:62 popthelp.c:77
 msgid "Display option defaults in message"
 msgstr ""
 
-#: popthelp.c:107
+#: popthelp.c:122
 msgid "NONE"
 msgstr ""
 
-#: popthelp.c:109
+#: popthelp.c:124
 msgid "VAL"
 msgstr ""
 
-#: popthelp.c:113
+#: popthelp.c:128
 msgid "INT"
 msgstr ""
 
-#: popthelp.c:114
+#: popthelp.c:129
 msgid "LONG"
 msgstr ""
 
-#: popthelp.c:115
+#: popthelp.c:130
 msgid "STRING"
 msgstr ""
 
-#: popthelp.c:116
+#: popthelp.c:131
 msgid "FLOAT"
 msgstr ""
 
-#: popthelp.c:117
+#: popthelp.c:132
 msgid "DOUBLE"
 msgstr ""
 
-#: popthelp.c:118
+#: popthelp.c:133
 msgid "ARG"
 msgstr ""
 
-#: popthelp.c:493
+#: popthelp.c:508
 msgid "Usage:"
 msgstr ""
 
-#: popthelp.c:517
+#: popthelp.c:532
 msgid "[OPTION...]"
 msgstr ""
index c3b64a2..98517b7 100644 (file)
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:21-0500\n"
+"POT-Creation-Date: 2003-12-30 08:12-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"
@@ -14,99 +14,99 @@ msgstr ""
 msgid "unknown errno"
 msgstr "¾Ë ¼ö ¾ø´Â ¿À·ùÄÚµå(errno) ÀÔ´Ï´Ù"
 
-#: popt.c:944
+#: popt.c:964
 #, c-format
 msgid "option type (%d) not implemented in popt\n"
 msgstr "¿É¼Ç À¯Çü (%d)Àº popt¿¡¼­ »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: popt.c:1164
+#: popt.c:1184
 msgid "missing argument"
 msgstr "Àμö°¡ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù"
 
-#: popt.c:1166
+#: popt.c:1186
 msgid "unknown option"
 msgstr "¾Ë ¼ö ¾ø´Â ¿É¼ÇÀÔ´Ï´Ù"
 
-#: popt.c:1168
+#: popt.c:1188
 msgid "mutually exclusive logical operations requested"
 msgstr "¾çÂÊ¿¡ ¹èŸÀû ³í¸® ¿¬»êÀÌ ÁöÁ¤µÇ¾ú½À´Ï´Ù"
 
-#: popt.c:1170
+#: popt.c:1190
 msgid "opt->arg should not be NULL"
 msgstr "¿É¼Ç->Àμö°¡ NULLÀÌ µÇ¾î¼­´Â ¾ÈµË´Ï´Ù"
 
-#: popt.c:1172
+#: popt.c:1192
 msgid "aliases nested too deeply"
 msgstr "º°Äª(alias)ÀÌ º¹ÀâÇÏ°Ô ¼³Á¤µÇ¾ú½À´Ï´Ù"
 
-#: popt.c:1174
+#: popt.c:1194
 msgid "error in parameter quoting"
 msgstr "¸Å°³º¯¼ö¿¡ ¿À·ù°¡ ÀÖ½À´Ï´Ù"
 
-#: popt.c:1176
+#: popt.c:1196
 msgid "invalid numeric value"
 msgstr "À߸øµÈ ¼öÄ¡ °ªÀÔ´Ï´Ù"
 
-#: popt.c:1178
+#: popt.c:1198
 msgid "number too large or too small"
 msgstr "¼ýÀÚ°¡ ³Ê¹« Å©°Å³ª ³Ê¹« Àû½À´Ï´Ù"
 
-#: popt.c:1180
+#: popt.c:1200
 msgid "memory allocation failed"
 msgstr "¸Þ¸ð¸® ÇÒ´ç¿¡ ½ÇÆÐÇß½À´Ï´Ù"
 
-#: popt.c:1184
+#: popt.c:1204
 msgid "unknown error"
 msgstr "¾Ë ¼ö ¾ø´Â ¿À·ùÀÔ´Ï´Ù"
 
-#: popthelp.c:61
+#: popthelp.c:58 popthelp.c:73
 msgid "Show this help message"
 msgstr "ÀÌ µµ¿ò¸»À» º¸¿©ÁÝ´Ï´Ù"
 
-#: popthelp.c:62
+#: popthelp.c:59 popthelp.c:74
 msgid "Display brief usage message"
 msgstr "°£´ÜÇÑ »ç¿ë¹ýÀ» º¸¿©ÁÝ´Ï´Ù"
 
-#: popthelp.c:65
+#: popthelp.c:62 popthelp.c:77
 msgid "Display option defaults in message"
 msgstr "±âº»ÀûÀΠ¿É¼ÇÀ» º¸¿©ÁÝ´Ï´Ù"
 
-#: popthelp.c:107
+#: popthelp.c:122
 msgid "NONE"
 msgstr "¾øÀ½(NONE)"
 
-#: popthelp.c:109
+#: popthelp.c:124
 msgid "VAL"
 msgstr "°ª(VAL)"
 
-#: popthelp.c:113
+#: popthelp.c:128
 msgid "INT"
 msgstr "Á¤¼ö(INT)"
 
-#: popthelp.c:114
+#: popthelp.c:129
 msgid "LONG"
 msgstr "Á¤¼ö(LONG)"
 
-#: popthelp.c:115
+#: popthelp.c:130
 msgid "STRING"
 msgstr "¹®ÀÚ¿­(STRING)"
 
-#: popthelp.c:116
+#: popthelp.c:131
 msgid "FLOAT"
 msgstr "¼Ò¼ö(FLOAT)"
 
-#: popthelp.c:117
+#: popthelp.c:132
 msgid "DOUBLE"
 msgstr "¼Ò¼ö(DOUBLE)"
 
-#: popthelp.c:118
+#: popthelp.c:133
 msgid "ARG"
 msgstr "Àμö(ARG)"
 
-#: popthelp.c:493
+#: popthelp.c:508
 msgid "Usage:"
 msgstr "»ç¿ë¹ý:"
 
-#: popthelp.c:517
+#: popthelp.c:532
 msgid "[OPTION...]"
 msgstr "[¿É¼Ç...]"
index 4773d64..3e855da 100644 (file)
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:21-0500\n"
+"POT-Creation-Date: 2003-12-30 08:12-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"
@@ -14,99 +14,99 @@ msgstr ""
 msgid "unknown errno"
 msgstr "ukjent errno"
 
-#: popt.c:944
+#: popt.c:964
 #, c-format
 msgid "option type (%d) not implemented in popt\n"
 msgstr "flaggtype (%d) ikke implementert i popt\n"
 
-#: popt.c:1164
+#: popt.c:1184
 msgid "missing argument"
 msgstr "manglende argument"
 
-#: popt.c:1166
+#: popt.c:1186
 msgid "unknown option"
 msgstr "ukjent flagg"
 
-#: popt.c:1168
+#: popt.c:1188
 msgid "mutually exclusive logical operations requested"
 msgstr "gjensidig eksluderende logiske operasjoner forespurt"
 
-#: popt.c:1170
+#: popt.c:1190
 msgid "opt->arg should not be NULL"
 msgstr "opt->arg må ikke være NULL"
 
-#: popt.c:1172
+#: popt.c:1192
 msgid "aliases nested too deeply"
 msgstr "aliaser med for dype løkker"
 
-#: popt.c:1174
+#: popt.c:1194
 msgid "error in parameter quoting"
 msgstr "feil i parametersitering"
 
-#: popt.c:1176
+#: popt.c:1196
 msgid "invalid numeric value"
 msgstr "ugyldig numerisk verdi"
 
-#: popt.c:1178
+#: popt.c:1198
 msgid "number too large or too small"
 msgstr "tallet er for stort eller lite"
 
-#: popt.c:1180
+#: popt.c:1200
 msgid "memory allocation failed"
 msgstr "minneallokering feilet"
 
-#: popt.c:1184
+#: popt.c:1204
 msgid "unknown error"
 msgstr "ukjent feil"
 
-#: popthelp.c:61
+#: popthelp.c:58 popthelp.c:73
 msgid "Show this help message"
 msgstr "Vis denne hjelpmeldingen"
 
-#: popthelp.c:62
+#: popthelp.c:59 popthelp.c:74
 msgid "Display brief usage message"
 msgstr "Vis kort bruksmelding"
 
-#: popthelp.c:65
+#: popthelp.c:62 popthelp.c:77
 msgid "Display option defaults in message"
 msgstr "Vis forvalgte flagg i melding"
 
-#: popthelp.c:107
+#: popthelp.c:122
 msgid "NONE"
 msgstr "INGEN"
 
-#: popthelp.c:109
+#: popthelp.c:124
 msgid "VAL"
 msgstr "VERDI"
 
-#: popthelp.c:113
+#: popthelp.c:128
 msgid "INT"
 msgstr "HELTALL"
 
-#: popthelp.c:114
+#: popthelp.c:129
 msgid "LONG"
 msgstr "LONG"
 
-#: popthelp.c:115
+#: popthelp.c:130
 msgid "STRING"
 msgstr "STRENG"
 
-#: popthelp.c:116
+#: popthelp.c:131
 msgid "FLOAT"
 msgstr "FLYTTALL"
 
-#: popthelp.c:117
+#: popthelp.c:132
 msgid "DOUBLE"
 msgstr "DOUBLE"
 
-#: popthelp.c:118
+#: popthelp.c:133
 msgid "ARG"
 msgstr "ARG"
 
-#: popthelp.c:493
+#: popthelp.c:508
 msgid "Usage:"
 msgstr "Bruk:"
 
-#: popthelp.c:517
+#: popthelp.c:532
 msgid "[OPTION...]"
 msgstr "[FLAGG...]"
index ef4ca4e..30a8767 100644 (file)
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.9-20030515\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:21-0500\n"
+"POT-Creation-Date: 2003-12-30 08:12-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"
@@ -18,100 +18,100 @@ msgstr ""
 msgid "unknown errno"
 msgstr "nieznane errno"
 
-#: popt.c:944
+#: popt.c:964
 #, c-format
 msgid "option type (%d) not implemented in popt\n"
 msgstr "rodzaj opcji (%d) nie zaimplementowany w popt\n"
 
-#: popt.c:1164
+#: popt.c:1184
 msgid "missing argument"
 msgstr "brak parametru"
 
-#: popt.c:1166
+#: popt.c:1186
 msgid "unknown option"
 msgstr "nieznana opcja"
 
-#: popt.c:1168
+#: popt.c:1188
 msgid "mutually exclusive logical operations requested"
 msgstr "¿±danie wykluczaj±cych siê operacji"
 
-#: popt.c:1170
+#: popt.c:1190
 msgid "opt->arg should not be NULL"
 msgstr "opt->arg nie mo¿e byæ NULL"
 
-#: popt.c:1172
+#: popt.c:1192
 msgid "aliases nested too deeply"
 msgstr "zbyt du¿e zag³êbienie aliasów"
 
-#: popt.c:1174
+#: popt.c:1194
 msgid "error in parameter quoting"
 msgstr "b³±d w cytowaniu parametru"
 
-#: popt.c:1176
+#: popt.c:1196
 msgid "invalid numeric value"
 msgstr "b³êdna warto¶æ liczbowa"
 
-#: popt.c:1178
+#: popt.c:1198
 msgid "number too large or too small"
 msgstr "liczba zbyt du¿a lub zbyt ma³a"
 
-#: popt.c:1180
+#: popt.c:1200
 msgid "memory allocation failed"
 msgstr "b³±d alokacji pamiêci"
 
-#: popt.c:1184
+#: popt.c:1204
 msgid "unknown error"
 msgstr "nieznany b³±d"
 
-#: popthelp.c:61
+#: popthelp.c:58 popthelp.c:73
 msgid "Show this help message"
 msgstr "Poka¿ tê pomoc"
 
-#: popthelp.c:62
+#: popthelp.c:59 popthelp.c:74
 msgid "Display brief usage message"
 msgstr "Wy¶wietl skrócony sposób u¿ycia"
 
-#: popthelp.c:65
+#: popthelp.c:62 popthelp.c:77
 msgid "Display option defaults in message"
 msgstr "Wy¶wietl domy¶lne opcje w opisie"
 
-#: popthelp.c:107
+#: popthelp.c:122
 msgid "NONE"
 msgstr "BRAK"
 
-#: popthelp.c:109
+#: popthelp.c:124
 msgid "VAL"
 msgstr "WART"
 
-#: popthelp.c:113
+#: popthelp.c:128
 msgid "INT"
 msgstr "INT"
 
-#: popthelp.c:114
+#: popthelp.c:129
 msgid "LONG"
 msgstr "LONG"
 
-#: popthelp.c:115
+#: popthelp.c:130
 msgid "STRING"
 msgstr "£AÑCUCH"
 
-#: popthelp.c:116
+#: popthelp.c:131
 msgid "FLOAT"
 msgstr "FLOAT"
 
-#: popthelp.c:117
+#: popthelp.c:132
 msgid "DOUBLE"
 msgstr "DOUBLE"
 
-#: popthelp.c:118
+#: popthelp.c:133
 msgid "ARG"
 msgstr "PARAM"
 
-#: popthelp.c:493
+#: popthelp.c:508
 msgid "Usage:"
 msgstr "Sk³adnia:"
 
-#: popthelp.c:517
+#: popthelp.c:532
 msgid "[OPTION...]"
 msgstr "[OPCJA...]"
 
index 176e818..f75465a 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:21-0500\n"
+"POT-Creation-Date: 2003-12-30 08:12-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"
@@ -20,99 +20,99 @@ msgstr ""
 msgid "unknown errno"
 msgstr ""
 
-#: popt.c:944
+#: popt.c:964
 #, c-format
 msgid "option type (%d) not implemented in popt\n"
 msgstr ""
 
-#: popt.c:1164
+#: popt.c:1184
 msgid "missing argument"
 msgstr ""
 
-#: popt.c:1166
+#: popt.c:1186
 msgid "unknown option"
 msgstr ""
 
-#: popt.c:1168
+#: popt.c:1188
 msgid "mutually exclusive logical operations requested"
 msgstr ""
 
-#: popt.c:1170
+#: popt.c:1190
 msgid "opt->arg should not be NULL"
 msgstr ""
 
-#: popt.c:1172
+#: popt.c:1192
 msgid "aliases nested too deeply"
 msgstr ""
 
-#: popt.c:1174
+#: popt.c:1194
 msgid "error in parameter quoting"
 msgstr ""
 
-#: popt.c:1176
+#: popt.c:1196
 msgid "invalid numeric value"
 msgstr ""
 
-#: popt.c:1178
+#: popt.c:1198
 msgid "number too large or too small"
 msgstr ""
 
-#: popt.c:1180
+#: popt.c:1200
 msgid "memory allocation failed"
 msgstr ""
 
-#: popt.c:1184
+#: popt.c:1204
 msgid "unknown error"
 msgstr ""
 
-#: popthelp.c:61
+#: popthelp.c:58 popthelp.c:73
 msgid "Show this help message"
 msgstr ""
 
-#: popthelp.c:62
+#: popthelp.c:59 popthelp.c:74
 msgid "Display brief usage message"
 msgstr ""
 
-#: popthelp.c:65
+#: popthelp.c:62 popthelp.c:77
 msgid "Display option defaults in message"
 msgstr ""
 
-#: popthelp.c:107
+#: popthelp.c:122
 msgid "NONE"
 msgstr ""
 
-#: popthelp.c:109
+#: popthelp.c:124
 msgid "VAL"
 msgstr ""
 
-#: popthelp.c:113
+#: popthelp.c:128
 msgid "INT"
 msgstr ""
 
-#: popthelp.c:114
+#: popthelp.c:129
 msgid "LONG"
 msgstr ""
 
-#: popthelp.c:115
+#: popthelp.c:130
 msgid "STRING"
 msgstr ""
 
-#: popthelp.c:116
+#: popthelp.c:131
 msgid "FLOAT"
 msgstr ""
 
-#: popthelp.c:117
+#: popthelp.c:132
 msgid "DOUBLE"
 msgstr ""
 
-#: popthelp.c:118
+#: popthelp.c:133
 msgid "ARG"
 msgstr ""
 
-#: popthelp.c:493
+#: popthelp.c:508
 msgid "Usage:"
 msgstr ""
 
-#: popthelp.c:517
+#: popthelp.c:532
 msgid "[OPTION...]"
 msgstr ""
index 458e648..341f4c2 100644 (file)
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: popt\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:21-0500\n"
+"POT-Creation-Date: 2003-12-30 08:12-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"
@@ -14,99 +14,99 @@ msgstr ""
 msgid "unknown errno"
 msgstr "errno desconhecido"
 
-#: popt.c:944
+#: popt.c:964
 #, c-format
 msgid "option type (%d) not implemented in popt\n"
 msgstr "tipo de opção (%d) não implementado no popt\n"
 
-#: popt.c:1164
+#: popt.c:1184
 msgid "missing argument"
 msgstr "falta um argumento"
 
-#: popt.c:1166
+#: popt.c:1186
 msgid "unknown option"
 msgstr "opção desconhecida"
 
-#: popt.c:1168
+#: popt.c:1188
 msgid "mutually exclusive logical operations requested"
 msgstr "foram pedidas operações lógicas mutuamente exclusivas"
 
-#: popt.c:1170
+#: popt.c:1190
 msgid "opt->arg should not be NULL"
 msgstr "opt->arg não deve ser NULL"
 
-#: popt.c:1172
+#: popt.c:1192
 msgid "aliases nested too deeply"
 msgstr "'aliases' demasiado aninhados"
 
-#: popt.c:1174
+#: popt.c:1194
 msgid "error in parameter quoting"
 msgstr "erros no 'quoting' de parâmetros"
 
-#: popt.c:1176
+#: popt.c:1196
 msgid "invalid numeric value"
 msgstr "valor númerico inválido"
 
-#: popt.c:1178
+#: popt.c:1198
 msgid "number too large or too small"
 msgstr "número demasiado grando ou pequeno"
 
-#: popt.c:1180
+#: popt.c:1200
 msgid "memory allocation failed"
 msgstr "alocação de memória falhou"
 
-#: popt.c:1184
+#: popt.c:1204
 msgid "unknown error"
 msgstr "erro desconhecido"
 
-#: popthelp.c:61
+#: popthelp.c:58 popthelp.c:73
 msgid "Show this help message"
 msgstr "Mostrar esta mensagem de ajuda"
 
-#: popthelp.c:62
+#: popthelp.c:59 popthelp.c:74
 msgid "Display brief usage message"
 msgstr "Mostrar uma mensagem de utilização sucinta"
 
-#: popthelp.c:65
+#: popthelp.c:62 popthelp.c:77
 msgid "Display option defaults in message"
 msgstr "Mostrar valor por omissão das opções na mensagem"
 
-#: popthelp.c:107
+#: popthelp.c:122
 msgid "NONE"
 msgstr "NONE"
 
-#: popthelp.c:109
+#: popthelp.c:124
 msgid "VAL"
 msgstr "VAL"
 
-#: popthelp.c:113
+#: popthelp.c:128
 msgid "INT"
 msgstr "INT"
 
-#: popthelp.c:114
+#: popthelp.c:129
 msgid "LONG"
 msgstr "LONG"
 
-#: popthelp.c:115
+#: popthelp.c:130
 msgid "STRING"
 msgstr "STRING"
 
-#: popthelp.c:116
+#: popthelp.c:131
 msgid "FLOAT"
 msgstr "FLOAT"
 
-#: popthelp.c:117
+#: popthelp.c:132
 msgid "DOUBLE"
 msgstr "DOUBLE"
 
-#: popthelp.c:118
+#: popthelp.c:133
 msgid "ARG"
 msgstr "ARG"
 
-#: popthelp.c:493
+#: popthelp.c:508
 msgid "Usage:"
 msgstr "Utilização:"
 
-#: popthelp.c:517
+#: popthelp.c:532
 msgid "[OPTION...]"
 msgstr "[OPÇÃO...]"
index 7cce06e..44701c9 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:21-0500\n"
+"POT-Creation-Date: 2003-12-30 08:12-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"
@@ -19,99 +19,99 @@ msgstr ""
 msgid "unknown errno"
 msgstr ""
 
-#: popt.c:944
+#: popt.c:964
 #, c-format
 msgid "option type (%d) not implemented in popt\n"
 msgstr ""
 
-#: popt.c:1164
+#: popt.c:1184
 msgid "missing argument"
 msgstr ""
 
-#: popt.c:1166
+#: popt.c:1186
 msgid "unknown option"
 msgstr ""
 
-#: popt.c:1168
+#: popt.c:1188
 msgid "mutually exclusive logical operations requested"
 msgstr ""
 
-#: popt.c:1170
+#: popt.c:1190
 msgid "opt->arg should not be NULL"
 msgstr ""
 
-#: popt.c:1172
+#: popt.c:1192
 msgid "aliases nested too deeply"
 msgstr ""
 
-#: popt.c:1174
+#: popt.c:1194
 msgid "error in parameter quoting"
 msgstr ""
 
-#: popt.c:1176
+#: popt.c:1196
 msgid "invalid numeric value"
 msgstr ""
 
-#: popt.c:1178
+#: popt.c:1198
 msgid "number too large or too small"
 msgstr ""
 
-#: popt.c:1180
+#: popt.c:1200
 msgid "memory allocation failed"
 msgstr ""
 
-#: popt.c:1184
+#: popt.c:1204
 msgid "unknown error"
 msgstr ""
 
-#: popthelp.c:61
+#: popthelp.c:58 popthelp.c:73
 msgid "Show this help message"
 msgstr ""
 
-#: popthelp.c:62
+#: popthelp.c:59 popthelp.c:74
 msgid "Display brief usage message"
 msgstr ""
 
-#: popthelp.c:65
+#: popthelp.c:62 popthelp.c:77
 msgid "Display option defaults in message"
 msgstr ""
 
-#: popthelp.c:107
+#: popthelp.c:122
 msgid "NONE"
 msgstr ""
 
-#: popthelp.c:109
+#: popthelp.c:124
 msgid "VAL"
 msgstr ""
 
-#: popthelp.c:113
+#: popthelp.c:128
 msgid "INT"
 msgstr ""
 
-#: popthelp.c:114
+#: popthelp.c:129
 msgid "LONG"
 msgstr ""
 
-#: popthelp.c:115
+#: popthelp.c:130
 msgid "STRING"
 msgstr ""
 
-#: popthelp.c:116
+#: popthelp.c:131
 msgid "FLOAT"
 msgstr ""
 
-#: popthelp.c:117
+#: popthelp.c:132
 msgid "DOUBLE"
 msgstr ""
 
-#: popthelp.c:118
+#: popthelp.c:133
 msgid "ARG"
 msgstr ""
 
-#: popthelp.c:493
+#: popthelp.c:508
 msgid "Usage:"
 msgstr ""
 
-#: popthelp.c:517
+#: popthelp.c:532
 msgid "[OPTION...]"
 msgstr ""
index 4c68c56..a285571 100644 (file)
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:21-0500\n"
+"POT-Creation-Date: 2003-12-30 08:12-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"
@@ -14,101 +14,101 @@ msgstr ""
 msgid "unknown errno"
 msgstr "eroare necunoscuta"
 
-#: popt.c:944
+#: popt.c:964
 #, c-format
 msgid "option type (%d) not implemented in popt\n"
 msgstr "optiunea de tipul (%d) nu este implementata in popt\n"
 
-#: popt.c:1164
+#: popt.c:1184
 msgid "missing argument"
 msgstr "argument lipsa"
 
-#: popt.c:1166
+#: popt.c:1186
 msgid "unknown option"
 msgstr "optiune necunoscuta"
 
-#: popt.c:1168
+#: popt.c:1188
 msgid "mutually exclusive logical operations requested"
 msgstr ""
 
-#: popt.c:1170
+#: popt.c:1190
 msgid "opt->arg should not be NULL"
 msgstr ""
 
-#: popt.c:1172
+#: popt.c:1192
 msgid "aliases nested too deeply"
 msgstr "recursivitate infinita la optiunile sinonime"
 
-#: popt.c:1174
+#: popt.c:1194
 #, fuzzy
 msgid "error in parameter quoting"
 msgstr "eroare la insertie parametru"
 
-#: popt.c:1176
+#: popt.c:1196
 msgid "invalid numeric value"
 msgstr "valoare numarica invalida"
 
-#: popt.c:1178
+#: popt.c:1198
 msgid "number too large or too small"
 msgstr "numar prea mare sau prea mic"
 
-#: popt.c:1180
+#: popt.c:1200
 msgid "memory allocation failed"
 msgstr ""
 
-#: popt.c:1184
+#: popt.c:1204
 msgid "unknown error"
 msgstr "eroare necuinoscuta"
 
-#: popthelp.c:61
+#: popthelp.c:58 popthelp.c:73
 msgid "Show this help message"
 msgstr "Afisare mesaj de help"
 
-#: popthelp.c:62
+#: popthelp.c:59 popthelp.c:74
 msgid "Display brief usage message"
 msgstr "Afisare mesaj sintaxa sumar"
 
-#: popthelp.c:65
+#: popthelp.c:62 popthelp.c:77
 #, fuzzy
 msgid "Display option defaults in message"
 msgstr "Afisare mesaj sintaxa sumar"
 
-#: popthelp.c:107
+#: popthelp.c:122
 msgid "NONE"
 msgstr ""
 
-#: popthelp.c:109
+#: popthelp.c:124
 msgid "VAL"
 msgstr ""
 
-#: popthelp.c:113
+#: popthelp.c:128
 msgid "INT"
 msgstr ""
 
-#: popthelp.c:114
+#: popthelp.c:129
 msgid "LONG"
 msgstr ""
 
-#: popthelp.c:115
+#: popthelp.c:130
 msgid "STRING"
 msgstr ""
 
-#: popthelp.c:116
+#: popthelp.c:131
 msgid "FLOAT"
 msgstr ""
 
-#: popthelp.c:117
+#: popthelp.c:132
 msgid "DOUBLE"
 msgstr ""
 
-#: popthelp.c:118
+#: popthelp.c:133
 msgid "ARG"
 msgstr ""
 
-#: popthelp.c:493
+#: popthelp.c:508
 msgid "Usage:"
 msgstr "Sintaxa:"
 
-#: popthelp.c:517
+#: popthelp.c:532
 msgid "[OPTION...]"
 msgstr "[OPTIUNE...]"
index c6ff1cc..8c6893d 100644 (file)
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:21-0500\n"
+"POT-Creation-Date: 2003-12-30 08:12-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"
@@ -14,99 +14,99 @@ msgstr ""
 msgid "unknown errno"
 msgstr "ÎÅÉÚ×ÅÓÔÎÙÊ ÎÏÍÅÒ ÏÛÉÂËÉ"
 
-#: popt.c:944
+#: popt.c:964
 #, c-format
 msgid "option type (%d) not implemented in popt\n"
 msgstr "ÏÂÒÁÂÏÔËÁ ÐÁÒÁÍÅÔÒÁ (%d) × popt ÎÅ ÐÒÅÄÕÓÍÏÔÒÅÎÁ\n"
 
-#: popt.c:1164
+#: popt.c:1184
 msgid "missing argument"
 msgstr "ÐÒÏÐÕÝÅΠÁÒÇÕÍÅÎÔ"
 
-#: popt.c:1166
+#: popt.c:1186
 msgid "unknown option"
 msgstr "ÎÅÉÚ×ÅÓÔÎÙÊ ÐÁÒÁÍÅÔÒ"
 
-#: popt.c:1168
+#: popt.c:1188
 msgid "mutually exclusive logical operations requested"
 msgstr "ÚÁÐÒÏÛÅÎÙ ×ÚÁÉÍÎÏ ÉÓËÌÀÞÁÀÝÉÅ ÌÏÇÉÞÅÓËÉÅ ÏÐÅÒÁÃÉÉ"
 
-#: popt.c:1170
+#: popt.c:1190
 msgid "opt->arg should not be NULL"
 msgstr "opt->arg ÎÅ ÍÏÖÅÔ ÂÙÔØ NULL"
 
-#: popt.c:1172
+#: popt.c:1192
 msgid "aliases nested too deeply"
 msgstr "ÐÒÅ×ÙÛÅΠÕÒÏ×ÅÎØ ÄÏÐÕÓÔÉÍÏÊ ÒÅËÕÒÓÉÉ ÐÏÄÓÔÁÎÏ×ÏË"
 
-#: popt.c:1174
+#: popt.c:1194
 msgid "error in parameter quoting"
 msgstr "ÏÛÉÂËa ÐÏÍÅÝÅÎÉÑ ÐÁÒÁÍÅÔÒÏ× × ËÁ×ÙÞËÉ"
 
-#: popt.c:1176
+#: popt.c:1196
 msgid "invalid numeric value"
 msgstr "ÎÅÐÒÁ×ÉÌØÎÏÅ ÞÉÓÌÏ×ÏÅ ÚÎÁÞÅÎÉÅ"
 
-#: popt.c:1178
+#: popt.c:1198
 msgid "number too large or too small"
 msgstr "ÞÉÓÌÏ×ÏÅ ÚÎÁÞÅÎÉÅ ÚÁ ÐÒÅÄÅÌÁÍÉ ÐÒÅÄÕÓÍÏÔÒÅÎÎÏÇÏ"
 
-#: popt.c:1180
+#: popt.c:1200
 msgid "memory allocation failed"
 msgstr "ÏÛÉÂËÁ ×ÙÄÅÌÅÎÉÑ ÐÁÍÑÔÉ"
 
-#: popt.c:1184
+#: popt.c:1204
 msgid "unknown error"
 msgstr "ÎÅÉÚ×ÅÓÔÎÁÑ ÏÛÉÂËÁ"
 
-#: popthelp.c:61
+#: popthelp.c:58 popthelp.c:73
 msgid "Show this help message"
 msgstr "ðÏËÁÚÁÔØ ÜÔÏ ÓÏÏÂÝÅÎÉÅ"
 
-#: popthelp.c:62
+#: popthelp.c:59 popthelp.c:74
 msgid "Display brief usage message"
 msgstr "ðÏËÁÚÁÔØ ËÒÁÔËÕÀ ÉÎÓÔÒÕËÃÉÀ ÐÏ ÉÓÐÏÌØÚÏ×ÁÎÉÀ"
 
-#: popthelp.c:65
+#: popthelp.c:62 popthelp.c:77
 msgid "Display option defaults in message"
 msgstr "ðÏËÁÚÁÔØ ÐÁÒÁÍÅÔÒÙ ÐÏ ÕÍÏÌÞÁÎÉÀ"
 
-#: popthelp.c:107
+#: popthelp.c:122
 msgid "NONE"
 msgstr "NONE"
 
-#: popthelp.c:109
+#: popthelp.c:124
 msgid "VAL"
 msgstr "VAL"
 
-#: popthelp.c:113
+#: popthelp.c:128
 msgid "INT"
 msgstr "INT"
 
-#: popthelp.c:114
+#: popthelp.c:129
 msgid "LONG"
 msgstr "LONG"
 
-#: popthelp.c:115
+#: popthelp.c:130
 msgid "STRING"
 msgstr "STRING"
 
-#: popthelp.c:116
+#: popthelp.c:131
 msgid "FLOAT"
 msgstr "FLOAT"
 
-#: popthelp.c:117
+#: popthelp.c:132
 msgid "DOUBLE"
 msgstr "DOUBLE"
 
-#: popthelp.c:118
+#: popthelp.c:133
 msgid "ARG"
 msgstr "ARG"
 
-#: popthelp.c:493
+#: popthelp.c:508
 msgid "Usage:"
 msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ:"
 
-#: popthelp.c:517
+#: popthelp.c:532
 msgid "[OPTION...]"
 msgstr "[ðáòáíåôò...]"
index 5898923..478ce97 100644 (file)
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:21-0500\n"
+"POT-Creation-Date: 2003-12-30 08:12-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"
@@ -18,100 +18,100 @@ msgstr ""
 msgid "unknown errno"
 msgstr ""
 
-#: popt.c:944
+#: popt.c:964
 #, c-format
 msgid "option type (%d) not implemented in popt\n"
 msgstr ""
 
-#: popt.c:1164
+#: popt.c:1184
 msgid "missing argument"
 msgstr ""
 
-#: popt.c:1166
+#: popt.c:1186
 msgid "unknown option"
 msgstr ""
 
-#: popt.c:1168
+#: popt.c:1188
 msgid "mutually exclusive logical operations requested"
 msgstr ""
 
-#: popt.c:1170
+#: popt.c:1190
 msgid "opt->arg should not be NULL"
 msgstr ""
 
-#: popt.c:1172
+#: popt.c:1192
 msgid "aliases nested too deeply"
 msgstr ""
 
-#: popt.c:1174
+#: popt.c:1194
 msgid "error in parameter quoting"
 msgstr ""
 
-#: popt.c:1176
+#: popt.c:1196
 msgid "invalid numeric value"
 msgstr ""
 
-#: popt.c:1178
+#: popt.c:1198
 msgid "number too large or too small"
 msgstr ""
 
-#: popt.c:1180
+#: popt.c:1200
 msgid "memory allocation failed"
 msgstr ""
 
-#: popt.c:1184
+#: popt.c:1204
 msgid "unknown error"
 msgstr ""
 
-#: popthelp.c:61
+#: popthelp.c:58 popthelp.c:73
 msgid "Show this help message"
 msgstr "Vypísa» túto správu"
 
-#: popthelp.c:62
+#: popthelp.c:59 popthelp.c:74
 msgid "Display brief usage message"
 msgstr "Zobrazi» struèný návod na pou¾itie"
 
-#: popthelp.c:65
+#: popthelp.c:62 popthelp.c:77
 #, fuzzy
 msgid "Display option defaults in message"
 msgstr "Zobrazi» struèný návod na pou¾itie"
 
-#: popthelp.c:107
+#: popthelp.c:122
 msgid "NONE"
 msgstr ""
 
-#: popthelp.c:109
+#: popthelp.c:124
 msgid "VAL"
 msgstr ""
 
-#: popthelp.c:113
+#: popthelp.c:128
 msgid "INT"
 msgstr ""
 
-#: popthelp.c:114
+#: popthelp.c:129
 msgid "LONG"
 msgstr ""
 
-#: popthelp.c:115
+#: popthelp.c:130
 msgid "STRING"
 msgstr ""
 
-#: popthelp.c:116
+#: popthelp.c:131
 msgid "FLOAT"
 msgstr ""
 
-#: popthelp.c:117
+#: popthelp.c:132
 msgid "DOUBLE"
 msgstr ""
 
-#: popthelp.c:118
+#: popthelp.c:133
 msgid "ARG"
 msgstr ""
 
-#: popthelp.c:493
+#: popthelp.c:508
 msgid "Usage:"
 msgstr ""
 
-#: popthelp.c:517
+#: popthelp.c:532
 msgid "[OPTION...]"
 msgstr ""
index 369f312..6c3e467 100644 (file)
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:21-0500\n"
+"POT-Creation-Date: 2003-12-30 08:12-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"
@@ -14,100 +14,100 @@ msgstr ""
 msgid "unknown errno"
 msgstr ""
 
-#: popt.c:944
+#: popt.c:964
 #, c-format
 msgid "option type (%d) not implemented in popt\n"
 msgstr ""
 
-#: popt.c:1164
+#: popt.c:1184
 msgid "missing argument"
 msgstr ""
 
-#: popt.c:1166
+#: popt.c:1186
 msgid "unknown option"
 msgstr ""
 
-#: popt.c:1168
+#: popt.c:1188
 msgid "mutually exclusive logical operations requested"
 msgstr ""
 
-#: popt.c:1170
+#: popt.c:1190
 msgid "opt->arg should not be NULL"
 msgstr ""
 
-#: popt.c:1172
+#: popt.c:1192
 msgid "aliases nested too deeply"
 msgstr ""
 
-#: popt.c:1174
+#: popt.c:1194
 msgid "error in parameter quoting"
 msgstr ""
 
-#: popt.c:1176
+#: popt.c:1196
 msgid "invalid numeric value"
 msgstr ""
 
-#: popt.c:1178
+#: popt.c:1198
 msgid "number too large or too small"
 msgstr ""
 
-#: popt.c:1180
+#: popt.c:1200
 msgid "memory allocation failed"
 msgstr ""
 
-#: popt.c:1184
+#: popt.c:1204
 msgid "unknown error"
 msgstr ""
 
-#: popthelp.c:61
+#: popthelp.c:58 popthelp.c:73
 msgid "Show this help message"
 msgstr "Prika¾i to sporoèilo s pomoèjo"
 
-#: popthelp.c:62
+#: popthelp.c:59 popthelp.c:74
 msgid "Display brief usage message"
 msgstr "Prika¾i kratko sporoèilo o uporabi"
 
-#: popthelp.c:65
+#: popthelp.c:62 popthelp.c:77
 #, fuzzy
 msgid "Display option defaults in message"
 msgstr "Prika¾i kratko sporoèilo o uporabi"
 
-#: popthelp.c:107
+#: popthelp.c:122
 msgid "NONE"
 msgstr ""
 
-#: popthelp.c:109
+#: popthelp.c:124
 msgid "VAL"
 msgstr ""
 
-#: popthelp.c:113
+#: popthelp.c:128
 msgid "INT"
 msgstr ""
 
-#: popthelp.c:114
+#: popthelp.c:129
 msgid "LONG"
 msgstr ""
 
-#: popthelp.c:115
+#: popthelp.c:130
 msgid "STRING"
 msgstr ""
 
-#: popthelp.c:116
+#: popthelp.c:131
 msgid "FLOAT"
 msgstr ""
 
-#: popthelp.c:117
+#: popthelp.c:132
 msgid "DOUBLE"
 msgstr ""
 
-#: popthelp.c:118
+#: popthelp.c:133
 msgid "ARG"
 msgstr ""
 
-#: popthelp.c:493
+#: popthelp.c:508
 msgid "Usage:"
 msgstr ""
 
-#: popthelp.c:517
+#: popthelp.c:532
 msgid "[OPTION...]"
 msgstr ""
index 7cce06e..44701c9 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:21-0500\n"
+"POT-Creation-Date: 2003-12-30 08:12-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"
@@ -19,99 +19,99 @@ msgstr ""
 msgid "unknown errno"
 msgstr ""
 
-#: popt.c:944
+#: popt.c:964
 #, c-format
 msgid "option type (%d) not implemented in popt\n"
 msgstr ""
 
-#: popt.c:1164
+#: popt.c:1184
 msgid "missing argument"
 msgstr ""
 
-#: popt.c:1166
+#: popt.c:1186
 msgid "unknown option"
 msgstr ""
 
-#: popt.c:1168
+#: popt.c:1188
 msgid "mutually exclusive logical operations requested"
 msgstr ""
 
-#: popt.c:1170
+#: popt.c:1190
 msgid "opt->arg should not be NULL"
 msgstr ""
 
-#: popt.c:1172
+#: popt.c:1192
 msgid "aliases nested too deeply"
 msgstr ""
 
-#: popt.c:1174
+#: popt.c:1194
 msgid "error in parameter quoting"
 msgstr ""
 
-#: popt.c:1176
+#: popt.c:1196
 msgid "invalid numeric value"
 msgstr ""
 
-#: popt.c:1178
+#: popt.c:1198
 msgid "number too large or too small"
 msgstr ""
 
-#: popt.c:1180
+#: popt.c:1200
 msgid "memory allocation failed"
 msgstr ""
 
-#: popt.c:1184
+#: popt.c:1204
 msgid "unknown error"
 msgstr ""
 
-#: popthelp.c:61
+#: popthelp.c:58 popthelp.c:73
 msgid "Show this help message"
 msgstr ""
 
-#: popthelp.c:62
+#: popthelp.c:59 popthelp.c:74
 msgid "Display brief usage message"
 msgstr ""
 
-#: popthelp.c:65
+#: popthelp.c:62 popthelp.c:77
 msgid "Display option defaults in message"
 msgstr ""
 
-#: popthelp.c:107
+#: popthelp.c:122
 msgid "NONE"
 msgstr ""
 
-#: popthelp.c:109
+#: popthelp.c:124
 msgid "VAL"
 msgstr ""
 
-#: popthelp.c:113
+#: popthelp.c:128
 msgid "INT"
 msgstr ""
 
-#: popthelp.c:114
+#: popthelp.c:129
 msgid "LONG"
 msgstr ""
 
-#: popthelp.c:115
+#: popthelp.c:130
 msgid "STRING"
 msgstr ""
 
-#: popthelp.c:116
+#: popthelp.c:131
 msgid "FLOAT"
 msgstr ""
 
-#: popthelp.c:117
+#: popthelp.c:132
 msgid "DOUBLE"
 msgstr ""
 
-#: popthelp.c:118
+#: popthelp.c:133
 msgid "ARG"
 msgstr ""
 
-#: popthelp.c:493
+#: popthelp.c:508
 msgid "Usage:"
 msgstr ""
 
-#: popthelp.c:517
+#: popthelp.c:532
 msgid "[OPTION...]"
 msgstr ""
index 0f1d816..92ffc3d 100644 (file)
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:21-0500\n"
+"POT-Creation-Date: 2003-12-30 08:12-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"
@@ -14,99 +14,99 @@ msgstr ""
 msgid "unknown errno"
 msgstr "okänt felnummer"
 
-#: popt.c:944
+#: popt.c:964
 #, c-format
 msgid "option type (%d) not implemented in popt\n"
 msgstr "flaggtypen (%d) är inte implementerad i popt\n"
 
-#: popt.c:1164
+#: popt.c:1184
 msgid "missing argument"
 msgstr "argument saknas"
 
-#: popt.c:1166
+#: popt.c:1186
 msgid "unknown option"
 msgstr "okänd flagga"
 
-#: popt.c:1168
+#: popt.c:1188
 msgid "mutually exclusive logical operations requested"
 msgstr "ömsesidigt uteslutande logiska operationer begärdes"
 
-#: popt.c:1170
+#: popt.c:1190
 msgid "opt->arg should not be NULL"
 msgstr "opt->arg får inte vara NULL"
 
-#: popt.c:1172
+#: popt.c:1192
 msgid "aliases nested too deeply"
 msgstr "alias är nästlade för djupt"
 
-#: popt.c:1174
+#: popt.c:1194
 msgid "error in parameter quoting"
 msgstr "fel i parametercitering"
 
-#: popt.c:1176
+#: popt.c:1196
 msgid "invalid numeric value"
 msgstr "ogiltigt numeriskt värde"
 
-#: popt.c:1178
+#: popt.c:1198
 msgid "number too large or too small"
 msgstr "talet för stort eller för litet"
 
-#: popt.c:1180
+#: popt.c:1200
 msgid "memory allocation failed"
 msgstr "minnesallokering misslyckades"
 
-#: popt.c:1184
+#: popt.c:1204
 msgid "unknown error"
 msgstr "okänt fel"
 
-#: popthelp.c:61
+#: popthelp.c:58 popthelp.c:73
 msgid "Show this help message"
 msgstr "Visa denna hjälptext"
 
-#: popthelp.c:62
+#: popthelp.c:59 popthelp.c:74
 msgid "Display brief usage message"
 msgstr "Visa en kortfattad användningstext"
 
-#: popthelp.c:65
+#: popthelp.c:62 popthelp.c:77
 msgid "Display option defaults in message"
 msgstr "Visa standardalternativ för flaggor i meddelande"
 
-#: popthelp.c:107
+#: popthelp.c:122
 msgid "NONE"
 msgstr "INGET"
 
-#: popthelp.c:109
+#: popthelp.c:124
 msgid "VAL"
 msgstr "VÄRDE"
 
-#: popthelp.c:113
+#: popthelp.c:128
 msgid "INT"
 msgstr "HELTAL"
 
-#: popthelp.c:114
+#: popthelp.c:129
 msgid "LONG"
 msgstr "LÅNG"
 
-#: popthelp.c:115
+#: popthelp.c:130
 msgid "STRING"
 msgstr "STRÄNG"
 
-#: popthelp.c:116
+#: popthelp.c:131
 msgid "FLOAT"
 msgstr "FLYTTAL"
 
-#: popthelp.c:117
+#: popthelp.c:132
 msgid "DOUBLE"
 msgstr "DUBBEL"
 
-#: popthelp.c:118
+#: popthelp.c:133
 msgid "ARG"
 msgstr "ARG"
 
-#: popthelp.c:493
+#: popthelp.c:508
 msgid "Usage:"
 msgstr "Användning:"
 
-#: popthelp.c:517
+#: popthelp.c:532
 msgid "[OPTION...]"
 msgstr "[FLAGGA...]"
index 0b5f813..5dd2c10 100644 (file)
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:21-0500\n"
+"POT-Creation-Date: 2003-12-30 08:12-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"
@@ -14,100 +14,100 @@ msgstr ""
 msgid "unknown errno"
 msgstr "bilinmeyen hata no"
 
-#: popt.c:944
+#: popt.c:964
 #, c-format
 msgid "option type (%d) not implemented in popt\n"
 msgstr "seçenek türü (%d) popt için geçersiz\n"
 
-#: popt.c:1164
+#: popt.c:1184
 msgid "missing argument"
 msgstr "argüman eksik"
 
-#: popt.c:1166
+#: popt.c:1186
 msgid "unknown option"
 msgstr "bilinmeyen seçenek"
 
-#: popt.c:1168
+#: popt.c:1188
 msgid "mutually exclusive logical operations requested"
 msgstr "birbirini dýþlayan mantýksal iþlemler istendi"
 
-#: popt.c:1170
+#: popt.c:1190
 msgid "opt->arg should not be NULL"
 msgstr ""
 
-#: popt.c:1172
+#: popt.c:1192
 msgid "aliases nested too deeply"
 msgstr "adlarda çok fazla içiçelikler"
 
-#: popt.c:1174
+#: popt.c:1194
 msgid "error in parameter quoting"
 msgstr "parametrelerde týrnak iþaretleme hatalý "
 
-#: popt.c:1176
+#: popt.c:1196
 msgid "invalid numeric value"
 msgstr "sayýsal deðer geçersiz"
 
-#: popt.c:1178
+#: popt.c:1198
 msgid "number too large or too small"
 msgstr "sayý ya çok büyük ya da çok küçük"
 
-#: popt.c:1180
+#: popt.c:1200
 msgid "memory allocation failed"
 msgstr ""
 
-#: popt.c:1184
+#: popt.c:1204
 msgid "unknown error"
 msgstr "bilinmeyen hata"
 
-#: popthelp.c:61
+#: popthelp.c:58 popthelp.c:73
 msgid "Show this help message"
 msgstr "Bu yardým iletisini gösterir"
 
-#: popthelp.c:62
+#: popthelp.c:59 popthelp.c:74
 msgid "Display brief usage message"
 msgstr "Kýsa bir kullaným iletisi göster"
 
-#: popthelp.c:65
+#: popthelp.c:62 popthelp.c:77
 #, fuzzy
 msgid "Display option defaults in message"
 msgstr "Kýsa bir kullaným iletisi göster"
 
-#: popthelp.c:107
+#: popthelp.c:122
 msgid "NONE"
 msgstr "YOK"
 
-#: popthelp.c:109
+#: popthelp.c:124
 msgid "VAL"
 msgstr "DEÐ"
 
-#: popthelp.c:113
+#: popthelp.c:128
 msgid "INT"
 msgstr "INT"
 
-#: popthelp.c:114
+#: popthelp.c:129
 msgid "LONG"
 msgstr "LONG"
 
-#: popthelp.c:115
+#: popthelp.c:130
 msgid "STRING"
 msgstr "STRING"
 
-#: popthelp.c:116
+#: popthelp.c:131
 msgid "FLOAT"
 msgstr "FLOAT"
 
-#: popthelp.c:117
+#: popthelp.c:132
 msgid "DOUBLE"
 msgstr "DOUBLE"
 
-#: popthelp.c:118
+#: popthelp.c:133
 msgid "ARG"
 msgstr "ARG"
 
-#: popthelp.c:493
+#: popthelp.c:508
 msgid "Usage:"
 msgstr "Kullanýmý:"
 
-#: popthelp.c:517
+#: popthelp.c:532
 msgid "[OPTION...]"
 msgstr "[SEÇENEK...]"
index 50ee2fa..85bdacf 100644 (file)
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:21-0500\n"
+"POT-Creation-Date: 2003-12-30 08:12-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"
@@ -18,100 +18,100 @@ msgstr ""
 msgid "unknown errno"
 msgstr ""
 
-#: popt.c:944
+#: popt.c:964
 #, c-format
 msgid "option type (%d) not implemented in popt\n"
 msgstr ""
 
-#: popt.c:1164
+#: popt.c:1184
 msgid "missing argument"
 msgstr ""
 
-#: popt.c:1166
+#: popt.c:1186
 msgid "unknown option"
 msgstr ""
 
-#: popt.c:1168
+#: popt.c:1188
 msgid "mutually exclusive logical operations requested"
 msgstr ""
 
-#: popt.c:1170
+#: popt.c:1190
 msgid "opt->arg should not be NULL"
 msgstr ""
 
-#: popt.c:1172
+#: popt.c:1192
 msgid "aliases nested too deeply"
 msgstr ""
 
-#: popt.c:1174
+#: popt.c:1194
 msgid "error in parameter quoting"
 msgstr ""
 
-#: popt.c:1176
+#: popt.c:1196
 msgid "invalid numeric value"
 msgstr ""
 
-#: popt.c:1178
+#: popt.c:1198
 msgid "number too large or too small"
 msgstr ""
 
-#: popt.c:1180
+#: popt.c:1200
 msgid "memory allocation failed"
 msgstr ""
 
-#: popt.c:1184
+#: popt.c:1204
 msgid "unknown error"
 msgstr ""
 
-#: popthelp.c:61
+#: popthelp.c:58 popthelp.c:73
 msgid "Show this help message"
 msgstr "ðÏËÁÚÁÔÉ ÃÀ ÄÏצÄËÕ"
 
-#: popthelp.c:62
+#: popthelp.c:59 popthelp.c:74
 msgid "Display brief usage message"
 msgstr "ðÏËÁÚÁÔÉ ËÏÒÏÔËÕ ÄÏצÄËÕ ÐÒÏ ×ÉËÏÒÉÓÔÁÎÎÑ"
 
-#: popthelp.c:65
+#: popthelp.c:62 popthelp.c:77
 #, fuzzy
 msgid "Display option defaults in message"
 msgstr "ðÏËÁÚÁÔÉ ËÏÒÏÔËÕ ÄÏצÄËÕ ÐÒÏ ×ÉËÏÒÉÓÔÁÎÎÑ"
 
-#: popthelp.c:107
+#: popthelp.c:122
 msgid "NONE"
 msgstr ""
 
-#: popthelp.c:109
+#: popthelp.c:124
 msgid "VAL"
 msgstr ""
 
-#: popthelp.c:113
+#: popthelp.c:128
 msgid "INT"
 msgstr ""
 
-#: popthelp.c:114
+#: popthelp.c:129
 msgid "LONG"
 msgstr ""
 
-#: popthelp.c:115
+#: popthelp.c:130
 msgid "STRING"
 msgstr ""
 
-#: popthelp.c:116
+#: popthelp.c:131
 msgid "FLOAT"
 msgstr ""
 
-#: popthelp.c:117
+#: popthelp.c:132
 msgid "DOUBLE"
 msgstr ""
 
-#: popthelp.c:118
+#: popthelp.c:133
 msgid "ARG"
 msgstr ""
 
-#: popthelp.c:493
+#: popthelp.c:508
 msgid "Usage:"
 msgstr ""
 
-#: popthelp.c:517
+#: popthelp.c:532
 msgid "[OPTION...]"
 msgstr ""
index 5e3ddd5..8d06066 100644 (file)
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:21-0500\n"
+"POT-Creation-Date: 2003-12-30 08:12-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"
@@ -22,100 +22,100 @@ msgstr ""
 msgid "unknown errno"
 msgstr ""
 
-#: popt.c:944
+#: popt.c:964
 #, c-format
 msgid "option type (%d) not implemented in popt\n"
 msgstr ""
 
-#: popt.c:1164
+#: popt.c:1184
 msgid "missing argument"
 msgstr ""
 
-#: popt.c:1166
+#: popt.c:1186
 msgid "unknown option"
 msgstr ""
 
-#: popt.c:1168
+#: popt.c:1188
 msgid "mutually exclusive logical operations requested"
 msgstr ""
 
-#: popt.c:1170
+#: popt.c:1190
 msgid "opt->arg should not be NULL"
 msgstr ""
 
-#: popt.c:1172
+#: popt.c:1192
 msgid "aliases nested too deeply"
 msgstr ""
 
-#: popt.c:1174
+#: popt.c:1194
 msgid "error in parameter quoting"
 msgstr ""
 
-#: popt.c:1176
+#: popt.c:1196
 msgid "invalid numeric value"
 msgstr ""
 
-#: popt.c:1178
+#: popt.c:1198
 msgid "number too large or too small"
 msgstr ""
 
-#: popt.c:1180
+#: popt.c:1200
 msgid "memory allocation failed"
 msgstr ""
 
-#: popt.c:1184
+#: popt.c:1204
 msgid "unknown error"
 msgstr ""
 
-#: popthelp.c:61
+#: popthelp.c:58 popthelp.c:73
 msgid "Show this help message"
 msgstr "Mostrer ci messaedje d' aide chal"
 
-#: popthelp.c:62
+#: popthelp.c:59 popthelp.c:74
 msgid "Display brief usage message"
 msgstr "Mostre on court messaedje so kmint vos è siervi"
 
-#: popthelp.c:65
+#: popthelp.c:62 popthelp.c:77
 #, fuzzy
 msgid "Display option defaults in message"
 msgstr "Mostre on court messaedje so kmint vos è siervi"
 
-#: popthelp.c:107
+#: popthelp.c:122
 msgid "NONE"
 msgstr ""
 
-#: popthelp.c:109
+#: popthelp.c:124
 msgid "VAL"
 msgstr ""
 
-#: popthelp.c:113
+#: popthelp.c:128
 msgid "INT"
 msgstr ""
 
-#: popthelp.c:114
+#: popthelp.c:129
 msgid "LONG"
 msgstr ""
 
-#: popthelp.c:115
+#: popthelp.c:130
 msgid "STRING"
 msgstr ""
 
-#: popthelp.c:116
+#: popthelp.c:131
 msgid "FLOAT"
 msgstr ""
 
-#: popthelp.c:117
+#: popthelp.c:132
 msgid "DOUBLE"
 msgstr ""
 
-#: popthelp.c:118
+#: popthelp.c:133
 msgid "ARG"
 msgstr ""
 
-#: popthelp.c:493
+#: popthelp.c:508
 msgid "Usage:"
 msgstr ""
 
-#: popthelp.c:517
+#: popthelp.c:532
 msgid "[OPTION...]"
 msgstr ""
index 7cce06e..44701c9 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:21-0500\n"
+"POT-Creation-Date: 2003-12-30 08:12-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"
@@ -19,99 +19,99 @@ msgstr ""
 msgid "unknown errno"
 msgstr ""
 
-#: popt.c:944
+#: popt.c:964
 #, c-format
 msgid "option type (%d) not implemented in popt\n"
 msgstr ""
 
-#: popt.c:1164
+#: popt.c:1184
 msgid "missing argument"
 msgstr ""
 
-#: popt.c:1166
+#: popt.c:1186
 msgid "unknown option"
 msgstr ""
 
-#: popt.c:1168
+#: popt.c:1188
 msgid "mutually exclusive logical operations requested"
 msgstr ""
 
-#: popt.c:1170
+#: popt.c:1190
 msgid "opt->arg should not be NULL"
 msgstr ""
 
-#: popt.c:1172
+#: popt.c:1192
 msgid "aliases nested too deeply"
 msgstr ""
 
-#: popt.c:1174
+#: popt.c:1194
 msgid "error in parameter quoting"
 msgstr ""
 
-#: popt.c:1176
+#: popt.c:1196
 msgid "invalid numeric value"
 msgstr ""
 
-#: popt.c:1178
+#: popt.c:1198
 msgid "number too large or too small"
 msgstr ""
 
-#: popt.c:1180
+#: popt.c:1200
 msgid "memory allocation failed"
 msgstr ""
 
-#: popt.c:1184
+#: popt.c:1204
 msgid "unknown error"
 msgstr ""
 
-#: popthelp.c:61
+#: popthelp.c:58 popthelp.c:73
 msgid "Show this help message"
 msgstr ""
 
-#: popthelp.c:62
+#: popthelp.c:59 popthelp.c:74
 msgid "Display brief usage message"
 msgstr ""
 
-#: popthelp.c:65
+#: popthelp.c:62 popthelp.c:77
 msgid "Display option defaults in message"
 msgstr ""
 
-#: popthelp.c:107
+#: popthelp.c:122
 msgid "NONE"
 msgstr ""
 
-#: popthelp.c:109
+#: popthelp.c:124
 msgid "VAL"
 msgstr ""
 
-#: popthelp.c:113
+#: popthelp.c:128
 msgid "INT"
 msgstr ""
 
-#: popthelp.c:114
+#: popthelp.c:129
 msgid "LONG"
 msgstr ""
 
-#: popthelp.c:115
+#: popthelp.c:130
 msgid "STRING"
 msgstr ""
 
-#: popthelp.c:116
+#: popthelp.c:131
 msgid "FLOAT"
 msgstr ""
 
-#: popthelp.c:117
+#: popthelp.c:132
 msgid "DOUBLE"
 msgstr ""
 
-#: popthelp.c:118
+#: popthelp.c:133
 msgid "ARG"
 msgstr ""
 
-#: popthelp.c:493
+#: popthelp.c:508
 msgid "Usage:"
 msgstr ""
 
-#: popthelp.c:517
+#: popthelp.c:532
 msgid "[OPTION...]"
 msgstr ""
index 7d37818..ed43590 100644 (file)
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2003-12-07 15:21-0500\n"
+"POT-Creation-Date: 2003-12-30 08:12-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"
@@ -14,100 +14,100 @@ msgstr ""
 msgid "unknown errno"
 msgstr ""
 
-#: popt.c:944
+#: popt.c:964
 #, c-format
 msgid "option type (%d) not implemented in popt\n"
 msgstr ""
 
-#: popt.c:1164
+#: popt.c:1184
 msgid "missing argument"
 msgstr ""
 
-#: popt.c:1166
+#: popt.c:1186
 msgid "unknown option"
 msgstr ""
 
-#: popt.c:1168
+#: popt.c:1188
 msgid "mutually exclusive logical operations requested"
 msgstr ""
 
-#: popt.c:1170
+#: popt.c:1190
 msgid "opt->arg should not be NULL"
 msgstr ""
 
-#: popt.c:1172
+#: popt.c:1192
 msgid "aliases nested too deeply"
 msgstr ""
 
-#: popt.c:1174
+#: popt.c:1194
 msgid "error in parameter quoting"
 msgstr ""
 
-#: popt.c:1176
+#: popt.c:1196
 msgid "invalid numeric value"
 msgstr ""
 
-#: popt.c:1178
+#: popt.c:1198
 msgid "number too large or too small"
 msgstr ""
 
-#: popt.c:1180
+#: popt.c:1200
 msgid "memory allocation failed"
 msgstr ""
 
-#: popt.c:1184
+#: popt.c:1204
 msgid "unknown error"
 msgstr ""
 
-#: popthelp.c:61
+#: popthelp.c:58 popthelp.c:73
 msgid "Show this help message"
 msgstr "ÏÔʾÕâÌõ°ïÖúÐÅÏ¢"
 
-#: popthelp.c:62
+#: popthelp.c:59 popthelp.c:74
 msgid "Display brief usage message"
 msgstr "ÏÔʾ¼ò¶ÌʹÓÃÐÅÏ¢"
 
-#: popthelp.c:65
+#: popthelp.c:62 popthelp.c:77
 #, fuzzy
 msgid "Display option defaults in message"
 msgstr "ÏÔʾ¼ò¶ÌʹÓÃÐÅÏ¢"
 
-#: popthelp.c:107
+#: popthelp.c:122
 msgid "NONE"
 msgstr ""
 
-#: popthelp.c:109
+#: popthelp.c:124
 msgid "VAL"
 msgstr ""
 
-#: popthelp.c:113
+#: popthelp.c:128
 msgid "INT"
 msgstr ""
 
-#: popthelp.c:114
+#: popthelp.c:129
 msgid "LONG"
 msgstr ""
 
-#: popthelp.c:115
+#: popthelp.c:130
 msgid "STRING"
 msgstr ""
 
-#: popthelp.c:116
+#: popthelp.c:131
 msgid "FLOAT"
 msgstr ""
 
-#: popthelp.c:117
+#: popthelp.c:132
 msgid "DOUBLE"
 msgstr ""
 
-#: popthelp.c:118
+#: popthelp.c:133
 msgid "ARG"
 msgstr ""
 
-#: popthelp.c:493
+#: popthelp.c:508
 msgid "Usage:"
 msgstr ""
 
-#: popthelp.c:517
+#: popthelp.c:532
 msgid "[OPTION...]"
 msgstr ""
diff --git a/rpm.c b/rpm.c
index f7f36ff..d702f6e 100755 (executable)
--- a/rpm.c
+++ b/rpm.c
@@ -434,7 +434,7 @@ static void printHelp(void) {
     printHelpLine(_("      --relocate <oldpath>=<newpath>"),
                  _("relocate files from <oldpath> to <newpath>"));
     printHelpLine(  "      --badreloc          ",
-                 _("relocate files in non-relocateable package"));
+                 _("relocate files in non-relocatable package"));
     printHelpLine(_("      --prefix <dir>      "),
                  _("relocate the package to <dir>, if relocatable"));
     printHelpLine(_("      --dbpath <dir>      "),
index ee7f637..8b3e755 100644 (file)
@@ -531,7 +531,7 @@ void legacyRetrofit(Header h, const struct rpmlead * lead)
        (void) headerRemoveEntry(h, RPMTAG_FILEGIDS);
 
     /*
-     * We switched the way we do relocateable packages. We fix some of
+     * We switched the way we do relocatable packages. We fix some of
      * it up here, though the install code still has to be a bit 
      * careful. This fixup makes queries give the new values though,
      * which is quite handy.
index 287ee8d..6fb2899 100644 (file)
@@ -57,7 +57,7 @@ rpm   alias --requires        --qf \
        --POPTdesc=$"list capabilities required by package(s)"
 rpm    alias -R --requires
 
-rpm    alias --info --qf 'Name        : %-27{NAME}  Relocations: %|PREFIXES?{[%{PREFIXES} ]}:{(not relocateable)}|\n\
+rpm    alias --info --qf 'Name        : %-27{NAME}  Relocations: %|PREFIXES?{[%{PREFIXES} ]}:{(not relocatable)}|\n\
 Version     : %-27{VERSION}       Vendor: %{VENDOR}\n\
 Release     : %-27{RELEASE}   Build Date: %{BUILDTIME:date}\n\
 Install Date: %|INSTALLTIME?{%-27{INSTALLTIME:date}}:{(not installed)         }|      Build Host: %{BUILDHOST}\n\
@@ -334,7 +334,7 @@ rpmq        alias --requires        --qf \
        --POPTdesc=$"list capabilities required by package(s)"
 rpmq   alias -R --requires
 
-rpmq   alias --info --qf 'Name        : %-27{NAME}  Relocations: %|PREFIXES?{[%{PREFIXES} ]}:{(not relocateable)}|\n\
+rpmq   alias --info --qf 'Name        : %-27{NAME}  Relocations: %|PREFIXES?{[%{PREFIXES} ]}:{(not relocatable)}|\n\
 Version     : %-27{VERSION}       Vendor: %{VENDOR}\n\
 Release     : %-27{RELEASE}   Build Date: %{BUILDTIME:date}\n\
 Install Date: %|INSTALLTIME?{%-27{INSTALLTIME:date}}:{(not installed)         }|      Build Host: %{BUILDHOST}\n\
@@ -429,7 +429,7 @@ rpmquery    alias --requires        --qf \
        --POPTdesc=$"list capabilities required by package(s)"
 rpmquery       alias -R --requires
 
-rpmquery       alias --info --qf 'Name        : %-27{NAME}  Relocations: %|PREFIXES?{[%{PREFIXES} ]}:{(not relocateable)}|\n\
+rpmquery       alias --info --qf 'Name        : %-27{NAME}  Relocations: %|PREFIXES?{[%{PREFIXES} ]}:{(not relocatable)}|\n\
 Version     : %-27{VERSION}       Vendor: %{VENDOR}\n\
 Release     : %-27{RELEASE}   Build Date: %{BUILDTIME:date}\n\
 Install Date: %|INSTALLTIME?{%-27{INSTALLTIME:date}}:{(not installed)         }|      Build Host: %{BUILDHOST}\n\