new find req/prov scripts for non-linux platforms (Tim Mooney).
authorjbj <devnull@localhost>
Thu, 30 Sep 1999 00:22:15 +0000 (00:22 +0000)
committerjbj <devnull@localhost>
Thu, 30 Sep 1999 00:22:15 +0000 (00:22 +0000)
CVS patchset: 3351
CVS date: 1999/09/30 00:22:15

18 files changed:
CHANGES
autodeps/hpux.prov
autodeps/hpux.req
autodeps/irix6.prov
autodeps/irix6.req
autodeps/osf.prov
autodeps/osf.req
po/cs.po
po/de.po
po/fi.po
po/fr.po
po/pl.po
po/pt_BR.po
po/ru.po
po/sk.po
po/sr.po
po/sv.po
po/tr.po

diff --git a/CHANGES b/CHANGES
index 235a2aa..3955a1b 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -65,6 +65,7 @@
        - portatbility fiddles (solaris).
        - create binary rpm directory (e.g. .../%{_target_cpu}) on the fly.
        - updated pl/rpm.8 (PLD team).
+       - new find req/prov scripts for non-linux platforms (Tim Mooney).
 
 3.0.1 -> 3.0.2
        - eliminate armv4 entries from rpmrc (Andrew E. Mileski).
index 8619813..2a8331b 100644 (file)
@@ -1,9 +1,9 @@
 #! /usr/bin/ksh
 
 # Original Author: Tim Mooney (mooney@plains.nodak.edu)
-# $Id: hpux.prov,v 1.4 1999/08/04 18:07:18 jbj Exp $
+# $Id: hpux.prov,v 1.5 1999/09/30 00:22:15 jbj Exp $
 #
-# This file is distributed under the terms of the GNU General Public License
+# This file is distributed under the terms of the GNU Public License
 #
 # find-provides is part of RPM, the Red Hat Package Manager.  find-provides
 # reads a list of full pathnames (in a package) on stdin, and outputs all
 PATH=/usr/bin:/usr/sbin:/usr/ccs/bin
 export PATH
 
-for f in `cat -`
+#
+# TVM: use `while read ...' instead of `for f in ...', because there may
+# be too many files to stuff into one shell variable.
+#
+IFS=""
+while read f
 do
-       chatr $f 2>/dev/null | awk '
+       chatr $f 2>/dev/null \
+       | awk '
 
                BEGIN { 
                        FS = " ";
index f9d7e5d..8539d76 100644 (file)
@@ -1,9 +1,9 @@
 #! /usr/bin/ksh
 
 # Original Author: Tim Mooney (mooney@plains.nodak.edu)
-# $Id: hpux.req,v 1.4 1999/08/04 18:07:18 jbj Exp $
+# $Id: hpux.req,v 1.5 1999/09/30 00:22:15 jbj Exp $
 #
-# This file is distributed under the terms of the GNU General Public License
+# This file is distributed under the terms of the GNU Public License
 #
 # find-requires is part of RPM, the Red Hat Package Manager.  find-requires
 # reads a list of full pathnames (in a package) on stdin, and outputs all
 PATH=/usr/bin:/usr/sbin:/sbin:/usr/ccs/bin
 export PATH
 
-#
-# TVM: it might be better to re-write this so that `file' isn't used, since
-# it can all be done with `chatr' (note the second line of chatr output tells
-# whether it's a shared executable or not), but this works.
-#
-filelist=`sed "s/['\"]/\\\&/g" | xargs file | egrep '(executable|library)' \
-       | cut -d: -f1`
-
-for f in $filelist
+IFS=""
+while read f
 do
        # uncomment the next line if debugging
        # echo "### processing $f"
 
-       chatr $f 2>/dev/null | awk '
+       #
+       # Only run the file command once per file:
+       #
+       file_output=`file $f`
+
+       #
+       # First, check to see if it's a script, and try figure out what
+       # intpreter it requires.  This is more work on HP-UX, since `file'
+       # doesn't tell us what interpreter the script uses, or even if it
+       # really is a script.
+       #
+       is_shell_script=`od -N 2 -t c $f 2>/dev/null | grep '0000000    #   !'`
+       if test X"$is_shell_script" != X ; then
+               #
+               # it's a shell script.  Now figure out what interpreter it needs
+               # Look at me!  I'm good with sed.  ;-)
+               interp=`head -1 $f | sed -e 's/^#! \{0,1\}\([^  ]*\).*$/\1/'`
+               if test X"$interp" != X ; then
+                       echo "$interp"
+                       #
+                       # We've found what we need for this file.  Skip back to the
+                       # top of the loop.  This saves me an `else' and another indent
+                       # level!  ;-)
+                       continue
+               fi
+       fi
+       
+       #
+       # The `else' is implied here by the `continue' above
+       #
+
+       #
+       # Is it a shared library?
+       #
+       maybe_shared_lib=`echo "$file_output" | egrep '(executable|library)'`
+       if test X"$maybe_shared_lib" != X ; then
+               chatr $f 2>/dev/null \
+               | awk '
 
                #
                # For you non-awk-ers, no single quotes in comments -- the shell
@@ -81,7 +111,8 @@ do
                /^ +shared library binding: *$/ {
                        exit
                }
-       ' # end of awk
+               ' # end of awk
+       fi # end of shared library if.
 done | sort -u
 #comment out the previous line and uncomment the next one if debugging.
 #done
index c95afb5..a3a3b36 100644 (file)
@@ -1,9 +1,9 @@
 #! /usr/bin/ksh
 
 # Original Author: Tim Mooney (mooney@plains.nodak.edu)
-# $Id: irix6.prov,v 1.4 1999/08/04 18:07:18 jbj Exp $
+# $Id: irix6.prov,v 1.5 1999/09/30 00:22:15 jbj Exp $
 #
-# This file is distributed under the terms of the GNU General Public License
+# This file is distributed under the terms of the GNU Public License
 #
 # find-provides is part of RPM, the Red Hat Package Manager.  find-provides
 # reads a list of full pathnames (in a package) on stdin, and outputs all
 PATH=/usr/bin:/usr/sbin
 export PATH
 
-for f in `cat - | xargs /usr/bin/file | egrep 'ELF.*dynamic lib' | cut -d: -f1`
+#
+# Use `while read ...' instead of `for f in ...', because there may be too
+# many files to stuff into one shell variable.
+#
+IFS=""
+while read f
 do
-       elfdump -L $f 2>/dev/null | awk '
+       #
+       # If it's a shared library, run elfdump on it.
+       #
+       maybe_shared_lib=`file $f | egrep 'ELF.*dynamic lib'` 
+       if test X"$maybe_shared_lib" != X ; then
+               elfdump -L $f 2>/dev/null | awk '
 
                BEGIN { 
                        FS = " ";
@@ -168,15 +178,18 @@ do
                        if ( (found_soname == 1) && (found_iversion == 1) ) {
                                print soname, soname_version_delimiter, version
                                exit
-                       } else if (found_soname == 1) {
+                       } else if ( (found_soname == 1) && (found_iversion == 0) ) {
                                #
-                               # no library version information
+                               # no library version information *BUT* any programs linked
+                               # against this library will pick up a dependency on version 0
+                               # of this library, so we output that.
                                #
-                               print soname
+                               print soname, soname_version_delimiter, 0
                        }
                        # else do nothing
                }
        ' # end of awk
-#done | sort -u
+       fi # end of the 'if test X"$maybe_shared_lib != X ; then' clause
+done | sort -u
 #comment out the previous line and uncomment the next line when debugging
-done
+#done
index e62bb63..cd280e8 100644 (file)
@@ -1,9 +1,9 @@
 #! /usr/bin/ksh
 
 # Original Author: Tim Mooney (mooney@plains.nodak.edu)
-# $Id: irix6.req,v 1.4 1999/08/04 18:07:18 jbj Exp $
+# $Id: irix6.req,v 1.5 1999/09/30 00:22:15 jbj Exp $
 #
-# This file is distributed under the terms of the GNU General Public License
+# This file is distributed under the terms of the GNU Public License
 #
 # find-requires is part of RPM, the Red Hat Package Manager.  find-requires
 # reads a list of full pathnames (in a package) on stdin, and outputs all
 PATH=/usr/bin:/usr/sbin
 export PATH
 
-filelist=`cat -`
-
 #
-# Handle scripts first
+# TVM: switch to using `while read ...' instead of `for f in ...', because
+# packages with a large number of files could be too big for one shell
+# variable to hold.
 #
-for f in `echo $filelist | xargs file | grep 'script text' | cut -d: -f 2 \
-       | awk '{ print $1 }'`
+IFS=""
+while read f
 do
-       print $f
-done | sort -u
+
+       #
+       # Uncomment the next line for additional debugging:
+       #echo "read ->$f<-"
        
+       #
+       # Only run file once per file:
+       #
+       file_output=`file $f`
 
-for f in `echo $filelist | xargs file | egrep 'executable|lib' | cut -d: -f1`
-do
-       #echo "Working on $f"
-       elfdump -Dl $f 2>/dev/null | awk '
+       #
+       # Handle scripts first
+       #
+       is_shell_script=`echo "$file_output" | grep 'script text' | \
+               cut -d: -f 2 | awk '{ print $1 }'`
+       
+       #
+       # If it's a script...
+       #
+       if test X"$is_shell_script" != X ; then
+               echo "$is_shell_script"
+               #
+               # use `continue' to skip back up to the top of the loop.  We've
+               # already done as much as we need to, and this saves me from having
+               # to have an else, and another indent level... ;-)
+               #
+               continue
+       fi
+
+       #
+       # the `else' is implied here, since we used `continue' in the test above
+       #
+
+       #
+       # It might be a shared library.
+       #
+       maybe_shared_lib=`echo "$file_output" | egrep 'executable|lib'`
+       if test X"$maybe_shared_lib" != X ; then
+
+               elfdump -Dl $f 2>/dev/null \
+               | awk '
 
                #
                # For you non-awk-ers, no single quotes in comments -- the shell
@@ -118,6 +151,7 @@ do
                }
 
        ' # end of awk
+       fi
 done | sort -u
 # comment out the previous line and uncomment the next when debugging
 #done
index f1150d5..1f0bf2a 100644 (file)
@@ -1,9 +1,9 @@
 #! /usr/bin/ksh
 
 # Original Author: Tim Mooney (mooney@plains.nodak.edu)
-# $Id: osf.prov,v 1.2 1998/05/29 16:34:27 mooney Exp mooney $
+# $Id: osf.prov,v 1.4 1999/08/21 23:23:12 mooney Exp $
 #
-# This file is distributed under the terms of the GNU General Public License
+# This file is distributed under the terms of the GNU Public License
 #
 # find-provides is part of RPM, the Red Hat Package Manager.  find-provides
 # reads a list of full pathnames (in a package) on stdin, and outputs all
 PATH=/usr/bin:/usr/sbin:/sbin:/usr/ccs/bin
 export PATH
 
-for f in `cat - | xargs file | egrep 'COFF.*shared library' | cut -d: -f1`
+#
+# Use `while read ...' instead of a `for f in ...', because there may
+# be too many files to stuff into one shell variable.
+#
+IFS=""
+while read f
 do
-       odump -D $f 2>/dev/null | awk '
-
-               BEGIN { 
-                       FS = " ";
-                       RS = "\n";
-                       OFS = "";
 
-                       found_soname = 0;
-                       found_iversion = 0;
+       #
+       # if it's a shared library, run odump on it.
+       #
+       maybe_shared_lib=`file $f | egrep 'COFF.*shared library'`
+       if test X"$maybe_shared_lib" != X ; then
+               odump -D $f 2>/dev/null | awk '
 
-                       #
-                       # what character should be used to separate the soname from any
-                       # version info?  Using a . is actually a bad idea, since some
-                       # free/3rd party libraries may be built so that the library
-                       # soname may have version info in it too.  If we use . as the
-                       # separator, it may not be possible to tell where the soname
-                       # ends and the internal version info begins.  It might be
-                       # better to use a - or a : here.  If you do so, be sure to
-                       # change this setting in find-requires, too.
-                       #
-                       soname_version_delimiter=".";
-               }
+                       BEGIN { 
+                               FS = " ";
+                               RS = "\n";
+                               OFS = "";
 
-               # Uncomment the next line for some debugging info.
-               #{ print NR , ":", $0  }
+                               found_soname = 0;
+                               found_iversion = 0;
 
-               /^[      ]+SONAME: .*[  ]*$/ {
-                       found_soname = 1;
-                       numfields = split($0, internal_name)
-                       if (numfields == 2) {
-                               soname = $2
                                #
-                               # we should probably check to see if the soname ends with
-                               # a number (indicating that it contains versioning info,
-                               # possibly in addition to the versioning info in the versions
-                               # field) and generate a warning here.  Shared libraries should
-                               # not be built with version info in the soname on Digital Unix.
+                               # what character should be used to separate the soname from any
+                               # version info?  Using a . is actually a bad idea, since some
+                               # free/3rd party libraries may be built so that the library
+                               # soname may have version info in it too.  If we use . as the
+                               # separator, it may not be possible to tell where the soname
+                               # ends and the internal version info begins.  It might be
+                               # better to use a - or a : here.  If you do so, be sure to
+                               # change this setting in find-requires, too.
                                #
-                       } else {
-                               #
-                               # Should never be here.
-                               #
-                               print "Really odd looking soname:", $0 | "cat 1>&2"
-                               exit
+                               soname_version_delimiter=".";
                        }
-               }
 
-               /^[     ]+IVERSION: .*[         ]*$/ {
-                       if (found_soname == 1) {
-                               numfields = split($0, iversion)
+                       # Uncomment the next line for some debugging info.
+                       #{ print NR , ":", $0  }
+
+                       /^[      ]+SONAME: .*[  ]*$/ {
+                               found_soname = 1;
+                               numfields = split($0, internal_name)
                                if (numfields == 2) {
-                                       version = $2
+                                       soname = $2
                                        #
-                                       # handle libraries with multiple versions, like
-                                       # 1.1:1.2.  Since they really provide both versions,
-                                       # we need to generate output for each version.
+                                       # we should probably check to see if the soname ends with
+                                       # a number (indicating that it contains versioning info,
+                                       # possibly in addition to the versioning info in the
+                                       # versions field) and generate a warning here.  Shared
+                                       # libraries should not be built with version info in
+                                       # the soname on Digital Unix.
                                        #
-                                       numfields = split(version, versions, ":")
-                                       if (numfields > 1) {
-                                               for (i = 1; i < numfields; i++) {
+                               } else {
+                                       #
+                                       # Should never be here.
+                                       #
+                                       print "Really odd looking soname:", $0 | "cat 1>&2"
+                                       exit
+                               }
+                       }
+
+                       /^[     ]+IVERSION: .*[         ]*$/ {
+                               if (found_soname == 1) {
+                                       numfields = split($0, iversion)
+                                       if (numfields == 2) {
+                                               version = $2
+                                               #
+                                               # handle libraries with multiple versions, like
+                                               # 1.1:1.2.  Since they really provide both versions,
+                                               # we need to generate output for each version.
+                                               #
+                                               numfields = split(version, versions, ":")
+                                               if (numfields > 1) {
+                                                       for (i = 1; i < numfields; i++) {
                                                        print soname, soname_version_delimiter, versions[i]
+                                                       }
+                                                       #
+                                                       # let our END routine print out the *last* version
+                                                       # provided
+                                                       #
+                                                       version = versions[numfields]
                                                }
                                                #
-                                               # let our END routine print out the *last* version
-                                               # provided
+                                               # stick a fork in us.
+                                               #
+                                               found_iversion = 1;
+                                               exit
+                                       } else {
+                                               #
+                                               # Should never be here.
                                                #
-                                               version = versions[numfields]
+                                               print "Odd looking library version:", $0 | "cat 1>&2"
+                                               exit
                                        }
-                                       #
-                                       # stick a fork in us.
-                                       #
-                                       found_iversion = 1;
-                                       exit
                                } else {
                                        #
-                                       # Should never be here.
+                                       # found an iversion without an soname.  Is that possible?
                                        #
-                                       print "Odd looking library version:", $0 | "cat 1>&2"
+                                       print "Found version but no soname:", $0 | "cat 1>&2"
                                        exit
                                }
-                       } else {
-                               #
-                               # found an iversion without an soname.  Is that possible?
-                               #
-                               print "Found version but no soname:", $0 | "cat 1>&2"
-                               exit
                        }
-               }
 
-               #
-               # we could probably watch for some other token (like RLD_VERSION)
-               # that *generally* occurs later in the input than the stuff we watch
-               # for, and exit if we see it, but it is just as easy to read all
-               # the output, even after we have seen what we are looking for.
-               #
+                       #
+                       # we could probably watch for some other token (like RLD_VERSION)
+                       # that *generally* occurs later in the input than the stuff we watch
+                       # for, and exit if we see it, but it is just as easy to read all
+                       # the output, even after we have seen what we are looking for.
+                       #
 
-               END {
-                       # Uncomment the next line for debugging info
-                       #{ print "END: NR: ", NR }
-                       if ( (found_soname == 1) && (found_iversion == 1) ) {
-                               print soname, soname_version_delimiter, version
-                               exit
-                       } else if (found_soname == 1) {
-                               #
-                               # no library version information
-                               #
-                               print soname
+                       END {
+                               # Uncomment the next line for debugging info
+                               #{ print "END: NR: ", NR }
+                               if ( (found_soname == 1) && (found_iversion == 1) ) {
+                                       print soname, soname_version_delimiter, version
+                                       exit
+                               } else if (found_soname == 1) {
+                                       #
+                                       # no library version information
+                                       #
+                                       print soname
+                               }
+                               # else do nothing
                        }
-                       # else do nothing
-               }
-       ' # end of awk
+               ' # end of awk
+       fi
 done | sort -u
 #comment out the previous line and uncomment the next line when debugging
 #done
index 08fe13f..73abf5c 100644 (file)
@@ -1,7 +1,7 @@
 #! /usr/bin/ksh
 
 # Original Author: Tim Mooney (mooney@plains.nodak.edu)
-# $Id: osf.req,v 1.6 1999/09/07 19:53:10 jbj Exp $
+# $Id: osf.req,v 1.7 1999/09/30 00:22:15 jbj Exp $
 #
 # This file is distributed under the terms of the GNU Public License
 #
@@ -60,21 +60,32 @@ do
                cut -d: -f 2 | awk '{ print $1 }'`
 
        #
-       # it's a script
+       # If it's a script...
        #
        if test X"$is_shell_script" != X ; then
-               echo $is_shell_script
-
-       else
-
+               echo "$is_shell_script"
                #
-               # it might be a shared library.
+               # use `continue' to skip back up to the top of the loop.
+               # We have already done as much as we need to for this
+               # file, and this saves me from having to have an else,
+               # and another indent level... ;-)
                #
+               continue
+       fi
+
+       #
+       # The `else' here is implied by the `continue' above...
+       #
+
+       #
+       # it might be a shared library.
+       #
 
-               maybe_shared_lib=`echo "$file_output" | grep 'executable'`
-               if test X"$maybe_shared_lib" != X ; then
+       maybe_shared_lib=`echo "$file_output" | grep 'executable'`
+       if test X"$maybe_shared_lib" != X ; then
 
-                       odump -Dl $f 2>/dev/null | awk '
+               odump -Dl $f 2>/dev/null \
+               | awk '
 
                        #
                        # For you non-awk-ers, no single quotes in comments -- the shell
@@ -136,8 +147,7 @@ do
                                #print "found the program name: ", $1
                        }
 
-                       ' # end of awk
-               fi
+               ' # end of awk
        fi
 done | sort -u
 # comment out the previous line and uncomment the next when debugging
index 6520dbb..3865aeb 100644 (file)
--- a/po/cs.po
+++ b/po/cs.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 1999-05-11 12:17-0400\n"
+"POT-Creation-Date: 1999-09-29 19:30-0400\n"
 "PO-Revision-Date: 1998-10-10 10:10+0200\n"
 "Last-Translator: Pavel Makovec <pavelm@terminal.cz>\n"
 "Language-Team: Czech <pavelm@terminal.cz>\n"
@@ -14,500 +14,237 @@ msgstr ""
 "Content-Type: text/plain; charset=ISO-8859-2\n"
 "Content-Transfer-Encoding: 8-bit\n"
 
-#: ../build.c:24 ../install.c:221 ../install.c:377
+#: build.c:23 lib/rpminstall.c:222 lib/rpminstall.c:382
 #, fuzzy, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr "chyba: nelze otevøít %s%s/packages.rpm\n"
 
-#: ../build.c:34
+#: build.c:33
 #, fuzzy
-msgid "failed build prerequisites:\n"
+msgid "failed build dependencies:\n"
 msgstr "chybné závislosti:\n"
 
-#: ../build.c:83 ../build.c:96
+#: build.c:61
+#, fuzzy, c-format
+msgid "Unable to open spec file: %s\n"
+msgstr "Nelze otevøít %s pro ètení: %s."
+
+#: build.c:117 build.c:130
 #, fuzzy, c-format
 msgid "Failed to open tar pipe: %s\n"
 msgstr "nelze otevøít %s\n"
 
 #. Give up
-#: ../build.c:104
+#: build.c:138
 #, fuzzy, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "Nelze èíst %s: %s."
 
-#: ../build.c:129
+#: build.c:163
 #, fuzzy, c-format
 msgid "Failed to rename %s to %s: %s\n"
 msgstr "nelze odstranit %s: %s\n"
 
-#: ../build.c:167
+#: build.c:201
 #, fuzzy, c-format
 msgid "File is not a regular file: %s\n"
 msgstr "soubor není regulérní -- kontrola velikosti se vynechává\n"
 
-#: ../build.c:172
+#: build.c:207
 #, fuzzy, c-format
-msgid "Unable to open spec file: %s\n"
-msgstr "Nelze otevøít %s pro ètení: %s."
-
-#: ../build.c:180
-#, c-format
-msgid "File contains non-printable characters(%c): %s\n"
-msgstr ""
+msgid "File %s does not appear to be a specfile.\n"
+msgstr "nezdá se, ¾e by %s byl balíèek typu RPM\n"
 
 #. parse up the build operators
-#: ../build.c:233
+#: build.c:258
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr ""
 
-#: ../build.c:242
+#: build.c:267
 #, fuzzy, c-format
 msgid "Building for target %s\n"
 msgstr "chyba pøi hledání balíèku %s\n"
 
-#: ../build.c:286
+#: build.c:311
 msgid "buildroot already specified"
 msgstr ""
 
-#: ../build.c:292
+#: build.c:317
 msgid "--buildarch has been obsoleted.  Use the --target option instead.\n"
 msgstr ""
 
-#: ../build.c:296
+#: build.c:321
 msgid "--buildos has been obsoleted.  Use the --target option instead.\n"
 msgstr ""
 
-#: ../build.c:317
+#: build.c:342
 #, fuzzy
 msgid "override build architecture"
 msgstr "neovìøovat architekturu balíèku"
 
-#: ../build.c:319
+#: build.c:344
 #, fuzzy
 msgid "override build operating system"
 msgstr "neovìøovat operaèní systém balíèku"
 
-#: ../build.c:321
+#: build.c:346
 #, fuzzy
 msgid "override build root"
 msgstr "pou¾ít <adr> jako sestavovací koøen"
 
-#: ../build.c:323 ../rpm.c:458
+#: build.c:348 rpm.c:457
 msgid "remove build tree when done"
 msgstr "po dokonèení odstranit sestavovací strom"
 
-#: ../build.c:325
+#: build.c:350
 #, fuzzy
 msgid "do not execute any stages of the build"
 msgstr "nespou¹tìt ¾ádné etapy"
 
-#: ../build.c:327
+#: build.c:352
 msgid "do not accept I18N msgstr's from specfile"
 msgstr ""
 
-#: ../build.c:329
+#: build.c:354
 #, fuzzy
 msgid "remove sources when done"
 msgstr "po dokonèení odstranit zdroje a soubor .spec"
 
-#: ../build.c:331
+#: build.c:356
 #, fuzzy
 msgid "remove specfile when done"
 msgstr "po dokonèení odstranit zdroje a soubor .spec"
 
-#: ../build.c:333 ../rpm.c:456
+#: build.c:358 rpm.c:455
 msgid "skip straight to specified stage (only for c,i)"
 msgstr "pøeskoèit pøímo na urèenou etapu (pouze pro c,i)"
 
-#: ../build.c:335
+#: build.c:360
 msgid "override target platform"
 msgstr ""
 
-#: ../build.c:337
+#: build.c:362
 msgid "lookup I18N strings in specfile catalog"
 msgstr ""
 
-#: ../checksig.c:27 ../checksig.c:166
-#, c-format
-msgid "%s: Open failed\n"
-msgstr "%s: Chybné otevøení\n"
-
-#: ../checksig.c:31 ../checksig.c:171
-#, c-format
-msgid "%s: readLead failed\n"
-msgstr "%s: Chybné readLead\n"
-
-#: ../checksig.c:35
-#, c-format
-msgid "%s: Can't sign v1.0 RPM\n"
-msgstr "%s: RPM v1.0 nelze podepsat\n"
-
-#: ../checksig.c:39
-#, c-format
-msgid "%s: Can't re-sign v2.0 RPM\n"
-msgstr "%s: RPM v2.0 nelze podepsat znovu\n"
-
-#: ../checksig.c:43 ../checksig.c:181
-#, c-format
-msgid "%s: rpmReadSignature failed\n"
-msgstr "%s: Chybné rpmReadSignature\n"
-
-#: ../checksig.c:56 ../checksig.c:195
-msgid "Couldn't read the header/archive"
-msgstr "Nelze naèíst hlavièku nebo archiv"
-
-#: ../checksig.c:63
-msgid "Couldn't write header/archive to temp file"
-msgstr "Nelze zapsat hlavièku nebo archiv do doèasného souboru"
-
-#: ../build/pack.c:330 ../checksig.c:91
-#, c-format
-msgid "Generating signature: %d\n"
-msgstr "Probíhá generování podpisu: %d\n"
-
-#: ../checksig.c:114
-msgid "Couldn't read sigtarget"
-msgstr "Nelze naèíst cílpodpisu"
-
-#: ../checksig.c:123
-msgid "Couldn't write package"
-msgstr "Balíèek nelze zapsat"
-
-#: ../checksig.c:176
-#, c-format
-msgid "%s: No signature available (v1.0 RPM)\n"
-msgstr "%s: Podpis není dostupný (RPM v1.0)\n"
-
-#: ../checksig.c:186
-#, c-format
-msgid "%s: No signature available\n"
-msgstr "%s: Dostupný není ¾ádný podpis\n"
-
-#: ../checksig.c:202
-#, c-format
-msgid "Unable to write %s"
-msgstr "Nelze zapsat %s"
-
-#: ../checksig.c:328
-msgid "NOT OK"
-msgstr "NENÍ TO OK"
-
-#: ../checksig.c:329 ../checksig.c:343
-#, fuzzy
-msgid " (MISSING KEYS:"
-msgstr " (CHYBÍ KLÍÈE) "
-
-#: ../checksig.c:331 ../checksig.c:345
-msgid ") "
-msgstr ""
-
-#: ../checksig.c:332 ../checksig.c:346
-msgid " (UNTRUSTED KEYS:"
-msgstr ""
-
-#: ../checksig.c:334 ../checksig.c:348
-msgid ")"
-msgstr ""
-
-#: ../checksig.c:342
-msgid "OK"
-msgstr "OK"
-
-#: ../convertdb.c:38
+#: convertdb.c:39
 #, fuzzy
 msgid "RPM database already exists"
 msgstr "doèasná databáze %s ji¾ existuje"
 
-#: ../convertdb.c:43
+#: convertdb.c:44
 msgid "Old db is missing"
 msgstr ""
 
-#: ../convertdb.c:54
+#: convertdb.c:55
 msgid "failed to create RPM database /var/lib/rpm"
 msgstr ""
 
-#: ../convertdb.c:60
+#: convertdb.c:61
 msgid "Old db is corrupt"
 msgstr ""
 
-#: ../convertdb.c:69
+#: convertdb.c:70
 #, c-format
 msgid "oldrpmdbGetPackageInfo failed &olddb = %p olddb.packages = %p\n"
 msgstr ""
 
-#: ../convertdb.c:201
+#: convertdb.c:204
 msgid "rpmconvert: no arguments expected"
 msgstr ""
 
-#: ../convertdb.c:207
+#: convertdb.c:210
 msgid "rpmconvert 1.0 - converting database in /var/lib/rpm\n"
 msgstr ""
 
-#: ../ftp.c:642
-msgid "Success"
-msgstr ""
-
-#: ../ftp.c:645
-#, fuzzy
-msgid "Bad server response"
-msgstr "Chybná odezva serveru FTP"
-
-#: ../ftp.c:648
-#, fuzzy
-msgid "Server IO error"
-msgstr "V/V chyba FTP"
-
-#: ../ftp.c:651
-#, fuzzy
-msgid "Server timeout"
-msgstr "Promlka serveru FTP"
-
-#: ../ftp.c:654
-#, fuzzy
-msgid "Unable to lookup server host address"
-msgstr "Nelze vyhledat adresu hostitelského serveru FTP"
-
-#: ../ftp.c:657
-#, fuzzy
-msgid "Unable to lookup server host name"
-msgstr "Nelze vyhledat název hostitelského serveru FTP"
-
-#: ../ftp.c:660
-#, fuzzy
-msgid "Failed to connect to server"
-msgstr "K serveru FTP se nelze pøipojit"
-
-#: ../ftp.c:663
-#, fuzzy
-msgid "Failed to establish data connection to server"
-msgstr "Se serverem FTP nelze navázat datové spojení"
-
-#: ../ftp.c:666
-msgid "IO error to local file"
-msgstr "V/V chyba na místní soubor"
-
-#: ../ftp.c:669
-msgid "Error setting remote server to passive mode"
-msgstr "Chyba pøi nastavení vzdáleného serveru na pasivní re¾im"
-
-#: ../ftp.c:672
-msgid "File not found on server"
-msgstr "Soubor nebyl na serveru nalezen"
-
-#: ../ftp.c:675
-msgid "Abort in progress"
-msgstr ""
-
-#: ../ftp.c:679
-#, fuzzy
-msgid "Unknown or unexpected error"
-msgstr "Neznámá nebo neèekaná chyba FTP"
-
-#: ../install.c:127
-msgid "counting packages to install\n"
-msgstr "probíhá poèítání balíèkù pro instalaci\n"
-
-#: ../install.c:131
-#, c-format
-msgid "found %d packages\n"
-msgstr "nalezeno %d balíèkù\n"
-
-#: ../install.c:140
-msgid "looking for packages to download\n"
-msgstr "probíhá hledání balíèkù pro sta¾ení\n"
-
-#: ../install.c:151
-#, c-format
-msgid "Retrieving %s\n"
-msgstr "Probíhá naèítání %s\n"
-
-#: ../install.c:160
-#, c-format
-msgid " ... as %s\n"
-msgstr ""
-
-#: ../install.c:164
-#, fuzzy, c-format
-msgid "skipping %s - transfer failed - %s\n"
-msgstr "chyba: vynechává se %s - pøenos neúspì¹ný - %s\n"
-
-#: ../install.c:181
-#, c-format
-msgid "retrieved %d packages\n"
-msgstr "získalo se %d balíèkù\n"
-
-#: ../install.c:190 ../install.c:327
-#, fuzzy, c-format
-msgid "cannot open file %s\n"
-msgstr "nelze otevøít soubor %s: "
-
-#: ../install.c:202 ../lib/query.c:569
-#, c-format
-msgid "%s does not appear to be a RPM package\n"
-msgstr "nezdá se, ¾e by %s byl balíèek typu RPM\n"
-
-#: ../install.c:206 ../install.c:464
-#, fuzzy, c-format
-msgid "%s cannot be installed\n"
-msgstr "chyba: %s nelze nainstalovat\n"
-
-#: ../install.c:242
-#, fuzzy, c-format
-msgid "package %s is not relocateable\n"
-msgstr "balíèek %s není nainstalován\n"
-
-#: ../install.c:254
-#, fuzzy, c-format
-msgid "error reading from file %s\n"
-msgstr "chyba pøi vytváøení adresáøe %s: %s"
-
-#: ../install.c:257
-#, c-format
-msgid "file %s requires a newer version of RPM\n"
-msgstr ""
-
-#: ../install.c:272
-#, c-format
-msgid "found %d source and %d binary packages\n"
-msgstr "nalezeno %d zdrojových a %d binárních balíèkù\n"
-
-#: ../install.c:282
-msgid "failed dependencies:\n"
-msgstr "chybné závislosti:\n"
-
-#: ../install.c:300
-msgid "installing binary packages\n"
-msgstr "probíhá instalace binárních balíèkù\n"
-
-#: ../install.c:388 ../lib/query.c:717
-#, c-format
-msgid "package %s is not installed\n"
-msgstr "balíèek %s není nainstalován\n"
-
-#: ../install.c:392
-#, fuzzy, c-format
-msgid "searching for package %s\n"
-msgstr "chyba pøi hledání balíèku %s\n"
-
-#: ../install.c:401
-#, c-format
-msgid "\"%s\" specifies multiple packages\n"
-msgstr "\"%s\" specifikuje více balíèkù\n"
-
-#: ../install.c:427
-msgid "removing these packages would break dependencies:\n"
-msgstr "odstranìní tìchto balíèkù by poru¹ilo závislosti:\n"
-
-#: ../install.c:454
-#, fuzzy, c-format
-msgid "cannot open %s\n"
-msgstr "chyba: nelze otevøít %s\n"
-
-#: ../install.c:459
-#, c-format
-msgid "Installing %s\n"
-msgstr "Probíhá instalace %s\n"
-
-#: ../install.c:503
-#, c-format
-msgid " is needed by %s-%s-%s\n"
-msgstr " je nutné pro %s-%s-%s\n"
-
-#: ../install.c:506
-#, c-format
-msgid " conflicts with %s-%s-%s\n"
-msgstr " koliduje s %s-%s-%s\n"
-
-#: ../oldrpmdb.c:454
+#: oldrpmdb.c:454
 #, fuzzy, c-format
 msgid "pulling %s from database\n"
 msgstr "otevírá se stará databáze\n"
 
-#: ../oldrpmdb.c:461
+#: oldrpmdb.c:461
 #, fuzzy
 msgid "package not found in database"
 msgstr "balíèek %s nenalezen v %s"
 
-#: ../oldrpmdb.c:522
+#: oldrpmdb.c:522
 msgid "no copyright!\n"
 msgstr ""
 
-#: ../rpm.c:160
+#: rpm.c:159
 #, c-format
 msgid "rpm: %s\n"
 msgstr "rpm: %s\n"
 
-#: ../rpm.c:171
+#: rpm.c:170
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM verze %s\n"
 
-#: ../rpm.c:175
+#: rpm.c:174
 msgid "Copyright (C) 1998 - Red Hat Software"
 msgstr "Copyright (c) 1998 - Red Hat Software"
 
-#: ../rpm.c:176
-msgid ""
-"This may be freely redistributed under the terms of the GNU GPL"
-msgstr ""
-"Tento program lze volnì roz¹iøovat podle podmínek GNU GPL."
+#: rpm.c:175
+msgid "This may be freely redistributed under the terms of the GNU GPL"
+msgstr "Tento program lze volnì roz¹iøovat podle podmínek GNU GPL."
 
-#: ../rpm.c:185
+#: rpm.c:183
 msgid "usage: rpm {--help}"
 msgstr "pou¾ití: rpm {--help}"
 
-#: ../rpm.c:186
+#: rpm.c:184
 msgid "       rpm {--version}"
 msgstr "       rpm {--version}"
 
-#: ../rpm.c:187
+#: rpm.c:185
 msgid "       rpm {--initdb}   [--dbpath <dir>]"
 msgstr "       rpm {--initdb}   [--dbpath <adr>]"
 
-#: ../rpm.c:188
+#: rpm.c:186
 msgid ""
 "       rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 "       rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
 
-#: ../rpm.c:189
+#: rpm.c:187
 msgid "                        [--replacepkgs] [--replacefiles] [--root <dir>]"
 msgstr ""
 "                        [--replacepkgs] [--replacefiles] [--root <adr>]"
 
-#: ../rpm.c:190
+#: rpm.c:188
 msgid "                        [--excludedocs] [--includedocs] [--noscripts]"
 msgstr "                        [--excludedocs] [--includedocs] [--noscripts]"
 
-#: ../rpm.c:191
+#: rpm.c:189
 msgid ""
 "                        [--rcfile <file>] [--ignorearch] [--dbpath <dir>]"
 msgstr ""
 "                        [--rcfile <soubor>] [--ignorearch] [--dbpath <adr>]"
 
-#: ../rpm.c:192
+#: rpm.c:190
 msgid ""
 "                        [--prefix <dir>] [--ignoreos] [--nodeps] [--allfiles]"
 msgstr ""
 "                        [--prefix <adr>] [--ignoreos] [--nodeps] [--allfiles]"
 
-#: ../rpm.c:193
+#: rpm.c:191
 msgid ""
 "                        [--ftpproxy <host>] [--ftpport <port>] [--justdb]"
 msgstr ""
 "                        [--ftpproxy <hostitel>] [--ftpport <port>] [--justdb]"
 
-#: ../rpm.c:194 ../rpm.c:203 ../rpm.c:212
+#: rpm.c:192 rpm.c:201 rpm.c:210
 #, fuzzy
 msgid "                        [--httpproxy <host>] [--httpport <port>] "
 msgstr "                        [--ftpproxy <hostitel>] [--ftpport <port>]"
 
-#: ../rpm.c:195 ../rpm.c:205
+#: rpm.c:193 rpm.c:203
 msgid "                        [--noorder] [--relocate oldpath=newpath]"
 msgstr "                        [--noorder] [--relocate starácesta=novácesta]"
 
-#: ../rpm.c:196
+#: rpm.c:194
 #, fuzzy
 msgid ""
 "                        [--badreloc] [--notriggers] [--excludepath <path>]"
@@ -515,369 +252,374 @@ msgstr ""
 "                        [--badreloc] [--notriggers] soubor1.rpm ... "
 "souborN.rpm"
 
-#: ../rpm.c:197
+#: rpm.c:195
 #, fuzzy
 msgid "                        [--ignoresize] file1.rpm ... fileN.rpm"
 msgstr "                        [--badreloc] soubor1.rpm ... souborN.rpm"
 
-#: ../rpm.c:198
+#: rpm.c:196
 msgid ""
 "       rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 "       rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]"
 
-#: ../rpm.c:199
+#: rpm.c:197
 msgid "                        [--oldpackage] [--root <dir>] [--noscripts]"
 msgstr "                        [--oldpackage] [--root <adr>] [--noscripts]"
 
-#: ../rpm.c:200
+#: rpm.c:198
 msgid ""
 "                        [--excludedocs] [--includedocs] [--rcfile <file>]"
 msgstr ""
 "                        [--excludedocs] [--includedocs] [--rcfile <soubor>]"
 
-#: ../rpm.c:201
+#: rpm.c:199
 msgid ""
 "                        [--ignorearch]  [--dbpath <dir>] [--prefix <dir>] "
 msgstr ""
 "                        [--ignorearch]  [--dbpath <adr>] [--prefix <adr>] "
 
-#: ../rpm.c:202
+#: rpm.c:200
 msgid "                        [--ftpproxy <host>] [--ftpport <port>]"
 msgstr "                        [--ftpproxy <hostitel>] [--ftpport <port>]"
 
-#: ../rpm.c:204
+#: rpm.c:202
 msgid "                        [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
 msgstr ""
 "                        [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
 
-#: ../rpm.c:206
+#: rpm.c:204
 #, fuzzy
 msgid ""
 "                        [--badreloc] [--excludepath <path>] [--ignoresize]"
 msgstr "                        [--changelog] [--dbpath <adr>] [cíle]"
 
-#: ../rpm.c:207
+#: rpm.c:205
 #, fuzzy
 msgid "                        file1.rpm ... fileN.rpm"
 msgstr "                        [--badreloc] soubor1.rpm ... souborN.rpm"
 
-#: ../rpm.c:208
+#: rpm.c:206
 msgid "       rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]"
 msgstr "       rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]"
 
-#: ../rpm.c:209
+#: rpm.c:207
 msgid "                        [--scripts] [--root <dir>] [--rcfile <file>]"
 msgstr "                        [--scripts] [--root <adr>] [--rcfile <soubor>]"
 
-#: ../rpm.c:210
+#: rpm.c:208
 msgid "                        [--whatprovides] [--whatrequires] [--requires]"
 msgstr "                        [--whatprovides] [--whatrequires] [--requires]"
 
-#: ../rpm.c:211
+#: rpm.c:209
 msgid ""
 "                        [--triggeredby] [--ftpuseport] [--ftpproxy <host>]"
 msgstr ""
 "                        [--triggeredby] [--ftpuseport] [--ftpproxy "
 "<hostitel>]"
 
-#: ../rpm.c:213
+#: rpm.c:211
 msgid ""
 "                        [--ftpport <port>] [--provides] [--triggers] [--dump]"
 msgstr ""
 "                        [--ftpport <port>] [--provides] [--triggers] [--dump]"
 
-#: ../rpm.c:214
+#: rpm.c:212
 msgid "                        [--changelog] [--dbpath <dir>] [targets]"
 msgstr "                        [--changelog] [--dbpath <adr>] [cíle]"
 
-#: ../rpm.c:215
+#: rpm.c:213
 msgid "       rpm {--verify -V -y} [-afpg] [--root <dir>] [--rcfile <file>]"
 msgstr "       rpm {--verify -V -y} [-afpg] [--root <adr>] [--rcfile <soubor>]"
 
-#: ../rpm.c:216
+#: rpm.c:214
 msgid ""
 "                        [--dbpath <dir>] [--nodeps] [--nofiles] [--noscripts]"
 msgstr ""
 "                        [--dbpath <adr>] [--nodeps] [--nofiles] [--noscripts]"
 
-#: ../rpm.c:217
+#: rpm.c:215
 msgid "                        [--nomd5] [targets]"
 msgstr "                        [--nomd5] [cíle]"
 
-#: ../rpm.c:218
+#: rpm.c:216
 msgid "       rpm {--setperms} [-afpg] [target]"
 msgstr "       rpm {--setperms} [-afpg] [cíl]"
 
-#: ../rpm.c:219
+#: rpm.c:217
 msgid "       rpm {--setugids} [-afpg] [target]"
 msgstr "       rpm {--setugids} [-afpg] [cíl]"
 
-#: ../rpm.c:220
+#: rpm.c:218
+#, fuzzy
+msgid "       rpm {--freshen -F} file1.rpm ... fileN.rpm"
+msgstr "                        [--badreloc] soubor1.rpm ... souborN.rpm"
+
+#: rpm.c:219
 msgid "       rpm {--erase -e} [--root <dir>] [--noscripts] [--rcfile <file>]"
 msgstr ""
 "       rpm {--erase -e} [--root <adr>] [--noscripts] [--rcfile <soubor>]"
 
-#: ../rpm.c:221
+#: rpm.c:220
 msgid "                        [--dbpath <dir>] [--nodeps] [--allmatches]"
 msgstr "                        [--dbpath <adr>] [--nodeps] [--allmatches]"
 
-#: ../rpm.c:222
+#: rpm.c:221
 msgid ""
 "                        [--justdb] [--notriggers] rpackage1 ... packageN"
 msgstr ""
 "                        [--justdb] [--notriggers] rbalíèek1 ... balíèekN"
 
-#: ../rpm.c:223
+#: rpm.c:222
 msgid ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile  <file>]"
 msgstr ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile "
 "<soubor>]"
 
-#: ../rpm.c:224
+#: rpm.c:223
 #, fuzzy
 msgid "                        [--sign] [--nobuild] [--timecheck <s>] ]"
 msgstr ""
 "                        [--sign] [--test] [--timecheck <s>] [--buildos <os>]"
 
-#: ../rpm.c:225
+#: rpm.c:224
 #, fuzzy
 msgid "                        [--target=platform1[,platform2...]]"
 msgstr "                        [--buildarch <arch>] [--rmsource] soubor.spec"
 
-#: ../rpm.c:226
+#: rpm.c:225
 #, fuzzy
 msgid "                        [--rmsource] specfile"
 msgstr "                        [--buildarch <arch>] [--rmsource] soubor.spec"
 
-#: ../rpm.c:227
+#: rpm.c:226
 msgid "       rpm {--rmsource} [--rcfile <file>] [-v] specfile"
 msgstr "       rpm {--rmsource} [--rcfile <soubor>] [-v] soubor.spec"
 
-#: ../rpm.c:228
+#: rpm.c:227
 msgid ""
 "       rpm {--rebuild} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 "       rpm {--rebuild} [--rcfile <soubor>] [-v] zdroj1.rpm ... zdrojN.rpm"
 
-#: ../rpm.c:229
+#: rpm.c:228
 msgid ""
 "       rpm {--recompile} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 "       rpm {--recompile} [--rcfile <soubor>] [-v] zdroj1.rpm ... zdrojN.rpm"
 
-#: ../rpm.c:230
+#: rpm.c:229
 msgid "       rpm {--resign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr ""
 "       rpm {--resign} [--rcfile <soubor>] balíèek1 balíèek2 ... balíèekN"
 
-#: ../rpm.c:231
+#: rpm.c:230
 msgid "       rpm {--addsign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr ""
 "       rpm {--addsign} [--rcfile <soubor>] balíèek1 balíèek2 ... balíèekN"
 
-#: ../rpm.c:232
+#: rpm.c:231
 #, fuzzy
 msgid ""
 "       rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile <file>]"
 msgstr "       rpm {--checksig -K} [--nopgp] [--nomd5] [--rcfile <soubor>]"
 
-#: ../rpm.c:233
+#: rpm.c:232
 msgid "                           package1 ... packageN"
 msgstr "                           balíèek1 ... balíèekN"
 
-#: ../rpm.c:234
+#: rpm.c:233
 msgid "       rpm {--rebuilddb} [--rcfile <file>] [--dbpath <dir>]"
 msgstr "       rpm {--rebuilddb} [--rcfile <soubor>] [--dbpath <adr>]"
 
-#: ../rpm.c:235
+#: rpm.c:234
 msgid "       rpm {--querytags}"
 msgstr "       rpm {--querytags}"
 
-#: ../rpm.c:269
+#: rpm.c:268
 msgid "usage:"
 msgstr "pou¾ití:"
 
-#: ../rpm.c:271
+#: rpm.c:270
 msgid "print this message"
 msgstr "vytisknout tuto zprávu"
 
-#: ../rpm.c:273
+#: rpm.c:272
 msgid "print the version of rpm being used"
 msgstr "vytisknout pou¾ívanou verzi rpm"
 
-#: ../rpm.c:274
+#: rpm.c:273
 msgid "   all modes support the following arguments:"
 msgstr "   v¹echny re¾imy podporují tyto argumenty:"
 
-#: ../rpm.c:275
+#: rpm.c:274
 msgid "      --rcfile <file>     "
 msgstr "      --rcfile <soubor>     "
 
-#: ../rpm.c:276
+#: rpm.c:275
 msgid "use <file> instead of /etc/rpmrc and $HOME/.rpmrc"
 msgstr "pou¾ijte <soubor> místo /etc/rpmrc a $HOME/.rpmrc"
 
-#: ../rpm.c:278
+#: rpm.c:277
 msgid "be a little more verbose"
 msgstr "o nìco popisnìj¹í re¾im"
 
-#: ../rpm.c:280
+#: rpm.c:279
 msgid "be incredibly verbose (for debugging)"
 msgstr "velmi popisný re¾im (pro odlaïování)"
 
-#: ../rpm.c:282
+#: rpm.c:281
 msgid "query mode"
 msgstr "dotazovací re¾im"
 
-#: ../rpm.c:283 ../rpm.c:345 ../rpm.c:409 ../rpm.c:437
+#: rpm.c:282 rpm.c:344 rpm.c:408 rpm.c:436
 msgid "      --root <dir>        "
 msgstr "      --root <adr>        "
 
-#: ../rpm.c:284 ../rpm.c:346 ../rpm.c:410 ../rpm.c:438 ../rpm.c:500
+#: rpm.c:283 rpm.c:345 rpm.c:409 rpm.c:437 rpm.c:499
 msgid "use <dir> as the top level directory"
 msgstr "pou¾ít <adr> jako adresáø vrcholové úrovnì"
 
-#: ../rpm.c:285 ../rpm.c:343 ../rpm.c:373 ../rpm.c:425 ../rpm.c:497
+#: rpm.c:284 rpm.c:342 rpm.c:372 rpm.c:424 rpm.c:496
 msgid "      --dbpath <dir>      "
 msgstr "      --dbpath <adr>      "
 
-#: ../rpm.c:286 ../rpm.c:344 ../rpm.c:374 ../rpm.c:426 ../rpm.c:498
+#: rpm.c:285 rpm.c:343 rpm.c:373 rpm.c:425 rpm.c:497
 msgid "use <dir> as the directory for the database"
 msgstr "pou¾ít <adr> jako adresáø pro databázi"
 
-#: ../rpm.c:287
+#: rpm.c:286
 msgid "      --queryformat <qfmt>"
 msgstr "      --queryformat <qfmt>"
 
-#: ../rpm.c:288
+#: rpm.c:287
 msgid "use <qfmt> as the header format (implies -i)"
 msgstr "pou¾ít <qfmt> jako hlavièkový formát (implikuje -i)"
 
-#: ../rpm.c:289
+#: rpm.c:288
 msgid ""
 "   install, upgrade and query (with -p) allow ftp URL's to be used in place"
 msgstr ""
 "   instalace, aktualizace a dotazování (s -p) umo¾òují pou¾ití URL-adres ftp"
 
-#: ../rpm.c:290
+#: rpm.c:289
 msgid "   of file names as well as the following options:"
 msgstr "   místo názvù souborù vèetnì následujících voleb:"
 
-#: ../rpm.c:291
+#: rpm.c:290
 msgid "      --ftpproxy <host>   "
 msgstr "      --ftpproxy <hostitel> "
 
-#: ../rpm.c:292
+#: rpm.c:291
 msgid "hostname or IP of ftp proxy"
 msgstr "název hostitele èi IP pro ftp-proxy"
 
-#: ../rpm.c:293
+#: rpm.c:292
 msgid "      --ftpport <port>    "
 msgstr "      --ftpport <port>    "
 
-#: ../rpm.c:294
+#: rpm.c:293
 msgid "port number of ftp server (or proxy)"
 msgstr "èíslo portu serveru ftp (nebo proxy)"
 
-#: ../rpm.c:295
+#: rpm.c:294
 #, fuzzy
 msgid "      --httpproxy <host>   "
 msgstr "      --ftpproxy <hostitel> "
 
-#: ../rpm.c:296
+#: rpm.c:295
 #, fuzzy
 msgid "hostname or IP of http proxy"
 msgstr "název hostitele èi IP pro ftp-proxy"
 
-#: ../rpm.c:297
+#: rpm.c:296
 #, fuzzy
 msgid "      --httpport <port>    "
 msgstr "      --ftpport <port>    "
 
-#: ../rpm.c:298
+#: rpm.c:297
 #, fuzzy
 msgid "port number of http server (or proxy)"
 msgstr "èíslo portu serveru ftp (nebo proxy)"
 
-#: ../rpm.c:299
+#: rpm.c:298
 msgid "      Package specification options:"
 msgstr "      Volby pro specifikaci balíèku:"
 
-#: ../rpm.c:301
+#: rpm.c:300
 msgid "query all packages"
 msgstr "dotazovat v¹echny balíèky"
 
-#: ../rpm.c:302
+#: rpm.c:301
 msgid "        -f <file>+        "
 msgstr "        -f <soubor>+      "
 
-#: ../rpm.c:303
+#: rpm.c:302
 msgid "query package owning <file>"
 msgstr "dotazy na balíèek vlastnící <soubor>"
 
-#: ../rpm.c:304
+#: rpm.c:303
 msgid "        -p <packagefile>+ "
 msgstr "        -p <souborbalíku>+  "
 
-#: ../rpm.c:305
+#: rpm.c:304
 msgid "query (uninstalled) package <packagefile>"
 msgstr "dotazovat (nenainstalovaný) balíèek <souborbalíku>"
 
-#: ../rpm.c:306
+#: rpm.c:305
 msgid "        --triggeredby <pkg>"
 msgstr "        --triggeredby <balík>"
 
-#: ../rpm.c:307
+#: rpm.c:306
 msgid "query packages triggered by <pkg>"
 msgstr "dotazy na balíèky aktivované <balíkem>"
 
-#: ../rpm.c:308
+#: rpm.c:307
 msgid "        --whatprovides <cap>"
 msgstr "        --whatprovides <sch>"
 
-#: ../rpm.c:309
+#: rpm.c:308
 msgid "query packages which provide <cap> capability"
 msgstr "dotazovat balíèky poskytující schopnost <sch>"
 
-#: ../rpm.c:310
+#: rpm.c:309
 msgid "        --whatrequires <cap>"
 msgstr "        --whatrequires <sch>"
 
-#: ../rpm.c:311
+#: rpm.c:310
 msgid "query packages which require <cap> capability"
 msgstr "dotazovat balíèky vy¾adující schopnost <sch>"
 
-#: ../rpm.c:312
+#: rpm.c:311
 msgid "      Information selection options:"
 msgstr "      Volby pro vybìr informací:"
 
-#: ../rpm.c:314
+#: rpm.c:313
 msgid "display package information"
 msgstr "zobrazit informace o balíèku"
 
-#: ../rpm.c:316
+#: rpm.c:315
 msgid "display the package's change log"
 msgstr "zobrazit protokol o zmìnách balíèku"
 
-#: ../rpm.c:318
+#: rpm.c:317
 msgid "display package file list"
 msgstr "zobrazit seznam souborù balíèkù"
 
-#: ../rpm.c:320
+#: rpm.c:319
 msgid "show file states (implies -l)"
 msgstr "zobrazit stavy souborù (implikuje -l)"
 
-#: ../rpm.c:322
+#: rpm.c:321
 msgid "list only documentation files (implies -l)"
 msgstr "uvést pouze dokumentaèní soubory (implikuje -l)"
 
-#: ../rpm.c:324
+#: rpm.c:323
 msgid "list only configuration files (implies -l)"
 msgstr "uvést pouze konfiguraèní soubory (implikuje -l)"
 
-#: ../rpm.c:326
+#: rpm.c:325
 msgid ""
 "show all verifiable information for each file (must be used with -l, -c, or "
 "-d)"
@@ -885,35 +627,35 @@ msgstr ""
 "zobrazit v¹echny ovìøitelné údaje pro ka¾dý soubor (musí se pou¾ít s -l, -c "
 "nebo -d)"
 
-#: ../rpm.c:328
+#: rpm.c:327
 msgid "list capabilities package provides"
 msgstr "uvést schopnosti poskytované balíèkem"
 
-#: ../rpm.c:329
+#: rpm.c:328
 msgid "        --requires"
 msgstr "        --requires"
 
-#: ../rpm.c:331
+#: rpm.c:330
 msgid "list package dependencies"
 msgstr "uvést závislosti balíèkù"
 
-#: ../rpm.c:333
+#: rpm.c:332
 msgid "print the various [un]install scripts"
 msgstr "vytisknout rùzné [de]instalaèní skripty"
 
-#: ../rpm.c:335
+#: rpm.c:334
 msgid "show the trigger scripts contained in the package"
 msgstr "zobrazit aktivaèní skripty obsa¾ené v balíèku"
 
-#: ../rpm.c:339
+#: rpm.c:338
 msgid "    --pipe <cmd>          "
 msgstr "    --pipe <pøíkaz>       "
 
-#: ../rpm.c:340
+#: rpm.c:339
 msgid "send stdout to <cmd>"
 msgstr "odeslat stdout do <pøíkazu>"
 
-#: ../rpm.c:342
+#: rpm.c:341
 msgid ""
 "verify a package installation using the same same package specification "
 "options as -q"
@@ -921,19 +663,19 @@ msgstr ""
 "ovìøit instalaci balíèku pou¾itím stejných voleb pro specifikaci balíèku, "
 "jako pro -q"
 
-#: ../rpm.c:348 ../rpm.c:396 ../rpm.c:430
+#: rpm.c:347 rpm.c:395 rpm.c:429
 msgid "do not verify package dependencies"
 msgstr "neovìøovat závislosti balíèkù"
 
-#: ../rpm.c:350
+#: rpm.c:349
 msgid "do not verify file md5 checksums"
 msgstr "neovìøovat kontrolní souèty souborù md5"
 
-#: ../rpm.c:352
+#: rpm.c:351
 msgid "do not verify file attributes"
 msgstr "neovìøovat atributy souborù"
 
-#: ../rpm.c:355
+#: rpm.c:354
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
@@ -941,7 +683,7 @@ msgstr ""
 "nastavit oprávnìní souborù dle údajù v databázi balíèkù pomocí stejných "
 "voleb pro specifikaci balíèku, jako pro -q"
 
-#: ../rpm.c:358
+#: rpm.c:357
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
@@ -949,126 +691,126 @@ msgstr ""
 "nastavit vlastníka a skupinu souborù dle údajù v databázi balíèkù pomocí "
 "stejných voleb pro specifikaci balíèku, jako pro -q"
 
-#: ../rpm.c:362
+#: rpm.c:361
 msgid "    --install <packagefile>"
 msgstr "    --install <souborbalíku>"
 
-#: ../rpm.c:363
+#: rpm.c:362
 msgid "    -i <packagefile>      "
 msgstr "    -i <souborbalíku>     "
 
-#: ../rpm.c:364
+#: rpm.c:363
 msgid "install package"
 msgstr "nainstalovat balíèek"
 
-#: ../rpm.c:365
+#: rpm.c:364
 #, fuzzy
 msgid "      --excludepath <path>"
 msgstr "      --relocate <starácesta>=<novácesta>"
 
-#: ../rpm.c:366
+#: rpm.c:365
 #, fuzzy
 msgid "skip files in path <path>"
 msgstr "soubor %s je sdílen\n"
 
-#: ../rpm.c:367
+#: rpm.c:366
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr "      --relocate <starácesta>=<novácesta>"
 
-#: ../rpm.c:368
+#: rpm.c:367
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr "pøemístit soubory ze <starécesty> na <novoucestu>"
 
-#: ../rpm.c:370
+#: rpm.c:369
 msgid "relocate files even though the package doesn't allow it"
 msgstr "pøemístit soubory, i kdy¾ to balíèek nedovoluje"
 
-#: ../rpm.c:371
+#: rpm.c:370
 msgid "      --prefix <dir>      "
 msgstr "      --prefix <adr>      "
 
-#: ../rpm.c:372
+#: rpm.c:371
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "pøemístit soubory do <adr>, jsou-li pøemístitelné"
 
-#: ../rpm.c:376
+#: rpm.c:375
 msgid "do not install documentation"
 msgstr "neinstalovat dokumentaci"
 
-#: ../rpm.c:378
+#: rpm.c:377
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "zkratka pro --replacepkgs --replacefiles"
 
-#: ../rpm.c:381
+#: rpm.c:380
 msgid "print hash marks as package installs (good with -v)"
 msgstr "bìhem instalace balíèku zobrazit dvojité køí¾ky (dobré s -v)"
 
-#: ../rpm.c:383
+#: rpm.c:382
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "nainstalovat v¹echny soubory; i konfigurace, které by se jinak mohly vynechat"
 
-#: ../rpm.c:386
+#: rpm.c:385
 msgid "don't verify package architecture"
 msgstr "neovìøovat architekturu balíèku"
 
-#: ../rpm.c:388
+#: rpm.c:387
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: ../rpm.c:390
+#: rpm.c:389
 msgid "don't verify package operating system"
 msgstr "neovìøovat operaèní systém balíèku"
 
-#: ../rpm.c:392
+#: rpm.c:391
 msgid "install documentation"
 msgstr "nainstalovat dokumentaci"
 
-#: ../rpm.c:394 ../rpm.c:428
+#: rpm.c:393 rpm.c:427
 msgid "update the database, but do not modify the filesystem"
 msgstr "inovovat databázi, ale neupravovat souborový systém"
 
-#: ../rpm.c:398 ../rpm.c:432
+#: rpm.c:397 rpm.c:431
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "pro vyøe¹ení závislostí nemìnit poøadí instalace balíèkù"
 
-#: ../rpm.c:400
+#: rpm.c:399
 msgid "don't execute any installation scripts"
 msgstr "nespou¹tìt ¾ádné instalaèní skripty"
 
-#: ../rpm.c:402 ../rpm.c:436
+#: rpm.c:401 rpm.c:435
 msgid "don't execute any scripts triggered by this package"
 msgstr "nespou¹tìt ¾ádné skripty aktivované tímto balíèkem"
 
-#: ../rpm.c:404
+#: rpm.c:403
 msgid "print percentages as package installs"
 msgstr "bìhem instalace balíèku zobrazit procenta"
 
-#: ../rpm.c:406
+#: rpm.c:405
 msgid "install even if the package replaces installed files"
 msgstr "instalovat, i kdy¾ balíèek nahradí nainstalované soubory"
 
-#: ../rpm.c:408
+#: rpm.c:407
 msgid "reinstall if the package is already present"
 msgstr "pøeinstalovat, i kdy¾ je ji¾ balíèek pøítomen"
 
-#: ../rpm.c:412
+#: rpm.c:411
 msgid "don't install, but tell if it would work or not"
 msgstr "neinstalovat ale sdìlit, zda-li by to fungovalo èi nikoli"
 
-#: ../rpm.c:414
+#: rpm.c:413
 msgid "    --upgrade <packagefile>"
 msgstr "    --upgrade <souborbalíku>"
 
-#: ../rpm.c:415
+#: rpm.c:414
 msgid "    -U <packagefile>      "
 msgstr "    -U <souborbalíku>      "
 
-#: ../rpm.c:416
+#: rpm.c:415
 msgid "upgrade package (same options as --install, plus)"
 msgstr "aktualizovat balíèek (stejné mo¾nosti jako --install, plus)"
 
-#: ../rpm.c:418
+#: rpm.c:417
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1076,15 +818,15 @@ msgstr ""
 "aktualizovat na starou verzi balíèku (--force to dìlá pøi aktualizacích "
 "automaticky)"
 
-#: ../rpm.c:420
+#: rpm.c:419
 msgid "    --erase <package>"
 msgstr "    --erase <balíèek>"
 
-#: ../rpm.c:422
+#: rpm.c:421
 msgid "erase (uninstall) package"
 msgstr "smazat (deinstalovat) balíèek"
 
-#: ../rpm.c:424
+#: rpm.c:423
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1092,90 +834,90 @@ msgstr ""
 "odstranit v¹echny balíèky odpovídající <balíèku> (obvykle se generuje chyba, "
 "specifikuje-li <balíèek> více balíèkù)"
 
-#: ../rpm.c:434
+#: rpm.c:433
 msgid "do not execute any package specific scripts"
 msgstr "nespou¹tìt ¾ádné skripty urèené pro balíèky"
 
-#: ../rpm.c:440
+#: rpm.c:439
 msgid "    -b<stage> <spec>      "
 msgstr "    -b<etapa> <.spec>     "
 
-#: ../rpm.c:441
+#: rpm.c:440
 msgid "    -t<stage> <tarball>   "
 msgstr "    -t<etapa> <klubkotar> "
 
-#: ../rpm.c:442
+#: rpm.c:441
 msgid "build package, where <stage> is one of:"
 msgstr "sestavit balíèek, kde <etapa> je jedna z:"
 
-#: ../rpm.c:444
+#: rpm.c:443
 msgid "prep (unpack sources and apply patches)"
 msgstr "pøíprava (rozbalí zdroje a aplikuje záplaty)"
 
-#: ../rpm.c:446
+#: rpm.c:445
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr "kontrola seznamù (provede zbì¾né kontroly %files)"
 
-#: ../rpm.c:448
+#: rpm.c:447
 msgid "compile (prep and compile)"
 msgstr "kompilace (pøíprava a kompilace)"
 
-#: ../rpm.c:450
+#: rpm.c:449
 msgid "install (prep, compile, install)"
 msgstr "instalace (pøíprava, kompilace a instalace)"
 
-#: ../rpm.c:452
+#: rpm.c:451
 msgid "binary package (prep, compile, install, package)"
 msgstr "binární balíèek (pøíprava, kompilace, instalace, zabalení)"
 
-#: ../rpm.c:454
+#: rpm.c:453
 msgid "bin/src package (prep, compile, install, package)"
 msgstr "balíèek bin/src (pøíprava, kompilace, instalace, zabalení)"
 
-#: ../rpm.c:460
+#: rpm.c:459
 msgid "remove sources and spec file when done"
 msgstr "po dokonèení odstranit zdroje a soubor .spec"
 
-#: ../rpm.c:462
+#: rpm.c:461
 #, fuzzy
 msgid "generate PGP/GPG signature"
 msgstr "generovat podpis PGP"
 
-#: ../rpm.c:463
+#: rpm.c:462
 msgid "      --buildroot <dir>   "
 msgstr "      --buildroot <adr>   "
 
-#: ../rpm.c:464
+#: rpm.c:463
 msgid "use <dir> as the build root"
 msgstr "pou¾ít <adr> jako sestavovací koøen"
 
-#: ../rpm.c:465
+#: rpm.c:464
 #, fuzzy
 msgid "      --target=<platform>+"
 msgstr "      --queryformat <qfmt>"
 
-#: ../rpm.c:466
+#: rpm.c:465
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: ../rpm.c:468
+#: rpm.c:467
 msgid "do not execute any stages"
 msgstr "nespou¹tìt ¾ádné etapy"
 
-#: ../rpm.c:469
+#: rpm.c:468
 msgid "      --timecheck <secs>  "
 msgstr "      --timecheck <s>     "
 
-#: ../rpm.c:470
+#: rpm.c:469
 msgid "set the time check to <secs> seconds (0 disables)"
 msgstr "nastavit èasovou kontrolu na <s> sekund (0 ji deaktivuje)"
 
-#: ../rpm.c:472
+#: rpm.c:471
 msgid "    --rebuild <src_pkg>   "
 msgstr "    --rebuild <zdrojbalík>"
 
-#: ../rpm.c:473
+#: rpm.c:472
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -1183,225 +925,229 @@ msgstr ""
 "instalovat zdrojový balíèek, sestavit binární balíèek a odstranit soubor "
 ".spec, zdroje, záplaty i ikony."
 
-#: ../rpm.c:474
+#: rpm.c:473
 msgid "    --rmsource <spec>     "
 msgstr "    --rmsource <.spec>    "
 
-#: ../rpm.c:475
+#: rpm.c:474
 msgid "remove sources and spec file"
 msgstr "odstranit zdroje a soubor .spec"
 
-#: ../rpm.c:476
+#: rpm.c:475
 msgid "    --recompile <src_pkg> "
 msgstr "    --recompile <zdrojbal>"
 
-#: ../rpm.c:477
+#: rpm.c:476
 msgid "like --rebuild, but don't build any package"
 msgstr "jako --rebuild, ale nesestavovat ¾ádné balíèky"
 
-#: ../rpm.c:478
+#: rpm.c:477
 msgid "    --resign <pkg>+       "
 msgstr "    --resign <balík>+     "
 
-#: ../rpm.c:479
+#: rpm.c:478
 msgid "sign a package (discard current signature)"
 msgstr "podepsat balíèek (zahodit aktuální podpis)"
 
-#: ../rpm.c:480
+#: rpm.c:479
 msgid "    --addsign <pkg>+      "
 msgstr "    --addsign <balík>+    "
 
-#: ../rpm.c:481
+#: rpm.c:480
 msgid "add a signature to a package"
 msgstr "pøidat k balíèku podpis"
 
-#: ../rpm.c:483
+#: rpm.c:482
 msgid "    --checksig <pkg>+     "
 msgstr "    --checksig <balík>+   "
 
-#: ../rpm.c:484
+#: rpm.c:483
 msgid "verify package signature"
 msgstr "ovìøit podpis balíèku"
 
-#: ../rpm.c:486
+#: rpm.c:485
 msgid "skip any PGP signatures"
 msgstr "vynechat pøípadné podpisy PGP"
 
-#: ../rpm.c:488
+#: rpm.c:487
 #, fuzzy
 msgid "skip any GPG signatures"
 msgstr "vynechat pøípadné podpisy PGP"
 
-#: ../rpm.c:490
+#: rpm.c:489
 msgid "skip any MD5 signatures"
 msgstr "vynechat pøípadné podpisy MD5"
 
-#: ../rpm.c:492
+#: rpm.c:491
 msgid "list the tags that can be used in a query format"
 msgstr "uvést pøíznaky, které lze pou¾ít v dotazovacím formátu"
 
-#: ../rpm.c:494
+#: rpm.c:493
 msgid "make sure a valid database exists"
 msgstr "zajistit, aby existovala platná databáze"
 
-#: ../rpm.c:496
+#: rpm.c:495
 msgid "rebuild database from existing database"
 msgstr "pøestavit databázi z existující databáze"
 
-#: ../rpm.c:631 ../rpm.c:637 ../rpm.c:644 ../rpm.c:650 ../rpm.c:659
-#: ../rpm.c:666 ../rpm.c:713 ../rpm.c:719 ../rpm.c:779 ../rpm.c:787
-#: ../rpm.c:794 ../rpm.c:803 ../rpm.c:810 ../rpm.c:818 ../rpm.c:854
-#: ../rpm.c:909 ../rpm.c:916
+#: rpm.c:639 rpm.c:645 rpm.c:652 rpm.c:658 rpm.c:667 rpm.c:674 rpm.c:721
+#: rpm.c:727 rpm.c:761 rpm.c:767 rpm.c:773 rpm.c:781 rpm.c:816 rpm.c:871
+#: rpm.c:878
 msgid "only one major mode may be specified"
 msgstr "specifikovat lze jen jeden hlavní re¾im"
 
-#: ../rpm.c:652
+#: rpm.c:660
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr "-u a --uninstall se neschvalují a ji¾ je nelze pou¾ít.\n"
 
-#: ../rpm.c:654
+#: rpm.c:662
 msgid "Use -e or --erase instead.\n"
 msgstr "Místo nich pou¾ijte -e nebo --erase.\n"
 
-#: ../rpm.c:670
+#: rpm.c:678
 msgid "--build (-b) requires one of a,b,i,c,p,l as its sole argument"
 msgstr ""
 "--build (-b) vy¾aduje jednu z voleb a,b,i,c,p,l jako svùj výhradní argument"
 
-#: ../rpm.c:674
+#: rpm.c:682
 msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
 msgstr ""
 "--tarbuild (-t) vy¾aduje jednu z voleb a,b,i,c,p,l jako svùj výhradní "
 "argument"
 
-#: ../rpm.c:726 ../rpm.c:732 ../rpm.c:739 ../rpm.c:746 ../rpm.c:755
-#: ../rpm.c:763 ../rpm.c:771 ../rpm.c:923
+#: rpm.c:734 rpm.c:740 rpm.c:747 rpm.c:754 rpm.c:885
 msgid "one type of query/verify may be performed at a time"
 msgstr "v daném okam¾iku lze provést jeden typ dotazu èi ovìøení"
 
-#: ../rpm.c:826
+#: rpm.c:789
 msgid "arguments to --dbpath must begin with a /"
 msgstr "argumenty pro --dbpath musejí zaèínat znakem /"
 
-#: ../rpm.c:860
+#: rpm.c:822
 msgid "relocations must begin with a /"
 msgstr "pøemístìní musejí zaèínat znakem /"
 
-#: ../rpm.c:862
+#: rpm.c:824
 msgid "relocations must contain a ="
 msgstr "pøemístìní musejí obsahovat ="
 
-#: ../rpm.c:865
+#: rpm.c:827
 msgid "relocations must have a / following the ="
 msgstr "pøemístìní musejí mít za znakem = znak /"
 
-#: ../rpm.c:874
+#: rpm.c:836
 #, fuzzy
 msgid "exclude paths must begin with a /"
 msgstr "pøemístìní musejí zaèínat znakem /"
 
-#: ../rpm.c:883
+#: rpm.c:845
 #, fuzzy, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "Interní chyba pøi zpracování argumentù :-(\n"
 
-#: ../rpm.c:936
+#: rpm.c:898
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath zadána pro operaci, která databázi nepou¾ívá"
 
-#: ../rpm.c:941
+#: rpm.c:903
 msgid "--timecheck may only be used during package builds"
 msgstr "--timecheck lze pou¾ít jen pøi sestavování balíèkù"
 
-#: ../rpm.c:944 ../rpm.c:947
-msgid "unexpected query specifiers"
-msgstr "neèekané specifikátory dotazu"
+#: rpm.c:906
+#, fuzzy
+msgid "unexpected query flags"
+msgstr "neèekaný zdroj dotazu"
+
+#: rpm.c:909
+#, fuzzy
+msgid "unexpected query format"
+msgstr "neèekaný zdroj dotazu"
 
-#: ../rpm.c:951
+#: rpm.c:913
 msgid "unexpected query source"
 msgstr "neèekaný zdroj dotazu"
 
-#: ../rpm.c:957
+#: rpm.c:919
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "vynucena mù¾e být jen instalace a aktualizace"
 
-#: ../rpm.c:960
+#: rpm.c:922
 msgid "files may only be relocated during package installation"
 msgstr "soubory mohou být pøemístìny jen pøi instalaci balíèkù"
 
-#: ../rpm.c:963
+#: rpm.c:925
 msgid "only one of --prefix or --relocate may be used"
 msgstr "pou¾ít lze jen jeden z --prefix nebo --relocate"
 
-#: ../rpm.c:966
+#: rpm.c:928
 #, fuzzy
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr "--relocate se mù¾e pou¾ít jen pøi instalaci balíèkù"
 
-#: ../rpm.c:969
+#: rpm.c:931
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix se mù¾e pou¾ít jen pøi instalaci nových balíèkù"
 
-#: ../rpm.c:972
+#: rpm.c:934
 msgid "arguments to --prefix must begin with a /"
 msgstr "argumenty pro --prefix musejí zaèínat znakem /"
 
-#: ../rpm.c:975
+#: rpm.c:937
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) se mù¾e specifikovat jen pøi instalaci balíèkù"
 
-#: ../rpm.c:979
+#: rpm.c:941
 msgid "--percent may only be specified during package installation"
 msgstr "--percent se mù¾e specifikovat jen pøi instalaci balíèkù"
 
-#: ../rpm.c:983
+#: rpm.c:945
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles se mù¾e specifikovat jen pøi instalaci balíèkù"
 
-#: ../rpm.c:987
+#: rpm.c:949
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs se mù¾e specifikovat jen pøi instalaci balíèkù"
 
-#: ../rpm.c:991
+#: rpm.c:953
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs se mù¾e specifikovat jen pøi instalaci balíèkù"
 
-#: ../rpm.c:995
+#: rpm.c:957
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs se mù¾e specifikovat jen pøi instalaci balíèkù"
 
-#: ../rpm.c:999
+#: rpm.c:961
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "specifikovat lze jen jeden z --excludedocs a --includedocs"
 
-#: ../rpm.c:1003
+#: rpm.c:965
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch se mù¾e specifikovat jen pøi instalaci balíèkù"
 
-#: ../rpm.c:1007
+#: rpm.c:969
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos se mù¾e specifikovat jen pøi instalaci balíèkù"
 
-#: ../rpm.c:1011
+#: rpm.c:973
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoreos se mù¾e specifikovat jen pøi instalaci balíèkù"
 
-#: ../rpm.c:1015
+#: rpm.c:977
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches se mù¾e specifikovat jen pøi mazání balíèkù"
 
-#: ../rpm.c:1019
+#: rpm.c:981
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles se mù¾e specifikovat jen pøi instalaci balíèkù"
 
-#: ../rpm.c:1023
+#: rpm.c:985
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr "--justdb se mù¾e specifikovat jen pøi instalaci nebo mazání balíèkù"
 
-#: ../rpm.c:1028
+#: rpm.c:990
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -1409,7 +1155,7 @@ msgstr ""
 "--noscripts se mù¾e specifikovat jen pøi instalaci, mazání nebo verifikaci "
 "balíèkù"
 
-#: ../rpm.c:1032
+#: rpm.c:994
 msgid ""
 "--notriggers may only be specified during package installation, erasure, and "
 "verification"
@@ -1417,7 +1163,7 @@ msgstr ""
 "--notriggers se mù¾e specifikovat jen pøi instalaci, mazání nebo verifikaci "
 "balíèkù"
 
-#: ../rpm.c:1038
+#: rpm.c:1000
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, installation, "
@@ -1426,11 +1172,7 @@ msgstr ""
 "--nodeps se mù¾e specifikovat jen pøi instalaci, mazání nebo verifikaci "
 "balíèkù"
 
-#: ../rpm.c:1043
-msgid "--nofiles may only be specified during package verification"
-msgstr "--nofiles se mù¾e specifikovat jen pøi verifikaci balíèkù"
-
-#: ../rpm.c:1049
+#: rpm.c:1005
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
@@ -1438,7 +1180,7 @@ msgstr ""
 "--test se mù¾e specifikovat jen pøi instalaci, mazání nebo sestavování "
 "balíèkù"
 
-#: ../rpm.c:1054
+#: rpm.c:1010
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -1446,2042 +1188,2409 @@ msgstr ""
 "--root (-r) se mù¾e urèit jen pøi instalaci, mazání, dotazování a opìtných "
 "sestavování databází"
 
-#: ../rpm.c:1059
+#: rpm.c:1015
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "argumenty pro --root (-r) musejí zaèínat znakem /"
 
-#: ../rpm.c:1063
-msgid "--clean may only be used with -b and -t"
-msgstr "--clean lze pou¾ít pouze s -b nebo -t"
-
-#: ../rpm.c:1066
-msgid "--rmsource may only be used with -b and -t"
-msgstr "--rmsource lze pou¾ít pouze s -b nebo -t"
-
-#: ../rpm.c:1069
-msgid "--short-circuit may only be used during package building"
-msgstr "--short-circuit lze pou¾ít jen pøi sestavování balíèkù"
-
-#: ../rpm.c:1073
-msgid "--short-circuit may only be used with -bc, -bi, -bs, -tc -ti, or -ts"
-msgstr "--short-circuit lze pou¾ít pouze s -bc, -bi, -bs, -tc, -ti nebo -ts"
-
-#: ../rpm.c:1079
+#: rpm.c:1018
 msgid "--oldpackage may only be used during upgrades"
 msgstr "--oldpackage lze pou¾ít jen pøi aktualizacích"
 
-#: ../rpm.c:1084
+#: rpm.c:1023
 msgid ""
 "ftp options can only be used during package queries, installs, and upgrades"
 msgstr ""
 "volby ftp lze pou¾ít jen pøi dotazování, instalacích a aktualizacích balíèkù"
 
-#: ../rpm.c:1090
+#: rpm.c:1029
 #, fuzzy
 msgid ""
 "http options can only be used during package queries, installs, and upgrades"
 msgstr ""
 "volby ftp lze pou¾ít jen pøi dotazování, instalacích a aktualizacích balíèkù"
 
-#: ../rpm.c:1094
+#: rpm.c:1033
 msgid "--nopgp may only be used during signature checking"
 msgstr "--nopgp lze pou¾ít jen pøi kontrolování podpisù"
 
-#: ../rpm.c:1097
+#: rpm.c:1036
 #, fuzzy
 msgid "--nogpg may only be used during signature checking"
 msgstr "--nopgp lze pou¾ít jen pøi kontrolování podpisù"
 
-#: ../rpm.c:1100
+#: rpm.c:1039
 #, fuzzy
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr ""
 "--nopgp se mù¾e pou¾ít jen pøi kontrolování podpisù a verifikaci balíèkù"
 
-#: ../rpm.c:1126
+#: rpm.c:1063
+msgid "no files to sign\n"
+msgstr ""
+
+#: rpm.c:1068
 #, fuzzy, c-format
 msgid "cannot access file %s\n"
 msgstr "nelze otevøít soubor %s: "
 
-#: ../rpm.c:1143
+#: rpm.c:1083
 #, fuzzy
 msgid "pgp not found: "
 msgstr "Soubor nebyl na serveru nalezen"
 
-#: ../rpm.c:1146
-msgid "Use `%%_signature pgp5' instead of `%%_signature pgp' in macro file.\n"
-msgstr ""
-
-#: ../rpm.c:1153
-#, fuzzy
-msgid "pgp version 5 not found: "
-msgstr "Soubor nebyl na serveru nalezen"
-
-#: ../rpm.c:1156
-msgid "Use `%%_signature pgp' instead of `%%_signature pgp5' in macro file.\n"
-msgstr ""
-
-#: ../rpm.c:1162
+#: rpm.c:1087
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: ../rpm.c:1163
+#: rpm.c:1089
 msgid "Pass phrase check failed\n"
 msgstr "Chybná heslová fráze\n"
 
-#: ../rpm.c:1166
+#: rpm.c:1092
 msgid "Pass phrase is good.\n"
 msgstr "Heslová fráze je dobrá.\n"
 
-#: ../rpm.c:1173
+#: rpm.c:1097
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: ../rpm.c:1178
+#: rpm.c:1103
 msgid "--sign may only be used during package building"
 msgstr "--sign lze pou¾ít jen pøi sestavování balíèkù"
 
-#: ../rpm.c:1195
+#: rpm.c:1118
 msgid "exec failed\n"
 msgstr "nelze spustit\n"
 
-#: ../rpm.c:1214
+#: rpm.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr "neèekané argumenty pro --querytags "
 
-#: ../rpm.c:1225
+#: rpm.c:1148
 msgid "no packages given for signature check"
 msgstr "ke kontrole podpisu nezadány ¾ádné balíèky"
 
-#: ../rpm.c:1233
+#: rpm.c:1160
 msgid "no packages given for signing"
 msgstr "k podpisu nezadány ¾ádné balíèky"
 
-#: ../rpm.c:1242
+#: rpm.c:1173
 msgid "no packages files given for rebuild"
 msgstr "k opìtnému sestavení nezadány ¾ádné soubory balíèkù"
 
-#: ../rpm.c:1299
+#: rpm.c:1230
 msgid "no spec files given for build"
 msgstr "pro sestavení nezadány ¾ádné soubory .spec"
 
-#: ../rpm.c:1301
+#: rpm.c:1232
 msgid "no tar files given for build"
 msgstr "pro sestavení nezadány ¾ádné soubory tar"
 
-#: ../rpm.c:1313
+#: rpm.c:1244
 msgid "no packages given for uninstall"
 msgstr "pro deinstalaci nezadány ¾ádné balíèky"
 
-#: ../rpm.c:1362
+#: rpm.c:1294
 msgid "no packages given for install"
 msgstr "pro instalaci nezadány ¾ádné balíèky"
 
-#: ../rpm.c:1385
+#: rpm.c:1317
 msgid "extra arguments given for query of all packages"
 msgstr "k dotazu na v¹echny balíèky zadány argumenty navíc"
 
-#: ../rpm.c:1390
+#: rpm.c:1322
 msgid "no arguments given for query"
 msgstr "k dotazu nezadány ¾ádné argumenty"
 
-#: ../rpm.c:1411
+#: rpm.c:1339
 #, fuzzy
 msgid "extra arguments given for verify of all packages"
 msgstr "k dotazu na v¹echny balíèky zadány argumenty navíc"
 
-#: ../rpm.c:1415
+#: rpm.c:1343
 msgid "no arguments given for verify"
 msgstr "pro verifikaci nezadány ¾ádné argumenty"
 
-#: ../rpm2cpio.c:42
+#: rpm2cpio.c:34
 #, fuzzy
 msgid "argument is not an RPM package\n"
 msgstr "%s není typu RPM\n"
 
-#: ../rpm2cpio.c:46
+#: rpm2cpio.c:38
 #, fuzzy
 msgid "error reading header from package\n"
 msgstr "chyba pøi vytváøení adresáøe %s: %s"
 
-#: ../url.c:136
-#, c-format
-msgid "Password for %s@%s: "
-msgstr "Heslo pro %s@%s: "
-
-#: ../url.c:160 ../url.c:186
-#, fuzzy, c-format
-msgid "error: %sport must be a number\n"
-msgstr "chyba: ftpport musí být èíslo\n"
-
-#: ../url.c:271
-#, fuzzy
-msgid "url port must be a number\n"
-msgstr "chyba: ftpport musí být èíslo\n"
-
-#. XXX PARANOIA
-#: ../url.c:308
-#, c-format
-msgid "logging into %s as %s, pw %s\n"
-msgstr "probíhá pøihla¹ování na %s jako %s, h. %s\n"
-
-#: ../lib/rpmdb.c:169 ../url.c:422
-#, c-format
-msgid "failed to open %s\n"
-msgstr "nelze otevøít %s\n"
-
-#: ../url.c:437
-#, c-format
-msgid "failed to create %s\n"
-msgstr "%s nelze vytvoøit\n"
-
-#: ../build/build.c:83 ../build/pack.c:248
+#: build/build.c:83 build/pack.c:263
 #, fuzzy
 msgid "Unable to open temp file"
 msgstr "Nelze otevøít %s pro ètení: %s."
 
-#: ../build/build.c:122
+#: build/build.c:124
 #, fuzzy, c-format
 msgid "Executing: %s\n"
 msgstr "Probíhá naèítání %s\n"
 
-#: ../build/build.c:126
+#: build/build.c:128
 #, fuzzy, c-format
 msgid "Exec of %s failed (%s)"
 msgstr "nelze otevøít %s: %s\n"
 
-#: ../build/build.c:136
+#: build/build.c:138
 #, fuzzy, c-format
 msgid "Bad exit status from %s (%s)"
 msgstr "nelze provést statistiku %s: %s"
 
-#: ../build/expression.c:189 ../build/expression.c:198
-msgid "parse error in tokenizer"
-msgstr ""
+#: build/expression.c:208
+#, fuzzy
+msgid "syntax error while parsing =="
+msgstr "ve výrazu se oèekával ?"
+
+#: build/expression.c:238
+#, fuzzy
+msgid "syntax error while parsing &&"
+msgstr "ve výrazu se oèekával ?"
+
+#: build/expression.c:247
+#, fuzzy
+msgid "syntax error while parsing ||"
+msgstr "ve výrazu se oèekával ?"
 
-#: ../build/expression.c:240
+#: build/expression.c:289
 #, fuzzy
 msgid "parse error in expression"
 msgstr "ve výrazu se oèekával ?"
 
-#: ../build/expression.c:270
+#: build/expression.c:319
 msgid "unmatched ("
 msgstr ""
 
-#: ../build/expression.c:288
+#: build/expression.c:337
 msgid "undefined identifier"
 msgstr ""
 
-#: ../build/expression.c:307
+#: build/expression.c:356
 msgid "- only on numbers"
 msgstr ""
 
-#: ../build/expression.c:323
+#: build/expression.c:372
 msgid "! only on numbers"
 msgstr ""
 
-#: ../build/expression.c:362 ../build/expression.c:407
-#: ../build/expression.c:464 ../build/expression.c:551
+#: build/expression.c:411 build/expression.c:456 build/expression.c:513
+#: build/expression.c:600
 msgid "types must match"
 msgstr ""
 
-#: ../build/expression.c:375
+#: build/expression.c:424
 msgid "* / not suported for strings"
 msgstr ""
 
-#: ../build/expression.c:423
+#: build/expression.c:472
 msgid "- not suported for strings"
 msgstr ""
 
-#: ../build/expression.c:564
+#: build/expression.c:613
 msgid "&& and || not suported for strings"
 msgstr ""
 
-#: ../build/expression.c:595 ../build/expression.c:640
+#: build/expression.c:644 build/expression.c:689
 #, fuzzy
 msgid "syntax error in expression"
 msgstr "ve výrazu se oèekával ?"
 
-#: ../build/files.c:220
+#: build/files.c:224
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr ""
 
-#: ../build/files.c:265 ../build/files.c:277 ../build/files.c:346
-#: ../build/files.c:358 ../build/files.c:389
-#, c-format
-msgid "Bad %s() syntax: %s"
-msgstr ""
-
-#: ../build/files.c:307
-#, c-format
-msgid "Invalid %s token: %s"
-msgstr ""
+#: build/files.c:267 build/files.c:349 build/files.c:512
+#, fuzzy, c-format
+msgid "Missing '(' in %s %s"
+msgstr "chybí      %s\n"
 
-#: ../build/files.c:369
-msgid "No files after %%defattr(): %s"
-msgstr ""
+#: build/files.c:278 build/files.c:466 build/files.c:523
+#, fuzzy, c-format
+msgid "Missing ')' in %s(%s"
+msgstr "chybí ':' u %s:%d"
 
-#: ../build/files.c:399
+#: build/files.c:316 build/files.c:491
 #, c-format
-msgid "Bad %s() mode spec: %s"
+msgid "Invalid %s token: %s"
 msgstr ""
 
-#: ../build/files.c:411
+#: build/files.c:365
 #, c-format
-msgid "Bad %s() dirmode spec: %s"
+msgid "Non-white space follows %s(): %s"
 msgstr ""
 
-#: ../build/files.c:462
-msgid "Bad %%config() syntax: %s"
-msgstr ""
+#: build/files.c:403
+#, fuzzy, c-format
+msgid "Bad syntax: %s(%s)"
+msgstr "Nelze èíst %s: %s."
 
-#: ../build/files.c:480
-msgid "Invalid %%config token: %s"
-msgstr ""
+#: build/files.c:413
+#, fuzzy, c-format
+msgid "Bad mode spec: %s(%s)"
+msgstr "Nelze èíst %s: %s."
 
-#: ../build/files.c:503 ../build/files.c:515 ../build/files.c:528
-msgid "Bad %%lang() syntax: %s"
+#: build/files.c:425
+#, c-format
+msgid "Bad dirmode spec: %s(%s)"
 msgstr ""
 
-#: ../build/files.c:534
-msgid "%%lang() entries are 2 characters: %s"
+#: build/files.c:549
+msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
 msgstr ""
 
-#: ../build/files.c:540
-msgid "Only one entry in %%lang(): %s"
+#: build/files.c:559
+msgid "Duplicate locale %.*s in %%lang(%s)"
 msgstr ""
 
-#: ../build/files.c:620
+#: build/files.c:651
 msgid "Hit limit for %%docdir"
 msgstr ""
 
-#: ../build/files.c:626
+#: build/files.c:657
 msgid "Only one arg for %%docdir"
 msgstr ""
 
 #. We already got a file -- error
-#: ../build/files.c:651
+#: build/files.c:682
 #, fuzzy, c-format
 msgid "Two files on one line: %s"
 msgstr "nelze otevøít %s: %s"
 
-#: ../build/files.c:664
+#: build/files.c:695
 #, fuzzy, c-format
 msgid "File must begin with \"/\": %s"
 msgstr "pøemístìní musejí zaèínat znakem /"
 
-#: ../build/files.c:676
+#: build/files.c:707
 msgid "Can't mix special %%doc with other forms: %s"
 msgstr ""
 
-#: ../build/files.c:764
+#: build/files.c:792
 #, fuzzy, c-format
 msgid "File listed twice: %s"
 msgstr "Nelze èíst %s: %s."
 
-#: ../build/files.c:916
+#: build/files.c:952
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s"
 msgstr "Nelze èíst %s: %s."
 
-#: ../build/files.c:926 ../build/files.c:1049
+#: build/files.c:962 build/files.c:1099
 #, fuzzy, c-format
 msgid "File not found: %s"
 msgstr "Soubor nebyl na serveru nalezen"
 
-#: ../build/files.c:969
+#: build/files.c:1005
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: ../build/files.c:983
+#: build/files.c:1019
 #, fuzzy, c-format
 msgid "File %4d: 0%o %s.%s\t %s\n"
 msgstr "soubor %s: %s\n"
 
-#: ../build/files.c:1033
+#: build/files.c:1083
 #, c-format
 msgid "File needs leading \"/\": %s"
 msgstr ""
 
-#: ../build/files.c:1090
+#: build/files.c:1140
 #, fuzzy
 msgid "Could not open %%files file: %s"
 msgstr "chyba: nelze otevøít soubor %s\n"
 
-#: ../build/files.c:1097 ../build/pack.c:433
+#: build/files.c:1147 build/pack.c:484
 #, c-format
 msgid "line: %s"
 msgstr ""
 
-#: ../build/files.c:1394 ../build/parsePrep.c:31
+#: build/files.c:1469 build/parsePrep.c:29
 #, c-format
 msgid "Bad owner/group: %s"
 msgstr ""
 
-#: ../build/files.c:1448
+#: build/files.c:1522
 #, fuzzy, c-format
 msgid "Couldn't exec %s"
 msgstr "Nelze spustit pgp"
 
-#: ../build/files.c:1452
+#: build/files.c:1526
 #, fuzzy, c-format
 msgid "Couldn't fork %s"
 msgstr "Nelze naèíst cílpodpisu"
 
-#: ../build/files.c:1502
+#: build/files.c:1605
 #, fuzzy, c-format
 msgid "%s failed"
 msgstr "chyba pgp"
 
-#: ../build/files.c:1506
+#: build/files.c:1609
 #, fuzzy, c-format
 msgid "failed to write all data to %s"
 msgstr "%s nelze vytvoøit\n"
 
-#: ../build/files.c:1540
-msgid "Finding provides...\n"
-msgstr ""
-
-#: ../build/files.c:1547
-msgid "Failed to find provides"
-msgstr ""
-
-#: ../build/files.c:1566
-msgid "Finding requires...\n"
+#: build/files.c:1695
+#, c-format
+msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: ../build/files.c:1573
-#, fuzzy
-msgid "Failed to find requires"
+#: build/files.c:1723 build/files.c:1732
+#, fuzzy, c-format
+msgid "Failed to find %s:"
 msgstr "%s nelze vytvoøit\n"
 
-#: ../build/files.c:1607
-msgid "Provides:"
-msgstr ""
-
-#: ../build/files.c:1622
-msgid "Prereqs:"
-msgstr ""
-
-#: ../build/files.c:1634
-msgid "Requires:"
-msgstr ""
-
-#: ../build/files.c:1658
+#: build/files.c:1838
 #, fuzzy, c-format
 msgid "Processing files: %s\n"
 msgstr "soubor %s: %s\n"
 
-#: ../build/names.c:32 ../build/names.c:64
+#: build/names.c:32 build/names.c:64
 msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
 msgstr ""
 
-#: ../build/names.c:97 ../build/names.c:129
+#: build/names.c:97 build/names.c:129
 msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
 msgstr ""
 
-#: ../build/names.c:167
+#: build/names.c:167
 #, c-format
 msgid "Could not canonicalize hostname: %s\n"
 msgstr ""
 
-#: ../build/pack.c:134
+#: build/pack.c:131
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr ""
 
-#: ../build/pack.c:167
+#: build/pack.c:148
+#, fuzzy, c-format
+msgid "cannot create %s: %s\n"
+msgstr "nelze otevøít soubor %s: "
+
+#: build/pack.c:183
 #, fuzzy, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "nelze otevøít %s: %s"
 
-#: ../build/pack.c:177
+#: build/pack.c:193
 #, fuzzy, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "Nelze èíst %s: %s."
 
-#: ../build/pack.c:197
+#: build/pack.c:213
 #, fuzzy, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr "%s není typu RPM\n"
 
-#: ../build/pack.c:203
+#: build/pack.c:219
 #, fuzzy, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr "chyba pøi vytváøení adresáøe %s: %s"
 
-#: ../build/pack.c:259
+#: build/pack.c:274
 msgid "Bad CSA data"
 msgstr ""
 
-#: ../build/pack.c:282
+#: build/pack.c:305
 #, fuzzy, c-format
 msgid "Could not open %s\n"
 msgstr "nelze otevøít %s\n"
 
-#: ../build/pack.c:314 ../build/pack.c:357
+#: build/pack.c:337 build/pack.c:379
 #, fuzzy, c-format
 msgid "Unable to write package: %s"
 msgstr "Nelze zapsat %s"
 
-#: ../build/pack.c:347
+#: build/pack.c:352
+#, c-format
+msgid "Generating signature: %d\n"
+msgstr "Probíhá generování podpisu: %d\n"
+
+#: build/pack.c:369
 #, fuzzy, c-format
 msgid "Unable to read sigtarget: %s"
 msgstr "Nelze zapsat %s"
 
-#: ../build/pack.c:372
+#: build/pack.c:394
 #, fuzzy, c-format
 msgid "Wrote: %s\n"
 msgstr "rpm: %s\n"
 
-#: ../build/pack.c:387
+#: build/pack.c:411 build/pack.c:435
 #, fuzzy, c-format
 msgid "create archive failed on file %s: %s"
 msgstr "nelze otevøít %s: %s"
 
-#: ../build/pack.c:403
+#: build/pack.c:454
 #, fuzzy, c-format
 msgid "cpio_copy write failed: %s"
 msgstr "nelze otevøít %s: %s"
 
-#: ../build/pack.c:410
+#: build/pack.c:461
 #, fuzzy, c-format
 msgid "cpio_copy read failed: %s"
 msgstr "nelze èíst: %s (%d)"
 
-#: ../build/pack.c:489
+#: build/pack.c:540
 #, fuzzy, c-format
 msgid "Could not open PreIn file: %s"
 msgstr "chyba: nelze otevøít soubor %s\n"
 
-#: ../build/pack.c:496
+#: build/pack.c:547
 #, fuzzy, c-format
 msgid "Could not open PreUn file: %s"
 msgstr "chyba: nelze otevøít soubor %s\n"
 
-#: ../build/pack.c:503
+#: build/pack.c:554
 #, fuzzy, c-format
 msgid "Could not open PostIn file: %s"
 msgstr "chyba: nelze otevøít soubor %s\n"
 
-#: ../build/pack.c:510
+#: build/pack.c:561
 #, fuzzy, c-format
 msgid "Could not open PostUn file: %s"
 msgstr "chyba: nelze otevøít soubor %s\n"
 
-#: ../build/pack.c:518
+#: build/pack.c:569
 #, c-format
 msgid "Could not open VerifyScript file: %s"
 msgstr ""
 
-#: ../build/pack.c:534
+#: build/pack.c:585
 #, c-format
 msgid "Could not open Trigger script file: %s"
 msgstr ""
 
-#: ../build/parseBuildInstallClean.c:27
+#: build/parseBuildInstallClean.c:27
 #, c-format
 msgid "line %d: second %s"
 msgstr ""
 
-#: ../build/parseChangelog.c:95
+#: build/parseChangelog.c:103
 msgid "%%changelog entries must start with *"
 msgstr ""
 
-#: ../build/parseChangelog.c:103
+#: build/parseChangelog.c:111
 msgid "incomplete %%changelog entry"
 msgstr ""
 
-#: ../build/parseChangelog.c:118
+#: build/parseChangelog.c:126
 msgid "bad date in %%changelog: %s"
 msgstr ""
 
-#: ../build/parseChangelog.c:123
+#: build/parseChangelog.c:131
 msgid "%%changelog not in decending chronological order"
 msgstr ""
 
-#: ../build/parseChangelog.c:131 ../build/parseChangelog.c:142
+#: build/parseChangelog.c:139 build/parseChangelog.c:150
 msgid "missing name in %%changelog"
 msgstr ""
 
-#: ../build/parseChangelog.c:149
+#: build/parseChangelog.c:157
 msgid "no description in %%changelog"
 msgstr ""
 
-#: ../build/parseDescription.c:35
+#: build/parseDescription.c:33
 msgid "line %d: Error parsing %%description: %s"
 msgstr ""
 
-#: ../build/parseDescription.c:48 ../build/parseFiles.c:42
-#: ../build/parseScript.c:170
+#: build/parseDescription.c:46 build/parseFiles.c:40 build/parseScript.c:168
 #, fuzzy, c-format
 msgid "line %d: Bad option %s: %s"
 msgstr "nelze otevøít %s: %s"
 
-#: ../build/parseDescription.c:62 ../build/parseFiles.c:56
-#: ../build/parseScript.c:184
+#: build/parseDescription.c:60 build/parseFiles.c:54 build/parseScript.c:182
 #, c-format
 msgid "line %d: Too many names: %s"
 msgstr ""
 
-#: ../build/parseDescription.c:72 ../build/parseFiles.c:66
-#: ../build/parseScript.c:194
+#: build/parseDescription.c:70 build/parseFiles.c:64 build/parseScript.c:192
 #, fuzzy, c-format
 msgid "line %d: Package does not exist: %s"
 msgstr "balíèek %s není uveden v %s"
 
-#: ../build/parseDescription.c:84
+#: build/parseDescription.c:82
 #, c-format
 msgid "line %d: Second description"
 msgstr ""
 
-#: ../build/parseFiles.c:29
+#: build/parseFiles.c:27
 msgid "line %d: Error parsing %%files: %s"
 msgstr ""
 
-#: ../build/parseFiles.c:74
+#: build/parseFiles.c:72
 msgid "line %d: Second %%files list"
 msgstr ""
 
-#: ../build/parsePreamble.c:143
+#: build/parsePreamble.c:141
 #, c-format
 msgid "Architecture is excluded: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:148
+#: build/parsePreamble.c:146
 #, c-format
 msgid "Architecture is not included: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:153
+#: build/parsePreamble.c:151
 #, c-format
 msgid "OS is excluded: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:158
+#: build/parsePreamble.c:156
 #, c-format
 msgid "OS is not included: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:193
+#: build/parsePreamble.c:170
 #, c-format
 msgid "%s field must be present in package: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:215
+#: build/parsePreamble.c:192
 #, c-format
 msgid "Duplicate %s entries in package: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:262
+#: build/parsePreamble.c:239
 #, fuzzy, c-format
 msgid "Unable to stat icon: %s"
 msgstr "Nelze zapsat %s"
 
-#: ../build/parsePreamble.c:273
+#: build/parsePreamble.c:250
 #, fuzzy, c-format
 msgid "Unable to read icon: %s"
 msgstr "Nelze zapsat %s"
 
-#: ../build/parsePreamble.c:283
+#: build/parsePreamble.c:260
 #, fuzzy, c-format
 msgid "Unknown icon type: %s"
 msgstr "Neznámý systém: %s\n"
 
-#: ../build/parsePreamble.c:346
+#: build/parsePreamble.c:323
 #, c-format
 msgid "line %d: Malformed tag: %s"
 msgstr ""
 
 #. Empty field
-#: ../build/parsePreamble.c:354
+#: build/parsePreamble.c:331
 #, c-format
 msgid "line %d: Empty tag: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:377 ../build/parsePreamble.c:384
+#: build/parsePreamble.c:354 build/parsePreamble.c:361
 #, fuzzy, c-format
 msgid "line %d: Illegal char '-' in %s: %s"
 msgstr "nelze otevøít %s: %s"
 
-#: ../build/parsePreamble.c:422
+#: build/parsePreamble.c:399
 #, c-format
 msgid "line %d: BuildRoot can not be \"/\": %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:435
+#: build/parsePreamble.c:412
 #, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:447
+#: build/parsePreamble.c:424
 #, fuzzy, c-format
 msgid "line %d: Docdir must begin with '/': %s"
 msgstr "pøemístìní musejí zaèínat znakem /"
 
-#: ../build/parsePreamble.c:459
+#: build/parsePreamble.c:436
 #, fuzzy, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s"
 msgstr "neplatné èíslo balíèku: %s\n"
 
-#: ../build/parsePreamble.c:524
+#: build/parsePreamble.c:499
 #, fuzzy, c-format
 msgid "line %d: Bad BuildArchitecture format: %s"
 msgstr "chybí architektura pro %s u %s:%d"
 
-#: ../build/parsePreamble.c:534
+#: build/parsePreamble.c:509
 #, fuzzy, c-format
 msgid "Internal error: Bogus tag %d"
 msgstr "interní chyba (chyba rpm?): "
 
-#: ../build/parsePreamble.c:679
+#: build/parsePreamble.c:656
 #, fuzzy, c-format
 msgid "Bad package specification: %s"
 msgstr "      Volby pro specifikaci balíèku:"
 
-#: ../build/parsePreamble.c:685
+#: build/parsePreamble.c:662
 #, c-format
 msgid "Package already exists: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:712
+#: build/parsePreamble.c:689
 #, fuzzy, c-format
 msgid "line %d: Unknown tag: %s"
 msgstr "Neznámý systém: %s\n"
 
-#: ../build/parsePreamble.c:737
+#: build/parsePreamble.c:714
 msgid "Spec file can't use BuildRoot"
 msgstr ""
 
-#: ../build/parsePrep.c:27
+#: build/parsePrep.c:25
 #, fuzzy, c-format
 msgid "Bad source: %s: %s"
 msgstr "Nelze èíst %s: %s."
 
-#: ../build/parsePrep.c:53
+#: build/parsePrep.c:51
 #, fuzzy, c-format
 msgid "No patch number %d"
 msgstr "(není èíslo)"
 
-#: ../build/parsePrep.c:119
+#: build/parsePrep.c:117
 #, c-format
 msgid "No source number %d"
 msgstr ""
 
-#: ../build/parsePrep.c:138
+#: build/parsePrep.c:136
 #, fuzzy, c-format
 msgid "Couldn't download nosource %s: %s"
 msgstr "Nelze èíst %s: %s."
 
-#: ../build/parsePrep.c:193
+#: build/parsePrep.c:191
 msgid "Error parsing %%setup: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:208
+#: build/parsePrep.c:206
 msgid "line %d: Bad arg to %%setup %c: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:229
+#: build/parsePrep.c:227
 msgid "line %d: Bad %%setup option %s: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:353
+#: build/parsePrep.c:351
 msgid "line %d: Need arg to %%patch -b: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:361
+#: build/parsePrep.c:359
 msgid "line %d: Need arg to %%patch -z: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:373
+#: build/parsePrep.c:371
 msgid "line %d: Need arg to %%patch -p: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:379
+#: build/parsePrep.c:377
 msgid "line %d: Bad arg to %%patch -p: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:386
+#: build/parsePrep.c:384
 msgid "Too many patches!"
 msgstr ""
 
-#: ../build/parsePrep.c:390
+#: build/parsePrep.c:388
 msgid "line %d: Bad arg to %%patch: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:426
+#: build/parsePrep.c:424
 msgid "line %d: second %%prep"
 msgstr ""
 
-#: ../build/parseReqs.c:45
-#, c-format
-msgid "line %d: No file names in Conflicts: %s"
-msgstr ""
-
-#: ../build/parseReqs.c:79
-#, c-format
-msgid "line %d: No versions on file names in %s: %s"
-msgstr ""
+#: build/parseReqs.c:91
+#, fuzzy, c-format
+msgid ""
+"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
+msgstr "pøemístìní musejí zaèínat znakem /"
 
-#: ../build/parseReqs.c:85
-#, c-format
-msgid "line %d: No versions in PreReq: %s"
-msgstr ""
+#: build/parseReqs.c:102
+#, fuzzy, c-format
+msgid "line %d: File name not permitted: %s"
+msgstr "balíèek %s není uveden v %s"
 
-#: ../build/parseReqs.c:97
-#, c-format
-msgid "line %d: Version required in %s: %s"
-msgstr ""
+#: build/parseReqs.c:134
+#, fuzzy, c-format
+msgid "line %d: Versioned file name not permitted: %s"
+msgstr "balíèek %s není uveden v %s"
 
-#: ../build/parseReqs.c:126
+#: build/parseReqs.c:146
 #, fuzzy, c-format
-msgid "line %d: No file names in Obsoletes: %s"
+msgid "line %d: Version not permitted: %s"
 msgstr "balíèek %s není uveden v %s"
 
-#: ../build/parseReqs.c:133
-#, c-format
-msgid "line %d: %s: tokens must begin with alpha-numeric: %s"
-msgstr ""
+#: build/parseReqs.c:172
+#, fuzzy, c-format
+msgid "line %d: Version required: %s"
+msgstr "nelze otevøít %s: %s"
 
-#: ../build/parseScript.c:138
+#: build/parseScript.c:136
 #, c-format
 msgid "line %d: triggers must have --: %s"
 msgstr ""
 
-#: ../build/parseScript.c:148 ../build/parseScript.c:212
+#: build/parseScript.c:146 build/parseScript.c:210
 #, c-format
 msgid "line %d: Error parsing %s: %s"
 msgstr ""
 
-#: ../build/parseScript.c:158
+#: build/parseScript.c:156
 #, c-format
 msgid "line %d: script program must begin with '/': %s"
 msgstr ""
 
-#: ../build/parseScript.c:203
+#: build/parseScript.c:201
 #, c-format
 msgid "line %d: Second %s"
 msgstr ""
 
-#: ../build/parseSpec.c:120
+#: build/parseSpec.c:126
+#, fuzzy, c-format
+msgid "line %d: %s"
+msgstr "soubor %s: %s\n"
+
+#: build/parseSpec.c:172
 #, fuzzy, c-format
 msgid "Unable to open: %s\n"
 msgstr "nelze otevøít %s\n"
 
-#: ../build/parseSpec.c:132
+#: build/parseSpec.c:184
 msgid "Unclosed %%if"
 msgstr ""
 
-#: ../build/parseSpec.c:188
-#, fuzzy, c-format
-msgid "line %d: %s"
-msgstr "soubor %s: %s\n"
+#: build/parseSpec.c:243
+#, c-format
+msgid "%s:%d: parseExpressionBoolean returns %d"
+msgstr ""
 
 #. Got an else with no %if !
-#: ../build/parseSpec.c:213
+#: build/parseSpec.c:251
 msgid "%s:%d: Got a %%else with no if"
 msgstr ""
 
 #. Got an end with no %if !
-#: ../build/parseSpec.c:223
+#: build/parseSpec.c:262
 msgid "%s:%d: Got a %%endif with no if"
 msgstr ""
 
-#: ../build/parseSpec.c:235 ../build/parseSpec.c:244
+#: build/parseSpec.c:276 build/parseSpec.c:285
 msgid "malformed %%include statement"
 msgstr ""
 
-#: ../build/parseSpec.c:323
+#: build/parseSpec.c:366
 #, c-format
 msgid "Timecheck value must be an integer: %s"
 msgstr ""
 
-#: ../build/parseSpec.c:406
+#: build/parseSpec.c:449
 #, fuzzy
 msgid "No buildable architectures"
 msgstr "neovìøovat architekturu balíèku"
 
-#: ../build/parseSpec.c:451
+#: build/parseSpec.c:494
 #, fuzzy
 msgid "Package has no %%description: %s"
 msgstr "balíèek %s není uveden v %s"
 
-#: ../build/spec.c:28
+#: build/spec.c:31
 #, fuzzy, c-format
 msgid "archive = %s, fs = %s\n"
 msgstr "offset archivu je %d\n"
 
-#: ../build/spec.c:224
+#: build/spec.c:237
 #, fuzzy, c-format
 msgid "line %d: Bad number: %s"
 msgstr "neplatné èíslo balíèku: %s\n"
 
-#: ../build/spec.c:230
+#: build/spec.c:243
 #, c-format
 msgid "line %d: Bad no%s number: %d"
 msgstr ""
 
-#: ../build/spec.c:286
+#: build/spec.c:301
 #, fuzzy, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr "neplatné èíslo balíèku: %s\n"
 
-#: ../lib/cpio.c:362
+#: lib/cpio.c:385
 #, fuzzy, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr "nelze odstranit %s: %s\n"
 
-#: ../lib/cpio.c:368
+#: lib/cpio.c:391
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: ../lib/cpio.c:547
+#: lib/cpio.c:582
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: ../lib/cpio.c:1000
+#: lib/cpio.c:1044
 #, fuzzy, c-format
 msgid "(error 0x%x)"
 msgstr "chyba: "
 
-#: ../lib/cpio.c:1003
+#: lib/cpio.c:1047
 msgid "Bad magic"
 msgstr ""
 
-#: ../lib/cpio.c:1004
+#: lib/cpio.c:1048
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: ../lib/cpio.c:1022
-#, fuzzy
-msgid "Internal error"
-msgstr "interní chyba (chyba rpm?): "
-
-#: ../lib/cpio.c:1023
+#: lib/cpio.c:1066
 msgid "Header size too big"
 msgstr ""
 
-#: ../lib/cpio.c:1024
+#: lib/cpio.c:1067
 #, fuzzy
 msgid "Unknown file type"
 msgstr "Neznámý systém: %s\n"
 
-#: ../lib/cpio.c:1033
+#: lib/cpio.c:1068
+msgid "Missing hard link"
+msgstr ""
+
+#: lib/cpio.c:1069
+#, fuzzy
+msgid "Internal error"
+msgstr "interní chyba (chyba rpm?): "
+
+#: lib/cpio.c:1078
 #, fuzzy
 msgid " failed - "
 msgstr "chyba pgp"
 
-#: ../lib/dbindex.c:32
+#: lib/dbindex.c:32
 #, fuzzy, c-format
 msgid "cannot open file %s: %s"
 msgstr "nelze otevøít soubor %s: "
 
-#: ../lib/dbindex.c:77
+#: lib/dbindex.c:84
 #, c-format
 msgid "error getting record %s from %s"
 msgstr "chyba pøi získávání záznamu %s z %s"
 
-#: ../lib/dbindex.c:105
+#: lib/dbindex.c:111
 #, c-format
 msgid "error storing record %s into %s"
 msgstr "chyba pøi ukládání záznamu %s do %s"
 
-#: ../lib/dbindex.c:112
+#: lib/dbindex.c:118
 #, c-format
 msgid "error removing record %s into %s"
 msgstr "chyba pøi odstraòování záznamu %s do %s"
 
-#: ../lib/depends.c:429 ../lib/depends.c:588
+#. XXX legacy epoch-less requires/conflicts compatibility
+#: lib/depends.c:339
 #, c-format
-msgid "cannot read header at %d for dependency check"
-msgstr "nelze èíst hlavièku u %d pro kontrolu závislostí"
+msgid ""
+"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
+"\tA %s\tB %s\n"
+msgstr ""
+
+#: lib/depends.c:368
+#, c-format
+msgid "  %s    A %s\tB %s\n"
+msgstr ""
+
+#: lib/depends.c:460
+msgid "dbrecMatchesDepFlags() failed to read header"
+msgstr "dbrecMatchesDepFlags() nemù¾e pøeèíst hlavièku"
 
-#: ../lib/depends.c:494
+#: lib/depends.c:695
+#, fuzzy, c-format
+msgid "%s: %s satisfied by added package.\n"
+msgstr "¾ádný balíèek nevlastní soubor %s\n"
+
+#: lib/depends.c:712
+#, c-format
+msgid "%s: %s satisfied by added provide.\n"
+msgstr ""
+
+#: lib/depends.c:717
+#, c-format
+msgid "%s: %s satisfied by added file list.\n"
+msgstr ""
+
+#: lib/depends.c:747
+#, c-format
+msgid "%s: %s satisfied by rpmrc provides.\n"
+msgstr ""
+
+#: lib/depends.c:775
+#, c-format
+msgid "%s: %s satisfied by db file lists.\n"
+msgstr ""
+
+#: lib/depends.c:797
+#, c-format
+msgid "%s: %s satisfied by db provides.\n"
+msgstr ""
+
+#: lib/depends.c:819
+#, fuzzy, c-format
+msgid "%s: %s satisfied by db packages.\n"
+msgstr "¾ádný balíèek nevlastní soubor %s\n"
+
+#: lib/depends.c:832
+#, c-format
+msgid "%s: %s satisfied by rpmlib version.\n"
+msgstr ""
+
+#: lib/depends.c:842
 #, c-format
-msgid "dependencies: looking for %s\n"
-msgstr "závislosti: probíhá hledání %s\n"
+msgid "%s: %s unsatisfied.\n"
+msgstr ""
 
-#: ../lib/depends.c:682
+#. requirements are not satisfied.
+#: lib/depends.c:890
 #, c-format
 msgid "package %s require not satisfied: %s\n"
 msgstr "polo¾ka 'vy¾aduje' balíèku %s není splnìna: %s\n"
 
-#: ../lib/depends.c:725
+#. conflicts exist.
+#: lib/depends.c:952
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "balíèek %s koliduje: %s\n"
 
-#: ../lib/depends.c:825
-msgid "dbrecMatchesDepFlags() failed to read header"
-msgstr "dbrecMatchesDepFlags() nemù¾e pøeèíst hlavièku"
+#: lib/depends.c:1007 lib/depends.c:1311
+#, c-format
+msgid "cannot read header at %d for dependency check"
+msgstr "nelze èíst hlavièku u %d pro kontrolu závislostí"
 
-#: ../lib/depends.c:877
+#: lib/depends.c:1102
 #, c-format
 msgid "loop in prerequisite chain: %s"
 msgstr "smyèka v øetìzu podmínek: %s"
 
-#: ../lib/falloc.c:149
-#, fuzzy, c-format
-msgid "free list corrupt (%u)- contact rpm-list@redhat.com\n"
-msgstr "Zkontaktujte rpm-list@redhat.com\n"
+#: lib/falloc.c:160
+#, c-format
+msgid ""
+"free list corrupt (%u)- please run\n"
+"\t\"rpm --rebuilddb\"\n"
+"More information is available from http://www.rpm.org or the "
+"rpm-list@redhat.com mailing list\n"
+"if \"rpm --rebuilddb\" fails to correct the problem.\n"
+msgstr ""
 
-#: ../lib/formats.c:97 ../lib/formats.c:114 ../lib/formats.c:134
-#: ../lib/formats.c:166 ../lib/header.c:1973 ../lib/header.c:1989
-#: ../lib/header.c:2009
+#: lib/formats.c:66 lib/formats.c:84 lib/formats.c:105 lib/formats.c:138
+#: lib/header.c:2122 lib/header.c:2139 lib/header.c:2159
 msgid "(not a number)"
 msgstr "(není èíslo)"
 
-#: ../lib/fs.c:41
+#: lib/fs.c:40
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr "mntctl() nevrátil velikost polo¾ky fugger: %s"
 
-#: ../lib/fs.c:76 ../lib/fs.c:246
+#: lib/fs.c:75 lib/fs.c:253
 #, c-format
 msgid "failed to stat %s: %s"
 msgstr "nelze provést statistiku %s: %s"
 
-#: ../lib/fs.c:117
+#: lib/fs.c:114
+msgid "getting list of mounted filesystems\n"
+msgstr ""
+
+#: lib/fs.c:119
 #, c-format
 msgid "failed to open %s: %s"
 msgstr "nelze otevøít %s: %s"
 
-#: ../lib/fs.c:267
+#: lib/fs.c:274
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr "soubor %s je na neznámém zaøízení"
 
-#: ../lib/header.c:669
-#, c-format
-msgid "Data type %d not supprted\n"
-msgstr "Datový typ %d není podporován\n"
+#: lib/ftp.c:666
+msgid "Success"
+msgstr ""
+
+#: lib/ftp.c:669
+#, fuzzy
+msgid "Bad server response"
+msgstr "Chybná odezva serveru FTP"
+
+#: lib/ftp.c:672
+#, fuzzy
+msgid "Server IO error"
+msgstr "V/V chyba FTP"
+
+#: lib/ftp.c:675
+#, fuzzy
+msgid "Server timeout"
+msgstr "Promlka serveru FTP"
+
+#: lib/ftp.c:678
+#, fuzzy
+msgid "Unable to lookup server host address"
+msgstr "Nelze vyhledat adresu hostitelského serveru FTP"
+
+#: lib/ftp.c:681
+#, fuzzy
+msgid "Unable to lookup server host name"
+msgstr "Nelze vyhledat název hostitelského serveru FTP"
+
+#: lib/ftp.c:684
+#, fuzzy
+msgid "Failed to connect to server"
+msgstr "K serveru FTP se nelze pøipojit"
+
+#: lib/ftp.c:687
+#, fuzzy
+msgid "Failed to establish data connection to server"
+msgstr "Se serverem FTP nelze navázat datové spojení"
+
+#: lib/ftp.c:690
+msgid "IO error to local file"
+msgstr "V/V chyba na místní soubor"
+
+#: lib/ftp.c:693
+msgid "Error setting remote server to passive mode"
+msgstr "Chyba pøi nastavení vzdáleného serveru na pasivní re¾im"
+
+#: lib/ftp.c:696
+msgid "File not found on server"
+msgstr "Soubor nebyl na serveru nalezen"
+
+#: lib/ftp.c:699
+msgid "Abort in progress"
+msgstr ""
+
+#: lib/ftp.c:703
+#, fuzzy
+msgid "Unknown or unexpected error"
+msgstr "Neznámá nebo neèekaná chyba FTP"
 
 #. This should not be allowed
-#: ../lib/header.c:905
+#: lib/header.c:169
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr "Poèet RPM_STRING_TYPE pro grabData() musí být 1.\n"
 
-#: ../lib/header.c:935
+#: lib/header.c:200
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Datový typ %d není podporován\n"
 
-#: ../lib/header.c:994
+#: lib/header.c:763
+#, c-format
+msgid "Data type %d not supprted\n"
+msgstr "Datový typ %d není podporován\n"
+
+#: lib/header.c:1119
 #, c-format
 msgid "Bad count for headerAddEntry(): %d\n"
 msgstr "Chybný poèet pro headerAddEntry(): %d\n"
 
-#: ../lib/header.c:1328
-msgid "? expected in expression"
-msgstr "ve výrazu se oèekával ?"
-
-#: ../lib/header.c:1335
-msgid "{ expected after ? in expression"
-msgstr "ve výrazu se po ? oèekávala {"
-
-#: ../lib/header.c:1345 ../lib/header.c:1377
-msgid "} expected in expression"
-msgstr "ve výrazu se oèekávala }"
-
-#: ../lib/header.c:1352
-msgid ": expected following ? subexpression"
-msgstr "v podvýrazu se po ? oèekávala :"
-
-#: ../lib/header.c:1365
-msgid "{ expected after : in expression"
-msgstr "ve výrazu se po : oèekávala {"
-
-#: ../lib/header.c:1384
-msgid "| expected at end of expression"
-msgstr "na konci výrazu se oèekávala |"
-
-#: ../lib/header.c:1478
+#: lib/header.c:1520
 #, c-format
 msgid "missing { after %"
 msgstr "po % chybí {"
 
-#: ../lib/header.c:1506
+#: lib/header.c:1548
 msgid "missing } after %{"
 msgstr "po %{ chybí }"
 
-#: ../lib/header.c:1518
+#: lib/header.c:1560
 msgid "empty tag format"
 msgstr "prázdný formát pøíznaku"
 
-#: ../lib/header.c:1528
+#: lib/header.c:1570
 msgid "empty tag name"
 msgstr "prázdný název pøíznaku"
 
-#: ../lib/header.c:1543
+#: lib/header.c:1585
 msgid "unknown tag"
 msgstr "neznámý pøíznak"
 
-#: ../lib/header.c:1569
+#: lib/header.c:1611
 msgid "] expected at end of array"
 msgstr "na konci øady se oèekávala ]"
 
-#: ../lib/header.c:1585
+#: lib/header.c:1627
 msgid "unexpected ]"
 msgstr "neoèekávaná ]"
 
-#: ../lib/header.c:1587
+#: lib/header.c:1629
 msgid "unexpected }"
 msgstr "neoèekávaná }"
 
-#: ../lib/header.c:1762
+#: lib/header.c:1682
+msgid "? expected in expression"
+msgstr "ve výrazu se oèekával ?"
+
+#: lib/header.c:1689
+msgid "{ expected after ? in expression"
+msgstr "ve výrazu se po ? oèekávala {"
+
+#: lib/header.c:1699 lib/header.c:1731
+msgid "} expected in expression"
+msgstr "ve výrazu se oèekávala }"
+
+#: lib/header.c:1706
+msgid ": expected following ? subexpression"
+msgstr "v podvýrazu se po ? oèekávala :"
+
+#: lib/header.c:1719
+msgid "{ expected after : in expression"
+msgstr "ve výrazu se po : oèekávala {"
+
+#: lib/header.c:1738
+msgid "| expected at end of expression"
+msgstr "na konci výrazu se oèekávala |"
+
+#: lib/header.c:1905
 msgid "(unknown type)"
 msgstr "(neznámý typ)"
 
-#: ../lib/install.c:93
-msgid "source package expected, binary found"
-msgstr ""
-
-#: ../lib/install.c:169 ../lib/uninstall.c:111
+#: lib/install.c:141 lib/uninstall.c:179
 #, fuzzy, c-format
 msgid "   file: %s action: %s\n"
 msgstr "soubor %s: %s\n"
 
-#: ../lib/install.c:186
+#: lib/install.c:159
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: ../lib/install.c:194
+#: lib/install.c:167
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: ../lib/install.c:221
+#: lib/install.c:195
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
-#: ../lib/install.c:289
-#, fuzzy, c-format
-msgid "package: %s-%s-%s files test = %d\n"
-msgstr "balíèek %s-%s-%s obsahuje sdílení soubory\n"
-
-#: ../lib/install.c:352
-#, fuzzy
-msgid "stopping install as we're running --test\n"
-msgstr "probíhá zastavení zdrojové instalace, nebo» jde jen o testování\n"
-
-#: ../lib/install.c:357
-#, fuzzy
-msgid "running preinstall script (if any)\n"
-msgstr "spou¹tí se pøípadný poinstalaèní skript\n"
-
-#: ../lib/install.c:387
-#, c-format
-msgid "warning: %s created as %s"
-msgstr ""
-
-#: ../lib/install.c:423
-#, c-format
-msgid "warning: %s saved as %s"
-msgstr ""
-
-#: ../lib/install.c:427 ../lib/install.c:790 ../lib/uninstall.c:337
-#, c-format
-msgid "rename of %s to %s failed: %s"
-msgstr "%s nelze pøejmenovat na %s: %s"
-
-#: ../lib/install.c:507
-#, fuzzy
-msgid "running postinstall script (if any)\n"
-msgstr "spou¹tí se pøípadný poinstalaèní skript\n"
-
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
-#: ../lib/install.c:613
+#: lib/install.c:358
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: ../lib/install.c:614
+#: lib/install.c:359
 msgid " on file "
 msgstr ""
 
-#: ../lib/install.c:654
+#: lib/install.c:402
 #, fuzzy
 msgid "installing a source package\n"
 msgstr "probíhá instalace binárních balíèkù\n"
 
-#: ../lib/install.c:665 ../lib/install.c:687
+#: lib/install.c:413
 #, fuzzy, c-format
-msgid "cannot create %s"
+msgid "cannot create %s: %s"
 msgstr "nelze otevøít soubor %s: "
 
-#: ../lib/install.c:672 ../lib/install.c:694
+#: lib/install.c:421 lib/install.c:443
 #, fuzzy, c-format
 msgid "cannot write to %s"
 msgstr "nelze otevøít soubor %s: "
 
-#: ../lib/install.c:676
+#: lib/install.c:425
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: ../lib/install.c:698
+#: lib/install.c:436
 #, fuzzy, c-format
-msgid "spec file in: %s\n"
-msgstr "soubor %s: %s\n"
-
-#: ../lib/install.c:731 ../lib/install.c:767
+msgid "cannot create %s"
+msgstr "nelze otevøít soubor %s: "
+
+#: lib/install.c:447
+#, fuzzy, c-format
+msgid "spec file in: %s\n"
+msgstr "soubor %s: %s\n"
+
+#: lib/install.c:481 lib/install.c:509
 #, fuzzy
 msgid "source package contains no .spec file"
 msgstr "balíèek %s neobsahuje soubory"
 
-#: ../lib/install.c:788
+#: lib/install.c:530
 #, fuzzy, c-format
 msgid "renaming %s to %s\n"
 msgstr "Probíhá získávání %s jako %s\n"
 
-#: ../lib/lookup.c:83
+#: lib/install.c:532 lib/install.c:810 lib/uninstall.c:26
+#, c-format
+msgid "rename of %s to %s failed: %s"
+msgstr "%s nelze pøejmenovat na %s: %s"
+
+#: lib/install.c:622
+msgid "source package expected, binary found"
+msgstr ""
+
+#: lib/install.c:679
+#, fuzzy, c-format
+msgid "package: %s-%s-%s files test = %d\n"
+msgstr "balíèek %s-%s-%s obsahuje sdílení soubory\n"
+
+#: lib/install.c:740
+#, fuzzy
+msgid "stopping install as we're running --test\n"
+msgstr "probíhá zastavení zdrojové instalace, nebo» jde jen o testování\n"
+
+#: lib/install.c:745
+#, fuzzy
+msgid "running preinstall script (if any)\n"
+msgstr "spou¹tí se pøípadný poinstalaèní skript\n"
+
+#: lib/install.c:770
+#, c-format
+msgid "warning: %s created as %s"
+msgstr ""
+
+#: lib/install.c:806
+#, c-format
+msgid "warning: %s saved as %s"
+msgstr ""
+
+#: lib/install.c:880
+#, fuzzy
+msgid "running postinstall scripts (if any)\n"
+msgstr "spou¹tí se pøípadný poinstalaèní skript\n"
+
+#: lib/lookup.c:35
 #, c-format
 msgid "cannot read header at %d for lookup"
 msgstr "nelze èíst hlavièku u %d pro vyhledání"
 
-#: ../lib/macro.c:129
+#: lib/macro.c:149
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr ""
 
 #. XXX just in case
-#: ../lib/macro.c:218
+#: lib/macro.c:243
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: ../lib/macro.c:253
+#: lib/macro.c:278
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: ../lib/macro.c:426
+#: lib/macro.c:457
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: ../lib/macro.c:452
+#: lib/macro.c:483
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: ../lib/macro.c:458
+#: lib/macro.c:489
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: ../lib/macro.c:463
+#: lib/macro.c:494
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: ../lib/macro.c:468
+#: lib/macro.c:499
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: ../lib/macro.c:493
+#: lib/macro.c:524
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: ../lib/macro.c:566
+#: lib/macro.c:601
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: ../lib/macro.c:650
+#: lib/macro.c:698
 #, fuzzy, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr "Neznámý systém: %s\n"
 
-#: ../lib/macro.c:825
+#: lib/macro.c:870
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: ../lib/macro.c:881 ../lib/macro.c:897
+#: lib/macro.c:936 lib/macro.c:952
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: ../lib/macro.c:930
+#: lib/macro.c:992
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: ../lib/macro.c:1053
+#: lib/macro.c:1115
 #, fuzzy
 msgid "Macro %%%.*s not found, skipping"
 msgstr "balíèek %s nenalezen v %s"
 
-#: ../lib/macro.c:1131
+#: lib/macro.c:1196
 msgid "Target buffer overflow"
 msgstr ""
 
-#: ../lib/macro.c:1274 ../lib/macro.c:1282
+#: lib/macro.c:1343 lib/macro.c:1351
 #, fuzzy, c-format
 msgid "File %s: %s"
 msgstr "soubor %s: %s\n"
 
-#: ../lib/macro.c:1285
+#: lib/macro.c:1354
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
 
-#: ../lib/messages.c:51
+#: lib/messages.c:55
 msgid "warning: "
 msgstr "varování: "
 
-#: ../lib/messages.c:57
+#: lib/messages.c:64
 msgid "error: "
 msgstr "chyba: "
 
-#: ../lib/messages.c:63
+#: lib/messages.c:73
 msgid "fatal error: "
 msgstr "fatální chyba: "
 
-#: ../lib/messages.c:70
+#: lib/messages.c:82
 msgid "internal error (rpm bug?): "
 msgstr "interní chyba (chyba rpm?): "
 
-#: ../lib/misc.c:342 ../lib/misc.c:348 ../lib/misc.c:355
+#: lib/misc.c:367 lib/misc.c:373 lib/misc.c:380
 #, fuzzy, c-format
 msgid "error creating temporary file %s"
 msgstr "chyba pøi vytváøení adresáøe %s: %s"
 
-#: ../lib/oldheader.c:292
+#: lib/oldheader.c:299
 #, fuzzy, c-format
 msgid "bad file state: %s"
 msgstr "nelze provést statistiku %s: %s"
 
-#: ../lib/package.c:51
+#: lib/package.c:234
 msgid "package is a version one package!\n"
 msgstr "balíèek je balíèkem verze jedna!\n"
 
-#: ../lib/package.c:54
+#: lib/package.c:239
 msgid "old style source package -- I'll do my best\n"
 msgstr "zdrojový balíèek starého typu -- snaha bude\n"
 
-#: ../lib/package.c:57
+#: lib/package.c:242
 #, c-format
 msgid "archive offset is %d\n"
 msgstr "offset archivu je %d\n"
 
-#: ../lib/package.c:67
+#: lib/package.c:252
 msgid "old style binary package\n"
 msgstr "binární balíèek starého typu\n"
 
-#: ../lib/package.c:105
+#: lib/package.c:298
 msgid ""
 "only packages with major numbers <= 3 are supported by this version of RPM"
 msgstr ""
 "tato verze RPM podporuje jen balíèky, které mají hlavní (major) èísla <= 3"
 
-#: ../lib/problems.c:29
+#: lib/problems.c:43
+#, c-format
+msgid " is needed by %s-%s-%s\n"
+msgstr " je nutné pro %s-%s-%s\n"
+
+#: lib/problems.c:46
+#, c-format
+msgid " conflicts with %s-%s-%s\n"
+msgstr " koliduje s %s-%s-%s\n"
+
+#: lib/problems.c:66
 #, fuzzy, c-format
-msgid "package %s-%s-%s is for a different operating system"
+msgid "package %s-%s-%s is for a different architecture"
 msgstr "balíèek %s-%s-%s obsahuje sdílení soubory\n"
 
-#: ../lib/problems.c:34
+#: lib/problems.c:71
 #, fuzzy, c-format
-msgid "package %s-%s-%s is for a different architecture"
+msgid "package %s-%s-%s is for a different operating system"
 msgstr "balíèek %s-%s-%s obsahuje sdílení soubory\n"
 
-#: ../lib/problems.c:39
+#: lib/problems.c:76
 #, fuzzy, c-format
 msgid "package %s-%s-%s is already installed"
 msgstr "balíèek %s není nainstalován\n"
 
-#: ../lib/problems.c:44
+#: lib/problems.c:81
 #, fuzzy, c-format
 msgid "path %s is not relocateable for package %s-%s-%s"
 msgstr "balíèek %s není nainstalován\n"
 
-#: ../lib/problems.c:49
+#: lib/problems.c:86
 #, c-format
 msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
 msgstr ""
 
-#: ../lib/problems.c:55
+#: lib/problems.c:92
 #, fuzzy, c-format
 msgid ""
 "file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
 msgstr " koliduje s %s-%s-%s\n"
 
-#: ../lib/problems.c:61
+#: lib/problems.c:98
 #, fuzzy, c-format
 msgid "package %s-%s-%s (which is newer then %s-%s-%s) is already installed"
 msgstr "balíèek %s-%s-%s obsahuje sdílení soubory\n"
 
-#: ../lib/problems.c:67
+#: lib/problems.c:104
 #, c-format
-msgid "installing package %s-%s-%s needs %ld%c on the %s filesystem"
+msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: ../lib/problems.c:77
+#: lib/problems.c:116
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
 
-#: ../lib/query.c:57
-#, fuzzy
-msgid "query package owning file"
-msgstr "dotazy na balíèek vlastnící <soubor>"
-
-#: ../lib/query.c:59
-#, fuzzy
-msgid "query packages in group"
-msgstr "balíèek nemá skupinu\n"
-
-#: ../lib/query.c:61
-#, fuzzy
-msgid "query a package file"
-msgstr "dotazovat v¹echny balíèky"
-
-#: ../lib/query.c:65
-#, fuzzy
-msgid "query a spec file"
-msgstr "dotaz na %s se nezdaøil\n"
-
-#: ../lib/query.c:67
-#, fuzzy
-msgid "query the pacakges triggered by the package"
-msgstr "dotazy na balíèky aktivované <balíkem>"
-
-#: ../lib/query.c:69
-#, fuzzy
-msgid "query the packages which require a capability"
-msgstr "dotazovat balíèky vy¾adující schopnost <sch>"
-
-#: ../lib/query.c:71
-#, fuzzy
-msgid "query the packages which provide a capability"
-msgstr "dotazovat balíèky poskytující schopnost <sch>"
-
-#: ../lib/query.c:108
-#, fuzzy
-msgid "list all configuration files"
-msgstr "uvést pouze konfiguraèní soubory (implikuje -l)"
-
-#: ../lib/query.c:110
-#, fuzzy
-msgid "list all documentation files"
-msgstr "nainstalovat dokumentaci"
-
-#: ../lib/query.c:112
-#, fuzzy
-msgid "dump basic file information"
-msgstr "zobrazit informace o balíèku"
-
-#: ../lib/query.c:114
-#, fuzzy
-msgid "list files in package"
-msgstr "binární balíèek starého typu\n"
-
-#: ../lib/query.c:118
-msgid "use the following query format"
-msgstr ""
-
-#: ../lib/query.c:120
-msgid "substitute i18n sections from the following catalogue"
-msgstr ""
-
-#: ../lib/query.c:123
-msgid "display the states of the listed files"
-msgstr ""
-
-#: ../lib/query.c:125
-#, fuzzy
-msgid "display a verbose file listing"
-msgstr "zobrazit seznam souborù balíèkù"
-
-#: ../lib/query.c:136
+#: lib/query.c:138
 #, c-format
 msgid "error in format: %s\n"
 msgstr "chyba v formátu: %s\n"
 
-#: ../lib/query.c:177
+#: lib/query.c:180
 msgid "(contains no files)"
 msgstr "(neobsahuje soubory)"
 
-#: ../lib/query.c:230
+#: lib/query.c:233
 msgid "normal        "
 msgstr "normální      "
 
-#: ../lib/query.c:232
+#: lib/query.c:235
 msgid "replaced      "
 msgstr "nahrazen      "
 
-#: ../lib/query.c:234
-msgid "net shared    "
-msgstr "sdílen v síti "
-
-#: ../lib/query.c:236
+#: lib/query.c:237
 msgid "not installed "
 msgstr "neinstalován  "
 
-#: ../lib/query.c:238
+#: lib/query.c:239
+msgid "net shared    "
+msgstr "sdílen v síti "
+
+#: lib/query.c:241
 #, c-format
 msgid "(unknown %3d) "
 msgstr "(neznámý %3d) "
 
-#: ../lib/query.c:242
+#: lib/query.c:245
 msgid "(no state)    "
 msgstr "(chybí stav)  "
 
-#: ../lib/query.c:258 ../lib/query.c:288
+#: lib/query.c:261 lib/query.c:291
 msgid "package has neither file owner or id lists"
 msgstr "balíèek nemá vlastníka souboru ani id-seznamy"
 
-#: ../lib/query.c:514
+#: lib/query.c:400
 #, fuzzy, c-format
 msgid "record number %u\n"
 msgstr "probíhá ovìøování záznamu èíslo %d\n"
 
-#: ../lib/query.c:518
+#: lib/query.c:404
 msgid "error: could not read database record\n"
 msgstr "chyba: nelze naèíst databázový záznam\n"
 
-#: ../lib/query.c:547
+#: lib/query.c:442
 #, fuzzy, c-format
-msgid "open of %s failed\n"
+msgid "open of %s failed: %s\n"
 msgstr "nelze otevøít %s: %s\n"
 
-#: ../lib/query.c:560
+#: lib/query.c:455
 msgid "old format source packages cannot be queried\n"
 msgstr "na zdrojové balíèky starého formátu se nelze dotazovat\n"
 
-#: ../lib/query.c:572
+#: lib/query.c:464 lib/rpminstall.c:203
+#, c-format
+msgid "%s does not appear to be a RPM package\n"
+msgstr "nezdá se, ¾e by %s byl balíèek typu RPM\n"
+
+#: lib/query.c:467
 #, c-format
 msgid "query of %s failed\n"
 msgstr "dotaz na %s se nezdaøil\n"
 
-#: ../lib/query.c:593
+#: lib/query.c:494
 #, fuzzy, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "dotaz na %s se nezdaøil\n"
 
-#: ../lib/query.c:627
+#: lib/query.c:519
 msgid "could not read database record!\n"
 msgstr "nelze naèíst databázový záznam!\n"
 
-#: ../lib/query.c:638
+#: lib/query.c:530
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "skupina %s neobsahuje ¾ádné balíèky\n"
 
-#: ../lib/query.c:648
+#: lib/query.c:540
 #, c-format
 msgid "no package provides %s\n"
 msgstr "¾ádný balíèek neposkytuje %s\n"
 
-#: ../lib/query.c:658
+#: lib/query.c:550
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "¾ádný balíèek neaktivuje %s\n"
 
-#: ../lib/query.c:668
+#: lib/query.c:560
 #, c-format
 msgid "no package requires %s\n"
 msgstr "¾ádný balíèek nevy¾aduje %s\n"
 
-#: ../lib/query.c:683
+#: lib/query.c:575
 #, c-format
 msgid "file %s: %s\n"
 msgstr "soubor %s: %s\n"
 
-#: ../lib/query.c:686
+#: lib/query.c:578
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "¾ádný balíèek nevlastní soubor %s\n"
 
-#: ../lib/query.c:699
+#: lib/query.c:591
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "neplatné èíslo balíèku: %s\n"
 
-#: ../lib/query.c:702
+#: lib/query.c:594
 #, fuzzy, c-format
 msgid "package record number: %d\n"
 msgstr "probíhá dotaz na záznam èíslo %d\n"
 
-#: ../lib/query.c:705
+#: lib/query.c:597
 #, c-format
 msgid "record %d could not be read\n"
 msgstr "záznam %d nelze naèíst\n"
 
-#: ../lib/query.c:720
+#: lib/query.c:609 lib/rpminstall.c:393
+#, c-format
+msgid "package %s is not installed\n"
+msgstr "balíèek %s není nainstalován\n"
+
+#: lib/query.c:612
 #, c-format
 msgid "error looking for package %s\n"
 msgstr "chyba pøi hledání balíèku %s\n"
 
-#: ../lib/query.c:742
+#: lib/query.c:634
 #, fuzzy
 msgid "rpmQuery: rpmdbOpen() failed\n"
 msgstr "%s: Chybné otevøení\n"
 
-#: ../lib/rebuilddb.c:18
+#: lib/query.c:691
+#, fuzzy
+msgid "query package owning file"
+msgstr "dotazy na balíèek vlastnící <soubor>"
+
+#: lib/query.c:693
+#, fuzzy
+msgid "query packages in group"
+msgstr "balíèek nemá skupinu\n"
+
+#: lib/query.c:695
+#, fuzzy
+msgid "query a package file"
+msgstr "dotazovat v¹echny balíèky"
+
+#: lib/query.c:699
+#, fuzzy
+msgid "query a spec file"
+msgstr "dotaz na %s se nezdaøil\n"
+
+#: lib/query.c:701
+#, fuzzy
+msgid "query the pacakges triggered by the package"
+msgstr "dotazy na balíèky aktivované <balíkem>"
+
+#: lib/query.c:703
+#, fuzzy
+msgid "query the packages which require a capability"
+msgstr "dotazovat balíèky vy¾adující schopnost <sch>"
+
+#: lib/query.c:705
+#, fuzzy
+msgid "query the packages which provide a capability"
+msgstr "dotazovat balíèky poskytující schopnost <sch>"
+
+#: lib/query.c:742
+#, fuzzy
+msgid "list all configuration files"
+msgstr "uvést pouze konfiguraèní soubory (implikuje -l)"
+
+#: lib/query.c:744
+#, fuzzy
+msgid "list all documentation files"
+msgstr "nainstalovat dokumentaci"
+
+#: lib/query.c:746
+#, fuzzy
+msgid "dump basic file information"
+msgstr "zobrazit informace o balíèku"
+
+#: lib/query.c:748
+#, fuzzy
+msgid "list files in package"
+msgstr "binární balíèek starého typu\n"
+
+#: lib/query.c:752
+msgid "use the following query format"
+msgstr ""
+
+#: lib/query.c:754
+msgid "substitute i18n sections from the following catalogue"
+msgstr ""
+
+#: lib/query.c:757
+msgid "display the states of the listed files"
+msgstr ""
+
+#: lib/query.c:759
+#, fuzzy
+msgid "display a verbose file listing"
+msgstr "zobrazit seznam souborù balíèkù"
+
+#: lib/rebuilddb.c:20
 #, c-format
 msgid "rebuilding database in rootdir %s\n"
 msgstr "databáze se pøestavuje v koøenovém adresáøi %s\n"
 
-#: ../lib/rebuilddb.c:22 ../lib/rpmdb.c:64 ../lib/rpmdb.c:82 ../lib/rpmdb.c:98
+#: lib/rebuilddb.c:24 lib/rpmdb.c:69 lib/rpmdb.c:88 lib/rpmdb.c:105
 msgid "no dbpath has been set"
 msgstr "nebyla nastavena dbpath"
 
-#: ../lib/rebuilddb.c:30
+#: lib/rebuilddb.c:33
 #, c-format
 msgid "temporary database %s already exists"
 msgstr "doèasná databáze %s ji¾ existuje"
 
-#: ../lib/rebuilddb.c:34
+#: lib/rebuilddb.c:37
 #, c-format
 msgid "creating directory: %s\n"
 msgstr "vytváøí se adresáø: %s\n"
 
-#: ../lib/rebuilddb.c:36
+#: lib/rebuilddb.c:39
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr "chyba pøi vytváøení adresáøe %s: %s"
 
-#: ../lib/rebuilddb.c:44
+#: lib/rebuilddb.c:43
 msgid "opening old database\n"
 msgstr "otevírá se stará databáze\n"
 
-#: ../lib/rebuilddb.c:51
+#: lib/rebuilddb.c:50
 msgid "opening new database\n"
 msgstr "otevírá se nová databáze\n"
 
-#: ../lib/rebuilddb.c:61 ../lib/rebuilddb.c:79
+#: lib/rebuilddb.c:60 lib/rebuilddb.c:78
 #, c-format
 msgid "record number %d in database is bad -- skipping it"
 msgstr "záznam èíslo %d v databázi je chybný -- vynechává se"
 
-#: ../lib/rebuilddb.c:73
+#: lib/rebuilddb.c:72
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr "nelze pøidat záznam - pùvodnì u %d"
 
-#: ../lib/rebuilddb.c:92
+#: lib/rebuilddb.c:91
 msgid "failed to rebuild database; original database remains in place\n"
 msgstr "databázi nelze pøestavit; pùvodní databáze zùstává na svém místì\n"
 
-#: ../lib/rebuilddb.c:100
+#: lib/rebuilddb.c:99
 msgid "failed to replace old database with new database!\n"
 msgstr "starou databázi nelze nahradit novou databází!\n"
 
-#: ../lib/rebuilddb.c:102
+#: lib/rebuilddb.c:101
 #, c-format
 msgid "replaces files in %s with files from %s to recover"
 msgstr "aby se obnovily, nahrazuje soubory v %s soubory z %s"
 
-#: ../lib/rebuilddb.c:108
+#: lib/rebuilddb.c:107
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "nelze odstranit %s: %s\n"
 
-#: ../lib/rpmdb.c:159
+#: lib/rpmchecksig.c:31
+#, fuzzy, c-format
+msgid "%s: fdOpen failed: %s\n"
+msgstr "%s: Chybné otevøení\n"
+
+#: lib/rpmchecksig.c:42
+#, fuzzy
+msgid "makeTempFile failed\n"
+msgstr "nelze spustit\n"
+
+#: lib/rpmchecksig.c:74
+#, fuzzy, c-format
+msgid "%s: fdWrite failed: %s\n"
+msgstr "%s: Chybné otevøení\n"
+
+#: lib/rpmchecksig.c:80
+#, fuzzy, c-format
+msgid "%s: fdRead failed: %s\n"
+msgstr "%s: Chybné readLead\n"
+
+#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:242
+#, c-format
+msgid "%s: readLead failed\n"
+msgstr "%s: Chybné readLead\n"
+
+#: lib/rpmchecksig.c:118
+#, c-format
+msgid "%s: Can't sign v1.0 RPM\n"
+msgstr "%s: RPM v1.0 nelze podepsat\n"
+
+#: lib/rpmchecksig.c:122
+#, c-format
+msgid "%s: Can't re-sign v2.0 RPM\n"
+msgstr "%s: RPM v2.0 nelze podepsat znovu\n"
+
+#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:256
+#, c-format
+msgid "%s: rpmReadSignature failed\n"
+msgstr "%s: Chybné rpmReadSignature\n"
+
+#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:261
+#, c-format
+msgid "%s: No signature available\n"
+msgstr "%s: Dostupný není ¾ádný podpis\n"
+
+#: lib/rpmchecksig.c:167
+#, fuzzy, c-format
+msgid "%s: writeLead failed: %s\n"
+msgstr "%s: Chybné readLead\n"
+
+#: lib/rpmchecksig.c:173
+#, fuzzy, c-format
+msgid "%s: rpmWriteSignature failed\n"
+msgstr "%s: Chybné rpmReadSignature\n"
+
+#: lib/rpmchecksig.c:248
+#, c-format
+msgid "%s: No signature available (v1.0 RPM)\n"
+msgstr "%s: Podpis není dostupný (RPM v1.0)\n"
+
+#: lib/rpmchecksig.c:408
+msgid "NOT OK"
+msgstr "NENÍ TO OK"
+
+#: lib/rpmchecksig.c:409 lib/rpmchecksig.c:423
+#, fuzzy
+msgid " (MISSING KEYS:"
+msgstr " (CHYBÍ KLÍÈE) "
+
+#: lib/rpmchecksig.c:411 lib/rpmchecksig.c:425
+msgid ") "
+msgstr ""
+
+#: lib/rpmchecksig.c:412 lib/rpmchecksig.c:426
+msgid " (UNTRUSTED KEYS:"
+msgstr ""
+
+#: lib/rpmchecksig.c:414 lib/rpmchecksig.c:428
+msgid ")"
+msgstr ""
+
+#: lib/rpmchecksig.c:422
+msgid "OK"
+msgstr "OK"
+
+#: lib/rpmdb.c:184
 #, fuzzy, c-format
 msgid "opening database mode 0x%x in %s\n"
 msgstr "probíhá otevírání databázového re¾imu: 0%o\n"
 
-#: ../lib/rpmdb.c:182 ../lib/rpmdb.c:189
+#: lib/rpmdb.c:193 lib/url.c:431
+#, c-format
+msgid "failed to open %s\n"
+msgstr "nelze otevøít %s\n"
+
+#: lib/rpmdb.c:206 lib/rpmdb.c:214
 #, c-format
 msgid "cannot get %s lock on database"
 msgstr "nelze získat %s zámek k databázi"
 
-#: ../lib/rpmdb.c:183
+#: lib/rpmdb.c:207
 msgid "exclusive"
 msgstr "výhradní"
 
-#: ../lib/rpmdb.c:190
+#: lib/rpmdb.c:215
 msgid "shared"
 msgstr "sdílený"
 
-#: ../lib/rpmdb.c:213
+#: lib/rpmdb.c:246
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
-#: ../lib/rpmdb.c:372
+#: lib/rpmdb.c:439
 #, c-format
 msgid "package %s not listed in %s"
 msgstr "balíèek %s není uveden v %s"
 
-#: ../lib/rpmdb.c:383
+#: lib/rpmdb.c:450
 #, c-format
 msgid "package %s not found in %s"
 msgstr "balíèek %s nenalezen v %s"
 
-#: ../lib/rpmdb.c:407 ../lib/uninstall.c:40
+#: lib/rpmdb.c:475 lib/uninstall.c:85
 #, c-format
 msgid "cannot read header at %d for uninstall"
 msgstr "nelze èíst hlavièku u %d pro deinstalaci"
 
-#: ../lib/rpmdb.c:415
+#: lib/rpmdb.c:483
 msgid "package has no name"
 msgstr "balíèek nemá název"
 
-#: ../lib/rpmdb.c:417
+#: lib/rpmdb.c:485
 msgid "removing name index\n"
 msgstr "odstraòuje se rejstøík názvù\n"
 
-#: ../lib/rpmdb.c:422
+#: lib/rpmdb.c:490
 msgid "package has no group\n"
 msgstr "balíèek nemá skupinu\n"
 
-#: ../lib/rpmdb.c:424
+#: lib/rpmdb.c:492
 msgid "removing group index\n"
 msgstr "odstraòuje se rejstøík skupin\n"
 
-#: ../lib/rpmdb.c:431
+#: lib/rpmdb.c:499
 #, c-format
 msgid "removing provides index for %s\n"
 msgstr "odstraòuje se rejstøík 'poskytuje' pro %s\n"
 
-#: ../lib/rpmdb.c:446
+#: lib/rpmdb.c:514
 #, c-format
 msgid "removing requiredby index for %s\n"
 msgstr "odstraòuje se rejstøík 'vy¾aduje' pro %s\n"
 
-#: ../lib/rpmdb.c:458
+#: lib/rpmdb.c:526
 #, c-format
 msgid "removing trigger index for %s\n"
 msgstr "odstraòuje se rejstøík aktivací pro %s\n"
 
-#: ../lib/rpmdb.c:469
+#: lib/rpmdb.c:537
 #, c-format
 msgid "removing conflict index for %s\n"
 msgstr "odstraòuje se rejstøík konfliktù pro %s\n"
 
-#: ../lib/rpmdb.c:486
+#: lib/rpmdb.c:554
 #, c-format
 msgid "removing file index for %s\n"
 msgstr "odstraòuje se rejstøík souborù pro %s\n"
 
-#: ../lib/rpmdb.c:495
+#: lib/rpmdb.c:563
 msgid "package has no files\n"
 msgstr "balíèek neobsahuje soubory\n"
 
-#: ../lib/rpmdb.c:568
+#: lib/rpmdb.c:645
 msgid "cannot allocate space for database"
 msgstr "nelze alokovat prostor pro databázi"
 
-#: ../lib/rpmdb.c:639
+#: lib/rpmdb.c:711
 #, c-format
 msgid "cannot read header at %d for update"
 msgstr "nelze èíst hlavièku u %d pro inovaci"
 
-#: ../lib/rpmdb.c:648
+#: lib/rpmdb.c:720
 msgid "header changed size!"
 msgstr "hlavièka zmìnila velikost!"
 
-#: ../lib/rpmlead.c:41
+#: lib/rpminstall.c:128
+msgid "counting packages to install\n"
+msgstr "probíhá poèítání balíèkù pro instalaci\n"
+
+#: lib/rpminstall.c:132
+#, c-format
+msgid "found %d packages\n"
+msgstr "nalezeno %d balíèkù\n"
+
+#: lib/rpminstall.c:141
+msgid "looking for packages to download\n"
+msgstr "probíhá hledání balíèkù pro sta¾ení\n"
+
+#: lib/rpminstall.c:152
+#, c-format
+msgid "Retrieving %s\n"
+msgstr "Probíhá naèítání %s\n"
+
+#: lib/rpminstall.c:161
+#, c-format
+msgid " ... as %s\n"
+msgstr ""
+
+#: lib/rpminstall.c:165
+#, fuzzy, c-format
+msgid "skipping %s - transfer failed - %s\n"
+msgstr "chyba: vynechává se %s - pøenos neúspì¹ný - %s\n"
+
+#: lib/rpminstall.c:182
+#, c-format
+msgid "retrieved %d packages\n"
+msgstr "získalo se %d balíèkù\n"
+
+#: lib/rpminstall.c:191 lib/rpminstall.c:332
+#, fuzzy, c-format
+msgid "cannot open file %s\n"
+msgstr "nelze otevøít soubor %s: "
+
+#: lib/rpminstall.c:207 lib/rpminstall.c:469
+#, fuzzy, c-format
+msgid "%s cannot be installed\n"
+msgstr "chyba: %s nelze nainstalovat\n"
+
+#: lib/rpminstall.c:243
+#, fuzzy, c-format
+msgid "package %s is not relocateable\n"
+msgstr "balíèek %s není nainstalován\n"
+
+#: lib/rpminstall.c:261
+#, fuzzy, c-format
+msgid "error reading from file %s\n"
+msgstr "chyba pøi vytváøení adresáøe %s: %s"
+
+#: lib/rpminstall.c:266
+#, c-format
+msgid "file %s requires a newer version of RPM\n"
+msgstr ""
+
+#: lib/rpminstall.c:283
+#, c-format
+msgid "found %d source and %d binary packages\n"
+msgstr "nalezeno %d zdrojových a %d binárních balíèkù\n"
+
+#: lib/rpminstall.c:294
+msgid "failed dependencies:\n"
+msgstr "chybné závislosti:\n"
+
+#: lib/rpminstall.c:312
+msgid "installing binary packages\n"
+msgstr "probíhá instalace binárních balíèkù\n"
+
+#: lib/rpminstall.c:397
+#, fuzzy, c-format
+msgid "searching for package %s\n"
+msgstr "chyba pøi hledání balíèku %s\n"
+
+#: lib/rpminstall.c:406
+#, c-format
+msgid "\"%s\" specifies multiple packages\n"
+msgstr "\"%s\" specifikuje více balíèkù\n"
+
+#: lib/rpminstall.c:432
+msgid "removing these packages would break dependencies:\n"
+msgstr "odstranìní tìchto balíèkù by poru¹ilo závislosti:\n"
+
+#: lib/rpminstall.c:459
+#, fuzzy, c-format
+msgid "cannot open %s\n"
+msgstr "chyba: nelze otevøít %s\n"
+
+#: lib/rpminstall.c:464
+#, c-format
+msgid "Installing %s\n"
+msgstr "Probíhá instalace %s\n"
+
+#: lib/rpmlead.c:48
 #, c-format
 msgid "read failed: %s (%d)"
 msgstr "nelze èíst: %s (%d)"
 
-#: ../lib/rpmrc.c:178
+#: lib/rpmrc.c:177
 #, c-format
 msgid "missing second ':' at %s:%d"
 msgstr "chybí druhá ':' u %s:%d"
 
-#: ../lib/rpmrc.c:181
+#: lib/rpmrc.c:180
 #, c-format
 msgid "missing architecture name at %s:%d"
 msgstr "chybí název architektury u %s:%d"
 
-#: ../lib/rpmrc.c:329
+#: lib/rpmrc.c:328
 #, c-format
 msgid "Incomplete data line at %s:%d"
 msgstr "Neúplný datový øádek u %s:%d"
 
-#: ../lib/rpmrc.c:333
+#: lib/rpmrc.c:332
 #, c-format
 msgid "Too many args in data line at %s:%d"
 msgstr "Pøíli¹ mnoho argumentù v datovém øádku u %s:%d"
 
-#: ../lib/rpmrc.c:340
+#: lib/rpmrc.c:339
 #, c-format
 msgid "Bad arch/os number: %s (%s:%d)"
 msgstr "Chybné èíslo arch/os: %s (%s:%d)"
 
-#: ../lib/rpmrc.c:374
+#: lib/rpmrc.c:373
 #, c-format
 msgid "Incomplete default line at %s:%d"
 msgstr "Neúplný výchozí øádek u %s:%d"
 
-#: ../lib/rpmrc.c:379
+#: lib/rpmrc.c:378
 #, c-format
 msgid "Too many args in default line at %s:%d"
 msgstr "Pøíli¹ mnoho argumentù ve výchozím øádku u %s:%d"
 
-#: ../lib/rpmrc.c:562
+#: lib/rpmrc.c:561
 #, c-format
 msgid "Cannot expand %s"
 msgstr ""
 
-#: ../lib/rpmrc.c:577
+#: lib/rpmrc.c:576
 #, c-format
 msgid "Unable to open %s for reading: %s."
 msgstr "Nelze otevøít %s pro ètení: %s."
 
-#: ../lib/rpmrc.c:611
+#: lib/rpmrc.c:608
 #, c-format
 msgid "Failed to read %s: %s."
 msgstr "Nelze èíst %s: %s."
 
-#: ../lib/rpmrc.c:642
+#: lib/rpmrc.c:638
 #, c-format
 msgid "missing ':' at %s:%d"
 msgstr "chybí ':' u %s:%d"
 
-#: ../lib/rpmrc.c:658 ../lib/rpmrc.c:716
+#: lib/rpmrc.c:655 lib/rpmrc.c:729
 #, c-format
 msgid "missing argument for %s at %s:%d"
 msgstr "chybí argument pro %s u %s:%d"
 
-#: ../lib/rpmrc.c:672 ../lib/rpmrc.c:690
+#: lib/rpmrc.c:672 lib/rpmrc.c:694
 #, fuzzy, c-format
 msgid "%s expansion failed at %s:%d \"%s\""
 msgstr "nelze otevøít %s: %s"
 
-#: ../lib/rpmrc.c:678
+#: lib/rpmrc.c:680
 #, fuzzy, c-format
 msgid "cannot open %s at %s:%d"
 msgstr "nelze otevøít soubor %s: "
 
-#: ../lib/rpmrc.c:706
+#: lib/rpmrc.c:721
 #, c-format
 msgid "missing architecture for %s at %s:%d"
 msgstr "chybí architektura pro %s u %s:%d"
 
-#: ../lib/rpmrc.c:773
+#: lib/rpmrc.c:788
 #, c-format
 msgid "bad option '%s' at %s:%d"
 msgstr "chybná volba '%s' u %s:%d"
 
-#: ../lib/rpmrc.c:1109
+#: lib/rpmrc.c:1147
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr "Neznámý systém: %s\n"
 
-#: ../lib/rpmrc.c:1110
+#: lib/rpmrc.c:1148
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr "Zkontaktujte rpm-list@redhat.com\n"
 
-#: ../lib/signature.c:147
+#: lib/signature.c:106
+#, c-format
+msgid "sigsize         : %d\n"
+msgstr "velikostpodpisu : %d\n"
+
+#: lib/signature.c:107
+#, c-format
+msgid "Header + Archive: %d\n"
+msgstr "Hlavièka+archiv : %d\n"
+
+#: lib/signature.c:108
+#, c-format
+msgid "expected size   : %d\n"
+msgstr "oèekáv. velikost: %d\n"
+
+#: lib/signature.c:112
+msgid "file is not regular -- skipping size check\n"
+msgstr "soubor není regulérní -- kontrola velikosti se vynechává\n"
+
+#: lib/signature.c:134
 msgid "No signature\n"
 msgstr "Chybí podpis\n"
 
-#: ../lib/signature.c:150
+#: lib/signature.c:137
 msgid "Old PGP signature\n"
 msgstr "Starý podpis PGP\n"
 
-#: ../lib/signature.c:163
+#: lib/signature.c:149
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr "Starý (pouze interní) podpis! Jak jste to získali!?"
 
-#: ../lib/signature.c:167
+#: lib/signature.c:153
 msgid "New Header signature\n"
 msgstr "Podpis nové hlavièky\n"
 
 #. 8-byte pad
-#: ../lib/signature.c:175 ../lib/signature.c:213
+#: lib/signature.c:160 lib/signature.c:202
 #, c-format
 msgid "Signature size: %d\n"
 msgstr "Velikost podpisu: %d\n"
 
-#: ../lib/signature.c:176 ../lib/signature.c:214
+#: lib/signature.c:161 lib/signature.c:203
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr "Podlo¾ka podpisu: %d\n"
 
-#: ../lib/signature.c:306 ../lib/signature.c:812
-msgid "Couldn't exec pgp"
+#: lib/signature.c:266
+#, fuzzy, c-format
+msgid "Couldn't exec pgp (%s)"
 msgstr "Nelze spustit pgp"
 
-#: ../lib/signature.c:317
+#: lib/signature.c:277
 msgid "pgp failed"
 msgstr "chyba pgp"
 
 #. PGP failed to write signature
 #. Just in case
-#: ../lib/signature.c:324
+#: lib/signature.c:284
 msgid "pgp failed to write signature"
 msgstr "chyba pgp pøi zápisu podpisu"
 
-#: ../lib/signature.c:329
+#: lib/signature.c:289
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "Velikost podpisu PGP: %d\n"
 
-#: ../lib/signature.c:340 ../lib/signature.c:416
+#: lib/signature.c:300 lib/signature.c:377
 msgid "unable to read the signature"
 msgstr "podpis nelze pøeèíst"
 
-#: ../lib/signature.c:345
+#: lib/signature.c:305
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "Zisk %d bajtù podpisu PGP\n"
 
-#: ../lib/signature.c:382 ../lib/signature.c:787
+#: lib/signature.c:343 lib/signature.c:686
 #, fuzzy
 msgid "Couldn't exec gpg"
 msgstr "Nelze spustit pgp"
 
-#: ../lib/signature.c:393
+#: lib/signature.c:354
 #, fuzzy
 msgid "gpg failed"
 msgstr "chyba pgp"
 
 #. GPG failed to write signature
 #. Just in case
-#: ../lib/signature.c:400
+#: lib/signature.c:361
 #, fuzzy
 msgid "gpg failed to write signature"
 msgstr "chyba pgp pøi zápisu podpisu"
 
-#: ../lib/signature.c:405
+#: lib/signature.c:366
 #, fuzzy, c-format
 msgid "GPG sig size: %d\n"
 msgstr "Velikost podpisu PGP: %d\n"
 
-#: ../lib/signature.c:421
+#: lib/signature.c:382
 #, fuzzy, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr "Zisk %d bajtù podpisu PGP\n"
 
-#: ../lib/signature.c:436
-#, c-format
-msgid "sigsize         : %d\n"
-msgstr "velikostpodpisu : %d\n"
-
-#: ../lib/signature.c:437
-#, c-format
-msgid "Header + Archive: %d\n"
-msgstr "Hlavièka+archiv : %d\n"
-
-#: ../lib/signature.c:438
-#, c-format
-msgid "expected size   : %d\n"
-msgstr "oèekáv. velikost: %d\n"
+#: lib/signature.c:409
+#, fuzzy
+msgid "Generating signature using PGP.\n"
+msgstr "Probíhá generování podpisu: %d\n"
 
-#: ../lib/signature.c:442
-msgid "file is not regular -- skipping size check\n"
-msgstr "soubor není regulérní -- kontrola velikosti se vynechává\n"
+#: lib/signature.c:415
+#, fuzzy
+msgid "Generating signature using GPG.\n"
+msgstr "Probíhá generování podpisu: %d\n"
 
-#: ../lib/signature.c:560 ../lib/signature.c:607
+#: lib/signature.c:492 lib/signature.c:554
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr "Nelze spustit pgp. Vynechte kontroly PGP pomocí --nopgp."
 
-#: ../lib/signature.c:605 ../lib/signature.c:677
+#: lib/signature.c:552 lib/signature.c:625
 msgid "exec failed!\n"
 msgstr "nelze spustit!\n"
 
-#: ../lib/signature.c:679
+#: lib/signature.c:627
 #, fuzzy
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr "Nelze spustit pgp. Vynechte kontroly PGP pomocí --nopgp."
 
-#: ../lib/signature.c:716
+#: lib/signature.c:715
+msgid "Couldn't exec pgp"
+msgstr "Nelze spustit pgp"
+
+#. @notreached@
+#. This case should have been screened out long ago.
+#: lib/signature.c:719 lib/signature.c:772
+msgid "Invalid %%_signature spec in macro file"
+msgstr ""
+
+#: lib/signature.c:752
 #, fuzzy
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr "V souboru rpmrc se musí nastavit \"pgp_name:\""
 
-#: ../lib/signature.c:728
+#: lib/signature.c:764
 #, fuzzy
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr "V souboru rpmrc se musí nastavit \"pgp_name:\""
 
-#. Currently the calling function (rpm.c:main) is checking this and
-#. * doing a better job.  This section should never be accessed.
-#.
-#: ../lib/signature.c:736 ../lib/signature.c:816
-msgid "Invalid %%_signature spec in macro file"
-msgstr ""
-
-#: ../lib/transaction.c:793
+#: lib/transaction.c:363
 #, fuzzy, c-format
 msgid "relocating %s to %s\n"
 msgstr "Probíhá získávání %s jako %s\n"
 
-#: ../lib/transaction.c:799
+#: lib/transaction.c:370
 #, fuzzy, c-format
 msgid "excluding %s\n"
 msgstr "Probíhá naèítání %s\n"
 
-#: ../lib/transaction.c:887
+#: lib/transaction.c:489
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: ../lib/uninstall.c:51
+#: lib/uninstall.c:37
+#, c-format
+msgid "cannot remove %s - directory not empty"
+msgstr "%s nelze odstranit - adresáø není prázdný"
+
+#: lib/uninstall.c:40
+#, c-format
+msgid "rmdir of %s failed: %s"
+msgstr "neúspìch rmdir %s: %s"
+
+#: lib/uninstall.c:48
+#, c-format
+msgid "removal of %s failed: %s"
+msgstr "%s nelze odstranit: %s"
+
+#: lib/uninstall.c:97
 #, c-format
 msgid "cannot read packages named %s for uninstall"
 msgstr "nelze èíst balíèky nazvané %d pro deinstalaci"
 
-#: ../lib/uninstall.c:79
+#: lib/uninstall.c:130
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr "odstraní se soubory test = %d\n"
 
-#: ../lib/uninstall.c:124
+#: lib/uninstall.c:191
 msgid "running postuninstall script (if any)\n"
 msgstr "spou¹tí se pøípadný poinstalaèní skript\n"
 
-#: ../lib/uninstall.c:138
+#: lib/uninstall.c:204
 msgid "removing database entry\n"
 msgstr "odstraòuje se polo¾ka databáze\n"
 
-#: ../lib/uninstall.c:289
+#: lib/uninstall.c:365
 msgid "execution of script failed"
 msgstr "skript nelze spustit"
 
-#: ../lib/uninstall.c:348
+#: lib/url.c:144
 #, c-format
-msgid "cannot remove %s - directory not empty"
-msgstr "%s nelze odstranit - adresáø není prázdný"
+msgid "Password for %s@%s: "
+msgstr "Heslo pro %s@%s: "
+
+#: lib/url.c:168 lib/url.c:194
+#, fuzzy, c-format
+msgid "error: %sport must be a number\n"
+msgstr "chyba: ftpport musí být èíslo\n"
 
-#: ../lib/uninstall.c:351
+#: lib/url.c:279
+#, fuzzy
+msgid "url port must be a number\n"
+msgstr "chyba: ftpport musí být èíslo\n"
+
+#. XXX PARANOIA
+#: lib/url.c:317
 #, c-format
-msgid "rmdir of %s failed: %s"
-msgstr "neúspìch rmdir %s: %s"
+msgid "logging into %s as %s, pw %s\n"
+msgstr "probíhá pøihla¹ování na %s jako %s, h. %s\n"
 
-#: ../lib/uninstall.c:359
+#: lib/url.c:446
 #, c-format
-msgid "removal of %s failed: %s"
-msgstr "%s nelze odstranit: %s"
+msgid "failed to create %s\n"
+msgstr "%s nelze vytvoøit\n"
 
-#: ../lib/verify.c:36
+#: lib/verify.c:36
 #, fuzzy
 msgid "don't verify files in package"
 msgstr "binární balíèek starého typu\n"
 
-#: ../lib/verify.c:206
+#: lib/verify.c:206
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 
-#: ../lib/verify.c:224
+#: lib/verify.c:224
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: ../lib/verify.c:257
+#: lib/verify.c:257
 #, c-format
 msgid "missing    %s\n"
 msgstr "chybí      %s\n"
 
-#: ../lib/verify.c:321
+#: lib/verify.c:319
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "Nevyøe¹ené závislosti pro %s-%s-%s: "
 
-#: ../lib/verify.c:369
+#: lib/verify.c:367
 #, fuzzy
 msgid "rpmVerify: rpmdbOpen() failed\n"
 msgstr "%s: Chybné otevøení\n"
 
+#, fuzzy
+#~ msgid "failed build prerequisites:\n"
+#~ msgstr "chybné závislosti:\n"
+
+#~ msgid "Couldn't read the header/archive"
+#~ msgstr "Nelze naèíst hlavièku nebo archiv"
+
+#~ msgid "Couldn't write header/archive to temp file"
+#~ msgstr "Nelze zapsat hlavièku nebo archiv do doèasného souboru"
+
+#~ msgid "Couldn't read sigtarget"
+#~ msgstr "Nelze naèíst cílpodpisu"
+
+#~ msgid "Couldn't write package"
+#~ msgstr "Balíèek nelze zapsat"
+
+#~ msgid "Unable to write %s"
+#~ msgstr "Nelze zapsat %s"
+
+#~ msgid "unexpected query specifiers"
+#~ msgstr "neèekané specifikátory dotazu"
+
+#~ msgid "--nofiles may only be specified during package verification"
+#~ msgstr "--nofiles se mù¾e specifikovat jen pøi verifikaci balíèkù"
+
+#~ msgid "--clean may only be used with -b and -t"
+#~ msgstr "--clean lze pou¾ít pouze s -b nebo -t"
+
+#~ msgid "--rmsource may only be used with -b and -t"
+#~ msgstr "--rmsource lze pou¾ít pouze s -b nebo -t"
+
+#~ msgid "--short-circuit may only be used during package building"
+#~ msgstr "--short-circuit lze pou¾ít jen pøi sestavování balíèkù"
+
+#~ msgid "--short-circuit may only be used with -bc, -bi, -bs, -tc -ti, or -ts"
+#~ msgstr "--short-circuit lze pou¾ít pouze s -bc, -bi, -bs, -tc, -ti nebo -ts"
+
+#, fuzzy
+#~ msgid "pgp version 5 not found: "
+#~ msgstr "Soubor nebyl na serveru nalezen"
+
+#~ msgid "dependencies: looking for %s\n"
+#~ msgstr "závislosti: probíhá hledání %s\n"
+
+#, fuzzy
+#~ msgid "free list corrupt (%u)- contact rpm-list@redhat.com\n"
+#~ msgstr "Zkontaktujte rpm-list@redhat.com\n"
+
 #~ msgid "%s is not an RPM\n"
 #~ msgstr "%s není typu RPM\n"
 
index ba1d60d..823794a 100644 (file)
--- a/po/de.po
+++ b/po/de.po
@@ -37,7 +37,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 2.5.2\n"
-"POT-Creation-Date: 1999-05-11 12:17-0400\n"
+"POT-Creation-Date: 1999-09-29 19:30-0400\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"
@@ -45,583 +45,314 @@ msgstr ""
 "Content-Type: text/plain; charset=ISO-8859-1\n"
 "Content-Transfer-Encoding: 8-bit\n"
 
-#: ../build.c:24 ../install.c:221 ../install.c:377
+#: build.c:23 lib/rpminstall.c:222 lib/rpminstall.c:382
 #, fuzzy, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n"
 
-#: ../build.c:34
+#: build.c:33
 #, fuzzy
-msgid "failed build prerequisites:\n"
+msgid "failed build dependencies:\n"
 msgstr "fehlgeschlagene Paket-Abhängigkeiten:\n"
 
 # , c-format
-#: ../build.c:83 ../build.c:96
+#: build.c:61
+#, fuzzy, c-format
+msgid "Unable to open spec file: %s\n"
+msgstr "Datei %s kann nicht zum Lesen geöffnet werden: %s."
+
+# , c-format
+#: build.c:117 build.c:130
 #, fuzzy, c-format
 msgid "Failed to open tar pipe: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen\n"
 
 # , c-format
 #. Give up
-#: ../build.c:104
+#: build.c:138
 #, fuzzy, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
 # , c-format
-#: ../build.c:129
+#: build.c:163
 #, fuzzy, c-format
 msgid "Failed to rename %s to %s: %s\n"
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
-#: ../build.c:167
+#: build.c:201
 #, c-format
 msgid "File is not a regular file: %s\n"
 msgstr ""
 
-# , c-format
-#: ../build.c:172
+#: build.c:207
 #, fuzzy, c-format
-msgid "Unable to open spec file: %s\n"
-msgstr "Datei %s kann nicht zum Lesen geöffnet werden: %s."
-
-#: ../build.c:180
-#, c-format
-msgid "File contains non-printable characters(%c): %s\n"
-msgstr ""
+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:233
+#: build.c:258
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr ""
 
-#: ../build.c:242
+#: build.c:267
 #, fuzzy, c-format
 msgid "Building for target %s\n"
 msgstr "Fehler beim Suchen nach Paket %s\n"
 
-#: ../build.c:286
+#: build.c:311
 msgid "buildroot already specified"
 msgstr ""
 
-#: ../build.c:292
+#: build.c:317
 msgid "--buildarch has been obsoleted.  Use the --target option instead.\n"
 msgstr ""
 
-#: ../build.c:296
+#: build.c:321
 msgid "--buildos has been obsoleted.  Use the --target option instead.\n"
 msgstr ""
 
-#: ../build.c:317
+#: build.c:342
 #, fuzzy
 msgid "override build architecture"
 msgstr "Paket-Architektur nicht überprüfen"
 
-#: ../build.c:319
+#: build.c:344
 #, fuzzy
 msgid "override build operating system"
 msgstr "Paket-Betriebssystem nicht überprüfen"
 
-#: ../build.c:321
+#: build.c:346
 #, fuzzy
 msgid "override build root"
 msgstr "Benutze <VERZ> als Stammverzeichnis beim Erstellen"
 
-#: ../build.c:323 ../rpm.c:458
+#: build.c:348 rpm.c:457
 msgid "remove build tree when done"
 msgstr "Erstellungsdateibaum nach Beendigung löschen"
 
-#: ../build.c:325
+#: build.c:350
 #, fuzzy
 msgid "do not execute any stages of the build"
 msgstr "Keine Stufen ausführen"
 
-#: ../build.c:327
+#: build.c:352
 msgid "do not accept I18N msgstr's from specfile"
 msgstr ""
 
-#: ../build.c:329
+#: build.c:354
 #, fuzzy
 msgid "remove sources when done"
 msgstr "Quellen und spec-Dateien nach Beendigung löschen"
 
-#: ../build.c:331
+#: build.c:356
 #, fuzzy
 msgid "remove specfile when done"
 msgstr "Quellen und spec-Dateien nach Beendigung löschen"
 
-#: ../build.c:333 ../rpm.c:456
+#: build.c:358 rpm.c:455
 msgid "skip straight to specified stage (only for c,i)"
 msgstr "Direkt zur angegeben Stufe springen (nur für c und i)"
 
-#: ../build.c:335
+#: build.c:360
 msgid "override target platform"
 msgstr ""
 
-#: ../build.c:337
+#: build.c:362
 msgid "lookup I18N strings in specfile catalog"
 msgstr ""
 
-#: ../checksig.c:27 ../checksig.c:166
-#, c-format
-msgid "%s: Open failed\n"
-msgstr "%s: Öffnen fehlgeschlagen\n"
-
-#: ../checksig.c:31 ../checksig.c:171
-#, c-format
-msgid "%s: readLead failed\n"
-msgstr "%s: »readLead« fehlgeschlagen\n"
-
-#: ../checksig.c:35
-#, c-format
-msgid "%s: Can't sign v1.0 RPM\n"
-msgstr "%s: Kann v1.0-RPM nicht signieren\n"
-
-#: ../checksig.c:39
-#, c-format
-msgid "%s: Can't re-sign v2.0 RPM\n"
-msgstr "%s: Kann v2.0-RPM nicht erneuert signieren\n"
-
-#: ../checksig.c:43 ../checksig.c:181
-#, c-format
-msgid "%s: rpmReadSignature failed\n"
-msgstr "%s: »rpmReadSignature« fehlgeschlagen\n"
-
-#: ../checksig.c:56 ../checksig.c:195
-msgid "Couldn't read the header/archive"
-msgstr "Konnte Kopfzeilen/Archiv nicht lesen"
-
-#: ../checksig.c:63
-msgid "Couldn't write header/archive to temp file"
-msgstr "Konnte Kopfzeilen/Archiv nicht in eine temporäre Datei schreiben"
-
-#: ../build/pack.c:330 ../checksig.c:91
-#, fuzzy, c-format
-msgid "Generating signature: %d\n"
-msgstr "PGP-Signatur generieren"
-
-#: ../checksig.c:114
-msgid "Couldn't read sigtarget"
-msgstr "Konnte Signatur-Ziel (»sigtarget«) nicht lesen"
-
-#: ../checksig.c:123
-msgid "Couldn't write package"
-msgstr "Konnte Paket nicht schreiben"
-
-#: ../checksig.c:176
-#, c-format
-msgid "%s: No signature available (v1.0 RPM)\n"
-msgstr "%s: Keine Signatur verfügbar (v1.0 RPM)\n"
-
-#: ../checksig.c:186
-#, c-format
-msgid "%s: No signature available\n"
-msgstr "%s: Keine Signatur verfügbar\n"
-
-# , c-format
-#: ../checksig.c:202
-#, c-format
-msgid "Unable to write %s"
-msgstr "Nicht möglich %s zu schreiben"
-
-#: ../checksig.c:328
-msgid "NOT OK"
-msgstr ""
-
-#: ../checksig.c:329 ../checksig.c:343
-#, fuzzy
-msgid " (MISSING KEYS:"
-msgstr " (FEHLENDE SCHLüSSEL)"
-
-#: ../checksig.c:331 ../checksig.c:345
-msgid ") "
-msgstr ""
-
-#: ../checksig.c:332 ../checksig.c:346
-msgid " (UNTRUSTED KEYS:"
-msgstr ""
-
-#: ../checksig.c:334 ../checksig.c:348
-msgid ")"
-msgstr ""
-
-#: ../checksig.c:342
-msgid "OK"
-msgstr ""
-
-#: ../convertdb.c:38
+#: convertdb.c:39
 #, fuzzy
 msgid "RPM database already exists"
 msgstr "die temporäre Datenbank %s existiert schon"
 
-#: ../convertdb.c:43
+#: convertdb.c:44
 msgid "Old db is missing"
 msgstr ""
 
-#: ../convertdb.c:54
+#: convertdb.c:55
 msgid "failed to create RPM database /var/lib/rpm"
 msgstr ""
 
-#: ../convertdb.c:60
+#: convertdb.c:61
 msgid "Old db is corrupt"
 msgstr ""
 
-#: ../convertdb.c:69
+#: convertdb.c:70
 #, c-format
 msgid "oldrpmdbGetPackageInfo failed &olddb = %p olddb.packages = %p\n"
 msgstr ""
 
-#: ../convertdb.c:201
+#: convertdb.c:204
 msgid "rpmconvert: no arguments expected"
 msgstr ""
 
-#: ../convertdb.c:207
+#: convertdb.c:210
 msgid "rpmconvert 1.0 - converting database in /var/lib/rpm\n"
 msgstr ""
 
-#: ../ftp.c:642
-msgid "Success"
-msgstr ""
-
-#: ../ftp.c:645
-#, fuzzy
-msgid "Bad server response"
-msgstr "Nicht passende Antwort des FTP-Servers"
-
-#: ../ftp.c:648
-#, fuzzy
-msgid "Server IO error"
-msgstr "FTP IO-Fehler"
-
-#: ../ftp.c:651
-#, fuzzy
-msgid "Server timeout"
-msgstr "Timeout des FTP-Servers"
-
-#: ../ftp.c:654
-#, fuzzy
-msgid "Unable to lookup server host address"
-msgstr "Unmöglich die Hostadresse des FTP-Servers zu bestimmen"
-
-#: ../ftp.c:657
-#, fuzzy
-msgid "Unable to lookup server host name"
-msgstr "Unmöglich den Hostnamen des FTP-Servers zu bestimmen"
-
-#: ../ftp.c:660
-#, fuzzy
-msgid "Failed to connect to server"
-msgstr "Verbindung zum FTP-Server fehlgeschlagen"
-
-#: ../ftp.c:663
-#, fuzzy
-msgid "Failed to establish data connection to server"
-msgstr "Aufbau einer Datenverbindung zum FTP-Server fehlgeschlagen"
-
-#: ../ftp.c:666
-msgid "IO error to local file"
-msgstr "IO-Fehler bei lokaler Datei"
-
-#: ../ftp.c:669
-msgid "Error setting remote server to passive mode"
-msgstr "Fehler beim Setzen des FTP-Servers in den passiven Modus"
-
-#: ../ftp.c:672
-msgid "File not found on server"
-msgstr "Datei auf dem Server nicht gefunden"
-
-#: ../ftp.c:675
-msgid "Abort in progress"
-msgstr ""
-
-#: ../ftp.c:679
-#, fuzzy
-msgid "Unknown or unexpected error"
-msgstr "FTP Unbekannter oder nicht erwarteter Fehler"
-
-#: ../install.c:127
-#, fuzzy
-msgid "counting packages to install\n"
-msgstr "Es wurden keine Pakete für die Installation angegeben"
-
-#: ../install.c:131
-#, fuzzy, c-format
-msgid "found %d packages\n"
-msgstr "Anfrage an alle Pakete"
-
-#: ../install.c:140
-#, fuzzy
-msgid "looking for packages to download\n"
-msgstr "Fehler beim Suchen nach Paket %s\n"
-
-# , c-format
-#: ../install.c:151
-#, c-format
-msgid "Retrieving %s\n"
-msgstr "Hole %s heraus\n"
-
-#: ../install.c:160
-#, c-format
-msgid " ... as %s\n"
-msgstr ""
-
-#: ../install.c:164
-#, fuzzy, c-format
-msgid "skipping %s - transfer failed - %s\n"
-msgstr "Fehler: überspringe %s - Übertragung fehlgeschlagen - %s\n"
-
-#: ../install.c:181
-#, c-format
-msgid "retrieved %d packages\n"
-msgstr ""
-
-#: ../install.c:190 ../install.c:327
-#, fuzzy, c-format
-msgid "cannot open file %s\n"
-msgstr "kann Datei %s nicht öffnen: "
-
-#: ../install.c:202 ../lib/query.c:569
-#, c-format
-msgid "%s does not appear to be a RPM package\n"
-msgstr "%s scheint kein RPM-Paket zu sein\n"
-
-#: ../install.c:206 ../install.c:464
-#, fuzzy, c-format
-msgid "%s cannot be installed\n"
-msgstr "Fehler: %s kann nicht installiert werden\n"
-
-#: ../install.c:242
-#, fuzzy, c-format
-msgid "package %s is not relocateable\n"
-msgstr "Paket %s ist nicht installiert\n"
-
-#: ../install.c:254
-#, fuzzy, c-format
-msgid "error reading from file %s\n"
-msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
-
-#: ../install.c:257
-#, c-format
-msgid "file %s requires a newer version of RPM\n"
-msgstr ""
-
-#: ../install.c:272
-#, fuzzy, c-format
-msgid "found %d source and %d binary packages\n"
-msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
-
-#: ../install.c:282
-msgid "failed dependencies:\n"
-msgstr "fehlgeschlagene Paket-Abhängigkeiten:\n"
-
-#: ../install.c:300
-#, fuzzy
-msgid "installing binary packages\n"
-msgstr "Paket installieren"
-
-#: ../install.c:388 ../lib/query.c:717
-#, c-format
-msgid "package %s is not installed\n"
-msgstr "Paket %s ist nicht installiert\n"
-
-#: ../install.c:392
-#, fuzzy, c-format
-msgid "searching for package %s\n"
-msgstr "Fehler beim Suchen nach Paket %s\n"
-
-#: ../install.c:401
-#, c-format
-msgid "\"%s\" specifies multiple packages\n"
-msgstr "\"%s\" bezeichnet mehrere Pakete\n"
-
-# oder besser: "... verletzen" ?
-#: ../install.c:427
-msgid "removing these packages would break dependencies:\n"
-msgstr "Das Enfernen dieser Pakete würde Paket-Abhängigkeiten missachten:\n"
-
-#: ../install.c:454
-#, fuzzy, c-format
-msgid "cannot open %s\n"
-msgstr "Fehler: kann %s nicht öffnen\n"
-
-#: ../install.c:459
-#, c-format
-msgid "Installing %s\n"
-msgstr "Installiere %s\n"
-
-#: ../install.c:503
-#, c-format
-msgid " is needed by %s-%s-%s\n"
-msgstr " wird von %s-%s-%s gebraucht\n"
-
-#: ../install.c:506
-#, c-format
-msgid " conflicts with %s-%s-%s\n"
-msgstr " steht im Konflikt mit %s-%s-%s\n"
-
-#: ../oldrpmdb.c:454
+#: oldrpmdb.c:454
 #, c-format
 msgid "pulling %s from database\n"
 msgstr ""
 
-#: ../oldrpmdb.c:461
+#: oldrpmdb.c:461
 #, fuzzy
 msgid "package not found in database"
 msgstr "Paket %s in %s nicht gefunden"
 
-#: ../oldrpmdb.c:522
+#: oldrpmdb.c:522
 msgid "no copyright!\n"
 msgstr ""
 
-#: ../rpm.c:160
+#: rpm.c:159
 #, c-format
 msgid "rpm: %s\n"
 msgstr ""
 
 # , c-format
-#: ../rpm.c:171
+#: rpm.c:170
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM Version %s\n"
 
-#: ../rpm.c:175
+#: rpm.c:174
 msgid "Copyright (C) 1998 - Red Hat Software"
 msgstr "Copyright © 1998 - Red Hat Software"
 
-#: ../rpm.c:176
-msgid ""
-"This may be freely redistributed under the terms of the GNU GPL"
-msgstr ""
-"Dies darf unter den Bedingungen der »GNU GPL« frei verteilt werden"
+#: rpm.c:175
+msgid "This may be freely redistributed under the terms of the GNU GPL"
+msgstr "Dies darf unter den Bedingungen der »GNU GPL« frei verteilt werden"
 
-#: ../rpm.c:185
+#: rpm.c:183
 msgid "usage: rpm {--help}"
 msgstr "Benutzung: rpm {--help}"
 
-#: ../rpm.c:186
+#: rpm.c:184
 msgid "       rpm {--version}"
 msgstr ""
 
-#: ../rpm.c:187
+#: rpm.c:185
 msgid "       rpm {--initdb}   [--dbpath <dir>]"
 msgstr "       rpm {--initdb}   [--dbpath <VERZ>]"
 
-#: ../rpm.c:188
+#: rpm.c:186
 msgid ""
 "       rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 
-#: ../rpm.c:189
+#: rpm.c:187
 msgid "                        [--replacepkgs] [--replacefiles] [--root <dir>]"
 msgstr ""
 "                        [--replacepkgs] [--replacefiles] [--root <VERZ>]"
 
-#: ../rpm.c:190
+#: rpm.c:188
 msgid "                        [--excludedocs] [--includedocs] [--noscripts]"
 msgstr ""
 
-#: ../rpm.c:191
+#: rpm.c:189
 msgid ""
 "                        [--rcfile <file>] [--ignorearch] [--dbpath <dir>]"
 msgstr ""
 "                        [--rcfile <DATEI>] [--ignorearch] [--dbpath <VERZ>]"
 
-#: ../rpm.c:192
+#: rpm.c:190
 msgid ""
 "                        [--prefix <dir>] [--ignoreos] [--nodeps] [--allfiles]"
 msgstr ""
 "                        [--prefix <VERZ>] [--ignoreos] [--nodeps] "
 "[--allfiles]"
 
-#: ../rpm.c:193
+#: rpm.c:191
 msgid ""
 "                        [--ftpproxy <host>] [--ftpport <port>] [--justdb]"
 msgstr ""
 "                        [--ftpproxy <RECHNER>] [--ftpport <PORT>] [--justdb]"
 
-#: ../rpm.c:194 ../rpm.c:203 ../rpm.c:212
+#: rpm.c:192 rpm.c:201 rpm.c:210
 #, fuzzy
 msgid "                        [--httpproxy <host>] [--httpport <port>] "
 msgstr "                        [--ftpproxy <HOST>] [--ftpport <PORT>]"
 
-#: ../rpm.c:195 ../rpm.c:205
+#: rpm.c:193 rpm.c:203
 msgid "                        [--noorder] [--relocate oldpath=newpath]"
 msgstr "                        [--noorder] [--relocate <ALTPFAD>=<NEUPFAD>]"
 
-#: ../rpm.c:196
+#: rpm.c:194
 #, fuzzy
 msgid ""
 "                        [--badreloc] [--notriggers] [--excludepath <path>]"
 msgstr ""
 "                        [--badreloc] [--notriggers] DATEI1.rpm ... DATEIn.rpm"
 
-#: ../rpm.c:197
+#: rpm.c:195
 #, fuzzy
 msgid "                        [--ignoresize] file1.rpm ... fileN.rpm"
 msgstr "                        [--badreloc] DATEI1.rpm ... DATEIn.rpm"
 
-#: ../rpm.c:198
+#: rpm.c:196
 msgid ""
 "       rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 
-#: ../rpm.c:199
+#: rpm.c:197
 msgid "                        [--oldpackage] [--root <dir>] [--noscripts]"
 msgstr "                        [--oldpackage] [--root <VERZ>] [--noscripts]"
 
-#: ../rpm.c:200
+#: rpm.c:198
 msgid ""
 "                        [--excludedocs] [--includedocs] [--rcfile <file>]"
 msgstr ""
 "                        [--excludedocs] [--includedocs] [--rcfile <DATEI>]"
 
-#: ../rpm.c:201
+#: rpm.c:199
 msgid ""
 "                        [--ignorearch]  [--dbpath <dir>] [--prefix <dir>] "
 msgstr ""
 "                        [--ignorearch]  [--dbpath <dir>] [--prefix <VERZ>]"
 
-#: ../rpm.c:202
+#: rpm.c:200
 msgid "                        [--ftpproxy <host>] [--ftpport <port>]"
 msgstr "                        [--ftpproxy <HOST>] [--ftpport <PORT>]"
 
-#: ../rpm.c:204
+#: rpm.c:202
 msgid "                        [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
 msgstr ""
 "                        [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
 
-#: ../rpm.c:206
+#: rpm.c:204
 #, fuzzy
 msgid ""
 "                        [--badreloc] [--excludepath <path>] [--ignoresize]"
 msgstr "                        [--nomd5] [ZIELE]"
 
-#: ../rpm.c:207
+#: rpm.c:205
 #, fuzzy
 msgid "                        file1.rpm ... fileN.rpm"
 msgstr "                        [--badreloc] DATEI1.rpm ... DATEIn.rpm"
 
-#: ../rpm.c:208
+#: rpm.c:206
 msgid "       rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]"
 msgstr ""
 
-#: ../rpm.c:209
+#: rpm.c:207
 msgid "                        [--scripts] [--root <dir>] [--rcfile <file>]"
 msgstr "                        [--scripts] [--root <VERZ>] [--rcfile <DATEI>]"
 
-#: ../rpm.c:210
+#: rpm.c:208
 msgid "                        [--whatprovides] [--whatrequires] [--requires]"
 msgstr ""
 
-#: ../rpm.c:211
+#: rpm.c:209
 #, fuzzy
 msgid ""
 "                        [--triggeredby] [--ftpuseport] [--ftpproxy <host>]"
 msgstr ""
 "                        [--ftpuseport] [--ftpproxy <HOST>] [--ftpport <PORT>]"
 
-#: ../rpm.c:213
+#: rpm.c:211
 #, fuzzy
 msgid ""
 "                        [--ftpport <port>] [--provides] [--triggers] [--dump]"
@@ -629,306 +360,311 @@ msgstr ""
 "                        [--dbpath <VERZ>] [--nodeps] [--nofiles] "
 "[--noscripts]"
 
-#: ../rpm.c:214
+#: rpm.c:212
 #, fuzzy
 msgid "                        [--changelog] [--dbpath <dir>] [targets]"
 msgstr "                        [--nomd5] [ZIELE]"
 
-#: ../rpm.c:215
+#: rpm.c:213
 msgid "       rpm {--verify -V -y} [-afpg] [--root <dir>] [--rcfile <file>]"
 msgstr "       rpm {--verify -V -y} [-afpg] [--root <VERZ>] [--rcfile <DATEI>]"
 
-#: ../rpm.c:216
+#: rpm.c:214
 msgid ""
 "                        [--dbpath <dir>] [--nodeps] [--nofiles] [--noscripts]"
 msgstr ""
 "                        [--dbpath <VERZ>] [--nodeps] [--nofiles] "
 "[--noscripts]"
 
-#: ../rpm.c:217
+#: rpm.c:215
 msgid "                        [--nomd5] [targets]"
 msgstr "                        [--nomd5] [ZIELE]"
 
-#: ../rpm.c:218
+#: rpm.c:216
 msgid "       rpm {--setperms} [-afpg] [target]"
 msgstr "       rpm {--setperms} [-afpg] [ZIEL]"
 
-#: ../rpm.c:219
+#: rpm.c:217
 msgid "       rpm {--setugids} [-afpg] [target]"
 msgstr "       rpm {--setugids} [-afpg] [ZIEL]"
 
-#: ../rpm.c:220
+#: rpm.c:218
+#, fuzzy
+msgid "       rpm {--freshen -F} file1.rpm ... fileN.rpm"
+msgstr "                        [--badreloc] DATEI1.rpm ... DATEIn.rpm"
+
+#: rpm.c:219
 msgid "       rpm {--erase -e} [--root <dir>] [--noscripts] [--rcfile <file>]"
 msgstr ""
 "       rpm {--erase -e] [--root <VERZ>] [--noscripts] [--rcfile <DATEI>]"
 
-#: ../rpm.c:221
+#: rpm.c:220
 msgid "                        [--dbpath <dir>] [--nodeps] [--allmatches]"
 msgstr "                        [--dbpath <VERZ>] [--nodeps] [--allmatches]"
 
-#: ../rpm.c:222
+#: rpm.c:221
 msgid ""
 "                        [--justdb] [--notriggers] rpackage1 ... packageN"
 msgstr "                        [--justdb] [--notriggers] PAKET1 ... PAKETn"
 
-#: ../rpm.c:223
+#: rpm.c:222
 msgid ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile  <file>]"
 msgstr ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile  "
 "<DATEI>]"
 
-#: ../rpm.c:224
+#: rpm.c:223
 #, fuzzy
 msgid "                        [--sign] [--nobuild] [--timecheck <s>] ]"
 msgstr ""
 "                        [--sign] [--test] [--timecheck <S>] [--buildos <BS>]"
 
-#: ../rpm.c:225
+#: rpm.c:224
 #, fuzzy
 msgid "                        [--target=platform1[,platform2...]]"
 msgstr "                        [ZIELE]"
 
-#: ../rpm.c:226
+#: rpm.c:225
 #, fuzzy
 msgid "                        [--rmsource] specfile"
 msgstr "                        [--buildarch <ARCH>] [--rmsource] SPEC-DATEI"
 
-#: ../rpm.c:227
+#: rpm.c:226
 msgid "       rpm {--rmsource} [--rcfile <file>] [-v] specfile"
 msgstr "       rpm {--rmsource} [--rcfile <DATAEI>] [-v] SPEC-DATEI"
 
-#: ../rpm.c:228
+#: rpm.c:227
 msgid ""
 "       rpm {--rebuild} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 "       rpm {--rebuild} [--rcfile <DATEI>] [-v] SOURCE1.rpm ... SOURCEn.rpm"
 
-#: ../rpm.c:229
+#: rpm.c:228
 msgid ""
 "       rpm {--recompile} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 "       rpm {--recompile} [--rcfile <DATEI>] [-v] SOURCE1.rpm ... SOURCEn.rpm"
 
-#: ../rpm.c:230
+#: rpm.c:229
 msgid "       rpm {--resign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr "       rpm {--resign} [--rcfile <DATEI>] PAKET1 PAKET2 ... PAKETn"
 
-#: ../rpm.c:231
+#: rpm.c:230
 msgid "       rpm {--addsign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr "       rpm {--addsign} [--rcfile <DATEI>] PAKET1 PAKET2 ... PAKETn"
 
-#: ../rpm.c:232
+#: rpm.c:231
 #, fuzzy
 msgid ""
 "       rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile <file>]"
 msgstr "       rpm {--checksig -K} [--nopgp] [--nomd5] [--rcfile <DATEI>]"
 
-#: ../rpm.c:233
+#: rpm.c:232
 msgid "                           package1 ... packageN"
 msgstr "                           PAKET1 ... PAKETn"
 
-#: ../rpm.c:234
+#: rpm.c:233
 msgid "       rpm {--rebuilddb} [--rcfile <file>] [--dbpath <dir>]"
 msgstr "       rpm {--rebuilddb} [--rcfile <DATEI>] [--dbpath <VERZ>]"
 
-#: ../rpm.c:235
+#: rpm.c:234
 msgid "       rpm {--querytags}"
 msgstr ""
 
-#: ../rpm.c:269
+#: rpm.c:268
 msgid "usage:"
 msgstr "Benutzung:"
 
-#: ../rpm.c:271
+#: rpm.c:270
 msgid "print this message"
 msgstr "Gibt diesen Text aus"
 
-#: ../rpm.c:273
+#: rpm.c:272
 msgid "print the version of rpm being used"
 msgstr "Die benutzte RPM-Version anzeigen"
 
-#: ../rpm.c:274
+#: rpm.c:273
 msgid "   all modes support the following arguments:"
 msgstr "   alle Modi unterstützen folgende Argumente:"
 
-#: ../rpm.c:275
+#: rpm.c:274
 msgid "      --rcfile <file>     "
 msgstr ""
 
-#: ../rpm.c:276
+#: rpm.c:275
 msgid "use <file> instead of /etc/rpmrc and $HOME/.rpmrc"
 msgstr "<DATEI> anstelle von /etc/rpmrc und $HOME/.rpmrc benutzen"
 
-#: ../rpm.c:278
+#: rpm.c:277
 msgid "be a little more verbose"
 msgstr "Ausgabe etwas ausführlicher gestalten"
 
-#: ../rpm.c:280
+#: rpm.c:279
 msgid "be incredibly verbose (for debugging)"
 msgstr "extrem ausführliche Ausgabe (um Programm-Fehler zu finden)"
 
-#: ../rpm.c:282
+#: rpm.c:281
 msgid "query mode"
 msgstr "Anfrage-Modus"
 
-#: ../rpm.c:283 ../rpm.c:345 ../rpm.c:409 ../rpm.c:437
+#: rpm.c:282 rpm.c:344 rpm.c:408 rpm.c:436
 msgid "      --root <dir>        "
 msgstr ""
 
-#: ../rpm.c:284 ../rpm.c:346 ../rpm.c:410 ../rpm.c:438 ../rpm.c:500
+#: rpm.c:283 rpm.c:345 rpm.c:409 rpm.c:437 rpm.c:499
 msgid "use <dir> as the top level directory"
 msgstr "<VERZ> als Stammverzeichnis benutzen"
 
-#: ../rpm.c:285 ../rpm.c:343 ../rpm.c:373 ../rpm.c:425 ../rpm.c:497
+#: rpm.c:284 rpm.c:342 rpm.c:372 rpm.c:424 rpm.c:496
 #, fuzzy
 msgid "      --dbpath <dir>      "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: ../rpm.c:286 ../rpm.c:344 ../rpm.c:374 ../rpm.c:426 ../rpm.c:498
+#: rpm.c:285 rpm.c:343 rpm.c:373 rpm.c:425 rpm.c:497
 msgid "use <dir> as the directory for the database"
 msgstr "<VERZ> als Datenbankverzeichnis benutzen"
 
-#: ../rpm.c:287
+#: rpm.c:286
 msgid "      --queryformat <qfmt>"
 msgstr ""
 
-#: ../rpm.c:288
+#: rpm.c:287
 #, fuzzy
 msgid "use <qfmt> as the header format (implies -i)"
 msgstr "S als Kopfzeilen-Format benutzen (impliziert -i)"
 
-#: ../rpm.c:289
+#: rpm.c:288
 msgid ""
 "   install, upgrade and query (with -p) allow ftp URL's to be used in place"
 msgstr ""
 "   Installieren, Aktualisieren und Anfragen (mit -p) erlauben es, ftp-URLs"
 
-#: ../rpm.c:290
+#: rpm.c:289
 #, fuzzy
 msgid "   of file names as well as the following options:"
 msgstr ""
 "   anstelle von Dateinamen zu benutzen. Außerdem die folgenden Optionen:\n"
 
-#: ../rpm.c:291
+#: rpm.c:290
 msgid "      --ftpproxy <host>   "
 msgstr ""
 
-#: ../rpm.c:292
+#: rpm.c:291
 msgid "hostname or IP of ftp proxy"
 msgstr "Hostname oder IP des ftp-Proxys"
 
-#: ../rpm.c:293
+#: rpm.c:292
 msgid "      --ftpport <port>    "
 msgstr ""
 
-#: ../rpm.c:294
+#: rpm.c:293
 msgid "port number of ftp server (or proxy)"
 msgstr "Portnummer des ftp-Servers (oder -Proxys)"
 
-#: ../rpm.c:295
+#: rpm.c:294
 #, fuzzy
 msgid "      --httpproxy <host>   "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: ../rpm.c:296
+#: rpm.c:295
 #, fuzzy
 msgid "hostname or IP of http proxy"
 msgstr "Hostname oder IP des ftp-Proxys"
 
-#: ../rpm.c:297
+#: rpm.c:296
 #, fuzzy
 msgid "      --httpport <port>    "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: ../rpm.c:298
+#: rpm.c:297
 #, fuzzy
 msgid "port number of http server (or proxy)"
 msgstr "Portnummer des ftp-Servers (oder -Proxys)"
 
-#: ../rpm.c:299
+#: rpm.c:298
 msgid "      Package specification options:"
 msgstr "      Optionen der Paketauswahl:"
 
-#: ../rpm.c:301
+#: rpm.c:300
 msgid "query all packages"
 msgstr "Anfrage an alle Pakete"
 
-#: ../rpm.c:302
+#: rpm.c:301
 msgid "        -f <file>+        "
 msgstr ""
 
-#: ../rpm.c:303
+#: rpm.c:302
 msgid "query package owning <file>"
 msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
 
-#: ../rpm.c:304
+#: rpm.c:303
 msgid "        -p <packagefile>+ "
 msgstr ""
 
-#: ../rpm.c:305
+#: rpm.c:304
 msgid "query (uninstalled) package <packagefile>"
 msgstr "Anfrage nach (nicht installiertem) Paket <PAKET-DATEI>"
 
-#: ../rpm.c:306
+#: rpm.c:305
 #, fuzzy
 msgid "        --triggeredby <pkg>"
 msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
 
-#: ../rpm.c:307
+#: rpm.c:306
 #, fuzzy
 msgid "query packages triggered by <pkg>"
 msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
 
-#: ../rpm.c:308
+#: rpm.c:307
 #, fuzzy
 msgid "        --whatprovides <cap>"
 msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
 
-#: ../rpm.c:309
+#: rpm.c:308
 #, fuzzy
 msgid "query packages which provide <cap> capability"
 msgstr "Anfrage nach Paketen, die die Fähigkeit <i> bereitstellen"
 
-#: ../rpm.c:310
+#: rpm.c:309
 #, fuzzy
 msgid "        --whatrequires <cap>"
 msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
 
-#: ../rpm.c:311
+#: rpm.c:310
 #, fuzzy
 msgid "query packages which require <cap> capability"
 msgstr "Anfrage nach Paketen, die die Fähigkeit <i> benötigen"
 
-#: ../rpm.c:312
+#: rpm.c:311
 msgid "      Information selection options:"
 msgstr "      Optionen der Informationsauswahl:"
 
-#: ../rpm.c:314
+#: rpm.c:313
 msgid "display package information"
 msgstr "Paketinformationen anzeigen"
 
-#: ../rpm.c:316
+#: rpm.c:315
 msgid "display the package's change log"
 msgstr "Changelog des Pakets anzeigen"
 
-#: ../rpm.c:318
+#: rpm.c:317
 msgid "display package file list"
 msgstr "Dateiliste des Pakets anzeigen"
 
-#: ../rpm.c:320
+#: rpm.c:319
 msgid "show file states (implies -l)"
 msgstr "Status der Dateien anzeigen (impliziert -l)"
 
-#: ../rpm.c:322
+#: rpm.c:321
 msgid "list only documentation files (implies -l)"
 msgstr "Nur Dokumentationsdateien auflisten (impliziert -l)"
 
-#: ../rpm.c:324
+#: rpm.c:323
 msgid "list only configuration files (implies -l)"
 msgstr "Nur Konfigurationsdateien auflisten (impliziert -l)"
 
-#: ../rpm.c:326
+#: rpm.c:325
 msgid ""
 "show all verifiable information for each file (must be used with -l, -c, or "
 "-d)"
@@ -936,56 +672,56 @@ msgstr ""
 "Alle überprüfbaren Infos zu jeder Datei anzeigen (mit -l, -c oder -d "
 "benutzen!)"
 
-#: ../rpm.c:328
+#: rpm.c:327
 msgid "list capabilities package provides"
 msgstr "Fähigkeiten des Pakets auflisten"
 
-#: ../rpm.c:329
+#: rpm.c:328
 msgid "        --requires"
 msgstr ""
 
-#: ../rpm.c:331
+#: rpm.c:330
 msgid "list package dependencies"
 msgstr "Paket-Abhängigkeiten ausgeben"
 
-#: ../rpm.c:333
+#: rpm.c:332
 msgid "print the various [un]install scripts"
 msgstr "Die diversen (De-)Installations-Skripte ausgeben"
 
-#: ../rpm.c:335
+#: rpm.c:334
 msgid "show the trigger scripts contained in the package"
 msgstr ""
 
-#: ../rpm.c:339
+#: rpm.c:338
 #, fuzzy
 msgid "    --pipe <cmd>          "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: ../rpm.c:340
+#: rpm.c:339
 msgid "send stdout to <cmd>"
 msgstr "Standard-Ausgabe nach <BEFEHL> umleiten"
 
-#: ../rpm.c:342
+#: rpm.c:341
 msgid ""
 "verify a package installation using the same same package specification "
 "options as -q"
 msgstr ""
 "Ein Paket mit denselben Paketspezifikations-Optionen wie bei -q überprüfen"
 
-#: ../rpm.c:348 ../rpm.c:396 ../rpm.c:430
+#: rpm.c:347 rpm.c:395 rpm.c:429
 msgid "do not verify package dependencies"
 msgstr "Dateiabhängigkeiten nicht überprüfen"
 
-#: ../rpm.c:350
+#: rpm.c:349
 msgid "do not verify file md5 checksums"
 msgstr "md5-Prüfsumme der Datei nicht überprüfen"
 
-#: ../rpm.c:352
+#: rpm.c:351
 msgid "do not verify file attributes"
 msgstr "Dateiattribute nicht überprüfen"
 
 # Was ist gemeint?
-#: ../rpm.c:355
+#: rpm.c:354
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
@@ -994,7 +730,7 @@ msgstr ""
 "Paketspezifikationsoptionen wie bei -q benutzt würden"
 
 # Was ist gemeint?
-#: ../rpm.c:358
+#: rpm.c:357
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
@@ -1002,132 +738,132 @@ msgstr ""
 "Datei-Eigentümer und -Gruppe gemäß deren in der Paketdatenbank setzen, wie "
 "wenn dieselben Paketspezifikationsoptionen wie bei -q benutzt würden"
 
-#: ../rpm.c:362
+#: rpm.c:361
 #, fuzzy
 msgid "    --install <packagefile>"
 msgstr "Paket installieren"
 
-#: ../rpm.c:363
+#: rpm.c:362
 #, fuzzy
 msgid "    -i <packagefile>      "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: ../rpm.c:364
+#: rpm.c:363
 msgid "install package"
 msgstr "Paket installieren"
 
-#: ../rpm.c:365
+#: rpm.c:364
 #, fuzzy
 msgid "      --excludepath <path>"
 msgstr "verschiebe Dateien von <alter_Pfad> nach <neuer_Pfad>"
 
-#: ../rpm.c:366
+#: rpm.c:365
 msgid "skip files in path <path>"
 msgstr ""
 
-#: ../rpm.c:367
+#: rpm.c:366
 #, fuzzy
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr "verschiebe Dateien von <alter_Pfad> nach <neuer_Pfad>"
 
-#: ../rpm.c:368
+#: rpm.c:367
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr "verschiebe Dateien von <alter_Pfad> nach <neuer_Pfad>"
 
-#: ../rpm.c:370
+#: rpm.c:369
 msgid "relocate files even though the package doesn't allow it"
 msgstr "verschiebe Dateien, obglich das Paket es nicht erlaubt"
 
-#: ../rpm.c:371
+#: rpm.c:370
 msgid "      --prefix <dir>      "
 msgstr ""
 
-#: ../rpm.c:372
+#: rpm.c:371
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 "Verschiebe das Paket, wenn es verschiebbar ist, in das Verzeichnis <VERZ>"
 
-#: ../rpm.c:376
+#: rpm.c:375
 msgid "do not install documentation"
 msgstr "Dokumentation nicht installieren"
 
-#: ../rpm.c:378
+#: rpm.c:377
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "Abkürzung für --replacepkgs --replacefiles"
 
-#: ../rpm.c:381
+#: rpm.c:380
 msgid "print hash marks as package installs (good with -v)"
 msgstr "Fortschrittsanzeige bei der Paketinstallation (gut zusammen mit -v)"
 
-#: ../rpm.c:383
+#: rpm.c:382
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "alle Dateien installieren, auch die config-Dateien, die sonst übergangen "
 "würden"
 
-#: ../rpm.c:386
+#: rpm.c:385
 msgid "don't verify package architecture"
 msgstr "Paket-Architektur nicht überprüfen"
 
-#: ../rpm.c:388
+#: rpm.c:387
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: ../rpm.c:390
+#: rpm.c:389
 msgid "don't verify package operating system"
 msgstr "Paket-Betriebssystem nicht überprüfen"
 
-#: ../rpm.c:392
+#: rpm.c:391
 msgid "install documentation"
 msgstr "Dokumentation installieren"
 
-#: ../rpm.c:394 ../rpm.c:428
+#: rpm.c:393 rpm.c:427
 msgid "update the database, but do not modify the filesystem"
 msgstr "Datenbank erneuern, aber das Dateisystem nicht verändern"
 
-#: ../rpm.c:398 ../rpm.c:432
+#: rpm.c:397 rpm.c:431
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 "Paket-Installation nicht neu sortieren, um den Abhängigkeiten zu genügen"
 
-#: ../rpm.c:400
+#: rpm.c:399
 msgid "don't execute any installation scripts"
 msgstr "Keine Installations-Skripte ausführen"
 
-#: ../rpm.c:402 ../rpm.c:436
+#: rpm.c:401 rpm.c:435
 msgid "don't execute any scripts triggered by this package"
 msgstr "kein Skript ausführen, das durch dieses Paket veranlasst wurde"
 
-#: ../rpm.c:404
+#: rpm.c:403
 msgid "print percentages as package installs"
 msgstr "Prozentangabe bei der Paketinstallation ausgeben"
 
-#: ../rpm.c:406
+#: rpm.c:405
 msgid "install even if the package replaces installed files"
 msgstr "Auch dann installieren, wenn das Paket installierte Dateien ersetzt"
 
-#: ../rpm.c:408
+#: rpm.c:407
 msgid "reinstall if the package is already present"
 msgstr "Neuinstallation, wenn das Paket schon vorhanden ist"
 
-#: ../rpm.c:412
+#: rpm.c:411
 msgid "don't install, but tell if it would work or not"
 msgstr "Nicht installieren - nur anzeigen, ob es funktionieren würde"
 
-#: ../rpm.c:414
+#: rpm.c:413
 msgid "    --upgrade <packagefile>"
 msgstr ""
 
-#: ../rpm.c:415
+#: rpm.c:414
 #, fuzzy
 msgid "    -U <packagefile>      "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: ../rpm.c:416
+#: rpm.c:415
 msgid "upgrade package (same options as --install, plus)"
 msgstr "Paket aktualisieren (dieselben Optionen wie --install, außerdem)"
 
-#: ../rpm.c:418
+#: rpm.c:417
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1135,15 +871,15 @@ msgstr ""
 "Aktualisierung auf eine alte Version des Pakets (--force macht das bei "
 "Aktualisierungen automatisch)"
 
-#: ../rpm.c:420
+#: rpm.c:419
 msgid "    --erase <package>"
 msgstr ""
 
-#: ../rpm.c:422
+#: rpm.c:421
 msgid "erase (uninstall) package"
 msgstr "Paket löschen (deinstallieren)"
 
-#: ../rpm.c:424
+#: rpm.c:423
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1151,97 +887,97 @@ msgstr ""
 "Alle Pakete entfernen, die mit <PAKET> übereinstimmen (normalerweise wird "
 "ein Fehler angezeigt, wenn <PAKET> mehrere Pakete bezeichnet)"
 
-#: ../rpm.c:434
+#: rpm.c:433
 msgid "do not execute any package specific scripts"
 msgstr "Keine paketspezifischen Skripte ausführen"
 
-#: ../rpm.c:440
+#: rpm.c:439
 msgid "    -b<stage> <spec>      "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: ../rpm.c:441
+#: rpm.c:440
 #, fuzzy
 msgid "    -t<stage> <tarball>   "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: ../rpm.c:442
+#: rpm.c:441
 msgid "build package, where <stage> is one of:"
 msgstr "Paket erstellen, <STUFE> ist einer der Buchstaben:"
 
-#: ../rpm.c:444
+#: rpm.c:443
 msgid "prep (unpack sources and apply patches)"
 msgstr "präparieren (Quellen entpacken und Patch-Dateien anwenden"
 
 # , c-format
-#: ../rpm.c:446
+#: rpm.c:445
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr "kontrollieren (oberflächliche Überprüfung der %files)"
 
-#: ../rpm.c:448
+#: rpm.c:447
 msgid "compile (prep and compile)"
 msgstr "kompilieren (präparieren und kompilieren)"
 
-#: ../rpm.c:450
+#: rpm.c:449
 msgid "install (prep, compile, install)"
 msgstr "installieren (präparieren, kompilieren, installieren)"
 
-#: ../rpm.c:452
+#: rpm.c:451
 msgid "binary package (prep, compile, install, package)"
 msgstr ""
 "Binärpaket erstellen (präparieren, kompilieren, installieren und paketieren)"
 
-#: ../rpm.c:454
+#: rpm.c:453
 msgid "bin/src package (prep, compile, install, package)"
 msgstr ""
 "Binär- und Quellpaket erstellen (präparieren, kompilieren, installieren und "
 "Paketieren"
 
-#: ../rpm.c:460
+#: rpm.c:459
 msgid "remove sources and spec file when done"
 msgstr "Quellen und spec-Dateien nach Beendigung löschen"
 
-#: ../rpm.c:462
+#: rpm.c:461
 #, fuzzy
 msgid "generate PGP/GPG signature"
 msgstr "PGP-Signatur generieren"
 
-#: ../rpm.c:463
+#: rpm.c:462
 #, fuzzy
 msgid "      --buildroot <dir>   "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: ../rpm.c:464
+#: rpm.c:463
 msgid "use <dir> as the build root"
 msgstr "Benutze <VERZ> als Stammverzeichnis beim Erstellen"
 
-#: ../rpm.c:465
+#: rpm.c:464
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: ../rpm.c:466
+#: rpm.c:465
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: ../rpm.c:468
+#: rpm.c:467
 msgid "do not execute any stages"
 msgstr "Keine Stufen ausführen"
 
-#: ../rpm.c:469
+#: rpm.c:468
 #, fuzzy
 msgid "      --timecheck <secs>  "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: ../rpm.c:470
+#: rpm.c:469
 #, fuzzy
 msgid "set the time check to <secs> seconds (0 disables)"
 msgstr "Die Zeitüberprüfung auf S Sekunden setzen (mit 0 ausschalten)"
 
-#: ../rpm.c:472
+#: rpm.c:471
 msgid "    --rebuild <src_pkg>   "
 msgstr ""
 
-#: ../rpm.c:473
+#: rpm.c:472
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -1249,234 +985,238 @@ msgstr ""
 "Quellpaket installieren, Binarypaket erstellen und spec-Datei, Quellen, "
 "Patch-Dateien und Icons löschen"
 
-#: ../rpm.c:474
+#: rpm.c:473
 #, fuzzy
 msgid "    --rmsource <spec>     "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: ../rpm.c:475
+#: rpm.c:474
 msgid "remove sources and spec file"
 msgstr "lösche Quellen und spec-Datei"
 
-#: ../rpm.c:476
+#: rpm.c:475
 msgid "    --recompile <src_pkg> "
 msgstr ""
 
-#: ../rpm.c:477
+#: rpm.c:476
 msgid "like --rebuild, but don't build any package"
 msgstr "wie --rebuild aber kein Paket erstellen"
 
-#: ../rpm.c:478
+#: rpm.c:477
 #, fuzzy
 msgid "    --resign <pkg>+       "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: ../rpm.c:479
+#: rpm.c:478
 msgid "sign a package (discard current signature)"
 msgstr "Ein Paket signieren (die aktuelle Signature wird verworfen)"
 
-#: ../rpm.c:480
+#: rpm.c:479
 #, fuzzy
 msgid "    --addsign <pkg>+      "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: ../rpm.c:481
+#: rpm.c:480
 msgid "add a signature to a package"
 msgstr "Signatur einem Paket hinzufügen"
 
-#: ../rpm.c:483
+#: rpm.c:482
 #, fuzzy
 msgid "    --checksig <pkg>+     "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: ../rpm.c:484
+#: rpm.c:483
 msgid "verify package signature"
 msgstr "Paketsignatur überprüfen"
 
-#: ../rpm.c:486
+#: rpm.c:485
 msgid "skip any PGP signatures"
 msgstr "alle PGP-Signaturen überspringen"
 
-#: ../rpm.c:488
+#: rpm.c:487
 #, fuzzy
 msgid "skip any GPG signatures"
 msgstr "alle PGP-Signaturen überspringen"
 
-#: ../rpm.c:490
+#: rpm.c:489
 msgid "skip any MD5 signatures"
 msgstr "alle MD5-Signaturen überspringen"
 
-#: ../rpm.c:492
+#: rpm.c:491
 msgid "list the tags that can be used in a query format"
 msgstr "Tags auflisten, die im Anfrageformat benutzt werden können"
 
-#: ../rpm.c:494
+#: rpm.c:493
 msgid "make sure a valid database exists"
 msgstr "Sicherstellen, daß eine gültige Datenbank vorhanden ist"
 
-#: ../rpm.c:496
+#: rpm.c:495
 msgid "rebuild database from existing database"
 msgstr "Datenbank aus der vorhandenen neu erstellen"
 
-#: ../rpm.c:631 ../rpm.c:637 ../rpm.c:644 ../rpm.c:650 ../rpm.c:659
-#: ../rpm.c:666 ../rpm.c:713 ../rpm.c:719 ../rpm.c:779 ../rpm.c:787
-#: ../rpm.c:794 ../rpm.c:803 ../rpm.c:810 ../rpm.c:818 ../rpm.c:854
-#: ../rpm.c:909 ../rpm.c:916
+#: rpm.c:639 rpm.c:645 rpm.c:652 rpm.c:658 rpm.c:667 rpm.c:674 rpm.c:721
+#: rpm.c:727 rpm.c:761 rpm.c:767 rpm.c:773 rpm.c:781 rpm.c:816 rpm.c:871
+#: rpm.c:878
 msgid "only one major mode may be specified"
 msgstr "Es darf nur ein Hauptmodus angegeben werden"
 
-#: ../rpm.c:652
+#: rpm.c:660
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr "-u und --uninstall sind veraltet und funktionieren nicht mehr.\n"
 
-#: ../rpm.c:654
+#: rpm.c:662
 msgid "Use -e or --erase instead.\n"
 msgstr "Benutzen Sie stattdessen -e oder --erase\n"
 
-#: ../rpm.c:670
+#: rpm.c:678
 msgid "--build (-b) requires one of a,b,i,c,p,l as its sole argument"
 msgstr ""
 "--build (-b) benötigt einen Buchstaben aus a,b,i,c,p,l als einziges Argument"
 
-#: ../rpm.c:674
+#: rpm.c:682
 msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
 msgstr ""
 "--tarbuild (-t) benötigt einen Buchstaben aus a,b,i,c,p,l als einziges "
 "Argument"
 
-#: ../rpm.c:726 ../rpm.c:732 ../rpm.c:739 ../rpm.c:746 ../rpm.c:755
-#: ../rpm.c:763 ../rpm.c:771 ../rpm.c:923
+#: rpm.c:734 rpm.c:740 rpm.c:747 rpm.c:754 rpm.c:885
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 "Nur nur eine Art der Anfrage/Überprüfung kann pro Programmlauf durchgeführt "
 "werden"
 
-#: ../rpm.c:826
+#: rpm.c:789
 msgid "arguments to --dbpath must begin with a /"
 msgstr "Argumente zu --dbpath müssen mit einem / beginnen"
 
-#: ../rpm.c:860
+#: rpm.c:822
 msgid "relocations must begin with a /"
 msgstr "Verschiebungen müssen mit einem »/« beginnen"
 
-#: ../rpm.c:862
+#: rpm.c:824
 msgid "relocations must contain a ="
 msgstr "Verschiebungen müssen ein »=« beinhalten"
 
-#: ../rpm.c:865
+#: rpm.c:827
 msgid "relocations must have a / following the ="
 msgstr "bei Verschiebungen muss ein »/« dem »=« folgen"
 
-#: ../rpm.c:874
+#: rpm.c:836
 #, fuzzy
 msgid "exclude paths must begin with a /"
 msgstr "Verschiebungen müssen mit einem »/« beginnen"
 
-#: ../rpm.c:883
+#: rpm.c:845
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: ../rpm.c:936
+#: rpm.c:898
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath wurde für eine Operation angeben, die keine Datenbank benutzt"
 
-#: ../rpm.c:941
+#: rpm.c:903
 msgid "--timecheck may only be used during package builds"
 msgstr "--clean darf nur während der Paketerstellung benutzt werden"
 
-#: ../rpm.c:944 ../rpm.c:947
-msgid "unexpected query specifiers"
-msgstr "Unerwartete Angaben für die Anfrage"
+#: rpm.c:906
+#, fuzzy
+msgid "unexpected query flags"
+msgstr "Unerwartete Quelle der Anfrage"
+
+#: rpm.c:909
+#, fuzzy
+msgid "unexpected query format"
+msgstr "Unerwartete Quelle der Anfrage"
 
-#: ../rpm.c:951
+#: rpm.c:913
 msgid "unexpected query source"
 msgstr "Unerwartete Quelle der Anfrage"
 
-#: ../rpm.c:957
+#: rpm.c:919
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "nur die Installation und Aktualisierung darf erzwungen werden"
 
-#: ../rpm.c:960
+#: rpm.c:922
 msgid "files may only be relocated during package installation"
 msgstr "Dateien können nur während der Paketinstallation verschoben werden"
 
-#: ../rpm.c:963
+#: rpm.c:925
 msgid "only one of --prefix or --relocate may be used"
 msgstr "nur eines der Argumente --prefix oder --relocate darf angegeben werden"
 
-#: ../rpm.c:966
+#: rpm.c:928
 #, fuzzy
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr "--relocate darf nur bei der Installation neuer Pakete benutzt werden"
 
-#: ../rpm.c:969
+#: rpm.c:931
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix darf nur bei der Installation neuer Pakete benutzt werden"
 
-#: ../rpm.c:972
+#: rpm.c:934
 msgid "arguments to --prefix must begin with a /"
 msgstr "Argumente zu --prefix müssen mit einem / beginnen"
 
-#: ../rpm.c:975
+#: rpm.c:937
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) darf nur während der Paketinstallation angegeben werden"
 
-#: ../rpm.c:979
+#: rpm.c:941
 msgid "--percent may only be specified during package installation"
 msgstr "--percent darf nur während der Paketinstallation angegeben werden"
 
-#: ../rpm.c:983
+#: rpm.c:945
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles darf nur während der Paketinstallation angegeben werden"
 
-#: ../rpm.c:987
+#: rpm.c:949
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs darf nur während der Paketinstallation angegeben werden"
 
-#: ../rpm.c:991
+#: rpm.c:953
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs darf nur während der Paketinstallation angegeben werden"
 
-#: ../rpm.c:995
+#: rpm.c:957
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs darf nur während der Paketinstallation angegeben werden"
 
-#: ../rpm.c:999
+#: rpm.c:961
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 "nur eines der Argumente --excludedocs und --includedocs darf angegeben werden"
 
-#: ../rpm.c:1003
+#: rpm.c:965
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch darf nur während der Paketinstallation angegeben werden"
 
-#: ../rpm.c:1007
+#: rpm.c:969
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos darf nur während der Paketinstallation angegeben werden"
 
-#: ../rpm.c:1011
+#: rpm.c:973
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoreos darf nur während der Paketinstallation angegeben werden"
 
-#: ../rpm.c:1015
+#: rpm.c:977
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches darf nur während der Paketdeinstallaiton angegeben werden"
 
-#: ../rpm.c:1019
+#: rpm.c:981
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles darf nur während der Paketinstallation angegeben werden"
 
-#: ../rpm.c:1023
+#: rpm.c:985
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 "--justdb kann nur während der Paketinstallation und -deinstallation "
 "angegeben werden"
 
-#: ../rpm.c:1028
+#: rpm.c:990
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -1484,7 +1224,7 @@ msgstr ""
 "--noscripts darf nur während der Paketinstallation, -deinstallation und "
 "-überprüfung angegeben werden"
 
-#: ../rpm.c:1032
+#: rpm.c:994
 msgid ""
 "--notriggers may only be specified during package installation, erasure, and "
 "verification"
@@ -1492,7 +1232,7 @@ msgstr ""
 "--notriggers darf nur während der Paketinstallation, -deinstallation und "
 "-überprüfung angegeben werden"
 
-#: ../rpm.c:1038
+#: rpm.c:1000
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, installation, "
@@ -1501,11 +1241,7 @@ msgstr ""
 "--nodeps darf nur während der Paketinstallation, -deinstallation und "
 "-überprüfung angegeben werden"
 
-#: ../rpm.c:1043
-msgid "--nofiles may only be specified during package verification"
-msgstr "--nofiles darf nur während der Paketüberprüfung angegeben werden"
-
-#: ../rpm.c:1049
+#: rpm.c:1005
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
@@ -1513,7 +1249,7 @@ msgstr ""
 "--test darf nur während der Paketinstallation, -deinstallation und "
 "-erstellung angegeben werden"
 
-#: ../rpm.c:1054
+#: rpm.c:1010
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -1521,39 +1257,22 @@ msgstr ""
 "--root (-r) darf nur während der Paketinstallation, -deinstallation, "
 "-anfrage und Datenbankneuerstellungen angegeben werden"
 
-#: ../rpm.c:1059
+#: rpm.c:1015
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "Argumente zu --root (-r) müssen mit einem / beginnen"
 
-#: ../rpm.c:1063
-msgid "--clean may only be used with -b and -t"
-msgstr "--clean darf nur mit -b und -t benutzt werden"
-
-#: ../rpm.c:1066
-msgid "--rmsource may only be used with -b and -t"
-msgstr "--rmsource darf nur mit -b und -t benutzt werden"
-
-#: ../rpm.c:1069
-msgid "--short-circuit may only be used during package building"
-msgstr "--short-circuit darf nur während der Paketerstellung benutzt werden"
-
-#: ../rpm.c:1073
-msgid "--short-circuit may only be used with -bc, -bi, -bs, -tc -ti, or -ts"
-msgstr ""
-"--short-circuit darf nur mit -bc, -bi, -bs, -tc -ti oder -ts benutzt werden"
-
-#: ../rpm.c:1079
+#: rpm.c:1018
 msgid "--oldpackage may only be used during upgrades"
 msgstr "--oldpackage darf nur während Aktualisierungen benutzt werden"
 
-#: ../rpm.c:1084
+#: rpm.c:1023
 msgid ""
 "ftp options can only be used during package queries, installs, and upgrades"
 msgstr ""
 "ftp-Optionen können nur während Paketanfragen, -installationen und "
 "-aktualisierungen benutzt werden"
 
-#: ../rpm.c:1090
+#: rpm.c:1029
 #, fuzzy
 msgid ""
 "http options can only be used during package queries, installs, and upgrades"
@@ -1561,2061 +1280,2447 @@ msgstr ""
 "ftp-Optionen können nur während Paketanfragen, -installationen und "
 "-aktualisierungen benutzt werden"
 
-#: ../rpm.c:1094
+#: rpm.c:1033
 msgid "--nopgp may only be used during signature checking"
 msgstr "--nopgp darf nur während der Signatur-Überprüfung benutzt werden"
 
-#: ../rpm.c:1097
+#: rpm.c:1036
 #, fuzzy
 msgid "--nogpg may only be used during signature checking"
 msgstr "--nopgp darf nur während der Signatur-Überprüfung benutzt werden"
 
-#: ../rpm.c:1100
+#: rpm.c:1039
 #, fuzzy
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr ""
 "--nopgp darf nur während der Signatur- und Paketüberprüfung angegeben werden"
 
-#: ../rpm.c:1126
+#: rpm.c:1063
+msgid "no files to sign\n"
+msgstr ""
+
+#: rpm.c:1068
 #, fuzzy, c-format
 msgid "cannot access file %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: ../rpm.c:1143
+#: rpm.c:1083
 #, fuzzy
 msgid "pgp not found: "
 msgstr "Datei auf dem Server nicht gefunden"
 
-#: ../rpm.c:1146
-msgid "Use `%%_signature pgp5' instead of `%%_signature pgp' in macro file.\n"
-msgstr ""
-
-#: ../rpm.c:1153
-#, fuzzy
-msgid "pgp version 5 not found: "
-msgstr "Datei auf dem Server nicht gefunden"
-
-#: ../rpm.c:1156
-msgid "Use `%%_signature pgp' instead of `%%_signature pgp5' in macro file.\n"
-msgstr ""
-
-#: ../rpm.c:1162
+#: rpm.c:1087
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: ../rpm.c:1163
+#: rpm.c:1089
 msgid "Pass phrase check failed\n"
 msgstr "Die Passwortüberprüfung ist fehlgeschlagen\n"
 
-#: ../rpm.c:1166
+#: rpm.c:1092
 msgid "Pass phrase is good.\n"
 msgstr "Das Passwort ist richtig.\n"
 
-#: ../rpm.c:1173
+#: rpm.c:1097
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: ../rpm.c:1178
+#: rpm.c:1103
 msgid "--sign may only be used during package building"
 msgstr "--sign darf nur während der Paketerstellung benutzt werden"
 
-#: ../rpm.c:1195
+#: rpm.c:1118
 #, fuzzy
 msgid "exec failed\n"
 msgstr "%s: Öffnen fehlgeschlagen\n"
 
-#: ../rpm.c:1214
+#: rpm.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr "Unerwartete Argumente zu --querytags "
 
-#: ../rpm.c:1225
+#: rpm.c:1148
 msgid "no packages given for signature check"
 msgstr "Es wurden keine Pakete für die Signaturüberprüfung angegeben"
 
-#: ../rpm.c:1233
+#: rpm.c:1160
 msgid "no packages given for signing"
 msgstr "Es wurden keine Pakete für die Signatur angeben"
 
-#: ../rpm.c:1242
+#: rpm.c:1173
 msgid "no packages files given for rebuild"
 msgstr "Es wurden keine Paketdateien für die Neuerstellung angegeben"
 
-#: ../rpm.c:1299
+#: rpm.c:1230
 msgid "no spec files given for build"
 msgstr "Es wurde kein spec-Datei für die Erstellung angegeben"
 
-#: ../rpm.c:1301
+#: rpm.c:1232
 msgid "no tar files given for build"
 msgstr "Es wurde keine tar-Datei für die Erstellung angegeben"
 
-#: ../rpm.c:1313
+#: rpm.c:1244
 msgid "no packages given for uninstall"
 msgstr "Es wurden keine Pakete für die Deinstallation angegeben"
 
-#: ../rpm.c:1362
+#: rpm.c:1294
 msgid "no packages given for install"
 msgstr "Es wurden keine Pakete für die Installation angegeben"
 
-#: ../rpm.c:1385
+#: rpm.c:1317
 msgid "extra arguments given for query of all packages"
 msgstr "Zusätzliche Argumente für die Anfrage an alle Pakete angegeben"
 
-#: ../rpm.c:1390
+#: rpm.c:1322
 msgid "no arguments given for query"
 msgstr "Es wurden keine Argumente für die Anfrage angegeben"
 
-#: ../rpm.c:1411
+#: rpm.c:1339
 #, fuzzy
 msgid "extra arguments given for verify of all packages"
 msgstr "Zusätzliche Argumente für die Anfrage an alle Pakete angegeben"
 
-#: ../rpm.c:1415
+#: rpm.c:1343
 msgid "no arguments given for verify"
 msgstr "Es wurden keine Argumente für die Überprüfung angegeben"
 
-#: ../rpm2cpio.c:42
+#: rpm2cpio.c:34
 msgid "argument is not an RPM package\n"
 msgstr ""
 
-#: ../rpm2cpio.c:46
+#: rpm2cpio.c:38
 #, fuzzy
 msgid "error reading header from package\n"
 msgstr "Fehler beim Suchen nach Paket %s\n"
 
-#: ../url.c:136
-#, c-format
-msgid "Password for %s@%s: "
-msgstr "Passworf für %s@%s: "
+# , c-format
+#: build/build.c:83 build/pack.c:263
+#, fuzzy
+msgid "Unable to open temp file"
+msgstr "Datei %s kann nicht zum Lesen geöffnet werden: %s."
 
-#: ../url.c:160 ../url.c:186
+# , c-format
+#: build/build.c:124
 #, fuzzy, c-format
-msgid "error: %sport must be a number\n"
-msgstr "Fehler: der FTP-Port muss eine Zahl sein\n"
-
-#: ../url.c:271
-#, fuzzy
-msgid "url port must be a number\n"
-msgstr "Fehler: der FTP-Port muss eine Zahl sein\n"
+msgid "Executing: %s\n"
+msgstr "Hole %s heraus\n"
 
-#. XXX PARANOIA
-#: ../url.c:308
-#, c-format
-msgid "logging into %s as %s, pw %s\n"
-msgstr ""
-
-# , c-format
-#: ../lib/rpmdb.c:169 ../url.c:422
-#, c-format
-msgid "failed to open %s\n"
-msgstr "Öffnen von %s fehlgeschlagen\n"
-
-# , c-format
-#: ../url.c:437
-#, c-format
-msgid "failed to create %s\n"
-msgstr "anlegen von %s fehlgeschlagen\n"
-
-# , c-format
-#: ../build/build.c:83 ../build/pack.c:248
-#, fuzzy
-msgid "Unable to open temp file"
-msgstr "Datei %s kann nicht zum Lesen geöffnet werden: %s."
-
-# , c-format
-#: ../build/build.c:122
-#, fuzzy, c-format
-msgid "Executing: %s\n"
-msgstr "Hole %s heraus\n"
-
-#: ../build/build.c:126
+#: build/build.c:128
 #, fuzzy, c-format
 msgid "Exec of %s failed (%s)"
 msgstr "öffnen von %s fehlgeschlagen: %s\n"
 
-#: ../build/build.c:136
+#: build/build.c:138
 #, c-format
 msgid "Bad exit status from %s (%s)"
 msgstr ""
 
-#: ../build/expression.c:189 ../build/expression.c:198
-msgid "parse error in tokenizer"
-msgstr ""
+#: build/expression.c:208
+#, fuzzy
+msgid "syntax error while parsing =="
+msgstr "? im Ausdruck erwartet"
+
+#: build/expression.c:238
+#, fuzzy
+msgid "syntax error while parsing &&"
+msgstr "? im Ausdruck erwartet"
+
+#: build/expression.c:247
+#, fuzzy
+msgid "syntax error while parsing ||"
+msgstr "? im Ausdruck erwartet"
 
-#: ../build/expression.c:240
+#: build/expression.c:289
 #, fuzzy
 msgid "parse error in expression"
 msgstr "? im Ausdruck erwartet"
 
-#: ../build/expression.c:270
+#: build/expression.c:319
 msgid "unmatched ("
 msgstr ""
 
-#: ../build/expression.c:288
+#: build/expression.c:337
 msgid "undefined identifier"
 msgstr ""
 
-#: ../build/expression.c:307
+#: build/expression.c:356
 msgid "- only on numbers"
 msgstr ""
 
-#: ../build/expression.c:323
+#: build/expression.c:372
 msgid "! only on numbers"
 msgstr ""
 
-#: ../build/expression.c:362 ../build/expression.c:407
-#: ../build/expression.c:464 ../build/expression.c:551
+#: build/expression.c:411 build/expression.c:456 build/expression.c:513
+#: build/expression.c:600
 msgid "types must match"
 msgstr ""
 
-#: ../build/expression.c:375
+#: build/expression.c:424
 msgid "* / not suported for strings"
 msgstr ""
 
-#: ../build/expression.c:423
+#: build/expression.c:472
 msgid "- not suported for strings"
 msgstr ""
 
-#: ../build/expression.c:564
+#: build/expression.c:613
 msgid "&& and || not suported for strings"
 msgstr ""
 
-#: ../build/expression.c:595 ../build/expression.c:640
+#: build/expression.c:644 build/expression.c:689
 #, fuzzy
 msgid "syntax error in expression"
 msgstr "? im Ausdruck erwartet"
 
-#: ../build/files.c:220
+#: build/files.c:224
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr ""
 
-#: ../build/files.c:265 ../build/files.c:277 ../build/files.c:346
-#: ../build/files.c:358 ../build/files.c:389
-#, c-format
-msgid "Bad %s() syntax: %s"
-msgstr ""
-
-#: ../build/files.c:307
-#, c-format
-msgid "Invalid %s token: %s"
-msgstr ""
+#: build/files.c:267 build/files.c:349 build/files.c:512
+#, fuzzy, c-format
+msgid "Missing '(' in %s %s"
+msgstr "fehlende { nach %{"
 
-#: ../build/files.c:369
-msgid "No files after %%defattr(): %s"
-msgstr ""
+#: build/files.c:278 build/files.c:466 build/files.c:523
+#, fuzzy, c-format
+msgid "Missing ')' in %s(%s"
+msgstr "fehlender ':' bei %s:%d"
 
-#: ../build/files.c:399
+#: build/files.c:316 build/files.c:491
 #, c-format
-msgid "Bad %s() mode spec: %s"
+msgid "Invalid %s token: %s"
 msgstr ""
 
-#: ../build/files.c:411
+#: build/files.c:365
 #, c-format
-msgid "Bad %s() dirmode spec: %s"
+msgid "Non-white space follows %s(): %s"
 msgstr ""
 
-#: ../build/files.c:462
-msgid "Bad %%config() syntax: %s"
-msgstr ""
+# , c-format
+#: build/files.c:403
+#, fuzzy, c-format
+msgid "Bad syntax: %s(%s)"
+msgstr "Lesen von %s fehlgeschlagen: %s."
 
-#: ../build/files.c:480
-msgid "Invalid %%config token: %s"
-msgstr ""
+# , c-format
+#: build/files.c:413
+#, fuzzy, c-format
+msgid "Bad mode spec: %s(%s)"
+msgstr "Lesen von %s fehlgeschlagen: %s."
 
-#: ../build/files.c:503 ../build/files.c:515 ../build/files.c:528
-msgid "Bad %%lang() syntax: %s"
+#: build/files.c:425
+#, c-format
+msgid "Bad dirmode spec: %s(%s)"
 msgstr ""
 
-#: ../build/files.c:534
-msgid "%%lang() entries are 2 characters: %s"
+#: build/files.c:549
+msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
 msgstr ""
 
-#: ../build/files.c:540
-msgid "Only one entry in %%lang(): %s"
+#: build/files.c:559
+msgid "Duplicate locale %.*s in %%lang(%s)"
 msgstr ""
 
-#: ../build/files.c:620
+#: build/files.c:651
 msgid "Hit limit for %%docdir"
 msgstr ""
 
-#: ../build/files.c:626
+#: build/files.c:657
 msgid "Only one arg for %%docdir"
 msgstr ""
 
 # , c-format
 #. We already got a file -- error
-#: ../build/files.c:651
+#: build/files.c:682
 #, fuzzy, c-format
 msgid "Two files on one line: %s"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: ../build/files.c:664
+#: build/files.c:695
 #, fuzzy, c-format
 msgid "File must begin with \"/\": %s"
 msgstr "Verschiebungen müssen mit einem »/« beginnen"
 
-#: ../build/files.c:676
+#: build/files.c:707
 msgid "Can't mix special %%doc with other forms: %s"
 msgstr ""
 
 # , c-format
-#: ../build/files.c:764
+#: build/files.c:792
 #, fuzzy, c-format
 msgid "File listed twice: %s"
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
 # , c-format
-#: ../build/files.c:916
+#: build/files.c:952
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s"
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
-#: ../build/files.c:926 ../build/files.c:1049
+#: build/files.c:962 build/files.c:1099
 #, fuzzy, c-format
 msgid "File not found: %s"
 msgstr "Datei auf dem Server nicht gefunden"
 
-#: ../build/files.c:969
+#: build/files.c:1005
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
 # , c-format
-#: ../build/files.c:983
+#: build/files.c:1019
 #, fuzzy, c-format
 msgid "File %4d: 0%o %s.%s\t %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: ../build/files.c:1033
+#: build/files.c:1083
 #, c-format
 msgid "File needs leading \"/\": %s"
 msgstr ""
 
-#: ../build/files.c:1090
+#: build/files.c:1140
 #, fuzzy
 msgid "Could not open %%files file: %s"
 msgstr "Fehler: kann Datei %s nicht öffnen\n"
 
-#: ../build/files.c:1097 ../build/pack.c:433
+#: build/files.c:1147 build/pack.c:484
 #, c-format
 msgid "line: %s"
 msgstr ""
 
-#: ../build/files.c:1394 ../build/parsePrep.c:31
+#: build/files.c:1469 build/parsePrep.c:29
 #, c-format
 msgid "Bad owner/group: %s"
 msgstr ""
 
-#: ../build/files.c:1448
+#: build/files.c:1522
 #, fuzzy, c-format
 msgid "Couldn't exec %s"
 msgstr "Konnte pgp nicht durchführen"
 
-#: ../build/files.c:1452
+#: build/files.c:1526
 #, fuzzy, c-format
 msgid "Couldn't fork %s"
 msgstr "Konnte Signatur-Ziel (»sigtarget«) nicht lesen"
 
-#: ../build/files.c:1502
+#: build/files.c:1605
 #, fuzzy, c-format
 msgid "%s failed"
 msgstr "pgp fehlgeschlagen"
 
 # , c-format
-#: ../build/files.c:1506
+#: build/files.c:1609
 #, fuzzy, c-format
 msgid "failed to write all data to %s"
 msgstr "anlegen von %s fehlgeschlagen\n"
 
-#: ../build/files.c:1540
-msgid "Finding provides...\n"
-msgstr ""
-
-#: ../build/files.c:1547
-msgid "Failed to find provides"
-msgstr ""
-
-#: ../build/files.c:1566
-msgid "Finding requires...\n"
+#: build/files.c:1695
+#, c-format
+msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
 # , c-format
-#: ../build/files.c:1573
-#, fuzzy
-msgid "Failed to find requires"
+#: build/files.c:1723 build/files.c:1732
+#, fuzzy, c-format
+msgid "Failed to find %s:"
 msgstr "anlegen von %s fehlgeschlagen\n"
 
-#: ../build/files.c:1607
-msgid "Provides:"
-msgstr ""
-
-#: ../build/files.c:1622
-msgid "Prereqs:"
-msgstr ""
-
-#: ../build/files.c:1634
-msgid "Requires:"
-msgstr ""
-
 # , c-format
-#: ../build/files.c:1658
+#: build/files.c:1838
 #, fuzzy, c-format
 msgid "Processing files: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: ../build/names.c:32 ../build/names.c:64
+#: build/names.c:32 build/names.c:64
 msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
 msgstr ""
 
-#: ../build/names.c:97 ../build/names.c:129
+#: build/names.c:97 build/names.c:129
 msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
 msgstr ""
 
-#: ../build/names.c:167
+#: build/names.c:167
 #, c-format
 msgid "Could not canonicalize hostname: %s\n"
 msgstr ""
 
-#: ../build/pack.c:134
+#: build/pack.c:131
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr ""
 
+#: build/pack.c:148
+#, fuzzy, c-format
+msgid "cannot create %s: %s\n"
+msgstr "kann Datei %s nicht öffnen: "
+
 # , c-format
-#: ../build/pack.c:167
+#: build/pack.c:183
 #, fuzzy, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
 # , c-format
-#: ../build/pack.c:177
+#: build/pack.c:193
 #, fuzzy, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
-#: ../build/pack.c:197
+#: build/pack.c:213
 #, fuzzy, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr "Fehler: %s scheint zu keinem RPM-Paket zu gehören\n"
 
-#: ../build/pack.c:203
+#: build/pack.c:219
 #, fuzzy, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr "Fehler beim Eintrag %s von %s"
 
-#: ../build/pack.c:259
+#: build/pack.c:274
 msgid "Bad CSA data"
 msgstr ""
 
 # , c-format
-#: ../build/pack.c:282
+#: build/pack.c:305
 #, fuzzy, c-format
 msgid "Could not open %s\n"
 msgstr "Öffnen von %s fehlgeschlagen\n"
 
 # , c-format
-#: ../build/pack.c:314 ../build/pack.c:357
+#: build/pack.c:337 build/pack.c:379
 #, fuzzy, c-format
 msgid "Unable to write package: %s"
 msgstr "Nicht möglich %s zu schreiben"
 
+#: build/pack.c:352
+#, fuzzy, c-format
+msgid "Generating signature: %d\n"
+msgstr "PGP-Signatur generieren"
+
 # , c-format
-#: ../build/pack.c:347
+#: build/pack.c:369
 #, fuzzy, c-format
 msgid "Unable to read sigtarget: %s"
 msgstr "Nicht möglich %s zu schreiben"
 
-#: ../build/pack.c:372
+#: build/pack.c:394
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
 
 # , c-format
-#: ../build/pack.c:387
+#: build/pack.c:411 build/pack.c:435
 #, fuzzy, c-format
 msgid "create archive failed on file %s: %s"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: ../build/pack.c:403
+#: build/pack.c:454
 #, c-format
 msgid "cpio_copy write failed: %s"
 msgstr ""
 
-#: ../build/pack.c:410
+#: build/pack.c:461
 #, fuzzy, c-format
 msgid "cpio_copy read failed: %s"
 msgstr "lesen fehlgeschlagen: %s (%d)"
 
-#: ../build/pack.c:489
+#: build/pack.c:540
 #, fuzzy, c-format
 msgid "Could not open PreIn file: %s"
 msgstr "Fehler: kann Datei %s nicht öffnen\n"
 
-#: ../build/pack.c:496
+#: build/pack.c:547
 #, fuzzy, c-format
 msgid "Could not open PreUn file: %s"
 msgstr "Fehler: kann Datei %s nicht öffnen\n"
 
-#: ../build/pack.c:503
+#: build/pack.c:554
 #, fuzzy, c-format
 msgid "Could not open PostIn file: %s"
 msgstr "Fehler: kann Datei %s nicht öffnen\n"
 
-#: ../build/pack.c:510
+#: build/pack.c:561
 #, fuzzy, c-format
 msgid "Could not open PostUn file: %s"
 msgstr "Fehler: kann Datei %s nicht öffnen\n"
 
-#: ../build/pack.c:518
+#: build/pack.c:569
 #, c-format
 msgid "Could not open VerifyScript file: %s"
 msgstr ""
 
-#: ../build/pack.c:534
+#: build/pack.c:585
 #, c-format
 msgid "Could not open Trigger script file: %s"
 msgstr ""
 
-#: ../build/parseBuildInstallClean.c:27
+#: build/parseBuildInstallClean.c:27
 #, c-format
 msgid "line %d: second %s"
 msgstr ""
 
-#: ../build/parseChangelog.c:95
+#: build/parseChangelog.c:103
 msgid "%%changelog entries must start with *"
 msgstr ""
 
-#: ../build/parseChangelog.c:103
+#: build/parseChangelog.c:111
 msgid "incomplete %%changelog entry"
 msgstr ""
 
-#: ../build/parseChangelog.c:118
+#: build/parseChangelog.c:126
 msgid "bad date in %%changelog: %s"
 msgstr ""
 
-#: ../build/parseChangelog.c:123
+#: build/parseChangelog.c:131
 msgid "%%changelog not in decending chronological order"
 msgstr ""
 
-#: ../build/parseChangelog.c:131 ../build/parseChangelog.c:142
+#: build/parseChangelog.c:139 build/parseChangelog.c:150
 msgid "missing name in %%changelog"
 msgstr ""
 
-#: ../build/parseChangelog.c:149
+#: build/parseChangelog.c:157
 msgid "no description in %%changelog"
 msgstr ""
 
-#: ../build/parseDescription.c:35
+#: build/parseDescription.c:33
 msgid "line %d: Error parsing %%description: %s"
 msgstr ""
 
 # , c-format
-#: ../build/parseDescription.c:48 ../build/parseFiles.c:42
-#: ../build/parseScript.c:170
+#: build/parseDescription.c:46 build/parseFiles.c:40 build/parseScript.c:168
 #, fuzzy, c-format
 msgid "line %d: Bad option %s: %s"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: ../build/parseDescription.c:62 ../build/parseFiles.c:56
-#: ../build/parseScript.c:184
+#: build/parseDescription.c:60 build/parseFiles.c:54 build/parseScript.c:182
 #, c-format
 msgid "line %d: Too many names: %s"
 msgstr ""
 
-#: ../build/parseDescription.c:72 ../build/parseFiles.c:66
-#: ../build/parseScript.c:194
+#: build/parseDescription.c:70 build/parseFiles.c:64 build/parseScript.c:192
 #, fuzzy, c-format
 msgid "line %d: Package does not exist: %s"
 msgstr "Paket %s wird nicht in %s aufgeführt"
 
-#: ../build/parseDescription.c:84
+#: build/parseDescription.c:82
 #, c-format
 msgid "line %d: Second description"
 msgstr ""
 
-#: ../build/parseFiles.c:29
+#: build/parseFiles.c:27
 msgid "line %d: Error parsing %%files: %s"
 msgstr ""
 
-#: ../build/parseFiles.c:74
+#: build/parseFiles.c:72
 msgid "line %d: Second %%files list"
 msgstr ""
 
-#: ../build/parsePreamble.c:143
+#: build/parsePreamble.c:141
 #, c-format
 msgid "Architecture is excluded: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:148
+#: build/parsePreamble.c:146
 #, c-format
 msgid "Architecture is not included: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:153
+#: build/parsePreamble.c:151
 #, c-format
 msgid "OS is excluded: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:158
+#: build/parsePreamble.c:156
 #, c-format
 msgid "OS is not included: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:193
+#: build/parsePreamble.c:170
 #, c-format
 msgid "%s field must be present in package: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:215
+#: build/parsePreamble.c:192
 #, c-format
 msgid "Duplicate %s entries in package: %s"
 msgstr ""
 
 # , c-format
-#: ../build/parsePreamble.c:262
+#: build/parsePreamble.c:239
 #, fuzzy, c-format
 msgid "Unable to stat icon: %s"
 msgstr "Nicht möglich %s zu schreiben"
 
 # , c-format
-#: ../build/parsePreamble.c:273
+#: build/parsePreamble.c:250
 #, fuzzy, c-format
 msgid "Unable to read icon: %s"
 msgstr "Nicht möglich %s zu schreiben"
 
-#: ../build/parsePreamble.c:283
+#: build/parsePreamble.c:260
 #, fuzzy, c-format
 msgid "Unknown icon type: %s"
 msgstr "(unbekannter Typ)"
 
-#: ../build/parsePreamble.c:346
+#: build/parsePreamble.c:323
 #, c-format
 msgid "line %d: Malformed tag: %s"
 msgstr ""
 
 #. Empty field
-#: ../build/parsePreamble.c:354
+#: build/parsePreamble.c:331
 #, c-format
 msgid "line %d: Empty tag: %s"
 msgstr ""
 
 # , c-format
-#: ../build/parsePreamble.c:377 ../build/parsePreamble.c:384
+#: build/parsePreamble.c:354 build/parsePreamble.c:361
 #, fuzzy, c-format
 msgid "line %d: Illegal char '-' in %s: %s"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: ../build/parsePreamble.c:422
+#: build/parsePreamble.c:399
 #, c-format
 msgid "line %d: BuildRoot can not be \"/\": %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:435
+#: build/parsePreamble.c:412
 #, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:447
+#: build/parsePreamble.c:424
 #, fuzzy, c-format
 msgid "line %d: Docdir must begin with '/': %s"
 msgstr "Verschiebungen müssen mit einem »/« beginnen"
 
-#: ../build/parsePreamble.c:459
+#: build/parsePreamble.c:436
 #, fuzzy, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s"
 msgstr "ungültige Paket-Nummer: %s\n"
 
-#: ../build/parsePreamble.c:524
+#: build/parsePreamble.c:499
 #, fuzzy, c-format
 msgid "line %d: Bad BuildArchitecture format: %s"
 msgstr "fehlende Architektur für %s bei %s:%d"
 
-#: ../build/parsePreamble.c:534
+#: build/parsePreamble.c:509
 #, c-format
 msgid "Internal error: Bogus tag %d"
 msgstr ""
 
-#: ../build/parsePreamble.c:679
+#: build/parsePreamble.c:656
 #, fuzzy, c-format
 msgid "Bad package specification: %s"
 msgstr "      Optionen der Paketauswahl:"
 
-#: ../build/parsePreamble.c:685
+#: build/parsePreamble.c:662
 #, c-format
 msgid "Package already exists: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:712
+#: build/parsePreamble.c:689
 #, c-format
 msgid "line %d: Unknown tag: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:737
+#: build/parsePreamble.c:714
 msgid "Spec file can't use BuildRoot"
 msgstr ""
 
 # , c-format
-#: ../build/parsePrep.c:27
+#: build/parsePrep.c:25
 #, fuzzy, c-format
 msgid "Bad source: %s: %s"
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
-#: ../build/parsePrep.c:53
+#: build/parsePrep.c:51
 #, fuzzy, c-format
 msgid "No patch number %d"
 msgstr "(keine Zahl)"
 
-#: ../build/parsePrep.c:119
+#: build/parsePrep.c:117
 #, c-format
 msgid "No source number %d"
 msgstr ""
 
 # , c-format
-#: ../build/parsePrep.c:138
+#: build/parsePrep.c:136
 #, fuzzy, c-format
 msgid "Couldn't download nosource %s: %s"
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
-#: ../build/parsePrep.c:193
+#: build/parsePrep.c:191
 msgid "Error parsing %%setup: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:208
+#: build/parsePrep.c:206
 msgid "line %d: Bad arg to %%setup %c: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:229
+#: build/parsePrep.c:227
 msgid "line %d: Bad %%setup option %s: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:353
+#: build/parsePrep.c:351
 msgid "line %d: Need arg to %%patch -b: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:361
+#: build/parsePrep.c:359
 msgid "line %d: Need arg to %%patch -z: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:373
+#: build/parsePrep.c:371
 msgid "line %d: Need arg to %%patch -p: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:379
+#: build/parsePrep.c:377
 msgid "line %d: Bad arg to %%patch -p: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:386
+#: build/parsePrep.c:384
 msgid "Too many patches!"
 msgstr ""
 
-#: ../build/parsePrep.c:390
+#: build/parsePrep.c:388
 msgid "line %d: Bad arg to %%patch: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:426
+#: build/parsePrep.c:424
 msgid "line %d: second %%prep"
 msgstr ""
 
-#: ../build/parseReqs.c:45
-#, c-format
-msgid "line %d: No file names in Conflicts: %s"
-msgstr ""
-
-#: ../build/parseReqs.c:79
-#, c-format
-msgid "line %d: No versions on file names in %s: %s"
-msgstr ""
+#: build/parseReqs.c:91
+#, fuzzy, c-format
+msgid ""
+"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
+msgstr "Verschiebungen müssen mit einem »/« beginnen"
 
-#: ../build/parseReqs.c:85
-#, c-format
-msgid "line %d: No versions in PreReq: %s"
-msgstr ""
+#: build/parseReqs.c:102
+#, fuzzy, c-format
+msgid "line %d: File name not permitted: %s"
+msgstr "Paket %s wird nicht in %s aufgeführt"
 
-#: ../build/parseReqs.c:97
-#, c-format
-msgid "line %d: Version required in %s: %s"
-msgstr ""
+#: build/parseReqs.c:134
+#, fuzzy, c-format
+msgid "line %d: Versioned file name not permitted: %s"
+msgstr "Paket %s wird nicht in %s aufgeführt"
 
-#: ../build/parseReqs.c:126
+#: build/parseReqs.c:146
 #, fuzzy, c-format
-msgid "line %d: No file names in Obsoletes: %s"
+msgid "line %d: Version not permitted: %s"
 msgstr "Paket %s wird nicht in %s aufgeführt"
 
-#: ../build/parseReqs.c:133
-#, c-format
-msgid "line %d: %s: tokens must begin with alpha-numeric: %s"
-msgstr ""
+# , c-format
+#: build/parseReqs.c:172
+#, fuzzy, c-format
+msgid "line %d: Version required: %s"
+msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: ../build/parseScript.c:138
+#: build/parseScript.c:136
 #, c-format
 msgid "line %d: triggers must have --: %s"
 msgstr ""
 
-#: ../build/parseScript.c:148 ../build/parseScript.c:212
+#: build/parseScript.c:146 build/parseScript.c:210
 #, c-format
 msgid "line %d: Error parsing %s: %s"
 msgstr ""
 
-#: ../build/parseScript.c:158
+#: build/parseScript.c:156
 #, c-format
 msgid "line %d: script program must begin with '/': %s"
 msgstr ""
 
-#: ../build/parseScript.c:203
+#: build/parseScript.c:201
 #, c-format
 msgid "line %d: Second %s"
 msgstr ""
 
 # , c-format
-#: ../build/parseSpec.c:120
+#: build/parseSpec.c:126
+#, fuzzy, c-format
+msgid "line %d: %s"
+msgstr "Öffnen von %s fehlgeschlagen: %s"
+
+# , c-format
+#: build/parseSpec.c:172
 #, fuzzy, c-format
 msgid "Unable to open: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen\n"
 
-#: ../build/parseSpec.c:132
+#: build/parseSpec.c:184
 msgid "Unclosed %%if"
 msgstr ""
 
-# , c-format
-#: ../build/parseSpec.c:188
-#, fuzzy, c-format
-msgid "line %d: %s"
-msgstr "Öffnen von %s fehlgeschlagen: %s"
+#: build/parseSpec.c:243
+#, c-format
+msgid "%s:%d: parseExpressionBoolean returns %d"
+msgstr ""
 
 #. Got an else with no %if !
-#: ../build/parseSpec.c:213
+#: build/parseSpec.c:251
 msgid "%s:%d: Got a %%else with no if"
 msgstr ""
 
 #. Got an end with no %if !
-#: ../build/parseSpec.c:223
+#: build/parseSpec.c:262
 msgid "%s:%d: Got a %%endif with no if"
 msgstr ""
 
-#: ../build/parseSpec.c:235 ../build/parseSpec.c:244
+#: build/parseSpec.c:276 build/parseSpec.c:285
 msgid "malformed %%include statement"
 msgstr ""
 
-#: ../build/parseSpec.c:323
+#: build/parseSpec.c:366
 #, c-format
 msgid "Timecheck value must be an integer: %s"
 msgstr ""
 
-#: ../build/parseSpec.c:406
+#: build/parseSpec.c:449
 #, fuzzy
 msgid "No buildable architectures"
 msgstr "Paket-Architektur nicht überprüfen"
 
-#: ../build/parseSpec.c:451
+#: build/parseSpec.c:494
 #, fuzzy
 msgid "Package has no %%description: %s"
 msgstr "Paket %s wird nicht in %s aufgeführt"
 
-#: ../build/spec.c:28
+#: build/spec.c:31
 #, c-format
 msgid "archive = %s, fs = %s\n"
 msgstr ""
 
-#: ../build/spec.c:224
+#: build/spec.c:237
 #, fuzzy, c-format
 msgid "line %d: Bad number: %s"
 msgstr "ungültige Paket-Nummer: %s\n"
 
-#: ../build/spec.c:230
+#: build/spec.c:243
 #, c-format
 msgid "line %d: Bad no%s number: %d"
 msgstr ""
 
-#: ../build/spec.c:286
+#: build/spec.c:301
 #, fuzzy, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr "ungültige Paket-Nummer: %s\n"
 
 # , c-format
-#: ../lib/cpio.c:362
+#: lib/cpio.c:385
 #, fuzzy, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
-#: ../lib/cpio.c:368
+#: lib/cpio.c:391
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: ../lib/cpio.c:547
+#: lib/cpio.c:582
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: ../lib/cpio.c:1000
+#: lib/cpio.c:1044
 #, fuzzy, c-format
 msgid "(error 0x%x)"
 msgstr "Fehler: "
 
-#: ../lib/cpio.c:1003
+#: lib/cpio.c:1047
 msgid "Bad magic"
 msgstr ""
 
-#: ../lib/cpio.c:1004
+#: lib/cpio.c:1048
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: ../lib/cpio.c:1022
-#, fuzzy
-msgid "Internal error"
-msgstr "Fataler Fehler: "
-
-#: ../lib/cpio.c:1023
+#: lib/cpio.c:1066
 msgid "Header size too big"
 msgstr ""
 
-#: ../lib/cpio.c:1024
+#: lib/cpio.c:1067
 #, fuzzy
 msgid "Unknown file type"
 msgstr "(unbekannter Typ)"
 
-#: ../lib/cpio.c:1033
+#: lib/cpio.c:1068
+msgid "Missing hard link"
+msgstr ""
+
+#: lib/cpio.c:1069
+#, fuzzy
+msgid "Internal error"
+msgstr "Fataler Fehler: "
+
+#: lib/cpio.c:1078
 #, fuzzy
 msgid " failed - "
 msgstr "pgp fehlgeschlagen"
 
-#: ../lib/dbindex.c:32
+#: lib/dbindex.c:32
 #, fuzzy, c-format
 msgid "cannot open file %s: %s"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: ../lib/dbindex.c:77
+#: lib/dbindex.c:84
 #, c-format
 msgid "error getting record %s from %s"
 msgstr "Fehler beim Eintrag %s von %s"
 
-#: ../lib/dbindex.c:105
+#: lib/dbindex.c:111
 #, c-format
 msgid "error storing record %s into %s"
 msgstr "Fehler bei Schreiben des Eintrags %s nach %s"
 
 # FIXME
-#: ../lib/dbindex.c:112
+#: lib/dbindex.c:118
 #, c-format
 msgid "error removing record %s into %s"
 msgstr "Fehler beim Löschen des Eintrags %s nach %s"
 
-#: ../lib/depends.c:429 ../lib/depends.c:588
+#. XXX legacy epoch-less requires/conflicts compatibility
+#: lib/depends.c:339
 #, c-format
-msgid "cannot read header at %d for dependency check"
-msgstr "kann Kopfzeilen bei %d nicht lesen, um Abhängigkeiten zu prüfen"
+msgid ""
+"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
+"\tA %s\tB %s\n"
+msgstr ""
+
+#: lib/depends.c:368
+#, c-format
+msgid "  %s    A %s\tB %s\n"
+msgstr ""
+
+#: lib/depends.c:460
+msgid "dbrecMatchesDepFlags() failed to read header"
+msgstr ""
+
+#: lib/depends.c:695
+#, fuzzy, c-format
+msgid "%s: %s satisfied by added package.\n"
+msgstr "die Datei »%s« gehört zu keinem Paket\n"
+
+#: lib/depends.c:712
+#, c-format
+msgid "%s: %s satisfied by added provide.\n"
+msgstr ""
+
+#: lib/depends.c:717
+#, c-format
+msgid "%s: %s satisfied by added file list.\n"
+msgstr ""
+
+#: lib/depends.c:747
+#, c-format
+msgid "%s: %s satisfied by rpmrc provides.\n"
+msgstr ""
+
+#: lib/depends.c:775
+#, c-format
+msgid "%s: %s satisfied by db file lists.\n"
+msgstr ""
+
+#: lib/depends.c:797
+#, c-format
+msgid "%s: %s satisfied by db provides.\n"
+msgstr ""
 
-#: ../lib/depends.c:494
+#: lib/depends.c:819
+#, fuzzy, c-format
+msgid "%s: %s satisfied by db packages.\n"
+msgstr "die Datei »%s« gehört zu keinem Paket\n"
+
+#: lib/depends.c:832
+#, c-format
+msgid "%s: %s satisfied by rpmlib version.\n"
+msgstr ""
+
+#: lib/depends.c:842
 #, c-format
-msgid "dependencies: looking for %s\n"
+msgid "%s: %s unsatisfied.\n"
 msgstr ""
 
-#: ../lib/depends.c:682
+#. requirements are not satisfied.
+#: lib/depends.c:890
 #, fuzzy, c-format
 msgid "package %s require not satisfied: %s\n"
 msgstr "Paket %s wird nicht in %s aufgeführt"
 
-#: ../lib/depends.c:725
+#. conflicts exist.
+#: lib/depends.c:952
 #, fuzzy, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "Paket %s wird nicht in %s aufgeführt"
 
-#: ../lib/depends.c:825
-msgid "dbrecMatchesDepFlags() failed to read header"
-msgstr ""
+#: lib/depends.c:1007 lib/depends.c:1311
+#, c-format
+msgid "cannot read header at %d for dependency check"
+msgstr "kann Kopfzeilen bei %d nicht lesen, um Abhängigkeiten zu prüfen"
 
-#: ../lib/depends.c:877
+#: lib/depends.c:1102
 #, c-format
 msgid "loop in prerequisite chain: %s"
 msgstr ""
 
-#: ../lib/falloc.c:149
+#: lib/falloc.c:160
 #, c-format
-msgid "free list corrupt (%u)- contact rpm-list@redhat.com\n"
+msgid ""
+"free list corrupt (%u)- please run\n"
+"\t\"rpm --rebuilddb\"\n"
+"More information is available from http://www.rpm.org or the "
+"rpm-list@redhat.com mailing list\n"
+"if \"rpm --rebuilddb\" fails to correct the problem.\n"
 msgstr ""
 
-#: ../lib/formats.c:97 ../lib/formats.c:114 ../lib/formats.c:134
-#: ../lib/formats.c:166 ../lib/header.c:1973 ../lib/header.c:1989
-#: ../lib/header.c:2009
+#: lib/formats.c:66 lib/formats.c:84 lib/formats.c:105 lib/formats.c:138
+#: lib/header.c:2122 lib/header.c:2139 lib/header.c:2159
 msgid "(not a number)"
 msgstr "(keine Zahl)"
 
-#: ../lib/fs.c:41
+#: lib/fs.c:40
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr ""
 
 # , c-format
-#: ../lib/fs.c:76 ../lib/fs.c:246
+#: lib/fs.c:75 lib/fs.c:253
 #, fuzzy, c-format
 msgid "failed to stat %s: %s"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
+#: lib/fs.c:114
+msgid "getting list of mounted filesystems\n"
+msgstr ""
+
 # , c-format
-#: ../lib/fs.c:117
+#: lib/fs.c:119
 #, c-format
 msgid "failed to open %s: %s"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: ../lib/fs.c:267
+#: lib/fs.c:274
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr ""
 
-#: ../lib/header.c:669
-#, c-format
-msgid "Data type %d not supprted\n"
+#: lib/ftp.c:666
+msgid "Success"
+msgstr ""
+
+#: lib/ftp.c:669
+#, fuzzy
+msgid "Bad server response"
+msgstr "Nicht passende Antwort des FTP-Servers"
+
+#: lib/ftp.c:672
+#, fuzzy
+msgid "Server IO error"
+msgstr "FTP IO-Fehler"
+
+#: lib/ftp.c:675
+#, fuzzy
+msgid "Server timeout"
+msgstr "Timeout des FTP-Servers"
+
+#: lib/ftp.c:678
+#, fuzzy
+msgid "Unable to lookup server host address"
+msgstr "Unmöglich die Hostadresse des FTP-Servers zu bestimmen"
+
+#: lib/ftp.c:681
+#, fuzzy
+msgid "Unable to lookup server host name"
+msgstr "Unmöglich den Hostnamen des FTP-Servers zu bestimmen"
+
+#: lib/ftp.c:684
+#, fuzzy
+msgid "Failed to connect to server"
+msgstr "Verbindung zum FTP-Server fehlgeschlagen"
+
+#: lib/ftp.c:687
+#, fuzzy
+msgid "Failed to establish data connection to server"
+msgstr "Aufbau einer Datenverbindung zum FTP-Server fehlgeschlagen"
+
+#: lib/ftp.c:690
+msgid "IO error to local file"
+msgstr "IO-Fehler bei lokaler Datei"
+
+#: lib/ftp.c:693
+msgid "Error setting remote server to passive mode"
+msgstr "Fehler beim Setzen des FTP-Servers in den passiven Modus"
+
+#: lib/ftp.c:696
+msgid "File not found on server"
+msgstr "Datei auf dem Server nicht gefunden"
+
+#: lib/ftp.c:699
+msgid "Abort in progress"
 msgstr ""
 
+#: lib/ftp.c:703
+#, fuzzy
+msgid "Unknown or unexpected error"
+msgstr "FTP Unbekannter oder nicht erwarteter Fehler"
+
 #. This should not be allowed
-#: ../lib/header.c:905
+#: lib/header.c:169
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: ../lib/header.c:935
+#: lib/header.c:200
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: ../lib/header.c:994
+#: lib/header.c:763
 #, c-format
-msgid "Bad count for headerAddEntry(): %d\n"
+msgid "Data type %d not supprted\n"
 msgstr ""
 
-#: ../lib/header.c:1328
-msgid "? expected in expression"
-msgstr "? im Ausdruck erwartet"
-
-#: ../lib/header.c:1335
-#, fuzzy
-msgid "{ expected after ? in expression"
-msgstr "{ nach ? im Ausdruck erwartet"
-
-#: ../lib/header.c:1345 ../lib/header.c:1377
-msgid "} expected in expression"
-msgstr "} im Ausdruck erwartet"
-
-#: ../lib/header.c:1352
-msgid ": expected following ? subexpression"
-msgstr ": nach ? Unterausdruck erwartet"
-
-#: ../lib/header.c:1365
-#, fuzzy
-msgid "{ expected after : in expression"
-msgstr "{ nach : im Ausdruck erwartet"
-
-#: ../lib/header.c:1384
-msgid "| expected at end of expression"
-msgstr "| am Ende des Ausdrucks erwartet"
+#: lib/header.c:1119
+#, c-format
+msgid "Bad count for headerAddEntry(): %d\n"
+msgstr ""
 
-#: ../lib/header.c:1478
+#: lib/header.c:1520
 #, c-format
 msgid "missing { after %"
 msgstr "fehlende { nach %{"
 
-#: ../lib/header.c:1506
+#: lib/header.c:1548
 msgid "missing } after %{"
 msgstr "fehlende } nach %{"
 
 # »Tag« übersetzen??? -ke-
-#: ../lib/header.c:1518
+#: lib/header.c:1560
 msgid "empty tag format"
 msgstr "leeres »Tag«-Format"
 
-#: ../lib/header.c:1528
+#: lib/header.c:1570
 msgid "empty tag name"
 msgstr "leerer »Tag«-Name"
 
-#: ../lib/header.c:1543
+#: lib/header.c:1585
 msgid "unknown tag"
 msgstr "unbekannter »Tag«"
 
-#: ../lib/header.c:1569
+#: lib/header.c:1611
 msgid "] expected at end of array"
 msgstr "] am Ende des Arrays erwartet"
 
-#: ../lib/header.c:1585
+#: lib/header.c:1627
 msgid "unexpected ]"
 msgstr "unerwartete ]"
 
-#: ../lib/header.c:1587
+#: lib/header.c:1629
 msgid "unexpected }"
 msgstr "unerwartete }"
 
-#: ../lib/header.c:1762
+#: lib/header.c:1682
+msgid "? expected in expression"
+msgstr "? im Ausdruck erwartet"
+
+#: lib/header.c:1689
+#, fuzzy
+msgid "{ expected after ? in expression"
+msgstr "{ nach ? im Ausdruck erwartet"
+
+#: lib/header.c:1699 lib/header.c:1731
+msgid "} expected in expression"
+msgstr "} im Ausdruck erwartet"
+
+#: lib/header.c:1706
+msgid ": expected following ? subexpression"
+msgstr ": nach ? Unterausdruck erwartet"
+
+#: lib/header.c:1719
+#, fuzzy
+msgid "{ expected after : in expression"
+msgstr "{ nach : im Ausdruck erwartet"
+
+#: lib/header.c:1738
+msgid "| expected at end of expression"
+msgstr "| am Ende des Ausdrucks erwartet"
+
+#: lib/header.c:1905
 msgid "(unknown type)"
 msgstr "(unbekannter Typ)"
 
-#: ../lib/install.c:93
-msgid "source package expected, binary found"
-msgstr ""
-
 # , c-format
-#: ../lib/install.c:169 ../lib/uninstall.c:111
+#: lib/install.c:141 lib/uninstall.c:179
 #, fuzzy, c-format
 msgid "   file: %s action: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: ../lib/install.c:186
+#: lib/install.c:159
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: ../lib/install.c:194
+#: lib/install.c:167
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: ../lib/install.c:221
+#: lib/install.c:195
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
-# FIXME shared, besser: "mit anderen geteilte ..."
-#: ../lib/install.c:289
-#, fuzzy, c-format
-msgid "package: %s-%s-%s files test = %d\n"
-msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
-
-#: ../lib/install.c:352
-msgid "stopping install as we're running --test\n"
-msgstr ""
-
-#: ../lib/install.c:357
-msgid "running preinstall script (if any)\n"
-msgstr ""
-
-#: ../lib/install.c:387
-#, c-format
-msgid "warning: %s created as %s"
-msgstr ""
-
-#: ../lib/install.c:423
-#, c-format
-msgid "warning: %s saved as %s"
-msgstr ""
-
-#: ../lib/install.c:427 ../lib/install.c:790 ../lib/uninstall.c:337
-#, c-format
-msgid "rename of %s to %s failed: %s"
-msgstr "umbennen von %s nach %s fehlgeschlagen: %s"
-
-#: ../lib/install.c:507
-msgid "running postinstall script (if any)\n"
-msgstr ""
-
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
-#: ../lib/install.c:613
+#: lib/install.c:358
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: ../lib/install.c:614
+#: lib/install.c:359
 msgid " on file "
 msgstr ""
 
-#: ../lib/install.c:654
+#: lib/install.c:402
 #, fuzzy
 msgid "installing a source package\n"
 msgstr "Paket installieren"
 
-#: ../lib/install.c:665 ../lib/install.c:687
+#: lib/install.c:413
 #, fuzzy, c-format
-msgid "cannot create %s"
+msgid "cannot create %s: %s"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: ../lib/install.c:672 ../lib/install.c:694
+#: lib/install.c:421 lib/install.c:443
 #, fuzzy, c-format
 msgid "cannot write to %s"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: ../lib/install.c:676
+#: lib/install.c:425
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
+#: lib/install.c:436
+#, fuzzy, c-format
+msgid "cannot create %s"
+msgstr "kann Datei %s nicht öffnen: "
+
 # , c-format
-#: ../lib/install.c:698
+#: lib/install.c:447
 #, fuzzy, c-format
 msgid "spec file in: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: ../lib/install.c:731 ../lib/install.c:767
+#: lib/install.c:481 lib/install.c:509
 #, fuzzy
 msgid "source package contains no .spec file"
 msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
 
-#: ../lib/install.c:788
+#: lib/install.c:530
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: ../lib/lookup.c:83
+#: lib/install.c:532 lib/install.c:810 lib/uninstall.c:26
+#, c-format
+msgid "rename of %s to %s failed: %s"
+msgstr "umbennen von %s nach %s fehlgeschlagen: %s"
+
+#: lib/install.c:622
+msgid "source package expected, binary found"
+msgstr ""
+
+# FIXME shared, besser: "mit anderen geteilte ..."
+#: lib/install.c:679
+#, fuzzy, c-format
+msgid "package: %s-%s-%s files test = %d\n"
+msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
+
+#: lib/install.c:740
+msgid "stopping install as we're running --test\n"
+msgstr ""
+
+#: lib/install.c:745
+msgid "running preinstall script (if any)\n"
+msgstr ""
+
+#: lib/install.c:770
+#, c-format
+msgid "warning: %s created as %s"
+msgstr ""
+
+#: lib/install.c:806
+#, c-format
+msgid "warning: %s saved as %s"
+msgstr ""
+
+#: lib/install.c:880
+msgid "running postinstall scripts (if any)\n"
+msgstr ""
+
+#: lib/lookup.c:35
 #, c-format
 msgid "cannot read header at %d for lookup"
 msgstr "kann Kopfzeilen bei %d nicht lesen, um danach zu suchen"
 
-#: ../lib/macro.c:129
+#: lib/macro.c:149
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr ""
 
 #. XXX just in case
-#: ../lib/macro.c:218
+#: lib/macro.c:243
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: ../lib/macro.c:253
+#: lib/macro.c:278
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: ../lib/macro.c:426
+#: lib/macro.c:457
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: ../lib/macro.c:452
+#: lib/macro.c:483
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: ../lib/macro.c:458
+#: lib/macro.c:489
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: ../lib/macro.c:463
+#: lib/macro.c:494
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: ../lib/macro.c:468
+#: lib/macro.c:499
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: ../lib/macro.c:493
+#: lib/macro.c:524
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: ../lib/macro.c:566
+#: lib/macro.c:601
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: ../lib/macro.c:650
+#: lib/macro.c:698
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr ""
 
-#: ../lib/macro.c:825
+#: lib/macro.c:870
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: ../lib/macro.c:881 ../lib/macro.c:897
+#: lib/macro.c:936 lib/macro.c:952
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: ../lib/macro.c:930
+#: lib/macro.c:992
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: ../lib/macro.c:1053
+#: lib/macro.c:1115
 #, fuzzy
 msgid "Macro %%%.*s not found, skipping"
 msgstr "Paket %s in %s nicht gefunden"
 
-#: ../lib/macro.c:1131
+#: lib/macro.c:1196
 msgid "Target buffer overflow"
 msgstr ""
 
 # , c-format
-#: ../lib/macro.c:1274 ../lib/macro.c:1282
+#: lib/macro.c:1343 lib/macro.c:1351
 #, fuzzy, c-format
 msgid "File %s: %s"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: ../lib/macro.c:1285
+#: lib/macro.c:1354
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
 
-#: ../lib/messages.c:51
+#: lib/messages.c:55
 msgid "warning: "
 msgstr "Warnung: "
 
-#: ../lib/messages.c:57
+#: lib/messages.c:64
 msgid "error: "
 msgstr "Fehler: "
 
-#: ../lib/messages.c:63
+#: lib/messages.c:73
 msgid "fatal error: "
 msgstr "Fataler Fehler: "
 
-#: ../lib/messages.c:70
+#: lib/messages.c:82
 msgid "internal error (rpm bug?): "
 msgstr ""
 
-#: ../lib/misc.c:342 ../lib/misc.c:348 ../lib/misc.c:355
+#: lib/misc.c:367 lib/misc.c:373 lib/misc.c:380
 #, fuzzy, c-format
 msgid "error creating temporary file %s"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
 # , c-format
-#: ../lib/oldheader.c:292
+#: lib/oldheader.c:299
 #, fuzzy, c-format
 msgid "bad file state: %s"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: ../lib/package.c:51
+#: lib/package.c:234
 msgid "package is a version one package!\n"
 msgstr ""
 
-#: ../lib/package.c:54
+#: lib/package.c:239
 msgid "old style source package -- I'll do my best\n"
 msgstr ""
 
-#: ../lib/package.c:57
+#: lib/package.c:242
 #, c-format
 msgid "archive offset is %d\n"
 msgstr ""
 
-#: ../lib/package.c:67
+#: lib/package.c:252
 msgid "old style binary package\n"
 msgstr ""
 
-#: ../lib/package.c:105
+#: lib/package.c:298
 msgid ""
 "only packages with major numbers <= 3 are supported by this version of RPM"
 msgstr ""
 "Nur Pakete mit Hauptnummern <= 3 werden von dieser RPM-Version unterstützt"
 
+#: lib/problems.c:43
+#, c-format
+msgid " is needed by %s-%s-%s\n"
+msgstr " wird von %s-%s-%s gebraucht\n"
+
+#: lib/problems.c:46
+#, c-format
+msgid " conflicts with %s-%s-%s\n"
+msgstr " steht im Konflikt mit %s-%s-%s\n"
+
 # FIXME shared, besser: "mit anderen geteilte ..."
-#: ../lib/problems.c:29
+#: lib/problems.c:66
 #, fuzzy, c-format
-msgid "package %s-%s-%s is for a different operating system"
+msgid "package %s-%s-%s is for a different architecture"
 msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
 
 # FIXME shared, besser: "mit anderen geteilte ..."
-#: ../lib/problems.c:34
+#: lib/problems.c:71
 #, fuzzy, c-format
-msgid "package %s-%s-%s is for a different architecture"
+msgid "package %s-%s-%s is for a different operating system"
 msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
 
-#: ../lib/problems.c:39
+#: lib/problems.c:76
 #, fuzzy, c-format
 msgid "package %s-%s-%s is already installed"
 msgstr "Paket %s ist nicht installiert\n"
 
-#: ../lib/problems.c:44
+#: lib/problems.c:81
 #, fuzzy, c-format
 msgid "path %s is not relocateable for package %s-%s-%s"
 msgstr "Paket %s ist nicht installiert\n"
 
-#: ../lib/problems.c:49
+#: lib/problems.c:86
 #, c-format
 msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
 msgstr ""
 
-#: ../lib/problems.c:55
+#: lib/problems.c:92
 #, fuzzy, c-format
 msgid ""
 "file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
 msgstr " steht im Konflikt mit %s-%s-%s\n"
 
 # FIXME shared, besser: "mit anderen geteilte ..."
-#: ../lib/problems.c:61
+#: lib/problems.c:98
 #, fuzzy, c-format
 msgid "package %s-%s-%s (which is newer then %s-%s-%s) is already installed"
 msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
 
-#: ../lib/problems.c:67
+#: lib/problems.c:104
 #, c-format
-msgid "installing package %s-%s-%s needs %ld%c on the %s filesystem"
+msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: ../lib/problems.c:77
+#: lib/problems.c:116
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
 
-#: ../lib/query.c:57
-#, fuzzy
-msgid "query package owning file"
-msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
-
-#: ../lib/query.c:59
-#, fuzzy
-msgid "query packages in group"
-msgstr "Paket hat keinen Namen"
-
-#: ../lib/query.c:61
-#, fuzzy
-msgid "query a package file"
-msgstr "Anfrage an alle Pakete"
-
-#: ../lib/query.c:65
-#, fuzzy
-msgid "query a spec file"
-msgstr "Anfrage von %s fehlgeschlagen\n"
-
-#: ../lib/query.c:67
-#, fuzzy
-msgid "query the pacakges triggered by the package"
-msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
-
-#: ../lib/query.c:69
-#, fuzzy
-msgid "query the packages which require a capability"
-msgstr "Anfrage nach Paketen, die die Fähigkeit <i> benötigen"
-
-#: ../lib/query.c:71
-#, fuzzy
-msgid "query the packages which provide a capability"
-msgstr "Anfrage nach Paketen, die die Fähigkeit <i> bereitstellen"
-
-#: ../lib/query.c:108
-#, fuzzy
-msgid "list all configuration files"
-msgstr "Nur Konfigurationsdateien auflisten (impliziert -l)"
-
-#: ../lib/query.c:110
-#, fuzzy
-msgid "list all documentation files"
-msgstr "Dokumentation installieren"
-
-#: ../lib/query.c:112
-#, fuzzy
-msgid "dump basic file information"
-msgstr "Paketinformationen anzeigen"
-
-#: ../lib/query.c:114
-#, fuzzy
-msgid "list files in package"
-msgstr "Paket installieren"
-
-#: ../lib/query.c:118
-msgid "use the following query format"
-msgstr ""
-
-#: ../lib/query.c:120
-msgid "substitute i18n sections from the following catalogue"
-msgstr ""
-
-#: ../lib/query.c:123
-msgid "display the states of the listed files"
-msgstr ""
-
-#: ../lib/query.c:125
-#, fuzzy
-msgid "display a verbose file listing"
-msgstr "Dateiliste des Pakets anzeigen"
-
-#: ../lib/query.c:136
+#: lib/query.c:138
 #, c-format
 msgid "error in format: %s\n"
 msgstr "Fehler beim Format %s\n"
 
-#: ../lib/query.c:177
+#: lib/query.c:180
 msgid "(contains no files)"
 msgstr "(beinhaltet keine Dateien)"
 
-#: ../lib/query.c:230
+#: lib/query.c:233
 msgid "normal        "
 msgstr ""
 
-#: ../lib/query.c:232
+#: lib/query.c:235
 msgid "replaced      "
 msgstr ""
 
-#: ../lib/query.c:234
-msgid "net shared    "
-msgstr ""
-
-#: ../lib/query.c:236
+#: lib/query.c:237
 #, fuzzy
 msgid "not installed "
 msgstr "Paket %s ist nicht installiert\n"
 
-#: ../lib/query.c:238
+#: lib/query.c:239
+msgid "net shared    "
+msgstr ""
+
+#: lib/query.c:241
 #, fuzzy, c-format
 msgid "(unknown %3d) "
 msgstr "(unbekannter Typ)"
 
-#: ../lib/query.c:242
+#: lib/query.c:245
 msgid "(no state)    "
 msgstr ""
 
-#: ../lib/query.c:258 ../lib/query.c:288
+#: lib/query.c:261 lib/query.c:291
 msgid "package has neither file owner or id lists"
 msgstr ""
 
-#: ../lib/query.c:514
+#: lib/query.c:400
 #, c-format
 msgid "record number %u\n"
 msgstr ""
 
-#: ../lib/query.c:518
+#: lib/query.c:404
 msgid "error: could not read database record\n"
 msgstr "Fehler: konnte Datenbank-Eintrag nicht lesen\n"
 
-#: ../lib/query.c:547
+#: lib/query.c:442
 #, fuzzy, c-format
-msgid "open of %s failed\n"
+msgid "open of %s failed: %s\n"
 msgstr "öffnen von %s fehlgeschlagen: %s\n"
 
-#: ../lib/query.c:560
+#: lib/query.c:455
 msgid "old format source packages cannot be queried\n"
 msgstr "altes Sourceformat-Paket kann nicht angefragt werden\n"
 
-#: ../lib/query.c:572
+#: lib/query.c:464 lib/rpminstall.c:203
+#, c-format
+msgid "%s does not appear to be a RPM package\n"
+msgstr "%s scheint kein RPM-Paket zu sein\n"
+
+#: lib/query.c:467
 #, c-format
 msgid "query of %s failed\n"
 msgstr "Anfrage von %s fehlgeschlagen\n"
 
-#: ../lib/query.c:593
+#: lib/query.c:494
 #, fuzzy, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "Anfrage von %s fehlgeschlagen\n"
 
-#: ../lib/query.c:627
+#: lib/query.c:519
 msgid "could not read database record!\n"
 msgstr "kann Datenbank-Eintrag nicht lesen!\n"
 
-#: ../lib/query.c:638
+#: lib/query.c:530
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
 
 # oder besser: ... listet %s auf? -ke-
-#: ../lib/query.c:648
+#: lib/query.c:540
 #, c-format
 msgid "no package provides %s\n"
 msgstr "kein Paket stellt %s bereit\n"
 
-#: ../lib/query.c:658
+#: lib/query.c:550
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "kein Paket triggert %s\n"
 
-#: ../lib/query.c:668
+#: lib/query.c:560
 #, c-format
 msgid "no package requires %s\n"
 msgstr "kein Paket verlangt %s\n"
 
 # , c-format
-#: ../lib/query.c:683
+#: lib/query.c:575
 #, fuzzy, c-format
 msgid "file %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: ../lib/query.c:686
+#: lib/query.c:578
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "die Datei »%s« gehört zu keinem Paket\n"
 
-#: ../lib/query.c:699
+#: lib/query.c:591
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "ungültige Paket-Nummer: %s\n"
 
-#: ../lib/query.c:702
+#: lib/query.c:594
 #, fuzzy, c-format
 msgid "package record number: %d\n"
 msgstr "ungültige Paket-Nummer: %s\n"
 
-#: ../lib/query.c:705
+#: lib/query.c:597
 #, c-format
 msgid "record %d could not be read\n"
 msgstr "Eintrag %d konnte nicht gelesen werden\n"
 
-#: ../lib/query.c:720
+#: lib/query.c:609 lib/rpminstall.c:393
+#, c-format
+msgid "package %s is not installed\n"
+msgstr "Paket %s ist nicht installiert\n"
+
+#: lib/query.c:612
 #, c-format
 msgid "error looking for package %s\n"
 msgstr "Fehler beim Suchen nach Paket %s\n"
 
-#: ../lib/query.c:742
+#: lib/query.c:634
 #, fuzzy
 msgid "rpmQuery: rpmdbOpen() failed\n"
 msgstr "%s: Öffnen fehlgeschlagen\n"
 
-#: ../lib/rebuilddb.c:18
+#: lib/query.c:691
+#, fuzzy
+msgid "query package owning file"
+msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
+
+#: lib/query.c:693
+#, fuzzy
+msgid "query packages in group"
+msgstr "Paket hat keinen Namen"
+
+#: lib/query.c:695
+#, fuzzy
+msgid "query a package file"
+msgstr "Anfrage an alle Pakete"
+
+#: lib/query.c:699
+#, fuzzy
+msgid "query a spec file"
+msgstr "Anfrage von %s fehlgeschlagen\n"
+
+#: lib/query.c:701
+#, fuzzy
+msgid "query the pacakges triggered by the package"
+msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
+
+#: lib/query.c:703
+#, fuzzy
+msgid "query the packages which require a capability"
+msgstr "Anfrage nach Paketen, die die Fähigkeit <i> benötigen"
+
+#: lib/query.c:705
+#, fuzzy
+msgid "query the packages which provide a capability"
+msgstr "Anfrage nach Paketen, die die Fähigkeit <i> bereitstellen"
+
+#: lib/query.c:742
+#, fuzzy
+msgid "list all configuration files"
+msgstr "Nur Konfigurationsdateien auflisten (impliziert -l)"
+
+#: lib/query.c:744
+#, fuzzy
+msgid "list all documentation files"
+msgstr "Dokumentation installieren"
+
+#: lib/query.c:746
+#, fuzzy
+msgid "dump basic file information"
+msgstr "Paketinformationen anzeigen"
+
+#: lib/query.c:748
+#, fuzzy
+msgid "list files in package"
+msgstr "Paket installieren"
+
+#: lib/query.c:752
+msgid "use the following query format"
+msgstr ""
+
+#: lib/query.c:754
+msgid "substitute i18n sections from the following catalogue"
+msgstr ""
+
+#: lib/query.c:757
+msgid "display the states of the listed files"
+msgstr ""
+
+#: lib/query.c:759
+#, fuzzy
+msgid "display a verbose file listing"
+msgstr "Dateiliste des Pakets anzeigen"
+
+#: lib/rebuilddb.c:20
 #, fuzzy, c-format
 msgid "rebuilding database in rootdir %s\n"
 msgstr "Datenbank aus der vorhandenen neu erstellen"
 
-#: ../lib/rebuilddb.c:22 ../lib/rpmdb.c:64 ../lib/rpmdb.c:82 ../lib/rpmdb.c:98
+#: lib/rebuilddb.c:24 lib/rpmdb.c:69 lib/rpmdb.c:88 lib/rpmdb.c:105
 msgid "no dbpath has been set"
 msgstr "»dbpath« ist nicht gesetzt"
 
-#: ../lib/rebuilddb.c:30
+#: lib/rebuilddb.c:33
 #, c-format
 msgid "temporary database %s already exists"
 msgstr "die temporäre Datenbank %s existiert schon"
 
-#: ../lib/rebuilddb.c:34
+#: lib/rebuilddb.c:37
 #, fuzzy, c-format
 msgid "creating directory: %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: ../lib/rebuilddb.c:36
+#: lib/rebuilddb.c:39
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: ../lib/rebuilddb.c:44
+#: lib/rebuilddb.c:43
 msgid "opening old database\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:51
+#: lib/rebuilddb.c:50
 msgid "opening new database\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:61 ../lib/rebuilddb.c:79
+#: lib/rebuilddb.c:60 lib/rebuilddb.c:78
 #, c-format
 msgid "record number %d in database is bad -- skipping it"
 msgstr ""
 "Eintrag Nummer %d in der Datenback ist nicht in Ordnung -- wird übersprungen"
 
-#: ../lib/rebuilddb.c:73
+#: lib/rebuilddb.c:72
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr "kann einen Eintrag hinzufügen, ursprünglich bei %d"
 
-#: ../lib/rebuilddb.c:92
+#: lib/rebuilddb.c:91
 msgid "failed to rebuild database; original database remains in place\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:100
+#: lib/rebuilddb.c:99
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:102
+#: lib/rebuilddb.c:101
 #, c-format
 msgid "replaces files in %s with files from %s to recover"
 msgstr ""
 
 # , c-format
-#: ../lib/rebuilddb.c:108
+#: lib/rebuilddb.c:107
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: ../lib/rpmdb.c:159
+#: lib/rpmchecksig.c:31
+#, fuzzy, c-format
+msgid "%s: fdOpen failed: %s\n"
+msgstr "%s: Öffnen fehlgeschlagen\n"
+
+#: lib/rpmchecksig.c:42
+#, fuzzy
+msgid "makeTempFile failed\n"
+msgstr "%s: Öffnen fehlgeschlagen\n"
+
+#: lib/rpmchecksig.c:74
+#, fuzzy, c-format
+msgid "%s: fdWrite failed: %s\n"
+msgstr "%s: Öffnen fehlgeschlagen\n"
+
+#: lib/rpmchecksig.c:80
+#, fuzzy, c-format
+msgid "%s: fdRead failed: %s\n"
+msgstr "%s: »readLead« fehlgeschlagen\n"
+
+#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:242
+#, c-format
+msgid "%s: readLead failed\n"
+msgstr "%s: »readLead« fehlgeschlagen\n"
+
+#: lib/rpmchecksig.c:118
+#, c-format
+msgid "%s: Can't sign v1.0 RPM\n"
+msgstr "%s: Kann v1.0-RPM nicht signieren\n"
+
+#: lib/rpmchecksig.c:122
+#, c-format
+msgid "%s: Can't re-sign v2.0 RPM\n"
+msgstr "%s: Kann v2.0-RPM nicht erneuert signieren\n"
+
+#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:256
+#, c-format
+msgid "%s: rpmReadSignature failed\n"
+msgstr "%s: »rpmReadSignature« fehlgeschlagen\n"
+
+#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:261
+#, c-format
+msgid "%s: No signature available\n"
+msgstr "%s: Keine Signatur verfügbar\n"
+
+#: lib/rpmchecksig.c:167
+#, fuzzy, c-format
+msgid "%s: writeLead failed: %s\n"
+msgstr "%s: »readLead« fehlgeschlagen\n"
+
+#: lib/rpmchecksig.c:173
+#, fuzzy, c-format
+msgid "%s: rpmWriteSignature failed\n"
+msgstr "%s: »rpmReadSignature« fehlgeschlagen\n"
+
+#: lib/rpmchecksig.c:248
+#, c-format
+msgid "%s: No signature available (v1.0 RPM)\n"
+msgstr "%s: Keine Signatur verfügbar (v1.0 RPM)\n"
+
+#: lib/rpmchecksig.c:408
+msgid "NOT OK"
+msgstr ""
+
+#: lib/rpmchecksig.c:409 lib/rpmchecksig.c:423
+#, fuzzy
+msgid " (MISSING KEYS:"
+msgstr " (FEHLENDE SCHLüSSEL)"
+
+#: lib/rpmchecksig.c:411 lib/rpmchecksig.c:425
+msgid ") "
+msgstr ""
+
+#: lib/rpmchecksig.c:412 lib/rpmchecksig.c:426
+msgid " (UNTRUSTED KEYS:"
+msgstr ""
+
+#: lib/rpmchecksig.c:414 lib/rpmchecksig.c:428
+msgid ")"
+msgstr ""
+
+#: lib/rpmchecksig.c:422
+msgid "OK"
+msgstr ""
+
+#: lib/rpmdb.c:184
 #, fuzzy, c-format
 msgid "opening database mode 0x%x in %s\n"
 msgstr "Datenbank aus der vorhandenen neu erstellen"
 
-#: ../lib/rpmdb.c:182 ../lib/rpmdb.c:189
+# , c-format
+#: lib/rpmdb.c:193 lib/url.c:431
+#, c-format
+msgid "failed to open %s\n"
+msgstr "Öffnen von %s fehlgeschlagen\n"
+
+#: lib/rpmdb.c:206 lib/rpmdb.c:214
 #, c-format
 msgid "cannot get %s lock on database"
 msgstr "kann %s lock für die Datenbank nicht bekommen"
 
-#: ../lib/rpmdb.c:183
+#: lib/rpmdb.c:207
 msgid "exclusive"
 msgstr "exklusiv"
 
-#: ../lib/rpmdb.c:190
+#: lib/rpmdb.c:215
 msgid "shared"
 msgstr "geteilt"
 
-#: ../lib/rpmdb.c:213
+#: lib/rpmdb.c:246
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
-#: ../lib/rpmdb.c:372
+#: lib/rpmdb.c:439
 #, c-format
 msgid "package %s not listed in %s"
 msgstr "Paket %s wird nicht in %s aufgeführt"
 
-#: ../lib/rpmdb.c:383
+#: lib/rpmdb.c:450
 #, c-format
 msgid "package %s not found in %s"
 msgstr "Paket %s in %s nicht gefunden"
 
-#: ../lib/rpmdb.c:407 ../lib/uninstall.c:40
+#: lib/rpmdb.c:475 lib/uninstall.c:85
 #, c-format
 msgid "cannot read header at %d for uninstall"
 msgstr "kann Kopfzeilen bei %d nicht lesen, um Deinstallation durchzuführen"
 
-#: ../lib/rpmdb.c:415
+#: lib/rpmdb.c:483
 msgid "package has no name"
 msgstr "Paket hat keinen Namen"
 
-#: ../lib/rpmdb.c:417
+#: lib/rpmdb.c:485
 msgid "removing name index\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:422
+#: lib/rpmdb.c:490
 #, fuzzy
 msgid "package has no group\n"
 msgstr "Paket hat keinen Namen"
 
-#: ../lib/rpmdb.c:424
+#: lib/rpmdb.c:492
 msgid "removing group index\n"
 msgstr ""
 
 # FIXME
-#: ../lib/rpmdb.c:431
+#: lib/rpmdb.c:499
 #, fuzzy, c-format
 msgid "removing provides index for %s\n"
 msgstr "Fehler beim Löschen des Eintrags %s nach %s"
 
 # FIXME
-#: ../lib/rpmdb.c:446
+#: lib/rpmdb.c:514
 #, fuzzy, c-format
 msgid "removing requiredby index for %s\n"
 msgstr "Fehler beim Löschen des Eintrags %s nach %s"
 
 # FIXME
-#: ../lib/rpmdb.c:458
+#: lib/rpmdb.c:526
 #, fuzzy, c-format
 msgid "removing trigger index for %s\n"
 msgstr "Fehler beim Löschen des Eintrags %s nach %s"
 
-#: ../lib/rpmdb.c:469
+#: lib/rpmdb.c:537
 #, c-format
 msgid "removing conflict index for %s\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:486
+#: lib/rpmdb.c:554
 #, c-format
 msgid "removing file index for %s\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:495
+#: lib/rpmdb.c:563
 #, fuzzy
 msgid "package has no files\n"
 msgstr "Paket hat keinen Namen"
 
 # reservieren???
-#: ../lib/rpmdb.c:568
+#: lib/rpmdb.c:645
 msgid "cannot allocate space for database"
 msgstr "kann keinen Platz für die Datenbank bekommen"
 
-#: ../lib/rpmdb.c:639
+#: lib/rpmdb.c:711
 #, c-format
 msgid "cannot read header at %d for update"
 msgstr "kann Kopfzeilen bei %d nicht lesen, um Update durchzuführen"
 
-#: ../lib/rpmdb.c:648
+#: lib/rpmdb.c:720
 msgid "header changed size!"
 msgstr ""
 
-#: ../lib/rpmlead.c:41
+#: lib/rpminstall.c:128
+#, fuzzy
+msgid "counting packages to install\n"
+msgstr "Es wurden keine Pakete für die Installation angegeben"
+
+#: lib/rpminstall.c:132
+#, fuzzy, c-format
+msgid "found %d packages\n"
+msgstr "Anfrage an alle Pakete"
+
+#: lib/rpminstall.c:141
+#, fuzzy
+msgid "looking for packages to download\n"
+msgstr "Fehler beim Suchen nach Paket %s\n"
+
+# , c-format
+#: lib/rpminstall.c:152
+#, c-format
+msgid "Retrieving %s\n"
+msgstr "Hole %s heraus\n"
+
+#: lib/rpminstall.c:161
+#, c-format
+msgid " ... as %s\n"
+msgstr ""
+
+#: lib/rpminstall.c:165
+#, fuzzy, c-format
+msgid "skipping %s - transfer failed - %s\n"
+msgstr "Fehler: überspringe %s - Übertragung fehlgeschlagen - %s\n"
+
+#: lib/rpminstall.c:182
+#, c-format
+msgid "retrieved %d packages\n"
+msgstr ""
+
+#: lib/rpminstall.c:191 lib/rpminstall.c:332
+#, fuzzy, c-format
+msgid "cannot open file %s\n"
+msgstr "kann Datei %s nicht öffnen: "
+
+#: lib/rpminstall.c:207 lib/rpminstall.c:469
+#, fuzzy, c-format
+msgid "%s cannot be installed\n"
+msgstr "Fehler: %s kann nicht installiert werden\n"
+
+#: lib/rpminstall.c:243
+#, fuzzy, c-format
+msgid "package %s is not relocateable\n"
+msgstr "Paket %s ist nicht installiert\n"
+
+#: lib/rpminstall.c:261
+#, fuzzy, c-format
+msgid "error reading from file %s\n"
+msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
+
+#: lib/rpminstall.c:266
+#, c-format
+msgid "file %s requires a newer version of RPM\n"
+msgstr ""
+
+#: lib/rpminstall.c:283
+#, fuzzy, c-format
+msgid "found %d source and %d binary packages\n"
+msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
+
+#: lib/rpminstall.c:294
+msgid "failed dependencies:\n"
+msgstr "fehlgeschlagene Paket-Abhängigkeiten:\n"
+
+#: lib/rpminstall.c:312
+#, fuzzy
+msgid "installing binary packages\n"
+msgstr "Paket installieren"
+
+#: lib/rpminstall.c:397
+#, fuzzy, c-format
+msgid "searching for package %s\n"
+msgstr "Fehler beim Suchen nach Paket %s\n"
+
+#: lib/rpminstall.c:406
+#, c-format
+msgid "\"%s\" specifies multiple packages\n"
+msgstr "\"%s\" bezeichnet mehrere Pakete\n"
+
+# oder besser: "... verletzen" ?
+#: lib/rpminstall.c:432
+msgid "removing these packages would break dependencies:\n"
+msgstr "Das Enfernen dieser Pakete würde Paket-Abhängigkeiten missachten:\n"
+
+#: lib/rpminstall.c:459
+#, fuzzy, c-format
+msgid "cannot open %s\n"
+msgstr "Fehler: kann %s nicht öffnen\n"
+
+#: lib/rpminstall.c:464
+#, c-format
+msgid "Installing %s\n"
+msgstr "Installiere %s\n"
+
+#: lib/rpmlead.c:48
 #, c-format
 msgid "read failed: %s (%d)"
 msgstr "lesen fehlgeschlagen: %s (%d)"
 
-#: ../lib/rpmrc.c:178
+#: lib/rpmrc.c:177
 #, c-format
 msgid "missing second ':' at %s:%d"
 msgstr "fehlendes zweites ':' bei %s:%d"
 
-#: ../lib/rpmrc.c:181
+#: lib/rpmrc.c:180
 #, c-format
 msgid "missing architecture name at %s:%d"
 msgstr "fehlender Name cer Architektur bei %s:%d"
 
-#: ../lib/rpmrc.c:329
+#: lib/rpmrc.c:328
 #, c-format
 msgid "Incomplete data line at %s:%d"
 msgstr "Unvollständige Datenzeile bei %s:%d"
 
-#: ../lib/rpmrc.c:333
+#: lib/rpmrc.c:332
 #, c-format
 msgid "Too many args in data line at %s:%d"
 msgstr "Zu viele Argumente in der Datenzeile bei %s:%d"
 
-#: ../lib/rpmrc.c:340
+#: lib/rpmrc.c:339
 #, c-format
 msgid "Bad arch/os number: %s (%s:%d)"
 msgstr "Unzureichende arch/os Zahl: %s (%s:%d)"
 
-#: ../lib/rpmrc.c:374
+#: lib/rpmrc.c:373
 #, c-format
 msgid "Incomplete default line at %s:%d"
 msgstr "Unvollständige Standardzeile bei %s:%d"
 
-#: ../lib/rpmrc.c:379
+#: lib/rpmrc.c:378
 #, c-format
 msgid "Too many args in default line at %s:%d"
 msgstr "Zu viele Argumente in der Standardzeile bei %s:%d"
 
-#: ../lib/rpmrc.c:562
+#: lib/rpmrc.c:561
 #, c-format
 msgid "Cannot expand %s"
 msgstr ""
 
 # , c-format
-#: ../lib/rpmrc.c:577
+#: lib/rpmrc.c:576
 #, c-format
 msgid "Unable to open %s for reading: %s."
 msgstr "Datei %s kann nicht zum Lesen geöffnet werden: %s."
 
 # , c-format
-#: ../lib/rpmrc.c:611
+#: lib/rpmrc.c:608
 #, c-format
 msgid "Failed to read %s: %s."
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
-#: ../lib/rpmrc.c:642
+#: lib/rpmrc.c:638
 #, c-format
 msgid "missing ':' at %s:%d"
 msgstr "fehlender ':' bei %s:%d"
 
-#: ../lib/rpmrc.c:658 ../lib/rpmrc.c:716
+#: lib/rpmrc.c:655 lib/rpmrc.c:729
 #, c-format
 msgid "missing argument for %s at %s:%d"
 msgstr "fehlendes Argument für %s bei %s:%d"
 
 # , c-format
-#: ../lib/rpmrc.c:672 ../lib/rpmrc.c:690
+#: lib/rpmrc.c:672 lib/rpmrc.c:694
 #, fuzzy, c-format
 msgid "%s expansion failed at %s:%d \"%s\""
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: ../lib/rpmrc.c:678
+#: lib/rpmrc.c:680
 #, fuzzy, c-format
 msgid "cannot open %s at %s:%d"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: ../lib/rpmrc.c:706
+#: lib/rpmrc.c:721
 #, c-format
 msgid "missing architecture for %s at %s:%d"
 msgstr "fehlende Architektur für %s bei %s:%d"
 
-#: ../lib/rpmrc.c:773
+#: lib/rpmrc.c:788
 #, c-format
 msgid "bad option '%s' at %s:%d"
 msgstr "unzureichende Option '%s' bei %s:%d"
 
-#: ../lib/rpmrc.c:1109
+#: lib/rpmrc.c:1147
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: ../lib/rpmrc.c:1110
+#: lib/rpmrc.c:1148
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: ../lib/signature.c:147
+#: lib/signature.c:106
+#, c-format
+msgid "sigsize         : %d\n"
+msgstr ""
+
+#: lib/signature.c:107
+#, c-format
+msgid "Header + Archive: %d\n"
+msgstr ""
+
+#: lib/signature.c:108
+#, c-format
+msgid "expected size   : %d\n"
+msgstr ""
+
+#: lib/signature.c:112
+msgid "file is not regular -- skipping size check\n"
+msgstr ""
+
+#: lib/signature.c:134
 #, fuzzy
 msgid "No signature\n"
 msgstr "%s: Keine Signatur verfügbar\n"
 
-#: ../lib/signature.c:150
+#: lib/signature.c:137
 #, fuzzy
 msgid "Old PGP signature\n"
 msgstr "PGP-Signatur generieren"
 
-#: ../lib/signature.c:163
+#: lib/signature.c:149
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr "Alte Signatur (nur intern)!  Wie bist du daran gekommen!?"
 
-#: ../lib/signature.c:167
+#: lib/signature.c:153
 #, fuzzy
 msgid "New Header signature\n"
 msgstr "nicht möglich, die Signatur zu lesen"
 
 #. 8-byte pad
-#: ../lib/signature.c:175 ../lib/signature.c:213
+#: lib/signature.c:160 lib/signature.c:202
 #, c-format
 msgid "Signature size: %d\n"
 msgstr ""
 
-#: ../lib/signature.c:176 ../lib/signature.c:214
+#: lib/signature.c:161 lib/signature.c:203
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr ""
 
-#: ../lib/signature.c:306 ../lib/signature.c:812
-msgid "Couldn't exec pgp"
+#: lib/signature.c:266
+#, fuzzy, c-format
+msgid "Couldn't exec pgp (%s)"
 msgstr "Konnte pgp nicht durchführen"
 
-#: ../lib/signature.c:317
+#: lib/signature.c:277
 msgid "pgp failed"
 msgstr "pgp fehlgeschlagen"
 
 #. PGP failed to write signature
 #. Just in case
-#: ../lib/signature.c:324
+#: lib/signature.c:284
 msgid "pgp failed to write signature"
 msgstr "pgp fehlgeschlagen beim Schreiben der Signatur"
 
-#: ../lib/signature.c:329
+#: lib/signature.c:289
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: ../lib/signature.c:340 ../lib/signature.c:416
+#: lib/signature.c:300 lib/signature.c:377
 msgid "unable to read the signature"
 msgstr "nicht möglich, die Signatur zu lesen"
 
-#: ../lib/signature.c:345
+#: lib/signature.c:305
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: ../lib/signature.c:382 ../lib/signature.c:787
+#: lib/signature.c:343 lib/signature.c:686
 #, fuzzy
 msgid "Couldn't exec gpg"
 msgstr "Konnte pgp nicht durchführen"
 
-#: ../lib/signature.c:393
+#: lib/signature.c:354
 #, fuzzy
 msgid "gpg failed"
 msgstr "pgp fehlgeschlagen"
 
 #. GPG failed to write signature
 #. Just in case
-#: ../lib/signature.c:400
+#: lib/signature.c:361
 #, fuzzy
 msgid "gpg failed to write signature"
 msgstr "pgp fehlgeschlagen beim Schreiben der Signatur"
 
-#: ../lib/signature.c:405
+#: lib/signature.c:366
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: ../lib/signature.c:421
+#: lib/signature.c:382
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
-#: ../lib/signature.c:436
-#, c-format
-msgid "sigsize         : %d\n"
-msgstr ""
-
-#: ../lib/signature.c:437
-#, c-format
-msgid "Header + Archive: %d\n"
-msgstr ""
-
-#: ../lib/signature.c:438
-#, c-format
-msgid "expected size   : %d\n"
-msgstr ""
+#: lib/signature.c:409
+#, fuzzy
+msgid "Generating signature using PGP.\n"
+msgstr "PGP-Signatur generieren"
 
-#: ../lib/signature.c:442
-msgid "file is not regular -- skipping size check\n"
-msgstr ""
+#: lib/signature.c:415
+#, fuzzy
+msgid "Generating signature using GPG.\n"
+msgstr "PGP-Signatur generieren"
 
-#: ../lib/signature.c:560 ../lib/signature.c:607
+#: lib/signature.c:492 lib/signature.c:554
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr "Konnte pgp nicht aufrufen.  Überspring die PGP-Checks mit --nopgp."
 
-#: ../lib/signature.c:605 ../lib/signature.c:677
+#: lib/signature.c:552 lib/signature.c:625
 #, fuzzy
 msgid "exec failed!\n"
 msgstr "%s: Öffnen fehlgeschlagen\n"
 
-#: ../lib/signature.c:679
+#: lib/signature.c:627
 #, fuzzy
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr "Konnte pgp nicht aufrufen.  Überspring die PGP-Checks mit --nopgp."
 
-#: ../lib/signature.c:716
+#: lib/signature.c:715
+msgid "Couldn't exec pgp"
+msgstr "Konnte pgp nicht durchführen"
+
+#. @notreached@
+#. This case should have been screened out long ago.
+#: lib/signature.c:719 lib/signature.c:772
+msgid "Invalid %%_signature spec in macro file"
+msgstr ""
+
+#: lib/signature.c:752
 #, fuzzy
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr "\"pgp_name:\" muss in der rpmrc-Datei gesetzt sein"
 
-#: ../lib/signature.c:728
+#: lib/signature.c:764
 #, fuzzy
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr "\"pgp_name:\" muss in der rpmrc-Datei gesetzt sein"
 
-#. Currently the calling function (rpm.c:main) is checking this and
-#. * doing a better job.  This section should never be accessed.
-#.
-#: ../lib/signature.c:736 ../lib/signature.c:816
-msgid "Invalid %%_signature spec in macro file"
-msgstr ""
-
-#: ../lib/transaction.c:793
+#: lib/transaction.c:363
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
 # , c-format
-#: ../lib/transaction.c:799
+#: lib/transaction.c:370
 #, fuzzy, c-format
 msgid "excluding %s\n"
 msgstr "Hole %s heraus\n"
 
-#: ../lib/transaction.c:887
+#: lib/transaction.c:489
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: ../lib/uninstall.c:51
+#: lib/uninstall.c:37
+#, c-format
+msgid "cannot remove %s - directory not empty"
+msgstr "kann %s nicht entfernen - Verzeichnis ist nicht leer"
+
+#: lib/uninstall.c:40
+#, c-format
+msgid "rmdir of %s failed: %s"
+msgstr "Entfernen von %s fehlgeschlagen: %s"
+
+#: lib/uninstall.c:48
+#, c-format
+msgid "removal of %s failed: %s"
+msgstr "öffnen von %s fehlgeschlagen: %s"
+
+#: lib/uninstall.c:97
 #, fuzzy, c-format
 msgid "cannot read packages named %s for uninstall"
 msgstr "kann Kopfzeilen bei %d nicht lesen, um Deinstallation durchzuführen"
 
-#: ../lib/uninstall.c:79
+#: lib/uninstall.c:130
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: ../lib/uninstall.c:124
+#: lib/uninstall.c:191
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: ../lib/uninstall.c:138
+#: lib/uninstall.c:204
 msgid "removing database entry\n"
 msgstr ""
 
-#: ../lib/uninstall.c:289
+#: lib/uninstall.c:365
 msgid "execution of script failed"
 msgstr "Ausführung des Skripts fehlgeschlagen"
 
-#: ../lib/uninstall.c:348
+#: lib/url.c:144
 #, c-format
-msgid "cannot remove %s - directory not empty"
-msgstr "kann %s nicht entfernen - Verzeichnis ist nicht leer"
+msgid "Password for %s@%s: "
+msgstr "Passworf für %s@%s: "
 
-#: ../lib/uninstall.c:351
+#: lib/url.c:168 lib/url.c:194
+#, fuzzy, c-format
+msgid "error: %sport must be a number\n"
+msgstr "Fehler: der FTP-Port muss eine Zahl sein\n"
+
+#: lib/url.c:279
+#, fuzzy
+msgid "url port must be a number\n"
+msgstr "Fehler: der FTP-Port muss eine Zahl sein\n"
+
+#. XXX PARANOIA
+#: lib/url.c:317
 #, c-format
-msgid "rmdir of %s failed: %s"
-msgstr "Entfernen von %s fehlgeschlagen: %s"
+msgid "logging into %s as %s, pw %s\n"
+msgstr ""
 
-#: ../lib/uninstall.c:359
+# , c-format
+#: lib/url.c:446
 #, c-format
-msgid "removal of %s failed: %s"
-msgstr "öffnen von %s fehlgeschlagen: %s"
+msgid "failed to create %s\n"
+msgstr "anlegen von %s fehlgeschlagen\n"
 
-#: ../lib/verify.c:36
+#: lib/verify.c:36
 #, fuzzy
 msgid "don't verify files in package"
 msgstr "Paket installieren"
 
-#: ../lib/verify.c:206
+#: lib/verify.c:206
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 
-#: ../lib/verify.c:224
+#: lib/verify.c:224
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: ../lib/verify.c:257
+#: lib/verify.c:257
 #, fuzzy, c-format
 msgid "missing    %s\n"
 msgstr "fehlende { nach %{"
 
-#: ../lib/verify.c:321
+#: lib/verify.c:319
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "Nicht erfüllte Abhängigkeiten von %s-%s-%s: "
 
-#: ../lib/verify.c:369
+#: lib/verify.c:367
 #, fuzzy
 msgid "rpmVerify: rpmdbOpen() failed\n"
 msgstr "%s: Öffnen fehlgeschlagen\n"
 
+#, fuzzy
+#~ msgid "failed build prerequisites:\n"
+#~ msgstr "fehlgeschlagene Paket-Abhängigkeiten:\n"
+
+#~ msgid "Couldn't read the header/archive"
+#~ msgstr "Konnte Kopfzeilen/Archiv nicht lesen"
+
+#~ msgid "Couldn't write header/archive to temp file"
+#~ msgstr "Konnte Kopfzeilen/Archiv nicht in eine temporäre Datei schreiben"
+
+#~ msgid "Couldn't read sigtarget"
+#~ msgstr "Konnte Signatur-Ziel (»sigtarget«) nicht lesen"
+
+#~ msgid "Couldn't write package"
+#~ msgstr "Konnte Paket nicht schreiben"
+
+# , c-format
+#~ msgid "Unable to write %s"
+#~ msgstr "Nicht möglich %s zu schreiben"
+
+#~ msgid "unexpected query specifiers"
+#~ msgstr "Unerwartete Angaben für die Anfrage"
+
+#~ msgid "--nofiles may only be specified during package verification"
+#~ msgstr "--nofiles darf nur während der Paketüberprüfung angegeben werden"
+
+#~ msgid "--clean may only be used with -b and -t"
+#~ msgstr "--clean darf nur mit -b und -t benutzt werden"
+
+#~ msgid "--rmsource may only be used with -b and -t"
+#~ msgstr "--rmsource darf nur mit -b und -t benutzt werden"
+
+#~ msgid "--short-circuit may only be used during package building"
+#~ msgstr "--short-circuit darf nur während der Paketerstellung benutzt werden"
+
+#~ msgid "--short-circuit may only be used with -bc, -bi, -bs, -tc -ti, or -ts"
+#~ msgstr ""
+#~ "--short-circuit darf nur mit -bc, -bi, -bs, -tc -ti oder -ts benutzt werden"
+
+#, fuzzy
+#~ msgid "pgp version 5 not found: "
+#~ msgstr "Datei auf dem Server nicht gefunden"
+
 #~ msgid "showing package: %d\n"
 #~ msgstr "zeige Paket an: %d\n"
 
index 97748ef..1929663 100644 (file)
--- a/po/fi.po
+++ b/po/fi.po
@@ -1,6 +1,6 @@
 msgid ""
 msgstr ""
-"POT-Creation-Date: 1999-05-11 12:17-0400\n"
+"POT-Creation-Date: 1999-09-29 19:30-0400\n"
 "Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
 "Language-Team: Finnish <linux@sot.com>\n"
 "Content-Type: text/plain; charset=\n"
@@ -20,568 +20,303 @@ msgstr ""
 "/home/ewt/redhat/rpm/lib/package.c /home/ewt/redhat/rpm/lib/rpmlead.c "
 "/home/ewt/redhat/rpm/lib/rpmrc.c\n"
 
-#: ../build.c:24 ../install.c:221 ../install.c:377
+#: build.c:23 lib/rpminstall.c:222 lib/rpminstall.c:382
 #, fuzzy, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr "virhe: en voi avata %s%s/packages.rpm\n"
 
-#: ../build.c:34
+#: build.c:33
 #, fuzzy
-msgid "failed build prerequisites:\n"
+msgid "failed build dependencies:\n"
 msgstr "puuttuvat riippuvuudet:\n"
 
-#: ../build.c:83 ../build.c:96
+#: build.c:61
+#, fuzzy, c-format
+msgid "Unable to open spec file: %s\n"
+msgstr "En voi avata %s luettavaksi: %s."
+
+#: build.c:117 build.c:130
 #, fuzzy, c-format
 msgid "Failed to open tar pipe: %s\n"
 msgstr "%s:n avaus epäonnistui\n"
 
 #. Give up
-#: ../build.c:104
+#: build.c:138
 #, fuzzy, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "En voi lukea %s: %s."
 
-#: ../build.c:129
+#: build.c:163
 #, fuzzy, c-format
 msgid "Failed to rename %s to %s: %s\n"
 msgstr "En voi lukea %s: %s."
 
-#: ../build.c:167
+#: build.c:201
 #, c-format
 msgid "File is not a regular file: %s\n"
 msgstr ""
 
-#: ../build.c:172
+#: build.c:207
 #, fuzzy, c-format
-msgid "Unable to open spec file: %s\n"
-msgstr "En voi avata %s luettavaksi: %s."
-
-#: ../build.c:180
-#, c-format
-msgid "File contains non-printable characters(%c): %s\n"
-msgstr ""
+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:233
+#: build.c:258
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr ""
 
-#: ../build.c:242
+#: build.c:267
 #, fuzzy, c-format
 msgid "Building for target %s\n"
 msgstr "virhe etsittäessä pakettia %s\n"
 
-#: ../build.c:286
+#: build.c:311
 msgid "buildroot already specified"
 msgstr ""
 
-#: ../build.c:292
+#: build.c:317
 msgid "--buildarch has been obsoleted.  Use the --target option instead.\n"
 msgstr ""
 
-#: ../build.c:296
+#: build.c:321
 msgid "--buildos has been obsoleted.  Use the --target option instead.\n"
 msgstr ""
 
-#: ../build.c:317
+#: build.c:342
 #, fuzzy
 msgid "override build architecture"
 msgstr "älä tarkista paketin arkkitehtuuria"
 
-#: ../build.c:319
+#: build.c:344
 #, fuzzy
 msgid "override build operating system"
 msgstr "älä tarkista paketin käyttöjärjestelmää"
 
-#: ../build.c:321
+#: build.c:346
 #, fuzzy
 msgid "override build root"
 msgstr "käytä <hakem> käännöspuun juurena"
 
-#: ../build.c:323 ../rpm.c:458
+#: build.c:348 rpm.c:457
 msgid "remove build tree when done"
 msgstr "poista käännöspuu, kun valmis"
 
-#: ../build.c:325
+#: build.c:350
 #, fuzzy
 msgid "do not execute any stages of the build"
 msgstr "älä suorita mitään vaiheita"
 
-#: ../build.c:327
+#: build.c:352
 msgid "do not accept I18N msgstr's from specfile"
 msgstr ""
 
-#: ../build.c:329
+#: build.c:354
 #, fuzzy
 msgid "remove sources when done"
 msgstr "poista lähdekoodit ja määrittelytiedosto, kun valmis"
 
-#: ../build.c:331
+#: build.c:356
 #, fuzzy
 msgid "remove specfile when done"
 msgstr "poista lähdekoodit ja määrittelytiedosto, kun valmis"
 
-#: ../build.c:333 ../rpm.c:456
+#: build.c:358 rpm.c:455
 msgid "skip straight to specified stage (only for c,i)"
 msgstr "siirry suoraan määriteltyyn vaiheeseen (vain c ja i yhteydessä)"
 
-#: ../build.c:335
+#: build.c:360
 msgid "override target platform"
 msgstr ""
 
-#: ../build.c:337
+#: build.c:362
 msgid "lookup I18N strings in specfile catalog"
 msgstr ""
 
-#: ../checksig.c:27 ../checksig.c:166
-#, c-format
-msgid "%s: Open failed\n"
-msgstr "%s: avaus ei onnistunut\n"
-
-#: ../checksig.c:31 ../checksig.c:171
-#, c-format
-msgid "%s: readLead failed\n"
-msgstr "%s: readLead  epäonnistui\n"
-
-#: ../checksig.c:35
-#, c-format
-msgid "%s: Can't sign v1.0 RPM\n"
-msgstr "%s: En voi allekirjoittaa v1.0 RPM:ää\n"
-
-#: ../checksig.c:39
-#, c-format
-msgid "%s: Can't re-sign v2.0 RPM\n"
-msgstr "%s: En voi uudelleen allekirjoittaa v2.0 RPM:ää\n"
-
-#: ../checksig.c:43 ../checksig.c:181
-#, c-format
-msgid "%s: rpmReadSignature failed\n"
-msgstr "%s: rpmReadSignature epäonnistui\n"
-
-#: ../checksig.c:56 ../checksig.c:195
-msgid "Couldn't read the header/archive"
-msgstr "En voinut lukea header/arkistotiedostoa"
-
-#: ../checksig.c:63
-msgid "Couldn't write header/archive to temp file"
-msgstr "En voinut kirjoittaa header/arkistotiedostoa väliaikaistiedostoon"
-
-#: ../build/pack.c:330 ../checksig.c:91
-#, fuzzy, c-format
-msgid "Generating signature: %d\n"
-msgstr "generoi PGP-allekirjoitus"
-
-#: ../checksig.c:114
-msgid "Couldn't read sigtarget"
-msgstr ""
-
-#: ../checksig.c:123
-msgid "Couldn't write package"
-msgstr "Paketin kirjoitus ei onnistunut"
-
-#: ../checksig.c:176
-#, c-format
-msgid "%s: No signature available (v1.0 RPM)\n"
-msgstr "%s: Ei allekirjoitusta saatavilla (v1.0 RPM)\n"
-
-#: ../checksig.c:186
-#, c-format
-msgid "%s: No signature available\n"
-msgstr "%s: Ei allekirjoitusta saatavilla\n"
-
-#: ../checksig.c:202
-#, c-format
-msgid "Unable to write %s"
-msgstr "%s:n kirjoitus ei onnistu"
-
-#: ../checksig.c:328
-msgid "NOT OK"
-msgstr ""
-
-#: ../checksig.c:329 ../checksig.c:343
-#, fuzzy
-msgid " (MISSING KEYS:"
-msgstr "(PUUTTUVAT AVAIMET)"
-
-#: ../checksig.c:331 ../checksig.c:345
-msgid ") "
-msgstr ""
-
-#: ../checksig.c:332 ../checksig.c:346
-msgid " (UNTRUSTED KEYS:"
-msgstr ""
-
-#: ../checksig.c:334 ../checksig.c:348
-msgid ")"
-msgstr ""
-
-#: ../checksig.c:342
-msgid "OK"
-msgstr ""
-
-#: ../convertdb.c:38
+#: convertdb.c:39
 #, fuzzy
 msgid "RPM database already exists"
 msgstr "väliaikainen tietokanta %s on jo olemassa"
 
-#: ../convertdb.c:43
+#: convertdb.c:44
 msgid "Old db is missing"
 msgstr ""
 
-#: ../convertdb.c:54
+#: convertdb.c:55
 msgid "failed to create RPM database /var/lib/rpm"
 msgstr ""
 
-#: ../convertdb.c:60
+#: convertdb.c:61
 msgid "Old db is corrupt"
 msgstr ""
 
-#: ../convertdb.c:69
+#: convertdb.c:70
 #, c-format
 msgid "oldrpmdbGetPackageInfo failed &olddb = %p olddb.packages = %p\n"
 msgstr ""
 
-#: ../convertdb.c:201
+#: convertdb.c:204
 msgid "rpmconvert: no arguments expected"
 msgstr ""
 
-#: ../convertdb.c:207
+#: convertdb.c:210
 msgid "rpmconvert 1.0 - converting database in /var/lib/rpm\n"
 msgstr ""
 
-#: ../ftp.c:642
-msgid "Success"
-msgstr ""
-
-#: ../ftp.c:645
-#, fuzzy
-msgid "Bad server response"
-msgstr "Virheellinen FTP-palvelijan vastaus"
-
-#: ../ftp.c:648
-#, fuzzy
-msgid "Server IO error"
-msgstr "FTP:n IO-virhe"
-
-#: ../ftp.c:651
-#, fuzzy
-msgid "Server timeout"
-msgstr "FTP-palvelimen timeout"
-
-#: ../ftp.c:654
-#, fuzzy
-msgid "Unable to lookup server host address"
-msgstr "FTP-palvelimen osoitetta ei löytynyt"
-
-#: ../ftp.c:657
-#, fuzzy
-msgid "Unable to lookup server host name"
-msgstr "FTP-palvelimen nimeä ei löytynyt"
-
-#: ../ftp.c:660
-#, fuzzy
-msgid "Failed to connect to server"
-msgstr "En saanut yhteyttä FTP-palvelijaan"
-
-#: ../ftp.c:663
-#, fuzzy
-msgid "Failed to establish data connection to server"
-msgstr "En saanut data-yhteyttä FTP-palvelijaan"
-
-#: ../ftp.c:666
-msgid "IO error to local file"
-msgstr "Paikallisen tiedoston IO-virhe"
-
-#: ../ftp.c:669
-msgid "Error setting remote server to passive mode"
-msgstr "Virhe asetettaessa palvelinta passiiviin moodiin"
-
-#: ../ftp.c:672
-msgid "File not found on server"
-msgstr "Tiedostoa ei löytynyt palvelimelta"
-
-#: ../ftp.c:675
-msgid "Abort in progress"
-msgstr ""
-
-#: ../ftp.c:679
-#, fuzzy
-msgid "Unknown or unexpected error"
-msgstr "FTP:n tuntematon tai odottamaton virhe"
-
-#: ../install.c:127
-#, fuzzy
-msgid "counting packages to install\n"
-msgstr "asennukselle ei määritelty paketteja"
-
-#: ../install.c:131
-#, fuzzy, c-format
-msgid "found %d packages\n"
-msgstr "kysele kaikki paketit"
-
-#: ../install.c:140
-#, fuzzy
-msgid "looking for packages to download\n"
-msgstr "virhe etsittäessä pakettia %s\n"
-
-#: ../install.c:151
-#, c-format
-msgid "Retrieving %s\n"
-msgstr "Haen: %s\n"
-
-#: ../install.c:160
-#, c-format
-msgid " ... as %s\n"
-msgstr ""
-
-#: ../install.c:164
-#, fuzzy, c-format
-msgid "skipping %s - transfer failed - %s\n"
-msgstr "virhe: ohitan %s:n, siirto epäonnistui - %s\n"
-
-#: ../install.c:181
-#, c-format
-msgid "retrieved %d packages\n"
-msgstr ""
-
-#: ../install.c:190 ../install.c:327
-#, fuzzy, c-format
-msgid "cannot open file %s\n"
-msgstr "en voinut avata tiedostoa %s: "
-
-#: ../install.c:202 ../lib/query.c:569
-#, c-format
-msgid "%s does not appear to be a RPM package\n"
-msgstr "%s ei vaikuta RPM-paketilta\n"
-
-#: ../install.c:206 ../install.c:464
-#, fuzzy, c-format
-msgid "%s cannot be installed\n"
-msgstr "virhe: %s ei voida asentaa\n"
-
-#: ../install.c:242
-#, fuzzy, c-format
-msgid "package %s is not relocateable\n"
-msgstr "paketti %s ei ole asennettu\n"
-
-#: ../install.c:254
-#, fuzzy, c-format
-msgid "error reading from file %s\n"
-msgstr "virhe luotaessa hakemistoa %s: %s"
-
-#: ../install.c:257
-#, c-format
-msgid "file %s requires a newer version of RPM\n"
-msgstr ""
-
-#: ../install.c:272
-#, fuzzy, c-format
-msgid "found %d source and %d binary packages\n"
-msgstr "ryhmässä %s ei ole paketteja\n"
-
-#: ../install.c:282
-msgid "failed dependencies:\n"
-msgstr "puuttuvat riippuvuudet:\n"
-
-#: ../install.c:300
-#, fuzzy
-msgid "installing binary packages\n"
-msgstr "asenna paketti"
-
-#: ../install.c:388 ../lib/query.c:717
-#, c-format
-msgid "package %s is not installed\n"
-msgstr "paketti %s ei ole asennettu\n"
-
-#: ../install.c:392
-#, fuzzy, c-format
-msgid "searching for package %s\n"
-msgstr "virhe etsittäessä pakettia %s\n"
-
-#: ../install.c:401
-#, c-format
-msgid "\"%s\" specifies multiple packages\n"
-msgstr "\"%s\" määrittää useita paketteja\n"
-
-#: ../install.c:427
-msgid "removing these packages would break dependencies:\n"
-msgstr "näiden pakettien poisto rikkoisi riippuvuuksia:\n"
-
-#: ../install.c:454
-#, fuzzy, c-format
-msgid "cannot open %s\n"
-msgstr "virhe: en voi avata %s\n"
-
-#: ../install.c:459
-#, c-format
-msgid "Installing %s\n"
-msgstr "Asennan: %s\n"
-
-#: ../install.c:503
-#, c-format
-msgid " is needed by %s-%s-%s\n"
-msgstr "vaatii %s-%s-%s\n"
-
-#: ../install.c:506
-#, c-format
-msgid " conflicts with %s-%s-%s\n"
-msgstr " on ristiriidassa %s-%s-%s:n kanssa\n"
-
-#: ../oldrpmdb.c:454
+#: oldrpmdb.c:454
 #, c-format
 msgid "pulling %s from database\n"
 msgstr ""
 
-#: ../oldrpmdb.c:461
+#: oldrpmdb.c:461
 #, fuzzy
 msgid "package not found in database"
 msgstr "paketti %s ei ole %s:ssä"
 
-#: ../oldrpmdb.c:522
+#: oldrpmdb.c:522
 msgid "no copyright!\n"
 msgstr ""
 
-#: ../rpm.c:160
+#: rpm.c:159
 #, c-format
 msgid "rpm: %s\n"
 msgstr ""
 
-#: ../rpm.c:171
+#: rpm.c:170
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM versio %s\n"
 
-#: ../rpm.c:175
+#: rpm.c:174
 msgid "Copyright (C) 1998 - Red Hat Software"
 msgstr ""
 
-#: ../rpm.c:176
-msgid ""
-"This may be freely redistributed under the terms of the GNU GPL"
+#: rpm.c:175
+msgid "This may be freely redistributed under the terms of the GNU GPL"
 msgstr "Tätä ohjelmaa voi vapaasti levittää GNU GPL:n puittessa"
 
-#: ../rpm.c:185
+#: rpm.c:183
 msgid "usage: rpm {--help}"
 msgstr "käyttö: rpm {--help}"
 
-#: ../rpm.c:186
+#: rpm.c:184
 msgid "       rpm {--version}"
 msgstr ""
 
-#: ../rpm.c:187
+#: rpm.c:185
 msgid "       rpm {--initdb}   [--dbpath <dir>]"
 msgstr "       rpm {--initdb}   [--dbpath <hakem>]"
 
-#: ../rpm.c:188
+#: rpm.c:186
 msgid ""
 "       rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 
-#: ../rpm.c:189
+#: rpm.c:187
 msgid "                        [--replacepkgs] [--replacefiles] [--root <dir>]"
 msgstr ""
 "                        [--replacepkgs] [--replacefiles] [--root <hakem>]"
 
-#: ../rpm.c:190
+#: rpm.c:188
 msgid "                        [--excludedocs] [--includedocs] [--noscripts]"
 msgstr ""
 
-#: ../rpm.c:191
+#: rpm.c:189
 msgid ""
 "                        [--rcfile <file>] [--ignorearch] [--dbpath <dir>]"
 msgstr ""
 "                        [--rcfile <tiedosto>] [--ignorearch] [--dbpath "
 "<hakem>]"
 
-#: ../rpm.c:192
+#: rpm.c:190
 msgid ""
 "                        [--prefix <dir>] [--ignoreos] [--nodeps] [--allfiles]"
 msgstr ""
 "                        [--prefix <hakem>] [--ignoreos] [--nodeps] "
 "[--allfiles]"
 
-#: ../rpm.c:193
+#: rpm.c:191
 msgid ""
 "                        [--ftpproxy <host>] [--ftpport <port>] [--justdb]"
 msgstr ""
 "                        [--ftpproxy <kone>] [--ftpport <portti>] [--justdb]"
 
-#: ../rpm.c:194 ../rpm.c:203 ../rpm.c:212
+#: rpm.c:192 rpm.c:201 rpm.c:210
 #, fuzzy
 msgid "                        [--httpproxy <host>] [--httpport <port>] "
 msgstr "                        [--ftpproxy <kone>] [--ftpport <portti>]"
 
-#: ../rpm.c:195 ../rpm.c:205
+#: rpm.c:193 rpm.c:203
 msgid "                        [--noorder] [--relocate oldpath=newpath]"
 msgstr "                        [--noorder] [--relocate vanhapolku=uusipolku]"
 
-#: ../rpm.c:196
+#: rpm.c:194
 #, fuzzy
 msgid ""
 "                        [--badreloc] [--notriggers] [--excludepath <path>]"
 msgstr "                        [--badreloc] tiedosto1.rpm ... tiedostoN.rpm"
 
-#: ../rpm.c:197
+#: rpm.c:195
 #, fuzzy
 msgid "                        [--ignoresize] file1.rpm ... fileN.rpm"
 msgstr "                        [--badreloc] tiedosto1.rpm ... tiedostoN.rpm"
 
-#: ../rpm.c:198
+#: rpm.c:196
 msgid ""
 "       rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 
-#: ../rpm.c:199
+#: rpm.c:197
 msgid "                        [--oldpackage] [--root <dir>] [--noscripts]"
 msgstr "                        [--oldpackage] [--root <hakem>] [--noscripts]"
 
-#: ../rpm.c:200
+#: rpm.c:198
 msgid ""
 "                        [--excludedocs] [--includedocs] [--rcfile <file>]"
 msgstr ""
 "                        [--excludedocs] [--includedocs] [--rcfile <tiedosto>]"
 
-#: ../rpm.c:201
+#: rpm.c:199
 msgid ""
 "                        [--ignorearch]  [--dbpath <dir>] [--prefix <dir>] "
 msgstr ""
 "                        [--ignorearch]  [--dbpath <hakem>] [--prefix "
 "<hakem>] "
 
-#: ../rpm.c:202
+#: rpm.c:200
 msgid "                        [--ftpproxy <host>] [--ftpport <port>]"
 msgstr "                        [--ftpproxy <kone>] [--ftpport <portti>]"
 
-#: ../rpm.c:204
+#: rpm.c:202
 msgid "                        [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
 msgstr ""
 
-#: ../rpm.c:206
+#: rpm.c:204
 #, fuzzy
 msgid ""
 "                        [--badreloc] [--excludepath <path>] [--ignoresize]"
 msgstr "                        [--nomd5] [kohteet]"
 
-#: ../rpm.c:207
+#: rpm.c:205
 #, fuzzy
 msgid "                        file1.rpm ... fileN.rpm"
 msgstr "                        [--badreloc] tiedosto1.rpm ... tiedostoN.rpm"
 
-#: ../rpm.c:208
+#: rpm.c:206
 msgid "       rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]"
 msgstr ""
 
-#: ../rpm.c:209
+#: rpm.c:207
 msgid "                        [--scripts] [--root <dir>] [--rcfile <file>]"
 msgstr ""
 "                        [--scripts] [--root <hakem>] [--rcfile <tiedosto>]"
 
-#: ../rpm.c:210
+#: rpm.c:208
 msgid "                        [--whatprovides] [--whatrequires] [--requires]"
 msgstr ""
 
-#: ../rpm.c:211
+#: rpm.c:209
 #, fuzzy
 msgid ""
 "                        [--triggeredby] [--ftpuseport] [--ftpproxy <host>]"
@@ -589,7 +324,7 @@ msgstr ""
 "                        [--ftpuseport] [--ftpproxy <kone>] [--ftpport "
 "<portti>]"
 
-#: ../rpm.c:213
+#: rpm.c:211
 #, fuzzy
 msgid ""
 "                        [--ftpport <port>] [--provides] [--triggers] [--dump]"
@@ -597,313 +332,318 @@ msgstr ""
 "                        [--dbpath <hakem>] [--nodeps] [--nofiles] "
 "[--noscripts]"
 
-#: ../rpm.c:214
+#: rpm.c:212
 #, fuzzy
 msgid "                        [--changelog] [--dbpath <dir>] [targets]"
 msgstr "                        [--nomd5] [kohteet]"
 
-#: ../rpm.c:215
+#: rpm.c:213
 msgid "       rpm {--verify -V -y} [-afpg] [--root <dir>] [--rcfile <file>]"
 msgstr ""
 "       rpm {--verify -V -y} [-afpg] [--root <hakem>] [--rcfile <tiedosto>]"
 
-#: ../rpm.c:216
+#: rpm.c:214
 msgid ""
 "                        [--dbpath <dir>] [--nodeps] [--nofiles] [--noscripts]"
 msgstr ""
 "                        [--dbpath <hakem>] [--nodeps] [--nofiles] "
 "[--noscripts]"
 
-#: ../rpm.c:217
+#: rpm.c:215
 msgid "                        [--nomd5] [targets]"
 msgstr "                        [--nomd5] [kohteet]"
 
-#: ../rpm.c:218
+#: rpm.c:216
 msgid "       rpm {--setperms} [-afpg] [target]"
 msgstr "       rpm {--setperms} [-afpg] [kohde]"
 
-#: ../rpm.c:219
+#: rpm.c:217
 msgid "       rpm {--setugids} [-afpg] [target]"
 msgstr "       rpm {--setugids} [-afpg] [kohde]"
 
-#: ../rpm.c:220
+#: rpm.c:218
+#, fuzzy
+msgid "       rpm {--freshen -F} file1.rpm ... fileN.rpm"
+msgstr "                        [--badreloc] tiedosto1.rpm ... tiedostoN.rpm"
+
+#: rpm.c:219
 msgid "       rpm {--erase -e} [--root <dir>] [--noscripts] [--rcfile <file>]"
 msgstr ""
 "       rpm {--erase -e} [--root <hakem>] [--noscripts] [--rcfile <tiedosto>]"
 
-#: ../rpm.c:221
+#: rpm.c:220
 msgid "                        [--dbpath <dir>] [--nodeps] [--allmatches]"
 msgstr "                        [--dbpath <hakem>] [--nodeps] [--allmatches]"
 
-#: ../rpm.c:222
+#: rpm.c:221
 #, fuzzy
 msgid ""
 "                        [--justdb] [--notriggers] rpackage1 ... packageN"
 msgstr "                        [--justdb] paketti1 ... pakettiN"
 
-#: ../rpm.c:223
+#: rpm.c:222
 msgid ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile  <file>]"
 msgstr ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile  "
 "<tiedosto>]"
 
-#: ../rpm.c:224
+#: rpm.c:223
 #, fuzzy
 msgid "                        [--sign] [--nobuild] [--timecheck <s>] ]"
 msgstr ""
 "                        [--sign] [--test] [--timecheck <s>] [--buildos <kj>]"
 
-#: ../rpm.c:225
+#: rpm.c:224
 #, fuzzy
 msgid "                        [--target=platform1[,platform2...]]"
 msgstr "                        [kohteet]"
 
-#: ../rpm.c:226
+#: rpm.c:225
 #, fuzzy
 msgid "                        [--rmsource] specfile"
 msgstr ""
 "                        [--buildarch <arkk>] [--rmsource] määrittelytiedosto"
 
-#: ../rpm.c:227
+#: rpm.c:226
 msgid "       rpm {--rmsource} [--rcfile <file>] [-v] specfile"
 msgstr "       rpm {--rmsource} [--rcfile <tiedosto>] [-v] määrittelytiedosto"
 
-#: ../rpm.c:228
+#: rpm.c:227
 msgid ""
 "       rpm {--rebuild} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 "       rpm {--rebuild} [--rcfile <tiedosto>] [-v] lähdekoodi1.rpm ... "
 "lähdekoodiN.rpm"
 
-#: ../rpm.c:229
+#: rpm.c:228
 msgid ""
 "       rpm {--recompile} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 "       rpm {--recompile} [--rcfile <tiedosto>] [-v] lähdekoodi1.rpm ... "
 "lähdekoodiN.rpm"
 
-#: ../rpm.c:230
+#: rpm.c:229
 msgid "       rpm {--resign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr ""
 "       rpm {--resign} [--rcfile <tiedosto>] paketti1 paketti2 ... pakettiN"
 
-#: ../rpm.c:231
+#: rpm.c:230
 msgid "       rpm {--addsign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr ""
 "       rpm {--addsign} [--rcfile <tiedosto>] paketti1 paketti2 ... pakettiN"
 
-#: ../rpm.c:232
+#: rpm.c:231
 #, fuzzy
 msgid ""
 "       rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile <file>]"
 msgstr "       rpm {--checksig -K} [--nopgp] [--nomd5] [--rcfile <tiedosto>]"
 
-#: ../rpm.c:233
+#: rpm.c:232
 msgid "                           package1 ... packageN"
 msgstr "                           paketti1 ... pakettiN"
 
-#: ../rpm.c:234
+#: rpm.c:233
 msgid "       rpm {--rebuilddb} [--rcfile <file>] [--dbpath <dir>]"
 msgstr "       rpm {--rebuilddb} [--rcfile <tiedosto>] [--dbpath <hakem>]"
 
-#: ../rpm.c:235
+#: rpm.c:234
 msgid "       rpm {--querytags}"
 msgstr ""
 
-#: ../rpm.c:269
+#: rpm.c:268
 msgid "usage:"
 msgstr "käyttö:"
 
-#: ../rpm.c:271
+#: rpm.c:270
 msgid "print this message"
 msgstr "tulosta tämä viesti"
 
-#: ../rpm.c:273
+#: rpm.c:272
 msgid "print the version of rpm being used"
 msgstr "tulosta käytetyn rpm:n versio"
 
-#: ../rpm.c:274
+#: rpm.c:273
 msgid "   all modes support the following arguments:"
 msgstr "   kaikki moodit tukevat seuraavia parametrejä"
 
-#: ../rpm.c:275
+#: rpm.c:274
 msgid "      --rcfile <file>     "
 msgstr ""
 
-#: ../rpm.c:276
+#: rpm.c:275
 msgid "use <file> instead of /etc/rpmrc and $HOME/.rpmrc"
 msgstr "käytä <tiedosto> eikä /etc/rpmrc tai $HOME/.rpmrc"
 
-#: ../rpm.c:278
+#: rpm.c:277
 msgid "be a little more verbose"
 msgstr "tulosta enemmän viestejä"
 
-#: ../rpm.c:280
+#: rpm.c:279
 msgid "be incredibly verbose (for debugging)"
 msgstr "tulosta mahdollisimman paljon viestejä (vianetsintään)"
 
-#: ../rpm.c:282
+#: rpm.c:281
 msgid "query mode"
 msgstr "kyselymoodi"
 
-#: ../rpm.c:283 ../rpm.c:345 ../rpm.c:409 ../rpm.c:437
+#: rpm.c:282 rpm.c:344 rpm.c:408 rpm.c:436
 msgid "      --root <dir>        "
 msgstr ""
 
-#: ../rpm.c:284 ../rpm.c:346 ../rpm.c:410 ../rpm.c:438 ../rpm.c:500
+#: rpm.c:283 rpm.c:345 rpm.c:409 rpm.c:437 rpm.c:499
 msgid "use <dir> as the top level directory"
 msgstr "käytä <hakem> ylimpänä hakemistona"
 
-#: ../rpm.c:285 ../rpm.c:343 ../rpm.c:373 ../rpm.c:425 ../rpm.c:497
+#: rpm.c:284 rpm.c:342 rpm.c:372 rpm.c:424 rpm.c:496
 #, fuzzy
 msgid "      --dbpath <dir>      "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: ../rpm.c:286 ../rpm.c:344 ../rpm.c:374 ../rpm.c:426 ../rpm.c:498
+#: rpm.c:285 rpm.c:343 rpm.c:373 rpm.c:425 rpm.c:497
 msgid "use <dir> as the directory for the database"
 msgstr "kaytä <hakem> tietokannan hakemistona"
 
-#: ../rpm.c:287
+#: rpm.c:286
 msgid "      --queryformat <qfmt>"
 msgstr ""
 
-#: ../rpm.c:288
+#: rpm.c:287
 #, fuzzy
 msgid "use <qfmt> as the header format (implies -i)"
 msgstr "käytä s headerin formaatina (josta seuraa -i)"
 
-#: ../rpm.c:289
+#: rpm.c:288
 msgid ""
 "   install, upgrade and query (with -p) allow ftp URL's to be used in place"
 msgstr ""
 "   asennuksessa, päivityksessä ja kyselyssä (-p:n kanssa)  ftp URL:ja "
 "voidaan käyttää"
 
-#: ../rpm.c:290
+#: rpm.c:289
 #, fuzzy
 msgid "   of file names as well as the following options:"
 msgstr "   tiedostoniminä, kuten myös seuraavia parametrejä:\n"
 
-#: ../rpm.c:291
+#: rpm.c:290
 msgid "      --ftpproxy <host>   "
 msgstr ""
 
-#: ../rpm.c:292
+#: rpm.c:291
 msgid "hostname or IP of ftp proxy"
 msgstr "koneen nimi tai IP tai ftp-proxy"
 
-#: ../rpm.c:293
+#: rpm.c:292
 msgid "      --ftpport <port>    "
 msgstr ""
 
-#: ../rpm.c:294
+#: rpm.c:293
 msgid "port number of ftp server (or proxy)"
 msgstr "ftp-palvelijan (tai proxyn) porttinumero"
 
-#: ../rpm.c:295
+#: rpm.c:294
 #, fuzzy
 msgid "      --httpproxy <host>   "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: ../rpm.c:296
+#: rpm.c:295
 #, fuzzy
 msgid "hostname or IP of http proxy"
 msgstr "koneen nimi tai IP tai ftp-proxy"
 
-#: ../rpm.c:297
+#: rpm.c:296
 #, fuzzy
 msgid "      --httpport <port>    "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: ../rpm.c:298
+#: rpm.c:297
 #, fuzzy
 msgid "port number of http server (or proxy)"
 msgstr "ftp-palvelijan (tai proxyn) porttinumero"
 
-#: ../rpm.c:299
+#: rpm.c:298
 msgid "      Package specification options:"
 msgstr "      Paketin määrittelyparametrit:"
 
-#: ../rpm.c:301
+#: rpm.c:300
 msgid "query all packages"
 msgstr "kysele kaikki paketit"
 
-#: ../rpm.c:302
+#: rpm.c:301
 msgid "        -f <file>+        "
 msgstr ""
 
-#: ../rpm.c:303
+#: rpm.c:302
 msgid "query package owning <file>"
 msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
 
-#: ../rpm.c:304
+#: rpm.c:303
 msgid "        -p <packagefile>+ "
 msgstr ""
 
-#: ../rpm.c:305
+#: rpm.c:304
 msgid "query (uninstalled) package <packagefile>"
 msgstr "kysele(asentamatonta) pakettia <pakettitiedosto>"
 
-#: ../rpm.c:306
+#: rpm.c:305
 #, fuzzy
 msgid "        --triggeredby <pkg>"
 msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
 
-#: ../rpm.c:307
+#: rpm.c:306
 #, fuzzy
 msgid "query packages triggered by <pkg>"
 msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
 
-#: ../rpm.c:308
+#: rpm.c:307
 #, fuzzy
 msgid "        --whatprovides <cap>"
 msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
 
-#: ../rpm.c:309
+#: rpm.c:308
 #, fuzzy
 msgid "query packages which provide <cap> capability"
 msgstr "kysele paketteja, jotka tarjoavat <i> ominaisuuden"
 
-#: ../rpm.c:310
+#: rpm.c:309
 #, fuzzy
 msgid "        --whatrequires <cap>"
 msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
 
-#: ../rpm.c:311
+#: rpm.c:310
 #, fuzzy
 msgid "query packages which require <cap> capability"
 msgstr "kysele paketteja, jotka vaativat <i> ominaisuutta"
 
-#: ../rpm.c:312
+#: rpm.c:311
 msgid "      Information selection options:"
 msgstr "      Tietojen valintaparametrit:"
 
-#: ../rpm.c:314
+#: rpm.c:313
 msgid "display package information"
 msgstr "näytä paketin tiedot"
 
-#: ../rpm.c:316
+#: rpm.c:315
 msgid "display the package's change log"
 msgstr "näytä paketin muutosloki"
 
-#: ../rpm.c:318
+#: rpm.c:317
 msgid "display package file list"
 msgstr "näytä paketin tiedostolistaus"
 
-#: ../rpm.c:320
+#: rpm.c:319
 msgid "show file states (implies -l)"
 msgstr "näytä tiedostojen tilat (josta seuraa -l)"
 
-#: ../rpm.c:322
+#: rpm.c:321
 msgid "list only documentation files (implies -l)"
 msgstr "listaa vain dokumettitiedostot (josta seuraa -l)"
 
-#: ../rpm.c:324
+#: rpm.c:323
 msgid "list only configuration files (implies -l)"
 msgstr "listaa vain konfigurointiedostot (josta seuraa -l)"
 
-#: ../rpm.c:326
+#: rpm.c:325
 msgid ""
 "show all verifiable information for each file (must be used with -l, -c, or "
 "-d)"
@@ -911,36 +651,36 @@ msgstr ""
 "näytä kaikki varmistettavissa oleva tieto kustakin tiedostosta (pitää "
 "käyttää -l, -c, tai -d kanssa)"
 
-#: ../rpm.c:328
+#: rpm.c:327
 msgid "list capabilities package provides"
 msgstr "luettele paketin tarjoamat ominaisuudet"
 
-#: ../rpm.c:329
+#: rpm.c:328
 msgid "        --requires"
 msgstr ""
 
-#: ../rpm.c:331
+#: rpm.c:330
 msgid "list package dependencies"
 msgstr "listaa paketin riippuvuudet"
 
-#: ../rpm.c:333
+#: rpm.c:332
 msgid "print the various [un]install scripts"
 msgstr "tulosta erinäiset asennus/poisto-skriptit"
 
-#: ../rpm.c:335
+#: rpm.c:334
 msgid "show the trigger scripts contained in the package"
 msgstr ""
 
-#: ../rpm.c:339
+#: rpm.c:338
 #, fuzzy
 msgid "    --pipe <cmd>          "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: ../rpm.c:340
+#: rpm.c:339
 msgid "send stdout to <cmd>"
 msgstr "lähetä vakiotuloste <komento>:lle"
 
-#: ../rpm.c:342
+#: rpm.c:341
 msgid ""
 "verify a package installation using the same same package specification "
 "options as -q"
@@ -948,19 +688,19 @@ msgstr ""
 "tarkista paketin asennus käyttäen samoja paketin määrittelyparametrejä kuin "
 "-q "
 
-#: ../rpm.c:348 ../rpm.c:396 ../rpm.c:430
+#: rpm.c:347 rpm.c:395 rpm.c:429
 msgid "do not verify package dependencies"
 msgstr "älä tarkista paketin riippuvuuksia"
 
-#: ../rpm.c:350
+#: rpm.c:349
 msgid "do not verify file md5 checksums"
 msgstr "älä tarkista tiedostojen md5-tarkistussummia"
 
-#: ../rpm.c:352
+#: rpm.c:351
 msgid "do not verify file attributes"
 msgstr "älä tarkista tiedostojen ominaisuuksia"
 
-#: ../rpm.c:355
+#: rpm.c:354
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
@@ -968,7 +708,7 @@ msgstr ""
 "aseta tiedostojen oikeudet niiksi, jotka ne ovat pakettien tietokannassa "
 "käyttäen samoja pakettien määrittelyparametrejä kuin -q"
 
-#: ../rpm.c:358
+#: rpm.c:357
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
@@ -976,129 +716,129 @@ msgstr ""
 "aseta tiedostojen omistaja ja ryhmä niiksi, jotka ne ovat pakettien "
 "tietokannassa käyttäen samoja pakettien määrittelyparametrejä kuin -q"
 
-#: ../rpm.c:362
+#: rpm.c:361
 #, fuzzy
 msgid "    --install <packagefile>"
 msgstr "asenna paketti"
 
-#: ../rpm.c:363
+#: rpm.c:362
 #, fuzzy
 msgid "    -i <packagefile>      "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: ../rpm.c:364
+#: rpm.c:363
 msgid "install package"
 msgstr "asenna paketti"
 
-#: ../rpm.c:365
+#: rpm.c:364
 #, fuzzy
 msgid "      --excludepath <path>"
 msgstr "siirrä tiedostot hakemistosta <vanhapolku> hakemistoon <uusipolku>"
 
-#: ../rpm.c:366
+#: rpm.c:365
 msgid "skip files in path <path>"
 msgstr ""
 
-#: ../rpm.c:367
+#: rpm.c:366
 #, fuzzy
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr "siirrä tiedostot hakemistosta <vanhapolku> hakemistoon <uusipolku>"
 
-#: ../rpm.c:368
+#: rpm.c:367
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr "siirrä tiedostot hakemistosta <vanhapolku> hakemistoon <uusipolku>"
 
-#: ../rpm.c:370
+#: rpm.c:369
 msgid "relocate files even though the package doesn't allow it"
 msgstr "siirrä tiedostot toiseen hakemistoon vaikka paketti ei sitä sallisi"
 
-#: ../rpm.c:371
+#: rpm.c:370
 msgid "      --prefix <dir>      "
 msgstr ""
 
-#: ../rpm.c:372
+#: rpm.c:371
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "siirrä paketti hakemistoon <hakem>, jos siirrettävissä"
 
-#: ../rpm.c:376
+#: rpm.c:375
 msgid "do not install documentation"
 msgstr "älä asenna dokumentointia"
 
-#: ../rpm.c:378
+#: rpm.c:377
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "lyhenne parametreille --replacepkgs --replacefiles"
 
-#: ../rpm.c:381
+#: rpm.c:380
 msgid "print hash marks as package installs (good with -v)"
 msgstr "tulosta risuaitaa paketin asentuessa (-v:n kanssa hyvä)"
 
-#: ../rpm.c:383
+#: rpm.c:382
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "asenna kaikki tiedostot, myös konfiguraatiot, jotka muuten ehkä ohitettaisiin"
 
-#: ../rpm.c:386
+#: rpm.c:385
 msgid "don't verify package architecture"
 msgstr "älä tarkista paketin arkkitehtuuria"
 
-#: ../rpm.c:388
+#: rpm.c:387
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: ../rpm.c:390
+#: rpm.c:389
 msgid "don't verify package operating system"
 msgstr "älä tarkista paketin käyttöjärjestelmää"
 
-#: ../rpm.c:392
+#: rpm.c:391
 msgid "install documentation"
 msgstr "asenna dokumentaatio"
 
-#: ../rpm.c:394 ../rpm.c:428
+#: rpm.c:393 rpm.c:427
 msgid "update the database, but do not modify the filesystem"
 msgstr "päivitä tietokanta, mutta älä muuta tiedostojärjestelmää"
 
-#: ../rpm.c:398 ../rpm.c:432
+#: rpm.c:397 rpm.c:431
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "älä muuta asennusjärjestystä riippuvuuksien tyydyttämiseksi"
 
-#: ../rpm.c:400
+#: rpm.c:399
 msgid "don't execute any installation scripts"
 msgstr "älä suorita asennusskriptejä"
 
-#: ../rpm.c:402 ../rpm.c:436
+#: rpm.c:401 rpm.c:435
 msgid "don't execute any scripts triggered by this package"
 msgstr ""
 
-#: ../rpm.c:404
+#: rpm.c:403
 msgid "print percentages as package installs"
 msgstr "tulosta asennuksen eteneminen prosentteina"
 
-#: ../rpm.c:406
+#: rpm.c:405
 msgid "install even if the package replaces installed files"
 msgstr "asenna vaikka paketti korvaisi asennettuja tiedostoja"
 
-#: ../rpm.c:408
+#: rpm.c:407
 msgid "reinstall if the package is already present"
 msgstr "asenna uudelleen, jos paketti on jo asennettu"
 
-#: ../rpm.c:412
+#: rpm.c:411
 msgid "don't install, but tell if it would work or not"
 msgstr "älä asenna, mutta kerro onnistuisiko se"
 
-#: ../rpm.c:414
+#: rpm.c:413
 msgid "    --upgrade <packagefile>"
 msgstr ""
 
-#: ../rpm.c:415
+#: rpm.c:414
 #, fuzzy
 msgid "    -U <packagefile>      "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: ../rpm.c:416
+#: rpm.c:415
 msgid "upgrade package (same options as --install, plus)"
 msgstr "päivitä paketti (samat parametrit kuin --install, plus)"
 
-#: ../rpm.c:418
+#: rpm.c:417
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1106,15 +846,15 @@ msgstr ""
 "päivitä vanhempaan versioon (--force päivitettäessä tekee tämän "
 "automaattisesti)"
 
-#: ../rpm.c:420
+#: rpm.c:419
 msgid "    --erase <package>"
 msgstr ""
 
-#: ../rpm.c:422
+#: rpm.c:421
 msgid "erase (uninstall) package"
 msgstr "poista paketti"
 
-#: ../rpm.c:424
+#: rpm.c:423
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1122,93 +862,93 @@ msgstr ""
 "poista kaikki paketit, joiden nimeä vastaa  <paketti> (tavallisesti, jos  "
 "<paketti> määrittää useita paketteja, tulee virhe)"
 
-#: ../rpm.c:434
+#: rpm.c:433
 msgid "do not execute any package specific scripts"
 msgstr "älä aja mitään pakettikohtaisia skriptejä"
 
-#: ../rpm.c:440
+#: rpm.c:439
 msgid "    -b<stage> <spec>      "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: ../rpm.c:441
+#: rpm.c:440
 #, fuzzy
 msgid "    -t<stage> <tarball>   "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: ../rpm.c:442
+#: rpm.c:441
 msgid "build package, where <stage> is one of:"
 msgstr "tee paketti, jossa <vaihe> on jokin:"
 
-#: ../rpm.c:444
+#: rpm.c:443
 msgid "prep (unpack sources and apply patches)"
 msgstr "valmistele (pura lähdekoodi ja tee korjaukset)"
 
-#: ../rpm.c:446
+#: rpm.c:445
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr "listatarkistus (tee joitakin tarkistuksia %tiedostoihin)"
 
-#: ../rpm.c:448
+#: rpm.c:447
 msgid "compile (prep and compile)"
 msgstr "käännä (valmistele ja käännä)"
 
-#: ../rpm.c:450
+#: rpm.c:449
 msgid "install (prep, compile, install)"
 msgstr "asenna (valmistele, käännä ja asenna)"
 
-#: ../rpm.c:452
+#: rpm.c:451
 msgid "binary package (prep, compile, install, package)"
 msgstr "binääripaketti (valmistele, käännä, asenna, paketoi)"
 
-#: ../rpm.c:454
+#: rpm.c:453
 msgid "bin/src package (prep, compile, install, package)"
 msgstr "bin/src-paketti (valmistele, käännä, asenna, paketoi)"
 
-#: ../rpm.c:460
+#: rpm.c:459
 msgid "remove sources and spec file when done"
 msgstr "poista lähdekoodit ja määrittelytiedosto, kun valmis"
 
-#: ../rpm.c:462
+#: rpm.c:461
 #, fuzzy
 msgid "generate PGP/GPG signature"
 msgstr "generoi PGP-allekirjoitus"
 
-#: ../rpm.c:463
+#: rpm.c:462
 #, fuzzy
 msgid "      --buildroot <dir>   "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: ../rpm.c:464
+#: rpm.c:463
 msgid "use <dir> as the build root"
 msgstr "käytä <hakem> käännöspuun juurena"
 
-#: ../rpm.c:465
+#: rpm.c:464
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: ../rpm.c:466
+#: rpm.c:465
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: ../rpm.c:468
+#: rpm.c:467
 msgid "do not execute any stages"
 msgstr "älä suorita mitään vaiheita"
 
-#: ../rpm.c:469
+#: rpm.c:468
 #, fuzzy
 msgid "      --timecheck <secs>  "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: ../rpm.c:470
+#: rpm.c:469
 #, fuzzy
 msgid "set the time check to <secs> seconds (0 disables)"
 msgstr "aseta aikatarkistus S sekunniksi (0 ohittaa)"
 
-#: ../rpm.c:472
+#: rpm.c:471
 msgid "    --rebuild <src_pkg>   "
 msgstr ""
 
-#: ../rpm.c:473
+#: rpm.c:472
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -1216,228 +956,232 @@ msgstr ""
 "asenna lähdekoodipaketti, käännä binääripaketti ja poista "
 "määrittelytiedosto, lähdekoodi, korjaukset ja kuvakkeet"
 
-#: ../rpm.c:474
+#: rpm.c:473
 #, fuzzy
 msgid "    --rmsource <spec>     "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: ../rpm.c:475
+#: rpm.c:474
 msgid "remove sources and spec file"
 msgstr "poista lähdekoodi ja määrittelytiedosto"
 
-#: ../rpm.c:476
+#: rpm.c:475
 msgid "    --recompile <src_pkg> "
 msgstr ""
 
-#: ../rpm.c:477
+#: rpm.c:476
 msgid "like --rebuild, but don't build any package"
 msgstr "kuten --rebuild, mutta ei käännä paketteja"
 
-#: ../rpm.c:478
+#: rpm.c:477
 #, fuzzy
 msgid "    --resign <pkg>+       "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: ../rpm.c:479
+#: rpm.c:478
 msgid "sign a package (discard current signature)"
 msgstr "allekirjoita paketti (hylkää nykyinen allekirjoitus)"
 
-#: ../rpm.c:480
+#: rpm.c:479
 #, fuzzy
 msgid "    --addsign <pkg>+      "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: ../rpm.c:481
+#: rpm.c:480
 msgid "add a signature to a package"
 msgstr "lisää allekirjoitus pakettiin"
 
-#: ../rpm.c:483
+#: rpm.c:482
 #, fuzzy
 msgid "    --checksig <pkg>+     "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: ../rpm.c:484
+#: rpm.c:483
 msgid "verify package signature"
 msgstr "tarkista paketin allekirjoitus"
 
-#: ../rpm.c:486
+#: rpm.c:485
 msgid "skip any PGP signatures"
 msgstr "ohita PGP-allekirjoitukset"
 
-#: ../rpm.c:488
+#: rpm.c:487
 #, fuzzy
 msgid "skip any GPG signatures"
 msgstr "ohita PGP-allekirjoitukset"
 
-#: ../rpm.c:490
+#: rpm.c:489
 msgid "skip any MD5 signatures"
 msgstr "ohita MD5-allekirjoitukset"
 
-#: ../rpm.c:492
+#: rpm.c:491
 msgid "list the tags that can be used in a query format"
 msgstr "luettele nimiöt, joita voidaan käyttää kyselyn formaatissa"
 
-#: ../rpm.c:494
+#: rpm.c:493
 msgid "make sure a valid database exists"
 msgstr "tarkista, että kunnollinen tietokanta löytyy"
 
-#: ../rpm.c:496
+#: rpm.c:495
 msgid "rebuild database from existing database"
 msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
 
-#: ../rpm.c:631 ../rpm.c:637 ../rpm.c:644 ../rpm.c:650 ../rpm.c:659
-#: ../rpm.c:666 ../rpm.c:713 ../rpm.c:719 ../rpm.c:779 ../rpm.c:787
-#: ../rpm.c:794 ../rpm.c:803 ../rpm.c:810 ../rpm.c:818 ../rpm.c:854
-#: ../rpm.c:909 ../rpm.c:916
+#: rpm.c:639 rpm.c:645 rpm.c:652 rpm.c:658 rpm.c:667 rpm.c:674 rpm.c:721
+#: rpm.c:727 rpm.c:761 rpm.c:767 rpm.c:773 rpm.c:781 rpm.c:816 rpm.c:871
+#: rpm.c:878
 msgid "only one major mode may be specified"
 msgstr "vain yksi päämoodi voidaan määritellä"
 
-#: ../rpm.c:652
+#: rpm.c:660
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr "-u ja --uninstall ovat vanhentuneet eivätkä enää toimi.\n"
 
-#: ../rpm.c:654
+#: rpm.c:662
 msgid "Use -e or --erase instead.\n"
 msgstr "Käytä sen sijaan -e tai --erase .\n"
 
-#: ../rpm.c:670
+#: rpm.c:678
 msgid "--build (-b) requires one of a,b,i,c,p,l as its sole argument"
 msgstr "--build (-b) vaatii yhden joukosta a,b,i,c,p,l ainoana parametrinään"
 
-#: ../rpm.c:674
+#: rpm.c:682
 msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
 msgstr ""
 "--tarbuild (-t) vaatii yhden joukosta a,b,i,c,p,l ainoana parametrinään"
 
-#: ../rpm.c:726 ../rpm.c:732 ../rpm.c:739 ../rpm.c:746 ../rpm.c:755
-#: ../rpm.c:763 ../rpm.c:771 ../rpm.c:923
+#: rpm.c:734 rpm.c:740 rpm.c:747 rpm.c:754 rpm.c:885
 msgid "one type of query/verify may be performed at a time"
 msgstr "yhden tyyppinen kysely/tarkistus voidaan suorittaa kerralla"
 
-#: ../rpm.c:826
+#: rpm.c:789
 msgid "arguments to --dbpath must begin with a /"
 msgstr "--dbpath:n parametrien pitää alkaa /-merkillä"
 
-#: ../rpm.c:860
+#: rpm.c:822
 msgid "relocations must begin with a /"
 msgstr "siirtojen pitää alkaa /-merkillä"
 
-#: ../rpm.c:862
+#: rpm.c:824
 msgid "relocations must contain a ="
 msgstr "siirroissa pitää olla =-merkki"
 
-#: ../rpm.c:865
+#: rpm.c:827
 msgid "relocations must have a / following the ="
 msgstr "siirroissa pitää olla / =-merkin jälkeen"
 
-#: ../rpm.c:874
+#: rpm.c:836
 #, fuzzy
 msgid "exclude paths must begin with a /"
 msgstr "siirtojen pitää alkaa /-merkillä"
 
-#: ../rpm.c:883
+#: rpm.c:845
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: ../rpm.c:936
+#: rpm.c:898
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath parametri annettu toiminnolle, joka ei käytä tietokantaa"
 
-#: ../rpm.c:941
+#: rpm.c:903
 msgid "--timecheck may only be used during package builds"
 msgstr "--timecheck parametriä voidaan käyttää vain paketteja koottaessa"
 
-#: ../rpm.c:944 ../rpm.c:947
-msgid "unexpected query specifiers"
-msgstr "odottamattomia kyselyn parametrejä"
+#: rpm.c:906
+#, fuzzy
+msgid "unexpected query flags"
+msgstr "odottamaton kyselyn lähde"
+
+#: rpm.c:909
+#, fuzzy
+msgid "unexpected query format"
+msgstr "odottamaton kyselyn lähde"
 
-#: ../rpm.c:951
+#: rpm.c:913
 msgid "unexpected query source"
 msgstr "odottamaton kyselyn lähde"
 
-#: ../rpm.c:957
+#: rpm.c:919
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "vain asennus tai päivitys voidaan pakottaa"
 
-#: ../rpm.c:960
+#: rpm.c:922
 msgid "files may only be relocated during package installation"
 msgstr "tiedostoja voidaan siirtää toiselle polulle vain asennettaessa"
 
-#: ../rpm.c:963
+#: rpm.c:925
 msgid "only one of --prefix or --relocate may be used"
 msgstr "vain toinen --prefix tai --relocate voidaan antaa"
 
-#: ../rpm.c:966
+#: rpm.c:928
 #, fuzzy
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr "--relocate: voidaan käyttää vain uusia paketteja asennettaessa"
 
-#: ../rpm.c:969
+#: rpm.c:931
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix: voidaan käyttää vain uusia paketteja asennettaessa"
 
-#: ../rpm.c:972
+#: rpm.c:934
 msgid "arguments to --prefix must begin with a /"
 msgstr "--prefix parametrien pitää alkaa /-merkillä"
 
-#: ../rpm.c:975
+#: rpm.c:937
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h): voidaan käyttää vain paketteja asennettaessa"
 
-#: ../rpm.c:979
+#: rpm.c:941
 msgid "--percent may only be specified during package installation"
 msgstr "--percent: voidaan käyttää vain paketteja asennettaessa"
 
-#: ../rpm.c:983
+#: rpm.c:945
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles: voidaan käyttää vain paketteja asennettaessa"
 
-#: ../rpm.c:987
+#: rpm.c:949
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs: voidaan käyttää vain paketteja asennettaessa"
 
-#: ../rpm.c:991
+#: rpm.c:953
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs: voidaan käyttää vain paketteja asennettaessa"
 
-#: ../rpm.c:995
+#: rpm.c:957
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs: voidaan käyttää vain paketteja asennettaessa"
 
-#: ../rpm.c:999
+#: rpm.c:961
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "vain toinen --excludedocs tai --includedocs voidaan antaa"
 
-#: ../rpm.c:1003
+#: rpm.c:965
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch: voidaan käyttää vain paketteja asennettaessa"
 
-#: ../rpm.c:1007
+#: rpm.c:969
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos: voidaan käyttää vain paketteja asennettaessa"
 
-#: ../rpm.c:1011
+#: rpm.c:973
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoreos: voidaan käyttää vain paketteja asennettaessa"
 
-#: ../rpm.c:1015
+#: rpm.c:977
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches: voidaan käyttää vain paketteja poistettaessa"
 
-#: ../rpm.c:1019
+#: rpm.c:981
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles: voidaan käyttää vain paketteja asennettaessa"
 
-#: ../rpm.c:1023
+#: rpm.c:985
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 "--justdb: voidaan käyttää vain paketteja asennettaessa tai poistettaessa"
 
-#: ../rpm.c:1028
+#: rpm.c:990
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -1445,7 +1189,7 @@ msgstr ""
 "--noscripts: voidaan käyttää vain paketteja asennettaessa, poistettaessa tai "
 "tarkistettaessa"
 
-#: ../rpm.c:1032
+#: rpm.c:994
 #, fuzzy
 msgid ""
 "--notriggers may only be specified during package installation, erasure, and "
@@ -1454,7 +1198,7 @@ msgstr ""
 "--nodeps: voidaan käyttää vain paketteja asennettaessa, poistettaessa tai "
 "tarkistettaessa"
 
-#: ../rpm.c:1038
+#: rpm.c:1000
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, installation, "
@@ -1463,11 +1207,7 @@ msgstr ""
 "--nodeps: voidaan käyttää vain paketteja asennettaessa, poistettaessa tai "
 "tarkistettaessa"
 
-#: ../rpm.c:1043
-msgid "--nofiles may only be specified during package verification"
-msgstr "--nofiles: voidaan käyttää vain paketteja tarkistettaessa"
-
-#: ../rpm.c:1049
+#: rpm.c:1005
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
@@ -1475,7 +1215,7 @@ msgstr ""
 "--test: voidaan käyttää vain paketteja asennettaessa, poistettaessa ja "
 "käännettäessä"
 
-#: ../rpm.c:1054
+#: rpm.c:1010
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -1483,39 +1223,22 @@ msgstr ""
 "--root (-r): voidaan käyttää vain paketteja asennettaessa, poistettaessa, "
 "kyseltäessä ja tietokannan uudelleenluonnissa"
 
-#: ../rpm.c:1059
+#: rpm.c:1015
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "parametrit --root (-r):lle alettava /-merkillä"
 
-#: ../rpm.c:1063
-msgid "--clean may only be used with -b and -t"
-msgstr "--clean: voidaan käyttää vain -b ja -t kanssa"
-
-#: ../rpm.c:1066
-msgid "--rmsource may only be used with -b and -t"
-msgstr "--rmsource: voidaan käyttää vain -b ja -t kanssa"
-
-#: ../rpm.c:1069
-msgid "--short-circuit may only be used during package building"
-msgstr "--short-circuit: voidaan käyttää vain paketteja asennettaessa"
-
-#: ../rpm.c:1073
-#, fuzzy
-msgid "--short-circuit may only be used with -bc, -bi, -bs, -tc -ti, or -ts"
-msgstr "--short-circuit: voidaan käyttää vain -bc, -bi, -tc tai -ti kanssa"
-
-#: ../rpm.c:1079
+#: rpm.c:1018
 msgid "--oldpackage may only be used during upgrades"
 msgstr "--oldpackage: voidaan käyttää vain paketteja päivitettäessä"
 
-#: ../rpm.c:1084
+#: rpm.c:1023
 msgid ""
 "ftp options can only be used during package queries, installs, and upgrades"
 msgstr ""
 "ftp-parametrejä voidaan käyttää vain paketteja kysellessä, asennettaessa ja "
 "päivitettäessä"
 
-#: ../rpm.c:1090
+#: rpm.c:1029
 #, fuzzy
 msgid ""
 "http options can only be used during package queries, installs, and upgrades"
@@ -1523,16 +1246,16 @@ msgstr ""
 "ftp-parametrejä voidaan käyttää vain paketteja kysellessä, asennettaessa ja "
 "päivitettäessä"
 
-#: ../rpm.c:1094
+#: rpm.c:1033
 msgid "--nopgp may only be used during signature checking"
 msgstr "--nopgp: voidaan käyttää vain allekirjoitusta tarkistettaessa"
 
-#: ../rpm.c:1097
+#: rpm.c:1036
 #, fuzzy
 msgid "--nogpg may only be used during signature checking"
 msgstr "--nopgp: voidaan käyttää vain allekirjoitusta tarkistettaessa"
 
-#: ../rpm.c:1100
+#: rpm.c:1039
 #, fuzzy
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
@@ -1540,1995 +1263,2372 @@ msgstr ""
 "--nopgp: voidaan käyttää vain allekirjoitusta tarkistettaessa ja paketteja "
 "todennettaessa"
 
-#: ../rpm.c:1126
+#: rpm.c:1063
+msgid "no files to sign\n"
+msgstr ""
+
+#: rpm.c:1068
 #, fuzzy, c-format
 msgid "cannot access file %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: ../rpm.c:1143
+#: rpm.c:1083
 #, fuzzy
 msgid "pgp not found: "
 msgstr "Tiedostoa ei löytynyt palvelimelta"
 
-#: ../rpm.c:1146
-msgid "Use `%%_signature pgp5' instead of `%%_signature pgp' in macro file.\n"
-msgstr ""
-
-#: ../rpm.c:1153
-#, fuzzy
-msgid "pgp version 5 not found: "
-msgstr "Tiedostoa ei löytynyt palvelimelta"
-
-#: ../rpm.c:1156
-msgid "Use `%%_signature pgp' instead of `%%_signature pgp5' in macro file.\n"
-msgstr ""
-
-#: ../rpm.c:1162
+#: rpm.c:1087
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: ../rpm.c:1163
+#: rpm.c:1089
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: ../rpm.c:1166
+#: rpm.c:1092
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: ../rpm.c:1173
+#: rpm.c:1097
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: ../rpm.c:1178
+#: rpm.c:1103
 msgid "--sign may only be used during package building"
 msgstr "--sign: voidaan käyttää vain paketteja käännettäessä"
 
-#: ../rpm.c:1195
+#: rpm.c:1118
 #, fuzzy
 msgid "exec failed\n"
 msgstr "%s: avaus ei onnistunut\n"
 
-#: ../rpm.c:1214
+#: rpm.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr "--querytags: odottamattomia parametrejä"
 
-#: ../rpm.c:1225
+#: rpm.c:1148
 msgid "no packages given for signature check"
 msgstr "allekirjoituksen tarkistukselle ei määritelty paketteja"
 
-#: ../rpm.c:1233
+#: rpm.c:1160
 msgid "no packages given for signing"
 msgstr "allekirjoitukselle ei määritelty paketteja"
 
-#: ../rpm.c:1242
+#: rpm.c:1173
 msgid "no packages files given for rebuild"
 msgstr "uudelleenkäännolle ei määritelty paketteja"
 
-#: ../rpm.c:1299
+#: rpm.c:1230
 msgid "no spec files given for build"
 msgstr "käännökselle ei annettu määrittelytiedostoja"
 
-#: ../rpm.c:1301
+#: rpm.c:1232
 msgid "no tar files given for build"
 msgstr "käännökselle ei määritelty tar-tiedostoja"
 
-#: ../rpm.c:1313
+#: rpm.c:1244
 msgid "no packages given for uninstall"
 msgstr "poistolle ei määritelty paketteja"
 
-#: ../rpm.c:1362
+#: rpm.c:1294
 msgid "no packages given for install"
 msgstr "asennukselle ei määritelty paketteja"
 
-#: ../rpm.c:1385
+#: rpm.c:1317
 msgid "extra arguments given for query of all packages"
 msgstr "pakettien kyselylle annettiin ylimääräisiä parametrejä"
 
-#: ../rpm.c:1390
+#: rpm.c:1322
 msgid "no arguments given for query"
 msgstr "kyselylle ei annettu parametrejä"
 
-#: ../rpm.c:1411
+#: rpm.c:1339
 #, fuzzy
 msgid "extra arguments given for verify of all packages"
 msgstr "pakettien kyselylle annettiin ylimääräisiä parametrejä"
 
-#: ../rpm.c:1415
+#: rpm.c:1343
 msgid "no arguments given for verify"
 msgstr "tarkistukselle ei annettu parametrejä"
 
-#: ../rpm2cpio.c:42
+#: rpm2cpio.c:34
 msgid "argument is not an RPM package\n"
 msgstr ""
 
-#: ../rpm2cpio.c:46
+#: rpm2cpio.c:38
 #, fuzzy
 msgid "error reading header from package\n"
 msgstr "virhe etsittäessä pakettia %s\n"
 
-#: ../url.c:136
-#, c-format
-msgid "Password for %s@%s: "
-msgstr "%s@%s:n salasana: "
+#: build/build.c:83 build/pack.c:263
+#, fuzzy
+msgid "Unable to open temp file"
+msgstr "En voi avata %s luettavaksi: %s."
 
-#: ../url.c:160 ../url.c:186
+#: build/build.c:124
 #, fuzzy, c-format
-msgid "error: %sport must be a number\n"
-msgstr "virhe: ftpport pitää olla luku\n"
+msgid "Executing: %s\n"
+msgstr "Haen: %s\n"
 
-#: ../url.c:271
-#, fuzzy
-msgid "url port must be a number\n"
-msgstr "virhe: ftpport pitää olla luku\n"
+#: build/build.c:128
+#, fuzzy, c-format
+msgid "Exec of %s failed (%s)"
+msgstr "%s:n avaus ei onnistunut: %s\n"
 
-#. XXX PARANOIA
-#: ../url.c:308
+#: build/build.c:138
 #, c-format
-msgid "logging into %s as %s, pw %s\n"
+msgid "Bad exit status from %s (%s)"
 msgstr ""
 
-#: ../lib/rpmdb.c:169 ../url.c:422
-#, c-format
-msgid "failed to open %s\n"
-msgstr "%s:n avaus epäonnistui\n"
-
-#: ../url.c:437
-#, c-format
-msgid "failed to create %s\n"
-msgstr "%s:n luonti epäonnistui\n"
-
-#: ../build/build.c:83 ../build/pack.c:248
+#: build/expression.c:208
 #, fuzzy
-msgid "Unable to open temp file"
-msgstr "En voi avata %s luettavaksi: %s."
-
-#: ../build/build.c:122
-#, fuzzy, c-format
-msgid "Executing: %s\n"
-msgstr "Haen: %s\n"
-
-#: ../build/build.c:126
-#, fuzzy, c-format
-msgid "Exec of %s failed (%s)"
-msgstr "%s:n avaus ei onnistunut: %s\n"
+msgid "syntax error while parsing =="
+msgstr "odotin '?'-merkkiä ilmauksessa"
 
-#: ../build/build.c:136
-#, c-format
-msgid "Bad exit status from %s (%s)"
-msgstr ""
+#: build/expression.c:238
+#, fuzzy
+msgid "syntax error while parsing &&"
+msgstr "odotin '?'-merkkiä ilmauksessa"
 
-#: ../build/expression.c:189 ../build/expression.c:198
-msgid "parse error in tokenizer"
-msgstr ""
+#: build/expression.c:247
+#, fuzzy
+msgid "syntax error while parsing ||"
+msgstr "odotin '?'-merkkiä ilmauksessa"
 
-#: ../build/expression.c:240
+#: build/expression.c:289
 #, fuzzy
 msgid "parse error in expression"
 msgstr "odotin '?'-merkkiä ilmauksessa"
 
-#: ../build/expression.c:270
+#: build/expression.c:319
 msgid "unmatched ("
 msgstr ""
 
-#: ../build/expression.c:288
+#: build/expression.c:337
 msgid "undefined identifier"
 msgstr ""
 
-#: ../build/expression.c:307
+#: build/expression.c:356
 msgid "- only on numbers"
 msgstr ""
 
-#: ../build/expression.c:323
+#: build/expression.c:372
 msgid "! only on numbers"
 msgstr ""
 
-#: ../build/expression.c:362 ../build/expression.c:407
-#: ../build/expression.c:464 ../build/expression.c:551
+#: build/expression.c:411 build/expression.c:456 build/expression.c:513
+#: build/expression.c:600
 msgid "types must match"
 msgstr ""
 
-#: ../build/expression.c:375
+#: build/expression.c:424
 msgid "* / not suported for strings"
 msgstr ""
 
-#: ../build/expression.c:423
+#: build/expression.c:472
 msgid "- not suported for strings"
 msgstr ""
 
-#: ../build/expression.c:564
+#: build/expression.c:613
 msgid "&& and || not suported for strings"
 msgstr ""
 
-#: ../build/expression.c:595 ../build/expression.c:640
+#: build/expression.c:644 build/expression.c:689
 #, fuzzy
 msgid "syntax error in expression"
 msgstr "odotin '?'-merkkiä ilmauksessa"
 
-#: ../build/files.c:220
+#: build/files.c:224
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr ""
 
-#: ../build/files.c:265 ../build/files.c:277 ../build/files.c:346
-#: ../build/files.c:358 ../build/files.c:389
-#, c-format
-msgid "Bad %s() syntax: %s"
-msgstr ""
-
-#: ../build/files.c:307
-#, c-format
-msgid "Invalid %s token: %s"
-msgstr ""
+#: build/files.c:267 build/files.c:349 build/files.c:512
+#, fuzzy, c-format
+msgid "Missing '(' in %s %s"
+msgstr "puuttuva '{' '%':n jälkeen"
 
-#: ../build/files.c:369
-msgid "No files after %%defattr(): %s"
-msgstr ""
+#: build/files.c:278 build/files.c:466 build/files.c:523
+#, fuzzy, c-format
+msgid "Missing ')' in %s(%s"
+msgstr "puuttuva ':', %s:%d"
 
-#: ../build/files.c:399
+#: build/files.c:316 build/files.c:491
 #, c-format
-msgid "Bad %s() mode spec: %s"
+msgid "Invalid %s token: %s"
 msgstr ""
 
-#: ../build/files.c:411
+#: build/files.c:365
 #, c-format
-msgid "Bad %s() dirmode spec: %s"
+msgid "Non-white space follows %s(): %s"
 msgstr ""
 
-#: ../build/files.c:462
-msgid "Bad %%config() syntax: %s"
-msgstr ""
+#: build/files.c:403
+#, fuzzy, c-format
+msgid "Bad syntax: %s(%s)"
+msgstr "En voi lukea %s: %s."
 
-#: ../build/files.c:480
-msgid "Invalid %%config token: %s"
-msgstr ""
+#: build/files.c:413
+#, fuzzy, c-format
+msgid "Bad mode spec: %s(%s)"
+msgstr "En voi lukea %s: %s."
 
-#: ../build/files.c:503 ../build/files.c:515 ../build/files.c:528
-msgid "Bad %%lang() syntax: %s"
+#: build/files.c:425
+#, c-format
+msgid "Bad dirmode spec: %s(%s)"
 msgstr ""
 
-#: ../build/files.c:534
-msgid "%%lang() entries are 2 characters: %s"
+#: build/files.c:549
+msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
 msgstr ""
 
-#: ../build/files.c:540
-msgid "Only one entry in %%lang(): %s"
+#: build/files.c:559
+msgid "Duplicate locale %.*s in %%lang(%s)"
 msgstr ""
 
-#: ../build/files.c:620
+#: build/files.c:651
 msgid "Hit limit for %%docdir"
 msgstr ""
 
-#: ../build/files.c:626
+#: build/files.c:657
 msgid "Only one arg for %%docdir"
 msgstr ""
 
 #. We already got a file -- error
-#: ../build/files.c:651
+#: build/files.c:682
 #, fuzzy, c-format
 msgid "Two files on one line: %s"
 msgstr "en voinut avata %s: %s"
 
-#: ../build/files.c:664
+#: build/files.c:695
 #, fuzzy, c-format
 msgid "File must begin with \"/\": %s"
 msgstr "siirtojen pitää alkaa /-merkillä"
 
-#: ../build/files.c:676
+#: build/files.c:707
 msgid "Can't mix special %%doc with other forms: %s"
 msgstr ""
 
-#: ../build/files.c:764
+#: build/files.c:792
 #, fuzzy, c-format
 msgid "File listed twice: %s"
 msgstr "En voi lukea %s: %s."
 
-#: ../build/files.c:916
+#: build/files.c:952
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s"
 msgstr "En voi lukea %s: %s."
 
-#: ../build/files.c:926 ../build/files.c:1049
+#: build/files.c:962 build/files.c:1099
 #, fuzzy, c-format
 msgid "File not found: %s"
 msgstr "Tiedostoa ei löytynyt palvelimelta"
 
-#: ../build/files.c:969
+#: build/files.c:1005
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: ../build/files.c:983
+#: build/files.c:1019
 #, fuzzy, c-format
 msgid "File %4d: 0%o %s.%s\t %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: ../build/files.c:1033
+#: build/files.c:1083
 #, c-format
 msgid "File needs leading \"/\": %s"
 msgstr ""
 
-#: ../build/files.c:1090
+#: build/files.c:1140
 #, fuzzy
 msgid "Could not open %%files file: %s"
 msgstr "virhe: tiedostoa %s ei voi avata\n"
 
-#: ../build/files.c:1097 ../build/pack.c:433
+#: build/files.c:1147 build/pack.c:484
 #, c-format
 msgid "line: %s"
 msgstr ""
 
-#: ../build/files.c:1394 ../build/parsePrep.c:31
+#: build/files.c:1469 build/parsePrep.c:29
 #, c-format
 msgid "Bad owner/group: %s"
 msgstr ""
 
-#: ../build/files.c:1448
+#: build/files.c:1522
 #, fuzzy, c-format
 msgid "Couldn't exec %s"
 msgstr "En voinut ajaa pgp:tä"
 
-#: ../build/files.c:1452
+#: build/files.c:1526
 #, fuzzy, c-format
 msgid "Couldn't fork %s"
 msgstr "En voinut ajaa pgp:tä"
 
-#: ../build/files.c:1502
+#: build/files.c:1605
 #, fuzzy, c-format
 msgid "%s failed"
 msgstr "pgp epäonnistui"
 
-#: ../build/files.c:1506
+#: build/files.c:1609
 #, fuzzy, c-format
 msgid "failed to write all data to %s"
 msgstr "%s:n luonti epäonnistui\n"
 
-#: ../build/files.c:1540
-msgid "Finding provides...\n"
-msgstr ""
-
-#: ../build/files.c:1547
-msgid "Failed to find provides"
-msgstr ""
-
-#: ../build/files.c:1566
-msgid "Finding requires...\n"
+#: build/files.c:1695
+#, c-format
+msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: ../build/files.c:1573
-#, fuzzy
-msgid "Failed to find requires"
+#: build/files.c:1723 build/files.c:1732
+#, fuzzy, c-format
+msgid "Failed to find %s:"
 msgstr "%s:n luonti epäonnistui\n"
 
-#: ../build/files.c:1607
-msgid "Provides:"
-msgstr ""
-
-#: ../build/files.c:1622
-msgid "Prereqs:"
-msgstr ""
-
-#: ../build/files.c:1634
-msgid "Requires:"
-msgstr ""
-
-#: ../build/files.c:1658
+#: build/files.c:1838
 #, fuzzy, c-format
 msgid "Processing files: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: ../build/names.c:32 ../build/names.c:64
+#: build/names.c:32 build/names.c:64
 msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
 msgstr ""
 
-#: ../build/names.c:97 ../build/names.c:129
+#: build/names.c:97 build/names.c:129
 msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
 msgstr ""
 
-#: ../build/names.c:167
+#: build/names.c:167
 #, c-format
 msgid "Could not canonicalize hostname: %s\n"
 msgstr ""
 
-#: ../build/pack.c:134
+#: build/pack.c:131
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr ""
 
-#: ../build/pack.c:167
+#: build/pack.c:148
+#, fuzzy, c-format
+msgid "cannot create %s: %s\n"
+msgstr "en voinut avata tiedostoa %s: "
+
+#: build/pack.c:183
 #, fuzzy, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: ../build/pack.c:177
+#: build/pack.c:193
 #, fuzzy, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "En voi lukea %s: %s."
 
-#: ../build/pack.c:197
+#: build/pack.c:213
 #, fuzzy, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr "virhe: %s ei vaikuta RPM paketilta\n"
 
-#: ../build/pack.c:203
+#: build/pack.c:219
 #, fuzzy, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr "virhe luettaessa tietuetta %s %s:stä"
 
-#: ../build/pack.c:259
+#: build/pack.c:274
 msgid "Bad CSA data"
 msgstr ""
 
-#: ../build/pack.c:282
+#: build/pack.c:305
 #, fuzzy, c-format
 msgid "Could not open %s\n"
 msgstr "%s:n avaus epäonnistui\n"
 
-#: ../build/pack.c:314 ../build/pack.c:357
+#: build/pack.c:337 build/pack.c:379
 #, fuzzy, c-format
 msgid "Unable to write package: %s"
 msgstr "%s:n kirjoitus ei onnistu"
 
-#: ../build/pack.c:347
+#: build/pack.c:352
+#, fuzzy, c-format
+msgid "Generating signature: %d\n"
+msgstr "generoi PGP-allekirjoitus"
+
+#: build/pack.c:369
 #, fuzzy, c-format
 msgid "Unable to read sigtarget: %s"
 msgstr "%s:n kirjoitus ei onnistu"
 
-#: ../build/pack.c:372
+#: build/pack.c:394
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
 
-#: ../build/pack.c:387
+#: build/pack.c:411 build/pack.c:435
 #, fuzzy, c-format
 msgid "create archive failed on file %s: %s"
 msgstr "en voinut avata %s: %s"
 
-#: ../build/pack.c:403
+#: build/pack.c:454
 #, c-format
 msgid "cpio_copy write failed: %s"
 msgstr ""
 
-#: ../build/pack.c:410
+#: build/pack.c:461
 #, fuzzy, c-format
 msgid "cpio_copy read failed: %s"
 msgstr "luku epäonnistui: %s (%d)"
 
-#: ../build/pack.c:489
+#: build/pack.c:540
 #, fuzzy, c-format
 msgid "Could not open PreIn file: %s"
 msgstr "virhe: tiedostoa %s ei voi avata\n"
 
-#: ../build/pack.c:496
+#: build/pack.c:547
 #, fuzzy, c-format
 msgid "Could not open PreUn file: %s"
 msgstr "virhe: tiedostoa %s ei voi avata\n"
 
-#: ../build/pack.c:503
+#: build/pack.c:554
 #, fuzzy, c-format
 msgid "Could not open PostIn file: %s"
 msgstr "virhe: tiedostoa %s ei voi avata\n"
 
-#: ../build/pack.c:510
+#: build/pack.c:561
 #, fuzzy, c-format
 msgid "Could not open PostUn file: %s"
 msgstr "virhe: tiedostoa %s ei voi avata\n"
 
-#: ../build/pack.c:518
+#: build/pack.c:569
 #, c-format
 msgid "Could not open VerifyScript file: %s"
 msgstr ""
 
-#: ../build/pack.c:534
+#: build/pack.c:585
 #, c-format
 msgid "Could not open Trigger script file: %s"
 msgstr ""
 
-#: ../build/parseBuildInstallClean.c:27
+#: build/parseBuildInstallClean.c:27
 #, c-format
 msgid "line %d: second %s"
 msgstr ""
 
-#: ../build/parseChangelog.c:95
+#: build/parseChangelog.c:103
 msgid "%%changelog entries must start with *"
 msgstr ""
 
-#: ../build/parseChangelog.c:103
+#: build/parseChangelog.c:111
 msgid "incomplete %%changelog entry"
 msgstr ""
 
-#: ../build/parseChangelog.c:118
+#: build/parseChangelog.c:126
 msgid "bad date in %%changelog: %s"
 msgstr ""
 
-#: ../build/parseChangelog.c:123
+#: build/parseChangelog.c:131
 msgid "%%changelog not in decending chronological order"
 msgstr ""
 
-#: ../build/parseChangelog.c:131 ../build/parseChangelog.c:142
+#: build/parseChangelog.c:139 build/parseChangelog.c:150
 msgid "missing name in %%changelog"
 msgstr ""
 
-#: ../build/parseChangelog.c:149
+#: build/parseChangelog.c:157
 msgid "no description in %%changelog"
 msgstr ""
 
-#: ../build/parseDescription.c:35
+#: build/parseDescription.c:33
 msgid "line %d: Error parsing %%description: %s"
 msgstr ""
 
-#: ../build/parseDescription.c:48 ../build/parseFiles.c:42
-#: ../build/parseScript.c:170
+#: build/parseDescription.c:46 build/parseFiles.c:40 build/parseScript.c:168
 #, fuzzy, c-format
 msgid "line %d: Bad option %s: %s"
 msgstr "en voinut avata %s: %s"
 
-#: ../build/parseDescription.c:62 ../build/parseFiles.c:56
-#: ../build/parseScript.c:184
+#: build/parseDescription.c:60 build/parseFiles.c:54 build/parseScript.c:182
 #, c-format
 msgid "line %d: Too many names: %s"
 msgstr ""
 
-#: ../build/parseDescription.c:72 ../build/parseFiles.c:66
-#: ../build/parseScript.c:194
+#: build/parseDescription.c:70 build/parseFiles.c:64 build/parseScript.c:192
 #, fuzzy, c-format
 msgid "line %d: Package does not exist: %s"
 msgstr "paketti %s ei ole %s:ssä"
 
-#: ../build/parseDescription.c:84
+#: build/parseDescription.c:82
 #, c-format
 msgid "line %d: Second description"
 msgstr ""
 
-#: ../build/parseFiles.c:29
+#: build/parseFiles.c:27
 msgid "line %d: Error parsing %%files: %s"
 msgstr ""
 
-#: ../build/parseFiles.c:74
+#: build/parseFiles.c:72
 msgid "line %d: Second %%files list"
 msgstr ""
 
-#: ../build/parsePreamble.c:143
+#: build/parsePreamble.c:141
 #, c-format
 msgid "Architecture is excluded: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:148
+#: build/parsePreamble.c:146
 #, c-format
 msgid "Architecture is not included: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:153
+#: build/parsePreamble.c:151
 #, c-format
 msgid "OS is excluded: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:158
+#: build/parsePreamble.c:156
 #, c-format
 msgid "OS is not included: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:193
+#: build/parsePreamble.c:170
 #, c-format
 msgid "%s field must be present in package: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:215
+#: build/parsePreamble.c:192
 #, c-format
 msgid "Duplicate %s entries in package: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:262
+#: build/parsePreamble.c:239
 #, fuzzy, c-format
 msgid "Unable to stat icon: %s"
 msgstr "%s:n kirjoitus ei onnistu"
 
-#: ../build/parsePreamble.c:273
+#: build/parsePreamble.c:250
 #, fuzzy, c-format
 msgid "Unable to read icon: %s"
 msgstr "%s:n kirjoitus ei onnistu"
 
-#: ../build/parsePreamble.c:283
+#: build/parsePreamble.c:260
 #, fuzzy, c-format
 msgid "Unknown icon type: %s"
 msgstr "(tuntematon tyyppi)"
 
-#: ../build/parsePreamble.c:346
+#: build/parsePreamble.c:323
 #, c-format
 msgid "line %d: Malformed tag: %s"
 msgstr ""
 
 #. Empty field
-#: ../build/parsePreamble.c:354
+#: build/parsePreamble.c:331
 #, c-format
 msgid "line %d: Empty tag: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:377 ../build/parsePreamble.c:384
+#: build/parsePreamble.c:354 build/parsePreamble.c:361
 #, fuzzy, c-format
 msgid "line %d: Illegal char '-' in %s: %s"
 msgstr "en voinut avata %s: %s"
 
-#: ../build/parsePreamble.c:422
+#: build/parsePreamble.c:399
 #, c-format
 msgid "line %d: BuildRoot can not be \"/\": %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:435
+#: build/parsePreamble.c:412
 #, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:447
+#: build/parsePreamble.c:424
 #, fuzzy, c-format
 msgid "line %d: Docdir must begin with '/': %s"
 msgstr "siirtojen pitää alkaa /-merkillä"
 
-#: ../build/parsePreamble.c:459
+#: build/parsePreamble.c:436
 #, fuzzy, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s"
 msgstr "virheellinen paketin numero: %s\n"
 
-#: ../build/parsePreamble.c:524
+#: build/parsePreamble.c:499
 #, fuzzy, c-format
 msgid "line %d: Bad BuildArchitecture format: %s"
 msgstr "%s:n puuttuva arkkitehtuuri %s:%d"
 
-#: ../build/parsePreamble.c:534
+#: build/parsePreamble.c:509
 #, c-format
 msgid "Internal error: Bogus tag %d"
 msgstr ""
 
-#: ../build/parsePreamble.c:679
+#: build/parsePreamble.c:656
 #, fuzzy, c-format
 msgid "Bad package specification: %s"
 msgstr "      Paketin määrittelyparametrit:"
 
-#: ../build/parsePreamble.c:685
+#: build/parsePreamble.c:662
 #, c-format
 msgid "Package already exists: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:712
+#: build/parsePreamble.c:689
 #, c-format
 msgid "line %d: Unknown tag: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:737
+#: build/parsePreamble.c:714
 msgid "Spec file can't use BuildRoot"
 msgstr ""
 
-#: ../build/parsePrep.c:27
+#: build/parsePrep.c:25
 #, fuzzy, c-format
 msgid "Bad source: %s: %s"
 msgstr "En voi lukea %s: %s."
 
-#: ../build/parsePrep.c:53
+#: build/parsePrep.c:51
 #, fuzzy, c-format
 msgid "No patch number %d"
 msgstr "(ei ole luku)"
 
-#: ../build/parsePrep.c:119
+#: build/parsePrep.c:117
 #, c-format
 msgid "No source number %d"
 msgstr ""
 
-#: ../build/parsePrep.c:138
+#: build/parsePrep.c:136
 #, fuzzy, c-format
 msgid "Couldn't download nosource %s: %s"
 msgstr "En voi lukea %s: %s."
 
-#: ../build/parsePrep.c:193
+#: build/parsePrep.c:191
 msgid "Error parsing %%setup: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:208
+#: build/parsePrep.c:206
 msgid "line %d: Bad arg to %%setup %c: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:229
+#: build/parsePrep.c:227
 msgid "line %d: Bad %%setup option %s: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:353
+#: build/parsePrep.c:351
 msgid "line %d: Need arg to %%patch -b: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:361
+#: build/parsePrep.c:359
 msgid "line %d: Need arg to %%patch -z: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:373
+#: build/parsePrep.c:371
 msgid "line %d: Need arg to %%patch -p: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:379
+#: build/parsePrep.c:377
 msgid "line %d: Bad arg to %%patch -p: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:386
+#: build/parsePrep.c:384
 msgid "Too many patches!"
 msgstr ""
 
-#: ../build/parsePrep.c:390
+#: build/parsePrep.c:388
 msgid "line %d: Bad arg to %%patch: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:426
+#: build/parsePrep.c:424
 msgid "line %d: second %%prep"
 msgstr ""
 
-#: ../build/parseReqs.c:45
-#, c-format
-msgid "line %d: No file names in Conflicts: %s"
-msgstr ""
-
-#: ../build/parseReqs.c:79
-#, c-format
-msgid "line %d: No versions on file names in %s: %s"
-msgstr ""
+#: build/parseReqs.c:91
+#, fuzzy, c-format
+msgid ""
+"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
+msgstr "siirtojen pitää alkaa /-merkillä"
 
-#: ../build/parseReqs.c:85
-#, c-format
-msgid "line %d: No versions in PreReq: %s"
-msgstr ""
+#: build/parseReqs.c:102
+#, fuzzy, c-format
+msgid "line %d: File name not permitted: %s"
+msgstr "paketti %s ei ole %s:ssä"
 
-#: ../build/parseReqs.c:97
-#, c-format
-msgid "line %d: Version required in %s: %s"
-msgstr ""
+#: build/parseReqs.c:134
+#, fuzzy, c-format
+msgid "line %d: Versioned file name not permitted: %s"
+msgstr "paketti %s ei ole %s:ssä"
 
-#: ../build/parseReqs.c:126
+#: build/parseReqs.c:146
 #, fuzzy, c-format
-msgid "line %d: No file names in Obsoletes: %s"
+msgid "line %d: Version not permitted: %s"
 msgstr "paketti %s ei ole %s:ssä"
 
-#: ../build/parseReqs.c:133
-#, c-format
-msgid "line %d: %s: tokens must begin with alpha-numeric: %s"
-msgstr ""
+#: build/parseReqs.c:172
+#, fuzzy, c-format
+msgid "line %d: Version required: %s"
+msgstr "en voinut avata %s: %s"
 
-#: ../build/parseScript.c:138
+#: build/parseScript.c:136
 #, c-format
 msgid "line %d: triggers must have --: %s"
 msgstr ""
 
-#: ../build/parseScript.c:148 ../build/parseScript.c:212
+#: build/parseScript.c:146 build/parseScript.c:210
 #, c-format
 msgid "line %d: Error parsing %s: %s"
 msgstr ""
 
-#: ../build/parseScript.c:158
+#: build/parseScript.c:156
 #, c-format
 msgid "line %d: script program must begin with '/': %s"
 msgstr ""
 
-#: ../build/parseScript.c:203
+#: build/parseScript.c:201
 #, c-format
 msgid "line %d: Second %s"
 msgstr ""
 
-#: ../build/parseSpec.c:120
+#: build/parseSpec.c:126
+#, fuzzy, c-format
+msgid "line %d: %s"
+msgstr "en voinut avata %s: %s"
+
+#: build/parseSpec.c:172
 #, fuzzy, c-format
 msgid "Unable to open: %s\n"
 msgstr "%s:n avaus epäonnistui\n"
 
-#: ../build/parseSpec.c:132
+#: build/parseSpec.c:184
 msgid "Unclosed %%if"
 msgstr ""
 
-#: ../build/parseSpec.c:188
-#, fuzzy, c-format
-msgid "line %d: %s"
-msgstr "en voinut avata %s: %s"
+#: build/parseSpec.c:243
+#, c-format
+msgid "%s:%d: parseExpressionBoolean returns %d"
+msgstr ""
 
 #. Got an else with no %if !
-#: ../build/parseSpec.c:213
+#: build/parseSpec.c:251
 msgid "%s:%d: Got a %%else with no if"
 msgstr ""
 
 #. Got an end with no %if !
-#: ../build/parseSpec.c:223
+#: build/parseSpec.c:262
 msgid "%s:%d: Got a %%endif with no if"
 msgstr ""
 
-#: ../build/parseSpec.c:235 ../build/parseSpec.c:244
+#: build/parseSpec.c:276 build/parseSpec.c:285
 msgid "malformed %%include statement"
 msgstr ""
 
-#: ../build/parseSpec.c:323
+#: build/parseSpec.c:366
 #, c-format
 msgid "Timecheck value must be an integer: %s"
 msgstr ""
 
-#: ../build/parseSpec.c:406
+#: build/parseSpec.c:449
 #, fuzzy
 msgid "No buildable architectures"
 msgstr "älä tarkista paketin arkkitehtuuria"
 
-#: ../build/parseSpec.c:451
+#: build/parseSpec.c:494
 #, fuzzy
 msgid "Package has no %%description: %s"
 msgstr "paketti %s ei ole %s:ssä"
 
-#: ../build/spec.c:28
+#: build/spec.c:31
 #, c-format
 msgid "archive = %s, fs = %s\n"
 msgstr ""
 
-#: ../build/spec.c:224
+#: build/spec.c:237
 #, fuzzy, c-format
 msgid "line %d: Bad number: %s"
 msgstr "virheellinen paketin numero: %s\n"
 
-#: ../build/spec.c:230
+#: build/spec.c:243
 #, c-format
 msgid "line %d: Bad no%s number: %d"
 msgstr ""
 
-#: ../build/spec.c:286
+#: build/spec.c:301
 #, fuzzy, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr "virheellinen paketin numero: %s\n"
 
-#: ../lib/cpio.c:362
+#: lib/cpio.c:385
 #, fuzzy, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr "En voi lukea %s: %s."
 
-#: ../lib/cpio.c:368
+#: lib/cpio.c:391
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: ../lib/cpio.c:547
+#: lib/cpio.c:582
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: ../lib/cpio.c:1000
+#: lib/cpio.c:1044
 #, fuzzy, c-format
 msgid "(error 0x%x)"
 msgstr "virhe: "
 
-#: ../lib/cpio.c:1003
+#: lib/cpio.c:1047
 msgid "Bad magic"
 msgstr ""
 
-#: ../lib/cpio.c:1004
+#: lib/cpio.c:1048
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: ../lib/cpio.c:1022
-#, fuzzy
-msgid "Internal error"
-msgstr "vakava virhe: "
-
-#: ../lib/cpio.c:1023
+#: lib/cpio.c:1066
 msgid "Header size too big"
 msgstr ""
 
-#: ../lib/cpio.c:1024
+#: lib/cpio.c:1067
 #, fuzzy
 msgid "Unknown file type"
 msgstr "(tuntematon tyyppi)"
 
-#: ../lib/cpio.c:1033
+#: lib/cpio.c:1068
+msgid "Missing hard link"
+msgstr ""
+
+#: lib/cpio.c:1069
+#, fuzzy
+msgid "Internal error"
+msgstr "vakava virhe: "
+
+#: lib/cpio.c:1078
 #, fuzzy
 msgid " failed - "
 msgstr "pgp epäonnistui"
 
-#: ../lib/dbindex.c:32
+#: lib/dbindex.c:32
 #, fuzzy, c-format
 msgid "cannot open file %s: %s"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: ../lib/dbindex.c:77
+#: lib/dbindex.c:84
 #, c-format
 msgid "error getting record %s from %s"
 msgstr "virhe luettaessa tietuetta %s %s:stä"
 
-#: ../lib/dbindex.c:105
+#: lib/dbindex.c:111
 #, c-format
 msgid "error storing record %s into %s"
 msgstr "virhe talletettaessa tietuetta %s %s:ään"
 
-#: ../lib/dbindex.c:112
+#: lib/dbindex.c:118
 #, c-format
 msgid "error removing record %s into %s"
 msgstr "virhe poistettaessa tietuetta %s %s:stä"
 
-#: ../lib/depends.c:429 ../lib/depends.c:588
+#. XXX legacy epoch-less requires/conflicts compatibility
+#: lib/depends.c:339
 #, c-format
-msgid "cannot read header at %d for dependency check"
-msgstr "en voi lukea headeria %d:ssä riippuvuutta tarkistaessa"
+msgid ""
+"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
+"\tA %s\tB %s\n"
+msgstr ""
+
+#: lib/depends.c:368
+#, c-format
+msgid "  %s    A %s\tB %s\n"
+msgstr ""
+
+#: lib/depends.c:460
+msgid "dbrecMatchesDepFlags() failed to read header"
+msgstr ""
+
+#: lib/depends.c:695
+#, fuzzy, c-format
+msgid "%s: %s satisfied by added package.\n"
+msgstr "tiedostoa %s ei omista mikään paketti\n"
+
+#: lib/depends.c:712
+#, c-format
+msgid "%s: %s satisfied by added provide.\n"
+msgstr ""
+
+#: lib/depends.c:717
+#, c-format
+msgid "%s: %s satisfied by added file list.\n"
+msgstr ""
+
+#: lib/depends.c:747
+#, c-format
+msgid "%s: %s satisfied by rpmrc provides.\n"
+msgstr ""
+
+#: lib/depends.c:775
+#, c-format
+msgid "%s: %s satisfied by db file lists.\n"
+msgstr ""
+
+#: lib/depends.c:797
+#, c-format
+msgid "%s: %s satisfied by db provides.\n"
+msgstr ""
+
+#: lib/depends.c:819
+#, fuzzy, c-format
+msgid "%s: %s satisfied by db packages.\n"
+msgstr "tiedostoa %s ei omista mikään paketti\n"
 
-#: ../lib/depends.c:494
+#: lib/depends.c:832
 #, c-format
-msgid "dependencies: looking for %s\n"
+msgid "%s: %s satisfied by rpmlib version.\n"
 msgstr ""
 
-#: ../lib/depends.c:682
+#: lib/depends.c:842
+#, c-format
+msgid "%s: %s unsatisfied.\n"
+msgstr ""
+
+#. requirements are not satisfied.
+#: lib/depends.c:890
 #, fuzzy, c-format
 msgid "package %s require not satisfied: %s\n"
 msgstr "paketti %s ei ole %s:ssä"
 
-#: ../lib/depends.c:725
+#. conflicts exist.
+#: lib/depends.c:952
 #, fuzzy, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "paketti %s ei ole %s:ssä"
 
-#: ../lib/depends.c:825
-msgid "dbrecMatchesDepFlags() failed to read header"
-msgstr ""
+#: lib/depends.c:1007 lib/depends.c:1311
+#, c-format
+msgid "cannot read header at %d for dependency check"
+msgstr "en voi lukea headeria %d:ssä riippuvuutta tarkistaessa"
 
-#: ../lib/depends.c:877
+#: lib/depends.c:1102
 #, c-format
 msgid "loop in prerequisite chain: %s"
 msgstr "silmukka edellytysten ketjussa: %s"
 
-#: ../lib/falloc.c:149
+#: lib/falloc.c:160
 #, c-format
-msgid "free list corrupt (%u)- contact rpm-list@redhat.com\n"
+msgid ""
+"free list corrupt (%u)- please run\n"
+"\t\"rpm --rebuilddb\"\n"
+"More information is available from http://www.rpm.org or the "
+"rpm-list@redhat.com mailing list\n"
+"if \"rpm --rebuilddb\" fails to correct the problem.\n"
 msgstr ""
 
-#: ../lib/formats.c:97 ../lib/formats.c:114 ../lib/formats.c:134
-#: ../lib/formats.c:166 ../lib/header.c:1973 ../lib/header.c:1989
-#: ../lib/header.c:2009
+#: lib/formats.c:66 lib/formats.c:84 lib/formats.c:105 lib/formats.c:138
+#: lib/header.c:2122 lib/header.c:2139 lib/header.c:2159
 msgid "(not a number)"
 msgstr "(ei ole luku)"
 
-#: ../lib/fs.c:41
+#: lib/fs.c:40
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr ""
 
-#: ../lib/fs.c:76 ../lib/fs.c:246
+#: lib/fs.c:75 lib/fs.c:253
 #, fuzzy, c-format
 msgid "failed to stat %s: %s"
 msgstr "en voinut avata %s: %s"
 
-#: ../lib/fs.c:117
+#: lib/fs.c:114
+msgid "getting list of mounted filesystems\n"
+msgstr ""
+
+#: lib/fs.c:119
 #, c-format
 msgid "failed to open %s: %s"
 msgstr "en voinut avata %s: %s"
 
-#: ../lib/fs.c:267
+#: lib/fs.c:274
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr ""
 
-#: ../lib/header.c:669
-#, c-format
-msgid "Data type %d not supprted\n"
+#: lib/ftp.c:666
+msgid "Success"
+msgstr ""
+
+#: lib/ftp.c:669
+#, fuzzy
+msgid "Bad server response"
+msgstr "Virheellinen FTP-palvelijan vastaus"
+
+#: lib/ftp.c:672
+#, fuzzy
+msgid "Server IO error"
+msgstr "FTP:n IO-virhe"
+
+#: lib/ftp.c:675
+#, fuzzy
+msgid "Server timeout"
+msgstr "FTP-palvelimen timeout"
+
+#: lib/ftp.c:678
+#, fuzzy
+msgid "Unable to lookup server host address"
+msgstr "FTP-palvelimen osoitetta ei löytynyt"
+
+#: lib/ftp.c:681
+#, fuzzy
+msgid "Unable to lookup server host name"
+msgstr "FTP-palvelimen nimeä ei löytynyt"
+
+#: lib/ftp.c:684
+#, fuzzy
+msgid "Failed to connect to server"
+msgstr "En saanut yhteyttä FTP-palvelijaan"
+
+#: lib/ftp.c:687
+#, fuzzy
+msgid "Failed to establish data connection to server"
+msgstr "En saanut data-yhteyttä FTP-palvelijaan"
+
+#: lib/ftp.c:690
+msgid "IO error to local file"
+msgstr "Paikallisen tiedoston IO-virhe"
+
+#: lib/ftp.c:693
+msgid "Error setting remote server to passive mode"
+msgstr "Virhe asetettaessa palvelinta passiiviin moodiin"
+
+#: lib/ftp.c:696
+msgid "File not found on server"
+msgstr "Tiedostoa ei löytynyt palvelimelta"
+
+#: lib/ftp.c:699
+msgid "Abort in progress"
 msgstr ""
 
+#: lib/ftp.c:703
+#, fuzzy
+msgid "Unknown or unexpected error"
+msgstr "FTP:n tuntematon tai odottamaton virhe"
+
 #. This should not be allowed
-#: ../lib/header.c:905
+#: lib/header.c:169
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: ../lib/header.c:935
+#: lib/header.c:200
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: ../lib/header.c:994
+#: lib/header.c:763
 #, c-format
-msgid "Bad count for headerAddEntry(): %d\n"
+msgid "Data type %d not supprted\n"
 msgstr ""
 
-#: ../lib/header.c:1328
-msgid "? expected in expression"
-msgstr "odotin '?'-merkkiä ilmauksessa"
-
-#: ../lib/header.c:1335
-#, fuzzy
-msgid "{ expected after ? in expression"
-msgstr "odotin '{' '?'-merkin jälkeen ilmauksessa "
-
-#: ../lib/header.c:1345 ../lib/header.c:1377
-msgid "} expected in expression"
-msgstr "odotin '}'-merkkiä ilmauksessa"
-
-#: ../lib/header.c:1352
-msgid ": expected following ? subexpression"
-msgstr "odotin ':' '?'-merkin jälkeen ali-ilmauksessa "
-
-#: ../lib/header.c:1365
-#, fuzzy
-msgid "{ expected after : in expression"
-msgstr "odotin '{' ':'-merkin jälkeen ilmauksessa "
-
-#: ../lib/header.c:1384
-msgid "| expected at end of expression"
-msgstr "odotin '}'-merkkiä ilmauksen lopussa"
+#: lib/header.c:1119
+#, c-format
+msgid "Bad count for headerAddEntry(): %d\n"
+msgstr ""
 
-#: ../lib/header.c:1478
+#: lib/header.c:1520
 #, c-format
 msgid "missing { after %"
 msgstr "puuttuva '{' '%':n jälkeen"
 
-#: ../lib/header.c:1506
+#: lib/header.c:1548
 msgid "missing } after %{"
 msgstr "puuttuva '{' '%{':n jälkeen"
 
-#: ../lib/header.c:1518
+#: lib/header.c:1560
 msgid "empty tag format"
 msgstr "tyhjä nimiön formaatti"
 
-#: ../lib/header.c:1528
+#: lib/header.c:1570
 msgid "empty tag name"
 msgstr "tyhjä nimiön nimi"
 
-#: ../lib/header.c:1543
+#: lib/header.c:1585
 msgid "unknown tag"
 msgstr "tuntematon nimiö"
 
-#: ../lib/header.c:1569
+#: lib/header.c:1611
 msgid "] expected at end of array"
 msgstr "']' puuttuu taulukkomäärittelyn lopusta"
 
-#: ../lib/header.c:1585
+#: lib/header.c:1627
 msgid "unexpected ]"
 msgstr "odottamaton ']'"
 
-#: ../lib/header.c:1587
+#: lib/header.c:1629
 msgid "unexpected }"
 msgstr "odottamaton '}'"
 
-#: ../lib/header.c:1762
+#: lib/header.c:1682
+msgid "? expected in expression"
+msgstr "odotin '?'-merkkiä ilmauksessa"
+
+#: lib/header.c:1689
+#, fuzzy
+msgid "{ expected after ? in expression"
+msgstr "odotin '{' '?'-merkin jälkeen ilmauksessa "
+
+#: lib/header.c:1699 lib/header.c:1731
+msgid "} expected in expression"
+msgstr "odotin '}'-merkkiä ilmauksessa"
+
+#: lib/header.c:1706
+msgid ": expected following ? subexpression"
+msgstr "odotin ':' '?'-merkin jälkeen ali-ilmauksessa "
+
+#: lib/header.c:1719
+#, fuzzy
+msgid "{ expected after : in expression"
+msgstr "odotin '{' ':'-merkin jälkeen ilmauksessa "
+
+#: lib/header.c:1738
+msgid "| expected at end of expression"
+msgstr "odotin '}'-merkkiä ilmauksen lopussa"
+
+#: lib/header.c:1905
 msgid "(unknown type)"
 msgstr "(tuntematon tyyppi)"
 
-#: ../lib/install.c:93
-msgid "source package expected, binary found"
-msgstr ""
-
-#: ../lib/install.c:169 ../lib/uninstall.c:111
+#: lib/install.c:141 lib/uninstall.c:179
 #, fuzzy, c-format
 msgid "   file: %s action: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: ../lib/install.c:186
+#: lib/install.c:159
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: ../lib/install.c:194
+#: lib/install.c:167
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: ../lib/install.c:221
+#: lib/install.c:195
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
-#: ../lib/install.c:289
-#, fuzzy, c-format
-msgid "package: %s-%s-%s files test = %d\n"
-msgstr "paketti %s-%s-%s  sisältää jaettuja tiedostoja\n"
-
-#: ../lib/install.c:352
-msgid "stopping install as we're running --test\n"
-msgstr ""
-
-#: ../lib/install.c:357
-msgid "running preinstall script (if any)\n"
-msgstr ""
-
-#: ../lib/install.c:387
+#. this would probably be a good place to check if disk space
+#. was used up - if so, we should return a different error
+#: lib/install.c:358
 #, c-format
-msgid "warning: %s created as %s"
+msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: ../lib/install.c:423
-#, c-format
-msgid "warning: %s saved as %s"
+#: lib/install.c:359
+msgid " on file "
 msgstr ""
 
-#: ../lib/install.c:427 ../lib/install.c:790 ../lib/uninstall.c:337
-#, c-format
-msgid "rename of %s to %s failed: %s"
-msgstr "%s:n nimeäminen %s:ksi epäonnistui: %s"
-
-#: ../lib/install.c:507
-msgid "running postinstall script (if any)\n"
-msgstr ""
-
-#. this would probably be a good place to check if disk space
-#. was used up - if so, we should return a different error
-#: ../lib/install.c:613
-#, c-format
-msgid "unpacking of archive failed%s%s: %s"
-msgstr ""
-
-#: ../lib/install.c:614
-msgid " on file "
-msgstr ""
-
-#: ../lib/install.c:654
+#: lib/install.c:402
 #, fuzzy
 msgid "installing a source package\n"
 msgstr "asenna paketti"
 
-#: ../lib/install.c:665 ../lib/install.c:687
+#: lib/install.c:413
 #, fuzzy, c-format
-msgid "cannot create %s"
+msgid "cannot create %s: %s"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: ../lib/install.c:672 ../lib/install.c:694
+#: lib/install.c:421 lib/install.c:443
 #, fuzzy, c-format
 msgid "cannot write to %s"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: ../lib/install.c:676
+#: lib/install.c:425
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: ../lib/install.c:698
+#: lib/install.c:436
+#, fuzzy, c-format
+msgid "cannot create %s"
+msgstr "en voinut avata tiedostoa %s: "
+
+#: lib/install.c:447
 #, fuzzy, c-format
 msgid "spec file in: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: ../lib/install.c:731 ../lib/install.c:767
+#: lib/install.c:481 lib/install.c:509
 #, fuzzy
 msgid "source package contains no .spec file"
 msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
 
-#: ../lib/install.c:788
+#: lib/install.c:530
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: ../lib/lookup.c:83
+#: lib/install.c:532 lib/install.c:810 lib/uninstall.c:26
+#, c-format
+msgid "rename of %s to %s failed: %s"
+msgstr "%s:n nimeäminen %s:ksi epäonnistui: %s"
+
+#: lib/install.c:622
+msgid "source package expected, binary found"
+msgstr ""
+
+#: lib/install.c:679
+#, fuzzy, c-format
+msgid "package: %s-%s-%s files test = %d\n"
+msgstr "paketti %s-%s-%s  sisältää jaettuja tiedostoja\n"
+
+#: lib/install.c:740
+msgid "stopping install as we're running --test\n"
+msgstr ""
+
+#: lib/install.c:745
+msgid "running preinstall script (if any)\n"
+msgstr ""
+
+#: lib/install.c:770
+#, c-format
+msgid "warning: %s created as %s"
+msgstr ""
+
+#: lib/install.c:806
+#, c-format
+msgid "warning: %s saved as %s"
+msgstr ""
+
+#: lib/install.c:880
+msgid "running postinstall scripts (if any)\n"
+msgstr ""
+
+#: lib/lookup.c:35
 #, c-format
 msgid "cannot read header at %d for lookup"
 msgstr ""
 
-#: ../lib/macro.c:129
+#: lib/macro.c:149
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr ""
 
 #. XXX just in case
-#: ../lib/macro.c:218
+#: lib/macro.c:243
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: ../lib/macro.c:253
+#: lib/macro.c:278
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: ../lib/macro.c:426
+#: lib/macro.c:457
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: ../lib/macro.c:452
+#: lib/macro.c:483
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: ../lib/macro.c:458
+#: lib/macro.c:489
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: ../lib/macro.c:463
+#: lib/macro.c:494
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: ../lib/macro.c:468
+#: lib/macro.c:499
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: ../lib/macro.c:493
+#: lib/macro.c:524
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: ../lib/macro.c:566
+#: lib/macro.c:601
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: ../lib/macro.c:650
+#: lib/macro.c:698
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr ""
 
-#: ../lib/macro.c:825
+#: lib/macro.c:870
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: ../lib/macro.c:881 ../lib/macro.c:897
+#: lib/macro.c:936 lib/macro.c:952
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: ../lib/macro.c:930
+#: lib/macro.c:992
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: ../lib/macro.c:1053
+#: lib/macro.c:1115
 #, fuzzy
 msgid "Macro %%%.*s not found, skipping"
 msgstr "paketti %s ei ole %s:ssä"
 
-#: ../lib/macro.c:1131
+#: lib/macro.c:1196
 msgid "Target buffer overflow"
 msgstr ""
 
-#: ../lib/macro.c:1274 ../lib/macro.c:1282
+#: lib/macro.c:1343 lib/macro.c:1351
 #, fuzzy, c-format
 msgid "File %s: %s"
 msgstr "en voinut avata %s: %s"
 
-#: ../lib/macro.c:1285
+#: lib/macro.c:1354
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
 
-#: ../lib/messages.c:51
+#: lib/messages.c:55
 msgid "warning: "
 msgstr "varoitus: "
 
-#: ../lib/messages.c:57
+#: lib/messages.c:64
 msgid "error: "
 msgstr "virhe: "
 
-#: ../lib/messages.c:63
+#: lib/messages.c:73
 msgid "fatal error: "
 msgstr "vakava virhe: "
 
-#: ../lib/messages.c:70
+#: lib/messages.c:82
 msgid "internal error (rpm bug?): "
 msgstr ""
 
-#: ../lib/misc.c:342 ../lib/misc.c:348 ../lib/misc.c:355
+#: lib/misc.c:367 lib/misc.c:373 lib/misc.c:380
 #, fuzzy, c-format
 msgid "error creating temporary file %s"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: ../lib/oldheader.c:292
+#: lib/oldheader.c:299
 #, fuzzy, c-format
 msgid "bad file state: %s"
 msgstr "en voinut avata %s: %s"
 
-#: ../lib/package.c:51
+#: lib/package.c:234
 msgid "package is a version one package!\n"
 msgstr ""
 
-#: ../lib/package.c:54
+#: lib/package.c:239
 msgid "old style source package -- I'll do my best\n"
 msgstr ""
 
-#: ../lib/package.c:57
+#: lib/package.c:242
 #, c-format
 msgid "archive offset is %d\n"
 msgstr ""
 
-#: ../lib/package.c:67
+#: lib/package.c:252
 msgid "old style binary package\n"
 msgstr ""
 
-#: ../lib/package.c:105
+#: lib/package.c:298
 msgid ""
 "only packages with major numbers <= 3 are supported by this version of RPM"
 msgstr ""
 "tämä versio RPM:stä tukee vain suuremmman kuin 3 versionumeron paketteja"
 
-#: ../lib/problems.c:29
+#: lib/problems.c:43
+#, c-format
+msgid " is needed by %s-%s-%s\n"
+msgstr "vaatii %s-%s-%s\n"
+
+#: lib/problems.c:46
+#, c-format
+msgid " conflicts with %s-%s-%s\n"
+msgstr " on ristiriidassa %s-%s-%s:n kanssa\n"
+
+#: lib/problems.c:66
 #, fuzzy, c-format
-msgid "package %s-%s-%s is for a different operating system"
+msgid "package %s-%s-%s is for a different architecture"
 msgstr "paketti %s-%s-%s  sisältää jaettuja tiedostoja\n"
 
-#: ../lib/problems.c:34
+#: lib/problems.c:71
 #, fuzzy, c-format
-msgid "package %s-%s-%s is for a different architecture"
+msgid "package %s-%s-%s is for a different operating system"
 msgstr "paketti %s-%s-%s  sisältää jaettuja tiedostoja\n"
 
-#: ../lib/problems.c:39
+#: lib/problems.c:76
 #, fuzzy, c-format
 msgid "package %s-%s-%s is already installed"
 msgstr "paketti %s ei ole asennettu\n"
 
-#: ../lib/problems.c:44
+#: lib/problems.c:81
 #, fuzzy, c-format
 msgid "path %s is not relocateable for package %s-%s-%s"
 msgstr "paketti %s ei ole asennettu\n"
 
-#: ../lib/problems.c:49
+#: lib/problems.c:86
 #, c-format
 msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
 msgstr ""
 
-#: ../lib/problems.c:55
+#: lib/problems.c:92
 #, fuzzy, c-format
 msgid ""
 "file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
 msgstr " on ristiriidassa %s-%s-%s:n kanssa\n"
 
-#: ../lib/problems.c:61
+#: lib/problems.c:98
 #, fuzzy, c-format
 msgid "package %s-%s-%s (which is newer then %s-%s-%s) is already installed"
 msgstr "paketti %s-%s-%s  sisältää jaettuja tiedostoja\n"
 
-#: ../lib/problems.c:67
+#: lib/problems.c:104
 #, c-format
-msgid "installing package %s-%s-%s needs %ld%c on the %s filesystem"
+msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: ../lib/problems.c:77
+#: lib/problems.c:116
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
 
-#: ../lib/query.c:57
-#, fuzzy
-msgid "query package owning file"
-msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
-
-#: ../lib/query.c:59
-#, fuzzy
-msgid "query packages in group"
-msgstr "paketilla ei ole nimeä"
-
-#: ../lib/query.c:61
-#, fuzzy
-msgid "query a package file"
-msgstr "kysele kaikki paketit"
-
-#: ../lib/query.c:65
-#, fuzzy
-msgid "query a spec file"
-msgstr "%s:n kysely ei onnistunut\n"
-
-#: ../lib/query.c:67
-#, fuzzy
-msgid "query the pacakges triggered by the package"
-msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
-
-#: ../lib/query.c:69
-#, fuzzy
-msgid "query the packages which require a capability"
-msgstr "kysele paketteja, jotka vaativat <i> ominaisuutta"
-
-#: ../lib/query.c:71
-#, fuzzy
-msgid "query the packages which provide a capability"
-msgstr "kysele paketteja, jotka tarjoavat <i> ominaisuuden"
-
-#: ../lib/query.c:108
-#, fuzzy
-msgid "list all configuration files"
-msgstr "listaa vain konfigurointiedostot (josta seuraa -l)"
-
-#: ../lib/query.c:110
-#, fuzzy
-msgid "list all documentation files"
-msgstr "asenna dokumentaatio"
-
-#: ../lib/query.c:112
-#, fuzzy
-msgid "dump basic file information"
-msgstr "näytä paketin tiedot"
-
-#: ../lib/query.c:114
-#, fuzzy
-msgid "list files in package"
-msgstr "asenna paketti"
-
-#: ../lib/query.c:118
-msgid "use the following query format"
-msgstr ""
-
-#: ../lib/query.c:120
-msgid "substitute i18n sections from the following catalogue"
-msgstr ""
-
-#: ../lib/query.c:123
-msgid "display the states of the listed files"
-msgstr ""
-
-#: ../lib/query.c:125
-#, fuzzy
-msgid "display a verbose file listing"
-msgstr "näytä paketin tiedostolistaus"
-
-#: ../lib/query.c:136
+#: lib/query.c:138
 #, c-format
 msgid "error in format: %s\n"
 msgstr "virhe formaatissa: %s\n"
 
-#: ../lib/query.c:177
+#: lib/query.c:180
 msgid "(contains no files)"
 msgstr "(ei tiedostoja)"
 
-#: ../lib/query.c:230
+#: lib/query.c:233
 msgid "normal        "
 msgstr ""
 
-#: ../lib/query.c:232
+#: lib/query.c:235
 msgid "replaced      "
 msgstr ""
 
-#: ../lib/query.c:234
-msgid "net shared    "
-msgstr ""
-
-#: ../lib/query.c:236
+#: lib/query.c:237
 #, fuzzy
 msgid "not installed "
 msgstr "paketti %s ei ole asennettu\n"
 
-#: ../lib/query.c:238
+#: lib/query.c:239
+msgid "net shared    "
+msgstr ""
+
+#: lib/query.c:241
 #, fuzzy, c-format
 msgid "(unknown %3d) "
 msgstr "(tuntematon tyyppi)"
 
-#: ../lib/query.c:242
+#: lib/query.c:245
 msgid "(no state)    "
 msgstr ""
 
-#: ../lib/query.c:258 ../lib/query.c:288
+#: lib/query.c:261 lib/query.c:291
 msgid "package has neither file owner or id lists"
 msgstr ""
 
-#: ../lib/query.c:514
+#: lib/query.c:400
 #, c-format
 msgid "record number %u\n"
 msgstr ""
 
-#: ../lib/query.c:518
+#: lib/query.c:404
 msgid "error: could not read database record\n"
 msgstr "virhe: tietokannan tietuetta ei voinut lukea\n"
 
-#: ../lib/query.c:547
+#: lib/query.c:442
 #, fuzzy, c-format
-msgid "open of %s failed\n"
+msgid "open of %s failed: %s\n"
 msgstr "%s:n avaus ei onnistunut: %s\n"
 
-#: ../lib/query.c:560
+#: lib/query.c:455
 msgid "old format source packages cannot be queried\n"
 msgstr "vanhan formaatin lähdekoodipaketteja ei voi kysellä\n"
 
-#: ../lib/query.c:572
+#: lib/query.c:464 lib/rpminstall.c:203
+#, c-format
+msgid "%s does not appear to be a RPM package\n"
+msgstr "%s ei vaikuta RPM-paketilta\n"
+
+#: lib/query.c:467
 #, c-format
 msgid "query of %s failed\n"
 msgstr "%s:n kysely ei onnistunut\n"
 
-#: ../lib/query.c:593
+#: lib/query.c:494
 #, fuzzy, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "%s:n kysely ei onnistunut\n"
 
-#: ../lib/query.c:627
+#: lib/query.c:519
 msgid "could not read database record!\n"
 msgstr "en voinut lukea tietokannan tietuetta!\n"
 
-#: ../lib/query.c:638
+#: lib/query.c:530
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "ryhmässä %s ei ole paketteja\n"
 
-#: ../lib/query.c:648
+#: lib/query.c:540
 #, c-format
 msgid "no package provides %s\n"
 msgstr "mikään paketti ei tarjoa %s:a\n"
 
-#: ../lib/query.c:658
+#: lib/query.c:550
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "mikään paketti ei laukaise %s:a\n"
 
-#: ../lib/query.c:668
+#: lib/query.c:560
 #, c-format
 msgid "no package requires %s\n"
 msgstr "mikään pakettie ei tarvitse %s:a\n"
 
-#: ../lib/query.c:683
+#: lib/query.c:575
 #, fuzzy, c-format
 msgid "file %s: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: ../lib/query.c:686
+#: lib/query.c:578
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "tiedostoa %s ei omista mikään paketti\n"
 
-#: ../lib/query.c:699
+#: lib/query.c:591
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "virheellinen paketin numero: %s\n"
 
-#: ../lib/query.c:702
+#: lib/query.c:594
 #, fuzzy, c-format
 msgid "package record number: %d\n"
 msgstr "virheellinen paketin numero: %s\n"
 
-#: ../lib/query.c:705
+#: lib/query.c:597
 #, c-format
 msgid "record %d could not be read\n"
 msgstr "tietuetta %d ei voitu lukea\n"
 
-#: ../lib/query.c:720
+#: lib/query.c:609 lib/rpminstall.c:393
+#, c-format
+msgid "package %s is not installed\n"
+msgstr "paketti %s ei ole asennettu\n"
+
+#: lib/query.c:612
 #, c-format
 msgid "error looking for package %s\n"
 msgstr "virhe etsittäessä pakettia %s\n"
 
-#: ../lib/query.c:742
+#: lib/query.c:634
 #, fuzzy
 msgid "rpmQuery: rpmdbOpen() failed\n"
 msgstr "%s: avaus ei onnistunut\n"
 
-#: ../lib/rebuilddb.c:18
+#: lib/query.c:691
+#, fuzzy
+msgid "query package owning file"
+msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
+
+#: lib/query.c:693
+#, fuzzy
+msgid "query packages in group"
+msgstr "paketilla ei ole nimeä"
+
+#: lib/query.c:695
+#, fuzzy
+msgid "query a package file"
+msgstr "kysele kaikki paketit"
+
+#: lib/query.c:699
+#, fuzzy
+msgid "query a spec file"
+msgstr "%s:n kysely ei onnistunut\n"
+
+#: lib/query.c:701
+#, fuzzy
+msgid "query the pacakges triggered by the package"
+msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
+
+#: lib/query.c:703
+#, fuzzy
+msgid "query the packages which require a capability"
+msgstr "kysele paketteja, jotka vaativat <i> ominaisuutta"
+
+#: lib/query.c:705
+#, fuzzy
+msgid "query the packages which provide a capability"
+msgstr "kysele paketteja, jotka tarjoavat <i> ominaisuuden"
+
+#: lib/query.c:742
+#, fuzzy
+msgid "list all configuration files"
+msgstr "listaa vain konfigurointiedostot (josta seuraa -l)"
+
+#: lib/query.c:744
+#, fuzzy
+msgid "list all documentation files"
+msgstr "asenna dokumentaatio"
+
+#: lib/query.c:746
+#, fuzzy
+msgid "dump basic file information"
+msgstr "näytä paketin tiedot"
+
+#: lib/query.c:748
+#, fuzzy
+msgid "list files in package"
+msgstr "asenna paketti"
+
+#: lib/query.c:752
+msgid "use the following query format"
+msgstr ""
+
+#: lib/query.c:754
+msgid "substitute i18n sections from the following catalogue"
+msgstr ""
+
+#: lib/query.c:757
+msgid "display the states of the listed files"
+msgstr ""
+
+#: lib/query.c:759
+#, fuzzy
+msgid "display a verbose file listing"
+msgstr "näytä paketin tiedostolistaus"
+
+#: lib/rebuilddb.c:20
 #, fuzzy, c-format
 msgid "rebuilding database in rootdir %s\n"
 msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
 
-#: ../lib/rebuilddb.c:22 ../lib/rpmdb.c:64 ../lib/rpmdb.c:82 ../lib/rpmdb.c:98
+#: lib/rebuilddb.c:24 lib/rpmdb.c:69 lib/rpmdb.c:88 lib/rpmdb.c:105
 msgid "no dbpath has been set"
 msgstr "dbpath ei ole asetettu"
 
-#: ../lib/rebuilddb.c:30
+#: lib/rebuilddb.c:33
 #, c-format
 msgid "temporary database %s already exists"
 msgstr "väliaikainen tietokanta %s on jo olemassa"
 
-#: ../lib/rebuilddb.c:34
+#: lib/rebuilddb.c:37
 #, fuzzy, c-format
 msgid "creating directory: %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: ../lib/rebuilddb.c:36
+#: lib/rebuilddb.c:39
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: ../lib/rebuilddb.c:44
+#: lib/rebuilddb.c:43
 msgid "opening old database\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:51
+#: lib/rebuilddb.c:50
 msgid "opening new database\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:61 ../lib/rebuilddb.c:79
+#: lib/rebuilddb.c:60 lib/rebuilddb.c:78
 #, c-format
 msgid "record number %d in database is bad -- skipping it"
 msgstr "tietue numero %d tietokannassa viallinen -- ohitan sen"
 
-#: ../lib/rebuilddb.c:73
+#: lib/rebuilddb.c:72
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr "en voi lisätä tietuetta %d:stä"
 
-#: ../lib/rebuilddb.c:92
+#: lib/rebuilddb.c:91
 msgid "failed to rebuild database; original database remains in place\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:100
+#: lib/rebuilddb.c:99
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:102
+#: lib/rebuilddb.c:101
 #, c-format
 msgid "replaces files in %s with files from %s to recover"
 msgstr ""
 
-#: ../lib/rebuilddb.c:108
+#: lib/rebuilddb.c:107
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: ../lib/rpmdb.c:159
+#: lib/rpmchecksig.c:31
+#, fuzzy, c-format
+msgid "%s: fdOpen failed: %s\n"
+msgstr "%s: avaus ei onnistunut\n"
+
+#: lib/rpmchecksig.c:42
+#, fuzzy
+msgid "makeTempFile failed\n"
+msgstr "%s: avaus ei onnistunut\n"
+
+#: lib/rpmchecksig.c:74
+#, fuzzy, c-format
+msgid "%s: fdWrite failed: %s\n"
+msgstr "%s: avaus ei onnistunut\n"
+
+#: lib/rpmchecksig.c:80
+#, fuzzy, c-format
+msgid "%s: fdRead failed: %s\n"
+msgstr "%s: readLead  epäonnistui\n"
+
+#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:242
+#, c-format
+msgid "%s: readLead failed\n"
+msgstr "%s: readLead  epäonnistui\n"
+
+#: lib/rpmchecksig.c:118
+#, c-format
+msgid "%s: Can't sign v1.0 RPM\n"
+msgstr "%s: En voi allekirjoittaa v1.0 RPM:ää\n"
+
+#: lib/rpmchecksig.c:122
+#, c-format
+msgid "%s: Can't re-sign v2.0 RPM\n"
+msgstr "%s: En voi uudelleen allekirjoittaa v2.0 RPM:ää\n"
+
+#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:256
+#, c-format
+msgid "%s: rpmReadSignature failed\n"
+msgstr "%s: rpmReadSignature epäonnistui\n"
+
+#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:261
+#, c-format
+msgid "%s: No signature available\n"
+msgstr "%s: Ei allekirjoitusta saatavilla\n"
+
+#: lib/rpmchecksig.c:167
+#, fuzzy, c-format
+msgid "%s: writeLead failed: %s\n"
+msgstr "%s: readLead  epäonnistui\n"
+
+#: lib/rpmchecksig.c:173
+#, fuzzy, c-format
+msgid "%s: rpmWriteSignature failed\n"
+msgstr "%s: rpmReadSignature epäonnistui\n"
+
+#: lib/rpmchecksig.c:248
+#, c-format
+msgid "%s: No signature available (v1.0 RPM)\n"
+msgstr "%s: Ei allekirjoitusta saatavilla (v1.0 RPM)\n"
+
+#: lib/rpmchecksig.c:408
+msgid "NOT OK"
+msgstr ""
+
+#: lib/rpmchecksig.c:409 lib/rpmchecksig.c:423
+#, fuzzy
+msgid " (MISSING KEYS:"
+msgstr "(PUUTTUVAT AVAIMET)"
+
+#: lib/rpmchecksig.c:411 lib/rpmchecksig.c:425
+msgid ") "
+msgstr ""
+
+#: lib/rpmchecksig.c:412 lib/rpmchecksig.c:426
+msgid " (UNTRUSTED KEYS:"
+msgstr ""
+
+#: lib/rpmchecksig.c:414 lib/rpmchecksig.c:428
+msgid ")"
+msgstr ""
+
+#: lib/rpmchecksig.c:422
+msgid "OK"
+msgstr ""
+
+#: lib/rpmdb.c:184
 #, fuzzy, c-format
 msgid "opening database mode 0x%x in %s\n"
 msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
 
-#: ../lib/rpmdb.c:182 ../lib/rpmdb.c:189
+#: lib/rpmdb.c:193 lib/url.c:431
+#, c-format
+msgid "failed to open %s\n"
+msgstr "%s:n avaus epäonnistui\n"
+
+#: lib/rpmdb.c:206 lib/rpmdb.c:214
 #, c-format
 msgid "cannot get %s lock on database"
 msgstr "en voi saada %s lukitusta tietokantaan"
 
-#: ../lib/rpmdb.c:183
+#: lib/rpmdb.c:207
 msgid "exclusive"
 msgstr "poissulkevaa"
 
-#: ../lib/rpmdb.c:190
+#: lib/rpmdb.c:215
 msgid "shared"
 msgstr "jaettua"
 
-#: ../lib/rpmdb.c:213
+#: lib/rpmdb.c:246
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
-#: ../lib/rpmdb.c:372
+#: lib/rpmdb.c:439
 #, c-format
 msgid "package %s not listed in %s"
 msgstr "paketti %s ei ole %s:ssä"
 
-#: ../lib/rpmdb.c:383
+#: lib/rpmdb.c:450
 #, c-format
 msgid "package %s not found in %s"
 msgstr "paketti %s ei ole %s:ssä"
 
-#: ../lib/rpmdb.c:407 ../lib/uninstall.c:40
+#: lib/rpmdb.c:475 lib/uninstall.c:85
 #, c-format
 msgid "cannot read header at %d for uninstall"
 msgstr "en voi lukea headeria %d:stä poistamiseen"
 
-#: ../lib/rpmdb.c:415
+#: lib/rpmdb.c:483
 msgid "package has no name"
 msgstr "paketilla ei ole nimeä"
 
-#: ../lib/rpmdb.c:417
+#: lib/rpmdb.c:485
 msgid "removing name index\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:422
+#: lib/rpmdb.c:490
 #, fuzzy
 msgid "package has no group\n"
 msgstr "paketilla ei ole nimeä"
 
-#: ../lib/rpmdb.c:424
+#: lib/rpmdb.c:492
 msgid "removing group index\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:431
+#: lib/rpmdb.c:499
 #, fuzzy, c-format
 msgid "removing provides index for %s\n"
 msgstr "virhe poistettaessa tietuetta %s %s:stä"
 
-#: ../lib/rpmdb.c:446
+#: lib/rpmdb.c:514
 #, fuzzy, c-format
 msgid "removing requiredby index for %s\n"
 msgstr "virhe poistettaessa tietuetta %s %s:stä"
 
-#: ../lib/rpmdb.c:458
+#: lib/rpmdb.c:526
 #, fuzzy, c-format
 msgid "removing trigger index for %s\n"
 msgstr "virhe poistettaessa tietuetta %s %s:stä"
 
-#: ../lib/rpmdb.c:469
+#: lib/rpmdb.c:537
 #, c-format
 msgid "removing conflict index for %s\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:486
+#: lib/rpmdb.c:554
 #, c-format
 msgid "removing file index for %s\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:495
+#: lib/rpmdb.c:563
 #, fuzzy
 msgid "package has no files\n"
 msgstr "paketilla ei ole nimeä"
 
-#: ../lib/rpmdb.c:568
+#: lib/rpmdb.c:645
 msgid "cannot allocate space for database"
 msgstr "en voi varata tilaa tietokannalle"
 
-#: ../lib/rpmdb.c:639
+#: lib/rpmdb.c:711
 #, c-format
 msgid "cannot read header at %d for update"
 msgstr "en voi lukea headeria %d:stä päivittäessä"
 
-#: ../lib/rpmdb.c:648
+#: lib/rpmdb.c:720
 msgid "header changed size!"
 msgstr ""
 
-#: ../lib/rpmlead.c:41
+#: lib/rpminstall.c:128
+#, fuzzy
+msgid "counting packages to install\n"
+msgstr "asennukselle ei määritelty paketteja"
+
+#: lib/rpminstall.c:132
+#, fuzzy, c-format
+msgid "found %d packages\n"
+msgstr "kysele kaikki paketit"
+
+#: lib/rpminstall.c:141
+#, fuzzy
+msgid "looking for packages to download\n"
+msgstr "virhe etsittäessä pakettia %s\n"
+
+#: lib/rpminstall.c:152
+#, c-format
+msgid "Retrieving %s\n"
+msgstr "Haen: %s\n"
+
+#: lib/rpminstall.c:161
+#, c-format
+msgid " ... as %s\n"
+msgstr ""
+
+#: lib/rpminstall.c:165
+#, fuzzy, c-format
+msgid "skipping %s - transfer failed - %s\n"
+msgstr "virhe: ohitan %s:n, siirto epäonnistui - %s\n"
+
+#: lib/rpminstall.c:182
+#, c-format
+msgid "retrieved %d packages\n"
+msgstr ""
+
+#: lib/rpminstall.c:191 lib/rpminstall.c:332
+#, fuzzy, c-format
+msgid "cannot open file %s\n"
+msgstr "en voinut avata tiedostoa %s: "
+
+#: lib/rpminstall.c:207 lib/rpminstall.c:469
+#, fuzzy, c-format
+msgid "%s cannot be installed\n"
+msgstr "virhe: %s ei voida asentaa\n"
+
+#: lib/rpminstall.c:243
+#, fuzzy, c-format
+msgid "package %s is not relocateable\n"
+msgstr "paketti %s ei ole asennettu\n"
+
+#: lib/rpminstall.c:261
+#, fuzzy, c-format
+msgid "error reading from file %s\n"
+msgstr "virhe luotaessa hakemistoa %s: %s"
+
+#: lib/rpminstall.c:266
+#, c-format
+msgid "file %s requires a newer version of RPM\n"
+msgstr ""
+
+#: lib/rpminstall.c:283
+#, fuzzy, c-format
+msgid "found %d source and %d binary packages\n"
+msgstr "ryhmässä %s ei ole paketteja\n"
+
+#: lib/rpminstall.c:294
+msgid "failed dependencies:\n"
+msgstr "puuttuvat riippuvuudet:\n"
+
+#: lib/rpminstall.c:312
+#, fuzzy
+msgid "installing binary packages\n"
+msgstr "asenna paketti"
+
+#: lib/rpminstall.c:397
+#, fuzzy, c-format
+msgid "searching for package %s\n"
+msgstr "virhe etsittäessä pakettia %s\n"
+
+#: lib/rpminstall.c:406
+#, c-format
+msgid "\"%s\" specifies multiple packages\n"
+msgstr "\"%s\" määrittää useita paketteja\n"
+
+#: lib/rpminstall.c:432
+msgid "removing these packages would break dependencies:\n"
+msgstr "näiden pakettien poisto rikkoisi riippuvuuksia:\n"
+
+#: lib/rpminstall.c:459
+#, fuzzy, c-format
+msgid "cannot open %s\n"
+msgstr "virhe: en voi avata %s\n"
+
+#: lib/rpminstall.c:464
+#, c-format
+msgid "Installing %s\n"
+msgstr "Asennan: %s\n"
+
+#: lib/rpmlead.c:48
 #, c-format
 msgid "read failed: %s (%d)"
 msgstr "luku epäonnistui: %s (%d)"
 
-#: ../lib/rpmrc.c:178
+#: lib/rpmrc.c:177
 #, c-format
 msgid "missing second ':' at %s:%d"
 msgstr "toinen ':' puuttuu, %s:%d"
 
-#: ../lib/rpmrc.c:181
+#: lib/rpmrc.c:180
 #, c-format
 msgid "missing architecture name at %s:%d"
 msgstr "puuttuva arkkitehtuurin nimi, %s:%d"
 
-#: ../lib/rpmrc.c:329
+#: lib/rpmrc.c:328
 #, c-format
 msgid "Incomplete data line at %s:%d"
 msgstr "Epätäydellinen datarivi, %s:%d"
 
-#: ../lib/rpmrc.c:333
+#: lib/rpmrc.c:332
 #, c-format
 msgid "Too many args in data line at %s:%d"
 msgstr "liian monta parametriä datarivillä %s:%d"
 
-#: ../lib/rpmrc.c:340
+#: lib/rpmrc.c:339
 #, c-format
 msgid "Bad arch/os number: %s (%s:%d)"
 msgstr "Huono arkkitehtuuri/käyttöjärjestelmä numero: %s (%s:%d)"
 
-#: ../lib/rpmrc.c:374
+#: lib/rpmrc.c:373
 #, c-format
 msgid "Incomplete default line at %s:%d"
 msgstr "Epätäydellinen oletusrivi, %s:%d"
 
-#: ../lib/rpmrc.c:379
+#: lib/rpmrc.c:378
 #, c-format
 msgid "Too many args in default line at %s:%d"
 msgstr "liian monta parametriä oletusrivillä %s:%d"
 
-#: ../lib/rpmrc.c:562
+#: lib/rpmrc.c:561
 #, c-format
 msgid "Cannot expand %s"
 msgstr ""
 
-#: ../lib/rpmrc.c:577
+#: lib/rpmrc.c:576
 #, c-format
 msgid "Unable to open %s for reading: %s."
 msgstr "En voi avata %s luettavaksi: %s."
 
-#: ../lib/rpmrc.c:611
+#: lib/rpmrc.c:608
 #, c-format
 msgid "Failed to read %s: %s."
 msgstr "En voi lukea %s: %s."
 
-#: ../lib/rpmrc.c:642
+#: lib/rpmrc.c:638
 #, c-format
 msgid "missing ':' at %s:%d"
 msgstr "puuttuva ':', %s:%d"
 
-#: ../lib/rpmrc.c:658 ../lib/rpmrc.c:716
+#: lib/rpmrc.c:655 lib/rpmrc.c:729
 #, c-format
 msgid "missing argument for %s at %s:%d"
 msgstr "%s:n puuttuva parametri %s:%d"
 
-#: ../lib/rpmrc.c:672 ../lib/rpmrc.c:690
+#: lib/rpmrc.c:672 lib/rpmrc.c:694
 #, fuzzy, c-format
 msgid "%s expansion failed at %s:%d \"%s\""
 msgstr "en voinut avata %s: %s"
 
-#: ../lib/rpmrc.c:678
+#: lib/rpmrc.c:680
 #, fuzzy, c-format
 msgid "cannot open %s at %s:%d"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: ../lib/rpmrc.c:706
+#: lib/rpmrc.c:721
 #, c-format
 msgid "missing architecture for %s at %s:%d"
 msgstr "%s:n puuttuva arkkitehtuuri %s:%d"
 
-#: ../lib/rpmrc.c:773
+#: lib/rpmrc.c:788
 #, c-format
 msgid "bad option '%s' at %s:%d"
 msgstr "huono parametri '%s', %s:%d"
 
-#: ../lib/rpmrc.c:1109
+#: lib/rpmrc.c:1147
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: ../lib/rpmrc.c:1110
+#: lib/rpmrc.c:1148
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: ../lib/signature.c:147
+#: lib/signature.c:106
+#, c-format
+msgid "sigsize         : %d\n"
+msgstr ""
+
+#: lib/signature.c:107
+#, c-format
+msgid "Header + Archive: %d\n"
+msgstr ""
+
+#: lib/signature.c:108
+#, c-format
+msgid "expected size   : %d\n"
+msgstr ""
+
+#: lib/signature.c:112
+msgid "file is not regular -- skipping size check\n"
+msgstr ""
+
+#: lib/signature.c:134
 #, fuzzy
 msgid "No signature\n"
 msgstr "%s: Ei allekirjoitusta saatavilla\n"
 
-#: ../lib/signature.c:150
+#: lib/signature.c:137
 #, fuzzy
 msgid "Old PGP signature\n"
 msgstr "generoi PGP-allekirjoitus"
 
-#: ../lib/signature.c:163
+#: lib/signature.c:149
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr "Vanha (sisäisen käytön) allekirjoitus! Mistä sait sen!?"
 
-#: ../lib/signature.c:167
+#: lib/signature.c:153
 #, fuzzy
 msgid "New Header signature\n"
 msgstr "en voinut lukea allekirjoitusta"
 
 #. 8-byte pad
-#: ../lib/signature.c:175 ../lib/signature.c:213
+#: lib/signature.c:160 lib/signature.c:202
 #, c-format
 msgid "Signature size: %d\n"
 msgstr ""
 
-#: ../lib/signature.c:176 ../lib/signature.c:214
+#: lib/signature.c:161 lib/signature.c:203
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr ""
 
-#: ../lib/signature.c:306 ../lib/signature.c:812
-msgid "Couldn't exec pgp"
+#: lib/signature.c:266
+#, fuzzy, c-format
+msgid "Couldn't exec pgp (%s)"
 msgstr "En voinut ajaa pgp:tä"
 
-#: ../lib/signature.c:317
+#: lib/signature.c:277
 msgid "pgp failed"
 msgstr "pgp epäonnistui"
 
 #. PGP failed to write signature
 #. Just in case
-#: ../lib/signature.c:324
+#: lib/signature.c:284
 msgid "pgp failed to write signature"
 msgstr "pgp ei voinut kirjoittaa allekirjoitusta"
 
-#: ../lib/signature.c:329
+#: lib/signature.c:289
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: ../lib/signature.c:340 ../lib/signature.c:416
+#: lib/signature.c:300 lib/signature.c:377
 msgid "unable to read the signature"
 msgstr "en voinut lukea allekirjoitusta"
 
-#: ../lib/signature.c:345
+#: lib/signature.c:305
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: ../lib/signature.c:382 ../lib/signature.c:787
+#: lib/signature.c:343 lib/signature.c:686
 #, fuzzy
 msgid "Couldn't exec gpg"
 msgstr "En voinut ajaa pgp:tä"
 
-#: ../lib/signature.c:393
+#: lib/signature.c:354
 #, fuzzy
 msgid "gpg failed"
 msgstr "pgp epäonnistui"
 
 #. GPG failed to write signature
 #. Just in case
-#: ../lib/signature.c:400
+#: lib/signature.c:361
 #, fuzzy
 msgid "gpg failed to write signature"
 msgstr "pgp ei voinut kirjoittaa allekirjoitusta"
 
-#: ../lib/signature.c:405
+#: lib/signature.c:366
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: ../lib/signature.c:421
+#: lib/signature.c:382
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
-#: ../lib/signature.c:436
-#, c-format
-msgid "sigsize         : %d\n"
-msgstr ""
-
-#: ../lib/signature.c:437
-#, c-format
-msgid "Header + Archive: %d\n"
-msgstr ""
-
-#: ../lib/signature.c:438
-#, c-format
-msgid "expected size   : %d\n"
-msgstr ""
+#: lib/signature.c:409
+#, fuzzy
+msgid "Generating signature using PGP.\n"
+msgstr "generoi PGP-allekirjoitus"
 
-#: ../lib/signature.c:442
-msgid "file is not regular -- skipping size check\n"
-msgstr ""
+#: lib/signature.c:415
+#, fuzzy
+msgid "Generating signature using GPG.\n"
+msgstr "generoi PGP-allekirjoitus"
 
-#: ../lib/signature.c:560 ../lib/signature.c:607
+#: lib/signature.c:492 lib/signature.c:554
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr "En voinut ajaa pgp:tä. Käytä --nopgpg ohittaaksesi PGP-tarkistus"
 
-#: ../lib/signature.c:605 ../lib/signature.c:677
+#: lib/signature.c:552 lib/signature.c:625
 #, fuzzy
 msgid "exec failed!\n"
 msgstr "%s: avaus ei onnistunut\n"
 
-#: ../lib/signature.c:679
+#: lib/signature.c:627
 #, fuzzy
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr "En voinut ajaa pgp:tä. Käytä --nopgpg ohittaaksesi PGP-tarkistus"
 
-#: ../lib/signature.c:716
+#: lib/signature.c:715
+msgid "Couldn't exec pgp"
+msgstr "En voinut ajaa pgp:tä"
+
+#. @notreached@
+#. This case should have been screened out long ago.
+#: lib/signature.c:719 lib/signature.c:772
+msgid "Invalid %%_signature spec in macro file"
+msgstr ""
+
+#: lib/signature.c:752
 #, fuzzy
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr "Sinun pitää asettaa \"pgp_name:\" rpmrc-tiedostossa"
 
-#: ../lib/signature.c:728
+#: lib/signature.c:764
 #, fuzzy
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr "Sinun pitää asettaa \"pgp_name:\" rpmrc-tiedostossa"
 
-#. Currently the calling function (rpm.c:main) is checking this and
-#. * doing a better job.  This section should never be accessed.
-#.
-#: ../lib/signature.c:736 ../lib/signature.c:816
-msgid "Invalid %%_signature spec in macro file"
-msgstr ""
-
-#: ../lib/transaction.c:793
+#: lib/transaction.c:363
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: ../lib/transaction.c:799
+#: lib/transaction.c:370
 #, fuzzy, c-format
 msgid "excluding %s\n"
 msgstr "Haen: %s\n"
 
-#: ../lib/transaction.c:887
+#: lib/transaction.c:489
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: ../lib/uninstall.c:51
+#: lib/uninstall.c:37
+#, c-format
+msgid "cannot remove %s - directory not empty"
+msgstr "en voi poistaa %s -hakemisto ei ole tyhjä"
+
+#: lib/uninstall.c:40
+#, c-format
+msgid "rmdir of %s failed: %s"
+msgstr "%s:n rmdir epäonnistui: %s"
+
+#: lib/uninstall.c:48
+#, c-format
+msgid "removal of %s failed: %s"
+msgstr "%s:n poisto epäonnistui: %s"
+
+#: lib/uninstall.c:97
 #, fuzzy, c-format
 msgid "cannot read packages named %s for uninstall"
 msgstr "en voi lukea headeria %d:stä poistamiseen"
 
-#: ../lib/uninstall.c:79
+#: lib/uninstall.c:130
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: ../lib/uninstall.c:124
+#: lib/uninstall.c:191
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: ../lib/uninstall.c:138
+#: lib/uninstall.c:204
 msgid "removing database entry\n"
 msgstr ""
 
-#: ../lib/uninstall.c:289
+#: lib/uninstall.c:365
 msgid "execution of script failed"
 msgstr "skriptin ajo epäonnistui"
 
-#: ../lib/uninstall.c:348
+#: lib/url.c:144
 #, c-format
-msgid "cannot remove %s - directory not empty"
-msgstr "en voi poistaa %s -hakemisto ei ole tyhjä"
+msgid "Password for %s@%s: "
+msgstr "%s@%s:n salasana: "
+
+#: lib/url.c:168 lib/url.c:194
+#, fuzzy, c-format
+msgid "error: %sport must be a number\n"
+msgstr "virhe: ftpport pitää olla luku\n"
+
+#: lib/url.c:279
+#, fuzzy
+msgid "url port must be a number\n"
+msgstr "virhe: ftpport pitää olla luku\n"
 
-#: ../lib/uninstall.c:351
+#. XXX PARANOIA
+#: lib/url.c:317
 #, c-format
-msgid "rmdir of %s failed: %s"
-msgstr "%s:n rmdir epäonnistui: %s"
+msgid "logging into %s as %s, pw %s\n"
+msgstr ""
 
-#: ../lib/uninstall.c:359
+#: lib/url.c:446
 #, c-format
-msgid "removal of %s failed: %s"
-msgstr "%s:n poisto epäonnistui: %s"
+msgid "failed to create %s\n"
+msgstr "%s:n luonti epäonnistui\n"
 
-#: ../lib/verify.c:36
+#: lib/verify.c:36
 #, fuzzy
 msgid "don't verify files in package"
 msgstr "asenna paketti"
 
-#: ../lib/verify.c:206
+#: lib/verify.c:206
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 
-#: ../lib/verify.c:224
+#: lib/verify.c:224
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: ../lib/verify.c:257
+#: lib/verify.c:257
 #, fuzzy, c-format
 msgid "missing    %s\n"
 msgstr "puuttuva '{' '%':n jälkeen"
 
-#: ../lib/verify.c:321
+#: lib/verify.c:319
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "%s-%s-%s:n tyydyttämättömät riippuvuudet:"
 
-#: ../lib/verify.c:369
+#: lib/verify.c:367
 #, fuzzy
 msgid "rpmVerify: rpmdbOpen() failed\n"
 msgstr "%s: avaus ei onnistunut\n"
 
+#, fuzzy
+#~ msgid "failed build prerequisites:\n"
+#~ msgstr "puuttuvat riippuvuudet:\n"
+
+#~ msgid "Couldn't read the header/archive"
+#~ msgstr "En voinut lukea header/arkistotiedostoa"
+
+#~ msgid "Couldn't write header/archive to temp file"
+#~ msgstr "En voinut kirjoittaa header/arkistotiedostoa väliaikaistiedostoon"
+
+#~ msgid "Couldn't write package"
+#~ msgstr "Paketin kirjoitus ei onnistunut"
+
+#~ msgid "Unable to write %s"
+#~ msgstr "%s:n kirjoitus ei onnistu"
+
+#~ msgid "unexpected query specifiers"
+#~ msgstr "odottamattomia kyselyn parametrejä"
+
+#~ msgid "--nofiles may only be specified during package verification"
+#~ msgstr "--nofiles: voidaan käyttää vain paketteja tarkistettaessa"
+
+#~ msgid "--clean may only be used with -b and -t"
+#~ msgstr "--clean: voidaan käyttää vain -b ja -t kanssa"
+
+#~ msgid "--rmsource may only be used with -b and -t"
+#~ msgstr "--rmsource: voidaan käyttää vain -b ja -t kanssa"
+
+#~ msgid "--short-circuit may only be used during package building"
+#~ msgstr "--short-circuit: voidaan käyttää vain paketteja asennettaessa"
+
+#, fuzzy
+#~ msgid "--short-circuit may only be used with -bc, -bi, -bs, -tc -ti, or -ts"
+#~ msgstr "--short-circuit: voidaan käyttää vain -bc, -bi, -tc tai -ti kanssa"
+
+#, fuzzy
+#~ msgid "pgp version 5 not found: "
+#~ msgstr "Tiedostoa ei löytynyt palvelimelta"
+
 #~ msgid "showing package: %d\n"
 #~ msgstr "näytän paketin: %d\n"
 
index 5c6dfb6..eb214e9 100644 (file)
--- a/po/fr.po
+++ b/po/fr.po
 msgid ""
-msgstr "POT-Creation-Date: 1999-05-11 12:17-0400\n"
+msgstr "POT-Creation-Date: 1999-09-29 19:30-0400\n"
 
-#: ../build.c:24 ../install.c:221 ../install.c:377
+#: build.c:23 lib/rpminstall.c:222 lib/rpminstall.c:382
 #, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr ""
 
-#: ../build.c:34
+#: build.c:33
 #, fuzzy
-msgid "failed build prerequisites:\n"
+msgid "failed build dependencies:\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: ../build.c:83 ../build.c:96
+#: build.c:61
+#, fuzzy, c-format
+msgid "Unable to open spec file: %s\n"
+msgstr "impossible d'ouvrir: %s\n"
+
+#: build.c:117 build.c:130
 #, fuzzy, c-format
 msgid "Failed to open tar pipe: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
 #. Give up
-#: ../build.c:104
+#: build.c:138
 #, fuzzy, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: ../build.c:129
+#: build.c:163
 #, fuzzy, c-format
 msgid "Failed to rename %s to %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: ../build.c:167
+#: build.c:201
 #, c-format
 msgid "File is not a regular file: %s\n"
 msgstr ""
 
-#: ../build.c:172
-#, fuzzy, c-format
-msgid "Unable to open spec file: %s\n"
-msgstr "impossible d'ouvrir: %s\n"
-
-#: ../build.c:180
+#: build.c:207
 #, c-format
-msgid "File contains non-printable characters(%c): %s\n"
+msgid "File %s does not appear to be a specfile.\n"
 msgstr ""
 
 #. parse up the build operators
-#: ../build.c:233
+#: build.c:258
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr ""
 
-#: ../build.c:242
+#: build.c:267
 #, fuzzy, c-format
 msgid "Building for target %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: ../build.c:286
+#: build.c:311
 msgid "buildroot already specified"
 msgstr ""
 
-#: ../build.c:292
+#: build.c:317
 msgid "--buildarch has been obsoleted.  Use the --target option instead.\n"
 msgstr ""
 
-#: ../build.c:296
+#: build.c:321
 msgid "--buildos has been obsoleted.  Use the --target option instead.\n"
 msgstr ""
 
-#: ../build.c:317
+#: build.c:342
 #, fuzzy
 msgid "override build architecture"
 msgstr "%s ne peut être construit sur cette architecture\n"
 
-#: ../build.c:319
+#: build.c:344
 msgid "override build operating system"
 msgstr ""
 
-#: ../build.c:321
+#: build.c:346
 msgid "override build root"
 msgstr ""
 
-#: ../build.c:323 ../rpm.c:458
+#: build.c:348 rpm.c:457
 #, fuzzy
 msgid "remove build tree when done"
 msgstr "      --clean           - efface l'arborescence après construction"
 
-#: ../build.c:325
+#: build.c:350
 msgid "do not execute any stages of the build"
 msgstr ""
 
-#: ../build.c:327
+#: build.c:352
 msgid "do not accept I18N msgstr's from specfile"
 msgstr ""
 
-#: ../build.c:329
+#: build.c:354
 #, fuzzy
 msgid "remove sources when done"
 msgstr "      --clean           - efface l'arborescence après construction"
 
-#: ../build.c:331
+#: build.c:356
 #, fuzzy
 msgid "remove specfile when done"
 msgstr "      --clean           - efface l'arborescence après construction"
 
-#: ../build.c:333 ../rpm.c:456
+#: build.c:358 rpm.c:455
 #, fuzzy
 msgid "skip straight to specified stage (only for c,i)"
 msgstr ""
 "      --short-circuit   - passe directement à l'étape spécifiée (seulement "
 "pour c,i)"
 
-#: ../build.c:335
+#: build.c:360
 msgid "override target platform"
 msgstr ""
 
-#: ../build.c:337
+#: build.c:362
 msgid "lookup I18N strings in specfile catalog"
 msgstr ""
 
-#: ../checksig.c:27 ../checksig.c:166
-#, c-format
-msgid "%s: Open failed\n"
-msgstr ""
-
-#: ../checksig.c:31 ../checksig.c:171
-#, c-format
-msgid "%s: readLead failed\n"
-msgstr ""
-
-#: ../checksig.c:35
-#, c-format
-msgid "%s: Can't sign v1.0 RPM\n"
-msgstr ""
-
-#: ../checksig.c:39
-#, c-format
-msgid "%s: Can't re-sign v2.0 RPM\n"
-msgstr ""
-
-#: ../checksig.c:43 ../checksig.c:181
-#, c-format
-msgid "%s: rpmReadSignature failed\n"
-msgstr ""
-
-#: ../checksig.c:56 ../checksig.c:195
-msgid "Couldn't read the header/archive"
-msgstr ""
-
-#: ../checksig.c:63
-msgid "Couldn't write header/archive to temp file"
-msgstr ""
-
-#: ../build/pack.c:330 ../checksig.c:91
-#, fuzzy, c-format
-msgid "Generating signature: %d\n"
-msgstr "      --sign            - genère une signature PGP"
-
-#: ../checksig.c:114
-msgid "Couldn't read sigtarget"
-msgstr ""
-
-#: ../checksig.c:123
-msgid "Couldn't write package"
-msgstr ""
-
-#: ../checksig.c:176
-#, c-format
-msgid "%s: No signature available (v1.0 RPM)\n"
-msgstr ""
-
-#: ../checksig.c:186
-#, c-format
-msgid "%s: No signature available\n"
-msgstr ""
-
-#: ../checksig.c:202
-#, fuzzy, c-format
-msgid "Unable to write %s"
-msgstr "impossible d'ouvrir: %s\n"
-
-#: ../checksig.c:328
-msgid "NOT OK"
-msgstr ""
-
-#: ../checksig.c:329 ../checksig.c:343
-msgid " (MISSING KEYS:"
-msgstr ""
-
-#: ../checksig.c:331 ../checksig.c:345
-msgid ") "
-msgstr ""
-
-#: ../checksig.c:332 ../checksig.c:346
-msgid " (UNTRUSTED KEYS:"
-msgstr ""
-
-#: ../checksig.c:334 ../checksig.c:348
-msgid ")"
-msgstr ""
-
-#: ../checksig.c:342
-msgid "OK"
-msgstr ""
-
-#: ../convertdb.c:38
+#: convertdb.c:39
 msgid "RPM database already exists"
 msgstr ""
 
-#: ../convertdb.c:43
+#: convertdb.c:44
 msgid "Old db is missing"
 msgstr ""
 
-#: ../convertdb.c:54
+#: convertdb.c:55
 msgid "failed to create RPM database /var/lib/rpm"
 msgstr ""
 
-#: ../convertdb.c:60
+#: convertdb.c:61
 msgid "Old db is corrupt"
 msgstr ""
 
-#: ../convertdb.c:69
+#: convertdb.c:70
 #, c-format
 msgid "oldrpmdbGetPackageInfo failed &olddb = %p olddb.packages = %p\n"
 msgstr ""
 
-#: ../convertdb.c:201
+#: convertdb.c:204
 msgid "rpmconvert: no arguments expected"
 msgstr ""
 
-#: ../convertdb.c:207
+#: convertdb.c:210
 msgid "rpmconvert 1.0 - converting database in /var/lib/rpm\n"
 msgstr ""
 
-#: ../ftp.c:642
-msgid "Success"
-msgstr ""
-
-#: ../ftp.c:645
-msgid "Bad server response"
-msgstr ""
-
-#: ../ftp.c:648
-msgid "Server IO error"
-msgstr ""
-
-#: ../ftp.c:651
-msgid "Server timeout"
-msgstr ""
-
-#: ../ftp.c:654
-msgid "Unable to lookup server host address"
-msgstr ""
-
-#: ../ftp.c:657
-msgid "Unable to lookup server host name"
-msgstr ""
-
-#: ../ftp.c:660
-msgid "Failed to connect to server"
-msgstr ""
-
-#: ../ftp.c:663
-msgid "Failed to establish data connection to server"
-msgstr ""
-
-#: ../ftp.c:666
-msgid "IO error to local file"
-msgstr ""
-
-#: ../ftp.c:669
-msgid "Error setting remote server to passive mode"
-msgstr ""
-
-#: ../ftp.c:672
-msgid "File not found on server"
-msgstr ""
-
-#: ../ftp.c:675
-msgid "Abort in progress"
-msgstr ""
-
-#: ../ftp.c:679
-msgid "Unknown or unexpected error"
-msgstr ""
-
-#: ../install.c:127
-#, fuzzy
-msgid "counting packages to install\n"
-msgstr "aucun package n'a été spécifié pour l'installation"
-
-#: ../install.c:131
-#, c-format
-msgid "found %d packages\n"
-msgstr ""
-
-#: ../install.c:140
-msgid "looking for packages to download\n"
-msgstr ""
-
-#: ../install.c:151
-#, c-format
-msgid "Retrieving %s\n"
-msgstr ""
-
-#: ../install.c:160
-#, c-format
-msgid " ... as %s\n"
-msgstr ""
-
-#: ../install.c:164
-#, c-format
-msgid "skipping %s - transfer failed - %s\n"
-msgstr ""
-
-#: ../install.c:181
-#, c-format
-msgid "retrieved %d packages\n"
-msgstr ""
-
-#: ../install.c:190 ../install.c:327
-#, fuzzy, c-format
-msgid "cannot open file %s\n"
-msgstr "impossible d'ouvrir: %s\n"
-
-#: ../install.c:202 ../lib/query.c:569
-#, c-format
-msgid "%s does not appear to be a RPM package\n"
-msgstr ""
-
-#: ../install.c:206 ../install.c:464
-#, fuzzy, c-format
-msgid "%s cannot be installed\n"
-msgstr "aucun package n'a été spécifié pour l'installation"
-
-#: ../install.c:242
-#, fuzzy, c-format
-msgid "package %s is not relocateable\n"
-msgstr "aucun package n'a été spécifié pour l'installation"
-
-#: ../install.c:254
-#, c-format
-msgid "error reading from file %s\n"
-msgstr ""
-
-#: ../install.c:257
-#, c-format
-msgid "file %s requires a newer version of RPM\n"
-msgstr ""
-
-#: ../install.c:272
-#, c-format
-msgid "found %d source and %d binary packages\n"
-msgstr ""
-
-#: ../install.c:282
-msgid "failed dependencies:\n"
-msgstr ""
-
-#: ../install.c:300
-msgid "installing binary packages\n"
-msgstr ""
-
-#: ../install.c:388 ../lib/query.c:717
-#, fuzzy, c-format
-msgid "package %s is not installed\n"
-msgstr "aucun package n'a été spécifié pour l'installation"
-
-#: ../install.c:392
-#, c-format
-msgid "searching for package %s\n"
-msgstr ""
-
-#: ../install.c:401
-#, c-format
-msgid "\"%s\" specifies multiple packages\n"
-msgstr ""
-
-#: ../install.c:427
-msgid "removing these packages would break dependencies:\n"
-msgstr ""
-
-#: ../install.c:454
-#, fuzzy, c-format
-msgid "cannot open %s\n"
-msgstr "impossible d'ouvrir: %s\n"
-
-#: ../install.c:459
-#, c-format
-msgid "Installing %s\n"
-msgstr ""
-
-#: ../install.c:503
-#, c-format
-msgid " is needed by %s-%s-%s\n"
-msgstr ""
-
-#: ../install.c:506
-#, c-format
-msgid " conflicts with %s-%s-%s\n"
-msgstr ""
-
-#: ../oldrpmdb.c:454
+#: oldrpmdb.c:454
 #, c-format
 msgid "pulling %s from database\n"
 msgstr ""
 
-#: ../oldrpmdb.c:461
+#: oldrpmdb.c:461
 #, fuzzy
 msgid "package not found in database"
 msgstr "aucun package n'a été spécifié pour la désinstallation"
 
-#: ../oldrpmdb.c:522
+#: oldrpmdb.c:522
 msgid "no copyright!\n"
 msgstr ""
 
-#: ../rpm.c:160
+#: rpm.c:159
 #, c-format
 msgid "rpm: %s\n"
 msgstr ""
 
-#: ../rpm.c:171
+#: rpm.c:170
 #, c-format
 msgid "RPM version %s\n"
 msgstr ""
 
-#: ../rpm.c:175
+#: rpm.c:174
 msgid "Copyright (C) 1998 - Red Hat Software"
 msgstr ""
 
-#: ../rpm.c:176
-msgid ""
-"This may be freely redistributed under the terms of the GNU GPL"
-msgstr ""
-"Peut être redistribué librement selon les termes de la GNU GPL"
+#: rpm.c:175
+msgid "This may be freely redistributed under the terms of the GNU GPL"
+msgstr "Peut être redistribué librement selon les termes de la GNU GPL"
 
-#: ../rpm.c:185
+#: rpm.c:183
 msgid "usage: rpm {--help}"
 msgstr ""
 
-#: ../rpm.c:186
+#: rpm.c:184
 msgid "       rpm {--version}"
 msgstr ""
 
-#: ../rpm.c:187
+#: rpm.c:185
 msgid "       rpm {--initdb}   [--dbpath <dir>]"
 msgstr ""
 
-#: ../rpm.c:188
+#: rpm.c:186
 msgid ""
 "       rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 
-#: ../rpm.c:189
+#: rpm.c:187
 #, fuzzy
 msgid "                        [--replacepkgs] [--replacefiles] [--root <dir>]"
 msgstr "      --force           - raccourci pour --replacepkgs --replacefiles"
 
-#: ../rpm.c:190
+#: rpm.c:188
 msgid "                        [--excludedocs] [--includedocs] [--noscripts]"
 msgstr ""
 
-#: ../rpm.c:191
+#: rpm.c:189
 msgid ""
 "                        [--rcfile <file>] [--ignorearch] [--dbpath <dir>]"
 msgstr ""
 
-#: ../rpm.c:192
+#: rpm.c:190
 msgid ""
 "                        [--prefix <dir>] [--ignoreos] [--nodeps] [--allfiles]"
 msgstr ""
 
-#: ../rpm.c:193
+#: rpm.c:191
 msgid ""
 "                        [--ftpproxy <host>] [--ftpport <port>] [--justdb]"
 msgstr ""
 
-#: ../rpm.c:194 ../rpm.c:203 ../rpm.c:212
+#: rpm.c:192 rpm.c:201 rpm.c:210
 #, fuzzy
 msgid "                        [--httpproxy <host>] [--httpport <port>] "
 msgstr "                          qui matchent <pkg>"
 
-#: ../rpm.c:195 ../rpm.c:205
+#: rpm.c:193 rpm.c:203
 msgid "                        [--noorder] [--relocate oldpath=newpath]"
 msgstr ""
 
-#: ../rpm.c:196
+#: rpm.c:194
 #, fuzzy
 msgid ""
 "                        [--badreloc] [--notriggers] [--excludepath <path>]"
 msgstr "        -a                - interroge l'ensemble des packages"
 
-#: ../rpm.c:197
+#: rpm.c:195
 #, fuzzy
 msgid "                        [--ignoresize] file1.rpm ... fileN.rpm"
 msgstr "        -l                - affiche la liste des packages"
 
-#: ../rpm.c:198
+#: rpm.c:196
 msgid ""
 "       rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 
-#: ../rpm.c:199
+#: rpm.c:197
 #, fuzzy
 msgid "                        [--oldpackage] [--root <dir>] [--noscripts]"
 msgstr ""
 "        -i                - affiche les informations relatives à un package"
 
-#: ../rpm.c:200
+#: rpm.c:198
 msgid ""
 "                        [--excludedocs] [--includedocs] [--rcfile <file>]"
 msgstr ""
 
-#: ../rpm.c:201
+#: rpm.c:199
 msgid ""
 "                        [--ignorearch]  [--dbpath <dir>] [--prefix <dir>] "
 msgstr ""
 
-#: ../rpm.c:202
+#: rpm.c:200
 #, fuzzy
 msgid "                        [--ftpproxy <host>] [--ftpport <port>]"
 msgstr "                          qui matchent <pkg>"
 
-#: ../rpm.c:204
+#: rpm.c:202
 msgid "                        [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
 msgstr ""
 
-#: ../rpm.c:206
+#: rpm.c:204
 #, fuzzy
 msgid ""
 "                        [--badreloc] [--excludepath <path>] [--ignoresize]"
 msgstr "        -a                - interroge l'ensemble des packages"
 
-#: ../rpm.c:207
+#: rpm.c:205
 #, fuzzy
 msgid "                        file1.rpm ... fileN.rpm"
 msgstr "        -l                - affiche la liste des packages"
 
-#: ../rpm.c:208
+#: rpm.c:206
 msgid "       rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]"
 msgstr ""
 
-#: ../rpm.c:209
+#: rpm.c:207
 msgid "                        [--scripts] [--root <dir>] [--rcfile <file>]"
 msgstr ""
 
-#: ../rpm.c:210
+#: rpm.c:208
 msgid "                        [--whatprovides] [--whatrequires] [--requires]"
 msgstr ""
 
-#: ../rpm.c:211
+#: rpm.c:209
 msgid ""
 "                        [--triggeredby] [--ftpuseport] [--ftpproxy <host>]"
 msgstr ""
 
-#: ../rpm.c:213
+#: rpm.c:211
 msgid ""
 "                        [--ftpport <port>] [--provides] [--triggers] [--dump]"
 msgstr ""
 
-#: ../rpm.c:214
+#: rpm.c:212
 #, fuzzy
 msgid "                        [--changelog] [--dbpath <dir>] [targets]"
 msgstr "        -a                - interroge l'ensemble des packages"
 
-#: ../rpm.c:215
+#: rpm.c:213
 msgid "       rpm {--verify -V -y} [-afpg] [--root <dir>] [--rcfile <file>]"
 msgstr ""
 
-#: ../rpm.c:216
+#: rpm.c:214
 msgid ""
 "                        [--dbpath <dir>] [--nodeps] [--nofiles] [--noscripts]"
 msgstr ""
 
-#: ../rpm.c:217
+#: rpm.c:215
 #, fuzzy
 msgid "                        [--nomd5] [targets]"
 msgstr "    -q                  - mode interrogation"
 
-#: ../rpm.c:218
+#: rpm.c:216
 msgid "       rpm {--setperms} [-afpg] [target]"
 msgstr ""
 
-#: ../rpm.c:219
+#: rpm.c:217
 msgid "       rpm {--setugids} [-afpg] [target]"
 msgstr ""
 
-#: ../rpm.c:220
+#: rpm.c:218
+#, fuzzy
+msgid "       rpm {--freshen -F} file1.rpm ... fileN.rpm"
+msgstr "        -l                - affiche la liste des packages"
+
+#: rpm.c:219
 msgid "       rpm {--erase -e} [--root <dir>] [--noscripts] [--rcfile <file>]"
 msgstr ""
 
-#: ../rpm.c:221
+#: rpm.c:220
 #, fuzzy
 msgid "                        [--dbpath <dir>] [--nodeps] [--allmatches]"
 msgstr "        -a                - interroge l'ensemble des packages"
 
-#: ../rpm.c:222
+#: rpm.c:221
 #, fuzzy
 msgid ""
 "                        [--justdb] [--notriggers] rpackage1 ... packageN"
@@ -600,468 +350,468 @@ msgstr ""
 "                        - installe le package source, construit le package "
 "binaire,"
 
-#: ../rpm.c:223
+#: rpm.c:222
 msgid ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile  <file>]"
 msgstr ""
 
-#: ../rpm.c:224
+#: rpm.c:223
 #, fuzzy
 msgid "                        [--sign] [--nobuild] [--timecheck <s>] ]"
 msgstr "                          qui matchent <pkg>"
 
-#: ../rpm.c:225
+#: rpm.c:224
 #, fuzzy
 msgid "                        [--target=platform1[,platform2...]]"
 msgstr ""
 "        -i                - affiche les informations relatives à un package"
 
-#: ../rpm.c:226
+#: rpm.c:225
 #, fuzzy
 msgid "                        [--rmsource] specfile"
 msgstr "        -a                - interroge l'ensemble des packages"
 
-#: ../rpm.c:227
+#: rpm.c:226
 msgid "       rpm {--rmsource} [--rcfile <file>] [-v] specfile"
 msgstr ""
 
-#: ../rpm.c:228
+#: rpm.c:227
 msgid ""
 "       rpm {--rebuild} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 
-#: ../rpm.c:229
+#: rpm.c:228
 msgid ""
 "       rpm {--recompile} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 
-#: ../rpm.c:230
+#: rpm.c:229
 msgid "       rpm {--resign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr ""
 
-#: ../rpm.c:231
+#: rpm.c:230
 msgid "       rpm {--addsign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr ""
 
-#: ../rpm.c:232
+#: rpm.c:231
 msgid ""
 "       rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile <file>]"
 msgstr ""
 
-#: ../rpm.c:233
+#: rpm.c:232
 #, fuzzy
 msgid "                           package1 ... packageN"
 msgstr "                          qui matchent <pkg>"
 
-#: ../rpm.c:234
+#: rpm.c:233
 msgid "       rpm {--rebuilddb} [--rcfile <file>] [--dbpath <dir>]"
 msgstr ""
 
-#: ../rpm.c:235
+#: rpm.c:234
 msgid "       rpm {--querytags}"
 msgstr ""
 
-#: ../rpm.c:269
+#: rpm.c:268
 msgid "usage:"
 msgstr ""
 
-#: ../rpm.c:271
+#: rpm.c:270
 #, fuzzy
 msgid "print this message"
 msgstr "   --help\t\t- affiche ce message"
 
-#: ../rpm.c:273
+#: rpm.c:272
 #, fuzzy
 msgid "print the version of rpm being used"
 msgstr "   --version\t\t- affiche la version de rpm utilisée"
 
-#: ../rpm.c:274
+#: rpm.c:273
 msgid "   all modes support the following arguments:"
 msgstr ""
 
-#: ../rpm.c:275
+#: rpm.c:274
 msgid "      --rcfile <file>     "
 msgstr ""
 
-#: ../rpm.c:276
+#: rpm.c:275
 msgid "use <file> instead of /etc/rpmrc and $HOME/.rpmrc"
 msgstr ""
 
-#: ../rpm.c:278
+#: rpm.c:277
 msgid "be a little more verbose"
 msgstr ""
 
-#: ../rpm.c:280
+#: rpm.c:279
 msgid "be incredibly verbose (for debugging)"
 msgstr ""
 
-#: ../rpm.c:282
+#: rpm.c:281
 msgid "query mode"
 msgstr ""
 
-#: ../rpm.c:283 ../rpm.c:345 ../rpm.c:409 ../rpm.c:437
+#: rpm.c:282 rpm.c:344 rpm.c:408 rpm.c:436
 msgid "      --root <dir>        "
 msgstr ""
 
-#: ../rpm.c:284 ../rpm.c:346 ../rpm.c:410 ../rpm.c:438 ../rpm.c:500
+#: rpm.c:283 rpm.c:345 rpm.c:409 rpm.c:437 rpm.c:499
 #, fuzzy
 msgid "use <dir> as the top level directory"
 msgstr "      --root <dir>\t- utilise <dir> comme répertoire racine"
 
-#: ../rpm.c:285 ../rpm.c:343 ../rpm.c:373 ../rpm.c:425 ../rpm.c:497
+#: rpm.c:284 rpm.c:342 rpm.c:372 rpm.c:424 rpm.c:496
 msgid "      --dbpath <dir>      "
 msgstr ""
 
-#: ../rpm.c:286 ../rpm.c:344 ../rpm.c:374 ../rpm.c:426 ../rpm.c:498
+#: rpm.c:285 rpm.c:343 rpm.c:373 rpm.c:425 rpm.c:497
 msgid "use <dir> as the directory for the database"
 msgstr ""
 
-#: ../rpm.c:287
+#: rpm.c:286
 msgid "      --queryformat <qfmt>"
 msgstr ""
 
-#: ../rpm.c:288
+#: rpm.c:287
 msgid "use <qfmt> as the header format (implies -i)"
 msgstr ""
 
-#: ../rpm.c:289
+#: rpm.c:288
 msgid ""
 "   install, upgrade and query (with -p) allow ftp URL's to be used in place"
 msgstr ""
 
-#: ../rpm.c:290
+#: rpm.c:289
 msgid "   of file names as well as the following options:"
 msgstr ""
 
-#: ../rpm.c:291
+#: rpm.c:290
 msgid "      --ftpproxy <host>   "
 msgstr ""
 
-#: ../rpm.c:292
+#: rpm.c:291
 msgid "hostname or IP of ftp proxy"
 msgstr ""
 
-#: ../rpm.c:293
+#: rpm.c:292
 msgid "      --ftpport <port>    "
 msgstr ""
 
-#: ../rpm.c:294
+#: rpm.c:293
 msgid "port number of ftp server (or proxy)"
 msgstr ""
 
-#: ../rpm.c:295
+#: rpm.c:294
 msgid "      --httpproxy <host>   "
 msgstr ""
 
-#: ../rpm.c:296
+#: rpm.c:295
 msgid "hostname or IP of http proxy"
 msgstr ""
 
-#: ../rpm.c:297
+#: rpm.c:296
 #, fuzzy
 msgid "      --httpport <port>    "
 msgstr "    --checksig <pkg>+  - vérifie la signature PGP"
 
-#: ../rpm.c:298
+#: rpm.c:297
 msgid "port number of http server (or proxy)"
 msgstr ""
 
-#: ../rpm.c:299
+#: rpm.c:298
 msgid "      Package specification options:"
 msgstr "      Options de spécification de package:"
 
-#: ../rpm.c:301
+#: rpm.c:300
 msgid "query all packages"
 msgstr ""
 
-#: ../rpm.c:302
+#: rpm.c:301
 msgid "        -f <file>+        "
 msgstr ""
 
-#: ../rpm.c:303
+#: rpm.c:302
 #, fuzzy
 msgid "query package owning <file>"
 msgstr ""
 "        -f <file>+        - interroge le package à qui appartient <file>"
 
-#: ../rpm.c:304
+#: rpm.c:303
 #, fuzzy
 msgid "        -p <packagefile>+ "
 msgstr "    -i <packagefile>\t- installe le package"
 
-#: ../rpm.c:305
+#: rpm.c:304
 #, fuzzy
 msgid "query (uninstalled) package <packagefile>"
 msgstr ""
 "        -p <packagefile>+ - interroge le package (non installé) <packagefile>"
 
-#: ../rpm.c:306
+#: rpm.c:305
 msgid "        --triggeredby <pkg>"
 msgstr ""
 
-#: ../rpm.c:307
+#: rpm.c:306
 #, fuzzy
 msgid "query packages triggered by <pkg>"
 msgstr ""
 "        -f <file>+        - interroge le package à qui appartient <file>"
 
-#: ../rpm.c:308
+#: rpm.c:307
 msgid "        --whatprovides <cap>"
 msgstr ""
 
-#: ../rpm.c:309
+#: rpm.c:308
 msgid "query packages which provide <cap> capability"
 msgstr ""
 
-#: ../rpm.c:310
+#: rpm.c:309
 msgid "        --whatrequires <cap>"
 msgstr ""
 
-#: ../rpm.c:311
+#: rpm.c:310
 msgid "query packages which require <cap> capability"
 msgstr ""
 
-#: ../rpm.c:312
+#: rpm.c:311
 msgid "      Information selection options:"
 msgstr "      Options de sélection d'information:"
 
-#: ../rpm.c:314
+#: rpm.c:313
 #, fuzzy
 msgid "display package information"
 msgstr ""
 "        -i                - affiche les informations relatives à un package"
 
-#: ../rpm.c:316
+#: rpm.c:315
 msgid "display the package's change log"
 msgstr ""
 
-#: ../rpm.c:318
+#: rpm.c:317
 #, fuzzy
 msgid "display package file list"
 msgstr "        -l                - affiche la liste des packages"
 
-#: ../rpm.c:320
+#: rpm.c:319
 #, fuzzy
 msgid "show file states (implies -l)"
 msgstr "        -s                - montre l'état des fichiers (implique -l)"
 
-#: ../rpm.c:322
+#: rpm.c:321
 #, fuzzy
 msgid "list only documentation files (implies -l)"
 msgstr ""
 "        -d                - donne uniquement la liste des fichiers de "
 "documentation (implique -l)"
 
-#: ../rpm.c:324
+#: rpm.c:323
 #, fuzzy
 msgid "list only configuration files (implies -l)"
 msgstr ""
 "        -c                - donne uniquement la liste des fichiers de "
 "configuration (implique -l)"
 
-#: ../rpm.c:326
+#: rpm.c:325
 msgid ""
 "show all verifiable information for each file (must be used with -l, -c, or "
 "-d)"
 msgstr ""
 
-#: ../rpm.c:328
+#: rpm.c:327
 msgid "list capabilities package provides"
 msgstr ""
 
-#: ../rpm.c:329
+#: rpm.c:328
 msgid "        --requires"
 msgstr ""
 
-#: ../rpm.c:331
+#: rpm.c:330
 msgid "list package dependencies"
 msgstr ""
 
-#: ../rpm.c:333
+#: rpm.c:332
 msgid "print the various [un]install scripts"
 msgstr ""
 
-#: ../rpm.c:335
+#: rpm.c:334
 msgid "show the trigger scripts contained in the package"
 msgstr ""
 
-#: ../rpm.c:339
+#: rpm.c:338
 #, fuzzy
 msgid "    --pipe <cmd>          "
 msgstr "    --checksig <pkg>+  - vérifie la signature PGP"
 
-#: ../rpm.c:340
+#: rpm.c:339
 msgid "send stdout to <cmd>"
 msgstr ""
 
-#: ../rpm.c:342
+#: rpm.c:341
 #, fuzzy
 msgid ""
 "verify a package installation using the same same package specification "
 "options as -q"
 msgstr "\t\t\t  mêmes options de spécification de package qu'avec -q"
 
-#: ../rpm.c:348 ../rpm.c:396 ../rpm.c:430
+#: rpm.c:347 rpm.c:395 rpm.c:429
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: ../rpm.c:350
+#: rpm.c:349
 msgid "do not verify file md5 checksums"
 msgstr ""
 
-#: ../rpm.c:352
+#: rpm.c:351
 msgid "do not verify file attributes"
 msgstr ""
 
-#: ../rpm.c:355
+#: rpm.c:354
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
-#: ../rpm.c:358
+#: rpm.c:357
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
-#: ../rpm.c:362
+#: rpm.c:361
 #, fuzzy
 msgid "    --install <packagefile>"
 msgstr ""
 "        -p <packagefile>+ - interroge le package (non installé) <packagefile>"
 
-#: ../rpm.c:363
+#: rpm.c:362
 #, fuzzy
 msgid "    -i <packagefile>      "
 msgstr "    -i <packagefile>\t- installe le package"
 
-#: ../rpm.c:364
+#: rpm.c:363
 msgid "install package"
 msgstr ""
 
-#: ../rpm.c:365
+#: rpm.c:364
 msgid "      --excludepath <path>"
 msgstr ""
 
-#: ../rpm.c:366
+#: rpm.c:365
 msgid "skip files in path <path>"
 msgstr ""
 
-#: ../rpm.c:367
+#: rpm.c:366
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr ""
 
-#: ../rpm.c:368
+#: rpm.c:367
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr ""
 
-#: ../rpm.c:370
+#: rpm.c:369
 msgid "relocate files even though the package doesn't allow it"
 msgstr ""
 
-#: ../rpm.c:371
+#: rpm.c:370
 msgid "      --prefix <dir>      "
 msgstr ""
 
-#: ../rpm.c:372
+#: rpm.c:371
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: ../rpm.c:376
+#: rpm.c:375
 msgid "do not install documentation"
 msgstr ""
 
-#: ../rpm.c:378
+#: rpm.c:377
 #, fuzzy
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "      --force           - raccourci pour --replacepkgs --replacefiles"
 
-#: ../rpm.c:381
+#: rpm.c:380
 #, fuzzy
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 "      --hash            - affiche des '#' pendant l'installation du package "
 "(utile avec -v)"
 
-#: ../rpm.c:383
+#: rpm.c:382
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: ../rpm.c:386
+#: rpm.c:385
 msgid "don't verify package architecture"
 msgstr ""
 
-#: ../rpm.c:388
+#: rpm.c:387
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: ../rpm.c:390
+#: rpm.c:389
 msgid "don't verify package operating system"
 msgstr ""
 
-#: ../rpm.c:392
+#: rpm.c:391
 msgid "install documentation"
 msgstr ""
 
-#: ../rpm.c:394 ../rpm.c:428
+#: rpm.c:393 rpm.c:427
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: ../rpm.c:398 ../rpm.c:432
+#: rpm.c:397 rpm.c:431
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: ../rpm.c:400
+#: rpm.c:399
 msgid "don't execute any installation scripts"
 msgstr ""
 
-#: ../rpm.c:402 ../rpm.c:436
+#: rpm.c:401 rpm.c:435
 msgid "don't execute any scripts triggered by this package"
 msgstr ""
 
-#: ../rpm.c:404
+#: rpm.c:403
 #, fuzzy
 msgid "print percentages as package installs"
 msgstr ""
 "      --percent         - affiche des '%' pendant l'installation du package"
 
-#: ../rpm.c:406
+#: rpm.c:405
 #, fuzzy
 msgid "install even if the package replaces installed files"
 msgstr ""
 "      --replacefiles    - installe même si le package remplace des fichiers "
 "déjà présents"
 
-#: ../rpm.c:408
+#: rpm.c:407
 #, fuzzy
 msgid "reinstall if the package is already present"
 msgstr "      --replacepkgs      - réinstalle si le package est déjà présent"
 
-#: ../rpm.c:412
+#: rpm.c:411
 #, fuzzy
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 "      --test            - n'installe pas, mais indique si ca fonctionnerait "
 "ou pas"
 
-#: ../rpm.c:414
+#: rpm.c:413
 msgid "    --upgrade <packagefile>"
 msgstr ""
 
-#: ../rpm.c:415
+#: rpm.c:414
 #, fuzzy
 msgid "    -U <packagefile>      "
 msgstr "    -i <packagefile>\t- installe le package"
 
-#: ../rpm.c:416
+#: rpm.c:415
 #, fuzzy
 msgid "upgrade package (same options as --install, plus)"
 msgstr ""
 "    -U <packagefile>\t- mise à jour du package (mêmes options que --install, "
 "plus)"
 
-#: ../rpm.c:418
+#: rpm.c:417
 #, fuzzy
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
@@ -1070,113 +820,113 @@ msgstr ""
 "      --oldpackage      - mise à jour par une ancienne version du package "
 "(--force"
 
-#: ../rpm.c:420
+#: rpm.c:419
 msgid "    --erase <package>"
 msgstr ""
 
-#: ../rpm.c:422
+#: rpm.c:421
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: ../rpm.c:424
+#: rpm.c:423
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: ../rpm.c:434
+#: rpm.c:433
 msgid "do not execute any package specific scripts"
 msgstr ""
 
-#: ../rpm.c:440
+#: rpm.c:439
 msgid "    -b<stage> <spec>      "
 msgstr ""
 
-#: ../rpm.c:441
+#: rpm.c:440
 msgid "    -t<stage> <tarball>   "
 msgstr ""
 
-#: ../rpm.c:442
+#: rpm.c:441
 #, fuzzy
 msgid "build package, where <stage> is one of:"
 msgstr "    -b<stage> <spec>    - construit le package, <stage> peut valoir:"
 
-#: ../rpm.c:444
+#: rpm.c:443
 #, fuzzy
 msgid "prep (unpack sources and apply patches)"
 msgstr "\t\t\t  p - prépare (extrait le source et applique les patches)"
 
-#: ../rpm.c:446
+#: rpm.c:445
 #, fuzzy, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr "\t\t\t  l - liste vérif (effectue quelques vérifications sur %files)"
 
-#: ../rpm.c:448
+#: rpm.c:447
 #, fuzzy
 msgid "compile (prep and compile)"
 msgstr "\t\t\t  c - compile (prépare et compile)"
 
-#: ../rpm.c:450
+#: rpm.c:449
 #, fuzzy
 msgid "install (prep, compile, install)"
 msgstr "\t\t\t  i - installe (prépare, compile, installe)"
 
-#: ../rpm.c:452
+#: rpm.c:451
 #, fuzzy
 msgid "binary package (prep, compile, install, package)"
 msgstr "\t\t\t  b - package binaire (prépare, compile, installe, package)"
 
-#: ../rpm.c:454
+#: rpm.c:453
 #, fuzzy
 msgid "bin/src package (prep, compile, install, package)"
 msgstr "\t\t\t  a - package bin/src (prépare, compile, installe, package)"
 
-#: ../rpm.c:460
+#: rpm.c:459
 msgid "remove sources and spec file when done"
 msgstr ""
 
-#: ../rpm.c:462
+#: rpm.c:461
 #, fuzzy
 msgid "generate PGP/GPG signature"
 msgstr "      --sign            - genère une signature PGP"
 
-#: ../rpm.c:463
+#: rpm.c:462
 msgid "      --buildroot <dir>   "
 msgstr ""
 
-#: ../rpm.c:464
+#: rpm.c:463
 msgid "use <dir> as the build root"
 msgstr ""
 
-#: ../rpm.c:465
+#: rpm.c:464
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: ../rpm.c:466
+#: rpm.c:465
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: ../rpm.c:468
+#: rpm.c:467
 msgid "do not execute any stages"
 msgstr ""
 
-#: ../rpm.c:469
+#: rpm.c:468
 #, fuzzy
 msgid "      --timecheck <secs>  "
 msgstr "    --checksig <pkg>+  - vérifie la signature PGP"
 
-#: ../rpm.c:470
+#: rpm.c:469
 #, fuzzy
 msgid "set the time check to <secs> seconds (0 disables)"
 msgstr ""
 "      --time-check <s>  - positionne l'intervalle de vérification à S "
 "secondes (0 le désactive)"
 
-#: ../rpm.c:472
+#: rpm.c:471
 msgid "    --rebuild <src_pkg>   "
 msgstr ""
 
-#: ../rpm.c:473
+#: rpm.c:472
 #, fuzzy
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
@@ -1185,256 +935,260 @@ msgstr ""
 "                          et efface le fichier spec, les sources, les "
 "patches, et les icones."
 
-#: ../rpm.c:474
+#: rpm.c:473
 #, fuzzy
 msgid "    --rmsource <spec>     "
 msgstr "    --checksig <pkg>+  - vérifie la signature PGP"
 
-#: ../rpm.c:475
+#: rpm.c:474
 msgid "remove sources and spec file"
 msgstr ""
 
-#: ../rpm.c:476
+#: rpm.c:475
 msgid "    --recompile <src_pkg> "
 msgstr ""
 
-#: ../rpm.c:477
+#: rpm.c:476
 msgid "like --rebuild, but don't build any package"
 msgstr ""
 
-#: ../rpm.c:478
+#: rpm.c:477
 #, fuzzy
 msgid "    --resign <pkg>+       "
 msgstr "    --checksig <pkg>+  - vérifie la signature PGP"
 
-#: ../rpm.c:479
+#: rpm.c:478
 msgid "sign a package (discard current signature)"
 msgstr ""
 
-#: ../rpm.c:480
+#: rpm.c:479
 msgid "    --addsign <pkg>+      "
 msgstr ""
 
-#: ../rpm.c:481
+#: rpm.c:480
 msgid "add a signature to a package"
 msgstr ""
 
-#: ../rpm.c:483
+#: rpm.c:482
 #, fuzzy
 msgid "    --checksig <pkg>+     "
 msgstr "    --checksig <pkg>+  - vérifie la signature PGP"
 
-#: ../rpm.c:484
+#: rpm.c:483
 msgid "verify package signature"
 msgstr ""
 
-#: ../rpm.c:486
+#: rpm.c:485
 msgid "skip any PGP signatures"
 msgstr ""
 
-#: ../rpm.c:488
+#: rpm.c:487
 #, fuzzy
 msgid "skip any GPG signatures"
 msgstr "      --sign            - genère une signature PGP"
 
-#: ../rpm.c:490
+#: rpm.c:489
 msgid "skip any MD5 signatures"
 msgstr ""
 
-#: ../rpm.c:492
+#: rpm.c:491
 msgid "list the tags that can be used in a query format"
 msgstr ""
 
-#: ../rpm.c:494
+#: rpm.c:493
 msgid "make sure a valid database exists"
 msgstr ""
 
-#: ../rpm.c:496
+#: rpm.c:495
 msgid "rebuild database from existing database"
 msgstr ""
 
-#: ../rpm.c:631 ../rpm.c:637 ../rpm.c:644 ../rpm.c:650 ../rpm.c:659
-#: ../rpm.c:666 ../rpm.c:713 ../rpm.c:719 ../rpm.c:779 ../rpm.c:787
-#: ../rpm.c:794 ../rpm.c:803 ../rpm.c:810 ../rpm.c:818 ../rpm.c:854
-#: ../rpm.c:909 ../rpm.c:916
+#: rpm.c:639 rpm.c:645 rpm.c:652 rpm.c:658 rpm.c:667 rpm.c:674 rpm.c:721
+#: rpm.c:727 rpm.c:761 rpm.c:767 rpm.c:773 rpm.c:781 rpm.c:816 rpm.c:871
+#: rpm.c:878
 msgid "only one major mode may be specified"
 msgstr "un seul mode majeur peut être spécifié"
 
-#: ../rpm.c:652
+#: rpm.c:660
 #, fuzzy
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr "-u et --uninstall sont obsolètes et seront bientôt supprimés.\n"
 
-#: ../rpm.c:654
+#: rpm.c:662
 msgid "Use -e or --erase instead.\n"
 msgstr "Utilisez de préférence -e ou --erase.\n"
 
-#: ../rpm.c:670
+#: rpm.c:678
 msgid "--build (-b) requires one of a,b,i,c,p,l as its sole argument"
 msgstr "--build (-b) requiert comme seul argument l'un parmi a,b,i,c,p,l"
 
-#: ../rpm.c:674
+#: rpm.c:682
 #, fuzzy
 msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
 msgstr "--build (-b) requiert comme seul argument l'un parmi a,b,i,c,p,l"
 
-#: ../rpm.c:726 ../rpm.c:732 ../rpm.c:739 ../rpm.c:746 ../rpm.c:755
-#: ../rpm.c:763 ../rpm.c:771 ../rpm.c:923
+#: rpm.c:734 rpm.c:740 rpm.c:747 rpm.c:754 rpm.c:885
 msgid "one type of query/verify may be performed at a time"
 msgstr "un seul type de requête/vérification peut être effectué à la fois"
 
-#: ../rpm.c:826
+#: rpm.c:789
 #, fuzzy
 msgid "arguments to --dbpath must begin with a /"
 msgstr "les arguments de --root (-r) doivent commencer par un /"
 
-#: ../rpm.c:860
+#: rpm.c:822
 #, fuzzy
 msgid "relocations must begin with a /"
 msgstr "les arguments de --root (-r) doivent commencer par un /"
 
-#: ../rpm.c:862
+#: rpm.c:824
 msgid "relocations must contain a ="
 msgstr ""
 
-#: ../rpm.c:865
+#: rpm.c:827
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: ../rpm.c:874
+#: rpm.c:836
 #, fuzzy
 msgid "exclude paths must begin with a /"
 msgstr "les arguments de --root (-r) doivent commencer par un /"
 
-#: ../rpm.c:883
+#: rpm.c:845
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: ../rpm.c:936
+#: rpm.c:898
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: ../rpm.c:941
+#: rpm.c:903
 #, fuzzy
 msgid "--timecheck may only be used during package builds"
 msgstr "--clean ne peut être spécifié que lors de la construction d'un package"
 
-#: ../rpm.c:944 ../rpm.c:947
-msgid "unexpected query specifiers"
-msgstr "spécificateurs de requêtes inattendus"
+#: rpm.c:906
+#, fuzzy
+msgid "unexpected query flags"
+msgstr "source de requête inattendue"
+
+#: rpm.c:909
+#, fuzzy
+msgid "unexpected query format"
+msgstr "source de requête inattendue"
 
-#: ../rpm.c:951
+#: rpm.c:913
 msgid "unexpected query source"
 msgstr "source de requête inattendue"
 
-#: ../rpm.c:957
+#: rpm.c:919
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "seules l'installation et la mise à jour peuvent être forcées"
 
-#: ../rpm.c:960
+#: rpm.c:922
 #, fuzzy
 msgid "files may only be relocated during package installation"
 msgstr ""
 "--replacefiles ne peut être spécifié que lors de l'installation d'un package"
 
-#: ../rpm.c:963
+#: rpm.c:925
 #, fuzzy
 msgid "only one of --prefix or --relocate may be used"
 msgstr "un seul mode majeur peut être spécifié"
 
-#: ../rpm.c:966
+#: rpm.c:928
 #, fuzzy
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr "--clean ne peut être spécifié que lors de la construction d'un package"
 
-#: ../rpm.c:969
+#: rpm.c:931
 #, fuzzy
 msgid "--prefix may only be used when installing new packages"
 msgstr "--sign ne peut être spécifié que lors de la construction d'un package"
 
-#: ../rpm.c:972
+#: rpm.c:934
 #, fuzzy
 msgid "arguments to --prefix must begin with a /"
 msgstr "les arguments de --root (-r) doivent commencer par un /"
 
-#: ../rpm.c:975
+#: rpm.c:937
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 "--hash (-h) ne peut être spécifié que lors de l'installation d'un package"
 
-#: ../rpm.c:979
+#: rpm.c:941
 msgid "--percent may only be specified during package installation"
 msgstr ""
 "--percent ne peut être spécifié que lors de l'installation d'un package"
 
-#: ../rpm.c:983
+#: rpm.c:945
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 "--replacefiles ne peut être spécifié que lors de l'installation d'un package"
 
-#: ../rpm.c:987
+#: rpm.c:949
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 "--replacepkgs ne peut être spécifié que lors de l'installation d'un package"
 
-#: ../rpm.c:991
+#: rpm.c:953
 #, fuzzy
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 "--percent ne peut être spécifié que lors de l'installation d'un package"
 
-#: ../rpm.c:995
+#: rpm.c:957
 #, fuzzy
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 "--percent ne peut être spécifié que lors de l'installation d'un package"
 
-#: ../rpm.c:999
+#: rpm.c:961
 #, fuzzy
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "un seul mode majeur peut être spécifié"
 
-#: ../rpm.c:1003
+#: rpm.c:965
 #, fuzzy
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 "--percent ne peut être spécifié que lors de l'installation d'un package"
 
-#: ../rpm.c:1007
+#: rpm.c:969
 #, fuzzy
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 "--percent ne peut être spécifié que lors de l'installation d'un package"
 
-#: ../rpm.c:1011
+#: rpm.c:973
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 "--percent ne peut être spécifié que lors de l'installation d'un package"
 
-#: ../rpm.c:1015
+#: rpm.c:977
 #, fuzzy
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 "--replacepkgs ne peut être spécifié que lors de l'installation d'un package"
 
-#: ../rpm.c:1019
+#: rpm.c:981
 #, fuzzy
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 "--replacefiles ne peut être spécifié que lors de l'installation d'un package"
 
-#: ../rpm.c:1023
+#: rpm.c:985
 #, fuzzy
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 "--test ne peut être spécifié que lors de l'installation ou désinstallation "
 "d'un package"
 
-#: ../rpm.c:1028
+#: rpm.c:990
 #, fuzzy
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
@@ -1443,7 +1197,7 @@ msgstr ""
 "--test ne peut être spécifié que lors de l'installation ou désinstallation "
 "d'un package"
 
-#: ../rpm.c:1032
+#: rpm.c:994
 #, fuzzy
 msgid ""
 "--notriggers may only be specified during package installation, erasure, and "
@@ -1452,7 +1206,7 @@ msgstr ""
 "--test ne peut être spécifié que lors de l'installation ou désinstallation "
 "d'un package"
 
-#: ../rpm.c:1038
+#: rpm.c:1000
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, installation, "
@@ -1461,13 +1215,7 @@ msgstr ""
 "--test ne peut être spécifié que lors de l'installation ou désinstallation "
 "d'un package"
 
-#: ../rpm.c:1043
-#, fuzzy
-msgid "--nofiles may only be specified during package verification"
-msgstr ""
-"--replacefiles ne peut être spécifié que lors de l'installation d'un package"
-
-#: ../rpm.c:1049
+#: rpm.c:1005
 #, fuzzy
 msgid ""
 "--test may only be specified during package installation, erasure, and "
@@ -1476,7 +1224,7 @@ msgstr ""
 "--test ne peut être spécifié que lors de l'installation ou désinstallation "
 "d'un package"
 
-#: ../rpm.c:1054
+#: rpm.c:1010
 #, fuzzy
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
@@ -1485,2042 +1233,2377 @@ msgstr ""
 "--root (-r) ne peut être spécifié que lors de l'installation, de la "
 "désinstallation ou de l'interrogation d'un package"
 
-#: ../rpm.c:1059
+#: rpm.c:1015
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "les arguments de --root (-r) doivent commencer par un /"
 
-#: ../rpm.c:1063
-#, fuzzy
-msgid "--clean may only be used with -b and -t"
-msgstr "--clean ne peut être spécifié que lors de la construction d'un package"
-
-#: ../rpm.c:1066
-#, fuzzy
-msgid "--rmsource may only be used with -b and -t"
-msgstr "--oldpackage ne peut être spécifié que lors de mises à jour"
-
-#: ../rpm.c:1069
-#, fuzzy
-msgid "--short-circuit may only be used during package building"
-msgstr "--sign ne peut être spécifié que lors de la construction d'un package"
-
-#: ../rpm.c:1073
-msgid "--short-circuit may only be used with -bc, -bi, -bs, -tc -ti, or -ts"
-msgstr ""
-
-#: ../rpm.c:1079
+#: rpm.c:1018
 msgid "--oldpackage may only be used during upgrades"
 msgstr "--oldpackage ne peut être spécifié que lors de mises à jour"
 
-#: ../rpm.c:1084
+#: rpm.c:1023
 #, fuzzy
 msgid ""
 "ftp options can only be used during package queries, installs, and upgrades"
 msgstr "--sign ne peut être spécifié que lors de la construction d'un package"
 
-#: ../rpm.c:1090
+#: rpm.c:1029
 #, fuzzy
 msgid ""
 "http options can only be used during package queries, installs, and upgrades"
 msgstr "--sign ne peut être spécifié que lors de la construction d'un package"
 
-#: ../rpm.c:1094
+#: rpm.c:1033
 #, fuzzy
 msgid "--nopgp may only be used during signature checking"
 msgstr "--sign ne peut être spécifié que lors de la construction d'un package"
 
-#: ../rpm.c:1097
+#: rpm.c:1036
 #, fuzzy
 msgid "--nogpg may only be used during signature checking"
 msgstr "--sign ne peut être spécifié que lors de la construction d'un package"
 
-#: ../rpm.c:1100
+#: rpm.c:1039
 #, fuzzy
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr "--sign ne peut être spécifié que lors de la construction d'un package"
 
-#: ../rpm.c:1126
+#: rpm.c:1063
+msgid "no files to sign\n"
+msgstr ""
+
+#: rpm.c:1068
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: ../rpm.c:1143
+#: rpm.c:1083
 #, fuzzy
 msgid "pgp not found: "
 msgstr "aucun package n'a été spécifié pour la désinstallation"
 
-#: ../rpm.c:1146
-msgid "Use `%%_signature pgp5' instead of `%%_signature pgp' in macro file.\n"
-msgstr ""
-
-#: ../rpm.c:1153
-#, fuzzy
-msgid "pgp version 5 not found: "
-msgstr "aucun package n'a été spécifié pour la désinstallation"
-
-#: ../rpm.c:1156
-msgid "Use `%%_signature pgp' instead of `%%_signature pgp5' in macro file.\n"
-msgstr ""
-
-#: ../rpm.c:1162
+#: rpm.c:1087
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: ../rpm.c:1163
+#: rpm.c:1089
 msgid "Pass phrase check failed\n"
 msgstr "La vérification du mot de passe a échoué\n"
 
-#: ../rpm.c:1166
+#: rpm.c:1092
 msgid "Pass phrase is good.\n"
 msgstr "Mot de passe correct.\n"
 
-#: ../rpm.c:1173
+#: rpm.c:1097
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: ../rpm.c:1178
+#: rpm.c:1103
 msgid "--sign may only be used during package building"
 msgstr "--sign ne peut être spécifié que lors de la construction d'un package"
 
-#: ../rpm.c:1195
+#: rpm.c:1118
 #, fuzzy
 msgid "exec failed\n"
 msgstr "La construction a échoué.\n"
 
-#: ../rpm.c:1214
+#: rpm.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: ../rpm.c:1225
+#: rpm.c:1148
 msgid "no packages given for signature check"
 msgstr "aucun package n'a été spécifié pour la vérification de signature"
 
-#: ../rpm.c:1233
+#: rpm.c:1160
 #, fuzzy
 msgid "no packages given for signing"
 msgstr "aucun package n'a été spécifié pour la désinstallation"
 
-#: ../rpm.c:1242
+#: rpm.c:1173
 msgid "no packages files given for rebuild"
 msgstr "aucun package n'a été spécifié pour la reconstruction"
 
-#: ../rpm.c:1299
+#: rpm.c:1230
 msgid "no spec files given for build"
 msgstr "aucun package n'a été spécifié pour la construction"
 
-#: ../rpm.c:1301
+#: rpm.c:1232
 #, fuzzy
 msgid "no tar files given for build"
 msgstr "aucun package n'a été spécifié pour la construction"
 
-#: ../rpm.c:1313
+#: rpm.c:1244
 msgid "no packages given for uninstall"
 msgstr "aucun package n'a été spécifié pour la désinstallation"
 
-#: ../rpm.c:1362
+#: rpm.c:1294
 msgid "no packages given for install"
 msgstr "aucun package n'a été spécifié pour l'installation"
 
-#: ../rpm.c:1385
+#: rpm.c:1317
 #, fuzzy
 msgid "extra arguments given for query of all packages"
 msgstr "aucun argument n'a été fourni pour la requête"
 
-#: ../rpm.c:1390
+#: rpm.c:1322
 msgid "no arguments given for query"
 msgstr "aucun argument n'a été fourni pour la requête"
 
-#: ../rpm.c:1411
+#: rpm.c:1339
 #, fuzzy
 msgid "extra arguments given for verify of all packages"
 msgstr "aucun argument n'a été fourni pour la requête"
 
-#: ../rpm.c:1415
+#: rpm.c:1343
 msgid "no arguments given for verify"
 msgstr "aucun argument n'a été fourni pour la vérification"
 
-#: ../rpm2cpio.c:42
+#: rpm2cpio.c:34
 msgid "argument is not an RPM package\n"
 msgstr ""
 
-#: ../rpm2cpio.c:46
+#: rpm2cpio.c:38
 msgid "error reading header from package\n"
 msgstr ""
 
-#: ../url.c:136
+#: build/build.c:83 build/pack.c:263
+#, fuzzy
+msgid "Unable to open temp file"
+msgstr "impossible d'ouvrir: %s\n"
+
+#: build/build.c:124
 #, c-format
-msgid "Password for %s@%s: "
+msgid "Executing: %s\n"
 msgstr ""
 
-#: ../url.c:160 ../url.c:186
+#: build/build.c:128
 #, c-format
-msgid "error: %sport must be a number\n"
+msgid "Exec of %s failed (%s)"
 msgstr ""
 
-#: ../url.c:271
-msgid "url port must be a number\n"
+#: build/build.c:138
+#, c-format
+msgid "Bad exit status from %s (%s)"
 msgstr ""
 
-#. XXX PARANOIA
-#: ../url.c:308
-#, c-format
-msgid "logging into %s as %s, pw %s\n"
+#: build/expression.c:208
+msgid "syntax error while parsing =="
 msgstr ""
 
-#: ../lib/rpmdb.c:169 ../url.c:422
-#, fuzzy, c-format
-msgid "failed to open %s\n"
-msgstr "impossible d'ouvrir: %s\n"
+#: build/expression.c:238
+msgid "syntax error while parsing &&"
+msgstr ""
 
-#: ../url.c:437
-#, fuzzy, c-format
-msgid "failed to create %s\n"
-msgstr "impossible d'ouvrir: %s\n"
+#: build/expression.c:247
+msgid "syntax error while parsing ||"
+msgstr ""
 
-#: ../build/build.c:83 ../build/pack.c:248
-#, fuzzy
-msgid "Unable to open temp file"
-msgstr "impossible d'ouvrir: %s\n"
-
-#: ../build/build.c:122
-#, c-format
-msgid "Executing: %s\n"
-msgstr ""
-
-#: ../build/build.c:126
-#, c-format
-msgid "Exec of %s failed (%s)"
-msgstr ""
-
-#: ../build/build.c:136
-#, c-format
-msgid "Bad exit status from %s (%s)"
-msgstr ""
-
-#: ../build/expression.c:189 ../build/expression.c:198
-msgid "parse error in tokenizer"
-msgstr ""
-
-#: ../build/expression.c:240
+#: build/expression.c:289
 msgid "parse error in expression"
 msgstr ""
 
-#: ../build/expression.c:270
+#: build/expression.c:319
 msgid "unmatched ("
 msgstr ""
 
-#: ../build/expression.c:288
+#: build/expression.c:337
 msgid "undefined identifier"
 msgstr ""
 
-#: ../build/expression.c:307
+#: build/expression.c:356
 msgid "- only on numbers"
 msgstr ""
 
-#: ../build/expression.c:323
+#: build/expression.c:372
 msgid "! only on numbers"
 msgstr ""
 
-#: ../build/expression.c:362 ../build/expression.c:407
-#: ../build/expression.c:464 ../build/expression.c:551
+#: build/expression.c:411 build/expression.c:456 build/expression.c:513
+#: build/expression.c:600
 msgid "types must match"
 msgstr ""
 
-#: ../build/expression.c:375
+#: build/expression.c:424
 msgid "* / not suported for strings"
 msgstr ""
 
-#: ../build/expression.c:423
+#: build/expression.c:472
 msgid "- not suported for strings"
 msgstr ""
 
-#: ../build/expression.c:564
+#: build/expression.c:613
 msgid "&& and || not suported for strings"
 msgstr ""
 
-#: ../build/expression.c:595 ../build/expression.c:640
+#: build/expression.c:644 build/expression.c:689
 msgid "syntax error in expression"
 msgstr ""
 
-#: ../build/files.c:220
+#: build/files.c:224
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr ""
 
-#: ../build/files.c:265 ../build/files.c:277 ../build/files.c:346
-#: ../build/files.c:358 ../build/files.c:389
+#: build/files.c:267 build/files.c:349 build/files.c:512
 #, c-format
-msgid "Bad %s() syntax: %s"
+msgid "Missing '(' in %s %s"
 msgstr ""
 
-#: ../build/files.c:307
+#: build/files.c:278 build/files.c:466 build/files.c:523
 #, c-format
-msgid "Invalid %s token: %s"
-msgstr ""
-
-#: ../build/files.c:369
-msgid "No files after %%defattr(): %s"
+msgid "Missing ')' in %s(%s"
 msgstr ""
 
-#: ../build/files.c:399
+#: build/files.c:316 build/files.c:491
 #, c-format
-msgid "Bad %s() mode spec: %s"
+msgid "Invalid %s token: %s"
 msgstr ""
 
-#: ../build/files.c:411
+#: build/files.c:365
 #, c-format
-msgid "Bad %s() dirmode spec: %s"
+msgid "Non-white space follows %s(): %s"
 msgstr ""
 
-#: ../build/files.c:462
-msgid "Bad %%config() syntax: %s"
-msgstr ""
+#: build/files.c:403
+#, fuzzy, c-format
+msgid "Bad syntax: %s(%s)"
+msgstr "impossible d'ouvrir: %s\n"
 
-#: ../build/files.c:480
-msgid "Invalid %%config token: %s"
-msgstr ""
+#: build/files.c:413
+#, fuzzy, c-format
+msgid "Bad mode spec: %s(%s)"
+msgstr "impossible d'ouvrir: %s\n"
 
-#: ../build/files.c:503 ../build/files.c:515 ../build/files.c:528
-msgid "Bad %%lang() syntax: %s"
+#: build/files.c:425
+#, c-format
+msgid "Bad dirmode spec: %s(%s)"
 msgstr ""
 
-#: ../build/files.c:534
-msgid "%%lang() entries are 2 characters: %s"
+#: build/files.c:549
+msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
 msgstr ""
 
-#: ../build/files.c:540
-msgid "Only one entry in %%lang(): %s"
+#: build/files.c:559
+msgid "Duplicate locale %.*s in %%lang(%s)"
 msgstr ""
 
-#: ../build/files.c:620
+#: build/files.c:651
 msgid "Hit limit for %%docdir"
 msgstr ""
 
-#: ../build/files.c:626
+#: build/files.c:657
 msgid "Only one arg for %%docdir"
 msgstr ""
 
 #. We already got a file -- error
-#: ../build/files.c:651
+#: build/files.c:682
 #, fuzzy, c-format
 msgid "Two files on one line: %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: ../build/files.c:664
+#: build/files.c:695
 #, fuzzy, c-format
 msgid "File must begin with \"/\": %s"
 msgstr "les arguments de --root (-r) doivent commencer par un /"
 
-#: ../build/files.c:676
+#: build/files.c:707
 msgid "Can't mix special %%doc with other forms: %s"
 msgstr ""
 
-#: ../build/files.c:764
+#: build/files.c:792
 #, c-format
 msgid "File listed twice: %s"
 msgstr ""
 
-#: ../build/files.c:916
+#: build/files.c:952
 #, c-format
 msgid "File doesn't match prefix (%s): %s"
 msgstr ""
 
-#: ../build/files.c:926 ../build/files.c:1049
+#: build/files.c:962 build/files.c:1099
 #, fuzzy, c-format
 msgid "File not found: %s"
 msgstr "aucun package n'a été spécifié pour la désinstallation"
 
-#: ../build/files.c:969
+#: build/files.c:1005
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: ../build/files.c:983
+#: build/files.c:1019
 #, c-format
 msgid "File %4d: 0%o %s.%s\t %s\n"
 msgstr ""
 
-#: ../build/files.c:1033
+#: build/files.c:1083
 #, c-format
 msgid "File needs leading \"/\": %s"
 msgstr ""
 
-#: ../build/files.c:1090
+#: build/files.c:1140
 #, fuzzy
 msgid "Could not open %%files file: %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: ../build/files.c:1097 ../build/pack.c:433
+#: build/files.c:1147 build/pack.c:484
 #, c-format
 msgid "line: %s"
 msgstr ""
 
-#: ../build/files.c:1394 ../build/parsePrep.c:31
+#: build/files.c:1469 build/parsePrep.c:29
 #, c-format
 msgid "Bad owner/group: %s"
 msgstr ""
 
-#: ../build/files.c:1448
+#: build/files.c:1522
 #, c-format
 msgid "Couldn't exec %s"
 msgstr ""
 
-#: ../build/files.c:1452
+#: build/files.c:1526
 #, c-format
 msgid "Couldn't fork %s"
 msgstr ""
 
-#: ../build/files.c:1502
+#: build/files.c:1605
 #, fuzzy, c-format
 msgid "%s failed"
 msgstr "La construction a échoué.\n"
 
-#: ../build/files.c:1506
+#: build/files.c:1609
 #, fuzzy, c-format
 msgid "failed to write all data to %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: ../build/files.c:1540
-msgid "Finding provides...\n"
-msgstr ""
-
-#: ../build/files.c:1547
-msgid "Failed to find provides"
-msgstr ""
-
-#: ../build/files.c:1566
-msgid "Finding requires...\n"
+#: build/files.c:1695
+#, c-format
+msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: ../build/files.c:1573
-#, fuzzy
-msgid "Failed to find requires"
+#: build/files.c:1723 build/files.c:1732
+#, fuzzy, c-format
+msgid "Failed to find %s:"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: ../build/files.c:1607
-msgid "Provides:"
-msgstr ""
-
-#: ../build/files.c:1622
-msgid "Prereqs:"
-msgstr ""
-
-#: ../build/files.c:1634
-msgid "Requires:"
-msgstr ""
-
-#: ../build/files.c:1658
+#: build/files.c:1838
 #, c-format
 msgid "Processing files: %s\n"
 msgstr ""
 
-#: ../build/names.c:32 ../build/names.c:64
+#: build/names.c:32 build/names.c:64
 msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
 msgstr ""
 
-#: ../build/names.c:97 ../build/names.c:129
+#: build/names.c:97 build/names.c:129
 msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
 msgstr ""
 
-#: ../build/names.c:167
+#: build/names.c:167
 #, c-format
 msgid "Could not canonicalize hostname: %s\n"
 msgstr ""
 
-#: ../build/pack.c:134
+#: build/pack.c:131
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr ""
 
-#: ../build/pack.c:167
+#: build/pack.c:148
+#, fuzzy, c-format
+msgid "cannot create %s: %s\n"
+msgstr "impossible d'ouvrir: %s\n"
+
+#: build/pack.c:183
 #, fuzzy, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: ../build/pack.c:177
+#: build/pack.c:193
 #, fuzzy, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: ../build/pack.c:197
+#: build/pack.c:213
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr ""
 
-#: ../build/pack.c:203
+#: build/pack.c:219
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr ""
 
-#: ../build/pack.c:259
+#: build/pack.c:274
 msgid "Bad CSA data"
 msgstr ""
 
-#: ../build/pack.c:282
+#: build/pack.c:305
 #, fuzzy, c-format
 msgid "Could not open %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: ../build/pack.c:314 ../build/pack.c:357
+#: build/pack.c:337 build/pack.c:379
 #, fuzzy, c-format
 msgid "Unable to write package: %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: ../build/pack.c:347
+#: build/pack.c:352
+#, fuzzy, c-format
+msgid "Generating signature: %d\n"
+msgstr "      --sign            - genère une signature PGP"
+
+#: build/pack.c:369
 #, fuzzy, c-format
 msgid "Unable to read sigtarget: %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: ../build/pack.c:372
+#: build/pack.c:394
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
 
-#: ../build/pack.c:387
+#: build/pack.c:411 build/pack.c:435
 #, fuzzy, c-format
 msgid "create archive failed on file %s: %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: ../build/pack.c:403
+#: build/pack.c:454
 #, c-format
 msgid "cpio_copy write failed: %s"
 msgstr ""
 
-#: ../build/pack.c:410
+#: build/pack.c:461
 #, c-format
 msgid "cpio_copy read failed: %s"
 msgstr ""
 
-#: ../build/pack.c:489
+#: build/pack.c:540
 #, c-format
 msgid "Could not open PreIn file: %s"
 msgstr ""
 
-#: ../build/pack.c:496
+#: build/pack.c:547
 #, c-format
 msgid "Could not open PreUn file: %s"
 msgstr ""
 
-#: ../build/pack.c:503
+#: build/pack.c:554
 #, c-format
 msgid "Could not open PostIn file: %s"
 msgstr ""
 
-#: ../build/pack.c:510
+#: build/pack.c:561
 #, c-format
 msgid "Could not open PostUn file: %s"
 msgstr ""
 
-#: ../build/pack.c:518
+#: build/pack.c:569
 #, c-format
 msgid "Could not open VerifyScript file: %s"
 msgstr ""
 
-#: ../build/pack.c:534
+#: build/pack.c:585
 #, c-format
 msgid "Could not open Trigger script file: %s"
 msgstr ""
 
-#: ../build/parseBuildInstallClean.c:27
+#: build/parseBuildInstallClean.c:27
 #, c-format
 msgid "line %d: second %s"
 msgstr ""
 
-#: ../build/parseChangelog.c:95
+#: build/parseChangelog.c:103
 msgid "%%changelog entries must start with *"
 msgstr ""
 
-#: ../build/parseChangelog.c:103
+#: build/parseChangelog.c:111
 msgid "incomplete %%changelog entry"
 msgstr ""
 
-#: ../build/parseChangelog.c:118
+#: build/parseChangelog.c:126
 msgid "bad date in %%changelog: %s"
 msgstr ""
 
-#: ../build/parseChangelog.c:123
+#: build/parseChangelog.c:131
 msgid "%%changelog not in decending chronological order"
 msgstr ""
 
-#: ../build/parseChangelog.c:131 ../build/parseChangelog.c:142
+#: build/parseChangelog.c:139 build/parseChangelog.c:150
 msgid "missing name in %%changelog"
 msgstr ""
 
-#: ../build/parseChangelog.c:149
+#: build/parseChangelog.c:157
 msgid "no description in %%changelog"
 msgstr ""
 
-#: ../build/parseDescription.c:35
+#: build/parseDescription.c:33
 msgid "line %d: Error parsing %%description: %s"
 msgstr ""
 
-#: ../build/parseDescription.c:48 ../build/parseFiles.c:42
-#: ../build/parseScript.c:170
+#: build/parseDescription.c:46 build/parseFiles.c:40 build/parseScript.c:168
 #, fuzzy, c-format
 msgid "line %d: Bad option %s: %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: ../build/parseDescription.c:62 ../build/parseFiles.c:56
-#: ../build/parseScript.c:184
+#: build/parseDescription.c:60 build/parseFiles.c:54 build/parseScript.c:182
 #, c-format
 msgid "line %d: Too many names: %s"
 msgstr ""
 
-#: ../build/parseDescription.c:72 ../build/parseFiles.c:66
-#: ../build/parseScript.c:194
+#: build/parseDescription.c:70 build/parseFiles.c:64 build/parseScript.c:192
 #, c-format
 msgid "line %d: Package does not exist: %s"
 msgstr ""
 
-#: ../build/parseDescription.c:84
+#: build/parseDescription.c:82
 #, c-format
 msgid "line %d: Second description"
 msgstr ""
 
-#: ../build/parseFiles.c:29
+#: build/parseFiles.c:27
 msgid "line %d: Error parsing %%files: %s"
 msgstr ""
 
-#: ../build/parseFiles.c:74
+#: build/parseFiles.c:72
 msgid "line %d: Second %%files list"
 msgstr ""
 
-#: ../build/parsePreamble.c:143
+#: build/parsePreamble.c:141
 #, c-format
 msgid "Architecture is excluded: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:148
+#: build/parsePreamble.c:146
 #, c-format
 msgid "Architecture is not included: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:153
+#: build/parsePreamble.c:151
 #, c-format
 msgid "OS is excluded: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:158
+#: build/parsePreamble.c:156
 #, c-format
 msgid "OS is not included: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:193
+#: build/parsePreamble.c:170
 #, c-format
 msgid "%s field must be present in package: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:215
+#: build/parsePreamble.c:192
 #, c-format
 msgid "Duplicate %s entries in package: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:262
+#: build/parsePreamble.c:239
 #, fuzzy, c-format
 msgid "Unable to stat icon: %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: ../build/parsePreamble.c:273
+#: build/parsePreamble.c:250
 #, fuzzy, c-format
 msgid "Unable to read icon: %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: ../build/parsePreamble.c:283
+#: build/parsePreamble.c:260
 #, c-format
 msgid "Unknown icon type: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:346
+#: build/parsePreamble.c:323
 #, c-format
 msgid "line %d: Malformed tag: %s"
 msgstr ""
 
 #. Empty field
-#: ../build/parsePreamble.c:354
+#: build/parsePreamble.c:331
 #, c-format
 msgid "line %d: Empty tag: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:377 ../build/parsePreamble.c:384
+#: build/parsePreamble.c:354 build/parsePreamble.c:361
 #, fuzzy, c-format
 msgid "line %d: Illegal char '-' in %s: %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: ../build/parsePreamble.c:422
+#: build/parsePreamble.c:399
 #, c-format
 msgid "line %d: BuildRoot can not be \"/\": %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:435
+#: build/parsePreamble.c:412
 #, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:447
+#: build/parsePreamble.c:424
 #, fuzzy, c-format
 msgid "line %d: Docdir must begin with '/': %s"
 msgstr "les arguments de --root (-r) doivent commencer par un /"
 
-#: ../build/parsePreamble.c:459
+#: build/parsePreamble.c:436
 #, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:524
+#: build/parsePreamble.c:499
 #, c-format
 msgid "line %d: Bad BuildArchitecture format: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:534
+#: build/parsePreamble.c:509
 #, c-format
 msgid "Internal error: Bogus tag %d"
 msgstr ""
 
-#: ../build/parsePreamble.c:679
+#: build/parsePreamble.c:656
 #, fuzzy, c-format
 msgid "Bad package specification: %s"
 msgstr "      Options de spécification de package:"
 
-#: ../build/parsePreamble.c:685
+#: build/parsePreamble.c:662
 #, c-format
 msgid "Package already exists: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:712
+#: build/parsePreamble.c:689
 #, c-format
 msgid "line %d: Unknown tag: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:737
+#: build/parsePreamble.c:714
 msgid "Spec file can't use BuildRoot"
 msgstr ""
 
-#: ../build/parsePrep.c:27
+#: build/parsePrep.c:25
 #, fuzzy, c-format
 msgid "Bad source: %s: %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: ../build/parsePrep.c:53
+#: build/parsePrep.c:51
 #, c-format
 msgid "No patch number %d"
 msgstr ""
 
-#: ../build/parsePrep.c:119
+#: build/parsePrep.c:117
 #, c-format
 msgid "No source number %d"
 msgstr ""
 
-#: ../build/parsePrep.c:138
+#: build/parsePrep.c:136
 #, fuzzy, c-format
 msgid "Couldn't download nosource %s: %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: ../build/parsePrep.c:193
+#: build/parsePrep.c:191
 msgid "Error parsing %%setup: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:208
+#: build/parsePrep.c:206
 msgid "line %d: Bad arg to %%setup %c: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:229
+#: build/parsePrep.c:227
 msgid "line %d: Bad %%setup option %s: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:353
+#: build/parsePrep.c:351
 msgid "line %d: Need arg to %%patch -b: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:361
+#: build/parsePrep.c:359
 msgid "line %d: Need arg to %%patch -z: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:373
+#: build/parsePrep.c:371
 msgid "line %d: Need arg to %%patch -p: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:379
+#: build/parsePrep.c:377
 msgid "line %d: Bad arg to %%patch -p: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:386
+#: build/parsePrep.c:384
 msgid "Too many patches!"
 msgstr ""
 
-#: ../build/parsePrep.c:390
+#: build/parsePrep.c:388
 msgid "line %d: Bad arg to %%patch: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:426
+#: build/parsePrep.c:424
 msgid "line %d: second %%prep"
 msgstr ""
 
-#: ../build/parseReqs.c:45
-#, c-format
-msgid "line %d: No file names in Conflicts: %s"
-msgstr ""
-
-#: ../build/parseReqs.c:79
-#, c-format
-msgid "line %d: No versions on file names in %s: %s"
-msgstr ""
+#: build/parseReqs.c:91
+#, fuzzy, c-format
+msgid ""
+"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
+msgstr "les arguments de --root (-r) doivent commencer par un /"
 
-#: ../build/parseReqs.c:85
+#: build/parseReqs.c:102
 #, c-format
-msgid "line %d: No versions in PreReq: %s"
+msgid "line %d: File name not permitted: %s"
 msgstr ""
 
-#: ../build/parseReqs.c:97
+#: build/parseReqs.c:134
 #, c-format
-msgid "line %d: Version required in %s: %s"
+msgid "line %d: Versioned file name not permitted: %s"
 msgstr ""
 
-#: ../build/parseReqs.c:126
+#: build/parseReqs.c:146
 #, c-format
-msgid "line %d: No file names in Obsoletes: %s"
+msgid "line %d: Version not permitted: %s"
 msgstr ""
 
-#: ../build/parseReqs.c:133
-#, c-format
-msgid "line %d: %s: tokens must begin with alpha-numeric: %s"
-msgstr ""
+#: build/parseReqs.c:172
+#, fuzzy, c-format
+msgid "line %d: Version required: %s"
+msgstr "impossible d'ouvrir: %s\n"
 
-#: ../build/parseScript.c:138
+#: build/parseScript.c:136
 #, c-format
 msgid "line %d: triggers must have --: %s"
 msgstr ""
 
-#: ../build/parseScript.c:148 ../build/parseScript.c:212
+#: build/parseScript.c:146 build/parseScript.c:210
 #, c-format
 msgid "line %d: Error parsing %s: %s"
 msgstr ""
 
-#: ../build/parseScript.c:158
+#: build/parseScript.c:156
 #, c-format
 msgid "line %d: script program must begin with '/': %s"
 msgstr ""
 
-#: ../build/parseScript.c:203
+#: build/parseScript.c:201
 #, c-format
 msgid "line %d: Second %s"
 msgstr ""
 
-#: ../build/parseSpec.c:120
+#: build/parseSpec.c:126
+#, fuzzy, c-format
+msgid "line %d: %s"
+msgstr "impossible d'ouvrir: %s\n"
+
+#: build/parseSpec.c:172
 #, fuzzy, c-format
 msgid "Unable to open: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: ../build/parseSpec.c:132
+#: build/parseSpec.c:184
 msgid "Unclosed %%if"
 msgstr ""
 
-#: ../build/parseSpec.c:188
-#, fuzzy, c-format
-msgid "line %d: %s"
-msgstr "impossible d'ouvrir: %s\n"
+#: build/parseSpec.c:243
+#, c-format
+msgid "%s:%d: parseExpressionBoolean returns %d"
+msgstr ""
 
 #. Got an else with no %if !
-#: ../build/parseSpec.c:213
+#: build/parseSpec.c:251
 msgid "%s:%d: Got a %%else with no if"
 msgstr ""
 
 #. Got an end with no %if !
-#: ../build/parseSpec.c:223
+#: build/parseSpec.c:262
 msgid "%s:%d: Got a %%endif with no if"
 msgstr ""
 
-#: ../build/parseSpec.c:235 ../build/parseSpec.c:244
+#: build/parseSpec.c:276 build/parseSpec.c:285
 msgid "malformed %%include statement"
 msgstr ""
 
-#: ../build/parseSpec.c:323
+#: build/parseSpec.c:366
 #, c-format
 msgid "Timecheck value must be an integer: %s"
 msgstr ""
 
-#: ../build/parseSpec.c:406
+#: build/parseSpec.c:449
 #, fuzzy
 msgid "No buildable architectures"
 msgstr "%s ne peut être construit sur cette architecture\n"
 
-#: ../build/parseSpec.c:451
+#: build/parseSpec.c:494
 #, fuzzy
 msgid "Package has no %%description: %s"
 msgstr "aucun package n'a été spécifié pour la désinstallation"
 
-#: ../build/spec.c:28
+#: build/spec.c:31
 #, c-format
 msgid "archive = %s, fs = %s\n"
 msgstr ""
 
-#: ../build/spec.c:224
+#: build/spec.c:237
 #, c-format
 msgid "line %d: Bad number: %s"
 msgstr ""
 
-#: ../build/spec.c:230
+#: build/spec.c:243
 #, c-format
 msgid "line %d: Bad no%s number: %d"
 msgstr ""
 
-#: ../build/spec.c:286
+#: build/spec.c:301
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: ../lib/cpio.c:362
+#: lib/cpio.c:385
 #, fuzzy, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: ../lib/cpio.c:368
+#: lib/cpio.c:391
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: ../lib/cpio.c:547
+#: lib/cpio.c:582
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: ../lib/cpio.c:1000
+#: lib/cpio.c:1044
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: ../lib/cpio.c:1003
+#: lib/cpio.c:1047
 msgid "Bad magic"
 msgstr ""
 
-#: ../lib/cpio.c:1004
+#: lib/cpio.c:1048
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: ../lib/cpio.c:1022
-msgid "Internal error"
-msgstr ""
-
-#: ../lib/cpio.c:1023
+#: lib/cpio.c:1066
 msgid "Header size too big"
 msgstr ""
 
-#: ../lib/cpio.c:1024
+#: lib/cpio.c:1067
 msgid "Unknown file type"
 msgstr ""
 
-#: ../lib/cpio.c:1033
+#: lib/cpio.c:1068
+msgid "Missing hard link"
+msgstr ""
+
+#: lib/cpio.c:1069
+msgid "Internal error"
+msgstr ""
+
+#: lib/cpio.c:1078
 #, fuzzy
 msgid " failed - "
 msgstr "La construction a échoué.\n"
 
-#: ../lib/dbindex.c:32
+#: lib/dbindex.c:32
 #, fuzzy, c-format
 msgid "cannot open file %s: %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: ../lib/dbindex.c:77
+#: lib/dbindex.c:84
 #, c-format
 msgid "error getting record %s from %s"
 msgstr ""
 
-#: ../lib/dbindex.c:105
+#: lib/dbindex.c:111
 #, c-format
 msgid "error storing record %s into %s"
 msgstr ""
 
-#: ../lib/dbindex.c:112
+#: lib/dbindex.c:118
 #, c-format
 msgid "error removing record %s into %s"
 msgstr ""
 
-#: ../lib/depends.c:429 ../lib/depends.c:588
+#. XXX legacy epoch-less requires/conflicts compatibility
+#: lib/depends.c:339
 #, c-format
-msgid "cannot read header at %d for dependency check"
+msgid ""
+"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
+"\tA %s\tB %s\n"
+msgstr ""
+
+#: lib/depends.c:368
+#, c-format
+msgid "  %s    A %s\tB %s\n"
+msgstr ""
+
+#: lib/depends.c:460
+msgid "dbrecMatchesDepFlags() failed to read header"
+msgstr ""
+
+#: lib/depends.c:695
+#, c-format
+msgid "%s: %s satisfied by added package.\n"
+msgstr ""
+
+#: lib/depends.c:712
+#, c-format
+msgid "%s: %s satisfied by added provide.\n"
+msgstr ""
+
+#: lib/depends.c:717
+#, c-format
+msgid "%s: %s satisfied by added file list.\n"
+msgstr ""
+
+#: lib/depends.c:747
+#, c-format
+msgid "%s: %s satisfied by rpmrc provides.\n"
+msgstr ""
+
+#: lib/depends.c:775
+#, c-format
+msgid "%s: %s satisfied by db file lists.\n"
+msgstr ""
+
+#: lib/depends.c:797
+#, c-format
+msgid "%s: %s satisfied by db provides.\n"
+msgstr ""
+
+#: lib/depends.c:819
+#, c-format
+msgid "%s: %s satisfied by db packages.\n"
+msgstr ""
+
+#: lib/depends.c:832
+#, c-format
+msgid "%s: %s satisfied by rpmlib version.\n"
 msgstr ""
 
-#: ../lib/depends.c:494
+#: lib/depends.c:842
 #, c-format
-msgid "dependencies: looking for %s\n"
+msgid "%s: %s unsatisfied.\n"
 msgstr ""
 
-#: ../lib/depends.c:682
+#. requirements are not satisfied.
+#: lib/depends.c:890
 #, fuzzy, c-format
 msgid "package %s require not satisfied: %s\n"
 msgstr "aucun package n'a été spécifié pour l'installation"
 
-#: ../lib/depends.c:725
+#. conflicts exist.
+#: lib/depends.c:952
 #, fuzzy, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "aucun package n'a été spécifié pour la désinstallation"
 
-#: ../lib/depends.c:825
-msgid "dbrecMatchesDepFlags() failed to read header"
+#: lib/depends.c:1007 lib/depends.c:1311
+#, c-format
+msgid "cannot read header at %d for dependency check"
 msgstr ""
 
-#: ../lib/depends.c:877
+#: lib/depends.c:1102
 #, c-format
 msgid "loop in prerequisite chain: %s"
 msgstr ""
 
-#: ../lib/falloc.c:149
+#: lib/falloc.c:160
 #, c-format
-msgid "free list corrupt (%u)- contact rpm-list@redhat.com\n"
+msgid ""
+"free list corrupt (%u)- please run\n"
+"\t\"rpm --rebuilddb\"\n"
+"More information is available from http://www.rpm.org or the "
+"rpm-list@redhat.com mailing list\n"
+"if \"rpm --rebuilddb\" fails to correct the problem.\n"
 msgstr ""
 
-#: ../lib/formats.c:97 ../lib/formats.c:114 ../lib/formats.c:134
-#: ../lib/formats.c:166 ../lib/header.c:1973 ../lib/header.c:1989
-#: ../lib/header.c:2009
+#: lib/formats.c:66 lib/formats.c:84 lib/formats.c:105 lib/formats.c:138
+#: lib/header.c:2122 lib/header.c:2139 lib/header.c:2159
 msgid "(not a number)"
 msgstr ""
 
-#: ../lib/fs.c:41
+#: lib/fs.c:40
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr ""
 
-#: ../lib/fs.c:76 ../lib/fs.c:246
+#: lib/fs.c:75 lib/fs.c:253
 #, fuzzy, c-format
 msgid "failed to stat %s: %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: ../lib/fs.c:117
+#: lib/fs.c:114
+msgid "getting list of mounted filesystems\n"
+msgstr ""
+
+#: lib/fs.c:119
 #, fuzzy, c-format
 msgid "failed to open %s: %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: ../lib/fs.c:267
+#: lib/fs.c:274
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr ""
 
-#: ../lib/header.c:669
-#, c-format
-msgid "Data type %d not supprted\n"
+#: lib/ftp.c:666
+msgid "Success"
 msgstr ""
 
-#. This should not be allowed
-#: ../lib/header.c:905
-msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
+#: lib/ftp.c:669
+msgid "Bad server response"
 msgstr ""
 
-#: ../lib/header.c:935
-#, c-format
-msgid "Data type %d not supported\n"
+#: lib/ftp.c:672
+msgid "Server IO error"
 msgstr ""
 
-#: ../lib/header.c:994
-#, c-format
-msgid "Bad count for headerAddEntry(): %d\n"
+#: lib/ftp.c:675
+msgid "Server timeout"
 msgstr ""
 
-#: ../lib/header.c:1328
-msgid "? expected in expression"
+#: lib/ftp.c:678
+msgid "Unable to lookup server host address"
 msgstr ""
 
-#: ../lib/header.c:1335
-msgid "{ expected after ? in expression"
+#: lib/ftp.c:681
+msgid "Unable to lookup server host name"
 msgstr ""
 
-#: ../lib/header.c:1345 ../lib/header.c:1377
-msgid "} expected in expression"
+#: lib/ftp.c:684
+msgid "Failed to connect to server"
 msgstr ""
 
-#: ../lib/header.c:1352
-msgid ": expected following ? subexpression"
+#: lib/ftp.c:687
+msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: ../lib/header.c:1365
-msgid "{ expected after : in expression"
+#: lib/ftp.c:690
+msgid "IO error to local file"
 msgstr ""
 
-#: ../lib/header.c:1384
-msgid "| expected at end of expression"
+#: lib/ftp.c:693
+msgid "Error setting remote server to passive mode"
+msgstr ""
+
+#: lib/ftp.c:696
+msgid "File not found on server"
+msgstr ""
+
+#: lib/ftp.c:699
+msgid "Abort in progress"
+msgstr ""
+
+#: lib/ftp.c:703
+msgid "Unknown or unexpected error"
+msgstr ""
+
+#. This should not be allowed
+#: lib/header.c:169
+msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
+msgstr ""
+
+#: lib/header.c:200
+#, c-format
+msgid "Data type %d not supported\n"
+msgstr ""
+
+#: lib/header.c:763
+#, c-format
+msgid "Data type %d not supprted\n"
 msgstr ""
 
-#: ../lib/header.c:1478
+#: lib/header.c:1119
+#, c-format
+msgid "Bad count for headerAddEntry(): %d\n"
+msgstr ""
+
+#: lib/header.c:1520
 #, c-format
 msgid "missing { after %"
 msgstr ""
 
-#: ../lib/header.c:1506
+#: lib/header.c:1548
 msgid "missing } after %{"
 msgstr ""
 
-#: ../lib/header.c:1518
+#: lib/header.c:1560
 msgid "empty tag format"
 msgstr ""
 
-#: ../lib/header.c:1528
+#: lib/header.c:1570
 msgid "empty tag name"
 msgstr ""
 
-#: ../lib/header.c:1543
+#: lib/header.c:1585
 msgid "unknown tag"
 msgstr ""
 
-#: ../lib/header.c:1569
+#: lib/header.c:1611
 msgid "] expected at end of array"
 msgstr ""
 
-#: ../lib/header.c:1585
+#: lib/header.c:1627
 #, fuzzy
 msgid "unexpected ]"
 msgstr "source de requête inattendue"
 
-#: ../lib/header.c:1587
+#: lib/header.c:1629
 #, fuzzy
 msgid "unexpected }"
 msgstr "source de requête inattendue"
 
-#: ../lib/header.c:1762
-msgid "(unknown type)"
-msgstr ""
-
-#: ../lib/install.c:93
-msgid "source package expected, binary found"
+#: lib/header.c:1682
+msgid "? expected in expression"
 msgstr ""
 
-#: ../lib/install.c:169 ../lib/uninstall.c:111
-#, c-format
-msgid "   file: %s action: %s\n"
+#: lib/header.c:1689
+msgid "{ expected after ? in expression"
 msgstr ""
 
-#: ../lib/install.c:186
-#, c-format
-msgid "user %s does not exist - using root"
+#: lib/header.c:1699 lib/header.c:1731
+msgid "} expected in expression"
 msgstr ""
 
-#: ../lib/install.c:194
-#, c-format
-msgid "group %s does not exist - using root"
+#: lib/header.c:1706
+msgid ": expected following ? subexpression"
 msgstr ""
 
-#: ../lib/install.c:221
-msgid "%%instchangelog value in macro file should be a number, but isn't"
+#: lib/header.c:1719
+msgid "{ expected after : in expression"
 msgstr ""
 
-#: ../lib/install.c:289
-#, fuzzy, c-format
-msgid "package: %s-%s-%s files test = %d\n"
-msgstr "aucun package n'a été spécifié pour l'installation"
-
-#: ../lib/install.c:352
-msgid "stopping install as we're running --test\n"
+#: lib/header.c:1738
+msgid "| expected at end of expression"
 msgstr ""
 
-#: ../lib/install.c:357
-msgid "running preinstall script (if any)\n"
+#: lib/header.c:1905
+msgid "(unknown type)"
 msgstr ""
 
-#: ../lib/install.c:387
+#: lib/install.c:141 lib/uninstall.c:179
 #, c-format
-msgid "warning: %s created as %s"
+msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: ../lib/install.c:423
+#: lib/install.c:159
 #, c-format
-msgid "warning: %s saved as %s"
+msgid "user %s does not exist - using root"
 msgstr ""
 
-#: ../lib/install.c:427 ../lib/install.c:790 ../lib/uninstall.c:337
+#: lib/install.c:167
 #, c-format
-msgid "rename of %s to %s failed: %s"
+msgid "group %s does not exist - using root"
 msgstr ""
 
-#: ../lib/install.c:507
-msgid "running postinstall script (if any)\n"
+#: lib/install.c:195
+msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
-#: ../lib/install.c:613
+#: lib/install.c:358
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: ../lib/install.c:614
+#: lib/install.c:359
 msgid " on file "
 msgstr ""
 
-#: ../lib/install.c:654
+#: lib/install.c:402
 msgid "installing a source package\n"
 msgstr ""
 
-#: ../lib/install.c:665 ../lib/install.c:687
+#: lib/install.c:413
 #, fuzzy, c-format
-msgid "cannot create %s"
+msgid "cannot create %s: %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: ../lib/install.c:672 ../lib/install.c:694
+#: lib/install.c:421 lib/install.c:443
 #, fuzzy, c-format
 msgid "cannot write to %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: ../lib/install.c:676
+#: lib/install.c:425
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: ../lib/install.c:698
+#: lib/install.c:436
+#, fuzzy, c-format
+msgid "cannot create %s"
+msgstr "impossible d'ouvrir: %s\n"
+
+#: lib/install.c:447
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: ../lib/install.c:731 ../lib/install.c:767
+#: lib/install.c:481 lib/install.c:509
 #, fuzzy
 msgid "source package contains no .spec file"
 msgstr ""
 "        -f <file>+        - interroge le package à qui appartient <file>"
 
-#: ../lib/install.c:788
+#: lib/install.c:530
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: ../lib/lookup.c:83
+#: lib/install.c:532 lib/install.c:810 lib/uninstall.c:26
+#, c-format
+msgid "rename of %s to %s failed: %s"
+msgstr ""
+
+#: lib/install.c:622
+msgid "source package expected, binary found"
+msgstr ""
+
+#: lib/install.c:679
+#, fuzzy, c-format
+msgid "package: %s-%s-%s files test = %d\n"
+msgstr "aucun package n'a été spécifié pour l'installation"
+
+#: lib/install.c:740
+msgid "stopping install as we're running --test\n"
+msgstr ""
+
+#: lib/install.c:745
+msgid "running preinstall script (if any)\n"
+msgstr ""
+
+#: lib/install.c:770
+#, c-format
+msgid "warning: %s created as %s"
+msgstr ""
+
+#: lib/install.c:806
+#, c-format
+msgid "warning: %s saved as %s"
+msgstr ""
+
+#: lib/install.c:880
+msgid "running postinstall scripts (if any)\n"
+msgstr ""
+
+#: lib/lookup.c:35
 #, c-format
 msgid "cannot read header at %d for lookup"
 msgstr ""
 
-#: ../lib/macro.c:129
+#: lib/macro.c:149
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr ""
 
 #. XXX just in case
-#: ../lib/macro.c:218
+#: lib/macro.c:243
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: ../lib/macro.c:253
+#: lib/macro.c:278
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: ../lib/macro.c:426
+#: lib/macro.c:457
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: ../lib/macro.c:452
+#: lib/macro.c:483
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: ../lib/macro.c:458
+#: lib/macro.c:489
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: ../lib/macro.c:463
+#: lib/macro.c:494
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: ../lib/macro.c:468
+#: lib/macro.c:499
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: ../lib/macro.c:493
+#: lib/macro.c:524
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: ../lib/macro.c:566
+#: lib/macro.c:601
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: ../lib/macro.c:650
+#: lib/macro.c:698
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr ""
 
-#: ../lib/macro.c:825
+#: lib/macro.c:870
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: ../lib/macro.c:881 ../lib/macro.c:897
+#: lib/macro.c:936 lib/macro.c:952
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: ../lib/macro.c:930
+#: lib/macro.c:992
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: ../lib/macro.c:1053
+#: lib/macro.c:1115
 #, fuzzy
 msgid "Macro %%%.*s not found, skipping"
 msgstr "aucun package n'a été spécifié pour la désinstallation"
 
-#: ../lib/macro.c:1131
+#: lib/macro.c:1196
 msgid "Target buffer overflow"
 msgstr ""
 
-#: ../lib/macro.c:1274 ../lib/macro.c:1282
+#: lib/macro.c:1343 lib/macro.c:1351
 #, fuzzy, c-format
 msgid "File %s: %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: ../lib/macro.c:1285
+#: lib/macro.c:1354
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
 
-#: ../lib/messages.c:51
+#: lib/messages.c:55
 msgid "warning: "
 msgstr ""
 
-#: ../lib/messages.c:57
+#: lib/messages.c:64
 msgid "error: "
 msgstr ""
 
-#: ../lib/messages.c:63
+#: lib/messages.c:73
 msgid "fatal error: "
 msgstr ""
 
-#: ../lib/messages.c:70
+#: lib/messages.c:82
 msgid "internal error (rpm bug?): "
 msgstr ""
 
-#: ../lib/misc.c:342 ../lib/misc.c:348 ../lib/misc.c:355
+#: lib/misc.c:367 lib/misc.c:373 lib/misc.c:380
 #, c-format
 msgid "error creating temporary file %s"
 msgstr ""
 
-#: ../lib/oldheader.c:292
+#: lib/oldheader.c:299
 #, fuzzy, c-format
 msgid "bad file state: %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: ../lib/package.c:51
+#: lib/package.c:234
 msgid "package is a version one package!\n"
 msgstr ""
 
-#: ../lib/package.c:54
+#: lib/package.c:239
 msgid "old style source package -- I'll do my best\n"
 msgstr ""
 
-#: ../lib/package.c:57
+#: lib/package.c:242
 #, c-format
 msgid "archive offset is %d\n"
 msgstr ""
 
-#: ../lib/package.c:67
+#: lib/package.c:252
 msgid "old style binary package\n"
 msgstr ""
 
-#: ../lib/package.c:105
+#: lib/package.c:298
 msgid ""
 "only packages with major numbers <= 3 are supported by this version of RPM"
 msgstr ""
 
-#: ../lib/problems.c:29
+#: lib/problems.c:43
+#, c-format
+msgid " is needed by %s-%s-%s\n"
+msgstr ""
+
+#: lib/problems.c:46
+#, c-format
+msgid " conflicts with %s-%s-%s\n"
+msgstr ""
+
+#: lib/problems.c:66
 #, fuzzy, c-format
-msgid "package %s-%s-%s is for a different operating system"
+msgid "package %s-%s-%s is for a different architecture"
 msgstr "aucun package n'a été spécifié pour l'installation"
 
-#: ../lib/problems.c:34
+#: lib/problems.c:71
 #, fuzzy, c-format
-msgid "package %s-%s-%s is for a different architecture"
+msgid "package %s-%s-%s is for a different operating system"
 msgstr "aucun package n'a été spécifié pour l'installation"
 
-#: ../lib/problems.c:39
+#: lib/problems.c:76
 #, fuzzy, c-format
 msgid "package %s-%s-%s is already installed"
 msgstr "aucun package n'a été spécifié pour l'installation"
 
-#: ../lib/problems.c:44
+#: lib/problems.c:81
 #, fuzzy, c-format
 msgid "path %s is not relocateable for package %s-%s-%s"
 msgstr "aucun package n'a été spécifié pour l'installation"
 
-#: ../lib/problems.c:49
+#: lib/problems.c:86
 #, c-format
 msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
 msgstr ""
 
-#: ../lib/problems.c:55
+#: lib/problems.c:92
 #, c-format
 msgid ""
 "file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
 msgstr ""
 
-#: ../lib/problems.c:61
+#: lib/problems.c:98
 #, fuzzy, c-format
 msgid "package %s-%s-%s (which is newer then %s-%s-%s) is already installed"
 msgstr "aucun package n'a été spécifié pour l'installation"
 
-#: ../lib/problems.c:67
+#: lib/problems.c:104
 #, c-format
-msgid "installing package %s-%s-%s needs %ld%c on the %s filesystem"
+msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: ../lib/problems.c:77
+#: lib/problems.c:116
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
 
-#: ../lib/query.c:57
-#, fuzzy
-msgid "query package owning file"
+#: lib/query.c:138
+#, c-format
+msgid "error in format: %s\n"
 msgstr ""
-"        -f <file>+        - interroge le package à qui appartient <file>"
 
-#: ../lib/query.c:59
-#, fuzzy
-msgid "query packages in group"
-msgstr "aucun package n'a été spécifié pour la désinstallation"
+#: lib/query.c:180
+msgid "(contains no files)"
+msgstr ""
 
-#: ../lib/query.c:61
-#, fuzzy
-msgid "query a package file"
+#: lib/query.c:233
+msgid "normal        "
 msgstr ""
-"        -f <file>+        - interroge le package à qui appartient <file>"
 
-#: ../lib/query.c:65
-msgid "query a spec file"
+#: lib/query.c:235
+msgid "replaced      "
 msgstr ""
 
-#: ../lib/query.c:67
+#: lib/query.c:237
 #, fuzzy
-msgid "query the pacakges triggered by the package"
-msgstr ""
-"        -f <file>+        - interroge le package à qui appartient <file>"
-
-#: ../lib/query.c:69
-msgid "query the packages which require a capability"
-msgstr ""
-
-#: ../lib/query.c:71
-msgid "query the packages which provide a capability"
-msgstr ""
-
-#: ../lib/query.c:108
-#, fuzzy
-msgid "list all configuration files"
-msgstr ""
-"        -c                - donne uniquement la liste des fichiers de "
-"configuration (implique -l)"
-
-#: ../lib/query.c:110
-#, fuzzy
-msgid "list all documentation files"
-msgstr ""
-"        -d                - donne uniquement la liste des fichiers de "
-"documentation (implique -l)"
-
-#: ../lib/query.c:112
-#, fuzzy
-msgid "dump basic file information"
-msgstr ""
-"        -i                - affiche les informations relatives à un package"
-
-#: ../lib/query.c:114
-msgid "list files in package"
-msgstr ""
-
-#: ../lib/query.c:118
-msgid "use the following query format"
-msgstr ""
-
-#: ../lib/query.c:120
-msgid "substitute i18n sections from the following catalogue"
-msgstr ""
-
-#: ../lib/query.c:123
-msgid "display the states of the listed files"
-msgstr ""
-
-#: ../lib/query.c:125
-#, fuzzy
-msgid "display a verbose file listing"
-msgstr "        -l                - affiche la liste des packages"
-
-#: ../lib/query.c:136
-#, c-format
-msgid "error in format: %s\n"
-msgstr ""
-
-#: ../lib/query.c:177
-msgid "(contains no files)"
-msgstr ""
-
-#: ../lib/query.c:230
-msgid "normal        "
-msgstr ""
-
-#: ../lib/query.c:232
-msgid "replaced      "
-msgstr ""
+msgid "not installed "
+msgstr "aucun package n'a été spécifié pour l'installation"
 
-#: ../lib/query.c:234
+#: lib/query.c:239
 msgid "net shared    "
 msgstr ""
 
-#: ../lib/query.c:236
-#, fuzzy
-msgid "not installed "
-msgstr "aucun package n'a été spécifié pour l'installation"
-
-#: ../lib/query.c:238
+#: lib/query.c:241
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: ../lib/query.c:242
+#: lib/query.c:245
 msgid "(no state)    "
 msgstr ""
 
-#: ../lib/query.c:258 ../lib/query.c:288
+#: lib/query.c:261 lib/query.c:291
 msgid "package has neither file owner or id lists"
 msgstr ""
 
-#: ../lib/query.c:514
+#: lib/query.c:400
 #, c-format
 msgid "record number %u\n"
 msgstr ""
 
-#: ../lib/query.c:518
+#: lib/query.c:404
 msgid "error: could not read database record\n"
 msgstr ""
 
-#: ../lib/query.c:547
+#: lib/query.c:442
 #, fuzzy, c-format
-msgid "open of %s failed\n"
+msgid "open of %s failed: %s\n"
 msgstr "La construction a échoué.\n"
 
-#: ../lib/query.c:560
+#: lib/query.c:455
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: ../lib/query.c:572
+#: lib/query.c:464 lib/rpminstall.c:203
+#, c-format
+msgid "%s does not appear to be a RPM package\n"
+msgstr ""
+
+#: lib/query.c:467
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: ../lib/query.c:593
+#: lib/query.c:494
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: ../lib/query.c:627
+#: lib/query.c:519
 msgid "could not read database record!\n"
 msgstr ""
 
-#: ../lib/query.c:638
+#: lib/query.c:530
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: ../lib/query.c:648
+#: lib/query.c:540
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: ../lib/query.c:658
+#: lib/query.c:550
 #, fuzzy, c-format
 msgid "no package triggers %s\n"
 msgstr "aucun package n'a été spécifié pour l'installation"
 
-#: ../lib/query.c:668
+#: lib/query.c:560
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: ../lib/query.c:683
+#: lib/query.c:575
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: ../lib/query.c:686
+#: lib/query.c:578
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: ../lib/query.c:699
+#: lib/query.c:591
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: ../lib/query.c:702
+#: lib/query.c:594
 #, c-format
 msgid "package record number: %d\n"
 msgstr ""
 
-#: ../lib/query.c:705
+#: lib/query.c:597
 #, c-format
 msgid "record %d could not be read\n"
 msgstr ""
 
-#: ../lib/query.c:720
+#: lib/query.c:609 lib/rpminstall.c:393
+#, fuzzy, c-format
+msgid "package %s is not installed\n"
+msgstr "aucun package n'a été spécifié pour l'installation"
+
+#: lib/query.c:612
 #, c-format
 msgid "error looking for package %s\n"
 msgstr ""
 
-#: ../lib/query.c:742
+#: lib/query.c:634
 msgid "rpmQuery: rpmdbOpen() failed\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:18
+#: lib/query.c:691
+#, fuzzy
+msgid "query package owning file"
+msgstr ""
+"        -f <file>+        - interroge le package à qui appartient <file>"
+
+#: lib/query.c:693
+#, fuzzy
+msgid "query packages in group"
+msgstr "aucun package n'a été spécifié pour la désinstallation"
+
+#: lib/query.c:695
+#, fuzzy
+msgid "query a package file"
+msgstr ""
+"        -f <file>+        - interroge le package à qui appartient <file>"
+
+#: lib/query.c:699
+msgid "query a spec file"
+msgstr ""
+
+#: lib/query.c:701
+#, fuzzy
+msgid "query the pacakges triggered by the package"
+msgstr ""
+"        -f <file>+        - interroge le package à qui appartient <file>"
+
+#: lib/query.c:703
+msgid "query the packages which require a capability"
+msgstr ""
+
+#: lib/query.c:705
+msgid "query the packages which provide a capability"
+msgstr ""
+
+#: lib/query.c:742
+#, fuzzy
+msgid "list all configuration files"
+msgstr ""
+"        -c                - donne uniquement la liste des fichiers de "
+"configuration (implique -l)"
+
+#: lib/query.c:744
+#, fuzzy
+msgid "list all documentation files"
+msgstr ""
+"        -d                - donne uniquement la liste des fichiers de "
+"documentation (implique -l)"
+
+#: lib/query.c:746
+#, fuzzy
+msgid "dump basic file information"
+msgstr ""
+"        -i                - affiche les informations relatives à un package"
+
+#: lib/query.c:748
+msgid "list files in package"
+msgstr ""
+
+#: lib/query.c:752
+msgid "use the following query format"
+msgstr ""
+
+#: lib/query.c:754
+msgid "substitute i18n sections from the following catalogue"
+msgstr ""
+
+#: lib/query.c:757
+msgid "display the states of the listed files"
+msgstr ""
+
+#: lib/query.c:759
+#, fuzzy
+msgid "display a verbose file listing"
+msgstr "        -l                - affiche la liste des packages"
+
+#: lib/rebuilddb.c:20
 #, c-format
 msgid "rebuilding database in rootdir %s\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:22 ../lib/rpmdb.c:64 ../lib/rpmdb.c:82 ../lib/rpmdb.c:98
+#: lib/rebuilddb.c:24 lib/rpmdb.c:69 lib/rpmdb.c:88 lib/rpmdb.c:105
 msgid "no dbpath has been set"
 msgstr ""
 
-#: ../lib/rebuilddb.c:30
+#: lib/rebuilddb.c:33
 #, c-format
 msgid "temporary database %s already exists"
 msgstr ""
 
-#: ../lib/rebuilddb.c:34
+#: lib/rebuilddb.c:37
 #, c-format
 msgid "creating directory: %s\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:36
+#: lib/rebuilddb.c:39
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr ""
 
-#: ../lib/rebuilddb.c:44
+#: lib/rebuilddb.c:43
 msgid "opening old database\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:51
+#: lib/rebuilddb.c:50
 msgid "opening new database\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:61 ../lib/rebuilddb.c:79
+#: lib/rebuilddb.c:60 lib/rebuilddb.c:78
 #, c-format
 msgid "record number %d in database is bad -- skipping it"
 msgstr ""
 
-#: ../lib/rebuilddb.c:73
+#: lib/rebuilddb.c:72
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr ""
 
-#: ../lib/rebuilddb.c:92
+#: lib/rebuilddb.c:91
 msgid "failed to rebuild database; original database remains in place\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:100
+#: lib/rebuilddb.c:99
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:102
+#: lib/rebuilddb.c:101
 #, c-format
 msgid "replaces files in %s with files from %s to recover"
 msgstr ""
 
-#: ../lib/rebuilddb.c:108
+#: lib/rebuilddb.c:107
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: ../lib/rpmdb.c:159
+#: lib/rpmchecksig.c:31
+#, fuzzy, c-format
+msgid "%s: fdOpen failed: %s\n"
+msgstr "impossible d'ouvrir: %s\n"
+
+#: lib/rpmchecksig.c:42
+#, fuzzy
+msgid "makeTempFile failed\n"
+msgstr "La construction a échoué.\n"
+
+#: lib/rpmchecksig.c:74
+#, c-format
+msgid "%s: fdWrite failed: %s\n"
+msgstr ""
+
+#: lib/rpmchecksig.c:80
+#, c-format
+msgid "%s: fdRead failed: %s\n"
+msgstr ""
+
+#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:242
+#, c-format
+msgid "%s: readLead failed\n"
+msgstr ""
+
+#: lib/rpmchecksig.c:118
+#, c-format
+msgid "%s: Can't sign v1.0 RPM\n"
+msgstr ""
+
+#: lib/rpmchecksig.c:122
+#, c-format
+msgid "%s: Can't re-sign v2.0 RPM\n"
+msgstr ""
+
+#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:256
+#, c-format
+msgid "%s: rpmReadSignature failed\n"
+msgstr ""
+
+#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:261
+#, c-format
+msgid "%s: No signature available\n"
+msgstr ""
+
+#: lib/rpmchecksig.c:167
+#, c-format
+msgid "%s: writeLead failed: %s\n"
+msgstr ""
+
+#: lib/rpmchecksig.c:173
+#, c-format
+msgid "%s: rpmWriteSignature failed\n"
+msgstr ""
+
+#: lib/rpmchecksig.c:248
+#, c-format
+msgid "%s: No signature available (v1.0 RPM)\n"
+msgstr ""
+
+#: lib/rpmchecksig.c:408
+msgid "NOT OK"
+msgstr ""
+
+#: lib/rpmchecksig.c:409 lib/rpmchecksig.c:423
+msgid " (MISSING KEYS:"
+msgstr ""
+
+#: lib/rpmchecksig.c:411 lib/rpmchecksig.c:425
+msgid ") "
+msgstr ""
+
+#: lib/rpmchecksig.c:412 lib/rpmchecksig.c:426
+msgid " (UNTRUSTED KEYS:"
+msgstr ""
+
+#: lib/rpmchecksig.c:414 lib/rpmchecksig.c:428
+msgid ")"
+msgstr ""
+
+#: lib/rpmchecksig.c:422
+msgid "OK"
+msgstr ""
+
+#: lib/rpmdb.c:184
 #, c-format
 msgid "opening database mode 0x%x in %s\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:182 ../lib/rpmdb.c:189
+#: lib/rpmdb.c:193 lib/url.c:431
+#, fuzzy, c-format
+msgid "failed to open %s\n"
+msgstr "impossible d'ouvrir: %s\n"
+
+#: lib/rpmdb.c:206 lib/rpmdb.c:214
 #, c-format
 msgid "cannot get %s lock on database"
 msgstr ""
 
-#: ../lib/rpmdb.c:183
+#: lib/rpmdb.c:207
 msgid "exclusive"
 msgstr ""
 
-#: ../lib/rpmdb.c:190
+#: lib/rpmdb.c:215
 msgid "shared"
 msgstr ""
 
-#: ../lib/rpmdb.c:213
+#: lib/rpmdb.c:246
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
-#: ../lib/rpmdb.c:372
+#: lib/rpmdb.c:439
 #, c-format
 msgid "package %s not listed in %s"
 msgstr ""
 
-#: ../lib/rpmdb.c:383
+#: lib/rpmdb.c:450
 #, fuzzy, c-format
 msgid "package %s not found in %s"
 msgstr "aucun package n'a été spécifié pour la désinstallation"
 
-#: ../lib/rpmdb.c:407 ../lib/uninstall.c:40
+#: lib/rpmdb.c:475 lib/uninstall.c:85
 #, fuzzy, c-format
 msgid "cannot read header at %d for uninstall"
 msgstr "aucun package n'a été spécifié pour la désinstallation"
 
-#: ../lib/rpmdb.c:415
+#: lib/rpmdb.c:483
 msgid "package has no name"
 msgstr ""
 
-#: ../lib/rpmdb.c:417
+#: lib/rpmdb.c:485
 msgid "removing name index\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:422
+#: lib/rpmdb.c:490
 #, fuzzy
 msgid "package has no group\n"
 msgstr "aucun package n'a été spécifié pour la désinstallation"
 
-#: ../lib/rpmdb.c:424
+#: lib/rpmdb.c:492
 msgid "removing group index\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:431
+#: lib/rpmdb.c:499
 #, c-format
 msgid "removing provides index for %s\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:446
+#: lib/rpmdb.c:514
 #, c-format
 msgid "removing requiredby index for %s\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:458
+#: lib/rpmdb.c:526
 #, c-format
 msgid "removing trigger index for %s\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:469
+#: lib/rpmdb.c:537
 #, c-format
 msgid "removing conflict index for %s\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:486
+#: lib/rpmdb.c:554
 #, c-format
 msgid "removing file index for %s\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:495
+#: lib/rpmdb.c:563
 #, fuzzy
 msgid "package has no files\n"
 msgstr "aucun package n'a été spécifié pour l'installation"
 
-#: ../lib/rpmdb.c:568
+#: lib/rpmdb.c:645
 msgid "cannot allocate space for database"
 msgstr ""
 
-#: ../lib/rpmdb.c:639
+#: lib/rpmdb.c:711
 #, c-format
 msgid "cannot read header at %d for update"
 msgstr ""
 
-#: ../lib/rpmdb.c:648
+#: lib/rpmdb.c:720
 msgid "header changed size!"
 msgstr ""
 
-#: ../lib/rpmlead.c:41
+#: lib/rpminstall.c:128
+#, fuzzy
+msgid "counting packages to install\n"
+msgstr "aucun package n'a été spécifié pour l'installation"
+
+#: lib/rpminstall.c:132
+#, c-format
+msgid "found %d packages\n"
+msgstr ""
+
+#: lib/rpminstall.c:141
+msgid "looking for packages to download\n"
+msgstr ""
+
+#: lib/rpminstall.c:152
+#, c-format
+msgid "Retrieving %s\n"
+msgstr ""
+
+#: lib/rpminstall.c:161
+#, c-format
+msgid " ... as %s\n"
+msgstr ""
+
+#: lib/rpminstall.c:165
+#, c-format
+msgid "skipping %s - transfer failed - %s\n"
+msgstr ""
+
+#: lib/rpminstall.c:182
+#, c-format
+msgid "retrieved %d packages\n"
+msgstr ""
+
+#: lib/rpminstall.c:191 lib/rpminstall.c:332
+#, fuzzy, c-format
+msgid "cannot open file %s\n"
+msgstr "impossible d'ouvrir: %s\n"
+
+#: lib/rpminstall.c:207 lib/rpminstall.c:469
+#, fuzzy, c-format
+msgid "%s cannot be installed\n"
+msgstr "aucun package n'a été spécifié pour l'installation"
+
+#: lib/rpminstall.c:243
+#, fuzzy, c-format
+msgid "package %s is not relocateable\n"
+msgstr "aucun package n'a été spécifié pour l'installation"
+
+#: lib/rpminstall.c:261
+#, c-format
+msgid "error reading from file %s\n"
+msgstr ""
+
+#: lib/rpminstall.c:266
+#, c-format
+msgid "file %s requires a newer version of RPM\n"
+msgstr ""
+
+#: lib/rpminstall.c:283
+#, c-format
+msgid "found %d source and %d binary packages\n"
+msgstr ""
+
+#: lib/rpminstall.c:294
+msgid "failed dependencies:\n"
+msgstr ""
+
+#: lib/rpminstall.c:312
+msgid "installing binary packages\n"
+msgstr ""
+
+#: lib/rpminstall.c:397
+#, c-format
+msgid "searching for package %s\n"
+msgstr ""
+
+#: lib/rpminstall.c:406
+#, c-format
+msgid "\"%s\" specifies multiple packages\n"
+msgstr ""
+
+#: lib/rpminstall.c:432
+msgid "removing these packages would break dependencies:\n"
+msgstr ""
+
+#: lib/rpminstall.c:459
+#, fuzzy, c-format
+msgid "cannot open %s\n"
+msgstr "impossible d'ouvrir: %s\n"
+
+#: lib/rpminstall.c:464
+#, c-format
+msgid "Installing %s\n"
+msgstr ""
+
+#: lib/rpmlead.c:48
 #, c-format
 msgid "read failed: %s (%d)"
 msgstr ""
 
-#: ../lib/rpmrc.c:178
+#: lib/rpmrc.c:177
 #, c-format
 msgid "missing second ':' at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:181
+#: lib/rpmrc.c:180
 #, c-format
 msgid "missing architecture name at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:329
+#: lib/rpmrc.c:328
 #, c-format
 msgid "Incomplete data line at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:333
+#: lib/rpmrc.c:332
 #, c-format
 msgid "Too many args in data line at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:340
+#: lib/rpmrc.c:339
 #, c-format
 msgid "Bad arch/os number: %s (%s:%d)"
 msgstr ""
 
-#: ../lib/rpmrc.c:374
+#: lib/rpmrc.c:373
 #, c-format
 msgid "Incomplete default line at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:379
+#: lib/rpmrc.c:378
 #, c-format
 msgid "Too many args in default line at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:562
+#: lib/rpmrc.c:561
 #, c-format
 msgid "Cannot expand %s"
 msgstr ""
 
-#: ../lib/rpmrc.c:577
+#: lib/rpmrc.c:576
 #, fuzzy, c-format
 msgid "Unable to open %s for reading: %s."
 msgstr "impossible d'ouvrir: %s\n"
 
-#: ../lib/rpmrc.c:611
+#: lib/rpmrc.c:608
 #, c-format
 msgid "Failed to read %s: %s."
 msgstr ""
 
-#: ../lib/rpmrc.c:642
+#: lib/rpmrc.c:638
 #, c-format
 msgid "missing ':' at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:658 ../lib/rpmrc.c:716
+#: lib/rpmrc.c:655 lib/rpmrc.c:729
 #, c-format
 msgid "missing argument for %s at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:672 ../lib/rpmrc.c:690
+#: lib/rpmrc.c:672 lib/rpmrc.c:694
 #, fuzzy, c-format
 msgid "%s expansion failed at %s:%d \"%s\""
 msgstr "impossible d'ouvrir: %s\n"
 
-#: ../lib/rpmrc.c:678
+#: lib/rpmrc.c:680
 #, c-format
 msgid "cannot open %s at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:706
+#: lib/rpmrc.c:721
 #, c-format
 msgid "missing architecture for %s at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:773
+#: lib/rpmrc.c:788
 #, c-format
 msgid "bad option '%s' at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:1109
+#: lib/rpmrc.c:1147
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: ../lib/rpmrc.c:1110
+#: lib/rpmrc.c:1148
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: ../lib/signature.c:147
+#: lib/signature.c:106
+#, c-format
+msgid "sigsize         : %d\n"
+msgstr ""
+
+#: lib/signature.c:107
+#, c-format
+msgid "Header + Archive: %d\n"
+msgstr ""
+
+#: lib/signature.c:108
+#, c-format
+msgid "expected size   : %d\n"
+msgstr ""
+
+#: lib/signature.c:112
+msgid "file is not regular -- skipping size check\n"
+msgstr ""
+
+#: lib/signature.c:134
 msgid "No signature\n"
 msgstr ""
 
-#: ../lib/signature.c:150
+#: lib/signature.c:137
 #, fuzzy
 msgid "Old PGP signature\n"
 msgstr "      --sign            - genère une signature PGP"
 
-#: ../lib/signature.c:163
+#: lib/signature.c:149
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr ""
 
-#: ../lib/signature.c:167
+#: lib/signature.c:153
 #, fuzzy
 msgid "New Header signature\n"
 msgstr "      --sign            - genère une signature PGP"
 
 #. 8-byte pad
-#: ../lib/signature.c:175 ../lib/signature.c:213
+#: lib/signature.c:160 lib/signature.c:202
 #, c-format
 msgid "Signature size: %d\n"
 msgstr ""
 
-#: ../lib/signature.c:176 ../lib/signature.c:214
+#: lib/signature.c:161 lib/signature.c:203
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr ""
 
-#: ../lib/signature.c:306 ../lib/signature.c:812
-msgid "Couldn't exec pgp"
+#: lib/signature.c:266
+#, c-format
+msgid "Couldn't exec pgp (%s)"
 msgstr ""
 
-#: ../lib/signature.c:317
+#: lib/signature.c:277
 msgid "pgp failed"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: ../lib/signature.c:324
+#: lib/signature.c:284
 msgid "pgp failed to write signature"
 msgstr ""
 
-#: ../lib/signature.c:329
+#: lib/signature.c:289
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: ../lib/signature.c:340 ../lib/signature.c:416
+#: lib/signature.c:300 lib/signature.c:377
 msgid "unable to read the signature"
 msgstr ""
 
-#: ../lib/signature.c:345
+#: lib/signature.c:305
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: ../lib/signature.c:382 ../lib/signature.c:787
+#: lib/signature.c:343 lib/signature.c:686
 msgid "Couldn't exec gpg"
 msgstr ""
 
-#: ../lib/signature.c:393
+#: lib/signature.c:354
 #, fuzzy
 msgid "gpg failed"
 msgstr "La construction a échoué.\n"
 
 #. GPG failed to write signature
 #. Just in case
-#: ../lib/signature.c:400
+#: lib/signature.c:361
 #, fuzzy
 msgid "gpg failed to write signature"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: ../lib/signature.c:405
+#: lib/signature.c:366
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: ../lib/signature.c:421
+#: lib/signature.c:382
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
-#: ../lib/signature.c:436
-#, c-format
-msgid "sigsize         : %d\n"
-msgstr ""
+#: lib/signature.c:409
+#, fuzzy
+msgid "Generating signature using PGP.\n"
+msgstr "      --sign            - genère une signature PGP"
 
-#: ../lib/signature.c:437
-#, c-format
-msgid "Header + Archive: %d\n"
-msgstr ""
+#: lib/signature.c:415
+#, fuzzy
+msgid "Generating signature using GPG.\n"
+msgstr "      --sign            - genère une signature PGP"
 
-#: ../lib/signature.c:438
-#, c-format
-msgid "expected size   : %d\n"
+#: lib/signature.c:492 lib/signature.c:554
+msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr ""
 
-#: ../lib/signature.c:442
-msgid "file is not regular -- skipping size check\n"
+#: lib/signature.c:552 lib/signature.c:625
+msgid "exec failed!\n"
 msgstr ""
 
-#: ../lib/signature.c:560 ../lib/signature.c:607
-msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
+#: lib/signature.c:627
+msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr ""
 
-#: ../lib/signature.c:605 ../lib/signature.c:677
-msgid "exec failed!\n"
+#: lib/signature.c:715
+msgid "Couldn't exec pgp"
 msgstr ""
 
-#: ../lib/signature.c:679
-msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
+#. @notreached@
+#. This case should have been screened out long ago.
+#: lib/signature.c:719 lib/signature.c:772
+msgid "Invalid %%_signature spec in macro file"
 msgstr ""
 
-#: ../lib/signature.c:716
+#: lib/signature.c:752
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr ""
 
-#: ../lib/signature.c:728
+#: lib/signature.c:764
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
-#. Currently the calling function (rpm.c:main) is checking this and
-#. * doing a better job.  This section should never be accessed.
-#.
-#: ../lib/signature.c:736 ../lib/signature.c:816
-msgid "Invalid %%_signature spec in macro file"
-msgstr ""
-
-#: ../lib/transaction.c:793
+#: lib/transaction.c:363
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: ../lib/transaction.c:799
+#: lib/transaction.c:370
 #, c-format
 msgid "excluding %s\n"
 msgstr ""
 
-#: ../lib/transaction.c:887
+#: lib/transaction.c:489
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: ../lib/uninstall.c:51
+#: lib/uninstall.c:37
+#, c-format
+msgid "cannot remove %s - directory not empty"
+msgstr ""
+
+#: lib/uninstall.c:40
+#, c-format
+msgid "rmdir of %s failed: %s"
+msgstr ""
+
+#: lib/uninstall.c:48
+#, c-format
+msgid "removal of %s failed: %s"
+msgstr ""
+
+#: lib/uninstall.c:97
 #, fuzzy, c-format
 msgid "cannot read packages named %s for uninstall"
 msgstr "aucun package n'a été spécifié pour la désinstallation"
 
-#: ../lib/uninstall.c:79
+#: lib/uninstall.c:130
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: ../lib/uninstall.c:124
+#: lib/uninstall.c:191
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: ../lib/uninstall.c:138
+#: lib/uninstall.c:204
 msgid "removing database entry\n"
 msgstr ""
 
-#: ../lib/uninstall.c:289
+#: lib/uninstall.c:365
 msgid "execution of script failed"
 msgstr ""
 
-#: ../lib/uninstall.c:348
+#: lib/url.c:144
 #, c-format
-msgid "cannot remove %s - directory not empty"
+msgid "Password for %s@%s: "
 msgstr ""
 
-#: ../lib/uninstall.c:351
+#: lib/url.c:168 lib/url.c:194
 #, c-format
-msgid "rmdir of %s failed: %s"
+msgid "error: %sport must be a number\n"
+msgstr ""
+
+#: lib/url.c:279
+msgid "url port must be a number\n"
 msgstr ""
 
-#: ../lib/uninstall.c:359
+#. XXX PARANOIA
+#: lib/url.c:317
 #, c-format
-msgid "removal of %s failed: %s"
+msgid "logging into %s as %s, pw %s\n"
 msgstr ""
 
-#: ../lib/verify.c:36
+#: lib/url.c:446
+#, fuzzy, c-format
+msgid "failed to create %s\n"
+msgstr "impossible d'ouvrir: %s\n"
+
+#: lib/verify.c:36
 msgid "don't verify files in package"
 msgstr ""
 
-#: ../lib/verify.c:206
+#: lib/verify.c:206
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 
-#: ../lib/verify.c:224
+#: lib/verify.c:224
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: ../lib/verify.c:257
+#: lib/verify.c:257
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: ../lib/verify.c:321
+#: lib/verify.c:319
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: ../lib/verify.c:369
+#: lib/verify.c:367
 msgid "rpmVerify: rpmdbOpen() failed\n"
 msgstr ""
 
 #, fuzzy
+#~ msgid "Unable to write %s"
+#~ msgstr "impossible d'ouvrir: %s\n"
+
+#~ msgid "unexpected query specifiers"
+#~ msgstr "spécificateurs de requêtes inattendus"
+
+#, fuzzy
+#~ msgid "--nofiles may only be specified during package verification"
+#~ msgstr ""
+#~ "--replacefiles ne peut être spécifié que lors de l'installation d'un package"
+
+#, fuzzy
+#~ msgid "--clean may only be used with -b and -t"
+#~ msgstr ""
+#~ "--clean ne peut être spécifié que lors de la construction d'un package"
+
+#, fuzzy
+#~ msgid "--rmsource may only be used with -b and -t"
+#~ msgstr "--oldpackage ne peut être spécifié que lors de mises à jour"
+
+#, fuzzy
+#~ msgid "--short-circuit may only be used during package building"
+#~ msgstr ""
+#~ "--sign ne peut être spécifié que lors de la construction d'un package"
+
+#, fuzzy
+#~ msgid "pgp version 5 not found: "
+#~ msgstr "aucun package n'a été spécifié pour la désinstallation"
+
+#, fuzzy
 #~ msgid "counting packages to uninstall\n"
 #~ msgstr "aucun package n'a été spécifié pour la désinstallation"
 
index 807d975..4e8c859 100644 (file)
--- a/po/pl.po
+++ b/po/pl.po
@@ -8,7 +8,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm-3.0.2\n"
-"POT-Creation-Date: 1999-07-07 10:38-0400\n"
+"POT-Creation-Date: 1999-09-29 19:30-0400\n"
 "PO-Revision-Date: 1999-05-25 17:00+0100\n"
 "Last-Translator: Pawe³ Dziekoñski <pdziekonski@mml.ch.pwr.wroc.pl>\n"
 "Language-Team: Polish <pl@li.org>\n"
@@ -16,835 +16,650 @@ msgstr ""
 "Content-Type: text/plain; charset=ISO-8859-2\n"
 "Content-Transfer-Encoding: 8-bit\n"
 
-#: ../build.c:24 ../install.c:220 ../install.c:371
+#: build.c:23 lib/rpminstall.c:222 lib/rpminstall.c:382
 #, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr "nie mo¿na otworzyæ %s/packages.rpm\n"
 
-#: ../build.c:34
+#: build.c:33
 msgid "failed build dependencies:\n"
 msgstr "niespe³nione zale¿no¶ci:\n"
 
-#: ../build.c:83 ../build.c:96
+#: build.c:61
+#, c-format
+msgid "Unable to open spec file: %s\n"
+msgstr "Nie mo¿na otworzyæ pliku spec: %s\n"
+
+#: build.c:117 build.c:130
 #, c-format
 msgid "Failed to open tar pipe: %s\n"
 msgstr "Otwarcie potoku tara nie powiod³o siê: %s\n"
 
 #. Give up
-#: ../build.c:104
+#: build.c:138
 #, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "Odczytanie pliku spec z %s nie powiod³o siê\n"
 
-#: ../build.c:129
+#: build.c:163
 #, c-format
 msgid "Failed to rename %s to %s: %s\n"
 msgstr "Zmiana nazwy %s na %s nie powiod³a siê\n"
 
-#: ../build.c:167
+#: build.c:201
 #, c-format
 msgid "File is not a regular file: %s\n"
 msgstr "Plik: %s nie jest regularnym plikiem\n"
 
-#: ../build.c:172
-#, c-format
-msgid "Unable to open spec file: %s\n"
-msgstr "Nie mo¿na otworzyæ pliku spec: %s\n"
-
-#: ../build.c:180
-#, c-format
-msgid "File contains non-printable characters(%c): %s\n"
-msgstr "Plik zawiera niedrukowalne znaki (%c): %s\n"
+#: build.c:207
+#, fuzzy, c-format
+msgid "File %s does not appear to be a specfile.\n"
+msgstr "%s nie wygl±da na pakiet RPM\n"
 
 #. parse up the build operators
-#: ../build.c:233
+#: build.c:258
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr "Budowanie dla platform: %s\n"
 
-#: ../build.c:242
+#: build.c:267
 #, c-format
 msgid "Building for target %s\n"
 msgstr "Budowanie dla %s\n"
 
-#: ../build.c:286
+#: build.c:311
 msgid "buildroot already specified"
 msgstr "buildroot by³ ju¿ wcze¶niej podany"
 
-#: ../build.c:292
+#: build.c:317
 msgid "--buildarch has been obsoleted.  Use the --target option instead.\n"
 msgstr "--buildarch wysz³o z u¿ycia. U¿yj opcji --target.\n"
 
-#: ../build.c:296
+#: build.c:321
 msgid "--buildos has been obsoleted.  Use the --target option instead.\n"
 msgstr "--builddos wysz³o z u¿ycia. U¿yj opcji --target.\n"
 
-#: ../build.c:317
+#: build.c:342
 msgid "override build architecture"
 msgstr "wymu¶ architekturê"
 
-#: ../build.c:319
+#: build.c:344
 msgid "override build operating system"
 msgstr "wymu¶ rodzaj systemu operacyjnego"
 
-#: ../build.c:321
+#: build.c:346
 msgid "override build root"
 msgstr "wymu¶ build root"
 
-#: ../build.c:323 ../rpm.c:461
+#: build.c:348 rpm.c:457
 msgid "remove build tree when done"
 msgstr "usuñ budowane drzewo po skoñczeniu"
 
-#: ../build.c:325
+#: build.c:350
 msgid "do not execute any stages of the build"
 msgstr "nie wykonuj ¿adnych etapów budowania"
 
-#: ../build.c:327
+#: build.c:352
 msgid "do not accept I18N msgstr's from specfile"
 msgstr "nie akceptuj wpisów I18N ze speca"
 
-#: ../build.c:329
+#: build.c:354
 msgid "remove sources when done"
 msgstr "usuñ ¼ród³a po zakoñczeniu"
 
-#: ../build.c:331
+#: build.c:356
 msgid "remove specfile when done"
 msgstr "usuñ speca po zakoñczeniu"
 
-#: ../build.c:333 ../rpm.c:459
+#: build.c:358 rpm.c:455
 msgid "skip straight to specified stage (only for c,i)"
 msgstr "przejd¼ od razu do podanego etapu (tylko dla c,i)"
 
-#: ../build.c:335
+#: build.c:360
 msgid "override target platform"
 msgstr "wymu¶ platformê docelow±"
 
-#: ../build.c:337
+#: build.c:362
 msgid "lookup I18N strings in specfile catalog"
 msgstr "wyszukaj wpisy I18N w katalogu speca"
 
-#: ../checksig.c:27 ../checksig.c:165
-#, c-format
-msgid "%s: Open failed\n"
-msgstr "%s: Open nie powiod³o siê\n"
-
-#: ../checksig.c:31 ../checksig.c:170
-#, c-format
-msgid "%s: readLead failed\n"
-msgstr "%s: readLead nie powiod³o siê\n"
-
-#: ../checksig.c:35
-#, c-format
-msgid "%s: Can't sign v1.0 RPM\n"
-msgstr "%s: Nie mo¿na podpisaæ v1.0 RPM\n"
-
-#: ../checksig.c:39
-#, c-format
-msgid "%s: Can't re-sign v2.0 RPM\n"
-msgstr "%s: Nie mo¿na ponownie podpisaæ v2.0 RPM\n"
-
-#: ../checksig.c:43 ../checksig.c:180
-#, c-format
-msgid "%s: rpmReadSignature failed\n"
-msgstr "%s: rpmReadSignature nie powiod³o siê\n"
-
-#: ../checksig.c:56 ../checksig.c:194
-msgid "Couldn't read the header/archive"
-msgstr "Nie mo¿na odczytaæ nag³ówka/archiwum"
-
-#: ../checksig.c:63
-msgid "Couldn't write header/archive to temp file"
-msgstr "Nie mo¿na zapisaæ nag³ówka/archiwum do pliku tymczasowego"
-
-#: ../build/pack.c:330 ../checksig.c:91
-#, c-format
-msgid "Generating signature: %d\n"
-msgstr "Generowanie sygnatury: %d\n"
-
-#: ../checksig.c:114
-msgid "Couldn't read sigtarget"
-msgstr "Nie mo¿na odczytaæ sigtarget"
-
-#: ../checksig.c:123
-msgid "Couldn't write package"
-msgstr "Nie mo¿na zapisaæ pakietu"
-
-#: ../checksig.c:175
-#, c-format
-msgid "%s: No signature available (v1.0 RPM)\n"
-msgstr "%s: Sygnatura nie jest dostêpna (v1.0 RPM)\n"
-
-#: ../checksig.c:185
-#, c-format
-msgid "%s: No signature available\n"
-msgstr "%s: Sygnatura nie jest dostêpna\n"
-
-#: ../checksig.c:201
-#, c-format
-msgid "Unable to write %s"
-msgstr "Nie mo¿na zapisaæ %s"
-
-#: ../checksig.c:327
-msgid "NOT OK"
-msgstr "NIE DOBRZE"
-
-#: ../checksig.c:328 ../checksig.c:342
-msgid " (MISSING KEYS:"
-msgstr " (BRAK KLUCZY:"
-
-#: ../checksig.c:330 ../checksig.c:344
-msgid ") "
-msgstr ") "
-
-#: ../checksig.c:331 ../checksig.c:345
-msgid " (UNTRUSTED KEYS:"
-msgstr "(NIEWIARYGODNE KLUCZE:"
-
-#: ../checksig.c:333 ../checksig.c:347
-msgid ")"
-msgstr ")"
-
-#: ../checksig.c:341
-msgid "OK"
-msgstr "OK"
-
-#: ../convertdb.c:38
+#: convertdb.c:39
 msgid "RPM database already exists"
 msgstr "Baza RPM'a ju¿ istnieje"
 
-#: ../convertdb.c:43
+#: convertdb.c:44
 msgid "Old db is missing"
 msgstr "Brak starej bazy"
 
-#: ../convertdb.c:54
+#: convertdb.c:55
 msgid "failed to create RPM database /var/lib/rpm"
 msgstr "Nie mo¿na utworzyæ bazy w /var/lib/rpm"
 
-#: ../convertdb.c:60
+#: convertdb.c:61
 msgid "Old db is corrupt"
 msgstr "Stara baza jest uszkodzona"
 
-#: ../convertdb.c:69
+#: convertdb.c:70
 #, c-format
 msgid "oldrpmdbGetPackageInfo failed &olddb = %p olddb.packages = %p\n"
 msgstr ""
 "Wykonanie oldrpmdbGetPackageInfo nie powiod³o siê &olddb = %p olddb.packages "
 "= %p\n"
 
-#: ../convertdb.c:201
+#: convertdb.c:204
 msgid "rpmconvert: no arguments expected"
 msgstr "rpmconvert nie wymaga argumentów"
 
-#: ../convertdb.c:207
+#: convertdb.c:210
 msgid "rpmconvert 1.0 - converting database in /var/lib/rpm\n"
 msgstr "rpmconvert 1.0 - konwersja bazy w /var/lib/rpm\n"
 
-#: ../install.c:126
-msgid "counting packages to install\n"
-msgstr "zliczanie pakietów do zainstalowania\n"
-
-#: ../install.c:130
-#, c-format
-msgid "found %d packages\n"
-msgstr "znaleziono %d pakietów\n"
-
-#: ../install.c:139
-msgid "looking for packages to download\n"
-msgstr "szukanie pakietów do ¶ci±gniêcia\n"
-
-#: ../install.c:150
-#, c-format
-msgid "Retrieving %s\n"
-msgstr "¦ci±ganie %s\n"
-
-#: ../install.c:159
-#, c-format
-msgid " ... as %s\n"
-msgstr "... jako %s\n"
-
-#: ../install.c:163
-#, c-format
-msgid "skipping %s - transfer failed - %s\n"
-msgstr "%s pomijany - transmisja %s nie powiod³a siê\n"
-
-#: ../install.c:180
-#, c-format
-msgid "retrieved %d packages\n"
-msgstr "¶ci±gniêto %d pakietów\n"
-
-#: ../install.c:189 ../install.c:321
-#, c-format
-msgid "cannot open file %s\n"
-msgstr "nie mo¿na otworzyæ pliku %s\n"
-
-#: ../install.c:201 ../lib/query.c:575
-#, c-format
-msgid "%s does not appear to be a RPM package\n"
-msgstr "%s nie wygl±da na pakiet RPM\n"
-
-#: ../install.c:205 ../install.c:458
-#, c-format
-msgid "%s cannot be installed\n"
-msgstr "%s nie mo¿e byæ zainstalowany\n"
-
-#: ../install.c:241
-#, c-format
-msgid "package %s is not relocateable\n"
-msgstr "pakiet %s nie jest przesuwalny\n"
-
-#: ../install.c:253
-#, c-format
-msgid "error reading from file %s\n"
-msgstr "b³±d czytania z pliku %s\n"
-
-#: ../install.c:256
-#, c-format
-msgid "file %s requires a newer version of RPM\n"
-msgstr "plik %s wymaga nowszej wersji RPM\n"
-
-#: ../install.c:273
-#, c-format
-msgid "found %d source and %d binary packages\n"
-msgstr "znaleziono %d pakietów ¼ród³owych i %d binarnych\n"
-
-#: ../install.c:283
-msgid "failed dependencies:\n"
-msgstr "niespe³nione zale¿no¶ci:\n"
-
-#: ../install.c:301
-msgid "installing binary packages\n"
-msgstr "instalacja pakietów binarnych\n"
-
-#: ../install.c:382 ../lib/query.c:729
-#, c-format
-msgid "package %s is not installed\n"
-msgstr "pakiet %s nie jest zainstalowany\n"
-
-#: ../install.c:386
-#, c-format
-msgid "searching for package %s\n"
-msgstr "poszukiwanie pakietu %s\n"
-
-#: ../install.c:395
-#, c-format
-msgid "\"%s\" specifies multiple packages\n"
-msgstr "\"%s\" okre¶la wiele pakietów\n"
-
-#: ../install.c:421
-msgid "removing these packages would break dependencies:\n"
-msgstr "usuniêcie tych pakietów zerwie zale¿no¶ci:\n"
-
-#: ../install.c:448
-#, c-format
-msgid "cannot open %s\n"
-msgstr "nie mo¿na otworzyæ %s\n"
-
-#: ../install.c:453
-#, c-format
-msgid "Installing %s\n"
-msgstr "Instalacja %s\n"
-
-#: ../oldrpmdb.c:454
+#: oldrpmdb.c:454
 #, c-format
 msgid "pulling %s from database\n"
 msgstr "wyci±gam %s z bazy danych\n"
 
-#: ../oldrpmdb.c:461
+#: oldrpmdb.c:461
 msgid "package not found in database"
 msgstr "nie znaleziono pakietu w bazie danych"
 
-#: ../oldrpmdb.c:522
+#: oldrpmdb.c:522
 msgid "no copyright!\n"
 msgstr "brak praw autorskich!\n"
 
-#: ../rpm.c:163
+#: rpm.c:159
 #, c-format
 msgid "rpm: %s\n"
 msgstr "rpm: %s\n"
 
-#: ../rpm.c:174
+#: rpm.c:170
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM wersja %s\n"
 
-#: ../rpm.c:178
+#: rpm.c:174
 msgid "Copyright (C) 1998 - Red Hat Software"
 msgstr "Copyright (C) 1998 - Red Hat Software"
 
-#: ../rpm.c:179
-msgid ""
-"This may be freely redistributed under the terms of the GNU Public License"
+#: rpm.c:175
+#, fuzzy
+msgid "This may be freely redistributed under the terms of the GNU GPL"
 msgstr "Program mo¿e byæ swobodnie rozpowszechniany na warunkach licencji GNU"
 
-#: ../rpm.c:188
+#: rpm.c:183
 msgid "usage: rpm {--help}"
 msgstr "U¿ycie: rpm {--help}"
 
-#: ../rpm.c:189
+#: rpm.c:184
 msgid "       rpm {--version}"
 msgstr "       rpm {--version}"
 
-#: ../rpm.c:190
+#: rpm.c:185
 msgid "       rpm {--initdb}   [--dbpath <dir>]"
 msgstr "       rpm {--initdb}   [--dbpath <katalog>]"
 
-#: ../rpm.c:191
+#: rpm.c:186
 msgid ""
 "       rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 "       rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
 
-#: ../rpm.c:192
+#: rpm.c:187
 msgid "                        [--replacepkgs] [--replacefiles] [--root <dir>]"
 msgstr ""
 "                        [--replacepkgs] [--replacefiles] [--root <katalog>]"
 
-#: ../rpm.c:193
+#: rpm.c:188
 msgid "                        [--excludedocs] [--includedocs] [--noscripts]"
 msgstr "                        [--excludedocs] [--includedocs] [--noscripts]"
 
-#: ../rpm.c:194
+#: rpm.c:189
 msgid ""
 "                        [--rcfile <file>] [--ignorearch] [--dbpath <dir>]"
 msgstr ""
 "                        [--rcfile <plik>] [--ignorearch] [--dbpath <katalog>]"
 
-#: ../rpm.c:195
+#: rpm.c:190
 msgid ""
 "                        [--prefix <dir>] [--ignoreos] [--nodeps] [--allfiles]"
 msgstr ""
 "                        [--prefix <katalog>] [--ignoreos] [--nodeps] "
 "[--allfiles]"
 
-#: ../rpm.c:196
+#: rpm.c:191
 msgid ""
 "                        [--ftpproxy <host>] [--ftpport <port>] [--justdb]"
 msgstr ""
 "                        [--ftpproxy <host>] [--ftpport <port>] [--justdb]"
 
-#: ../rpm.c:197 ../rpm.c:206 ../rpm.c:215
+#: rpm.c:192 rpm.c:201 rpm.c:210
 msgid "                        [--httpproxy <host>] [--httpport <port>] "
 msgstr "                        [--httpproxy <host>] [--httpport <port>] "
 
-#: ../rpm.c:198 ../rpm.c:208
+#: rpm.c:193 rpm.c:203
 msgid "                        [--noorder] [--relocate oldpath=newpath]"
 msgstr ""
 "                        [--noorder] [--relocate stara-¶cie¿ka=nowa-¶cie¿ka]"
 
-#: ../rpm.c:199
+#: rpm.c:194
 msgid ""
 "                        [--badreloc] [--notriggers] [--excludepath <path>]"
 msgstr ""
 "                        [--badreloc] [--notriggers] [--excludepath <¶cie¿ka>]"
 
-#: ../rpm.c:200
+#: rpm.c:195
 msgid "                        [--ignoresize] file1.rpm ... fileN.rpm"
 msgstr "                        [--ignoresize] plik1.rpm ... plikN.rpm"
 
-#: ../rpm.c:201
+#: rpm.c:196
 msgid ""
 "       rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 "       rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]"
 
-#: ../rpm.c:202
+#: rpm.c:197
 msgid "                        [--oldpackage] [--root <dir>] [--noscripts]"
 msgstr ""
 "                        [--oldpackage] [--root <katalog>] [--noscripts]"
 
-#: ../rpm.c:203
+#: rpm.c:198
 msgid ""
 "                        [--excludedocs] [--includedocs] [--rcfile <file>]"
 msgstr ""
 "                        [--excludedocs] [--includedocs] [--rcfile <plik>]"
 
-#: ../rpm.c:204
+#: rpm.c:199
 msgid ""
 "                        [--ignorearch]  [--dbpath <dir>] [--prefix <dir>] "
 msgstr ""
 "                        [--ignorearch]  [--dbpath <katalog>] [--prefix "
 "<katalog>] "
 
-#: ../rpm.c:205
+#: rpm.c:200
 msgid "                        [--ftpproxy <host>] [--ftpport <port>]"
 msgstr "                        [--ftpproxy <host>] [--ftpport <port>]"
 
-#: ../rpm.c:207
+#: rpm.c:202
 msgid "                        [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
 msgstr ""
 "                        [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
 
-#: ../rpm.c:209
+#: rpm.c:204
 msgid ""
 "                        [--badreloc] [--excludepath <path>] [--ignoresize]"
 msgstr ""
 "                        [--badreloc] [--excludepath <¶cie¿ka>] [--ignoresize]"
 
-#: ../rpm.c:210
+#: rpm.c:205
 msgid "                        file1.rpm ... fileN.rpm"
 msgstr "                        plik1.rpm ... plikN.rpm"
 
-#: ../rpm.c:211
+#: rpm.c:206
 msgid "       rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]"
 msgstr "       rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]"
 
-#: ../rpm.c:212
+#: rpm.c:207
 msgid "                        [--scripts] [--root <dir>] [--rcfile <file>]"
 msgstr ""
 "                        [--scripts] [--root <katalog>] [--rcfile <plik>]"
 
-#: ../rpm.c:213
+#: rpm.c:208
 msgid "                        [--whatprovides] [--whatrequires] [--requires]"
 msgstr "                        [--whatprovides] [--whatrequires] [--requires]"
 
-#: ../rpm.c:214
+#: rpm.c:209
 msgid ""
 "                        [--triggeredby] [--ftpuseport] [--ftpproxy <host>]"
 msgstr ""
 "                        [--triggeredby] [--ftpuseport] [--ftpproxy <host>]"
 
-#: ../rpm.c:216
+#: rpm.c:211
 msgid ""
 "                        [--ftpport <port>] [--provides] [--triggers] [--dump]"
 msgstr ""
 "                        [--ftpport <port>] [--provides] [--triggers] [--dump]"
 
-#: ../rpm.c:217
+#: rpm.c:212
 msgid "                        [--changelog] [--dbpath <dir>] [targets]"
 msgstr "                        [--changelog] [--dbpath <katalog>] [cele]"
 
-#: ../rpm.c:218
+#: rpm.c:213
 msgid "       rpm {--verify -V -y} [-afpg] [--root <dir>] [--rcfile <file>]"
 msgstr ""
 "       rpm {--verify -V -y} [-afpg] [--root <katalog>] [--rcfile <plik>]"
 
-#: ../rpm.c:219
+#: rpm.c:214
 msgid ""
 "                        [--dbpath <dir>] [--nodeps] [--nofiles] [--noscripts]"
 msgstr ""
 "                        [--dbpath <katalog>] [--nodeps] [--nofiles] "
 "[--noscripts]"
 
-#: ../rpm.c:220
+#: rpm.c:215
 msgid "                        [--nomd5] [targets]"
 msgstr "                        [--nomd5] [cele]"
 
-#: ../rpm.c:221
+#: rpm.c:216
 msgid "       rpm {--setperms} [-afpg] [target]"
 msgstr "       rpm {--setperms} [-afpg] [cel]"
 
-#: ../rpm.c:222
+#: rpm.c:217
 msgid "       rpm {--setugids} [-afpg] [target]"
 msgstr "       rpm {--setugids} [-afpg] [cel]"
 
-#: ../rpm.c:223
+#: rpm.c:218
+#, fuzzy
+msgid "       rpm {--freshen -F} file1.rpm ... fileN.rpm"
+msgstr "                        plik1.rpm ... plikN.rpm"
+
+#: rpm.c:219
 msgid "       rpm {--erase -e} [--root <dir>] [--noscripts] [--rcfile <file>]"
 msgstr ""
 "       rpm {--erase -e} [--root <katalog>] [--noscripts] [--rcfile <plik>]"
 
-#: ../rpm.c:224
+#: rpm.c:220
 msgid "                        [--dbpath <dir>] [--nodeps] [--allmatches]"
 msgstr "                        [--dbpath <katalog>] [--nodeps] [--allmatches]"
 
-#: ../rpm.c:225
+#: rpm.c:221
 msgid ""
 "                        [--justdb] [--notriggers] rpackage1 ... packageN"
 msgstr "                        [--justdb] [--notriggers] pakiet1 ... pakietN"
 
-#: ../rpm.c:226
+#: rpm.c:222
 msgid ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile  <file>]"
 msgstr ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile <plik>]"
 
-#: ../rpm.c:227
+#: rpm.c:223
 msgid "                        [--sign] [--nobuild] [--timecheck <s>] ]"
 msgstr "                        [--sign] [--nobuild] [--timecheck <s>] ]"
 
-#: ../rpm.c:228
+#: rpm.c:224
 msgid "                        [--target=platform1[,platform2...]]"
 msgstr "                        [--target=platforma1[,platforma2...]]"
 
-#: ../rpm.c:229
+#: rpm.c:225
 msgid "                        [--rmsource] specfile"
 msgstr "                        [--rmsource] plik_spec"
 
-#: ../rpm.c:230
+#: rpm.c:226
 msgid "       rpm {--rmsource} [--rcfile <file>] [-v] specfile"
 msgstr "       rpm {--rmsource} [--rcfile <plik>] [-v] plik_spec"
 
-#: ../rpm.c:231
+#: rpm.c:227
 msgid ""
 "       rpm {--rebuild} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 "       rpm {--rebuild} [--rcfile <plik>] [-v] ¼ród³owy1.rpm ... ¼ród³owyN.rpm"
 
-#: ../rpm.c:232
+#: rpm.c:228
 msgid ""
 "       rpm {--recompile} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 "       rpm {--recompile} [--rcfile <plik>] [-v] ¼ród³owy1.rpm ... "
 "¼ród³owyN.rpm"
 
-#: ../rpm.c:233
+#: rpm.c:229
 msgid "       rpm {--resign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr "       rpm {--resign} [--rcfile <plik>] pakiet1 pakiet2 ... pakietN"
 
-#: ../rpm.c:234
+#: rpm.c:230
 msgid "       rpm {--addsign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr "       rpm {--addsign} [--rcfile <plik>] pakiet1 pakiet2 ... pakietN"
 
-#: ../rpm.c:235
+#: rpm.c:231
 msgid ""
 "       rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile <file>]"
 msgstr ""
 "       rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile <plik>]"
 
-#: ../rpm.c:236
+#: rpm.c:232
 msgid "                           package1 ... packageN"
 msgstr "                           pakiet1 ... pakietN"
 
-#: ../rpm.c:237
+#: rpm.c:233
 msgid "       rpm {--rebuilddb} [--rcfile <file>] [--dbpath <dir>]"
 msgstr "       rpm {--rebuilddb} [--rcfile <plik>] [--dbpath <katalog>]"
 
-#: ../rpm.c:238
+#: rpm.c:234
 msgid "       rpm {--querytags}"
 msgstr "       rpm {--querytags}"
 
-#: ../rpm.c:272
+#: rpm.c:268
 msgid "usage:"
 msgstr "u¿ycie:"
 
-#: ../rpm.c:274
+#: rpm.c:270
 msgid "print this message"
 msgstr "wy¶wietl ten tekst"
 
-#: ../rpm.c:276
+#: rpm.c:272
 msgid "print the version of rpm being used"
 msgstr "wy¶wietl wersjê u¿ywanego rpm-a"
 
-#: ../rpm.c:277
+#: rpm.c:273
 msgid "   all modes support the following arguments:"
 msgstr "   wszystkie tryby pracy pozwalaj± u¿yæ nastêpuj±cych argumentów:"
 
-#: ../rpm.c:278
+#: rpm.c:274
 msgid "      --rcfile <file>     "
 msgstr "      --rcfile <plik>     "
 
-#: ../rpm.c:279
+#: rpm.c:275
 msgid "use <file> instead of /etc/rpmrc and $HOME/.rpmrc"
 msgstr "u¿yj <plik> zamiast /etc/rpmrc i $HOME/.rpmrc"
 
-#: ../rpm.c:281
+#: rpm.c:277
 msgid "be a little more verbose"
 msgstr "wy¶wietlaj nieco wiêcej komunikatów"
 
-#: ../rpm.c:283
+#: rpm.c:279
 msgid "be incredibly verbose (for debugging)"
 msgstr "wy¶wietlaj BARDZO du¿o komunikatów (dla odpluskwiania)"
 
-#: ../rpm.c:285
+#: rpm.c:281
 msgid "query mode"
 msgstr "tryb odpytywania"
 
-#: ../rpm.c:286 ../rpm.c:348 ../rpm.c:412 ../rpm.c:440
+#: rpm.c:282 rpm.c:344 rpm.c:408 rpm.c:436
 msgid "      --root <dir>        "
 msgstr "      --root <katalog>        "
 
-#: ../rpm.c:287 ../rpm.c:349 ../rpm.c:413 ../rpm.c:441 ../rpm.c:503
+#: rpm.c:283 rpm.c:345 rpm.c:409 rpm.c:437 rpm.c:499
 msgid "use <dir> as the top level directory"
 msgstr "u¿yj <katalogu> jako katalogu najwy¿szego poziomu"
 
-#: ../rpm.c:288 ../rpm.c:346 ../rpm.c:376 ../rpm.c:428 ../rpm.c:500
+#: rpm.c:284 rpm.c:342 rpm.c:372 rpm.c:424 rpm.c:496
 msgid "      --dbpath <dir>      "
 msgstr "      --dbpath <katalog>      "
 
-#: ../rpm.c:289 ../rpm.c:347 ../rpm.c:377 ../rpm.c:429 ../rpm.c:501
+#: rpm.c:285 rpm.c:343 rpm.c:373 rpm.c:425 rpm.c:497
 msgid "use <dir> as the directory for the database"
 msgstr "u¿yj <katalog> jako katalogu bazy pakietów"
 
-#: ../rpm.c:290
+#: rpm.c:286
 msgid "      --queryformat <qfmt>"
 msgstr "      --queryformat <format zapytania>"
 
-#: ../rpm.c:291
+#: rpm.c:287
 msgid "use <qfmt> as the header format (implies -i)"
 msgstr "u¿yj <format zapytania> jako formatu nag³ówka (dotyczy -i)"
 
-#: ../rpm.c:292
+#: rpm.c:288
 msgid ""
 "   install, upgrade and query (with -p) allow ftp URL's to be used in place"
 msgstr ""
 "   instalacja, uaktualnianie i odpytywanie (z opcj± -p) pozwalaj± u¿yæ URL'a "
 "ftp zamiast"
 
-#: ../rpm.c:293
+#: rpm.c:289
 msgid "   of file names as well as the following options:"
 msgstr "   nazwy pliku tak jak i nastêpuj±cych opcji:"
 
-#: ../rpm.c:294
+#: rpm.c:290
 msgid "      --ftpproxy <host>   "
 msgstr "      --ftpproxy <host>   "
 
-#: ../rpm.c:295
+#: rpm.c:291
 msgid "hostname or IP of ftp proxy"
 msgstr "nazwa lub numer IP maszyny bêd±cej ftp proksy"
 
-#: ../rpm.c:296
+#: rpm.c:292
 msgid "      --ftpport <port>    "
 msgstr "      --ftpport <port>    "
 
-#: ../rpm.c:297
+#: rpm.c:293
 msgid "port number of ftp server (or proxy)"
 msgstr "numer portu serwera ftp (lub proksy)"
 
-#: ../rpm.c:298
+#: rpm.c:294
 msgid "      --httpproxy <host>   "
 msgstr "      --httpproxy <host>   "
 
-#: ../rpm.c:299
+#: rpm.c:295
 msgid "hostname or IP of http proxy"
 msgstr "nazwa lub IP hosta bêd±cego http proksy"
 
-#: ../rpm.c:300
+#: rpm.c:296
 msgid "      --httpport <port>    "
 msgstr "      --httpport <port>    "
 
-#: ../rpm.c:301
+#: rpm.c:297
 msgid "port number of http server (or proxy)"
 msgstr "numer portu serwera http (albo proksy)"
 
-#: ../rpm.c:302
+#: rpm.c:298
 msgid "      Package specification options:"
 msgstr "      Opcje selekcjonuj±ce pakiety:"
 
-#: ../rpm.c:304
+#: rpm.c:300
 msgid "query all packages"
 msgstr "odpytuj wszystkie pakiety"
 
-#: ../rpm.c:305
+#: rpm.c:301
 msgid "        -f <file>+        "
 msgstr "        -f <plik>+        "
 
-#: ../rpm.c:306
+#: rpm.c:302
 msgid "query package owning <file>"
 msgstr "zapytaj do jakiego pakietu nale¿y <plik>"
 
-#: ../rpm.c:307
+#: rpm.c:303
 msgid "        -p <packagefile>+ "
 msgstr "        -p <nazwa pakietu>+ "
 
-#: ../rpm.c:308
+#: rpm.c:304
 msgid "query (uninstalled) package <packagefile>"
 msgstr "odpytaj (niezainstalowany) pakiet <nazwa pakietu>"
 
-#: ../rpm.c:309
+#: rpm.c:305
 msgid "        --triggeredby <pkg>"
 msgstr "        --triggeredby <pakiet>"
 
-#: ../rpm.c:310
+#: rpm.c:306
 msgid "query packages triggered by <pkg>"
 msgstr "odpytaj pakiety zahaczane przez <pakiet>"
 
-#: ../rpm.c:311
+#: rpm.c:307
 msgid "        --whatprovides <cap>"
 msgstr "        --whatprovides <zas>"
 
-#: ../rpm.c:312
+#: rpm.c:308
 msgid "query packages which provide <cap> capability"
 msgstr "odszukaj pakiety udostêpniaj±ce zasób <zas>"
 
-#: ../rpm.c:313
+#: rpm.c:309
 msgid "        --whatrequires <cap>"
 msgstr "        --whatrequires <zas>"
 
-#: ../rpm.c:314
+#: rpm.c:310
 msgid "query packages which require <cap> capability"
 msgstr "odszukaj pakiety wymagaj±ce zasobu <zas>"
 
-#: ../rpm.c:315
+#: rpm.c:311
 msgid "      Information selection options:"
 msgstr "      Opcje odpytuj±ce pakiety:"
 
-#: ../rpm.c:317
+#: rpm.c:313
 msgid "display package information"
 msgstr "wy¶wietl informacjê o pakiecie"
 
-#: ../rpm.c:319
+#: rpm.c:315
 msgid "display the package's change log"
 msgstr "wy¶wietl wykaz zmian dokonanych w pakiecie"
 
-#: ../rpm.c:321
+#: rpm.c:317
 msgid "display package file list"
 msgstr "wy¶wietl listê plików zawartych w pakiecie"
 
-#: ../rpm.c:323
+#: rpm.c:319
 msgid "show file states (implies -l)"
 msgstr "poka¿ statusy plików (dotyczy -l)"
 
-#: ../rpm.c:325
+#: rpm.c:321
 msgid "list only documentation files (implies -l)"
 msgstr "wy¶wietl tylko pliki dokumentacji (dotyczy -l)"
 
-#: ../rpm.c:327
+#: rpm.c:323
 msgid "list only configuration files (implies -l)"
 msgstr "wy¶wietl tylko pliki konfiguracyjne (dotyczy -l)"
 
-#: ../rpm.c:329
+#: rpm.c:325
 msgid ""
 "show all verifiable information for each file (must be used with -l, -c, or "
 "-d)"
 msgstr ""
 "poka¿ wszystkie informacje o ka¿dym pliku (musi byæ u¿yte z -l, -c lub -d)"
 
-#: ../rpm.c:331
+#: rpm.c:327
 msgid "list capabilities package provides"
 msgstr "wypisz zasoby udostêpniane przez pakiet"
 
-#: ../rpm.c:332
+#: rpm.c:328
 msgid "        --requires"
 msgstr "        --requires"
 
-#: ../rpm.c:334
+#: rpm.c:330
 msgid "list package dependencies"
 msgstr "wypisz zale¿no¶ci pakietu"
 
-#: ../rpm.c:336
+#: rpm.c:332
 msgid "print the various [un]install scripts"
 msgstr "wy¶wietl skrypty [de]instalacyjne"
 
-#: ../rpm.c:338
+#: rpm.c:334
 msgid "show the trigger scripts contained in the package"
 msgstr "wy¶wietl trigger skrypty zawarte w pakiecie"
 
-#: ../rpm.c:342
+#: rpm.c:338
 msgid "    --pipe <cmd>          "
 msgstr "    --pipe <komenda>      "
 
-#: ../rpm.c:343
+#: rpm.c:339
 msgid "send stdout to <cmd>"
 msgstr "przeka¿ standartowe wyj¶cie do <komenda>"
 
-#: ../rpm.c:345
+#: rpm.c:341
 msgid ""
 "verify a package installation using the same same package specification "
 "options as -q"
 msgstr "sprawd¼ stan pakietu (u¿ywa tych samych opcji co -q)"
 
-#: ../rpm.c:351 ../rpm.c:399 ../rpm.c:433
+#: rpm.c:347 rpm.c:395 rpm.c:429
 msgid "do not verify package dependencies"
 msgstr "nie sprawdzaj zale¿no¶ci pakietu"
 
-#: ../rpm.c:353
+#: rpm.c:349
 msgid "do not verify file md5 checksums"
 msgstr "nie sprawdzaj sum kontrolnych md5 plików"
 
-#: ../rpm.c:355
+#: rpm.c:351
 msgid "do not verify file attributes"
 msgstr "nie sprawdzaj atrybutów plików"
 
-#: ../rpm.c:358
+#: rpm.c:354
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
@@ -852,7 +667,7 @@ msgstr ""
 "ustaw prawa dostêpu takie jak zapisano w bazie pakietów (u¿ywa tych samych "
 "opcji co -q)"
 
-#: ../rpm.c:361
+#: rpm.c:357
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
@@ -860,125 +675,125 @@ msgstr ""
 "ustaw w³a¶ciciela i grupê takie jak zapisano w bazie pakietów (u¿ywa tych "
 "samych opcji co -q)"
 
-#: ../rpm.c:365
+#: rpm.c:361
 msgid "    --install <packagefile>"
 msgstr "    --install <nazwa pakietu>"
 
-#: ../rpm.c:366
+#: rpm.c:362
 msgid "    -i <packagefile>      "
 msgstr "    -i <nazwa pakietu>      "
 
-#: ../rpm.c:367
+#: rpm.c:363
 msgid "install package"
 msgstr "instaluj pakiet"
 
-#: ../rpm.c:368
+#: rpm.c:364
 msgid "      --excludepath <path>"
 msgstr "      --excludepath <¶cie¿ka>"
 
-#: ../rpm.c:369
+#: rpm.c:365
 msgid "skip files in path <path>"
 msgstr "pomiñ pliki le¿±ce w <¶cie¿ce>"
 
-#: ../rpm.c:370
+#: rpm.c:366
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr "      --relocate <stara-¶cie¿ka>=<nowa-¶cie¿ka>"
 
-#: ../rpm.c:371
+#: rpm.c:367
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr "przesuñ pliki z drzewa <stara-¶cie¿ka> do drzewa <nowa-¶cie¿ka>"
 
-#: ../rpm.c:373
+#: rpm.c:369
 msgid "relocate files even though the package doesn't allow it"
 msgstr "przesuñ pliki nawet gdy pakiet na to nie pozwala"
 
-#: ../rpm.c:374
+#: rpm.c:370
 msgid "      --prefix <dir>      "
 msgstr "      --prefix <katalog>      "
 
-#: ../rpm.c:375
+#: rpm.c:371
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "przesuñ pliki pakietu do drzewa <katalog>, je¶li jest przesuwalny"
 
-#: ../rpm.c:379
+#: rpm.c:375
 msgid "do not install documentation"
 msgstr "nie instaluj dokumentacji"
 
-#: ../rpm.c:381
+#: rpm.c:377
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "skrócona wersja kombinacji --replacepkgs --replacefiles"
 
-#: ../rpm.c:384
+#: rpm.c:380
 msgid "print hash marks as package installs (good with -v)"
 msgstr "wy¶wietlaj znaki hash przy instalacji (fajne z -v)"
 
-#: ../rpm.c:386
+#: rpm.c:382
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "instaluj wszystkie pliki, nawet konfiguracyjne, które w innym przypadku by "
 "pominêto"
 
-#: ../rpm.c:389
+#: rpm.c:385
 msgid "don't verify package architecture"
 msgstr "nie sprawdzaj architektury systemu"
 
-#: ../rpm.c:391
+#: rpm.c:387
 msgid "don't check disk space before installing"
 msgstr "nie sprawdzaj zajêto¶ci dysku przed instalacj±"
 
-#: ../rpm.c:393
+#: rpm.c:389
 msgid "don't verify package operating system"
 msgstr "nie sprawdzaj rodzaju systemu operacyjnego"
 
-#: ../rpm.c:395
+#: rpm.c:391
 msgid "install documentation"
 msgstr "zainstaluj dokumentacjê"
 
-#: ../rpm.c:397 ../rpm.c:431
+#: rpm.c:393 rpm.c:427
 msgid "update the database, but do not modify the filesystem"
 msgstr "od¶wie¿ bazê, ale nie modyfikuj systemu plików"
 
-#: ../rpm.c:401 ../rpm.c:435
+#: rpm.c:397 rpm.c:431
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "nie zmieniaj kolejno¶ci instalacji pakietów by zapewniæ zale¿no¶ci"
 
-#: ../rpm.c:403
+#: rpm.c:399
 msgid "don't execute any installation scripts"
 msgstr "nie wykonuj ¿adnych skryptów instalacyjnych"
 
-#: ../rpm.c:405 ../rpm.c:439
+#: rpm.c:401 rpm.c:435
 msgid "don't execute any scripts triggered by this package"
 msgstr ""
 
-#: ../rpm.c:407
+#: rpm.c:403
 msgid "print percentages as package installs"
 msgstr "wy¶wietlaj stan instalacji w procentach"
 
-#: ../rpm.c:409
+#: rpm.c:405
 msgid "install even if the package replaces installed files"
 msgstr "instaluj nawet gdy pakiet zastêpuje inne zainstalowane pliki"
 
-#: ../rpm.c:411
+#: rpm.c:407
 msgid "reinstall if the package is already present"
 msgstr "przeinstaluj je¶li pakiet jest ju¿ zainstalowany"
 
-#: ../rpm.c:415
+#: rpm.c:411
 msgid "don't install, but tell if it would work or not"
 msgstr "nie instaluj, podaj tylko czy instalacja zadzia³a czy nie"
 
-#: ../rpm.c:417
+#: rpm.c:413
 msgid "    --upgrade <packagefile>"
 msgstr "    --upgrade <nazwa pakietu>"
 
-#: ../rpm.c:418
+#: rpm.c:414
 msgid "    -U <packagefile>      "
 msgstr "    -U <nazwa pakietu>      "
 
-#: ../rpm.c:419
+#: rpm.c:415
 msgid "upgrade package (same options as --install, plus)"
 msgstr "uaktualnij pakiet (te same opcje jak --install, plus)"
 
-#: ../rpm.c:421
+#: rpm.c:417
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -986,15 +801,15 @@ msgstr ""
 "uaktualnij do starej wersji (--force robi to samo automatycznie podczas "
 "uaktualniania)"
 
-#: ../rpm.c:423
+#: rpm.c:419
 msgid "    --erase <package>"
 msgstr "    --erase <pakiet>"
 
-#: ../rpm.c:425
+#: rpm.c:421
 msgid "erase (uninstall) package"
 msgstr "usuñ (odinstaluj) pakiet"
 
-#: ../rpm.c:427
+#: rpm.c:423
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1002,89 +817,89 @@ msgstr ""
 "usuñ wszystkie pakiety, które spe³niaj± wzorzec <pakiet> (zazwyczaj "
 "wy¶wietlany jest b³±d gdy <pakiet> opisuje wiele pakietów)"
 
-#: ../rpm.c:437
+#: rpm.c:433
 msgid "do not execute any package specific scripts"
 msgstr "nie wykonuj ¿adnych skryptów instalacyjnych"
 
-#: ../rpm.c:443
+#: rpm.c:439
 msgid "    -b<stage> <spec>      "
 msgstr "    -b<etap> <plik-spec>  "
 
-#: ../rpm.c:444
+#: rpm.c:440
 msgid "    -t<stage> <tarball>   "
 msgstr "    -t<etap> <plik-tar>   "
 
-#: ../rpm.c:445
+#: rpm.c:441
 msgid "build package, where <stage> is one of:"
 msgstr "buduj pakiet, gdzie <etap> to:"
 
-#: ../rpm.c:447
+#: rpm.c:443
 msgid "prep (unpack sources and apply patches)"
 msgstr "preparuj (rozpakuj ¼ród³a i na³ó¿ ³aty)"
 
-#: ../rpm.c:449
+#: rpm.c:445
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr ""
 "sprawdzanie z listy (wykonuje kilka podstawowych weryfikacji na %files)"
 
-#: ../rpm.c:451
+#: rpm.c:447
 msgid "compile (prep and compile)"
 msgstr "kompiluj (preparuj i kompiluj)"
 
-#: ../rpm.c:453
+#: rpm.c:449
 msgid "install (prep, compile, install)"
 msgstr "instaluj (preparuj, kompiluj i instaluj)"
 
-#: ../rpm.c:455
+#: rpm.c:451
 msgid "binary package (prep, compile, install, package)"
 msgstr "pakiet binarny (preparuj, kompiluj, instaluj, pakiet)"
 
-#: ../rpm.c:457
+#: rpm.c:453
 msgid "bin/src package (prep, compile, install, package)"
 msgstr "pakiet binarny/¼ród³owy (preparuj, kompiluj, instaluj, pakiet)"
 
-#: ../rpm.c:463
+#: rpm.c:459
 msgid "remove sources and spec file when done"
 msgstr "usuñ ¼ród³a i plik spec po skoñczeniu"
 
-#: ../rpm.c:465
+#: rpm.c:461
 msgid "generate PGP/GPG signature"
 msgstr "generuj sygnaturê PGP/GPG"
 
-#: ../rpm.c:466
+#: rpm.c:462
 msgid "      --buildroot <dir>   "
 msgstr "      --buildroot <katalog>"
 
-#: ../rpm.c:467
+#: rpm.c:463
 msgid "use <dir> as the build root"
 msgstr "u¿yj <katalog> jako korzeñ budowanego drzewa"
 
-#: ../rpm.c:468
+#: rpm.c:464
 msgid "      --target=<platform>+"
 msgstr "      --target=<platforma>+"
 
-#: ../rpm.c:469
+#: rpm.c:465
 msgid "build the packages for the build targets platform1...platformN."
 msgstr "buduj pakiety dla platform docelowych platforma1...platformaN."
 
-#: ../rpm.c:471
+#: rpm.c:467
 msgid "do not execute any stages"
 msgstr "nie wykonuj ¿adnych etapów"
 
-#: ../rpm.c:472
+#: rpm.c:468
 msgid "      --timecheck <secs>  "
 msgstr "      --timecheck <sekundy>"
 
-#: ../rpm.c:473
+#: rpm.c:469
 msgid "set the time check to <secs> seconds (0 disables)"
 msgstr "ustaw sprawdzanie czasu do ilo¶ci <sekund> (0 wy³±cza)"
 
-#: ../rpm.c:475
+#: rpm.c:471
 msgid "    --rebuild <src_pkg>   "
 msgstr "    --rebuild <pkt_¼ród³> "
 
-#: ../rpm.c:476
+#: rpm.c:472
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -1092,223 +907,221 @@ msgstr ""
 "instaluj pakiet ¼ród³owy, buduj pakiet binarny i usuñ plik spec, ¼ród³a, "
 "³aty i ikony"
 
-#: ../rpm.c:477
+#: rpm.c:473
 msgid "    --rmsource <spec>     "
 msgstr "    --rmsource <plik spec>"
 
-#: ../rpm.c:478
+#: rpm.c:474
 msgid "remove sources and spec file"
 msgstr "usuñ plik spec i ¼ród³a"
 
-#: ../rpm.c:479
+#: rpm.c:475
 msgid "    --recompile <src_pkg> "
 msgstr "    --recompile <pkt_¼ród³>"
 
-#: ../rpm.c:480
+#: rpm.c:476
 msgid "like --rebuild, but don't build any package"
 msgstr "jak --rebuild, ale nie buduj ¿adnych pakietów"
 
-#: ../rpm.c:481
+#: rpm.c:477
 msgid "    --resign <pkg>+       "
 msgstr "    --resign <pakiet>+    "
 
-#: ../rpm.c:482
+#: rpm.c:478
 msgid "sign a package (discard current signature)"
 msgstr "podpisz pakiet (porzuæ bierz±c± sygnaturê)"
 
-#: ../rpm.c:483
+#: rpm.c:479
 msgid "    --addsign <pkg>+      "
 msgstr "    --addsign <pakiet>+   "
 
-#: ../rpm.c:484
+#: rpm.c:480
 msgid "add a signature to a package"
 msgstr "dodaj sygnaturê do pakietu"
 
-#: ../rpm.c:486
+#: rpm.c:482
 msgid "    --checksig <pkg>+     "
 msgstr "    --checksig <pakiet>+  "
 
-#: ../rpm.c:487
+#: rpm.c:483
 msgid "verify package signature"
 msgstr "sprawd¼ sygnaturê pakietu"
 
-#: ../rpm.c:489
+#: rpm.c:485
 msgid "skip any PGP signatures"
 msgstr "pomiñ wszelkie sygnatury PGP"
 
-#: ../rpm.c:491
+#: rpm.c:487
 msgid "skip any GPG signatures"
 msgstr "pomiñ wszelkie sygnatury GPG"
 
-#: ../rpm.c:493
+#: rpm.c:489
 msgid "skip any MD5 signatures"
 msgstr "pomiñ wszelkie sygnatury MD5"
 
-#: ../rpm.c:495
+#: rpm.c:491
 msgid "list the tags that can be used in a query format"
 msgstr "wypisz etykiety w³asno¶ci, o które mo¿na zapytaæ"
 
-#: ../rpm.c:497
+#: rpm.c:493
 msgid "make sure a valid database exists"
 msgstr "upewnij siê, ¿e poprawna baza istnieje"
 
-#: ../rpm.c:499
+#: rpm.c:495
 msgid "rebuild database from existing database"
 msgstr "przebuduj istniej±c± bazê"
 
-#: ../rpm.c:640 ../rpm.c:646 ../rpm.c:653 ../rpm.c:659 ../rpm.c:668
-#: ../rpm.c:675 ../rpm.c:722 ../rpm.c:728 ../rpm.c:788 ../rpm.c:796
-#: ../rpm.c:803 ../rpm.c:812 ../rpm.c:819 ../rpm.c:827 ../rpm.c:856
-#: ../rpm.c:911 ../rpm.c:918
+#: rpm.c:639 rpm.c:645 rpm.c:652 rpm.c:658 rpm.c:667 rpm.c:674 rpm.c:721
+#: rpm.c:727 rpm.c:761 rpm.c:767 rpm.c:773 rpm.c:781 rpm.c:816 rpm.c:871
+#: rpm.c:878
 msgid "only one major mode may be specified"
 msgstr "tylko jeden g³ówny tryb pracy mo¿e byæ podany"
 
-#: ../rpm.c:661
+#: rpm.c:660
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr "-u i --uninstall nie s± ju¿ obs³ugiwane i nie pracuj±.\n"
 
-#: ../rpm.c:663
+#: rpm.c:662
 msgid "Use -e or --erase instead.\n"
 msgstr "U¿yj -e lub --erase\n"
 
-#: ../rpm.c:679
+#: rpm.c:678
 msgid "--build (-b) requires one of a,b,i,c,p,l as its sole argument"
 msgstr "--build (-b) wymaga koniecznie jednego z a,b,i,c,p,l"
 
-#: ../rpm.c:683
+#: rpm.c:682
 msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
 msgstr "--tarbuild (-t) wymaga koniecznie jednego z a,b,i,c,p,l"
 
-#: ../rpm.c:735 ../rpm.c:741 ../rpm.c:748 ../rpm.c:755 ../rpm.c:764
-#: ../rpm.c:772 ../rpm.c:780 ../rpm.c:925
+#: rpm.c:734 rpm.c:740 rpm.c:747 rpm.c:754 rpm.c:885
 msgid "one type of query/verify may be performed at a time"
 msgstr "tylko jeden typ odpytywania/sprawdzania mo¿na wykonaæ na raz"
 
-#: ../rpm.c:835
+#: rpm.c:789
 msgid "arguments to --dbpath must begin with a /"
 msgstr "argumenty dla --dbpath musz± zaczynaæ sie od /"
 
-#: ../rpm.c:862
+#: rpm.c:822
 msgid "relocations must begin with a /"
 msgstr "drzewa przesuniêæ musz± zaczynaæ sie od /"
 
-#: ../rpm.c:864
+#: rpm.c:824
 msgid "relocations must contain a ="
 msgstr "specyfikacja przesuniêcia musi zawieraæ ="
 
-#: ../rpm.c:867
+#: rpm.c:827
 msgid "relocations must have a / following the ="
 msgstr "specyfikacja przesuniêcia musi zawieraæ / po ="
 
-#: ../rpm.c:876
+#: rpm.c:836
 msgid "exclude paths must begin with a /"
 msgstr "¶cie¿ki wy³±czeñ musz± siê zaczynaæ od /"
 
-#: ../rpm.c:885
+#: rpm.c:845
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "B³±d wewnêtrzny w przetwarzaniu argumentu (%d) :-(\n"
 
-#: ../rpm.c:938
+#: rpm.c:898
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath podano dla operacji nie u¿ywaj±cej bazy"
 
-#: ../rpm.c:943
+#: rpm.c:903
 msgid "--timecheck may only be used during package builds"
 msgstr "--timecheck mo¿na u¿ywaæ tylko w trakcie budowania pakietów"
 
-#: ../rpm.c:946
+#: rpm.c:906
 msgid "unexpected query flags"
 msgstr "b³êdna konstrukcja argumentów odpytywania"
 
-#: ../rpm.c:949
+#: rpm.c:909
 msgid "unexpected query format"
 msgstr "b³êdna konstrukcja argumentów odpytywania"
 
-#: ../rpm.c:953
+#: rpm.c:913
 msgid "unexpected query source"
 msgstr "b³êdna konstrukcja argumentów odpytywania"
 
-#: ../rpm.c:959
+#: rpm.c:919
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "tylko instalacjê, uaktualnienie i usuwanie ¼róde³ mo¿na wymusiæ"
 
-#: ../rpm.c:962
+#: rpm.c:922
 msgid "files may only be relocated during package installation"
 msgstr "przesuwania plików mo¿na dokonaæ tylko w trakcie instalacji"
 
-#: ../rpm.c:965
+#: rpm.c:925
 msgid "only one of --prefix or --relocate may be used"
 msgstr "nie mo¿na jednocze¶nie u¿yæ --prefix i --relocate"
 
-#: ../rpm.c:968
+#: rpm.c:928
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 "--relocate i --excludepath mo¿na u¿yæ tylko w trakcie instalacji nowych "
 "pakietów"
 
-#: ../rpm.c:971
+#: rpm.c:931
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix mo¿na u¿yæ tylko w trakcie instalacji nowych pakietów"
 
-#: ../rpm.c:974
+#: rpm.c:934
 msgid "arguments to --prefix must begin with a /"
 msgstr "argumenty dla --prefix musz± siê rozpoczynaæ od /"
 
-#: ../rpm.c:977
+#: rpm.c:937
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: ../rpm.c:981
+#: rpm.c:941
 msgid "--percent may only be specified during package installation"
 msgstr "--percent mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: ../rpm.c:985
+#: rpm.c:945
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: ../rpm.c:989
+#: rpm.c:949
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: ../rpm.c:993
+#: rpm.c:953
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: ../rpm.c:997
+#: rpm.c:957
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: ../rpm.c:1001
+#: rpm.c:961
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "nie mo¿na jednocze¶nie u¿yæ --excludedocs i --includedocs"
 
-#: ../rpm.c:1005
+#: rpm.c:965
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: ../rpm.c:1009
+#: rpm.c:969
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: ../rpm.c:1013
+#: rpm.c:973
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoresize mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: ../rpm.c:1017
+#: rpm.c:977
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches mo¿na u¿yæ tylko w trakcie usuwania pakietów"
 
-#: ../rpm.c:1021
+#: rpm.c:981
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: ../rpm.c:1025
+#: rpm.c:985
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr "--justdb mo¿na u¿yæ tylko w trakcie instalacji lub usuwania pakietów"
 
-#: ../rpm.c:1030
+#: rpm.c:990
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -1316,7 +1129,7 @@ msgstr ""
 "--noscripts mo¿na u¿yæ tylko w trakcie instalacji, usuwania lub sprawdzania "
 "pakietów"
 
-#: ../rpm.c:1034
+#: rpm.c:994
 msgid ""
 "--notriggers may only be specified during package installation, erasure, and "
 "verification"
@@ -1324,7 +1137,7 @@ msgstr ""
 "--notriggers mo¿na u¿yæ tylko w trakcie instalacji, usuwania lub sprawdzania "
 "pakietów"
 
-#: ../rpm.c:1040
+#: rpm.c:1000
 msgid ""
 "--nodeps may only be specified during package building, installation, "
 "erasure, and verification"
@@ -1332,18 +1145,14 @@ msgstr ""
 "--nodeps mo¿na u¿yæ tylko w trakcie budowania, instalacji, usuwania lub "
 "sprawdzania pakietów"
 
-#: ../rpm.c:1045
-msgid "--nofiles may only be specified during package verification"
-msgstr "--nofiles mo¿na u¿yæ tylko w trakcie sprawdzania pakietów"
-
-#: ../rpm.c:1051
+#: rpm.c:1005
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 "--test mo¿na u¿yæ tylko w trakcie instalacji, usuwania lub budowania pakietów"
 
-#: ../rpm.c:1056
+#: rpm.c:1010
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -1351,1657 +1160,1801 @@ msgstr ""
 "--root (-r) mo¿na u¿yæ tylko w trakcie instalacji, usuwania, sprawdzania "
 "pakietów lub przebudowywania bazy"
 
-#: ../rpm.c:1061
+#: rpm.c:1015
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "argumenty dla --root (-r) musz± siê rozpoczynaæ od /"
 
-#: ../rpm.c:1065
-msgid "--clean may only be used with -b and -t"
-msgstr "--clean mo¿na u¿yæ tylko z -b i -t"
-
-#: ../rpm.c:1068
-msgid "--rmsource may only be used with -b and -t"
-msgstr "--rmsource mo¿na u¿yæ tylko z -b i -t"
-
-#: ../rpm.c:1071
-msgid "--short-circuit may only be used during package building"
-msgstr "--short-circuit mo¿na u¿yæ tylko w trakcie budowania pakietów"
-
-#: ../rpm.c:1075
-msgid "--short-circuit may only be used with -bc, -bi, -bs, -tc -ti, or -ts"
-msgstr "--short-circuit mo¿na u¿yæ tylko z -bc, -bi, -bs, -tc -ti lub -ts"
-
-#: ../rpm.c:1081
+#: rpm.c:1018
 msgid "--oldpackage may only be used during upgrades"
 msgstr "--oldpackage mo¿na u¿yæ tylko podczas aktualizacji"
 
-#: ../rpm.c:1086
+#: rpm.c:1023
 msgid ""
 "ftp options can only be used during package queries, installs, and upgrades"
 msgstr "opcje ftp mo¿na u¿yæ tylko podczas zapytañ, instalacji i akualizacji"
 
-#: ../rpm.c:1092
+#: rpm.c:1029
 msgid ""
 "http options can only be used during package queries, installs, and upgrades"
 msgstr "opcje http mo¿na u¿yæ tylko podczas zapytañ, instalacji i akualizacji"
 
-#: ../rpm.c:1096
+#: rpm.c:1033
 msgid "--nopgp may only be used during signature checking"
 msgstr "--nopgp mo¿na u¿yæ tylko w trakcie sprawdzania sygnatury"
 
-#: ../rpm.c:1099
+#: rpm.c:1036
 msgid "--nogpg may only be used during signature checking"
 msgstr "--nogpg mo¿na u¿yæ tylko podczas sprawdzania sygnatury"
 
-#: ../rpm.c:1102
+#: rpm.c:1039
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr ""
 "--nomd5 mo¿na u¿yæ tylko podczas sprawdzania sygnatury i weryfkiacji pakietu"
 
-#: ../rpm.c:1128
+#: rpm.c:1063
+msgid "no files to sign\n"
+msgstr ""
+
+#: rpm.c:1068
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "brak dostêpu do pliku %s\n"
 
-#: ../rpm.c:1145
+#: rpm.c:1083
 msgid "pgp not found: "
 msgstr "nie znaleziono pgp: "
 
-#: ../rpm.c:1148
-msgid "Use `%%_signature pgp5' instead of `%%_signature pgp' in macro file.\n"
-msgstr "U¿yj `%%_signature pgp5' zamiast `%%_signature pgp' w pliku makra.\n"
-
-#: ../rpm.c:1155
-msgid "pgp version 5 not found: "
-msgstr "nie znaleziono pgp w wersji 5: "
-
-#: ../rpm.c:1158
-msgid "Use `%%_signature pgp' instead of `%%_signature pgp5' in macro file.\n"
-msgstr "U¿yj `%%_signature pgp' zamiast `%%_signature pgp5' w pliku makra.\n"
-
-#: ../rpm.c:1164
+#: rpm.c:1087
 msgid "Enter pass phrase: "
 msgstr "Podaj has³o: "
 
-#: ../rpm.c:1165
+#: rpm.c:1089
 msgid "Pass phrase check failed\n"
 msgstr "Weryfikacja has³a nieudana\n"
 
-#: ../rpm.c:1168
+#: rpm.c:1092
 msgid "Pass phrase is good.\n"
 msgstr "Has³o jest prawid³owe.\n"
 
-#: ../rpm.c:1175
+#: rpm.c:1097
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "B³êdny %%_signature spec w pliku makra.\n"
 
-#: ../rpm.c:1180
+#: rpm.c:1103
 msgid "--sign may only be used during package building"
 msgstr "--sign mo¿na u¿yæ tylko w trakcie budowania pakietu"
 
-#: ../rpm.c:1197
+#: rpm.c:1118
 msgid "exec failed\n"
 msgstr "wykonanie nie powiod³o siê\n"
 
-#: ../rpm.c:1216
+#: rpm.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr "nieoczekiwane argumenty dla --querytags "
 
-#: ../rpm.c:1227
+#: rpm.c:1148
 msgid "no packages given for signature check"
 msgstr "nie podano nazwy pakietu do sprawdzenia sygnatury"
 
-#: ../rpm.c:1239
+#: rpm.c:1160
 msgid "no packages given for signing"
 msgstr "nie podano nazwy pakietu do podpisania"
 
-#: ../rpm.c:1252
+#: rpm.c:1173
 msgid "no packages files given for rebuild"
 msgstr "nie podano nazw pakietów do przebudowania"
 
-#: ../rpm.c:1309
+#: rpm.c:1230
 msgid "no spec files given for build"
 msgstr "nie podano nazw plików spec do budowania"
 
-#: ../rpm.c:1311
+#: rpm.c:1232
 msgid "no tar files given for build"
 msgstr "nie podano nazw plików tar do budowania"
 
-#: ../rpm.c:1323
+#: rpm.c:1244
 msgid "no packages given for uninstall"
 msgstr "nie podano nazw plików do usuniêcia"
 
-#: ../rpm.c:1372
+#: rpm.c:1294
 msgid "no packages given for install"
 msgstr "nie podano nazw plików do zainstalowania"
 
-#: ../rpm.c:1395
+#: rpm.c:1317
 msgid "extra arguments given for query of all packages"
 msgstr "zbyt wiele argumentów dla odpytywania wszystkich pakietów"
 
-#: ../rpm.c:1400
+#: rpm.c:1322
 msgid "no arguments given for query"
 msgstr "nie podano argumentów dla trybu zapytañ"
 
-#: ../rpm.c:1421
+#: rpm.c:1339
 msgid "extra arguments given for verify of all packages"
 msgstr "zbyt wiele argumentów dla weryfikacji wszystkich pakietów"
 
-#: ../rpm.c:1425
+#: rpm.c:1343
 msgid "no arguments given for verify"
 msgstr "nie podano argumentów dla sprawdzania"
 
-#: ../rpm2cpio.c:42
+#: rpm2cpio.c:34
 msgid "argument is not an RPM package\n"
 msgstr "argument nie jest pakietem RPM\n"
 
-#: ../rpm2cpio.c:46
+#: rpm2cpio.c:38
 msgid "error reading header from package\n"
 msgstr "b³±d odczytu nag³ówka z pakietu\n"
 
-#: ../build/build.c:83 ../build/pack.c:248
+#: build/build.c:83 build/pack.c:263
 msgid "Unable to open temp file"
 msgstr "Nie mo¿na otworzyæ pliku tymczasowego"
 
-#: ../build/build.c:124
+#: build/build.c:124
 #, c-format
 msgid "Executing: %s\n"
 msgstr "Wykonywanie: %s\n"
 
-#: ../build/build.c:128
+#: build/build.c:128
 #, c-format
 msgid "Exec of %s failed (%s)"
 msgstr "Wykonanie %s nie powiod³o siê (%s)"
 
-#: ../build/build.c:138
+#: build/build.c:138
 #, c-format
 msgid "Bad exit status from %s (%s)"
 msgstr "B³êdny status wyj¶cia z %s (%s)"
 
-#: ../build/expression.c:189 ../build/expression.c:198
-msgid "parse error in tokenizer"
-msgstr ""
+#: build/expression.c:208
+#, fuzzy
+msgid "syntax error while parsing =="
+msgstr "b³±d sk³adni w wyra¿eniu"
+
+#: build/expression.c:238
+#, fuzzy
+msgid "syntax error while parsing &&"
+msgstr "b³±d sk³adni w wyra¿eniu"
+
+#: build/expression.c:247
+#, fuzzy
+msgid "syntax error while parsing ||"
+msgstr "b³±d sk³adni w wyra¿eniu"
 
-#: ../build/expression.c:240
+#: build/expression.c:289
 msgid "parse error in expression"
 msgstr "b³±d interpretacji wyra¿enia"
 
-#: ../build/expression.c:270
+#: build/expression.c:319
 msgid "unmatched ("
 msgstr "niesparowane ("
 
-#: ../build/expression.c:288
+#: build/expression.c:337
 msgid "undefined identifier"
 msgstr "nieznany identyfikator"
 
-#: ../build/expression.c:307
+#: build/expression.c:356
 msgid "- only on numbers"
 msgstr "- tylko na liczbach"
 
-#: ../build/expression.c:323
+#: build/expression.c:372
 msgid "! only on numbers"
 msgstr "! tylko na liczbach"
 
-#: ../build/expression.c:362 ../build/expression.c:407
-#: ../build/expression.c:464 ../build/expression.c:551
+#: build/expression.c:411 build/expression.c:456 build/expression.c:513
+#: build/expression.c:600
 msgid "types must match"
 msgstr "typy musz± siê zgadzaæ"
 
-#: ../build/expression.c:375
+#: build/expression.c:424
 msgid "* / not suported for strings"
 msgstr "* / nie jest wspierane dla ³añcuchów znakowych"
 
-#: ../build/expression.c:423
+#: build/expression.c:472
 msgid "- not suported for strings"
 msgstr "- nie jest wspierane dla ³añcuchów znakowych"
 
-#: ../build/expression.c:564
+#: build/expression.c:613
 msgid "&& and || not suported for strings"
 msgstr "&& i || nie jest wspierane dla ³añcuchów znakowych"
 
-#: ../build/expression.c:595 ../build/expression.c:640
+#: build/expression.c:644 build/expression.c:689
 msgid "syntax error in expression"
 msgstr "b³±d sk³adni w wyra¿eniu"
 
-#: ../build/files.c:224
+#: build/files.c:224
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "TIMECHECK nie powiod³o siê: %s\n"
 
-#: ../build/files.c:267 ../build/files.c:349 ../build/files.c:512
+#: build/files.c:267 build/files.c:349 build/files.c:512
 #, c-format
 msgid "Missing '(' in %s %s"
 msgstr "Brak '(' w %s %s"
 
-#: ../build/files.c:278 ../build/files.c:466 ../build/files.c:523
+#: build/files.c:278 build/files.c:466 build/files.c:523
 #, c-format
 msgid "Missing ')' in %s(%s"
 msgstr "Brak ')' w %s(%s"
 
-#: ../build/files.c:316 ../build/files.c:491
+#: build/files.c:316 build/files.c:491
 #, c-format
 msgid "Invalid %s token: %s"
 msgstr "B³êdny znak %s: %s"
 
-#: ../build/files.c:365
+#: build/files.c:365
 #, c-format
 msgid "Non-white space follows %s(): %s"
 msgstr "Brak bia³ego znaku po %s(): %s"
 
-#: ../build/files.c:403
+#: build/files.c:403
 #, c-format
 msgid "Bad syntax: %s(%s)"
 msgstr "B³êdna sk³adnia: %s(%s)"
 
-#: ../build/files.c:413
+#: build/files.c:413
 #, c-format
 msgid "Bad mode spec: %s(%s)"
 msgstr "B³êdne okre¶lenie trybu: %s(%s)"
 
-#: ../build/files.c:425
+#: build/files.c:425
 #, c-format
 msgid "Bad dirmode spec: %s(%s)"
 msgstr "B³êdne okre¶lenie dirmode: %s(%s)"
 
-#: ../build/files.c:549
+#: build/files.c:549
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
 msgstr "Niespotykana d³ugo¶æ okre¶lenia lokalizacji \"%.*s\" w %%lang(%s)"
 
-#: ../build/files.c:559
+#: build/files.c:559
 msgid "Duplicate locale %.*s in %%lang(%s)"
 msgstr "Powtórzone okre¶lenie lokalizacji %.*s w %%lang(%s)"
 
-#: ../build/files.c:651
+#: build/files.c:651
 msgid "Hit limit for %%docdir"
 msgstr "Limit trafieñ dla %%docdir"
 
-#: ../build/files.c:657
+#: build/files.c:657
 msgid "Only one arg for %%docdir"
 msgstr "Tylko jeden argument dla %%docdir"
 
 #. We already got a file -- error
-#: ../build/files.c:682
+#: build/files.c:682
 #, c-format
 msgid "Two files on one line: %s"
 msgstr "Dwa pliki w jedenj linii: %s"
 
-#: ../build/files.c:695
+#: build/files.c:695
 #, c-format
 msgid "File must begin with \"/\": %s"
 msgstr "Plik musi siê zaczynaæ od \"/\": %s"
 
-#: ../build/files.c:707
+#: build/files.c:707
 msgid "Can't mix special %%doc with other forms: %s"
 msgstr "Nie mo¿na mieszaæ specjalnej %%doc z innymi formami: %s"
 
-#: ../build/files.c:795
+#: build/files.c:792
 #, c-format
 msgid "File listed twice: %s"
 msgstr "Plik podany dwukrotnie: %s"
 
-#: ../build/files.c:955
+#: build/files.c:952
 #, c-format
 msgid "File doesn't match prefix (%s): %s"
 msgstr "Plik nie zgadza siê z prefiksem (%s): %s"
 
-#: ../build/files.c:965 ../build/files.c:1102
+#: build/files.c:962 build/files.c:1099
 #, c-format
 msgid "File not found: %s"
 msgstr "Nie znaleziono pliku: %s"
 
-#: ../build/files.c:1008
+#: build/files.c:1005
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "B³êdny u¿ytkownik/grupa: %s\n"
 
-#: ../build/files.c:1022
+#: build/files.c:1019
 #, c-format
 msgid "File %4d: 0%o %s.%s\t %s\n"
 msgstr "Plik %4d: 0%o %s.%s\t %s\n"
 
-#: ../build/files.c:1086
+#: build/files.c:1083
 #, c-format
 msgid "File needs leading \"/\": %s"
 msgstr "Plik musi siê zaczynaæ od \"/\": %s"
 
-#: ../build/files.c:1143
+#: build/files.c:1140
 msgid "Could not open %%files file: %s"
 msgstr "Nie mo¿na otworzyæ %%files pliku: %s"
 
-#: ../build/files.c:1150 ../build/pack.c:433
+#: build/files.c:1147 build/pack.c:484
 #, c-format
 msgid "line: %s"
 msgstr "linia: %s"
 
-#: ../build/files.c:1470 ../build/parsePrep.c:31
+#: build/files.c:1469 build/parsePrep.c:29
 #, c-format
 msgid "Bad owner/group: %s"
 msgstr "B³êdny u¿ytkownik/grupa: %s"
 
-#: ../build/files.c:1523
+#: build/files.c:1522
 #, c-format
 msgid "Couldn't exec %s"
 msgstr "Nie mo¿na uruchomiæ %s"
 
-#: ../build/files.c:1527
+#: build/files.c:1526
 #, c-format
 msgid "Couldn't fork %s"
 msgstr "Nie mo¿na wykonaæ fork na %s"
 
-#: ../build/files.c:1606
+#: build/files.c:1605
 #, c-format
 msgid "%s failed"
 msgstr "%s nie powiod³o siê"
 
-#: ../build/files.c:1610
+#: build/files.c:1609
 #, c-format
 msgid "failed to write all data to %s"
 msgstr "zapisanie wszystkich danych do %s nie powiod³o siê"
 
-#: ../build/files.c:1644
-msgid "Finding provides...\n"
-msgstr "Wyszukiwanie udostêpnianych zasobów...\n"
-
-#: ../build/files.c:1651
-msgid "Failed to find provides"
-msgstr "Wyszukiwanie nie powiod³o siê"
-
-#: ../build/files.c:1670
-msgid "Finding requires...\n"
+#: build/files.c:1695
+#, fuzzy, c-format
+msgid "Finding  %s: (using %s)...\n"
 msgstr "Wyszukiwanie wymaganych zasobów...\n"
 
-#: ../build/files.c:1677
-msgid "Failed to find requires"
+#: build/files.c:1723 build/files.c:1732
+#, fuzzy, c-format
+msgid "Failed to find %s:"
 msgstr "Wyszukiwanie nie powiod³o siê"
 
-#: ../build/files.c:1711
-msgid "Provides:"
-msgstr "Udostêpniane zasoby:"
-
-#: ../build/files.c:1726
-msgid "Prereqs:"
-msgstr "Prerekwizyty:"
-
-#: ../build/files.c:1738
-msgid "Requires:"
-msgstr "Wymagane zasoby:"
-
-#: ../build/files.c:1762
+#: build/files.c:1838
 #, c-format
 msgid "Processing files: %s\n"
 msgstr "Przetwarzanie plików: %s\n"
 
-#: ../build/names.c:32 ../build/names.c:64
+#: build/names.c:32 build/names.c:64
 msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
 msgstr "RPMERR_INTERNAL: Limit trafieñ w getUname()\n"
 
-#: ../build/names.c:97 ../build/names.c:129
+#: build/names.c:97 build/names.c:129
 msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
 msgstr "RPMERR_INTERNAL: Limit trafieñ w getGname()\n"
 
-#: ../build/names.c:167
+#: build/names.c:167
 #, c-format
 msgid "Could not canonicalize hostname: %s\n"
 msgstr "Nie mo¿na rozwi±zaæ nazwy systemu: %s\n"
 
-#: ../build/pack.c:134
+#: build/pack.c:131
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr "Nie mo¿na wygenerowaæ wyj¶ciowej nazwy dla pakietu %s: %s\n"
 
-#: ../build/pack.c:167
+#: build/pack.c:148
+#, fuzzy, c-format
+msgid "cannot create %s: %s\n"
+msgstr "nie mo¿na utworzyæ %s"
+
+#: build/pack.c:183
 #, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "readRPM: otwieranie %s: %s\n"
 
-#: ../build/pack.c:177
+#: build/pack.c:193
 #, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "readRPM: czytanie %s: %s\n"
 
-#: ../build/pack.c:197
+#: build/pack.c:213
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr "readRPM: %s nie jest pakietem RPM\n"
 
-#: ../build/pack.c:203
+#: build/pack.c:219
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr "readRPM: czytanie nag³ówka z %s\n"
 
-#: ../build/pack.c:259
+#: build/pack.c:274
 msgid "Bad CSA data"
 msgstr "B³êdne dane CSA"
 
-#: ../build/pack.c:282
+#: build/pack.c:305
 #, c-format
 msgid "Could not open %s\n"
 msgstr "Nie mo¿na otworzyæ %s\n"
 
-#: ../build/pack.c:314 ../build/pack.c:357
+#: build/pack.c:337 build/pack.c:379
 #, c-format
 msgid "Unable to write package: %s"
 msgstr "Nie mo¿na zapisaæ pakietu: %s"
 
-#: ../build/pack.c:347
+#: build/pack.c:352
+#, c-format
+msgid "Generating signature: %d\n"
+msgstr "Generowanie sygnatury: %d\n"
+
+#: build/pack.c:369
 #, c-format
 msgid "Unable to read sigtarget: %s"
 msgstr "Nie mo¿na odczytaæ sigtarget: %s"
 
-#: ../build/pack.c:372
+#: build/pack.c:394
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Zapisano: %s\n"
 
-#: ../build/pack.c:387
+#: build/pack.c:411 build/pack.c:435
 #, c-format
 msgid "create archive failed on file %s: %s"
 msgstr "utworzenie archiwum pliku %s nie powiod³o siê: %s"
 
-#: ../build/pack.c:403
+#: build/pack.c:454
 #, c-format
 msgid "cpio_copy write failed: %s"
 msgstr "zapis w trybie cpio_copy nie powiód³ siê: %s"
 
-#: ../build/pack.c:410
+#: build/pack.c:461
 #, c-format
 msgid "cpio_copy read failed: %s"
 msgstr "odczyt w trybie cpio_copy nie powiód³ siê: %s"
 
-#: ../build/pack.c:489
+#: build/pack.c:540
 #, c-format
 msgid "Could not open PreIn file: %s"
 msgstr "Nie mo¿na otworzyæ pliku PreIn: %s"
 
-#: ../build/pack.c:496
+#: build/pack.c:547
 #, c-format
 msgid "Could not open PreUn file: %s"
 msgstr "Nie mo¿na otworzyæ pliku PreUn: %s"
 
-#: ../build/pack.c:503
+#: build/pack.c:554
 #, c-format
 msgid "Could not open PostIn file: %s"
 msgstr "Nie mo¿na otworzyæ pliku PostIn: %s"
 
-#: ../build/pack.c:510
+#: build/pack.c:561
 #, c-format
 msgid "Could not open PostUn file: %s"
 msgstr "Nie mo¿na otworzyæ pliku PostUn: %s"
 
-#: ../build/pack.c:518
+#: build/pack.c:569
 #, c-format
 msgid "Could not open VerifyScript file: %s"
 msgstr "Nie mo¿na otworzyæ pliku VerifyScript: %s"
 
-#: ../build/pack.c:534
+#: build/pack.c:585
 #, c-format
 msgid "Could not open Trigger script file: %s"
 msgstr "Nie mo¿na otworzyæ skryptu Trigger: %s"
 
-#: ../build/parseBuildInstallClean.c:27
+#: build/parseBuildInstallClean.c:27
 #, c-format
 msgid "line %d: second %s"
 msgstr "linia %d: druga %s"
 
-#: ../build/parseChangelog.c:103
+#: build/parseChangelog.c:103
 msgid "%%changelog entries must start with *"
 msgstr "wpisy %%changelog musz± zaczynaæ siê od *"
 
-#: ../build/parseChangelog.c:111
+#: build/parseChangelog.c:111
 msgid "incomplete %%changelog entry"
 msgstr "niekompletny wpis %%changelog"
 
-#: ../build/parseChangelog.c:126
+#: build/parseChangelog.c:126
 msgid "bad date in %%changelog: %s"
 msgstr "b³êdna data w %%changelog: %s"
 
-#: ../build/parseChangelog.c:131
+#: build/parseChangelog.c:131
 msgid "%%changelog not in decending chronological order"
 msgstr "wpisy w %%changelog u³o¿one niechronologicznie"
 
-#: ../build/parseChangelog.c:139 ../build/parseChangelog.c:150
+#: build/parseChangelog.c:139 build/parseChangelog.c:150
 msgid "missing name in %%changelog"
 msgstr "brak nazwiska w %%changelog"
 
-#: ../build/parseChangelog.c:157
+#: build/parseChangelog.c:157
 msgid "no description in %%changelog"
 msgstr "brak opisu w %%changelog"
 
-#: ../build/parseDescription.c:35
+#: build/parseDescription.c:33
 msgid "line %d: Error parsing %%description: %s"
 msgstr "linia %d: b³±d w interpretacji wpisu %%description: %s"
 
-#: ../build/parseDescription.c:48 ../build/parseFiles.c:42
-#: ../build/parseScript.c:170
+#: build/parseDescription.c:46 build/parseFiles.c:40 build/parseScript.c:168
 #, c-format
 msgid "line %d: Bad option %s: %s"
 msgstr "linia %d: B³edna opcja %s: %s"
 
-#: ../build/parseDescription.c:62 ../build/parseFiles.c:56
-#: ../build/parseScript.c:184
+#: build/parseDescription.c:60 build/parseFiles.c:54 build/parseScript.c:182
 #, c-format
 msgid "line %d: Too many names: %s"
 msgstr "linia %d: Zbyt du¿o nazw: %s"
 
-#: ../build/parseDescription.c:72 ../build/parseFiles.c:66
-#: ../build/parseScript.c:194
+#: build/parseDescription.c:70 build/parseFiles.c:64 build/parseScript.c:192
 #, c-format
 msgid "line %d: Package does not exist: %s"
 msgstr "linia %d: Pakiet nie istnieje: %s"
 
-#: ../build/parseDescription.c:84
+#: build/parseDescription.c:82
 #, c-format
 msgid "line %d: Second description"
 msgstr "linia %d: Drugi opis"
 
-#: ../build/parseFiles.c:29
+#: build/parseFiles.c:27
 msgid "line %d: Error parsing %%files: %s"
 msgstr "linia %d: B³±d w interpretacji wpisu %%files: %s"
 
-#: ../build/parseFiles.c:74
+#: build/parseFiles.c:72
 msgid "line %d: Second %%files list"
 msgstr "linia %d: Druga lista %%files"
 
-#: ../build/parsePreamble.c:143
+#: build/parsePreamble.c:141
 #, c-format
 msgid "Architecture is excluded: %s"
 msgstr "Architektura nie jest wspierana: %s"
 
-#: ../build/parsePreamble.c:148
+#: build/parsePreamble.c:146
 #, c-format
 msgid "Architecture is not included: %s"
 msgstr "Architektura nie jest wspierana: %s"
 
-#: ../build/parsePreamble.c:153
+#: build/parsePreamble.c:151
 #, c-format
 msgid "OS is excluded: %s"
 msgstr "Ten OS nie jest wspierany: %s"
 
-#: ../build/parsePreamble.c:158
+#: build/parsePreamble.c:156
 #, c-format
 msgid "OS is not included: %s"
 msgstr "Ten OS nie jest wspierany: %s"
 
-#: ../build/parsePreamble.c:172
+#: build/parsePreamble.c:170
 #, c-format
 msgid "%s field must be present in package: %s"
 msgstr "pole %s musi byæ obecne w pakiecie: %s"
 
-#: ../build/parsePreamble.c:194
+#: build/parsePreamble.c:192
 #, c-format
 msgid "Duplicate %s entries in package: %s"
 msgstr "Podwójne wpisy %s w pakiecie: %s"
 
-#: ../build/parsePreamble.c:241
+#: build/parsePreamble.c:239
 #, c-format
 msgid "Unable to stat icon: %s"
 msgstr "Nie mo¿na wykonaæ stat na ikonie: %s"
 
-#: ../build/parsePreamble.c:252
+#: build/parsePreamble.c:250
 #, c-format
 msgid "Unable to read icon: %s"
 msgstr "Nie mo¿na odczytaæ ikony: %s"
 
-#: ../build/parsePreamble.c:262
+#: build/parsePreamble.c:260
 #, c-format
 msgid "Unknown icon type: %s"
 msgstr "Nieznany typ ikony: %s"
 
-#: ../build/parsePreamble.c:325
+#: build/parsePreamble.c:323
 #, c-format
 msgid "line %d: Malformed tag: %s"
 msgstr "linia %d: Niepoprawna forma etykiety: %s"
 
 #. Empty field
-#: ../build/parsePreamble.c:333
+#: build/parsePreamble.c:331
 #, c-format
 msgid "line %d: Empty tag: %s"
 msgstr "linia %d: Pusta etykieta: %s"
 
-#: ../build/parsePreamble.c:356 ../build/parsePreamble.c:363
+#: build/parsePreamble.c:354 build/parsePreamble.c:361
 #, c-format
 msgid "line %d: Illegal char '-' in %s: %s"
 msgstr "linia %d: Nielegalny znak '-' w %s: %s"
 
-#: ../build/parsePreamble.c:401
+#: build/parsePreamble.c:399
 #, c-format
 msgid "line %d: BuildRoot can not be \"/\": %s"
 msgstr "linia %d: wpis BuildRoot nie mo¿e byæ \"/\": %s"
 
-#: ../build/parsePreamble.c:414
+#: build/parsePreamble.c:412
 #, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s"
 msgstr "linia %d: Prefiksy nie mog± siê koñczyæ na \"/\": %s"
 
-#: ../build/parsePreamble.c:426
+#: build/parsePreamble.c:424
 #, c-format
 msgid "line %d: Docdir must begin with '/': %s"
 msgstr "linia %d: wpis Docdir musi siê zaczynaæ od '/': %s"
 
-#: ../build/parsePreamble.c:438
+#: build/parsePreamble.c:436
 #, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s"
 msgstr "linia %d: pole Epoch/Serial musi byæ liczb±: %s"
 
-#: ../build/parsePreamble.c:501
+#: build/parsePreamble.c:499
 #, c-format
 msgid "line %d: Bad BuildArchitecture format: %s"
 msgstr "linia %d: B³êdny format wpisu BuildArchitecture: %s"
 
-#: ../build/parsePreamble.c:511
+#: build/parsePreamble.c:509
 #, c-format
 msgid "Internal error: Bogus tag %d"
 msgstr "B³±d wewnêtrzny: Fa³szywa etykieta %d"
 
-#: ../build/parsePreamble.c:658
+#: build/parsePreamble.c:656
 #, c-format
 msgid "Bad package specification: %s"
 msgstr "B³êdna specyfikacja pakietu: $s"
 
-#: ../build/parsePreamble.c:664
+#: build/parsePreamble.c:662
 #, c-format
 msgid "Package already exists: %s"
 msgstr "Pakiet ju¿ istnieje: %s"
 
-#: ../build/parsePreamble.c:691
+#: build/parsePreamble.c:689
 #, c-format
 msgid "line %d: Unknown tag: %s"
 msgstr "linia %d: Nieznana etykieta: %s"
 
-#: ../build/parsePreamble.c:716
+#: build/parsePreamble.c:714
 msgid "Spec file can't use BuildRoot"
 msgstr "W pliku spec nie mo¿na u¿ywaæ wpisów BuildRoot"
 
-#: ../build/parsePrep.c:27
+#: build/parsePrep.c:25
 #, c-format
 msgid "Bad source: %s: %s"
 msgstr "B³êdne ¼ród³o: %s: %s"
 
-#: ../build/parsePrep.c:53
+#: build/parsePrep.c:51
 #, c-format
 msgid "No patch number %d"
 msgstr "Brak ³aty numer %d"
 
-#: ../build/parsePrep.c:119
+#: build/parsePrep.c:117
 #, c-format
 msgid "No source number %d"
 msgstr "Brak ¼ród³a numer %d"
 
-#: ../build/parsePrep.c:138
+#: build/parsePrep.c:136
 #, c-format
 msgid "Couldn't download nosource %s: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:193
+#: build/parsePrep.c:191
 msgid "Error parsing %%setup: %s"
 msgstr "B³±d przetwarzania %%setup: %s"
 
-#: ../build/parsePrep.c:208
+#: build/parsePrep.c:206
 msgid "line %d: Bad arg to %%setup %c: %s"
 msgstr "linia %d: B³êdny argument dla %%setup %c: %s"
 
-#: ../build/parsePrep.c:229
+#: build/parsePrep.c:227
 msgid "line %d: Bad %%setup option %s: %s"
 msgstr "linia %d: B³êdna opcja %%setup %s: %s"
 
-#: ../build/parsePrep.c:353
+#: build/parsePrep.c:351
 msgid "line %d: Need arg to %%patch -b: %s"
 msgstr "linia %d: Wymagany argument dla %%patch -b: %s"
 
-#: ../build/parsePrep.c:361
+#: build/parsePrep.c:359
 msgid "line %d: Need arg to %%patch -z: %s"
 msgstr "linia %d: Wymagany argument dla %%patch -z: %s"
 
-#: ../build/parsePrep.c:373
+#: build/parsePrep.c:371
 msgid "line %d: Need arg to %%patch -p: %s"
 msgstr "linia %d: Wymagany argument dla %%patch -p: %s"
 
-#: ../build/parsePrep.c:379
+#: build/parsePrep.c:377
 msgid "line %d: Bad arg to %%patch -p: %s"
 msgstr "linia %d: B³êdny argument dla %%patch -p: %s"
 
-#: ../build/parsePrep.c:386
+#: build/parsePrep.c:384
 msgid "Too many patches!"
 msgstr "Zbyt wiele ³at!"
 
-#: ../build/parsePrep.c:390
+#: build/parsePrep.c:388
 msgid "line %d: Bad arg to %%patch: %s"
 msgstr "linia %d: B³êdny argument dla %%patch: %s"
 
-#: ../build/parsePrep.c:426
+#: build/parsePrep.c:424
 msgid "line %d: second %%prep"
 msgstr "linia %d: druga sekcja %%prep"
 
-#: ../build/parseReqs.c:96
+#: build/parseReqs.c:91
 #, c-format
 msgid ""
 "line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
 msgstr ""
 "linia %d: Znaki musz± sie zaczynaæ od alfanumerycznych, '_' lub '/': %s"
 
-#: ../build/parseReqs.c:107
+#: build/parseReqs.c:102
 #, c-format
 msgid "line %d: File name not permitted: %s"
 msgstr "linia %d: Nazwa pliku niedozwolona: %s"
 
-#: ../build/parseReqs.c:139
+#: build/parseReqs.c:134
 #, c-format
 msgid "line %d: Versioned file name not permitted: %s"
 msgstr "linia %d: Wersja w nazwach plików niedozwolona: %s"
 
-#: ../build/parseReqs.c:150
+#: build/parseReqs.c:146
 #, c-format
 msgid "line %d: Version not permitted: %s"
 msgstr "linia %d: Wersja niedozwolona: %s"
 
-#: ../build/parseReqs.c:170
+#: build/parseReqs.c:172
 #, c-format
 msgid "line %d: Version required: %s"
 msgstr "linia %d: Wymagana wersja: %s"
 
-#: ../build/parseScript.c:138
+#: build/parseScript.c:136
 #, c-format
 msgid "line %d: triggers must have --: %s"
 msgstr "linia %d: triggery musz± mieæ --: %s"
 
-#: ../build/parseScript.c:148 ../build/parseScript.c:212
+#: build/parseScript.c:146 build/parseScript.c:210
 #, c-format
 msgid "line %d: Error parsing %s: %s"
 msgstr "linia %d: B³±d przetwarzania %s: %s"
 
-#: ../build/parseScript.c:158
+#: build/parseScript.c:156
 #, c-format
 msgid "line %d: script program must begin with '/': %s"
 msgstr "linia %d: skrypt (tu jako program) musi siê zaczynaæ od '/': %s"
 
-#: ../build/parseScript.c:203
+#: build/parseScript.c:201
 #, c-format
 msgid "line %d: Second %s"
 msgstr "linia %d: Drugi %s"
 
-#: ../build/parseSpec.c:119
+#: build/parseSpec.c:126
+#, c-format
+msgid "line %d: %s"
+msgstr "linia %d: %s"
+
+#: build/parseSpec.c:172
 #, c-format
 msgid "Unable to open: %s\n"
 msgstr "Nie mo¿na otworzyæ: %s\n"
 
-#: ../build/parseSpec.c:131
+#: build/parseSpec.c:184
 msgid "Unclosed %%if"
 msgstr "Niedomkniête %%if"
 
-#: ../build/parseSpec.c:187
+#: build/parseSpec.c:243
 #, c-format
-msgid "line %d: %s"
-msgstr "linia %d: %s"
+msgid "%s:%d: parseExpressionBoolean returns %d"
+msgstr ""
 
 #. Got an else with no %if !
-#: ../build/parseSpec.c:218
+#: build/parseSpec.c:251
 msgid "%s:%d: Got a %%else with no if"
 msgstr "%s:%d: Napotkano %%else bez if"
 
 #. Got an end with no %if !
-#: ../build/parseSpec.c:229
+#: build/parseSpec.c:262
 msgid "%s:%d: Got a %%endif with no if"
 msgstr "%s:%d: Napotkano %%endif bez if"
 
-#: ../build/parseSpec.c:243 ../build/parseSpec.c:252
+#: build/parseSpec.c:276 build/parseSpec.c:285
 msgid "malformed %%include statement"
 msgstr "b³ednie sformatowany wpis %%include"
 
-#: ../build/parseSpec.c:333
+#: build/parseSpec.c:366
 #, c-format
 msgid "Timecheck value must be an integer: %s"
 msgstr "Warto¶æ timecheck musi byæ liczb± ca³kowit±: %s"
 
-#: ../build/parseSpec.c:416
+#: build/parseSpec.c:449
 msgid "No buildable architectures"
 msgstr "Nie mo¿na budowaæ na takie architektury"
 
-#: ../build/parseSpec.c:461
+#: build/parseSpec.c:494
 msgid "Package has no %%description: %s"
 msgstr "Pakiet nie ma %%description: %s"
 
-#: ../build/spec.c:28
+#: build/spec.c:31
 #, c-format
 msgid "archive = %s, fs = %s\n"
 msgstr "archiwum = %s fs = %s\n"
 
-#: ../build/spec.c:224
+#: build/spec.c:237
 #, c-format
 msgid "line %d: Bad number: %s"
 msgstr "linia %d: B³êdny numer: %s"
 
-#: ../build/spec.c:230
+#: build/spec.c:243
 #, c-format
 msgid "line %d: Bad no%s number: %d"
 msgstr "linia %d: b³êdny numer no%s: %d"
 
-#: ../build/spec.c:286
+#: build/spec.c:301
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr "linia %d: B³êdny numer %s: %s\n"
 
-#: ../lib/cpio.c:362
+#: lib/cpio.c:385
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr "nie mo¿na zmieniæ nazwy %s na %s: %s\n"
 
-#: ../lib/cpio.c:368
+#: lib/cpio.c:391
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr "nie mo¿na odwi±zaæ %s: %s\n"
 
-#: ../lib/cpio.c:547
+#: lib/cpio.c:582
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr "getNextHeader: %s\n"
 
-#: ../lib/cpio.c:999
+#: lib/cpio.c:1044
 #, c-format
 msgid "(error 0x%x)"
 msgstr "(b³±d 0x%x)"
 
-#: ../lib/cpio.c:1002
+#: lib/cpio.c:1047
 msgid "Bad magic"
 msgstr "B³êdny magic"
 
-#: ../lib/cpio.c:1003
+#: lib/cpio.c:1048
 msgid "Bad/unreadable  header"
 msgstr "B³êdny/nieczytelny nag³ówek"
 
-#: ../lib/cpio.c:1021
+#: lib/cpio.c:1066
 msgid "Header size too big"
 msgstr "Rozmiar nag³ówka jest zbyt du¿y"
 
-#: ../lib/cpio.c:1022
+#: lib/cpio.c:1067
 msgid "Unknown file type"
 msgstr "Nieznany typ pliku"
 
-#: ../lib/cpio.c:1023
+#: lib/cpio.c:1068
 msgid "Missing hard link"
 msgstr "Brak twardego dowi±zania"
 
-#: ../lib/cpio.c:1024
+#: lib/cpio.c:1069
 msgid "Internal error"
 msgstr "B³±d wewnêtrzny"
 
-#: ../lib/cpio.c:1033
+#: lib/cpio.c:1078
 msgid " failed - "
 msgstr " nie powiod³o siê -"
 
-#: ../lib/dbindex.c:32
+#: lib/dbindex.c:32
 #, c-format
 msgid "cannot open file %s: %s"
 msgstr "nie mo¿na otworzyæ pliku %s: %s"
 
-#: ../lib/dbindex.c:77
+#: lib/dbindex.c:84
 #, c-format
 msgid "error getting record %s from %s"
 msgstr "b³±d pobierania rekordu %s z %s"
 
-#: ../lib/dbindex.c:104
+#: lib/dbindex.c:111
 #, c-format
 msgid "error storing record %s into %s"
 msgstr "b³±d zapisywania rekordu %s do %s"
 
-#: ../lib/dbindex.c:111
+#: lib/dbindex.c:118
 #, c-format
 msgid "error removing record %s into %s"
 msgstr "b³±d usuwania rekordu %s z %s"
 
-#: ../lib/depends.c:456 ../lib/depends.c:615
+#. XXX legacy epoch-less requires/conflicts compatibility
+#: lib/depends.c:339
 #, c-format
-msgid "cannot read header at %d for dependency check"
-msgstr "nie mo¿na odczytaæ nag³ówka %d dla sprawdzenia zale¿no¶ci"
+msgid ""
+"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
+"\tA %s\tB %s\n"
+msgstr ""
+
+#: lib/depends.c:368
+#, c-format
+msgid "  %s    A %s\tB %s\n"
+msgstr ""
+
+#: lib/depends.c:460
+msgid "dbrecMatchesDepFlags() failed to read header"
+msgstr "dbrecMatchesDepFlags() odczyt nag³ówka nie powiód³ siê"
+
+#: lib/depends.c:695
+#, fuzzy, c-format
+msgid "%s: %s satisfied by added package.\n"
+msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
+
+#: lib/depends.c:712
+#, c-format
+msgid "%s: %s satisfied by added provide.\n"
+msgstr ""
+
+#: lib/depends.c:717
+#, c-format
+msgid "%s: %s satisfied by added file list.\n"
+msgstr ""
+
+#: lib/depends.c:747
+#, c-format
+msgid "%s: %s satisfied by rpmrc provides.\n"
+msgstr ""
+
+#: lib/depends.c:775
+#, c-format
+msgid "%s: %s satisfied by db file lists.\n"
+msgstr ""
+
+#: lib/depends.c:797
+#, c-format
+msgid "%s: %s satisfied by db provides.\n"
+msgstr ""
+
+#: lib/depends.c:819
+#, fuzzy, c-format
+msgid "%s: %s satisfied by db packages.\n"
+msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
+
+#: lib/depends.c:832
+#, c-format
+msgid "%s: %s satisfied by rpmlib version.\n"
+msgstr ""
 
-#: ../lib/depends.c:521
+#: lib/depends.c:842
 #, c-format
-msgid "dependencies: looking for %s\n"
-msgstr "zale¿no¶ci: wyszukiwanie %s\n"
+msgid "%s: %s unsatisfied.\n"
+msgstr ""
 
-#: ../lib/depends.c:709
+#. requirements are not satisfied.
+#: lib/depends.c:890
 #, c-format
 msgid "package %s require not satisfied: %s\n"
 msgstr "zale¿no¶ci pakietu %s nie zosta³y spe³nione: %s\n"
 
-#: ../lib/depends.c:752
+#. conflicts exist.
+#: lib/depends.c:952
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "pakiet %s jest w konflikcie: %s\n"
 
-#: ../lib/depends.c:852
-msgid "dbrecMatchesDepFlags() failed to read header"
-msgstr "dbrecMatchesDepFlags() odczyt nag³ówka nie powiód³ siê"
+#: lib/depends.c:1007 lib/depends.c:1311
+#, c-format
+msgid "cannot read header at %d for dependency check"
+msgstr "nie mo¿na odczytaæ nag³ówka %d dla sprawdzenia zale¿no¶ci"
 
-#: ../lib/depends.c:904
+#: lib/depends.c:1102
 #, c-format
 msgid "loop in prerequisite chain: %s"
 msgstr ""
 
-#: ../lib/falloc.c:149
+#: lib/falloc.c:160
 #, c-format
-msgid "free list corrupt (%u)- contact rpm-list@redhat.com\n"
+msgid ""
+"free list corrupt (%u)- please run\n"
+"\t\"rpm --rebuilddb\"\n"
+"More information is available from http://www.rpm.org or the "
+"rpm-list@redhat.com mailing list\n"
+"if \"rpm --rebuilddb\" fails to correct the problem.\n"
 msgstr ""
 
-#: ../lib/formats.c:97 ../lib/formats.c:114 ../lib/formats.c:134
-#: ../lib/formats.c:166 ../lib/header.c:1973 ../lib/header.c:1989
-#: ../lib/header.c:2008
+#: lib/formats.c:66 lib/formats.c:84 lib/formats.c:105 lib/formats.c:138
+#: lib/header.c:2122 lib/header.c:2139 lib/header.c:2159
 msgid "(not a number)"
 msgstr "(nie jest liczb±)"
 
-#: ../lib/fs.c:41
+#: lib/fs.c:40
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr ""
 
-#: ../lib/fs.c:76 ../lib/fs.c:246
+#: lib/fs.c:75 lib/fs.c:253
 #, c-format
 msgid "failed to stat %s: %s"
 msgstr "stat nie powiod³o siê %s: %s"
 
-#: ../lib/fs.c:117
+#: lib/fs.c:114
+msgid "getting list of mounted filesystems\n"
+msgstr ""
+
+#: lib/fs.c:119
 #, c-format
 msgid "failed to open %s: %s"
 msgstr "nie mo¿na otworzyæ %s: %s"
 
-#: ../lib/fs.c:267
+#: lib/fs.c:274
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr "plik %s jest na nieznanym urz±dzeniu"
 
-#: ../lib/ftp.c:650
+#: lib/ftp.c:666
 msgid "Success"
 msgstr "Sukces"
 
-#: ../lib/ftp.c:653
+#: lib/ftp.c:669
 msgid "Bad server response"
 msgstr "B³êdna odpowied¼ serwera"
 
-#: ../lib/ftp.c:656
+#: lib/ftp.c:672
 msgid "Server IO error"
 msgstr "B³±d WE/WY(IO) serwera"
 
-#: ../lib/ftp.c:659
+#: lib/ftp.c:675
 msgid "Server timeout"
 msgstr "Przekroczony limit czasu serwera"
 
-#: ../lib/ftp.c:662
+#: lib/ftp.c:678
 msgid "Unable to lookup server host address"
 msgstr "Nie mo¿na znale¼æ adresu serwera"
 
-#: ../lib/ftp.c:665
+#: lib/ftp.c:681
 msgid "Unable to lookup server host name"
 msgstr "Nie mo¿na znale¼æ nazwy serwera"
 
-#: ../lib/ftp.c:668
+#: lib/ftp.c:684
 msgid "Failed to connect to server"
 msgstr "Po³±czenie z serwerem nie powiod³o siê"
 
-#: ../lib/ftp.c:671
+#: lib/ftp.c:687
 msgid "Failed to establish data connection to server"
 msgstr "Otwarcie transmisji danych z serwera nie powiod³o siê"
 
-#: ../lib/ftp.c:674
+#: lib/ftp.c:690
 msgid "IO error to local file"
 msgstr "B³±d WE/WY(IO) na lokalnym pliku"
 
-#: ../lib/ftp.c:677
+#: lib/ftp.c:693
 msgid "Error setting remote server to passive mode"
 msgstr "B³±d: ustawienie zdalnego serwera w tryb pasywny nie powiod³o siê"
 
-#: ../lib/ftp.c:680
+#: lib/ftp.c:696
 msgid "File not found on server"
 msgstr "Plik nie zosta³ znaleziony na serwerze"
 
-#: ../lib/ftp.c:683
+#: lib/ftp.c:699
 msgid "Abort in progress"
 msgstr "Przerywanie ..."
 
-#: ../lib/ftp.c:687
+#: lib/ftp.c:703
 msgid "Unknown or unexpected error"
 msgstr "Nieznany lub nieoczekiwany b³±d"
 
-#: ../lib/header.c:669
-#, c-format
-msgid "Data type %d not supprted\n"
-msgstr "Typ danych %d nie jest obs³ugiwany\n"
-
 #. This should not be allowed
-#: ../lib/header.c:905
+#: lib/header.c:169
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr "grabData() RPM_STRING_TYPE licznik musi byæ 1.\n"
 
-#: ../lib/header.c:935
+#: lib/header.c:200
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Typ danych %d nie jest obs³ugiwany\n"
 
-#: ../lib/header.c:994
+#: lib/header.c:763
+#, c-format
+msgid "Data type %d not supprted\n"
+msgstr "Typ danych %d nie jest obs³ugiwany\n"
+
+#: lib/header.c:1119
 #, c-format
 msgid "Bad count for headerAddEntry(): %d\n"
 msgstr "B³edny licznik dla headerAddEntry(): %d\n"
 
-#: ../lib/header.c:1328
-msgid "? expected in expression"
-msgstr "spodziewany ? w wyra¿eniu"
-
-#: ../lib/header.c:1335
-msgid "{ expected after ? in expression"
-msgstr "spodziewany { po ? w wyra¿eniu"
-
-#: ../lib/header.c:1345 ../lib/header.c:1377
-msgid "} expected in expression"
-msgstr "spodziewany } w wyra¿eniu"
-
-#: ../lib/header.c:1352
-msgid ": expected following ? subexpression"
-msgstr "spodziewany : po podwyra¿eniu ?"
-
-#: ../lib/header.c:1365
-msgid "{ expected after : in expression"
-msgstr "spodziewany { po : w wyra¿eniu"
-
-#: ../lib/header.c:1384
-msgid "| expected at end of expression"
-msgstr "spodziewany | na koñcu wyra¿enia"
-
-#: ../lib/header.c:1478
+#: lib/header.c:1520
 #, c-format
 msgid "missing { after %"
 msgstr "brak { po %"
 
-#: ../lib/header.c:1506
+#: lib/header.c:1548
 msgid "missing } after %{"
 msgstr "brak } po %{"
 
-#: ../lib/header.c:1518
+#: lib/header.c:1560
 msgid "empty tag format"
 msgstr "pusty format etykiety"
 
-#: ../lib/header.c:1528
+#: lib/header.c:1570
 msgid "empty tag name"
 msgstr "pusta nazwa etykiety"
 
-#: ../lib/header.c:1543
+#: lib/header.c:1585
 msgid "unknown tag"
 msgstr "nieznana etykieta"
 
-#: ../lib/header.c:1569
+#: lib/header.c:1611
 msgid "] expected at end of array"
 msgstr "spodziewany ] na koñcu tablicy"
 
-#: ../lib/header.c:1585
+#: lib/header.c:1627
 msgid "unexpected ]"
 msgstr "nie spodziewany ]"
 
-#: ../lib/header.c:1587
+#: lib/header.c:1629
 msgid "unexpected }"
 msgstr "nie spodziewany }"
 
-#: ../lib/header.c:1762
-msgid "(unknown type)"
-msgstr "(nieznany typ)"
-
-#: ../lib/install.c:93
-msgid "source package expected, binary found"
-msgstr "spodziewany pakiet ¼ród³owy a nie binarny"
+#: lib/header.c:1682
+msgid "? expected in expression"
+msgstr "spodziewany ? w wyra¿eniu"
+
+#: lib/header.c:1689
+msgid "{ expected after ? in expression"
+msgstr "spodziewany { po ? w wyra¿eniu"
+
+#: lib/header.c:1699 lib/header.c:1731
+msgid "} expected in expression"
+msgstr "spodziewany } w wyra¿eniu"
+
+#: lib/header.c:1706
+msgid ": expected following ? subexpression"
+msgstr "spodziewany : po podwyra¿eniu ?"
 
-#: ../lib/install.c:169 ../lib/uninstall.c:111
+#: lib/header.c:1719
+msgid "{ expected after : in expression"
+msgstr "spodziewany { po : w wyra¿eniu"
+
+#: lib/header.c:1738
+msgid "| expected at end of expression"
+msgstr "spodziewany | na koñcu wyra¿enia"
+
+#: lib/header.c:1905
+msgid "(unknown type)"
+msgstr "(nieznany typ)"
+
+#: lib/install.c:141 lib/uninstall.c:179
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr "   plik: %s akcja: %s\n"
 
-#: ../lib/install.c:186
+#: lib/install.c:159
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr "u¿ytkownik %s nie istnieje - u¿yto konta root"
 
-#: ../lib/install.c:194
+#: lib/install.c:167
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr "grupa %s nie istnieje - u¿yto grupy root"
 
-#: ../lib/install.c:221
+#: lib/install.c:195
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr "warto¶æ %%instchangelog w pliku makra powinna byæ liczb±, a nie jest"
 
-#: ../lib/install.c:289
-#, c-format
-msgid "package: %s-%s-%s files test = %d\n"
-msgstr "pakiet: %s-%s-%s test plików = %d\n"
-
-#: ../lib/install.c:352
-msgid "stopping install as we're running --test\n"
-msgstr "przebieg testowy - instalacja zatrzymana\n"
-
-#: ../lib/install.c:357
-msgid "running preinstall script (if any)\n"
-msgstr "uruchamianie skryptu preinstall (je¶li istnieje)\n"
-
-#: ../lib/install.c:387
-#, c-format
-msgid "warning: %s created as %s"
-msgstr "ostrze¿enie: %s utworzony jako %s"
-
-#: ../lib/install.c:423
-#, c-format
-msgid "warning: %s saved as %s"
-msgstr "ostrze¿enie: %s zapisany jako %s"
-
-#: ../lib/install.c:427 ../lib/install.c:790 ../lib/uninstall.c:337
-#, c-format
-msgid "rename of %s to %s failed: %s"
-msgstr "zmiana nazwy z %s na %s nie powiod³a sie: %s"
-
-#: ../lib/install.c:507
-msgid "running postinstall script (if any)\n"
-msgstr "uruchamianie skryptu postinstall (je¶li istnieje)\n"
-
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
-#: ../lib/install.c:613
+#: lib/install.c:358
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr "rozpakowanie archiwum nie powiod³o siê %s%s: %s"
 
-#: ../lib/install.c:614
+#: lib/install.c:359
 msgid " on file "
 msgstr " na pliku "
 
-#: ../lib/install.c:654
+#: lib/install.c:402
 msgid "installing a source package\n"
 msgstr "instacja pakietu ¼ród³owego\n"
 
-#: ../lib/install.c:665 ../lib/install.c:687
-#, c-format
-msgid "cannot create %s"
+#: lib/install.c:413
+#, fuzzy, c-format
+msgid "cannot create %s: %s"
 msgstr "nie mo¿na utworzyæ %s"
 
-#: ../lib/install.c:672 ../lib/install.c:694
+#: lib/install.c:421 lib/install.c:443
 #, c-format
 msgid "cannot write to %s"
 msgstr "nie mo¿na zapisaæ do %s"
 
-#: ../lib/install.c:676
+#: lib/install.c:425
 #, c-format
 msgid "sources in: %s\n"
 msgstr "¼ród³a w: %s\n"
 
-#: ../lib/install.c:698
+#: lib/install.c:436
+#, c-format
+msgid "cannot create %s"
+msgstr "nie mo¿na utworzyæ %s"
+
+#: lib/install.c:447
 #, c-format
 msgid "spec file in: %s\n"
 msgstr "plik spec w: %s\n"
 
-#: ../lib/install.c:731 ../lib/install.c:767
+#: lib/install.c:481 lib/install.c:509
 msgid "source package contains no .spec file"
 msgstr "pakiet ¼ród³owy nie zawiera pliku .spec"
 
-#: ../lib/install.c:788
+#: lib/install.c:530
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr "zmiana nazwy %s na %s\n"
 
-#: ../lib/lookup.c:83
+#: lib/install.c:532 lib/install.c:810 lib/uninstall.c:26
+#, c-format
+msgid "rename of %s to %s failed: %s"
+msgstr "zmiana nazwy z %s na %s nie powiod³a sie: %s"
+
+#: lib/install.c:622
+msgid "source package expected, binary found"
+msgstr "spodziewany pakiet ¼ród³owy a nie binarny"
+
+#: lib/install.c:679
+#, c-format
+msgid "package: %s-%s-%s files test = %d\n"
+msgstr "pakiet: %s-%s-%s test plików = %d\n"
+
+#: lib/install.c:740
+msgid "stopping install as we're running --test\n"
+msgstr "przebieg testowy - instalacja zatrzymana\n"
+
+#: lib/install.c:745
+msgid "running preinstall script (if any)\n"
+msgstr "uruchamianie skryptu preinstall (je¶li istnieje)\n"
+
+#: lib/install.c:770
+#, c-format
+msgid "warning: %s created as %s"
+msgstr "ostrze¿enie: %s utworzony jako %s"
+
+#: lib/install.c:806
+#, c-format
+msgid "warning: %s saved as %s"
+msgstr "ostrze¿enie: %s zapisany jako %s"
+
+#: lib/install.c:880
+#, fuzzy
+msgid "running postinstall scripts (if any)\n"
+msgstr "uruchamianie skryptu postinstall (je¶li istnieje)\n"
+
+#: lib/lookup.c:35
 #, c-format
 msgid "cannot read header at %d for lookup"
 msgstr "nie mo¿na odczytaæ nag³ówka przy %d dla poszukiwania"
 
-#: ../lib/macro.c:136
+#: lib/macro.c:149
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr "======================== aktywny %d pusty %d\n"
 
 #. XXX just in case
-#: ../lib/macro.c:225
+#: lib/macro.c:243
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr "%3d>%*s(pusty)"
 
-#: ../lib/macro.c:260
+#: lib/macro.c:278
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr "%3d<%*s(pusty)\n"
 
-#: ../lib/macro.c:433
+#: lib/macro.c:457
 msgid "Macro %%%s has unterminated body"
 msgstr "Makro %%%s ma niezakoñczon± strukturê"
 
-#: ../lib/macro.c:459
+#: lib/macro.c:483
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr "Makro %%%s ma niedozwolon± nazwê (%%define)"
 
-#: ../lib/macro.c:465
+#: lib/macro.c:489
 msgid "Macro %%%s has unterminated opts"
 msgstr "Makro %%%s ma niezakoñczone opcje"
 
-#: ../lib/macro.c:470
+#: lib/macro.c:494
 msgid "Macro %%%s has empty body"
 msgstr "Makro %%%s nie zawiera ¿adnych poleceñ"
 
-#: ../lib/macro.c:475
+#: lib/macro.c:499
 msgid "Macro %%%s failed to expand"
 msgstr "Rozwiniêcie makra %%%s nie powiod³o siê"
 
-#: ../lib/macro.c:500
+#: lib/macro.c:524
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr "Makro %%%s ma niedozwolon± nazwê (%%undefine)"
 
-#: ../lib/macro.c:573
+#: lib/macro.c:601
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr "Makro %%%s (%s) nie by³o u¿yte poni¿ej poziomu %d"
 
-#: ../lib/macro.c:657
+#: lib/macro.c:698
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr "Nieznana opcja %c in %s(%s)"
 
-#: ../lib/macro.c:832
+#: lib/macro.c:870
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr "G³êboko¶æ(%d) rekursji wiêksza mi¿ maks(%d)"
 
-#: ../lib/macro.c:888 ../lib/macro.c:904
+#: lib/macro.c:936 lib/macro.c:952
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr "Niezakoñczone %c: %s"
 
-#: ../lib/macro.c:937
+#: lib/macro.c:992
 msgid "A %% is followed by an unparseable macro"
 msgstr "Napotkano nieprzetwarzalne makro po %%"
 
-#: ../lib/macro.c:1060
+#: lib/macro.c:1115
 msgid "Macro %%%.*s not found, skipping"
 msgstr "Nie znaleziono makra %%%.*s, makro pominiête"
 
-#: ../lib/macro.c:1138
+#: lib/macro.c:1196
 msgid "Target buffer overflow"
 msgstr "Przepe³nienie bufora docelowego"
 
-#: ../lib/macro.c:1285 ../lib/macro.c:1293
+#: lib/macro.c:1343 lib/macro.c:1351
 #, c-format
 msgid "File %s: %s"
 msgstr "Plik %s: %s"
 
-#: ../lib/macro.c:1296
+#: lib/macro.c:1354
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr "Plik %s jest mniejszy ni¿ %d bajtów"
 
-#: ../lib/messages.c:51
+#: lib/messages.c:55
 msgid "warning: "
 msgstr "ostrze¿enie: "
 
-#: ../lib/messages.c:57
+#: lib/messages.c:64
 msgid "error: "
 msgstr "b³±d: "
 
-#: ../lib/messages.c:63
+#: lib/messages.c:73
 msgid "fatal error: "
 msgstr "fatalny b³±d: "
 
-#: ../lib/messages.c:70
+#: lib/messages.c:82
 msgid "internal error (rpm bug?): "
 msgstr "b³±d wewnêtrzny (b³±d w rpm'ie?): "
 
-#: ../lib/misc.c:367 ../lib/misc.c:373 ../lib/misc.c:380
+#: lib/misc.c:367 lib/misc.c:373 lib/misc.c:380
 #, c-format
 msgid "error creating temporary file %s"
 msgstr "b³±d w tworzeniu pliku tymczasowego %s"
 
-#: ../lib/oldheader.c:292
+#: lib/oldheader.c:299
 #, c-format
 msgid "bad file state: %s"
 msgstr "b³êdny status pliku: %s"
 
-#: ../lib/package.c:51
+#: lib/package.c:234
 msgid "package is a version one package!\n"
 msgstr "ten pakiet jest pakietem w wersji jeden!\n"
 
-#: ../lib/package.c:54
+#: lib/package.c:239
 msgid "old style source package -- I'll do my best\n"
 msgstr "stary styl pakietu ¼ród³owego -- Zrobiê co w mojej mocy\n"
 
-#: ../lib/package.c:57
+#: lib/package.c:242
 #, c-format
 msgid "archive offset is %d\n"
 msgstr "ofsetem archiwum jest %d\n"
 
-#: ../lib/package.c:67
+#: lib/package.c:252
 msgid "old style binary package\n"
 msgstr "stary styl pakietu binarnego\n"
 
-#: ../lib/package.c:105
+#: lib/package.c:298
 msgid ""
 "only packages with major numbers <= 3 are supported by this version of RPM"
 msgstr ""
 "tylko pakiety z numerem g³ównym <= 3 s± obs³ugiwane przez t± wersjê RPM'a"
 
-#: ../lib/problems.c:39
+#: lib/problems.c:43
 #, c-format
 msgid " is needed by %s-%s-%s\n"
 msgstr " jest wymagany przez %s-%s-%s\n"
 
-#: ../lib/problems.c:42
+#: lib/problems.c:46
 #, c-format
 msgid " conflicts with %s-%s-%s\n"
 msgstr " jest w konflikcie z %s-%s-%s\n"
 
-#: ../lib/problems.c:68
+#: lib/problems.c:66
 #, c-format
 msgid "package %s-%s-%s is for a different architecture"
 msgstr "pakiet %s-%s-%s zbudowano dla innej architektury"
 
-#: ../lib/problems.c:73
+#: lib/problems.c:71
 #, c-format
 msgid "package %s-%s-%s is for a different operating system"
 msgstr "pakiet %s-%s-%s zbudowano dla innego systemu operacyjnego"
 
-#: ../lib/problems.c:78
+#: lib/problems.c:76
 #, c-format
 msgid "package %s-%s-%s is already installed"
 msgstr "pakiet %s-%s-%s jest ju¿ zainstalowany"
 
-#: ../lib/problems.c:83
+#: lib/problems.c:81
 #, c-format
 msgid "path %s is not relocateable for package %s-%s-%s"
 msgstr "nie mo¿na u¿yæ ¶cie¿ki %s przy przesuwaniu pakietu %s-%s-%s"
 
-#: ../lib/problems.c:88
+#: lib/problems.c:86
 #, c-format
 msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
 msgstr ""
 
-#: ../lib/problems.c:94
+#: lib/problems.c:92
 #, c-format
 msgid ""
 "file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
 msgstr ""
 "plik %s z pakietu %s-%s-%s jest w konflikcie z plikiem z pakietu %s-%s-%s"
 
-#: ../lib/problems.c:100
+#: lib/problems.c:98
 #, c-format
 msgid "package %s-%s-%s (which is newer then %s-%s-%s) is already installed"
 msgstr ""
 "pakiet %s-%s-%s (który jest nowszy ni¿ %s-%s-%s) jest ju¿ zainstalowany"
 
-#: ../lib/problems.c:106
-#, c-format
-msgid "installing package %s-%s-%s needs %ld%c on the %s filesystem"
+#: lib/problems.c:104
+#, fuzzy, c-format
+msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
 msgstr "instalacja pakietu %s-%s-%s wymaga %ld%c w systemie plików %s"
 
-#: ../lib/problems.c:118
+#: lib/problems.c:116
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr "wyst±pi³ nieznany b³±d %d w trakcie manipulowania pakietem %s-%s-%s"
 
-#: ../lib/query.c:57
-msgid "query package owning file"
-msgstr "sprawdzanie do jakiego pakietu nale¿y plik"
-
-#: ../lib/query.c:59
-msgid "query packages in group"
-msgstr "odpytywanie pakietów w grupie"
-
-#: ../lib/query.c:61
-msgid "query a package file"
-msgstr "odpytywanie pakietu"
-
-#: ../lib/query.c:65
-msgid "query a spec file"
-msgstr "odpytywanie pliku spec"
-
-#: ../lib/query.c:67
-msgid "query the pacakges triggered by the package"
-msgstr "odpytywanie pakietów zahaczanych przez pakiet"
-
-#: ../lib/query.c:69
-msgid "query the packages which require a capability"
-msgstr "odpytywanie pakietów wymagaj±cych zasobu"
-
-#: ../lib/query.c:71
-msgid "query the packages which provide a capability"
-msgstr "odpytywanie pakietów udostêpniaj±cych zasób"
-
-#: ../lib/query.c:108
-msgid "list all configuration files"
-msgstr "wy¶wietl wszystkie pliki konfiguracyjne"
-
-#: ../lib/query.c:110
-msgid "list all documentation files"
-msgstr "wy¶wietl wszystkie pliki dokumentacji"
-
-#: ../lib/query.c:112
-msgid "dump basic file information"
-msgstr "podaj postawowe informacje o pliku"
-
-#: ../lib/query.c:114
-msgid "list files in package"
-msgstr "wy¶wietl pliki zawarte w pakiecie"
-
-#: ../lib/query.c:118
-msgid "use the following query format"
-msgstr "u¿yj nastêpuj±cego formatu zapytania"
-
-#: ../lib/query.c:120
-msgid "substitute i18n sections from the following catalogue"
-msgstr ""
-
-#: ../lib/query.c:123
-msgid "display the states of the listed files"
-msgstr "wy¶wietl status pokazywanych plików"
-
-#: ../lib/query.c:125
-msgid "display a verbose file listing"
-msgstr "wy¶wietl wiêcej informacji o plikach z listy"
-
-#: ../lib/query.c:136
+#: lib/query.c:138
 #, c-format
 msgid "error in format: %s\n"
 msgstr "b³±d w formacie: %s\n"
 
-#: ../lib/query.c:177
+#: lib/query.c:180
 msgid "(contains no files)"
 msgstr "(nie zawiera plików)"
 
-#: ../lib/query.c:230
+#: lib/query.c:233
 msgid "normal        "
 msgstr "normalny      "
 
-#: ../lib/query.c:232
+#: lib/query.c:235
 msgid "replaced      "
 msgstr "zast±piony    "
 
-#: ../lib/query.c:234
-msgid "net shared    "
-msgstr "udostêpniony w sieci"
-
-#: ../lib/query.c:236
+#: lib/query.c:237
 msgid "not installed "
 msgstr "niezainstalowany"
 
-#: ../lib/query.c:238
+#: lib/query.c:239
+msgid "net shared    "
+msgstr "udostêpniony w sieci"
+
+#: lib/query.c:241
 #, c-format
 msgid "(unknown %3d) "
 msgstr "(nieznany %3d)"
 
-#: ../lib/query.c:242
+#: lib/query.c:245
 msgid "(no state)    "
 msgstr "(brak statusu)"
 
-#: ../lib/query.c:258 ../lib/query.c:288
+#: lib/query.c:261 lib/query.c:291
 msgid "package has neither file owner or id lists"
 msgstr "pakiet nie ma ani w³a¶ciciela pliku ani list id"
 
-#: ../lib/query.c:511
+#: lib/query.c:400
 #, c-format
 msgid "record number %u\n"
 msgstr "rekord numer %u\n"
 
-#: ../lib/query.c:515
+#: lib/query.c:404
 msgid "error: could not read database record\n"
 msgstr "b³±d: nie mo¿na odczytaæ rekordu bazy\n"
 
-#: ../lib/query.c:553
-#,  c-format
+#: lib/query.c:442
+#, c-format
 msgid "open of %s failed: %s\n"
 msgstr "otwarcie %s nie powiod³o siê\n"
 
-#: ../lib/query.c:566
+#: lib/query.c:455
 msgid "old format source packages cannot be queried\n"
 msgstr "pakiety w starym formacie nie mog± byæ odpytywane\n"
 
-#: ../lib/query.c:578
+#: lib/query.c:464 lib/rpminstall.c:203
+#, c-format
+msgid "%s does not appear to be a RPM package\n"
+msgstr "%s nie wygl±da na pakiet RPM\n"
+
+#: lib/query.c:467
 #, c-format
 msgid "query of %s failed\n"
 msgstr "odpytywanie %s nie powiod³o siê\n"
 
-#: ../lib/query.c:605
+#: lib/query.c:494
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "odpytywanie pliku spec %s nie powiod³o siê, nie mo¿na interpretowaæ\n"
 
-#: ../lib/query.c:639
+#: lib/query.c:519
 msgid "could not read database record!\n"
 msgstr "nie mo¿na odczytaæ rekordu bazy!\n"
 
-#: ../lib/query.c:650
+#: lib/query.c:530
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "grupa %s nie zawiera ¿adnych pakietów\n"
 
-#: ../lib/query.c:660
+#: lib/query.c:540
 #, c-format
 msgid "no package provides %s\n"
 msgstr "¿aden pakiet nie udostêpnia %s\n"
 
-#: ../lib/query.c:670
+#: lib/query.c:550
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "¿aden pakiet nie zahacza %s\n"
 
-#: ../lib/query.c:680
+#: lib/query.c:560
 #, c-format
 msgid "no package requires %s\n"
 msgstr "¿aden pakiet nie wymaga %s\n"
 
-#: ../lib/query.c:695
+#: lib/query.c:575
 #, c-format
 msgid "file %s: %s\n"
 msgstr "plik %s: %s\n"
 
-#: ../lib/query.c:698
+#: lib/query.c:578
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
 
-#: ../lib/query.c:711
+#: lib/query.c:591
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "b³êdny numer pakietu: %s\n"
 
-#: ../lib/query.c:714
+#: lib/query.c:594
 #, c-format
 msgid "package record number: %d\n"
 msgstr "numer rekordu pakietu: %d\n"
 
-#: ../lib/query.c:717
+#: lib/query.c:597
 #, c-format
 msgid "record %d could not be read\n"
 msgstr "nie mo¿na odczytaæ rekordu %d\n"
 
-#: ../lib/query.c:732
+#: lib/query.c:609 lib/rpminstall.c:393
+#, c-format
+msgid "package %s is not installed\n"
+msgstr "pakiet %s nie jest zainstalowany\n"
+
+#: lib/query.c:612
 #, c-format
 msgid "error looking for package %s\n"
 msgstr "b³±d szukania pakietu %s\n"
 
-#: ../lib/query.c:754
+#: lib/query.c:634
 msgid "rpmQuery: rpmdbOpen() failed\n"
 msgstr "rpmQuery: rpmdbOpen() nie powiod³o siê\n"
 
-#: ../lib/rebuilddb.c:19
+#: lib/query.c:691
+msgid "query package owning file"
+msgstr "sprawdzanie do jakiego pakietu nale¿y plik"
+
+#: lib/query.c:693
+msgid "query packages in group"
+msgstr "odpytywanie pakietów w grupie"
+
+#: lib/query.c:695
+msgid "query a package file"
+msgstr "odpytywanie pakietu"
+
+#: lib/query.c:699
+msgid "query a spec file"
+msgstr "odpytywanie pliku spec"
+
+#: lib/query.c:701
+msgid "query the pacakges triggered by the package"
+msgstr "odpytywanie pakietów zahaczanych przez pakiet"
+
+#: lib/query.c:703
+msgid "query the packages which require a capability"
+msgstr "odpytywanie pakietów wymagaj±cych zasobu"
+
+#: lib/query.c:705
+msgid "query the packages which provide a capability"
+msgstr "odpytywanie pakietów udostêpniaj±cych zasób"
+
+#: lib/query.c:742
+msgid "list all configuration files"
+msgstr "wy¶wietl wszystkie pliki konfiguracyjne"
+
+#: lib/query.c:744
+msgid "list all documentation files"
+msgstr "wy¶wietl wszystkie pliki dokumentacji"
+
+#: lib/query.c:746
+msgid "dump basic file information"
+msgstr "podaj postawowe informacje o pliku"
+
+#: lib/query.c:748
+msgid "list files in package"
+msgstr "wy¶wietl pliki zawarte w pakiecie"
+
+#: lib/query.c:752
+msgid "use the following query format"
+msgstr "u¿yj nastêpuj±cego formatu zapytania"
+
+#: lib/query.c:754
+msgid "substitute i18n sections from the following catalogue"
+msgstr ""
+
+#: lib/query.c:757
+msgid "display the states of the listed files"
+msgstr "wy¶wietl status pokazywanych plików"
+
+#: lib/query.c:759
+msgid "display a verbose file listing"
+msgstr "wy¶wietl wiêcej informacji o plikach z listy"
+
+#: lib/rebuilddb.c:20
 #, c-format
 msgid "rebuilding database in rootdir %s\n"
 msgstr "odbudowywujê bazê danych w rootdir %s\n"
 
-#: ../lib/rebuilddb.c:23 ../lib/rpmdb.c:64 ../lib/rpmdb.c:82 ../lib/rpmdb.c:98
+#: lib/rebuilddb.c:24 lib/rpmdb.c:69 lib/rpmdb.c:88 lib/rpmdb.c:105
 msgid "no dbpath has been set"
 msgstr "¶cie¿ka bazy danych nie zosta³a podana"
 
-#: ../lib/rebuilddb.c:32
+#: lib/rebuilddb.c:33
 #, c-format
 msgid "temporary database %s already exists"
 msgstr "tymczasowa baza danych %s ju¿ istnieje"
 
-#: ../lib/rebuilddb.c:36
+#: lib/rebuilddb.c:37
 #, c-format
 msgid "creating directory: %s\n"
 msgstr "tworzenie katalogu: %s\n"
 
-#: ../lib/rebuilddb.c:38
+#: lib/rebuilddb.c:39
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr "b³±d przy tworzeniu katalogu %s: %s"
 
-#: ../lib/rebuilddb.c:42
+#: lib/rebuilddb.c:43
 msgid "opening old database\n"
 msgstr "otwieranie starej bazy danych\n"
 
-#: ../lib/rebuilddb.c:49
+#: lib/rebuilddb.c:50
 msgid "opening new database\n"
 msgstr "otwieranie nowej bazy danych\n"
 
-#: ../lib/rebuilddb.c:59 ../lib/rebuilddb.c:77
+#: lib/rebuilddb.c:60 lib/rebuilddb.c:78
 #, c-format
 msgid "record number %d in database is bad -- skipping it"
 msgstr "rekord numer %d w bazie danych jest b³êdny -- rekord pominiêto"
 
-#: ../lib/rebuilddb.c:71
+#: lib/rebuilddb.c:72
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr "nie mo¿na dodaæ rekordu oryginalnie przy %d"
 
-#: ../lib/rebuilddb.c:90
+#: lib/rebuilddb.c:91
 msgid "failed to rebuild database; original database remains in place\n"
 msgstr "przebudowanie bazy nie powiod³o siê; stara pozosta³a na miejscu\n"
 
-#: ../lib/rebuilddb.c:98
+#: lib/rebuilddb.c:99
 msgid "failed to replace old database with new database!\n"
 msgstr "zamiana starej bazy na now± nie powiod³a siê!\n"
 
-#: ../lib/rebuilddb.c:100
+#: lib/rebuilddb.c:101
 #, c-format
 msgid "replaces files in %s with files from %s to recover"
 msgstr "naprawcze zastêpowanie plików w %s plikami z %s"
 
-#: ../lib/rebuilddb.c:106
+#: lib/rebuilddb.c:107
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "usuniêcie katalogu %s nie powiod³o siê: %s\n"
 
-#: ../lib/rpmdb.c:159
+#: lib/rpmchecksig.c:31
+#, fuzzy, c-format
+msgid "%s: fdOpen failed: %s\n"
+msgstr "%s: Open nie powiod³o siê\n"
+
+#: lib/rpmchecksig.c:42
+#, fuzzy
+msgid "makeTempFile failed\n"
+msgstr "wykonanie nie powiod³o siê\n"
+
+#: lib/rpmchecksig.c:74
+#, fuzzy, c-format
+msgid "%s: fdWrite failed: %s\n"
+msgstr "%s: Open nie powiod³o siê\n"
+
+#: lib/rpmchecksig.c:80
+#, fuzzy, c-format
+msgid "%s: fdRead failed: %s\n"
+msgstr "%s: readLead nie powiod³o siê\n"
+
+#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:242
+#, c-format
+msgid "%s: readLead failed\n"
+msgstr "%s: readLead nie powiod³o siê\n"
+
+#: lib/rpmchecksig.c:118
+#, c-format
+msgid "%s: Can't sign v1.0 RPM\n"
+msgstr "%s: Nie mo¿na podpisaæ v1.0 RPM\n"
+
+#: lib/rpmchecksig.c:122
+#, c-format
+msgid "%s: Can't re-sign v2.0 RPM\n"
+msgstr "%s: Nie mo¿na ponownie podpisaæ v2.0 RPM\n"
+
+#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:256
+#, c-format
+msgid "%s: rpmReadSignature failed\n"
+msgstr "%s: rpmReadSignature nie powiod³o siê\n"
+
+#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:261
+#, c-format
+msgid "%s: No signature available\n"
+msgstr "%s: Sygnatura nie jest dostêpna\n"
+
+#: lib/rpmchecksig.c:167
+#, fuzzy, c-format
+msgid "%s: writeLead failed: %s\n"
+msgstr "%s: readLead nie powiod³o siê\n"
+
+#: lib/rpmchecksig.c:173
+#, fuzzy, c-format
+msgid "%s: rpmWriteSignature failed\n"
+msgstr "%s: rpmReadSignature nie powiod³o siê\n"
+
+#: lib/rpmchecksig.c:248
+#, c-format
+msgid "%s: No signature available (v1.0 RPM)\n"
+msgstr "%s: Sygnatura nie jest dostêpna (v1.0 RPM)\n"
+
+#: lib/rpmchecksig.c:408
+msgid "NOT OK"
+msgstr "NIE DOBRZE"
+
+#: lib/rpmchecksig.c:409 lib/rpmchecksig.c:423
+msgid " (MISSING KEYS:"
+msgstr " (BRAK KLUCZY:"
+
+#: lib/rpmchecksig.c:411 lib/rpmchecksig.c:425
+msgid ") "
+msgstr ") "
+
+#: lib/rpmchecksig.c:412 lib/rpmchecksig.c:426
+msgid " (UNTRUSTED KEYS:"
+msgstr "(NIEWIARYGODNE KLUCZE:"
+
+#: lib/rpmchecksig.c:414 lib/rpmchecksig.c:428
+msgid ")"
+msgstr ")"
+
+#: lib/rpmchecksig.c:422
+msgid "OK"
+msgstr "OK"
+
+#: lib/rpmdb.c:184
 #, c-format
 msgid "opening database mode 0x%x in %s\n"
 msgstr "otwiernie bazê danych w trybie 0x%x w %s\n"
 
-#: ../lib/rpmdb.c:169 ../lib/url.c:421
+#: lib/rpmdb.c:193 lib/url.c:431
 #, c-format
 msgid "failed to open %s\n"
 msgstr "otwarcie %s nie powiod³o siê\n"
 
-#: ../lib/rpmdb.c:182 ../lib/rpmdb.c:189
+#: lib/rpmdb.c:206 lib/rpmdb.c:214
 #, c-format
 msgid "cannot get %s lock on database"
 msgstr "utworzenie blokady %s na bazie danych nie jest mo¿liwe"
 
-#: ../lib/rpmdb.c:183
+#: lib/rpmdb.c:207
 msgid "exclusive"
 msgstr ""
 
-#: ../lib/rpmdb.c:190
+#: lib/rpmdb.c:215
 msgid "shared"
 msgstr ""
 
-#: ../lib/rpmdb.c:213
+#: lib/rpmdb.c:246
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
@@ -3009,405 +2962,578 @@ msgstr ""
 "baza danych jest w starym formacie; u¿yj --rebuilddb aby wygenerowaæ bazê  w "
 "nowym formacie"
 
-#: ../lib/rpmdb.c:372
+#: lib/rpmdb.c:439
 #, c-format
 msgid "package %s not listed in %s"
 msgstr "pakiet %s nie jest wymieniony w %s"
 
-#: ../lib/rpmdb.c:383
+#: lib/rpmdb.c:450
 #, c-format
 msgid "package %s not found in %s"
 msgstr "pakiet %s nie znaleziony w %s"
 
-#: ../lib/rpmdb.c:407 ../lib/uninstall.c:40
+#: lib/rpmdb.c:475 lib/uninstall.c:85
 #, c-format
 msgid "cannot read header at %d for uninstall"
 msgstr "nie mo¿na odczytaæ nag³ówka przy %d dla deinstalacji"
 
-#: ../lib/rpmdb.c:415
+#: lib/rpmdb.c:483
 msgid "package has no name"
 msgstr "pakiet nie ma nazwy"
 
-#: ../lib/rpmdb.c:417
+#: lib/rpmdb.c:485
 msgid "removing name index\n"
 msgstr "usuwanie indeksu nazw\n"
 
-#: ../lib/rpmdb.c:422
+#: lib/rpmdb.c:490
 msgid "package has no group\n"
 msgstr "pakiet nie ma grupy\n"
 
-#: ../lib/rpmdb.c:424
+#: lib/rpmdb.c:492
 msgid "removing group index\n"
 msgstr "usuwanie indeksu grupy\n"
 
-#: ../lib/rpmdb.c:431
+#: lib/rpmdb.c:499
 #, c-format
 msgid "removing provides index for %s\n"
 msgstr "usuwanie indeksu udostêpnianych zasobów dla %s\n"
 
-#: ../lib/rpmdb.c:446
+#: lib/rpmdb.c:514
 #, c-format
 msgid "removing requiredby index for %s\n"
 msgstr "usuwanie indeksu zale¿no¶ci dla %s\n"
 
-#: ../lib/rpmdb.c:458
+#: lib/rpmdb.c:526
 #, c-format
 msgid "removing trigger index for %s\n"
 msgstr "usuwanie indeksu trigger dla %s\n"
 
-#: ../lib/rpmdb.c:469
+#: lib/rpmdb.c:537
 #, c-format
 msgid "removing conflict index for %s\n"
 msgstr "usuwanie indeksu konfliktów dla %s\n"
 
-#: ../lib/rpmdb.c:486
+#: lib/rpmdb.c:554
 #, c-format
 msgid "removing file index for %s\n"
 msgstr "usuwanie indeksu plików dla %s\n"
 
-#: ../lib/rpmdb.c:495
+#: lib/rpmdb.c:563
 msgid "package has no files\n"
 msgstr "pakiet nie ma plików\n"
 
-#: ../lib/rpmdb.c:568
+#: lib/rpmdb.c:645
 msgid "cannot allocate space for database"
 msgstr "nie mo¿na alokowaæ przestrzeni dla bazy danych"
 
-#: ../lib/rpmdb.c:639
+#: lib/rpmdb.c:711
 #, c-format
 msgid "cannot read header at %d for update"
 msgstr "nie mo¿na odczytaæ nag³ówka przy %d dla uaktualnienia"
 
-#: ../lib/rpmdb.c:648
+#: lib/rpmdb.c:720
 msgid "header changed size!"
 msgstr "nag³ówek zmieni³ swój rozmiar!"
 
-#: ../lib/rpmlead.c:41
+#: lib/rpminstall.c:128
+msgid "counting packages to install\n"
+msgstr "zliczanie pakietów do zainstalowania\n"
+
+#: lib/rpminstall.c:132
+#, c-format
+msgid "found %d packages\n"
+msgstr "znaleziono %d pakietów\n"
+
+#: lib/rpminstall.c:141
+msgid "looking for packages to download\n"
+msgstr "szukanie pakietów do ¶ci±gniêcia\n"
+
+#: lib/rpminstall.c:152
+#, c-format
+msgid "Retrieving %s\n"
+msgstr "¦ci±ganie %s\n"
+
+#: lib/rpminstall.c:161
+#, c-format
+msgid " ... as %s\n"
+msgstr "... jako %s\n"
+
+#: lib/rpminstall.c:165
+#, c-format
+msgid "skipping %s - transfer failed - %s\n"
+msgstr "%s pomijany - transmisja %s nie powiod³a siê\n"
+
+#: lib/rpminstall.c:182
+#, c-format
+msgid "retrieved %d packages\n"
+msgstr "¶ci±gniêto %d pakietów\n"
+
+#: lib/rpminstall.c:191 lib/rpminstall.c:332
+#, c-format
+msgid "cannot open file %s\n"
+msgstr "nie mo¿na otworzyæ pliku %s\n"
+
+#: lib/rpminstall.c:207 lib/rpminstall.c:469
+#, c-format
+msgid "%s cannot be installed\n"
+msgstr "%s nie mo¿e byæ zainstalowany\n"
+
+#: lib/rpminstall.c:243
+#, c-format
+msgid "package %s is not relocateable\n"
+msgstr "pakiet %s nie jest przesuwalny\n"
+
+#: lib/rpminstall.c:261
+#, c-format
+msgid "error reading from file %s\n"
+msgstr "b³±d czytania z pliku %s\n"
+
+#: lib/rpminstall.c:266
+#, c-format
+msgid "file %s requires a newer version of RPM\n"
+msgstr "plik %s wymaga nowszej wersji RPM\n"
+
+#: lib/rpminstall.c:283
+#, 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:294
+msgid "failed dependencies:\n"
+msgstr "niespe³nione zale¿no¶ci:\n"
+
+#: lib/rpminstall.c:312
+msgid "installing binary packages\n"
+msgstr "instalacja pakietów binarnych\n"
+
+#: lib/rpminstall.c:397
+#, c-format
+msgid "searching for package %s\n"
+msgstr "poszukiwanie pakietu %s\n"
+
+#: lib/rpminstall.c:406
+#, c-format
+msgid "\"%s\" specifies multiple packages\n"
+msgstr "\"%s\" okre¶la wiele pakietów\n"
+
+#: lib/rpminstall.c:432
+msgid "removing these packages would break dependencies:\n"
+msgstr "usuniêcie tych pakietów zerwie zale¿no¶ci:\n"
+
+#: lib/rpminstall.c:459
+#, c-format
+msgid "cannot open %s\n"
+msgstr "nie mo¿na otworzyæ %s\n"
+
+#: lib/rpminstall.c:464
+#, c-format
+msgid "Installing %s\n"
+msgstr "Instalacja %s\n"
+
+#: lib/rpmlead.c:48
 #, c-format
 msgid "read failed: %s (%d)"
 msgstr "odczyt nie powiód³ siê: %s (%d)"
 
-#: ../lib/rpmrc.c:178
+#: lib/rpmrc.c:177
 #, c-format
 msgid "missing second ':' at %s:%d"
 msgstr "brak drugiego ':' przy %s:%d"
 
-#: ../lib/rpmrc.c:181
+#: lib/rpmrc.c:180
 #, c-format
 msgid "missing architecture name at %s:%d"
 msgstr "brak nazwy architektury przy %s:%d"
 
-#: ../lib/rpmrc.c:329
+#: lib/rpmrc.c:328
 #, c-format
 msgid "Incomplete data line at %s:%d"
 msgstr "Niekompletna linia danych przy %s:%d"
 
-#: ../lib/rpmrc.c:333
+#: lib/rpmrc.c:332
 #, c-format
 msgid "Too many args in data line at %s:%d"
 msgstr "Zbyt wiele argumentów w linii danych przy %s:%d"
 
-#: ../lib/rpmrc.c:340
+#: lib/rpmrc.c:339
 #, c-format
 msgid "Bad arch/os number: %s (%s:%d)"
 msgstr "B³êdny numer arch/os: %s (%s:%d)"
 
-#: ../lib/rpmrc.c:374
+#: lib/rpmrc.c:373
 #, c-format
 msgid "Incomplete default line at %s:%d"
 msgstr "Niekompletna domy¶lna linia przy %s:%d"
 
-#: ../lib/rpmrc.c:379
+#: lib/rpmrc.c:378
 #, c-format
 msgid "Too many args in default line at %s:%d"
 msgstr "Zbyt wiele argumentów w linii domy¶lnej przy %s:%d"
 
-#: ../lib/rpmrc.c:562
+#: lib/rpmrc.c:561
 #, c-format
 msgid "Cannot expand %s"
 msgstr "Nie mo¿na rozszerzyæ %s"
 
-#: ../lib/rpmrc.c:577
+#: lib/rpmrc.c:576
 #, c-format
 msgid "Unable to open %s for reading: %s."
 msgstr "Nie mo¿na otworzyæ %s do odczytu: %s."
 
-#: ../lib/rpmrc.c:609
+#: lib/rpmrc.c:608
 #, c-format
 msgid "Failed to read %s: %s."
 msgstr "Odczytanie %s nie powiod³o siê: %s."
 
-#: ../lib/rpmrc.c:639
+#: lib/rpmrc.c:638
 #, c-format
 msgid "missing ':' at %s:%d"
 msgstr "brak ':' przy %s:%d"
 
-#: ../lib/rpmrc.c:656 ../lib/rpmrc.c:730
+#: lib/rpmrc.c:655 lib/rpmrc.c:729
 #, c-format
 msgid "missing argument for %s at %s:%d"
 msgstr "brak argumentu dla %s przy %s:%d"
 
-#: ../lib/rpmrc.c:673 ../lib/rpmrc.c:695
+#: lib/rpmrc.c:672 lib/rpmrc.c:694
 #, c-format
 msgid "%s expansion failed at %s:%d \"%s\""
 msgstr ""
 
-#: ../lib/rpmrc.c:681
+#: lib/rpmrc.c:680
 #, c-format
 msgid "cannot open %s at %s:%d"
 msgstr "nie mo¿na otworzyæ %s przy %s:%d"
 
-#: ../lib/rpmrc.c:722
+#: lib/rpmrc.c:721
 #, c-format
 msgid "missing architecture for %s at %s:%d"
 msgstr "brak architektury dla %s przy %s:%d"
 
-#: ../lib/rpmrc.c:789
+#: lib/rpmrc.c:788
 #, c-format
 msgid "bad option '%s' at %s:%d"
 msgstr "b³êdna opcja '%s' przy %s:%d"
 
-#: ../lib/rpmrc.c:1125
+#: lib/rpmrc.c:1147
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr "Nieznany system: %s\n"
 
-#: ../lib/rpmrc.c:1126
+#: lib/rpmrc.c:1148
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr "Skontaktuj siê, proszê, z rpm-list@redhat.com\n"
 
-#: ../lib/signature.c:147
+#: lib/signature.c:106
+#, c-format
+msgid "sigsize         : %d\n"
+msgstr "rozmiar sygnat. : %d\n"
+
+#: lib/signature.c:107
+#, c-format
+msgid "Header + Archive: %d\n"
+msgstr "Nag³ówek + Archiwum: %d\n"
+
+#: lib/signature.c:108
+#, c-format
+msgid "expected size   : %d\n"
+msgstr "oczekiwany rozmiar: %d\n"
+
+#: lib/signature.c:112
+msgid "file is not regular -- skipping size check\n"
+msgstr "plik nieregularny -- sprawdzanie rozmiaru pominiête\n"
+
+#: lib/signature.c:134
 msgid "No signature\n"
 msgstr "Brak sygnatury\n"
 
-#: ../lib/signature.c:150
+#: lib/signature.c:137
 msgid "Old PGP signature\n"
 msgstr "Stara sygnatura PGP\n"
 
-#: ../lib/signature.c:163
+#: lib/signature.c:149
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr "Stara (tylko wewnêtrzna) sygnatura! Sk±d Ty to wzi±³e¶!?"
 
-#: ../lib/signature.c:167
+#: lib/signature.c:153
 msgid "New Header signature\n"
 msgstr "Nowa sygnatura nag³ówka\n"
 
 #. 8-byte pad
-#: ../lib/signature.c:175 ../lib/signature.c:213
+#: lib/signature.c:160 lib/signature.c:202
 #, c-format
 msgid "Signature size: %d\n"
 msgstr "Rozmiar sygnatury: %d\n"
 
-#: ../lib/signature.c:176 ../lib/signature.c:214
+#: lib/signature.c:161 lib/signature.c:203
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr "Blok sygnatury: %d\n"
 
-#: ../lib/signature.c:306 ../lib/signature.c:812
-msgid "Couldn't exec pgp"
+#: lib/signature.c:266
+#, fuzzy, c-format
+msgid "Couldn't exec pgp (%s)"
 msgstr "Nie mo¿na uruchomiæ pgp"
 
-#: ../lib/signature.c:317
+#: lib/signature.c:277
 msgid "pgp failed"
 msgstr "pgp nie powiod³o siê"
 
 #. PGP failed to write signature
 #. Just in case
-#: ../lib/signature.c:324
+#: lib/signature.c:284
 msgid "pgp failed to write signature"
 msgstr "zapisanie sygnatury przez pgp nie powiod³o siê"
 
-#: ../lib/signature.c:329
+#: lib/signature.c:289
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "rozmiar sygnatury PGP: %d\n"
 
-#: ../lib/signature.c:340 ../lib/signature.c:416
+#: lib/signature.c:300 lib/signature.c:377
 msgid "unable to read the signature"
 msgstr "nie mo¿na odczytaæ sygnatury"
 
-#: ../lib/signature.c:345
+#: lib/signature.c:305
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "Mam %d bajtów sygnatury PGP\n"
 
-#: ../lib/signature.c:382 ../lib/signature.c:787
+#: lib/signature.c:343 lib/signature.c:686
 msgid "Couldn't exec gpg"
 msgstr "Nie mo¿na uruchomiæ gpg"
 
-#: ../lib/signature.c:393
+#: lib/signature.c:354
 msgid "gpg failed"
 msgstr "gpg nie powiod³o siê"
 
 #. GPG failed to write signature
 #. Just in case
-#: ../lib/signature.c:400
+#: lib/signature.c:361
 msgid "gpg failed to write signature"
 msgstr "zapisanie sygnatury przez gpg nie powiod³o siê"
 
-#: ../lib/signature.c:405
+#: lib/signature.c:366
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr "rozmiar sygnatury GPG: %d\n"
 
-#: ../lib/signature.c:421
+#: lib/signature.c:382
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr "Mam %d bajtów sygnatury GPG\n"
 
-#: ../lib/signature.c:436
-#, c-format
-msgid "sigsize         : %d\n"
-msgstr "rozmiar sygnat. : %d\n"
-
-#: ../lib/signature.c:437
-#, c-format
-msgid "Header + Archive: %d\n"
-msgstr "Nag³ówek + Archiwum: %d\n"
-
-#: ../lib/signature.c:438
-#, c-format
-msgid "expected size   : %d\n"
-msgstr "oczekiwany rozmiar: %d\n"
+#: lib/signature.c:409
+#, fuzzy
+msgid "Generating signature using PGP.\n"
+msgstr "Generowanie sygnatury: %d\n"
 
-#: ../lib/signature.c:442
-msgid "file is not regular -- skipping size check\n"
-msgstr "plik nieregularny -- sprawdzanie rozmiaru pominiête\n"
+#: lib/signature.c:415
+#, fuzzy
+msgid "Generating signature using GPG.\n"
+msgstr "Generowanie sygnatury: %d\n"
 
-#: ../lib/signature.c:560 ../lib/signature.c:607
+#: lib/signature.c:492 lib/signature.c:554
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr "Nie mo¿na uruchomiæ pgp. U¿yj --nopgp aby pomin±æ sprawdz. PGP"
 
-#: ../lib/signature.c:605 ../lib/signature.c:677
+#: lib/signature.c:552 lib/signature.c:625
 msgid "exec failed!\n"
 msgstr "uruchomienie nie powiod³o siê!\n"
 
-#: ../lib/signature.c:679
+#: lib/signature.c:627
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr "Nie mo¿na uruchomiæ gpg. U¿yj --nopgp aby pomin±æ sprawdz. GPG"
 
-#: ../lib/signature.c:716
+#: lib/signature.c:715
+msgid "Couldn't exec pgp"
+msgstr "Nie mo¿na uruchomiæ pgp"
+
+#. @notreached@
+#. This case should have been screened out long ago.
+#: lib/signature.c:719 lib/signature.c:772
+msgid "Invalid %%_signature spec in macro file"
+msgstr "B³êdny wpis %%_signature w pliku makra"
+
+#: lib/signature.c:752
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr "Musisz ustawiæ \"%%_gpg_name\" w pliku swego makra"
 
-#: ../lib/signature.c:728
+#: lib/signature.c:764
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr "Musisz ustawiæ \"%%_pgp_name\" w pliku swego makra"
 
-#. Currently the calling function (rpm.c:main) is checking this and
-#. * doing a better job.  This section should never be accessed.
-#.
-#: ../lib/signature.c:736 ../lib/signature.c:816
-msgid "Invalid %%_signature spec in macro file"
-msgstr "B³êdny wpis %%_signature w pliku makra"
-
-#: ../lib/transaction.c:793
+#: lib/transaction.c:363
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "przesuwanie %s do %s\n"
 
-#: ../lib/transaction.c:799
+#: lib/transaction.c:370
 #, c-format
 msgid "excluding %s\n"
 msgstr "wy³±czanie %s\n"
 
-#: ../lib/transaction.c:887
+#: lib/transaction.c:489
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s pominiêty z powodu flagi missingok\n"
 
-#: ../lib/uninstall.c:51
+#: lib/uninstall.c:37
+#, c-format
+msgid "cannot remove %s - directory not empty"
+msgstr "nie mo¿na usun±æ %s - katalog nie jest pusty"
+
+#: lib/uninstall.c:40
+#, c-format
+msgid "rmdir of %s failed: %s"
+msgstr "skasowanie katalogu %s nie powiod³o siê"
+
+#: lib/uninstall.c:48
+#, c-format
+msgid "removal of %s failed: %s"
+msgstr "skasowanie %s nie powiod³o siê: %s"
+
+#: lib/uninstall.c:97
 #, c-format
 msgid "cannot read packages named %s for uninstall"
 msgstr "nie mo¿na odczytaæ pakietów nazwanych %s dla zdeinstalowania"
 
-#: ../lib/uninstall.c:79
+#: lib/uninstall.c:130
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr "usunie pliki test = %d\n"
 
-#: ../lib/uninstall.c:124
+#: lib/uninstall.c:191
 msgid "running postuninstall script (if any)\n"
 msgstr "uruchamianie skryptu postinstalacyjnego (je¦li istnieje)\n"
 
-#: ../lib/uninstall.c:138
+#: lib/uninstall.c:204
 msgid "removing database entry\n"
 msgstr "usuwanie wpisu w bazie\n"
 
-#: ../lib/uninstall.c:289
+#: lib/uninstall.c:365
 msgid "execution of script failed"
 msgstr "wykonanie skryptu nie powiod³o siê"
 
-#: ../lib/uninstall.c:348
-#, c-format
-msgid "cannot remove %s - directory not empty"
-msgstr "nie mo¿na usun±æ %s - katalog nie jest pusty"
-
-#: ../lib/uninstall.c:351
-#, c-format
-msgid "rmdir of %s failed: %s"
-msgstr "skasowanie katalogu %s nie powiod³o siê"
-
-#: ../lib/uninstall.c:359
-#, c-format
-msgid "removal of %s failed: %s"
-msgstr "skasowanie %s nie powiod³o siê: %s"
-
-#: ../lib/url.c:135
+#: lib/url.c:144
 #, c-format
 msgid "Password for %s@%s: "
 msgstr "Has³o dla %s@%s: "
 
-#: ../lib/url.c:159 ../lib/url.c:185
+#: lib/url.c:168 lib/url.c:194
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr "b³±d: %sport musi byæ liczb±\n"
 
-#: ../lib/url.c:270
+#: lib/url.c:279
 msgid "url port must be a number\n"
 msgstr "port musi byæ liczb±\n"
 
 #. XXX PARANOIA
-#: ../lib/url.c:307
+#: lib/url.c:317
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr "logowanie do %s jako %s, has³o %s\n"
 
-#: ../lib/url.c:436
+#: lib/url.c:446
 #, c-format
 msgid "failed to create %s\n"
 msgstr "utworzenie %s nie powiod³o siê\n"
 
-#: ../lib/verify.c:36
+#: lib/verify.c:36
 msgid "don't verify files in package"
 msgstr "nie sprawdzaj plików pakietu"
 
-#: ../lib/verify.c:206
+#: lib/verify.c:206
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 "pakiet nie specyfikuje ani nazwy u¿ytkownika ani list id (to nie powinno siê "
 "zdarzyæ)"
 
-#: ../lib/verify.c:224
+#: lib/verify.c:224
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 "pakiet nie specyfikuje ani nazwy grupy ani list id (to nie powinno siê "
 "zdarzyæ)"
 
-#: ../lib/verify.c:257
+#: lib/verify.c:257
 #, c-format
 msgid "missing    %s\n"
 msgstr "brak    %s\n"
 
-#: ../lib/verify.c:321
+#: lib/verify.c:319
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "Niespe³nione zale¿no¶ci dla %s-%s-%s: "
 
-#: ../lib/verify.c:369
+#: lib/verify.c:367
 msgid "rpmVerify: rpmdbOpen() failed\n"
 msgstr "rpmVerify: rpmdbOpen() nie powiod³o siê\n"
 
+#~ msgid "File contains non-printable characters(%c): %s\n"
+#~ msgstr "Plik zawiera niedrukowalne znaki (%c): %s\n"
+
+#~ msgid "Couldn't read the header/archive"
+#~ msgstr "Nie mo¿na odczytaæ nag³ówka/archiwum"
+
+#~ msgid "Couldn't write header/archive to temp file"
+#~ msgstr "Nie mo¿na zapisaæ nag³ówka/archiwum do pliku tymczasowego"
+
+#~ msgid "Couldn't read sigtarget"
+#~ msgstr "Nie mo¿na odczytaæ sigtarget"
+
+#~ msgid "Couldn't write package"
+#~ msgstr "Nie mo¿na zapisaæ pakietu"
+
+#~ msgid "Unable to write %s"
+#~ msgstr "Nie mo¿na zapisaæ %s"
+
+#~ msgid "--nofiles may only be specified during package verification"
+#~ msgstr "--nofiles mo¿na u¿yæ tylko w trakcie sprawdzania pakietów"
+
+#~ msgid "--clean may only be used with -b and -t"
+#~ msgstr "--clean mo¿na u¿yæ tylko z -b i -t"
+
+#~ msgid "--rmsource may only be used with -b and -t"
+#~ msgstr "--rmsource mo¿na u¿yæ tylko z -b i -t"
+
+#~ msgid "--short-circuit may only be used during package building"
+#~ msgstr "--short-circuit mo¿na u¿yæ tylko w trakcie budowania pakietów"
+
+#~ msgid "--short-circuit may only be used with -bc, -bi, -bs, -tc -ti, or -ts"
+#~ msgstr "--short-circuit mo¿na u¿yæ tylko z -bc, -bi, -bs, -tc -ti lub -ts"
+
+#~ msgid ""
+#~ "Use `%%_signature pgp5' instead of `%%_signature pgp' in macro file.\n"
+#~ msgstr ""
+#~ "U¿yj `%%_signature pgp5' zamiast `%%_signature pgp' w pliku makra.\n"
+
+#~ msgid "pgp version 5 not found: "
+#~ msgstr "nie znaleziono pgp w wersji 5: "
+
+#~ msgid ""
+#~ "Use `%%_signature pgp' instead of `%%_signature pgp5' in macro file.\n"
+#~ msgstr ""
+#~ "U¿yj `%%_signature pgp' zamiast `%%_signature pgp5' w pliku makra.\n"
+
+#~ msgid "Finding provides...\n"
+#~ msgstr "Wyszukiwanie udostêpnianych zasobów...\n"
+
+#~ msgid "Failed to find requires"
+#~ msgstr "Wyszukiwanie nie powiod³o siê"
+
+#~ msgid "Provides:"
+#~ msgstr "Udostêpniane zasoby:"
+
+#~ msgid "Prereqs:"
+#~ msgstr "Prerekwizyty:"
+
+#~ msgid "Requires:"
+#~ msgstr "Wymagane zasoby:"
+
+#~ msgid "dependencies: looking for %s\n"
+#~ msgstr "zale¿no¶ci: wyszukiwanie %s\n"
+
 #~ msgid "failed build prerequisites:\n"
 #~ msgstr "budowanie prerekwizytów nie powiod³o siê:\n"
 
index f93ba10..472c1ac 100644 (file)
 # Revised by Arnaldo Carvalho de Melo <acme@conectiva.com.br>, 1998.
 #
 msgid ""
-msgstr "POT-Creation-Date: 1999-05-11 12:17-0400\n"
+msgstr "POT-Creation-Date: 1999-09-29 19:30-0400\n"
 
-#: ../build.c:24 ../install.c:221 ../install.c:377
+#: build.c:23 lib/rpminstall.c:222 lib/rpminstall.c:382
 #, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr ""
 
-#: ../build.c:34
+#: build.c:33
 #, fuzzy
-msgid "failed build prerequisites:\n"
+msgid "failed build dependencies:\n"
 msgstr "lista dependências do pacote"
 
 # , c-format
-#: ../build.c:83 ../build.c:96
+#: build.c:61
+#, fuzzy, c-format
+msgid "Unable to open spec file: %s\n"
+msgstr "Não consegui abrir: %s\n"
+
+# , c-format
+#: build.c:117 build.c:130
 #, fuzzy, c-format
 msgid "Failed to open tar pipe: %s\n"
 msgstr "Não consegui abrir: %s\n"
 
 # , c-format
 #. Give up
-#: ../build.c:104
+#: build.c:138
 #, fuzzy, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "Não consegui ler o arquivo spec de %s\n"
 
 # , c-format
-#: ../build.c:129
+#: build.c:163
 #, fuzzy, c-format
 msgid "Failed to rename %s to %s: %s\n"
 msgstr "Não consegui ler o arquivo spec de %s\n"
 
-#: ../build.c:167
+#: build.c:201
 #, c-format
 msgid "File is not a regular file: %s\n"
 msgstr ""
 
-# , c-format
-#: ../build.c:172
-#, fuzzy, c-format
-msgid "Unable to open spec file: %s\n"
-msgstr "Não consegui abrir: %s\n"
-
-#: ../build.c:180
+#: build.c:207
 #, c-format
-msgid "File contains non-printable characters(%c): %s\n"
+msgid "File %s does not appear to be a specfile.\n"
 msgstr ""
 
 #. parse up the build operators
-#: ../build.c:233
+#: build.c:258
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr ""
 
-#: ../build.c:242
+#: build.c:267
 #, fuzzy, c-format
 msgid "Building for target %s\n"
 msgstr "instale pacote"
 
-#: ../build.c:286
+#: build.c:311
 msgid "buildroot already specified"
 msgstr ""
 
-#: ../build.c:292
+#: build.c:317
 msgid "--buildarch has been obsoleted.  Use the --target option instead.\n"
 msgstr ""
 
-#: ../build.c:296
+#: build.c:321
 msgid "--buildos has been obsoleted.  Use the --target option instead.\n"
 msgstr ""
 
 # , c-format
-#: ../build.c:317
+#: build.c:342
 #, fuzzy
 msgid "override build architecture"
 msgstr "%s não pode ser construido nesta arquitetura\n"
 
-#: ../build.c:319
+#: build.c:344
 #, fuzzy
 msgid "override build operating system"
 msgstr "não verifique o sistema operacional do pacote"
 
-#: ../build.c:321
+#: build.c:346
 #, fuzzy
 msgid "override build root"
 msgstr "use s como o root da construção"
 
-#: ../build.c:323 ../rpm.c:458
+#: build.c:348 rpm.c:457
 msgid "remove build tree when done"
 msgstr "remova a árvore de construção quando terminar"
 
-#: ../build.c:325
+#: build.c:350
 #, fuzzy
 msgid "do not execute any stages of the build"
 msgstr "não execute nenhum estágio"
 
-#: ../build.c:327
+#: build.c:352
 msgid "do not accept I18N msgstr's from specfile"
 msgstr ""
 
-#: ../build.c:329
+#: build.c:354
 #, fuzzy
 msgid "remove sources when done"
 msgstr "remova a árvore de construção quando terminar"
 
-#: ../build.c:331
+#: build.c:356
 #, fuzzy
 msgid "remove specfile when done"
 msgstr "remova a árvore de construção quando terminar"
 
-#: ../build.c:333 ../rpm.c:456
+#: build.c:358 rpm.c:455
 msgid "skip straight to specified stage (only for c,i)"
 msgstr "pule direto para o estágio especificado (somente para c,i)"
 
-#: ../build.c:335
+#: build.c:360
 msgid "override target platform"
 msgstr ""
 
-#: ../build.c:337
+#: build.c:362
 msgid "lookup I18N strings in specfile catalog"
 msgstr ""
 
-#: ../checksig.c:27 ../checksig.c:166
-#, c-format
-msgid "%s: Open failed\n"
-msgstr ""
-
-#: ../checksig.c:31 ../checksig.c:171
-#, c-format
-msgid "%s: readLead failed\n"
-msgstr ""
-
-#: ../checksig.c:35
-#, c-format
-msgid "%s: Can't sign v1.0 RPM\n"
-msgstr ""
-
-#: ../checksig.c:39
-#, c-format
-msgid "%s: Can't re-sign v2.0 RPM\n"
-msgstr ""
-
-#: ../checksig.c:43 ../checksig.c:181
-#, c-format
-msgid "%s: rpmReadSignature failed\n"
-msgstr ""
-
-#: ../checksig.c:56 ../checksig.c:195
-msgid "Couldn't read the header/archive"
-msgstr ""
-
-#: ../checksig.c:63
-msgid "Couldn't write header/archive to temp file"
-msgstr ""
-
-#: ../build/pack.c:330 ../checksig.c:91
-#, fuzzy, c-format
-msgid "Generating signature: %d\n"
-msgstr "gere assinatura PGP"
-
-#: ../checksig.c:114
-msgid "Couldn't read sigtarget"
-msgstr ""
-
-#: ../checksig.c:123
-msgid "Couldn't write package"
-msgstr ""
-
-#: ../checksig.c:176
-#, c-format
-msgid "%s: No signature available (v1.0 RPM)\n"
-msgstr ""
-
-#: ../checksig.c:186
-#, c-format
-msgid "%s: No signature available\n"
-msgstr ""
-
-# , c-format
-#: ../checksig.c:202
-#, fuzzy, c-format
-msgid "Unable to write %s"
-msgstr "Não consegui abrir: %s\n"
-
-#: ../checksig.c:328
-msgid "NOT OK"
-msgstr ""
-
-#: ../checksig.c:329 ../checksig.c:343
-msgid " (MISSING KEYS:"
-msgstr ""
-
-#: ../checksig.c:331 ../checksig.c:345
-msgid ") "
-msgstr ""
-
-#: ../checksig.c:332 ../checksig.c:346
-msgid " (UNTRUSTED KEYS:"
-msgstr ""
-
-#: ../checksig.c:334 ../checksig.c:348
-msgid ")"
-msgstr ""
-
-#: ../checksig.c:342
-msgid "OK"
-msgstr ""
-
-#: ../convertdb.c:38
+#: convertdb.c:39
 msgid "RPM database already exists"
 msgstr ""
 
-#: ../convertdb.c:43
+#: convertdb.c:44
 msgid "Old db is missing"
 msgstr ""
 
-#: ../convertdb.c:54
+#: convertdb.c:55
 msgid "failed to create RPM database /var/lib/rpm"
 msgstr ""
 
-#: ../convertdb.c:60
+#: convertdb.c:61
 msgid "Old db is corrupt"
 msgstr ""
 
-#: ../convertdb.c:69
+#: convertdb.c:70
 #, c-format
 msgid "oldrpmdbGetPackageInfo failed &olddb = %p olddb.packages = %p\n"
 msgstr ""
 
-#: ../convertdb.c:201
+#: convertdb.c:204
 msgid "rpmconvert: no arguments expected"
 msgstr ""
 
-#: ../convertdb.c:207
+#: convertdb.c:210
 msgid "rpmconvert 1.0 - converting database in /var/lib/rpm\n"
 msgstr ""
 
-#: ../ftp.c:642
-msgid "Success"
-msgstr ""
-
-#: ../ftp.c:645
-msgid "Bad server response"
-msgstr ""
-
-#: ../ftp.c:648
-msgid "Server IO error"
-msgstr ""
-
-#: ../ftp.c:651
-msgid "Server timeout"
-msgstr ""
-
-#: ../ftp.c:654
-msgid "Unable to lookup server host address"
-msgstr ""
-
-#: ../ftp.c:657
-msgid "Unable to lookup server host name"
-msgstr ""
-
-#: ../ftp.c:660
-msgid "Failed to connect to server"
-msgstr ""
-
-#: ../ftp.c:663
-msgid "Failed to establish data connection to server"
-msgstr ""
-
-#: ../ftp.c:666
-msgid "IO error to local file"
-msgstr ""
-
-#: ../ftp.c:669
-msgid "Error setting remote server to passive mode"
-msgstr ""
-
-#: ../ftp.c:672
-msgid "File not found on server"
-msgstr ""
-
-#: ../ftp.c:675
-msgid "Abort in progress"
-msgstr ""
-
-#: ../ftp.c:679
-msgid "Unknown or unexpected error"
-msgstr ""
-
-#: ../install.c:127
-#, fuzzy
-msgid "counting packages to install\n"
-msgstr "não foi passado pacote para instalação"
-
-#: ../install.c:131
-#, fuzzy, c-format
-msgid "found %d packages\n"
-msgstr "pesquise todos os pacotes"
-
-#: ../install.c:140
-msgid "looking for packages to download\n"
-msgstr ""
-
-# "Project-Id-Version: rpm-2.5.3\n"
-# "PO-Revision-Date: 1997-09-11 14:00 MET DST\n"
-# "Last-Translator: Arnaldo Carvalho de Melo <acme@conectiva.com.br>\n"
-# "Language-Team: Portuguese <pt@li.org>\n"
-# "MIME-Version: 1.0\n"
-# "Content-Type: text/plain; charset=ISO-8859-1\n"
-# "Content-Transfer-Encoding: 8-bit\n"
-# , c-format
-#: ../install.c:151
-#, fuzzy, c-format
-msgid "Retrieving %s\n"
-msgstr "RPM versão %s\n"
-
-#: ../install.c:160
-#, c-format
-msgid " ... as %s\n"
-msgstr ""
-
-#: ../install.c:164
-#, c-format
-msgid "skipping %s - transfer failed - %s\n"
-msgstr ""
-
-#: ../install.c:181
-#, c-format
-msgid "retrieved %d packages\n"
-msgstr ""
-
-# , c-format
-#: ../install.c:190 ../install.c:327
-#, fuzzy, c-format
-msgid "cannot open file %s\n"
-msgstr "Não consegui abrir: %s\n"
-
-#: ../install.c:202 ../lib/query.c:569
-#, c-format
-msgid "%s does not appear to be a RPM package\n"
-msgstr ""
-
-#: ../install.c:206 ../install.c:464
-#, fuzzy, c-format
-msgid "%s cannot be installed\n"
-msgstr "não foi passado pacote para instalação"
-
-#: ../install.c:242
-#, fuzzy, c-format
-msgid "package %s is not relocateable\n"
-msgstr "não foi passado pacote para instalação"
-
-#: ../install.c:254
-#, c-format
-msgid "error reading from file %s\n"
-msgstr ""
-
-#: ../install.c:257
-#, c-format
-msgid "file %s requires a newer version of RPM\n"
-msgstr ""
-
-#: ../install.c:272
-#, c-format
-msgid "found %d source and %d binary packages\n"
-msgstr ""
-
-#: ../install.c:282
-#, fuzzy
-msgid "failed dependencies:\n"
-msgstr "lista dependências do pacote"
-
-#: ../install.c:300
-#, fuzzy
-msgid "installing binary packages\n"
-msgstr "instale pacote"
-
-#: ../install.c:388 ../lib/query.c:717
-#, fuzzy, c-format
-msgid "package %s is not installed\n"
-msgstr "não foi passado pacote para instalação"
-
-#: ../install.c:392
-#, fuzzy, c-format
-msgid "searching for package %s\n"
-msgstr "instale pacote"
-
-#: ../install.c:401
-#, c-format
-msgid "\"%s\" specifies multiple packages\n"
-msgstr ""
-
-#: ../install.c:427
-#, fuzzy
-msgid "removing these packages would break dependencies:\n"
-msgstr "lista dependências do pacote"
-
-# , c-format
-#: ../install.c:454
-#, fuzzy, c-format
-msgid "cannot open %s\n"
-msgstr "Não consegui abrir: %s\n"
-
-#: ../install.c:459
-#, c-format
-msgid "Installing %s\n"
-msgstr ""
-
-#: ../install.c:503
-#, c-format
-msgid " is needed by %s-%s-%s\n"
-msgstr ""
-
-#: ../install.c:506
-#, c-format
-msgid " conflicts with %s-%s-%s\n"
-msgstr ""
-
-#: ../oldrpmdb.c:454
+#: oldrpmdb.c:454
 #, c-format
 msgid "pulling %s from database\n"
 msgstr ""
 
-#: ../oldrpmdb.c:461
+#: oldrpmdb.c:461
 #, fuzzy
 msgid "package not found in database"
 msgstr "não foi passado pacote para desinstalação"
 
-#: ../oldrpmdb.c:522
+#: oldrpmdb.c:522
 msgid "no copyright!\n"
 msgstr ""
 
-#: ../rpm.c:160
+#: rpm.c:159
 #, c-format
 msgid "rpm: %s\n"
 msgstr ""
@@ -446,149 +179,148 @@ msgstr ""
 # "Content-Type: text/plain; charset=ISO-8859-1\n"
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
-#: ../rpm.c:171
+#: rpm.c:170
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM versão %s\n"
 
-#: ../rpm.c:175
+#: rpm.c:174
 msgid "Copyright (C) 1998 - Red Hat Software"
 msgstr ""
 
-#: ../rpm.c:176
-msgid ""
-"This may be freely redistributed under the terms of the GNU GPL"
+#: rpm.c:175
+msgid "This may be freely redistributed under the terms of the GNU GPL"
 msgstr ""
 "Este Software pode ser livremente redistribuido sob os termos da Licensa "
 "Pública GNU (GPL)"
 
-#: ../rpm.c:185
+#: rpm.c:183
 msgid "usage: rpm {--help}"
 msgstr "uso: rpm {--help}"
 
-#: ../rpm.c:186
+#: rpm.c:184
 msgid "       rpm {--version}"
 msgstr ""
 
-#: ../rpm.c:187
+#: rpm.c:185
 msgid "       rpm {--initdb}   [--dbpath <dir>]"
 msgstr "       rpm {--initdb}   [--dbpath <diretório>]"
 
-#: ../rpm.c:188
+#: rpm.c:186
 msgid ""
 "       rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 
-#: ../rpm.c:189
+#: rpm.c:187
 msgid "                        [--replacepkgs] [--replacefiles] [--root <dir>]"
 msgstr ""
 "                        [--replacepkgs] [--replacefiles] [--root <diretório>]"
 
-#: ../rpm.c:190
+#: rpm.c:188
 msgid "                        [--excludedocs] [--includedocs] [--noscripts]"
 msgstr ""
 
-#: ../rpm.c:191
+#: rpm.c:189
 msgid ""
 "                        [--rcfile <file>] [--ignorearch] [--dbpath <dir>]"
 msgstr ""
 "                        [--rcfile <arquivo>] [--ignorearch] [--dbpath "
 "<diretório>]"
 
-#: ../rpm.c:192
+#: rpm.c:190
 #, fuzzy
 msgid ""
 "                        [--prefix <dir>] [--ignoreos] [--nodeps] [--allfiles]"
 msgstr "                        [--prefix <diretório>] [--ignoreos] [--nodeps]"
 
-#: ../rpm.c:193
+#: rpm.c:191
 #, fuzzy
 msgid ""
 "                        [--ftpproxy <host>] [--ftpport <port>] [--justdb]"
 msgstr "                        [--ftpproxy <host>] [--ftpport <porta>]"
 
-#: ../rpm.c:194 ../rpm.c:203 ../rpm.c:212
+#: rpm.c:192 rpm.c:201 rpm.c:210
 #, fuzzy
 msgid "                        [--httpproxy <host>] [--httpport <port>] "
 msgstr "                        [--ftpproxy <host>] [--ftpport <porta>]"
 
-#: ../rpm.c:195 ../rpm.c:205
+#: rpm.c:193 rpm.c:203
 #, fuzzy
 msgid "                        [--noorder] [--relocate oldpath=newpath]"
 msgstr "                        [--nomd5] [alvos]"
 
-#: ../rpm.c:196
+#: rpm.c:194
 #, fuzzy
 msgid ""
 "                        [--badreloc] [--notriggers] [--excludepath <path>]"
 msgstr ""
 "                        [--ignoreos] [--nodeps] arquivo.rpm ... arquivoN.rpm"
 
-#: ../rpm.c:197
+#: rpm.c:195
 #, fuzzy
 msgid "                        [--ignoresize] file1.rpm ... fileN.rpm"
 msgstr "                        arquivo.rpm ... arquivoN.rpm"
 
-#: ../rpm.c:198
+#: rpm.c:196
 msgid ""
 "       rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 
-#: ../rpm.c:199
+#: rpm.c:197
 msgid "                        [--oldpackage] [--root <dir>] [--noscripts]"
 msgstr ""
 "                        [--oldpackage] [--root <diretório>] [--noscripts]"
 
-#: ../rpm.c:200
+#: rpm.c:198
 msgid ""
 "                        [--excludedocs] [--includedocs] [--rcfile <file>]"
 msgstr ""
 "                        [--excludedocs] [--includedocs] [--rcfile <arquivo>]"
 
-#: ../rpm.c:201
+#: rpm.c:199
 msgid ""
 "                        [--ignorearch]  [--dbpath <dir>] [--prefix <dir>] "
 msgstr ""
 "                        [--ignorearch]  [--dbpath <dir>] [--prefix "
 "<diretório>]"
 
-#: ../rpm.c:202
+#: rpm.c:200
 msgid "                        [--ftpproxy <host>] [--ftpport <port>]"
 msgstr "                        [--ftpproxy <host>] [--ftpport <porta>]"
 
-#: ../rpm.c:204
+#: rpm.c:202
 #, fuzzy
 msgid "                        [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
 msgstr ""
 "                        [--dbpath <diretório>] [--nodeps] [--nofiles] "
 "[--noscripts]"
 
-#: ../rpm.c:206
+#: rpm.c:204
 #, fuzzy
 msgid ""
 "                        [--badreloc] [--excludepath <path>] [--ignoresize]"
 msgstr ""
 "                        [--provides] [--dump] [--dbpath <diretório>] [alvos]"
 
-#: ../rpm.c:207
+#: rpm.c:205
 #, fuzzy
 msgid "                        file1.rpm ... fileN.rpm"
 msgstr "                        arquivo.rpm ... arquivoN.rpm"
 
-#: ../rpm.c:208
+#: rpm.c:206
 msgid "       rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]"
 msgstr ""
 
-#: ../rpm.c:209
+#: rpm.c:207
 msgid "                        [--scripts] [--root <dir>] [--rcfile <file>]"
 msgstr ""
 "                        [--scripts] [--root <diretório>] [--rcfile <arquivo>]"
 
-#: ../rpm.c:210
+#: rpm.c:208
 msgid "                        [--whatprovides] [--whatrequires] [--requires]"
 msgstr ""
 
-#: ../rpm.c:211
+#: rpm.c:209
 #, fuzzy
 msgid ""
 "                        [--triggeredby] [--ftpuseport] [--ftpproxy <host>]"
@@ -596,7 +328,7 @@ msgstr ""
 "                        [--ftpuseport] [--ftpproxy <host>] [--ftpport "
 "<porta>]"
 
-#: ../rpm.c:213
+#: rpm.c:211
 #, fuzzy
 msgid ""
 "                        [--ftpport <port>] [--provides] [--triggers] [--dump]"
@@ -604,317 +336,322 @@ msgstr ""
 "                        [--dbpath <diretório>] [--nodeps] [--nofiles] "
 "[--noscripts]"
 
-#: ../rpm.c:214
+#: rpm.c:212
 #, fuzzy
 msgid "                        [--changelog] [--dbpath <dir>] [targets]"
 msgstr ""
 "                        [--provides] [--dump] [--dbpath <diretório>] [alvos]"
 
-#: ../rpm.c:215
+#: rpm.c:213
 msgid "       rpm {--verify -V -y} [-afpg] [--root <dir>] [--rcfile <file>]"
 msgstr ""
 "       rpm {--verify -V -y} [-afpg] [--root <diretório>] [--rcfile <arquivo>]"
 
-#: ../rpm.c:216
+#: rpm.c:214
 msgid ""
 "                        [--dbpath <dir>] [--nodeps] [--nofiles] [--noscripts]"
 msgstr ""
 "                        [--dbpath <diretório>] [--nodeps] [--nofiles] "
 "[--noscripts]"
 
-#: ../rpm.c:217
+#: rpm.c:215
 msgid "                        [--nomd5] [targets]"
 msgstr "                        [--nomd5] [alvos]"
 
-#: ../rpm.c:218
+#: rpm.c:216
 msgid "       rpm {--setperms} [-afpg] [target]"
 msgstr "       rpm {--setperms} [-afpg] [alvo]"
 
-#: ../rpm.c:219
+#: rpm.c:217
 msgid "       rpm {--setugids} [-afpg] [target]"
 msgstr "       rpm {--setugids} [-afpg] [alvo]"
 
-#: ../rpm.c:220
+#: rpm.c:218
+#, fuzzy
+msgid "       rpm {--freshen -F} file1.rpm ... fileN.rpm"
+msgstr "                        arquivo.rpm ... arquivoN.rpm"
+
+#: rpm.c:219
 #, fuzzy
 msgid "       rpm {--erase -e} [--root <dir>] [--noscripts] [--rcfile <file>]"
 msgstr ""
 "       rpm {--erase -e] [--root <diretório>] [--noscripts] [--rcfile "
 "<arquivo>]"
 
-#: ../rpm.c:221
+#: rpm.c:220
 msgid "                        [--dbpath <dir>] [--nodeps] [--allmatches]"
 msgstr ""
 "                        [--dbpath <diretório>] [--nodeps] [--allmatches]"
 
-#: ../rpm.c:222
+#: rpm.c:221
 #, fuzzy
 msgid ""
 "                        [--justdb] [--notriggers] rpackage1 ... packageN"
 msgstr "                           pacote1 ... pacoteN"
 
-#: ../rpm.c:223
+#: rpm.c:222
 msgid ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile  <file>]"
 msgstr ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile  "
 "<arquivo>]"
 
-#: ../rpm.c:224
+#: rpm.c:223
 #, fuzzy
 msgid "                        [--sign] [--nobuild] [--timecheck <s>] ]"
 msgstr ""
 "                        [--sign] [--test] [--timecheck <S>] arquivo-spec"
 
-#: ../rpm.c:225
+#: rpm.c:224
 #, fuzzy
 msgid "                        [--target=platform1[,platform2...]]"
 msgstr "                        [--nomd5] [alvos]"
 
-#: ../rpm.c:226
+#: rpm.c:225
 #, fuzzy
 msgid "                        [--rmsource] specfile"
 msgstr ""
 "                        [--sign] [--test] [--timecheck <S>] arquivo-spec"
 
-#: ../rpm.c:227
+#: rpm.c:226
 #, fuzzy
 msgid "       rpm {--rmsource} [--rcfile <file>] [-v] specfile"
 msgstr ""
 "       rpm {--recompile} [--rcfile <arquivo>] [-v] fonte1.rpm ... fonteN.rpm"
 
-#: ../rpm.c:228
+#: rpm.c:227
 msgid ""
 "       rpm {--rebuild} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 "       rpm {--rebuild} [--rcfile <arquivo>] [-v] fonte1.rpm ... fonteN.rpm"
 
-#: ../rpm.c:229
+#: rpm.c:228
 msgid ""
 "       rpm {--recompile} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 "       rpm {--recompile} [--rcfile <arquivo>] [-v] fonte1.rpm ... fonteN.rpm"
 
-#: ../rpm.c:230
+#: rpm.c:229
 msgid "       rpm {--resign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr "       rpm {--resign} [--rcfile <arquivo>] pacote1 pacote2 ... pacoteN"
 
-#: ../rpm.c:231
+#: rpm.c:230
 msgid "       rpm {--addsign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr ""
 "       rpm {--addsign} [--rcfile <arquivo>] pacote1 pacote2 ... pacoteN"
 
-#: ../rpm.c:232
+#: rpm.c:231
 #, fuzzy
 msgid ""
 "       rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile <file>]"
 msgstr "       rpm {--checksig -K} [--nopgp] [--nomd5] [--rcfile <arquivo>]"
 
-#: ../rpm.c:233
+#: rpm.c:232
 msgid "                           package1 ... packageN"
 msgstr "                           pacote1 ... pacoteN"
 
-#: ../rpm.c:234
+#: rpm.c:233
 msgid "       rpm {--rebuilddb} [--rcfile <file>] [--dbpath <dir>]"
 msgstr "       rpm {--rebuilddb} [--rcfile <arquivo>] [--dbpath <diretório>]"
 
-#: ../rpm.c:235
+#: rpm.c:234
 msgid "       rpm {--querytags}"
 msgstr ""
 
-#: ../rpm.c:269
+#: rpm.c:268
 msgid "usage:"
 msgstr "uso:"
 
-#: ../rpm.c:271
+#: rpm.c:270
 msgid "print this message"
 msgstr "mostra esta mensagem"
 
-#: ../rpm.c:273
+#: rpm.c:272
 msgid "print the version of rpm being used"
 msgstr "mostra a versão do programa rpm sendo usado"
 
-#: ../rpm.c:274
+#: rpm.c:273
 msgid "   all modes support the following arguments:"
 msgstr "   todos os modos suportam os seguintes argumentos:"
 
-#: ../rpm.c:275
+#: rpm.c:274
 msgid "      --rcfile <file>     "
 msgstr ""
 
-#: ../rpm.c:276
+#: rpm.c:275
 msgid "use <file> instead of /etc/rpmrc and $HOME/.rpmrc"
 msgstr "use <arquivo> no lugar de /etc/rpmrc e $HOME/.rpmrc"
 
-#: ../rpm.c:278
+#: rpm.c:277
 msgid "be a little more verbose"
 msgstr "seja um pouco mais detalhado"
 
-#: ../rpm.c:280
+#: rpm.c:279
 msgid "be incredibly verbose (for debugging)"
 msgstr "seja _muito_ mais detalhado (para depuração)"
 
-#: ../rpm.c:282
+#: rpm.c:281
 msgid "query mode"
 msgstr "modo pesquisa"
 
-#: ../rpm.c:283 ../rpm.c:345 ../rpm.c:409 ../rpm.c:437
+#: rpm.c:282 rpm.c:344 rpm.c:408 rpm.c:436
 msgid "      --root <dir>        "
 msgstr ""
 
-#: ../rpm.c:284 ../rpm.c:346 ../rpm.c:410 ../rpm.c:438 ../rpm.c:500
+#: rpm.c:283 rpm.c:345 rpm.c:409 rpm.c:437 rpm.c:499
 msgid "use <dir> as the top level directory"
 msgstr "use <diretório> como diretório raiz"
 
-#: ../rpm.c:285 ../rpm.c:343 ../rpm.c:373 ../rpm.c:425 ../rpm.c:497
+#: rpm.c:284 rpm.c:342 rpm.c:372 rpm.c:424 rpm.c:496
 #, fuzzy
 msgid "      --dbpath <dir>      "
 msgstr "    -b<estágio> <spec>    "
 
-#: ../rpm.c:286 ../rpm.c:344 ../rpm.c:374 ../rpm.c:426 ../rpm.c:498
+#: rpm.c:285 rpm.c:343 rpm.c:373 rpm.c:425 rpm.c:497
 msgid "use <dir> as the directory for the database"
 msgstr "use <diretório> como diretório para o banco de dados"
 
-#: ../rpm.c:287
+#: rpm.c:286
 msgid "      --queryformat <qfmt>"
 msgstr ""
 
-#: ../rpm.c:288
+#: rpm.c:287
 #, fuzzy
 msgid "use <qfmt> as the header format (implies -i)"
 msgstr "use s como formato do cabeçalho (implica -i)"
 
-#: ../rpm.c:289
+#: rpm.c:288
 msgid ""
 "   install, upgrade and query (with -p) allow ftp URL's to be used in place"
 msgstr ""
 "  Instale, atualize e pesquise (com -p) permitem que sejam usadas URLs ftp "
 "no lugar"
 
-#: ../rpm.c:290
+#: rpm.c:289
 #, fuzzy
 msgid "   of file names as well as the following options:"
 msgstr "   de nomes de arquivos bem como as seguintes opções:\n"
 
-#: ../rpm.c:291
+#: rpm.c:290
 msgid "      --ftpproxy <host>   "
 msgstr ""
 
-#: ../rpm.c:292
+#: rpm.c:291
 msgid "hostname or IP of ftp proxy"
 msgstr "nome do host ou IP do proxy ftp"
 
-#: ../rpm.c:293
+#: rpm.c:292
 msgid "      --ftpport <port>    "
 msgstr ""
 
-#: ../rpm.c:294
+#: rpm.c:293
 msgid "port number of ftp server (or proxy)"
 msgstr "número da porta do servidor ftp (ou proxy)"
 
-#: ../rpm.c:295
+#: rpm.c:294
 #, fuzzy
 msgid "      --httpproxy <host>   "
 msgstr "    -b<estágio> <spec>    "
 
-#: ../rpm.c:296
+#: rpm.c:295
 #, fuzzy
 msgid "hostname or IP of http proxy"
 msgstr "nome do host ou IP do proxy ftp"
 
-#: ../rpm.c:297
+#: rpm.c:296
 #, fuzzy
 msgid "      --httpport <port>    "
 msgstr "    -b<estágio> <spec>    "
 
-#: ../rpm.c:298
+#: rpm.c:297
 #, fuzzy
 msgid "port number of http server (or proxy)"
 msgstr "número da porta do servidor ftp (ou proxy)"
 
-#: ../rpm.c:299
+#: rpm.c:298
 msgid "      Package specification options:"
 msgstr "      Opcões para especificação de pacotes:"
 
-#: ../rpm.c:301
+#: rpm.c:300
 msgid "query all packages"
 msgstr "pesquise todos os pacotes"
 
-#: ../rpm.c:302
+#: rpm.c:301
 msgid "        -f <file>+        "
 msgstr ""
 
-#: ../rpm.c:303
+#: rpm.c:302
 msgid "query package owning <file>"
 msgstr "pesquise o pacote ao qual <arquivo> pertence"
 
-#: ../rpm.c:304
+#: rpm.c:303
 msgid "        -p <packagefile>+ "
 msgstr ""
 
-#: ../rpm.c:305
+#: rpm.c:304
 msgid "query (uninstalled) package <packagefile>"
 msgstr "pesquise pacote (não instalado) <arquivo-pacote>"
 
-#: ../rpm.c:306
+#: rpm.c:305
 #, fuzzy
 msgid "        --triggeredby <pkg>"
 msgstr "pesquise o pacote ao qual <arquivo> pertence"
 
-#: ../rpm.c:307
+#: rpm.c:306
 #, fuzzy
 msgid "query packages triggered by <pkg>"
 msgstr "pesquise o pacote ao qual <arquivo> pertence"
 
-#: ../rpm.c:308
+#: rpm.c:307
 #, fuzzy
 msgid "        --whatprovides <cap>"
 msgstr "pesquise o pacote ao qual <arquivo> pertence"
 
-#: ../rpm.c:309
+#: rpm.c:308
 #, fuzzy
 msgid "query packages which provide <cap> capability"
 msgstr "pesquise pacotes que fornecem a capacidade <i>"
 
-#: ../rpm.c:310
+#: rpm.c:309
 #, fuzzy
 msgid "        --whatrequires <cap>"
 msgstr "pesquise o pacote ao qual <arquivo> pertence"
 
-#: ../rpm.c:311
+#: rpm.c:310
 #, fuzzy
 msgid "query packages which require <cap> capability"
 msgstr "pesquise pacotes que requerem capacidade <i>"
 
-#: ../rpm.c:312
+#: rpm.c:311
 msgid "      Information selection options:"
 msgstr "      Opcões de selecão de informação"
 
-#: ../rpm.c:314
+#: rpm.c:313
 msgid "display package information"
 msgstr "mostre informação do pacote"
 
-#: ../rpm.c:316
+#: rpm.c:315
 #, fuzzy
 msgid "display the package's change log"
 msgstr "mostre a lista de arquivos do pacote"
 
-#: ../rpm.c:318
+#: rpm.c:317
 msgid "display package file list"
 msgstr "mostre a lista de arquivos do pacote"
 
-#: ../rpm.c:320
+#: rpm.c:319
 msgid "show file states (implies -l)"
 msgstr "mostre estados dos arquivos (implica -l)"
 
-#: ../rpm.c:322
+#: rpm.c:321
 msgid "list only documentation files (implies -l)"
 msgstr "liste somente os arquivos de documentação (implica -l)"
 
-#: ../rpm.c:324
+#: rpm.c:323
 msgid "list only configuration files (implies -l)"
 msgstr "liste somente os arquivos de configuração (implica -l)"
 
-#: ../rpm.c:326
+#: rpm.c:325
 msgid ""
 "show all verifiable information for each file (must be used with -l, -c, or "
 "-d)"
@@ -922,37 +659,37 @@ msgstr ""
 "mostre todas as informações verificáveis para cada arquivo (deve ser usado "
 "com -l, -c ou -d)"
 
-#: ../rpm.c:328
+#: rpm.c:327
 #, fuzzy
 msgid "list capabilities package provides"
 msgstr "lista as capacidades que o pacote fornece"
 
-#: ../rpm.c:329
+#: rpm.c:328
 msgid "        --requires"
 msgstr ""
 
-#: ../rpm.c:331
+#: rpm.c:330
 msgid "list package dependencies"
 msgstr "lista dependências do pacote"
 
-#: ../rpm.c:333
+#: rpm.c:332
 msgid "print the various [un]install scripts"
 msgstr "mostra as várias scripts de [des]instalação"
 
-#: ../rpm.c:335
+#: rpm.c:334
 msgid "show the trigger scripts contained in the package"
 msgstr ""
 
-#: ../rpm.c:339
+#: rpm.c:338
 #, fuzzy
 msgid "    --pipe <cmd>          "
 msgstr "    -b<estágio> <spec>    "
 
-#: ../rpm.c:340
+#: rpm.c:339
 msgid "send stdout to <cmd>"
 msgstr "envia a saida padrão para <cmd>"
 
-#: ../rpm.c:342
+#: rpm.c:341
 msgid ""
 "verify a package installation using the same same package specification "
 "options as -q"
@@ -960,19 +697,19 @@ msgstr ""
 "verifique uma instalação de pacote usando as mesmas opções de especificação "
 "de pacote do -q"
 
-#: ../rpm.c:348 ../rpm.c:396 ../rpm.c:430
+#: rpm.c:347 rpm.c:395 rpm.c:429
 msgid "do not verify package dependencies"
 msgstr "não verifique as dependências do pacote"
 
-#: ../rpm.c:350
+#: rpm.c:349
 msgid "do not verify file md5 checksums"
 msgstr "não verifique os checksums md5 do arquivo"
 
-#: ../rpm.c:352
+#: rpm.c:351
 msgid "do not verify file attributes"
 msgstr "não verifique os atributos dos arquivos"
 
-#: ../rpm.c:355
+#: rpm.c:354
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
@@ -980,7 +717,7 @@ msgstr ""
 "atribua as permissões dos arquivos para aquelas no banco de dados de pacotes "
 "usando as mesmas opções de especificação de pacote do -q"
 
-#: ../rpm.c:358
+#: rpm.c:357
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
@@ -988,130 +725,130 @@ msgstr ""
 "atribua dono e grupo dos arquivos para aquelas no banco de dados de pacotes "
 "usando as mesmas opções de especificação de pacote do -q"
 
-#: ../rpm.c:362
+#: rpm.c:361
 #, fuzzy
 msgid "    --install <packagefile>"
 msgstr "instale pacote"
 
-#: ../rpm.c:363
+#: rpm.c:362
 #, fuzzy
 msgid "    -i <packagefile>      "
 msgstr "    -b<estágio> <spec>    "
 
-#: ../rpm.c:364
+#: rpm.c:363
 msgid "install package"
 msgstr "instale pacote"
 
-#: ../rpm.c:365
+#: rpm.c:364
 #, fuzzy
 msgid "      --excludepath <path>"
 msgstr "                        [--nomd5] [alvos]"
 
-#: ../rpm.c:366
+#: rpm.c:365
 msgid "skip files in path <path>"
 msgstr ""
 
-#: ../rpm.c:367
+#: rpm.c:366
 #, fuzzy
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr "                        [--nomd5] [alvos]"
 
-#: ../rpm.c:368
+#: rpm.c:367
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr ""
 
-#: ../rpm.c:370
+#: rpm.c:369
 msgid "relocate files even though the package doesn't allow it"
 msgstr ""
 
-#: ../rpm.c:371
+#: rpm.c:370
 msgid "      --prefix <dir>      "
 msgstr ""
 
-#: ../rpm.c:372
+#: rpm.c:371
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "realoque o pacote para <diretório>, se realocável"
 
-#: ../rpm.c:376
+#: rpm.c:375
 msgid "do not install documentation"
 msgstr "não instale documentação"
 
-#: ../rpm.c:378
+#: rpm.c:377
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "aliás para --replacepkgs --replacefiles"
 
-#: ../rpm.c:381
+#: rpm.c:380
 msgid "print hash marks as package installs (good with -v)"
 msgstr "mostre caracteres # a medida que o pacote instala (bom com -v)"
 
-#: ../rpm.c:383
+#: rpm.c:382
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: ../rpm.c:386
+#: rpm.c:385
 #, fuzzy
 msgid "don't verify package architecture"
 msgstr "não verifique a arquitetura do pacote"
 
-#: ../rpm.c:388
+#: rpm.c:387
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: ../rpm.c:390
+#: rpm.c:389
 msgid "don't verify package operating system"
 msgstr "não verifique o sistema operacional do pacote"
 
-#: ../rpm.c:392
+#: rpm.c:391
 msgid "install documentation"
 msgstr "instale documentação"
 
-#: ../rpm.c:394 ../rpm.c:428
+#: rpm.c:393 rpm.c:427
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: ../rpm.c:398 ../rpm.c:432
+#: rpm.c:397 rpm.c:431
 #, fuzzy
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "não verifique as dependências do pacote"
 
-#: ../rpm.c:400
+#: rpm.c:399
 msgid "don't execute any installation scripts"
 msgstr "não execute nenhuma script de instalação"
 
-#: ../rpm.c:402 ../rpm.c:436
+#: rpm.c:401 rpm.c:435
 msgid "don't execute any scripts triggered by this package"
 msgstr ""
 
-#: ../rpm.c:404
+#: rpm.c:403
 msgid "print percentages as package installs"
 msgstr "imprima porcentagens a medida que o pacote vai sendo instalado"
 
-#: ../rpm.c:406
+#: rpm.c:405
 msgid "install even if the package replaces installed files"
 msgstr "instale mesmo que o pacote substitua arquivos já instalados"
 
-#: ../rpm.c:408
+#: rpm.c:407
 msgid "reinstall if the package is already present"
 msgstr "reinstale se o pacote já estiver presente"
 
-#: ../rpm.c:412
+#: rpm.c:411
 msgid "don't install, but tell if it would work or not"
 msgstr "não instale, mas diga se a instalação funcionará ou não"
 
-#: ../rpm.c:414
+#: rpm.c:413
 msgid "    --upgrade <packagefile>"
 msgstr ""
 
-#: ../rpm.c:415
+#: rpm.c:414
 #, fuzzy
 msgid "    -U <packagefile>      "
 msgstr "    -b<estágio> <spec>    "
 
-#: ../rpm.c:416
+#: rpm.c:415
 msgid "upgrade package (same options as --install, plus)"
 msgstr "atualize pacote (mesmas opcões em --install, mais"
 
-#: ../rpm.c:418
+#: rpm.c:417
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1119,15 +856,15 @@ msgstr ""
 "atualize para uma versão mais velha do pacote (--force em atualizações não "
 "faz isto automaticamente)"
 
-#: ../rpm.c:420
+#: rpm.c:419
 msgid "    --erase <package>"
 msgstr ""
 
-#: ../rpm.c:422
+#: rpm.c:421
 msgid "erase (uninstall) package"
 msgstr "apague (desinstale) pacote"
 
-#: ../rpm.c:424
+#: rpm.c:423
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1135,96 +872,96 @@ msgstr ""
 "remova todos os pacotes iguais a <pacote> (normalmente um erro é gerado se "
 "<pacote> especificou múltiplos pacotes)"
 
-#: ../rpm.c:434
+#: rpm.c:433
 msgid "do not execute any package specific scripts"
 msgstr "não execute nenhuma script específica do pacote"
 
-#: ../rpm.c:440
+#: rpm.c:439
 msgid "    -b<stage> <spec>      "
 msgstr "    -b<estágio> <spec>    "
 
-#: ../rpm.c:441
+#: rpm.c:440
 #, fuzzy
 msgid "    -t<stage> <tarball>   "
 msgstr "    -b<estágio> <spec>    "
 
-#: ../rpm.c:442
+#: rpm.c:441
 msgid "build package, where <stage> is one of:"
 msgstr "Constroi pacote, onde <estágio> é um dos seguintes:"
 
-#: ../rpm.c:444
+#: rpm.c:443
 msgid "prep (unpack sources and apply patches)"
 msgstr "prep (descompacte fontes e aplique patches)"
 
 # , c-format
-#: ../rpm.c:446
+#: rpm.c:445
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr "cheque lista (faça algumas checagens em %files)"
 
-#: ../rpm.c:448
+#: rpm.c:447
 msgid "compile (prep and compile)"
 msgstr "compile (prep e compile)"
 
-#: ../rpm.c:450
+#: rpm.c:449
 msgid "install (prep, compile, install)"
 msgstr "instale (prep, compile, instale)"
 
-#: ../rpm.c:452
+#: rpm.c:451
 msgid "binary package (prep, compile, install, package)"
 msgstr "pacote binário (prep, compile, instale, pacote)"
 
-#: ../rpm.c:454
+#: rpm.c:453
 msgid "bin/src package (prep, compile, install, package)"
 msgstr "pacote bin/src (prep, compile, instale, pacote)"
 
-#: ../rpm.c:460
+#: rpm.c:459
 #, fuzzy
 msgid "remove sources and spec file when done"
 msgstr "remova a árvore de construção quando terminar"
 
-#: ../rpm.c:462
+#: rpm.c:461
 #, fuzzy
 msgid "generate PGP/GPG signature"
 msgstr "gere assinatura PGP"
 
-#: ../rpm.c:463
+#: rpm.c:462
 #, fuzzy
 msgid "      --buildroot <dir>   "
 msgstr "    -b<estágio> <spec>    "
 
-#: ../rpm.c:464
+#: rpm.c:463
 #, fuzzy
 msgid "use <dir> as the build root"
 msgstr "use s como o root da construção"
 
-#: ../rpm.c:465
+#: rpm.c:464
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: ../rpm.c:466
+#: rpm.c:465
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: ../rpm.c:468
+#: rpm.c:467
 msgid "do not execute any stages"
 msgstr "não execute nenhum estágio"
 
-#: ../rpm.c:469
+#: rpm.c:468
 #, fuzzy
 msgid "      --timecheck <secs>  "
 msgstr "    -b<estágio> <spec>    "
 
-#: ../rpm.c:470
+#: rpm.c:469
 #, fuzzy
 msgid "set the time check to <secs> seconds (0 disables)"
 msgstr "atribua S segundos ao tempo de checagem (0 o desabilita)"
 
-#: ../rpm.c:472
+#: rpm.c:471
 msgid "    --rebuild <src_pkg>   "
 msgstr ""
 
-#: ../rpm.c:473
+#: rpm.c:472
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -1232,243 +969,247 @@ msgstr ""
 "instale pacote fonte, construa pacote binário e remova o arquivo spec, "
 "fontes, patches e ícones."
 
-#: ../rpm.c:474
+#: rpm.c:473
 #, fuzzy
 msgid "    --rmsource <spec>     "
 msgstr "    -b<estágio> <spec>    "
 
-#: ../rpm.c:475
+#: rpm.c:474
 msgid "remove sources and spec file"
 msgstr ""
 
-#: ../rpm.c:476
+#: rpm.c:475
 msgid "    --recompile <src_pkg> "
 msgstr ""
 
-#: ../rpm.c:477
+#: rpm.c:476
 msgid "like --rebuild, but don't build any package"
 msgstr "como --rebuild, mas não construa nenhum pacote"
 
-#: ../rpm.c:478
+#: rpm.c:477
 #, fuzzy
 msgid "    --resign <pkg>+       "
 msgstr "    -b<estágio> <spec>    "
 
-#: ../rpm.c:479
+#: rpm.c:478
 msgid "sign a package (discard current signature)"
 msgstr "assine um pacote (descarte a assinatura corrente)"
 
-#: ../rpm.c:480
+#: rpm.c:479
 #, fuzzy
 msgid "    --addsign <pkg>+      "
 msgstr "    -b<estágio> <spec>    "
 
-#: ../rpm.c:481
+#: rpm.c:480
 msgid "add a signature to a package"
 msgstr "adicione uma assinatura a um pacote"
 
-#: ../rpm.c:483
+#: rpm.c:482
 #, fuzzy
 msgid "    --checksig <pkg>+     "
 msgstr "    -b<estágio> <spec>    "
 
-#: ../rpm.c:484
+#: rpm.c:483
 msgid "verify package signature"
 msgstr "verifique a assinatura do pacote"
 
-#: ../rpm.c:486
+#: rpm.c:485
 msgid "skip any PGP signatures"
 msgstr "desconsidere quaisquer assinaturas PGP"
 
-#: ../rpm.c:488
+#: rpm.c:487
 #, fuzzy
 msgid "skip any GPG signatures"
 msgstr "desconsidere quaisquer assinaturas PGP"
 
-#: ../rpm.c:490
+#: rpm.c:489
 msgid "skip any MD5 signatures"
 msgstr "desconsidere quaisquer assinaturas MD5"
 
-#: ../rpm.c:492
+#: rpm.c:491
 msgid "list the tags that can be used in a query format"
 msgstr "liste as etiquetas que podem ser usadas em um formato de pesquisa"
 
-#: ../rpm.c:494
+#: rpm.c:493
 msgid "make sure a valid database exists"
 msgstr "certifique que um banco de dados válido existe"
 
-#: ../rpm.c:496
+#: rpm.c:495
 msgid "rebuild database from existing database"
 msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
 
-#: ../rpm.c:631 ../rpm.c:637 ../rpm.c:644 ../rpm.c:650 ../rpm.c:659
-#: ../rpm.c:666 ../rpm.c:713 ../rpm.c:719 ../rpm.c:779 ../rpm.c:787
-#: ../rpm.c:794 ../rpm.c:803 ../rpm.c:810 ../rpm.c:818 ../rpm.c:854
-#: ../rpm.c:909 ../rpm.c:916
+#: rpm.c:639 rpm.c:645 rpm.c:652 rpm.c:658 rpm.c:667 rpm.c:674 rpm.c:721
+#: rpm.c:727 rpm.c:761 rpm.c:767 rpm.c:773 rpm.c:781 rpm.c:816 rpm.c:871
+#: rpm.c:878
 msgid "only one major mode may be specified"
 msgstr "somente um modo principal pode ser especificado"
 
-#: ../rpm.c:652
+#: rpm.c:660
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr "-u e --uninstall foram descontinuados e não funcionam mais.\n"
 
-#: ../rpm.c:654
+#: rpm.c:662
 msgid "Use -e or --erase instead.\n"
 msgstr "Use -e ou --erase no lugar.\n"
 
-#: ../rpm.c:670
+#: rpm.c:678
 msgid "--build (-b) requires one of a,b,i,c,p,l as its sole argument"
 msgstr "--build (-b) requer um único argumento do tipo a,b,i,c,p,l"
 
-#: ../rpm.c:674
+#: rpm.c:682
 msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
 msgstr "--tarbuild (-t) requer um único argumento do tipo a,b,i,c,p,l"
 
-#: ../rpm.c:726 ../rpm.c:732 ../rpm.c:739 ../rpm.c:746 ../rpm.c:755
-#: ../rpm.c:763 ../rpm.c:771 ../rpm.c:923
+#: rpm.c:734 rpm.c:740 rpm.c:747 rpm.c:754 rpm.c:885
 msgid "one type of query/verify may be performed at a time"
 msgstr "um tipo de pesquisa/verificação pode ser feita por vez"
 
-#: ../rpm.c:826
+#: rpm.c:789
 msgid "arguments to --dbpath must begin with a /"
 msgstr "argumentos para o --dbpath devem começar com uma /"
 
-#: ../rpm.c:860
+#: rpm.c:822
 #, fuzzy
 msgid "relocations must begin with a /"
 msgstr "argumentos para o --dbpath devem começar com uma /"
 
-#: ../rpm.c:862
+#: rpm.c:824
 msgid "relocations must contain a ="
 msgstr ""
 
-#: ../rpm.c:865
+#: rpm.c:827
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: ../rpm.c:874
+#: rpm.c:836
 #, fuzzy
 msgid "exclude paths must begin with a /"
 msgstr "argumentos para o --dbpath devem começar com uma /"
 
-#: ../rpm.c:883
+#: rpm.c:845
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: ../rpm.c:936
+#: rpm.c:898
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath passado para uma operação que não usa um banco de dados"
 
-#: ../rpm.c:941
+#: rpm.c:903
 msgid "--timecheck may only be used during package builds"
 msgstr "--timecheck somente pode ser usado durante a construção de pacotes"
 
-#: ../rpm.c:944 ../rpm.c:947
-msgid "unexpected query specifiers"
-msgstr "especificadores de pesquisa não esperados"
+#: rpm.c:906
+#, fuzzy
+msgid "unexpected query flags"
+msgstr "fonte de pesquisa não esperado"
+
+#: rpm.c:909
+#, fuzzy
+msgid "unexpected query format"
+msgstr "fonte de pesquisa não esperado"
 
-#: ../rpm.c:951
+#: rpm.c:913
 msgid "unexpected query source"
 msgstr "fonte de pesquisa não esperado"
 
-#: ../rpm.c:957
+#: rpm.c:919
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "somente instalação e atualização podem ser forçadas"
 
-#: ../rpm.c:960
+#: rpm.c:922
 #, fuzzy
 msgid "files may only be relocated during package installation"
 msgstr "--percent somente pode ser especificado durante instalações de pacotes"
 
-#: ../rpm.c:963
+#: rpm.c:925
 #, fuzzy
 msgid "only one of --prefix or --relocate may be used"
 msgstr "somente um entre --excludedocs e --includedocs pode ser especificado"
 
-#: ../rpm.c:966
+#: rpm.c:928
 #, fuzzy
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 "--prefix somente pode ser usada quando se está instalando novos pacotes"
 
-#: ../rpm.c:969
+#: rpm.c:931
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 "--prefix somente pode ser usada quando se está instalando novos pacotes"
 
-#: ../rpm.c:972
+#: rpm.c:934
 msgid "arguments to --prefix must begin with a /"
 msgstr "argumentos para --prefix devem começar com uma /"
 
-#: ../rpm.c:975
+#: rpm.c:937
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 "--hash (-h) somente podem ser especificado durante instalações de pacotes"
 
-#: ../rpm.c:979
+#: rpm.c:941
 msgid "--percent may only be specified during package installation"
 msgstr "--percent somente pode ser especificado durante instalações de pacotes"
 
-#: ../rpm.c:983
+#: rpm.c:945
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--percent somente pode ser especificado durante instalações de pacotes"
 
-#: ../rpm.c:987
+#: rpm.c:949
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 "--replacepkgs somente pode ser especificado durante instalações de pacotes"
 
-#: ../rpm.c:991
+#: rpm.c:953
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 "--excludedocs somente pode ser especificado durante instalações de pacotes"
 
-#: ../rpm.c:995
+#: rpm.c:957
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 "--includedocs somente pode ser especificado durante instalações de pacotes"
 
-#: ../rpm.c:999
+#: rpm.c:961
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "somente um entre --excludedocs e --includedocs pode ser especificado"
 
-#: ../rpm.c:1003
+#: rpm.c:965
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 "--ignorearch somente pode ser especificado durante instalações de pacotes"
 
-#: ../rpm.c:1007
+#: rpm.c:969
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 "--ignoreos somente pode ser especificado durante instalações de pacotes"
 
-#: ../rpm.c:1011
+#: rpm.c:973
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 "--ignoreos somente pode ser especificado durante instalações de pacotes"
 
-#: ../rpm.c:1015
+#: rpm.c:977
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 "--allmatches somente pode ser especificado durante desinstalações de pacotes"
 
-#: ../rpm.c:1019
+#: rpm.c:981
 #, fuzzy
 msgid "--allfiles may only be specified during package installation"
 msgstr "--percent somente pode ser especificado durante instalações de pacotes"
 
-#: ../rpm.c:1023
+#: rpm.c:985
 #, fuzzy
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 "--test somente pode ser especificado durante [des]instalações e construções "
 "de pacotes"
 
-#: ../rpm.c:1028
+#: rpm.c:990
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -1476,7 +1217,7 @@ msgstr ""
 "--noscripts somente pode ser especificado durante [des]instalações e "
 "verificações de pacotes"
 
-#: ../rpm.c:1032
+#: rpm.c:994
 #, fuzzy
 msgid ""
 "--notriggers may only be specified during package installation, erasure, and "
@@ -1485,7 +1226,7 @@ msgstr ""
 "--nodeps somente pode ser especificado durante [des]instalações e "
 "verificações de pacotes"
 
-#: ../rpm.c:1038
+#: rpm.c:1000
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, installation, "
@@ -1494,12 +1235,7 @@ msgstr ""
 "--nodeps somente pode ser especificado durante [des]instalações e "
 "verificações de pacotes"
 
-#: ../rpm.c:1043
-msgid "--nofiles may only be specified during package verification"
-msgstr ""
-"--nofiles somente pode ser especificado durante a verificação de pacotes"
-
-#: ../rpm.c:1049
+#: rpm.c:1005
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
@@ -1507,7 +1243,7 @@ msgstr ""
 "--test somente pode ser especificado durante [des]instalações e construções "
 "de pacotes"
 
-#: ../rpm.c:1054
+#: rpm.c:1010
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -1515,41 +1251,22 @@ msgstr ""
 "--root (-r) somente pode ser especificado durante [des]instalações, "
 "pesquisas e reconstrução de bancos de dados"
 
-#: ../rpm.c:1059
+#: rpm.c:1015
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "argumentos para --root (-r) devem começar com uma /"
 
-#: ../rpm.c:1063
-#, fuzzy
-msgid "--clean may only be used with -b and -t"
-msgstr "--clean somente pode ser usado durante a construção de pacotes"
-
-#: ../rpm.c:1066
-#, fuzzy
-msgid "--rmsource may only be used with -b and -t"
-msgstr "--short-circuit somente pode ser usado com -bc, -bi, -tc ou -ti"
-
-#: ../rpm.c:1069
-msgid "--short-circuit may only be used during package building"
-msgstr "--short-circuit somente pode ser usado durante a construção de pacotes"
-
-#: ../rpm.c:1073
-#, fuzzy
-msgid "--short-circuit may only be used with -bc, -bi, -bs, -tc -ti, or -ts"
-msgstr "--short-circuit somente pode ser usado com -bc, -bi, -tc ou -ti"
-
-#: ../rpm.c:1079
+#: rpm.c:1018
 msgid "--oldpackage may only be used during upgrades"
 msgstr "--oldpackage somente pode ser usado durante a atualização de pacotes"
 
-#: ../rpm.c:1084
+#: rpm.c:1023
 msgid ""
 "ftp options can only be used during package queries, installs, and upgrades"
 msgstr ""
 "opções ftp somente podem ser usadas durante pesquisas, instalações e "
 "atualizações de pacotes"
 
-#: ../rpm.c:1090
+#: rpm.c:1029
 #, fuzzy
 msgid ""
 "http options can only be used during package queries, installs, and upgrades"
@@ -1557,16 +1274,16 @@ msgstr ""
 "opções ftp somente podem ser usadas durante pesquisas, instalações e "
 "atualizações de pacotes"
 
-#: ../rpm.c:1094
+#: rpm.c:1033
 msgid "--nopgp may only be used during signature checking"
 msgstr "--nopgp somente pode ser usado durante checagem de assinaturas"
 
-#: ../rpm.c:1097
+#: rpm.c:1036
 #, fuzzy
 msgid "--nogpg may only be used during signature checking"
 msgstr "--nopgp somente pode ser usado durante checagem de assinaturas"
 
-#: ../rpm.c:1100
+#: rpm.c:1039
 #, fuzzy
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
@@ -1574,148 +1291,107 @@ msgstr ""
 "--nopgp somente pode ser usado durante checagem de assinaturas e verificação "
 "de pacotes"
 
-#: ../rpm.c:1126
+#: rpm.c:1063
+msgid "no files to sign\n"
+msgstr ""
+
+#: rpm.c:1068
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: ../rpm.c:1143
+#: rpm.c:1083
 #, fuzzy
 msgid "pgp not found: "
 msgstr "não foi passado pacote para desinstalação"
 
-#: ../rpm.c:1146
-msgid "Use `%%_signature pgp5' instead of `%%_signature pgp' in macro file.\n"
-msgstr ""
-
-#: ../rpm.c:1153
-#, fuzzy
-msgid "pgp version 5 not found: "
-msgstr "não foi passado pacote para desinstalação"
-
-#: ../rpm.c:1156
-msgid "Use `%%_signature pgp' instead of `%%_signature pgp5' in macro file.\n"
-msgstr ""
-
-#: ../rpm.c:1162
+#: rpm.c:1087
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: ../rpm.c:1163
+#: rpm.c:1089
 msgid "Pass phrase check failed\n"
 msgstr "Checagem de pass phrase falhou\n"
 
-#: ../rpm.c:1166
+#: rpm.c:1092
 msgid "Pass phrase is good.\n"
 msgstr "Pass phrase ok.\n"
 
-#: ../rpm.c:1173
+#: rpm.c:1097
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: ../rpm.c:1178
+#: rpm.c:1103
 msgid "--sign may only be used during package building"
 msgstr "--sign somente pode ser usado durante a construção de pacotes"
 
-#: ../rpm.c:1195
+#: rpm.c:1118
 #, fuzzy
 msgid "exec failed\n"
 msgstr "Construção falhou.\n"
 
-#: ../rpm.c:1214
+#: rpm.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr "argumentos não esperados em --querytags"
 
-#: ../rpm.c:1225
+#: rpm.c:1148
 msgid "no packages given for signature check"
 msgstr "nenhum pacote informado para checagem de assinatura"
 
-#: ../rpm.c:1233
+#: rpm.c:1160
 msgid "no packages given for signing"
 msgstr "não foram passados pacotes para assinatura"
 
-#: ../rpm.c:1242
+#: rpm.c:1173
 msgid "no packages files given for rebuild"
 msgstr "não foram passados pacotes para reconstrução"
 
-#: ../rpm.c:1299
+#: rpm.c:1230
 msgid "no spec files given for build"
 msgstr "não foi passado arquivo spec para construção"
 
-#: ../rpm.c:1301
+#: rpm.c:1232
 msgid "no tar files given for build"
 msgstr "não foram passados arquivos tar para construção"
 
-#: ../rpm.c:1313
+#: rpm.c:1244
 msgid "no packages given for uninstall"
 msgstr "não foi passado pacote para desinstalação"
 
-#: ../rpm.c:1362
+#: rpm.c:1294
 msgid "no packages given for install"
 msgstr "não foi passado pacote para instalação"
 
-#: ../rpm.c:1385
+#: rpm.c:1317
 msgid "extra arguments given for query of all packages"
 msgstr "foram passados argumentos em excesso para pesquisa em todos os pacotes"
 
-#: ../rpm.c:1390
+#: rpm.c:1322
 msgid "no arguments given for query"
 msgstr "não foi passado argumento para pesquisa"
 
-#: ../rpm.c:1411
+#: rpm.c:1339
 #, fuzzy
 msgid "extra arguments given for verify of all packages"
 msgstr "foram passados argumentos em excesso para pesquisa em todos os pacotes"
 
-#: ../rpm.c:1415
+#: rpm.c:1343
 msgid "no arguments given for verify"
 msgstr "não foi passado argumento para verificação"
 
-#: ../rpm2cpio.c:42
+#: rpm2cpio.c:34
 msgid "argument is not an RPM package\n"
 msgstr ""
 
-#: ../rpm2cpio.c:46
+#: rpm2cpio.c:38
 msgid "error reading header from package\n"
 msgstr ""
 
-#: ../url.c:136
-#, c-format
-msgid "Password for %s@%s: "
-msgstr ""
-
-#: ../url.c:160 ../url.c:186
-#, c-format
-msgid "error: %sport must be a number\n"
-msgstr ""
-
-#: ../url.c:271
-msgid "url port must be a number\n"
-msgstr ""
-
-#. XXX PARANOIA
-#: ../url.c:308
-#, c-format
-msgid "logging into %s as %s, pw %s\n"
-msgstr ""
-
-# , c-format
-#: ../lib/rpmdb.c:169 ../url.c:422
-#, fuzzy, c-format
-msgid "failed to open %s\n"
-msgstr "Não consegui abrir: %s\n"
-
-# , c-format
-#: ../url.c:437
-#, fuzzy, c-format
-msgid "failed to create %s\n"
-msgstr "Não consegui abrir o pipe tar: %s\n"
-
-# , c-format
-#: ../build/build.c:83 ../build/pack.c:248
-#, fuzzy
-msgid "Unable to open temp file"
-msgstr "Não consegui abrir: %s\n"
+# , c-format
+#: build/build.c:83 build/pack.c:263
+#, fuzzy
+msgid "Unable to open temp file"
+msgstr "Não consegui abrir: %s\n"
 
 # "Project-Id-Version: rpm-2.5.3\n"
 # "PO-Revision-Date: 1997-09-11 14:00 MET DST\n"
@@ -1725,1796 +1401,2154 @@ msgstr "N
 # "Content-Type: text/plain; charset=ISO-8859-1\n"
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
-#: ../build/build.c:122
+#: build/build.c:124
 #, fuzzy, c-format
 msgid "Executing: %s\n"
 msgstr "RPM versão %s\n"
 
-#: ../build/build.c:126
+#: build/build.c:128
 #, c-format
 msgid "Exec of %s failed (%s)"
 msgstr ""
 
-#: ../build/build.c:136
+#: build/build.c:138
 #, c-format
 msgid "Bad exit status from %s (%s)"
 msgstr ""
 
-#: ../build/expression.c:189 ../build/expression.c:198
-msgid "parse error in tokenizer"
+#: build/expression.c:208
+msgid "syntax error while parsing =="
+msgstr ""
+
+#: build/expression.c:238
+msgid "syntax error while parsing &&"
+msgstr ""
+
+#: build/expression.c:247
+msgid "syntax error while parsing ||"
 msgstr ""
 
-#: ../build/expression.c:240
+#: build/expression.c:289
 msgid "parse error in expression"
 msgstr ""
 
-#: ../build/expression.c:270
+#: build/expression.c:319
 msgid "unmatched ("
 msgstr ""
 
-#: ../build/expression.c:288
+#: build/expression.c:337
 msgid "undefined identifier"
 msgstr ""
 
-#: ../build/expression.c:307
+#: build/expression.c:356
 msgid "- only on numbers"
 msgstr ""
 
-#: ../build/expression.c:323
+#: build/expression.c:372
 msgid "! only on numbers"
 msgstr ""
 
-#: ../build/expression.c:362 ../build/expression.c:407
-#: ../build/expression.c:464 ../build/expression.c:551
+#: build/expression.c:411 build/expression.c:456 build/expression.c:513
+#: build/expression.c:600
 msgid "types must match"
 msgstr ""
 
-#: ../build/expression.c:375
+#: build/expression.c:424
 msgid "* / not suported for strings"
 msgstr ""
 
-#: ../build/expression.c:423
+#: build/expression.c:472
 msgid "- not suported for strings"
 msgstr ""
 
-#: ../build/expression.c:564
+#: build/expression.c:613
 msgid "&& and || not suported for strings"
 msgstr ""
 
-#: ../build/expression.c:595 ../build/expression.c:640
+#: build/expression.c:644 build/expression.c:689
 msgid "syntax error in expression"
 msgstr ""
 
-#: ../build/files.c:220
+#: build/files.c:224
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr ""
 
-#: ../build/files.c:265 ../build/files.c:277 ../build/files.c:346
-#: ../build/files.c:358 ../build/files.c:389
+#: build/files.c:267 build/files.c:349 build/files.c:512
 #, c-format
-msgid "Bad %s() syntax: %s"
+msgid "Missing '(' in %s %s"
 msgstr ""
 
-#: ../build/files.c:307
+#: build/files.c:278 build/files.c:466 build/files.c:523
 #, c-format
-msgid "Invalid %s token: %s"
-msgstr ""
-
-#: ../build/files.c:369
-msgid "No files after %%defattr(): %s"
+msgid "Missing ')' in %s(%s"
 msgstr ""
 
-#: ../build/files.c:399
+#: build/files.c:316 build/files.c:491
 #, c-format
-msgid "Bad %s() mode spec: %s"
+msgid "Invalid %s token: %s"
 msgstr ""
 
-#: ../build/files.c:411
+#: build/files.c:365
 #, c-format
-msgid "Bad %s() dirmode spec: %s"
+msgid "Non-white space follows %s(): %s"
 msgstr ""
 
-#: ../build/files.c:462
-msgid "Bad %%config() syntax: %s"
-msgstr ""
+# , c-format
+#: build/files.c:403
+#, fuzzy, c-format
+msgid "Bad syntax: %s(%s)"
+msgstr "Não consegui ler o arquivo spec de %s\n"
 
-#: ../build/files.c:480
-msgid "Invalid %%config token: %s"
-msgstr ""
+# , c-format
+#: build/files.c:413
+#, fuzzy, c-format
+msgid "Bad mode spec: %s(%s)"
+msgstr "Não consegui ler o arquivo spec de %s\n"
 
-#: ../build/files.c:503 ../build/files.c:515 ../build/files.c:528
-msgid "Bad %%lang() syntax: %s"
+#: build/files.c:425
+#, c-format
+msgid "Bad dirmode spec: %s(%s)"
 msgstr ""
 
-#: ../build/files.c:534
-msgid "%%lang() entries are 2 characters: %s"
+#: build/files.c:549
+msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
 msgstr ""
 
-#: ../build/files.c:540
-msgid "Only one entry in %%lang(): %s"
+#: build/files.c:559
+msgid "Duplicate locale %.*s in %%lang(%s)"
 msgstr ""
 
-#: ../build/files.c:620
+#: build/files.c:651
 msgid "Hit limit for %%docdir"
 msgstr ""
 
-#: ../build/files.c:626
+#: build/files.c:657
 msgid "Only one arg for %%docdir"
 msgstr ""
 
 # , c-format
 #. We already got a file -- error
-#: ../build/files.c:651
+#: build/files.c:682
 #, fuzzy, c-format
 msgid "Two files on one line: %s"
 msgstr "Não consegui abrir: %s\n"
 
-#: ../build/files.c:664
+#: build/files.c:695
 #, fuzzy, c-format
 msgid "File must begin with \"/\": %s"
 msgstr "argumentos para o --dbpath devem começar com uma /"
 
-#: ../build/files.c:676
+#: build/files.c:707
 msgid "Can't mix special %%doc with other forms: %s"
 msgstr ""
 
 # , c-format
-#: ../build/files.c:764
+#: build/files.c:792
 #, fuzzy, c-format
 msgid "File listed twice: %s"
 msgstr "Não consegui ler o arquivo spec de %s\n"
 
 # , c-format
-#: ../build/files.c:916
+#: build/files.c:952
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s"
 msgstr "Não consegui ler o arquivo spec de %s\n"
 
-#: ../build/files.c:926 ../build/files.c:1049
+#: build/files.c:962 build/files.c:1099
 #, fuzzy, c-format
 msgid "File not found: %s"
 msgstr "não foi passado pacote para desinstalação"
 
-#: ../build/files.c:969
+#: build/files.c:1005
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: ../build/files.c:983
+#: build/files.c:1019
 #, c-format
 msgid "File %4d: 0%o %s.%s\t %s\n"
 msgstr ""
 
-#: ../build/files.c:1033
+#: build/files.c:1083
 #, c-format
 msgid "File needs leading \"/\": %s"
 msgstr ""
 
 # , c-format
-#: ../build/files.c:1090
+#: build/files.c:1140
 #, fuzzy
 msgid "Could not open %%files file: %s"
 msgstr "Não consegui abrir: %s\n"
 
-#: ../build/files.c:1097 ../build/pack.c:433
+#: build/files.c:1147 build/pack.c:484
 #, c-format
 msgid "line: %s"
 msgstr ""
 
-#: ../build/files.c:1394 ../build/parsePrep.c:31
+#: build/files.c:1469 build/parsePrep.c:29
 #, c-format
 msgid "Bad owner/group: %s"
 msgstr ""
 
-#: ../build/files.c:1448
+#: build/files.c:1522
 #, c-format
 msgid "Couldn't exec %s"
 msgstr ""
 
-#: ../build/files.c:1452
+#: build/files.c:1526
 #, c-format
 msgid "Couldn't fork %s"
 msgstr ""
 
-#: ../build/files.c:1502
+#: build/files.c:1605
 #, fuzzy, c-format
 msgid "%s failed"
 msgstr "Construção falhou.\n"
 
 # , c-format
-#: ../build/files.c:1506
+#: build/files.c:1609
 #, fuzzy, c-format
 msgid "failed to write all data to %s"
 msgstr "Não consegui abrir o pipe tar: %s\n"
 
-#: ../build/files.c:1540
-msgid "Finding provides...\n"
-msgstr ""
-
-#: ../build/files.c:1547
-msgid "Failed to find provides"
-msgstr ""
-
-#: ../build/files.c:1566
-msgid "Finding requires...\n"
+#: build/files.c:1695
+#, c-format
+msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
 # , c-format
-#: ../build/files.c:1573
-#, fuzzy
-msgid "Failed to find requires"
+#: build/files.c:1723 build/files.c:1732
+#, fuzzy, c-format
+msgid "Failed to find %s:"
 msgstr "Não consegui abrir o pipe tar: %s\n"
 
-#: ../build/files.c:1607
-msgid "Provides:"
-msgstr ""
-
-#: ../build/files.c:1622
-msgid "Prereqs:"
-msgstr ""
-
-#: ../build/files.c:1634
-msgid "Requires:"
-msgstr ""
-
-#: ../build/files.c:1658
+#: build/files.c:1838
 #, c-format
 msgid "Processing files: %s\n"
 msgstr ""
 
-#: ../build/names.c:32 ../build/names.c:64
+#: build/names.c:32 build/names.c:64
 msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
 msgstr ""
 
-#: ../build/names.c:97 ../build/names.c:129
+#: build/names.c:97 build/names.c:129
 msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
 msgstr ""
 
-#: ../build/names.c:167
+#: build/names.c:167
 #, c-format
 msgid "Could not canonicalize hostname: %s\n"
 msgstr ""
 
-#: ../build/pack.c:134
+#: build/pack.c:131
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr ""
 
 # , c-format
-#: ../build/pack.c:167
+#: build/pack.c:148
+#, fuzzy, c-format
+msgid "cannot create %s: %s\n"
+msgstr "Não consegui abrir: %s\n"
+
+# , c-format
+#: build/pack.c:183
 #, fuzzy, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "Não consegui abrir: %s\n"
 
 # , c-format
-#: ../build/pack.c:177
+#: build/pack.c:193
 #, fuzzy, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "Não consegui ler o arquivo spec de %s\n"
 
-#: ../build/pack.c:197
+#: build/pack.c:213
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr ""
 
-#: ../build/pack.c:203
+#: build/pack.c:219
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr ""
 
-#: ../build/pack.c:259
+#: build/pack.c:274
 msgid "Bad CSA data"
 msgstr ""
 
 # , c-format
-#: ../build/pack.c:282
+#: build/pack.c:305
 #, fuzzy, c-format
 msgid "Could not open %s\n"
 msgstr "Não consegui abrir: %s\n"
 
 # , c-format
-#: ../build/pack.c:314 ../build/pack.c:357
+#: build/pack.c:337 build/pack.c:379
 #, fuzzy, c-format
 msgid "Unable to write package: %s"
 msgstr "Não consegui abrir: %s\n"
 
+#: build/pack.c:352
+#, fuzzy, c-format
+msgid "Generating signature: %d\n"
+msgstr "gere assinatura PGP"
+
 # , c-format
-#: ../build/pack.c:347
+#: build/pack.c:369
 #, fuzzy, c-format
 msgid "Unable to read sigtarget: %s"
 msgstr "Não consegui abrir: %s\n"
 
-#: ../build/pack.c:372
+#: build/pack.c:394
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
 
 # , c-format
-#: ../build/pack.c:387
+#: build/pack.c:411 build/pack.c:435
 #, fuzzy, c-format
 msgid "create archive failed on file %s: %s"
 msgstr "Não consegui abrir: %s\n"
 
-#: ../build/pack.c:403
+#: build/pack.c:454
 #, c-format
 msgid "cpio_copy write failed: %s"
 msgstr ""
 
-#: ../build/pack.c:410
+#: build/pack.c:461
 #, c-format
 msgid "cpio_copy read failed: %s"
 msgstr ""
 
-#: ../build/pack.c:489
+#: build/pack.c:540
 #, c-format
 msgid "Could not open PreIn file: %s"
 msgstr ""
 
-#: ../build/pack.c:496
+#: build/pack.c:547
 #, c-format
 msgid "Could not open PreUn file: %s"
 msgstr ""
 
-#: ../build/pack.c:503
+#: build/pack.c:554
 #, c-format
 msgid "Could not open PostIn file: %s"
 msgstr ""
 
-#: ../build/pack.c:510
+#: build/pack.c:561
 #, c-format
 msgid "Could not open PostUn file: %s"
 msgstr ""
 
-#: ../build/pack.c:518
+#: build/pack.c:569
 #, c-format
 msgid "Could not open VerifyScript file: %s"
 msgstr ""
 
-#: ../build/pack.c:534
+#: build/pack.c:585
 #, c-format
 msgid "Could not open Trigger script file: %s"
 msgstr ""
 
-#: ../build/parseBuildInstallClean.c:27
+#: build/parseBuildInstallClean.c:27
 #, c-format
 msgid "line %d: second %s"
 msgstr ""
 
-#: ../build/parseChangelog.c:95
+#: build/parseChangelog.c:103
 msgid "%%changelog entries must start with *"
 msgstr ""
 
-#: ../build/parseChangelog.c:103
+#: build/parseChangelog.c:111
 msgid "incomplete %%changelog entry"
 msgstr ""
 
-#: ../build/parseChangelog.c:118
+#: build/parseChangelog.c:126
 msgid "bad date in %%changelog: %s"
 msgstr ""
 
-#: ../build/parseChangelog.c:123
+#: build/parseChangelog.c:131
 msgid "%%changelog not in decending chronological order"
 msgstr ""
 
-#: ../build/parseChangelog.c:131 ../build/parseChangelog.c:142
+#: build/parseChangelog.c:139 build/parseChangelog.c:150
 msgid "missing name in %%changelog"
 msgstr ""
 
-#: ../build/parseChangelog.c:149
+#: build/parseChangelog.c:157
 msgid "no description in %%changelog"
 msgstr ""
 
-#: ../build/parseDescription.c:35
+#: build/parseDescription.c:33
 msgid "line %d: Error parsing %%description: %s"
 msgstr ""
 
 # , c-format
-#: ../build/parseDescription.c:48 ../build/parseFiles.c:42
-#: ../build/parseScript.c:170
+#: build/parseDescription.c:46 build/parseFiles.c:40 build/parseScript.c:168
 #, fuzzy, c-format
 msgid "line %d: Bad option %s: %s"
 msgstr "Não consegui abrir: %s\n"
 
-#: ../build/parseDescription.c:62 ../build/parseFiles.c:56
-#: ../build/parseScript.c:184
+#: build/parseDescription.c:60 build/parseFiles.c:54 build/parseScript.c:182
 #, c-format
 msgid "line %d: Too many names: %s"
 msgstr ""
 
-#: ../build/parseDescription.c:72 ../build/parseFiles.c:66
-#: ../build/parseScript.c:194
+#: build/parseDescription.c:70 build/parseFiles.c:64 build/parseScript.c:192
 #, c-format
 msgid "line %d: Package does not exist: %s"
 msgstr ""
 
-#: ../build/parseDescription.c:84
+#: build/parseDescription.c:82
 #, c-format
 msgid "line %d: Second description"
 msgstr ""
 
-#: ../build/parseFiles.c:29
+#: build/parseFiles.c:27
 msgid "line %d: Error parsing %%files: %s"
 msgstr ""
 
-#: ../build/parseFiles.c:74
+#: build/parseFiles.c:72
 msgid "line %d: Second %%files list"
 msgstr ""
 
-#: ../build/parsePreamble.c:143
+#: build/parsePreamble.c:141
 #, c-format
 msgid "Architecture is excluded: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:148
+#: build/parsePreamble.c:146
 #, c-format
 msgid "Architecture is not included: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:153
+#: build/parsePreamble.c:151
 #, c-format
 msgid "OS is excluded: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:158
+#: build/parsePreamble.c:156
 #, c-format
 msgid "OS is not included: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:193
+#: build/parsePreamble.c:170
 #, c-format
 msgid "%s field must be present in package: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:215
+#: build/parsePreamble.c:192
 #, c-format
 msgid "Duplicate %s entries in package: %s"
 msgstr ""
 
 # , c-format
-#: ../build/parsePreamble.c:262
+#: build/parsePreamble.c:239
 #, fuzzy, c-format
 msgid "Unable to stat icon: %s"
 msgstr "Não consegui abrir: %s\n"
 
 # , c-format
-#: ../build/parsePreamble.c:273
+#: build/parsePreamble.c:250
 #, fuzzy, c-format
 msgid "Unable to read icon: %s"
 msgstr "Não consegui abrir: %s\n"
 
-#: ../build/parsePreamble.c:283
+#: build/parsePreamble.c:260
 #, c-format
 msgid "Unknown icon type: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:346
+#: build/parsePreamble.c:323
 #, c-format
 msgid "line %d: Malformed tag: %s"
 msgstr ""
 
 #. Empty field
-#: ../build/parsePreamble.c:354
+#: build/parsePreamble.c:331
 #, c-format
 msgid "line %d: Empty tag: %s"
 msgstr ""
 
 # , c-format
-#: ../build/parsePreamble.c:377 ../build/parsePreamble.c:384
+#: build/parsePreamble.c:354 build/parsePreamble.c:361
 #, fuzzy, c-format
 msgid "line %d: Illegal char '-' in %s: %s"
 msgstr "Não consegui abrir: %s\n"
 
-#: ../build/parsePreamble.c:422
+#: build/parsePreamble.c:399
 #, c-format
 msgid "line %d: BuildRoot can not be \"/\": %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:435
+#: build/parsePreamble.c:412
 #, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:447
+#: build/parsePreamble.c:424
 #, fuzzy, c-format
 msgid "line %d: Docdir must begin with '/': %s"
 msgstr "argumentos para o --dbpath devem começar com uma /"
 
-#: ../build/parsePreamble.c:459
+#: build/parsePreamble.c:436
 #, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:524
+#: build/parsePreamble.c:499
 #, c-format
 msgid "line %d: Bad BuildArchitecture format: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:534
+#: build/parsePreamble.c:509
 #, c-format
 msgid "Internal error: Bogus tag %d"
 msgstr ""
 
-#: ../build/parsePreamble.c:679
+#: build/parsePreamble.c:656
 #, fuzzy, c-format
 msgid "Bad package specification: %s"
 msgstr "      Opcões para especificação de pacotes:"
 
-#: ../build/parsePreamble.c:685
+#: build/parsePreamble.c:662
 #, c-format
 msgid "Package already exists: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:712
+#: build/parsePreamble.c:689
 #, c-format
 msgid "line %d: Unknown tag: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:737
+#: build/parsePreamble.c:714
 msgid "Spec file can't use BuildRoot"
 msgstr ""
 
 # , c-format
-#: ../build/parsePrep.c:27
+#: build/parsePrep.c:25
 #, fuzzy, c-format
 msgid "Bad source: %s: %s"
 msgstr "Não consegui ler o arquivo spec de %s\n"
 
-#: ../build/parsePrep.c:53
+#: build/parsePrep.c:51
 #, c-format
 msgid "No patch number %d"
 msgstr ""
 
-#: ../build/parsePrep.c:119
+#: build/parsePrep.c:117
 #, c-format
 msgid "No source number %d"
 msgstr ""
 
 # , c-format
-#: ../build/parsePrep.c:138
+#: build/parsePrep.c:136
 #, fuzzy, c-format
 msgid "Couldn't download nosource %s: %s"
 msgstr "Não consegui ler o arquivo spec de %s\n"
 
-#: ../build/parsePrep.c:193
+#: build/parsePrep.c:191
 msgid "Error parsing %%setup: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:208
+#: build/parsePrep.c:206
 msgid "line %d: Bad arg to %%setup %c: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:229
+#: build/parsePrep.c:227
 msgid "line %d: Bad %%setup option %s: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:353
+#: build/parsePrep.c:351
 msgid "line %d: Need arg to %%patch -b: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:361
+#: build/parsePrep.c:359
 msgid "line %d: Need arg to %%patch -z: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:373
+#: build/parsePrep.c:371
 msgid "line %d: Need arg to %%patch -p: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:379
+#: build/parsePrep.c:377
 msgid "line %d: Bad arg to %%patch -p: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:386
+#: build/parsePrep.c:384
 msgid "Too many patches!"
 msgstr ""
 
-#: ../build/parsePrep.c:390
+#: build/parsePrep.c:388
 msgid "line %d: Bad arg to %%patch: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:426
+#: build/parsePrep.c:424
 msgid "line %d: second %%prep"
 msgstr ""
 
-#: ../build/parseReqs.c:45
-#, c-format
-msgid "line %d: No file names in Conflicts: %s"
-msgstr ""
-
-#: ../build/parseReqs.c:79
-#, c-format
-msgid "line %d: No versions on file names in %s: %s"
-msgstr ""
+#: build/parseReqs.c:91
+#, fuzzy, c-format
+msgid ""
+"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
+msgstr "argumentos para o --dbpath devem começar com uma /"
 
-#: ../build/parseReqs.c:85
+#: build/parseReqs.c:102
 #, c-format
-msgid "line %d: No versions in PreReq: %s"
+msgid "line %d: File name not permitted: %s"
 msgstr ""
 
-#: ../build/parseReqs.c:97
+#: build/parseReqs.c:134
 #, c-format
-msgid "line %d: Version required in %s: %s"
+msgid "line %d: Versioned file name not permitted: %s"
 msgstr ""
 
-#: ../build/parseReqs.c:126
+#: build/parseReqs.c:146
 #, c-format
-msgid "line %d: No file names in Obsoletes: %s"
+msgid "line %d: Version not permitted: %s"
 msgstr ""
 
-#: ../build/parseReqs.c:133
-#, c-format
-msgid "line %d: %s: tokens must begin with alpha-numeric: %s"
-msgstr ""
+# , c-format
+#: build/parseReqs.c:172
+#, fuzzy, c-format
+msgid "line %d: Version required: %s"
+msgstr "Não consegui abrir: %s\n"
 
-#: ../build/parseScript.c:138
+#: build/parseScript.c:136
 #, c-format
 msgid "line %d: triggers must have --: %s"
 msgstr ""
 
-#: ../build/parseScript.c:148 ../build/parseScript.c:212
+#: build/parseScript.c:146 build/parseScript.c:210
 #, c-format
 msgid "line %d: Error parsing %s: %s"
 msgstr ""
 
-#: ../build/parseScript.c:158
+#: build/parseScript.c:156
 #, c-format
 msgid "line %d: script program must begin with '/': %s"
 msgstr ""
 
-#: ../build/parseScript.c:203
+#: build/parseScript.c:201
 #, c-format
 msgid "line %d: Second %s"
 msgstr ""
 
 # , c-format
-#: ../build/parseSpec.c:120
+#: build/parseSpec.c:126
+#, fuzzy, c-format
+msgid "line %d: %s"
+msgstr "Não consegui ler o arquivo spec de %s\n"
+
+# , c-format
+#: build/parseSpec.c:172
 #, fuzzy, c-format
 msgid "Unable to open: %s\n"
 msgstr "Não consegui abrir: %s\n"
 
-#: ../build/parseSpec.c:132
+#: build/parseSpec.c:184
 msgid "Unclosed %%if"
 msgstr ""
 
-# , c-format
-#: ../build/parseSpec.c:188
-#, fuzzy, c-format
-msgid "line %d: %s"
-msgstr "Não consegui ler o arquivo spec de %s\n"
+#: build/parseSpec.c:243
+#, c-format
+msgid "%s:%d: parseExpressionBoolean returns %d"
+msgstr ""
 
 #. Got an else with no %if !
-#: ../build/parseSpec.c:213
+#: build/parseSpec.c:251
 msgid "%s:%d: Got a %%else with no if"
 msgstr ""
 
 #. Got an end with no %if !
-#: ../build/parseSpec.c:223
+#: build/parseSpec.c:262
 msgid "%s:%d: Got a %%endif with no if"
 msgstr ""
 
-#: ../build/parseSpec.c:235 ../build/parseSpec.c:244
+#: build/parseSpec.c:276 build/parseSpec.c:285
 msgid "malformed %%include statement"
 msgstr ""
 
-#: ../build/parseSpec.c:323
+#: build/parseSpec.c:366
 #, c-format
 msgid "Timecheck value must be an integer: %s"
 msgstr ""
 
 # , c-format
-#: ../build/parseSpec.c:406
+#: build/parseSpec.c:449
 #, fuzzy
 msgid "No buildable architectures"
 msgstr "%s não pode ser construido nesta arquitetura\n"
 
-#: ../build/parseSpec.c:451
+#: build/parseSpec.c:494
 #, fuzzy
 msgid "Package has no %%description: %s"
 msgstr "não foi passado pacote para desinstalação"
 
-#: ../build/spec.c:28
+#: build/spec.c:31
 #, c-format
 msgid "archive = %s, fs = %s\n"
 msgstr ""
 
-#: ../build/spec.c:224
+#: build/spec.c:237
 #, c-format
 msgid "line %d: Bad number: %s"
 msgstr ""
 
-#: ../build/spec.c:230
+#: build/spec.c:243
 #, c-format
 msgid "line %d: Bad no%s number: %d"
 msgstr ""
 
-#: ../build/spec.c:286
+#: build/spec.c:301
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
 # , c-format
-#: ../lib/cpio.c:362
+#: lib/cpio.c:385
 #, fuzzy, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr "Não consegui ler o arquivo spec de %s\n"
 
-#: ../lib/cpio.c:368
+#: lib/cpio.c:391
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: ../lib/cpio.c:547
+#: lib/cpio.c:582
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: ../lib/cpio.c:1000
+#: lib/cpio.c:1044
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: ../lib/cpio.c:1003
+#: lib/cpio.c:1047
 msgid "Bad magic"
 msgstr ""
 
-#: ../lib/cpio.c:1004
+#: lib/cpio.c:1048
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: ../lib/cpio.c:1022
-msgid "Internal error"
-msgstr ""
-
-#: ../lib/cpio.c:1023
+#: lib/cpio.c:1066
 msgid "Header size too big"
 msgstr ""
 
-#: ../lib/cpio.c:1024
+#: lib/cpio.c:1067
 msgid "Unknown file type"
 msgstr ""
 
-#: ../lib/cpio.c:1033
+#: lib/cpio.c:1068
+msgid "Missing hard link"
+msgstr ""
+
+#: lib/cpio.c:1069
+msgid "Internal error"
+msgstr ""
+
+#: lib/cpio.c:1078
 #, fuzzy
 msgid " failed - "
 msgstr "Construção falhou.\n"
 
 # , c-format
-#: ../lib/dbindex.c:32
+#: lib/dbindex.c:32
 #, fuzzy, c-format
 msgid "cannot open file %s: %s"
 msgstr "Não consegui abrir: %s\n"
 
-#: ../lib/dbindex.c:77
+#: lib/dbindex.c:84
 #, c-format
 msgid "error getting record %s from %s"
 msgstr ""
 
-#: ../lib/dbindex.c:105
+#: lib/dbindex.c:111
 #, c-format
 msgid "error storing record %s into %s"
 msgstr ""
 
-#: ../lib/dbindex.c:112
+#: lib/dbindex.c:118
 #, c-format
 msgid "error removing record %s into %s"
 msgstr ""
 
-#: ../lib/depends.c:429 ../lib/depends.c:588
+#. XXX legacy epoch-less requires/conflicts compatibility
+#: lib/depends.c:339
 #, c-format
-msgid "cannot read header at %d for dependency check"
+msgid ""
+"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
+"\tA %s\tB %s\n"
+msgstr ""
+
+#: lib/depends.c:368
+#, c-format
+msgid "  %s    A %s\tB %s\n"
+msgstr ""
+
+#: lib/depends.c:460
+msgid "dbrecMatchesDepFlags() failed to read header"
+msgstr ""
+
+#: lib/depends.c:695
+#, c-format
+msgid "%s: %s satisfied by added package.\n"
+msgstr ""
+
+#: lib/depends.c:712
+#, c-format
+msgid "%s: %s satisfied by added provide.\n"
+msgstr ""
+
+#: lib/depends.c:717
+#, c-format
+msgid "%s: %s satisfied by added file list.\n"
+msgstr ""
+
+#: lib/depends.c:747
+#, c-format
+msgid "%s: %s satisfied by rpmrc provides.\n"
+msgstr ""
+
+#: lib/depends.c:775
+#, c-format
+msgid "%s: %s satisfied by db file lists.\n"
+msgstr ""
+
+#: lib/depends.c:797
+#, c-format
+msgid "%s: %s satisfied by db provides.\n"
+msgstr ""
+
+#: lib/depends.c:819
+#, c-format
+msgid "%s: %s satisfied by db packages.\n"
+msgstr ""
+
+#: lib/depends.c:832
+#, c-format
+msgid "%s: %s satisfied by rpmlib version.\n"
 msgstr ""
 
-#: ../lib/depends.c:494
+#: lib/depends.c:842
 #, c-format
-msgid "dependencies: looking for %s\n"
+msgid "%s: %s unsatisfied.\n"
 msgstr ""
 
-#: ../lib/depends.c:682
+#. requirements are not satisfied.
+#: lib/depends.c:890
 #, fuzzy, c-format
 msgid "package %s require not satisfied: %s\n"
 msgstr "não foi passado pacote para instalação"
 
-#: ../lib/depends.c:725
+#. conflicts exist.
+#: lib/depends.c:952
 #, fuzzy, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "não foi passado pacote para desinstalação"
 
-#: ../lib/depends.c:825
-msgid "dbrecMatchesDepFlags() failed to read header"
+#: lib/depends.c:1007 lib/depends.c:1311
+#, c-format
+msgid "cannot read header at %d for dependency check"
 msgstr ""
 
-#: ../lib/depends.c:877
+#: lib/depends.c:1102
 #, c-format
 msgid "loop in prerequisite chain: %s"
 msgstr ""
 
-#: ../lib/falloc.c:149
+#: lib/falloc.c:160
 #, c-format
-msgid "free list corrupt (%u)- contact rpm-list@redhat.com\n"
+msgid ""
+"free list corrupt (%u)- please run\n"
+"\t\"rpm --rebuilddb\"\n"
+"More information is available from http://www.rpm.org or the "
+"rpm-list@redhat.com mailing list\n"
+"if \"rpm --rebuilddb\" fails to correct the problem.\n"
 msgstr ""
 
-#: ../lib/formats.c:97 ../lib/formats.c:114 ../lib/formats.c:134
-#: ../lib/formats.c:166 ../lib/header.c:1973 ../lib/header.c:1989
-#: ../lib/header.c:2009
+#: lib/formats.c:66 lib/formats.c:84 lib/formats.c:105 lib/formats.c:138
+#: lib/header.c:2122 lib/header.c:2139 lib/header.c:2159
 msgid "(not a number)"
 msgstr ""
 
-#: ../lib/fs.c:41
+#: lib/fs.c:40
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr ""
 
 # , c-format
-#: ../lib/fs.c:76 ../lib/fs.c:246
+#: lib/fs.c:75 lib/fs.c:253
 #, fuzzy, c-format
 msgid "failed to stat %s: %s"
 msgstr "Não consegui abrir: %s\n"
 
+#: lib/fs.c:114
+msgid "getting list of mounted filesystems\n"
+msgstr ""
+
 # , c-format
-#: ../lib/fs.c:117
+#: lib/fs.c:119
 #, fuzzy, c-format
 msgid "failed to open %s: %s"
 msgstr "Não consegui abrir: %s\n"
 
-#: ../lib/fs.c:267
+#: lib/fs.c:274
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr ""
 
-#: ../lib/header.c:669
-#, c-format
-msgid "Data type %d not supprted\n"
+#: lib/ftp.c:666
+msgid "Success"
 msgstr ""
 
-#. This should not be allowed
-#: ../lib/header.c:905
-msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
+#: lib/ftp.c:669
+msgid "Bad server response"
 msgstr ""
 
-#: ../lib/header.c:935
-#, c-format
-msgid "Data type %d not supported\n"
+#: lib/ftp.c:672
+msgid "Server IO error"
 msgstr ""
 
-#: ../lib/header.c:994
-#, c-format
-msgid "Bad count for headerAddEntry(): %d\n"
+#: lib/ftp.c:675
+msgid "Server timeout"
 msgstr ""
 
-#: ../lib/header.c:1328
-msgid "? expected in expression"
+#: lib/ftp.c:678
+msgid "Unable to lookup server host address"
 msgstr ""
 
-#: ../lib/header.c:1335
-msgid "{ expected after ? in expression"
+#: lib/ftp.c:681
+msgid "Unable to lookup server host name"
 msgstr ""
 
-#: ../lib/header.c:1345 ../lib/header.c:1377
-msgid "} expected in expression"
+#: lib/ftp.c:684
+msgid "Failed to connect to server"
 msgstr ""
 
-#: ../lib/header.c:1352
-msgid ": expected following ? subexpression"
+#: lib/ftp.c:687
+msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: ../lib/header.c:1365
-msgid "{ expected after : in expression"
+#: lib/ftp.c:690
+msgid "IO error to local file"
 msgstr ""
 
-#: ../lib/header.c:1384
-msgid "| expected at end of expression"
+#: lib/ftp.c:693
+msgid "Error setting remote server to passive mode"
+msgstr ""
+
+#: lib/ftp.c:696
+msgid "File not found on server"
+msgstr ""
+
+#: lib/ftp.c:699
+msgid "Abort in progress"
+msgstr ""
+
+#: lib/ftp.c:703
+msgid "Unknown or unexpected error"
+msgstr ""
+
+#. This should not be allowed
+#: lib/header.c:169
+msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
+msgstr ""
+
+#: lib/header.c:200
+#, c-format
+msgid "Data type %d not supported\n"
+msgstr ""
+
+#: lib/header.c:763
+#, c-format
+msgid "Data type %d not supprted\n"
+msgstr ""
+
+#: lib/header.c:1119
+#, c-format
+msgid "Bad count for headerAddEntry(): %d\n"
 msgstr ""
 
-#: ../lib/header.c:1478
+#: lib/header.c:1520
 #, c-format
 msgid "missing { after %"
 msgstr ""
 
-#: ../lib/header.c:1506
+#: lib/header.c:1548
 msgid "missing } after %{"
 msgstr ""
 
-#: ../lib/header.c:1518
+#: lib/header.c:1560
 msgid "empty tag format"
 msgstr ""
 
-#: ../lib/header.c:1528
+#: lib/header.c:1570
 msgid "empty tag name"
 msgstr ""
 
-#: ../lib/header.c:1543
+#: lib/header.c:1585
 msgid "unknown tag"
 msgstr ""
 
-#: ../lib/header.c:1569
+#: lib/header.c:1611
 msgid "] expected at end of array"
 msgstr ""
 
-#: ../lib/header.c:1585
+#: lib/header.c:1627
 #, fuzzy
 msgid "unexpected ]"
 msgstr "fonte de pesquisa não esperado"
 
-#: ../lib/header.c:1587
+#: lib/header.c:1629
 #, fuzzy
 msgid "unexpected }"
 msgstr "fonte de pesquisa não esperado"
 
-#: ../lib/header.c:1762
-msgid "(unknown type)"
-msgstr ""
-
-#: ../lib/install.c:93
-msgid "source package expected, binary found"
+#: lib/header.c:1682
+msgid "? expected in expression"
 msgstr ""
 
-#: ../lib/install.c:169 ../lib/uninstall.c:111
-#, c-format
-msgid "   file: %s action: %s\n"
+#: lib/header.c:1689
+msgid "{ expected after ? in expression"
 msgstr ""
 
-#: ../lib/install.c:186
-#, c-format
-msgid "user %s does not exist - using root"
+#: lib/header.c:1699 lib/header.c:1731
+msgid "} expected in expression"
 msgstr ""
 
-#: ../lib/install.c:194
-#, c-format
-msgid "group %s does not exist - using root"
+#: lib/header.c:1706
+msgid ": expected following ? subexpression"
 msgstr ""
 
-#: ../lib/install.c:221
-msgid "%%instchangelog value in macro file should be a number, but isn't"
+#: lib/header.c:1719
+msgid "{ expected after : in expression"
 msgstr ""
 
-#: ../lib/install.c:289
-#, fuzzy, c-format
-msgid "package: %s-%s-%s files test = %d\n"
-msgstr "não foi passado pacote para instalação"
-
-#: ../lib/install.c:352
-msgid "stopping install as we're running --test\n"
+#: lib/header.c:1738
+msgid "| expected at end of expression"
 msgstr ""
 
-#: ../lib/install.c:357
-msgid "running preinstall script (if any)\n"
+#: lib/header.c:1905
+msgid "(unknown type)"
 msgstr ""
 
-#: ../lib/install.c:387
+#: lib/install.c:141 lib/uninstall.c:179
 #, c-format
-msgid "warning: %s created as %s"
+msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: ../lib/install.c:423
+#: lib/install.c:159
 #, c-format
-msgid "warning: %s saved as %s"
+msgid "user %s does not exist - using root"
 msgstr ""
 
-#: ../lib/install.c:427 ../lib/install.c:790 ../lib/uninstall.c:337
+#: lib/install.c:167
 #, c-format
-msgid "rename of %s to %s failed: %s"
+msgid "group %s does not exist - using root"
 msgstr ""
 
-#: ../lib/install.c:507
-msgid "running postinstall script (if any)\n"
+#: lib/install.c:195
+msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
-#: ../lib/install.c:613
+#: lib/install.c:358
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: ../lib/install.c:614
+#: lib/install.c:359
 msgid " on file "
 msgstr ""
 
-#: ../lib/install.c:654
+#: lib/install.c:402
 #, fuzzy
 msgid "installing a source package\n"
 msgstr "instale pacote"
 
 # , c-format
-#: ../lib/install.c:665 ../lib/install.c:687
+#: lib/install.c:413
 #, fuzzy, c-format
-msgid "cannot create %s"
+msgid "cannot create %s: %s"
 msgstr "Não consegui abrir: %s\n"
 
 # , c-format
-#: ../lib/install.c:672 ../lib/install.c:694
+#: lib/install.c:421 lib/install.c:443
 #, fuzzy, c-format
 msgid "cannot write to %s"
 msgstr "Não consegui abrir: %s\n"
 
-#: ../lib/install.c:676
+#: lib/install.c:425
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: ../lib/install.c:698
+# , c-format
+#: lib/install.c:436
+#, fuzzy, c-format
+msgid "cannot create %s"
+msgstr "Não consegui abrir: %s\n"
+
+#: lib/install.c:447
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: ../lib/install.c:731 ../lib/install.c:767
+#: lib/install.c:481 lib/install.c:509
 #, fuzzy
 msgid "source package contains no .spec file"
 msgstr "pesquise o pacote ao qual <arquivo> pertence"
 
-#: ../lib/install.c:788
+#: lib/install.c:530
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: ../lib/lookup.c:83
+#: lib/install.c:532 lib/install.c:810 lib/uninstall.c:26
+#, c-format
+msgid "rename of %s to %s failed: %s"
+msgstr ""
+
+#: lib/install.c:622
+msgid "source package expected, binary found"
+msgstr ""
+
+#: lib/install.c:679
+#, fuzzy, c-format
+msgid "package: %s-%s-%s files test = %d\n"
+msgstr "não foi passado pacote para instalação"
+
+#: lib/install.c:740
+msgid "stopping install as we're running --test\n"
+msgstr ""
+
+#: lib/install.c:745
+msgid "running preinstall script (if any)\n"
+msgstr ""
+
+#: lib/install.c:770
+#, c-format
+msgid "warning: %s created as %s"
+msgstr ""
+
+#: lib/install.c:806
+#, c-format
+msgid "warning: %s saved as %s"
+msgstr ""
+
+#: lib/install.c:880
+msgid "running postinstall scripts (if any)\n"
+msgstr ""
+
+#: lib/lookup.c:35
 #, c-format
 msgid "cannot read header at %d for lookup"
 msgstr ""
 
-#: ../lib/macro.c:129
+#: lib/macro.c:149
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr ""
 
 #. XXX just in case
-#: ../lib/macro.c:218
+#: lib/macro.c:243
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: ../lib/macro.c:253
+#: lib/macro.c:278
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: ../lib/macro.c:426
+#: lib/macro.c:457
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: ../lib/macro.c:452
+#: lib/macro.c:483
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: ../lib/macro.c:458
+#: lib/macro.c:489
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: ../lib/macro.c:463
+#: lib/macro.c:494
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: ../lib/macro.c:468
+#: lib/macro.c:499
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: ../lib/macro.c:493
+#: lib/macro.c:524
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: ../lib/macro.c:566
+#: lib/macro.c:601
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: ../lib/macro.c:650
+#: lib/macro.c:698
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr ""
 
-#: ../lib/macro.c:825
+#: lib/macro.c:870
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: ../lib/macro.c:881 ../lib/macro.c:897
+#: lib/macro.c:936 lib/macro.c:952
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: ../lib/macro.c:930
+#: lib/macro.c:992
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: ../lib/macro.c:1053
+#: lib/macro.c:1115
 #, fuzzy
 msgid "Macro %%%.*s not found, skipping"
 msgstr "não foi passado pacote para desinstalação"
 
-#: ../lib/macro.c:1131
+#: lib/macro.c:1196
 msgid "Target buffer overflow"
 msgstr ""
 
 # , c-format
-#: ../lib/macro.c:1274 ../lib/macro.c:1282
+#: lib/macro.c:1343 lib/macro.c:1351
 #, fuzzy, c-format
 msgid "File %s: %s"
 msgstr "Não consegui ler o arquivo spec de %s\n"
 
-#: ../lib/macro.c:1285
+#: lib/macro.c:1354
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
 
-#: ../lib/messages.c:51
+#: lib/messages.c:55
 msgid "warning: "
 msgstr ""
 
-#: ../lib/messages.c:57
+#: lib/messages.c:64
 msgid "error: "
 msgstr ""
 
-#: ../lib/messages.c:63
+#: lib/messages.c:73
 msgid "fatal error: "
 msgstr ""
 
-#: ../lib/messages.c:70
+#: lib/messages.c:82
 msgid "internal error (rpm bug?): "
 msgstr ""
 
-#: ../lib/misc.c:342 ../lib/misc.c:348 ../lib/misc.c:355
+#: lib/misc.c:367 lib/misc.c:373 lib/misc.c:380
 #, c-format
 msgid "error creating temporary file %s"
 msgstr ""
 
 # , c-format
-#: ../lib/oldheader.c:292
+#: lib/oldheader.c:299
 #, fuzzy, c-format
 msgid "bad file state: %s"
 msgstr "Não consegui abrir: %s\n"
 
-#: ../lib/package.c:51
+#: lib/package.c:234
 msgid "package is a version one package!\n"
 msgstr ""
 
-#: ../lib/package.c:54
+#: lib/package.c:239
 msgid "old style source package -- I'll do my best\n"
 msgstr ""
 
-#: ../lib/package.c:57
+#: lib/package.c:242
 #, c-format
 msgid "archive offset is %d\n"
 msgstr ""
 
-#: ../lib/package.c:67
+#: lib/package.c:252
 msgid "old style binary package\n"
 msgstr ""
 
-#: ../lib/package.c:105
+#: lib/package.c:298
 msgid ""
 "only packages with major numbers <= 3 are supported by this version of RPM"
 msgstr ""
 
-#: ../lib/problems.c:29
+#: lib/problems.c:43
+#, c-format
+msgid " is needed by %s-%s-%s\n"
+msgstr ""
+
+#: lib/problems.c:46
+#, c-format
+msgid " conflicts with %s-%s-%s\n"
+msgstr ""
+
+#: lib/problems.c:66
 #, fuzzy, c-format
-msgid "package %s-%s-%s is for a different operating system"
+msgid "package %s-%s-%s is for a different architecture"
 msgstr "não foi passado pacote para instalação"
 
-#: ../lib/problems.c:34
+#: lib/problems.c:71
 #, fuzzy, c-format
-msgid "package %s-%s-%s is for a different architecture"
+msgid "package %s-%s-%s is for a different operating system"
 msgstr "não foi passado pacote para instalação"
 
-#: ../lib/problems.c:39
+#: lib/problems.c:76
 #, fuzzy, c-format
 msgid "package %s-%s-%s is already installed"
 msgstr "não foi passado pacote para instalação"
 
-#: ../lib/problems.c:44
+#: lib/problems.c:81
 #, fuzzy, c-format
 msgid "path %s is not relocateable for package %s-%s-%s"
 msgstr "não foi passado pacote para instalação"
 
-#: ../lib/problems.c:49
+#: lib/problems.c:86
 #, c-format
 msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
 msgstr ""
 
-#: ../lib/problems.c:55
+#: lib/problems.c:92
 #, c-format
 msgid ""
 "file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
 msgstr ""
 
-#: ../lib/problems.c:61
+#: lib/problems.c:98
 #, fuzzy, c-format
 msgid "package %s-%s-%s (which is newer then %s-%s-%s) is already installed"
 msgstr "não foi passado pacote para instalação"
 
-#: ../lib/problems.c:67
+#: lib/problems.c:104
 #, c-format
-msgid "installing package %s-%s-%s needs %ld%c on the %s filesystem"
+msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: ../lib/problems.c:77
+#: lib/problems.c:116
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
 
-#: ../lib/query.c:57
-#, fuzzy
-msgid "query package owning file"
-msgstr "pesquise o pacote ao qual <arquivo> pertence"
-
-#: ../lib/query.c:59
-#, fuzzy
-msgid "query packages in group"
-msgstr "não foi passado pacote para desinstalação"
-
-#: ../lib/query.c:61
-#, fuzzy
-msgid "query a package file"
-msgstr "pesquise todos os pacotes"
-
-#: ../lib/query.c:65
-#, fuzzy
-msgid "query a spec file"
-msgstr "pesquise todos os pacotes"
-
-#: ../lib/query.c:67
-#, fuzzy
-msgid "query the pacakges triggered by the package"
-msgstr "pesquise o pacote ao qual <arquivo> pertence"
-
-#: ../lib/query.c:69
-#, fuzzy
-msgid "query the packages which require a capability"
-msgstr "pesquise pacotes que requerem capacidade <i>"
-
-#: ../lib/query.c:71
-#, fuzzy
-msgid "query the packages which provide a capability"
-msgstr "pesquise pacotes que fornecem a capacidade <i>"
-
-#: ../lib/query.c:108
-#, fuzzy
-msgid "list all configuration files"
-msgstr "liste somente os arquivos de configuração (implica -l)"
-
-#: ../lib/query.c:110
-#, fuzzy
-msgid "list all documentation files"
-msgstr "instale documentação"
-
-#: ../lib/query.c:112
-#, fuzzy
-msgid "dump basic file information"
-msgstr "mostre informação do pacote"
-
-#: ../lib/query.c:114
-#, fuzzy
-msgid "list files in package"
-msgstr "instale pacote"
-
-#: ../lib/query.c:118
-msgid "use the following query format"
-msgstr ""
-
-#: ../lib/query.c:120
-msgid "substitute i18n sections from the following catalogue"
-msgstr ""
-
-#: ../lib/query.c:123
-msgid "display the states of the listed files"
-msgstr ""
-
-#: ../lib/query.c:125
-#, fuzzy
-msgid "display a verbose file listing"
-msgstr "mostre a lista de arquivos do pacote"
-
-#: ../lib/query.c:136
+#: lib/query.c:138
 #, c-format
 msgid "error in format: %s\n"
 msgstr ""
 
-#: ../lib/query.c:177
+#: lib/query.c:180
 msgid "(contains no files)"
 msgstr ""
 
-#: ../lib/query.c:230
+#: lib/query.c:233
 msgid "normal        "
 msgstr ""
 
-#: ../lib/query.c:232
+#: lib/query.c:235
 msgid "replaced      "
 msgstr ""
 
-#: ../lib/query.c:234
-msgid "net shared    "
-msgstr ""
-
-#: ../lib/query.c:236
+#: lib/query.c:237
 #, fuzzy
 msgid "not installed "
 msgstr "não foi passado pacote para instalação"
 
-#: ../lib/query.c:238
+#: lib/query.c:239
+msgid "net shared    "
+msgstr ""
+
+#: lib/query.c:241
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: ../lib/query.c:242
+#: lib/query.c:245
 msgid "(no state)    "
 msgstr ""
 
-#: ../lib/query.c:258 ../lib/query.c:288
+#: lib/query.c:261 lib/query.c:291
 msgid "package has neither file owner or id lists"
 msgstr ""
 
-#: ../lib/query.c:514
+#: lib/query.c:400
 #, c-format
 msgid "record number %u\n"
 msgstr ""
 
-#: ../lib/query.c:518
+#: lib/query.c:404
 msgid "error: could not read database record\n"
 msgstr ""
 
-#: ../lib/query.c:547
+#: lib/query.c:442
 #, fuzzy, c-format
-msgid "open of %s failed\n"
+msgid "open of %s failed: %s\n"
 msgstr "Construção falhou.\n"
 
-#: ../lib/query.c:560
+#: lib/query.c:455
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: ../lib/query.c:572
+#: lib/query.c:464 lib/rpminstall.c:203
+#, c-format
+msgid "%s does not appear to be a RPM package\n"
+msgstr ""
+
+#: lib/query.c:467
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: ../lib/query.c:593
+#: lib/query.c:494
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: ../lib/query.c:627
+#: lib/query.c:519
 msgid "could not read database record!\n"
 msgstr ""
 
-#: ../lib/query.c:638
+#: lib/query.c:530
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: ../lib/query.c:648
+#: lib/query.c:540
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: ../lib/query.c:658
+#: lib/query.c:550
 #, fuzzy, c-format
 msgid "no package triggers %s\n"
 msgstr "não foram passados pacotes para assinatura"
 
-#: ../lib/query.c:668
+#: lib/query.c:560
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: ../lib/query.c:683
+#: lib/query.c:575
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: ../lib/query.c:686
+#: lib/query.c:578
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: ../lib/query.c:699
+#: lib/query.c:591
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: ../lib/query.c:702
+#: lib/query.c:594
 #, c-format
 msgid "package record number: %d\n"
 msgstr ""
 
-#: ../lib/query.c:705
+#: lib/query.c:597
 #, c-format
 msgid "record %d could not be read\n"
 msgstr ""
 
-#: ../lib/query.c:720
+#: lib/query.c:609 lib/rpminstall.c:393
+#, fuzzy, c-format
+msgid "package %s is not installed\n"
+msgstr "não foi passado pacote para instalação"
+
+#: lib/query.c:612
 #, c-format
 msgid "error looking for package %s\n"
 msgstr ""
 
-#: ../lib/query.c:742
+#: lib/query.c:634
 msgid "rpmQuery: rpmdbOpen() failed\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:18
+#: lib/query.c:691
+#, fuzzy
+msgid "query package owning file"
+msgstr "pesquise o pacote ao qual <arquivo> pertence"
+
+#: lib/query.c:693
+#, fuzzy
+msgid "query packages in group"
+msgstr "não foi passado pacote para desinstalação"
+
+#: lib/query.c:695
+#, fuzzy
+msgid "query a package file"
+msgstr "pesquise todos os pacotes"
+
+#: lib/query.c:699
+#, fuzzy
+msgid "query a spec file"
+msgstr "pesquise todos os pacotes"
+
+#: lib/query.c:701
+#, fuzzy
+msgid "query the pacakges triggered by the package"
+msgstr "pesquise o pacote ao qual <arquivo> pertence"
+
+#: lib/query.c:703
+#, fuzzy
+msgid "query the packages which require a capability"
+msgstr "pesquise pacotes que requerem capacidade <i>"
+
+#: lib/query.c:705
+#, fuzzy
+msgid "query the packages which provide a capability"
+msgstr "pesquise pacotes que fornecem a capacidade <i>"
+
+#: lib/query.c:742
+#, fuzzy
+msgid "list all configuration files"
+msgstr "liste somente os arquivos de configuração (implica -l)"
+
+#: lib/query.c:744
+#, fuzzy
+msgid "list all documentation files"
+msgstr "instale documentação"
+
+#: lib/query.c:746
+#, fuzzy
+msgid "dump basic file information"
+msgstr "mostre informação do pacote"
+
+#: lib/query.c:748
+#, fuzzy
+msgid "list files in package"
+msgstr "instale pacote"
+
+#: lib/query.c:752
+msgid "use the following query format"
+msgstr ""
+
+#: lib/query.c:754
+msgid "substitute i18n sections from the following catalogue"
+msgstr ""
+
+#: lib/query.c:757
+msgid "display the states of the listed files"
+msgstr ""
+
+#: lib/query.c:759
+#, fuzzy
+msgid "display a verbose file listing"
+msgstr "mostre a lista de arquivos do pacote"
+
+#: lib/rebuilddb.c:20
 #, fuzzy, c-format
 msgid "rebuilding database in rootdir %s\n"
 msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
 
-#: ../lib/rebuilddb.c:22 ../lib/rpmdb.c:64 ../lib/rpmdb.c:82 ../lib/rpmdb.c:98
+#: lib/rebuilddb.c:24 lib/rpmdb.c:69 lib/rpmdb.c:88 lib/rpmdb.c:105
 msgid "no dbpath has been set"
 msgstr ""
 
-#: ../lib/rebuilddb.c:30
+#: lib/rebuilddb.c:33
 #, c-format
 msgid "temporary database %s already exists"
 msgstr ""
 
-#: ../lib/rebuilddb.c:34
+#: lib/rebuilddb.c:37
 #, c-format
 msgid "creating directory: %s\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:36
+#: lib/rebuilddb.c:39
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr ""
 
-#: ../lib/rebuilddb.c:44
+#: lib/rebuilddb.c:43
 msgid "opening old database\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:51
+#: lib/rebuilddb.c:50
 msgid "opening new database\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:61 ../lib/rebuilddb.c:79
+#: lib/rebuilddb.c:60 lib/rebuilddb.c:78
 #, c-format
 msgid "record number %d in database is bad -- skipping it"
 msgstr ""
 
-#: ../lib/rebuilddb.c:73
+#: lib/rebuilddb.c:72
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr ""
 
-#: ../lib/rebuilddb.c:92
+#: lib/rebuilddb.c:91
 msgid "failed to rebuild database; original database remains in place\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:100
+#: lib/rebuilddb.c:99
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:102
+#: lib/rebuilddb.c:101
 #, c-format
 msgid "replaces files in %s with files from %s to recover"
 msgstr ""
 
 # , c-format
-#: ../lib/rebuilddb.c:108
+#: lib/rebuilddb.c:107
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "Não consegui abrir: %s\n"
 
-#: ../lib/rpmdb.c:159
+# , c-format
+#: lib/rpmchecksig.c:31
+#, fuzzy, c-format
+msgid "%s: fdOpen failed: %s\n"
+msgstr "Não consegui abrir: %s\n"
+
+#: lib/rpmchecksig.c:42
+#, fuzzy
+msgid "makeTempFile failed\n"
+msgstr "Construção falhou.\n"
+
+#: lib/rpmchecksig.c:74
+#, c-format
+msgid "%s: fdWrite failed: %s\n"
+msgstr ""
+
+#: lib/rpmchecksig.c:80
+#, c-format
+msgid "%s: fdRead failed: %s\n"
+msgstr ""
+
+#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:242
+#, c-format
+msgid "%s: readLead failed\n"
+msgstr ""
+
+#: lib/rpmchecksig.c:118
+#, c-format
+msgid "%s: Can't sign v1.0 RPM\n"
+msgstr ""
+
+#: lib/rpmchecksig.c:122
+#, c-format
+msgid "%s: Can't re-sign v2.0 RPM\n"
+msgstr ""
+
+#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:256
+#, c-format
+msgid "%s: rpmReadSignature failed\n"
+msgstr ""
+
+#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:261
+#, c-format
+msgid "%s: No signature available\n"
+msgstr ""
+
+#: lib/rpmchecksig.c:167
+#, c-format
+msgid "%s: writeLead failed: %s\n"
+msgstr ""
+
+#: lib/rpmchecksig.c:173
+#, c-format
+msgid "%s: rpmWriteSignature failed\n"
+msgstr ""
+
+#: lib/rpmchecksig.c:248
+#, c-format
+msgid "%s: No signature available (v1.0 RPM)\n"
+msgstr ""
+
+#: lib/rpmchecksig.c:408
+msgid "NOT OK"
+msgstr ""
+
+#: lib/rpmchecksig.c:409 lib/rpmchecksig.c:423
+msgid " (MISSING KEYS:"
+msgstr ""
+
+#: lib/rpmchecksig.c:411 lib/rpmchecksig.c:425
+msgid ") "
+msgstr ""
+
+#: lib/rpmchecksig.c:412 lib/rpmchecksig.c:426
+msgid " (UNTRUSTED KEYS:"
+msgstr ""
+
+#: lib/rpmchecksig.c:414 lib/rpmchecksig.c:428
+msgid ")"
+msgstr ""
+
+#: lib/rpmchecksig.c:422
+msgid "OK"
+msgstr ""
+
+#: lib/rpmdb.c:184
 #, fuzzy, c-format
 msgid "opening database mode 0x%x in %s\n"
 msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
 
-#: ../lib/rpmdb.c:182 ../lib/rpmdb.c:189
+# , c-format
+#: lib/rpmdb.c:193 lib/url.c:431
+#, fuzzy, c-format
+msgid "failed to open %s\n"
+msgstr "Não consegui abrir: %s\n"
+
+#: lib/rpmdb.c:206 lib/rpmdb.c:214
 #, c-format
 msgid "cannot get %s lock on database"
 msgstr ""
 
-#: ../lib/rpmdb.c:183
+#: lib/rpmdb.c:207
 msgid "exclusive"
 msgstr ""
 
-#: ../lib/rpmdb.c:190
+#: lib/rpmdb.c:215
 msgid "shared"
 msgstr ""
 
-#: ../lib/rpmdb.c:213
+#: lib/rpmdb.c:246
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
-#: ../lib/rpmdb.c:372
+#: lib/rpmdb.c:439
 #, c-format
 msgid "package %s not listed in %s"
 msgstr ""
 
-#: ../lib/rpmdb.c:383
+#: lib/rpmdb.c:450
 #, fuzzy, c-format
 msgid "package %s not found in %s"
 msgstr "não foi passado pacote para desinstalação"
 
-#: ../lib/rpmdb.c:407 ../lib/uninstall.c:40
+#: lib/rpmdb.c:475 lib/uninstall.c:85
 #, fuzzy, c-format
 msgid "cannot read header at %d for uninstall"
 msgstr "não foi passado pacote para desinstalação"
 
-#: ../lib/rpmdb.c:415
+#: lib/rpmdb.c:483
 msgid "package has no name"
 msgstr ""
 
-#: ../lib/rpmdb.c:417
+#: lib/rpmdb.c:485
 msgid "removing name index\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:422
+#: lib/rpmdb.c:490
 #, fuzzy
 msgid "package has no group\n"
 msgstr "não foi passado pacote para desinstalação"
 
-#: ../lib/rpmdb.c:424
+#: lib/rpmdb.c:492
 msgid "removing group index\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:431
+#: lib/rpmdb.c:499
 #, c-format
 msgid "removing provides index for %s\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:446
+#: lib/rpmdb.c:514
 #, c-format
 msgid "removing requiredby index for %s\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:458
+#: lib/rpmdb.c:526
 #, c-format
 msgid "removing trigger index for %s\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:469
+#: lib/rpmdb.c:537
 #, c-format
 msgid "removing conflict index for %s\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:486
+#: lib/rpmdb.c:554
 #, c-format
 msgid "removing file index for %s\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:495
+#: lib/rpmdb.c:563
 #, fuzzy
 msgid "package has no files\n"
 msgstr "não foi passado pacote para instalação"
 
-#: ../lib/rpmdb.c:568
+#: lib/rpmdb.c:645
 msgid "cannot allocate space for database"
 msgstr ""
 
-#: ../lib/rpmdb.c:639
+#: lib/rpmdb.c:711
 #, c-format
 msgid "cannot read header at %d for update"
 msgstr ""
 
-#: ../lib/rpmdb.c:648
+#: lib/rpmdb.c:720
 msgid "header changed size!"
 msgstr ""
 
-#: ../lib/rpmlead.c:41
+#: lib/rpminstall.c:128
+#, fuzzy
+msgid "counting packages to install\n"
+msgstr "não foi passado pacote para instalação"
+
+#: lib/rpminstall.c:132
+#, fuzzy, c-format
+msgid "found %d packages\n"
+msgstr "pesquise todos os pacotes"
+
+#: lib/rpminstall.c:141
+msgid "looking for packages to download\n"
+msgstr ""
+
+# "Project-Id-Version: rpm-2.5.3\n"
+# "PO-Revision-Date: 1997-09-11 14:00 MET DST\n"
+# "Last-Translator: Arnaldo Carvalho de Melo <acme@conectiva.com.br>\n"
+# "Language-Team: Portuguese <pt@li.org>\n"
+# "MIME-Version: 1.0\n"
+# "Content-Type: text/plain; charset=ISO-8859-1\n"
+# "Content-Transfer-Encoding: 8-bit\n"
+# , c-format
+#: lib/rpminstall.c:152
+#, fuzzy, c-format
+msgid "Retrieving %s\n"
+msgstr "RPM versão %s\n"
+
+#: lib/rpminstall.c:161
+#, c-format
+msgid " ... as %s\n"
+msgstr ""
+
+#: lib/rpminstall.c:165
+#, c-format
+msgid "skipping %s - transfer failed - %s\n"
+msgstr ""
+
+#: lib/rpminstall.c:182
+#, c-format
+msgid "retrieved %d packages\n"
+msgstr ""
+
+# , c-format
+#: lib/rpminstall.c:191 lib/rpminstall.c:332
+#, fuzzy, c-format
+msgid "cannot open file %s\n"
+msgstr "Não consegui abrir: %s\n"
+
+#: lib/rpminstall.c:207 lib/rpminstall.c:469
+#, fuzzy, c-format
+msgid "%s cannot be installed\n"
+msgstr "não foi passado pacote para instalação"
+
+#: lib/rpminstall.c:243
+#, fuzzy, c-format
+msgid "package %s is not relocateable\n"
+msgstr "não foi passado pacote para instalação"
+
+#: lib/rpminstall.c:261
+#, c-format
+msgid "error reading from file %s\n"
+msgstr ""
+
+#: lib/rpminstall.c:266
+#, c-format
+msgid "file %s requires a newer version of RPM\n"
+msgstr ""
+
+#: lib/rpminstall.c:283
+#, c-format
+msgid "found %d source and %d binary packages\n"
+msgstr ""
+
+#: lib/rpminstall.c:294
+#, fuzzy
+msgid "failed dependencies:\n"
+msgstr "lista dependências do pacote"
+
+#: lib/rpminstall.c:312
+#, fuzzy
+msgid "installing binary packages\n"
+msgstr "instale pacote"
+
+#: lib/rpminstall.c:397
+#, fuzzy, c-format
+msgid "searching for package %s\n"
+msgstr "instale pacote"
+
+#: lib/rpminstall.c:406
+#, c-format
+msgid "\"%s\" specifies multiple packages\n"
+msgstr ""
+
+#: lib/rpminstall.c:432
+#, fuzzy
+msgid "removing these packages would break dependencies:\n"
+msgstr "lista dependências do pacote"
+
+# , c-format
+#: lib/rpminstall.c:459
+#, fuzzy, c-format
+msgid "cannot open %s\n"
+msgstr "Não consegui abrir: %s\n"
+
+#: lib/rpminstall.c:464
+#, c-format
+msgid "Installing %s\n"
+msgstr ""
+
+#: lib/rpmlead.c:48
 #, c-format
 msgid "read failed: %s (%d)"
 msgstr ""
 
-#: ../lib/rpmrc.c:178
+#: lib/rpmrc.c:177
 #, c-format
 msgid "missing second ':' at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:181
+#: lib/rpmrc.c:180
 #, c-format
 msgid "missing architecture name at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:329
+#: lib/rpmrc.c:328
 #, c-format
 msgid "Incomplete data line at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:333
+#: lib/rpmrc.c:332
 #, c-format
 msgid "Too many args in data line at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:340
+#: lib/rpmrc.c:339
 #, c-format
 msgid "Bad arch/os number: %s (%s:%d)"
 msgstr ""
 
-#: ../lib/rpmrc.c:374
+#: lib/rpmrc.c:373
 #, c-format
 msgid "Incomplete default line at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:379
+#: lib/rpmrc.c:378
 #, c-format
 msgid "Too many args in default line at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:562
+#: lib/rpmrc.c:561
 #, c-format
 msgid "Cannot expand %s"
 msgstr ""
 
 # , c-format
-#: ../lib/rpmrc.c:577
+#: lib/rpmrc.c:576
 #, fuzzy, c-format
 msgid "Unable to open %s for reading: %s."
 msgstr "Não consegui abrir: %s\n"
 
 # , c-format
-#: ../lib/rpmrc.c:611
+#: lib/rpmrc.c:608
 #, fuzzy, c-format
 msgid "Failed to read %s: %s."
 msgstr "Não consegui ler o arquivo spec de %s\n"
 
-#: ../lib/rpmrc.c:642
+#: lib/rpmrc.c:638
 #, c-format
 msgid "missing ':' at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:658 ../lib/rpmrc.c:716
+#: lib/rpmrc.c:655 lib/rpmrc.c:729
 #, c-format
 msgid "missing argument for %s at %s:%d"
 msgstr ""
 
 # , c-format
-#: ../lib/rpmrc.c:672 ../lib/rpmrc.c:690
+#: lib/rpmrc.c:672 lib/rpmrc.c:694
 #, fuzzy, c-format
 msgid "%s expansion failed at %s:%d \"%s\""
 msgstr "Não consegui abrir: %s\n"
 
-#: ../lib/rpmrc.c:678
+#: lib/rpmrc.c:680
 #, c-format
 msgid "cannot open %s at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:706
+#: lib/rpmrc.c:721
 #, c-format
 msgid "missing architecture for %s at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:773
+#: lib/rpmrc.c:788
 #, c-format
 msgid "bad option '%s' at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:1109
+#: lib/rpmrc.c:1147
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: ../lib/rpmrc.c:1110
+#: lib/rpmrc.c:1148
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: ../lib/signature.c:147
+#: lib/signature.c:106
+#, c-format
+msgid "sigsize         : %d\n"
+msgstr ""
+
+#: lib/signature.c:107
+#, c-format
+msgid "Header + Archive: %d\n"
+msgstr ""
+
+#: lib/signature.c:108
+#, c-format
+msgid "expected size   : %d\n"
+msgstr ""
+
+#: lib/signature.c:112
+msgid "file is not regular -- skipping size check\n"
+msgstr ""
+
+#: lib/signature.c:134
 msgid "No signature\n"
 msgstr ""
 
-#: ../lib/signature.c:150
+#: lib/signature.c:137
 #, fuzzy
 msgid "Old PGP signature\n"
 msgstr "gere assinatura PGP"
 
-#: ../lib/signature.c:163
+#: lib/signature.c:149
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr ""
 
-#: ../lib/signature.c:167
+#: lib/signature.c:153
 #, fuzzy
 msgid "New Header signature\n"
 msgstr "gere assinatura PGP"
 
 #. 8-byte pad
-#: ../lib/signature.c:175 ../lib/signature.c:213
+#: lib/signature.c:160 lib/signature.c:202
 #, c-format
 msgid "Signature size: %d\n"
 msgstr ""
 
-#: ../lib/signature.c:176 ../lib/signature.c:214
+#: lib/signature.c:161 lib/signature.c:203
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr ""
 
-#: ../lib/signature.c:306 ../lib/signature.c:812
-msgid "Couldn't exec pgp"
+#: lib/signature.c:266
+#, c-format
+msgid "Couldn't exec pgp (%s)"
 msgstr ""
 
-#: ../lib/signature.c:317
+#: lib/signature.c:277
 msgid "pgp failed"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: ../lib/signature.c:324
+#: lib/signature.c:284
 msgid "pgp failed to write signature"
 msgstr ""
 
-#: ../lib/signature.c:329
+#: lib/signature.c:289
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: ../lib/signature.c:340 ../lib/signature.c:416
+#: lib/signature.c:300 lib/signature.c:377
 #, fuzzy
 msgid "unable to read the signature"
 msgstr "gere assinatura PGP"
 
-#: ../lib/signature.c:345
+#: lib/signature.c:305
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: ../lib/signature.c:382 ../lib/signature.c:787
+#: lib/signature.c:343 lib/signature.c:686
 msgid "Couldn't exec gpg"
 msgstr ""
 
-#: ../lib/signature.c:393
+#: lib/signature.c:354
 #, fuzzy
 msgid "gpg failed"
 msgstr "Construção falhou.\n"
 
 #. GPG failed to write signature
 #. Just in case
-#: ../lib/signature.c:400
+#: lib/signature.c:361
 #, fuzzy
 msgid "gpg failed to write signature"
 msgstr "gere assinatura PGP"
 
-#: ../lib/signature.c:405
+#: lib/signature.c:366
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: ../lib/signature.c:421
+#: lib/signature.c:382
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
-#: ../lib/signature.c:436
-#, c-format
-msgid "sigsize         : %d\n"
-msgstr ""
+#: lib/signature.c:409
+#, fuzzy
+msgid "Generating signature using PGP.\n"
+msgstr "gere assinatura PGP"
 
-#: ../lib/signature.c:437
-#, c-format
-msgid "Header + Archive: %d\n"
-msgstr ""
+#: lib/signature.c:415
+#, fuzzy
+msgid "Generating signature using GPG.\n"
+msgstr "gere assinatura PGP"
 
-#: ../lib/signature.c:438
-#, c-format
-msgid "expected size   : %d\n"
+#: lib/signature.c:492 lib/signature.c:554
+msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr ""
 
-#: ../lib/signature.c:442
-msgid "file is not regular -- skipping size check\n"
+#: lib/signature.c:552 lib/signature.c:625
+msgid "exec failed!\n"
 msgstr ""
 
-#: ../lib/signature.c:560 ../lib/signature.c:607
-msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
+#: lib/signature.c:627
+msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr ""
 
-#: ../lib/signature.c:605 ../lib/signature.c:677
-msgid "exec failed!\n"
+#: lib/signature.c:715
+msgid "Couldn't exec pgp"
 msgstr ""
 
-#: ../lib/signature.c:679
-msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
+#. @notreached@
+#. This case should have been screened out long ago.
+#: lib/signature.c:719 lib/signature.c:772
+msgid "Invalid %%_signature spec in macro file"
 msgstr ""
 
-#: ../lib/signature.c:716
+#: lib/signature.c:752
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr ""
 
-#: ../lib/signature.c:728
+#: lib/signature.c:764
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
-#. Currently the calling function (rpm.c:main) is checking this and
-#. * doing a better job.  This section should never be accessed.
-#.
-#: ../lib/signature.c:736 ../lib/signature.c:816
-msgid "Invalid %%_signature spec in macro file"
-msgstr ""
-
-#: ../lib/transaction.c:793
+#: lib/transaction.c:363
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
@@ -3527,81 +3561,143 @@ msgstr ""
 # "Content-Type: text/plain; charset=ISO-8859-1\n"
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
-#: ../lib/transaction.c:799
+#: lib/transaction.c:370
 #, fuzzy, c-format
 msgid "excluding %s\n"
 msgstr "RPM versão %s\n"
 
-#: ../lib/transaction.c:887
+#: lib/transaction.c:489
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: ../lib/uninstall.c:51
+#: lib/uninstall.c:37
+#, c-format
+msgid "cannot remove %s - directory not empty"
+msgstr ""
+
+#: lib/uninstall.c:40
+#, c-format
+msgid "rmdir of %s failed: %s"
+msgstr ""
+
+#: lib/uninstall.c:48
+#, c-format
+msgid "removal of %s failed: %s"
+msgstr ""
+
+#: lib/uninstall.c:97
 #, fuzzy, c-format
 msgid "cannot read packages named %s for uninstall"
 msgstr "não foi passado pacote para desinstalação"
 
-#: ../lib/uninstall.c:79
+#: lib/uninstall.c:130
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: ../lib/uninstall.c:124
+#: lib/uninstall.c:191
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: ../lib/uninstall.c:138
+#: lib/uninstall.c:204
 msgid "removing database entry\n"
 msgstr ""
 
-#: ../lib/uninstall.c:289
+#: lib/uninstall.c:365
 msgid "execution of script failed"
 msgstr ""
 
-#: ../lib/uninstall.c:348
+#: lib/url.c:144
 #, c-format
-msgid "cannot remove %s - directory not empty"
+msgid "Password for %s@%s: "
 msgstr ""
 
-#: ../lib/uninstall.c:351
+#: lib/url.c:168 lib/url.c:194
 #, c-format
-msgid "rmdir of %s failed: %s"
+msgid "error: %sport must be a number\n"
+msgstr ""
+
+#: lib/url.c:279
+msgid "url port must be a number\n"
 msgstr ""
 
-#: ../lib/uninstall.c:359
+#. XXX PARANOIA
+#: lib/url.c:317
 #, c-format
-msgid "removal of %s failed: %s"
+msgid "logging into %s as %s, pw %s\n"
 msgstr ""
 
-#: ../lib/verify.c:36
+# , c-format
+#: lib/url.c:446
+#, fuzzy, c-format
+msgid "failed to create %s\n"
+msgstr "Não consegui abrir o pipe tar: %s\n"
+
+#: lib/verify.c:36
 #, fuzzy
 msgid "don't verify files in package"
 msgstr "instale pacote"
 
-#: ../lib/verify.c:206
+#: lib/verify.c:206
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 
-#: ../lib/verify.c:224
+#: lib/verify.c:224
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: ../lib/verify.c:257
+#: lib/verify.c:257
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: ../lib/verify.c:321
+#: lib/verify.c:319
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: ../lib/verify.c:369
+#: lib/verify.c:367
 msgid "rpmVerify: rpmdbOpen() failed\n"
 msgstr ""
 
 #, fuzzy
+#~ msgid "failed build prerequisites:\n"
+#~ msgstr "lista dependências do pacote"
+
+# , c-format
+#, fuzzy
+#~ msgid "Unable to write %s"
+#~ msgstr "Não consegui abrir: %s\n"
+
+#~ msgid "unexpected query specifiers"
+#~ msgstr "especificadores de pesquisa não esperados"
+
+#~ msgid "--nofiles may only be specified during package verification"
+#~ msgstr ""
+#~ "--nofiles somente pode ser especificado durante a verificação de pacotes"
+
+#, fuzzy
+#~ msgid "--clean may only be used with -b and -t"
+#~ msgstr "--clean somente pode ser usado durante a construção de pacotes"
+
+#, fuzzy
+#~ msgid "--rmsource may only be used with -b and -t"
+#~ msgstr "--short-circuit somente pode ser usado com -bc, -bi, -tc ou -ti"
+
+#~ msgid "--short-circuit may only be used during package building"
+#~ msgstr ""
+#~ "--short-circuit somente pode ser usado durante a construção de pacotes"
+
+#, fuzzy
+#~ msgid "--short-circuit may only be used with -bc, -bi, -bs, -tc -ti, or -ts"
+#~ msgstr "--short-circuit somente pode ser usado com -bc, -bi, -tc ou -ti"
+
+#, fuzzy
+#~ msgid "pgp version 5 not found: "
+#~ msgstr "não foi passado pacote para desinstalação"
+
+#, fuzzy
 #~ msgid "--prefix is broke, use --relocate /oldpath=/newpath instead"
 #~ msgstr "                        [--nomd5] [alvos]"
 
index 94fd415..02e0a6d 100644 (file)
--- a/po/ru.po
+++ b/po/ru.po
 msgid ""
 msgstr ""
-"POT-Creation-Date: 1999-06-02 13:59-0400\n"
+"POT-Creation-Date: 1999-09-29 19:30-0400\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=koi8-r\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Date: 1999-05-27 17:30:00+0300\n"
 "From: Sergey Kubushin <ksi@ksi-linux.com>\n"
 
-#: ../build.c:24 ../install.c:221 ../install.c:372
+#: build.c:23 lib/rpminstall.c:222 lib/rpminstall.c:382
 #, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ %s/packages.rpm\n"
 
-#: ../build.c:34
+#: build.c:33
 #, fuzzy
 msgid "failed build dependencies:\n"
 msgstr "ÎÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ:\n"
 
-#: ../build.c:83 ../build.c:96
+#: build.c:61
+#, c-format
+msgid "Unable to open spec file: %s\n"
+msgstr "îÅ ÍÏÇÕ ÏÔËÒÙÔØ ÆÁÊÌ spec: %s\n"
+
+#: build.c:117 build.c:130
 #, c-format
 msgid "Failed to open tar pipe: %s\n"
 msgstr "îÅ ÍÏÇÕ ÏÔËÒÙÔØ ËÁÎÁÌ tar: %s\n"
 
 #. Give up
-#: ../build.c:104
+#: build.c:138
 #, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "îÅ ÍÏÇÕ ÐÒÏÞÅÓÔØ ÆÁÊÌ spec ÉÚ %s\n"
 
-#: ../build.c:129
+#: build.c:163
 #, c-format
 msgid "Failed to rename %s to %s: %s\n"
 msgstr "îÅ ÍÏÇÕ ÐÅÒÅÉÍÅÎÏ×ÁÔØ %s × %s: %s\n"
 
-#: ../build.c:167
+#: build.c:201
 #, c-format
 msgid "File is not a regular file: %s\n"
 msgstr "îÅ ÏÂÙÞÎÙÊ ÆÁÊÌ: %s\n"
 
-#: ../build.c:172
-#, c-format
-msgid "Unable to open spec file: %s\n"
-msgstr "îÅ ÍÏÇÕ ÏÔËÒÙÔØ ÆÁÊÌ spec: %s\n"
-
-#: ../build.c:180
-#, c-format
-msgid "File contains non-printable characters(%c): %s\n"
-msgstr "æÁÊÌ ÓÏÄÅÒÖÉÔ ÎÅÐÅÞÁÔÁÅÍÙÅ ÓÉÍ×ÏÌÙ(%c): %s\n"
+#: build.c:207
+#, fuzzy, c-format
+msgid "File %s does not appear to be a specfile.\n"
+msgstr "%s ÎÅ ÐÏÈÏÖ ÎÁ ÐÁËÅÔ RPM...\n"
 
 #. parse up the build operators
-#: ../build.c:233
+#: build.c:258
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr "ãÅÌÅ×ÙÅ ÐÌÁÔÆÏÒÍÙ: %s\n"
 
-#: ../build.c:242
+#: build.c:267
 #, c-format
 msgid "Building for target %s\n"
 msgstr "óÂÏÒËÁ ÄÌÑ ÃÅÌÅ×ÏÊ ÐÌÁÔÆÏÒÍÙ %s\n"
 
-#: ../build.c:286
+#: build.c:311
 msgid "buildroot already specified"
 msgstr "buildroot ÕÖÅ ÚÁÄÁÎ"
 
-#: ../build.c:292
+#: build.c:317
 msgid "--buildarch has been obsoleted.  Use the --target option instead.\n"
 msgstr "--buildarch ÕÖÅ ÎÅ × ÍÏÄÅ :) éÓÐÏÌØÚÕÊÔÅ ÏÐÃÉÀ --target.\n"
 
-#: ../build.c:296
+#: build.c:321
 msgid "--buildos has been obsoleted.  Use the --target option instead.\n"
 msgstr "--buildos ÕÖÅ ÎÅ × ÍÏÄÅ :) éÓÐÏÌØÚÕÊÔÅ ÏÐÃÉÀ --target.\n"
 
-#: ../build.c:317
+#: build.c:342
 msgid "override build architecture"
 msgstr "ÐÅÒÅÏÐÒÅÄÅÌÉÔØ ÁÒÈÉÔÅËÔÕÒÕ ÓÏÂÉÒÁÅÍÏÇÏ ÐÁËÅÔÁ"
 
-#: ../build.c:319
+#: build.c:344
 msgid "override build operating system"
 msgstr "ÐÅÒÅÏÐÒÅÄÅÌÉÔØ ïó ÓÏÂÉÒÁÅÍÏÇÏ ÐÁËÅÔÁ"
 
-#: ../build.c:321
+#: build.c:346
 msgid "override build root"
 msgstr "ÐÅÒÅÏÐÒÅÄÅÌÉÔØ build root"
 
-#: ../build.c:323 ../rpm.c:457
+#: build.c:348 rpm.c:457
 msgid "remove build tree when done"
 msgstr "ÐÏÓÌÅ ÚÁ×ÅÒÛÅÎÉÑ ÕÄÁÌÉÔØ ÄÅÒÅ×Ï ÉÓÈÏÄÎÉËÏ×"
 
-#: ../build.c:325
+#: build.c:350
 msgid "do not execute any stages of the build"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ ÎÉËÁËÉÈ ÜÔÁÐÏ× ÓÂÏÒËÉ"
 
-#: ../build.c:327
+#: build.c:352
 msgid "do not accept I18N msgstr's from specfile"
 msgstr "ÎÅ ÐÒÉÎÉÍÁÔØ ÓÔÒÏË I18N ÉÚ spec-ÆÁÊÌÁ"
 
-#: ../build.c:329
+#: build.c:354
 msgid "remove sources when done"
 msgstr "ÐÏÓÌÅ ÚÁ×ÅÒÛÅÎÉÑ ÕÄÁÌÉÔØ ÉÓÈÏÄÎÉËb"
 
-#: ../build.c:331
+#: build.c:356
 msgid "remove specfile when done"
 msgstr "ÐÏÓÌÅ ÚÁ×ÅÒÛÅÎÉÑ ÕÄÁÌÉÔØ spec-ÆÁÊÌ"
 
-#: ../build.c:333 ../rpm.c:455
+#: build.c:358 rpm.c:455
 msgid "skip straight to specified stage (only for c,i)"
 msgstr "ÐÅÒÅÊÔÉ ÎÅÐÏÓÒÅÄÓÔ×ÅÎÎÏ Ë ÕËÁÚÁÎÎÏÍÕ ÜÔÁÐÕ (ÔÏÌØËÏ ÄÌÑ c,i)"
 
-#: ../build.c:335
+#: build.c:360
 msgid "override target platform"
 msgstr "ÐÅÒÅÏÐÒÅÄÅÌÉÔØ ÃÅÌÅ×ÕÀ ÐÌÁÔÆÏÒÍÕ"
 
-#: ../build.c:337
+#: build.c:362
 msgid "lookup I18N strings in specfile catalog"
 msgstr "ÉÓËÁÔØ ÓÔÒÏËÉ I18N × ËÁÔÁÌÏÇÅ ÓÏ spec-ÆÁÊÌÏÍ"
 
-#: ../checksig.c:27 ../checksig.c:166
-#, c-format
-msgid "%s: Open failed\n"
-msgstr "%s: ïÛÉÂËÁ ÏÔËÒÙÔÉÑ\n"
-
-#: ../checksig.c:31 ../checksig.c:171
-#, c-format
-msgid "%s: readLead failed\n"
-msgstr "%s: ÏÛÉÂËÁ readLead\n"
-
-#: ../checksig.c:35
-#, c-format
-msgid "%s: Can't sign v1.0 RPM\n"
-msgstr "%s: îÅ ÍÏÇÕ ÐÏÄÐÉÓÁÔØ RPM v1.0\n"
-
-#: ../checksig.c:39
-#, c-format
-msgid "%s: Can't re-sign v2.0 RPM\n"
-msgstr "%s: îÅ ÍÏÇÕ ÐÅÒÅÐÏÄÐÉÓÁÔØ RPM v2.0\n"
-
-#: ../checksig.c:43 ../checksig.c:181
-#, c-format
-msgid "%s: rpmReadSignature failed\n"
-msgstr "%s: ÏÛÉÂËÁ rpmReadSignature\n"
-
-#: ../checksig.c:56 ../checksig.c:195
-msgid "Couldn't read the header/archive"
-msgstr "îÅ ÍÏÇÕ ÐÒÏÞÉÔÁÔØ ÈÅÄÅÒ/ÁÒÈÉ×"
-
-#: ../checksig.c:63
-msgid "Couldn't write header/archive to temp file"
-msgstr "îÅ ÍÏÇÕ ÚÁÐÉÓÁÔØ ÈÅÄÅÒ/ÁÒÈÉ× ×Ï ×ÒÅÍÅÎÎÙÊ ÆÁÊÌ"
-
-#: ../build/pack.c:330 ../checksig.c:91
-#, c-format
-msgid "Generating signature: %d\n"
-msgstr "çÅÎÅÒÉÒÕÀ ÐÏÄÐÉÓØ: %d\n"
-
-#: ../checksig.c:114
-msgid "Couldn't read sigtarget"
-msgstr "îÅ ÍÏÇÕ ÐÒÏÞÅÓÔØ ÆÁÊÌ, ÐÏÄÌÅÖÁÝÉÊ ÐÏÄÐÉÓÉ"
-
-#: ../checksig.c:123
-msgid "Couldn't write package"
-msgstr "îÅ ÍÏÇÕ ÚÁÐÉÓÁÔØ ÐÁËÅÔ"
-
-#: ../checksig.c:176
-#, c-format
-msgid "%s: No signature available (v1.0 RPM)\n"
-msgstr "%s: ðÏÄÐÉÓÉ ÎÅÔ (RPM v1.0)\n"
-
-#: ../checksig.c:186
-#, c-format
-msgid "%s: No signature available\n"
-msgstr "%s: ðÏÄÐÉÓÉ ÎÅÔ\n"
-
-#: ../checksig.c:202
-#, c-format
-msgid "Unable to write %s"
-msgstr "îÅ ÍÏÇÕ ÚÁÐÉÓÁÔØ %s"
-
-#: ../checksig.c:328
-msgid "NOT OK"
-msgstr "îå Ok"
-
-#: ../checksig.c:329 ../checksig.c:343
-msgid " (MISSING KEYS:"
-msgstr " (ïôóõôóô÷õàô ëìàþé:"
-
-#: ../checksig.c:331 ../checksig.c:345
-msgid ") "
-msgstr ") "
-
-#: ../checksig.c:332 ../checksig.c:346
-msgid " (UNTRUSTED KEYS:"
-msgstr " ("
-
-#: ../checksig.c:334 ../checksig.c:348
-msgid ")"
-msgstr ")"
-
-#: ../checksig.c:342
-msgid "OK"
-msgstr "Ok"
-
-#: ../convertdb.c:38
+#: convertdb.c:39
 msgid "RPM database already exists"
 msgstr "âÁÚÁ ÄÁÎÎÙÈ RPM ÕÖÅ ÓÕÝÅÓÔ×ÕÅÔ"
 
-#: ../convertdb.c:43
+#: convertdb.c:44
 msgid "Old db is missing"
 msgstr "ïÔÓÕÔÓÔ×ÕÅÔ ÓÔÁÒÁÑ ÂÁÚÁ ÄÁÎÎÙÈ"
 
-#: ../convertdb.c:54
+#: convertdb.c:55
 #, fuzzy
 msgid "failed to create RPM database /var/lib/rpm"
 msgstr "ÎÅÕÄÁÞÁ ÓÏÚÄÁÎÉÑ ÂÁÚÙ ÄÁÎÎÙÈ RPM /var/state/rpm"
 
-#: ../convertdb.c:60
+#: convertdb.c:61
 msgid "Old db is corrupt"
 msgstr "óÔÁÒÁÑ ÂÁÚÁ ÄÁÎÎÙÈ ÐÏ×ÒÅÖÄÅÎÁ"
 
-#: ../convertdb.c:69
+#: convertdb.c:70
 #, c-format
 msgid "oldrpmdbGetPackageInfo failed &olddb = %p olddb.packages = %p\n"
 msgstr "ÎÅÕÄÁÞÁ oldrpmdbGetPackageInfo: &olddb = %p olddb.packages = %p\n"
 
-#: ../convertdb.c:201
+#: convertdb.c:204
 msgid "rpmconvert: no arguments expected"
 msgstr "rpmconvert: ÁÒÇÕÍÅÎÔÙ ÎÅ ÎÕÖÎÙ"
 
-#: ../convertdb.c:207
+#: convertdb.c:210
 #, fuzzy
 msgid "rpmconvert 1.0 - converting database in /var/lib/rpm\n"
 msgstr "rpmconvert 1.0 - ËÏÎ×ÅÒÔÉÒÕÀ ÂÁÚÕ ÄÁÎÎÙÈ × /var/state/rpm\n"
 
-#: ../ftp.c:642
-msgid "Success"
-msgstr "õÄÁÌÏÓØ"
-
-#: ../ftp.c:645
-msgid "Bad server response"
-msgstr "îÅ×ÅÒÎÙÊ ÏÔ×ÅÔ ÓÅÒ×ÅÒÁ"
-
-#: ../ftp.c:648
-msgid "Server IO error"
-msgstr "ïÛÉÂËÁ ××ÏÄÁ/×Ù×ÏÄÁ ÓÅÒ×ÅÒÁ"
-
-#: ../ftp.c:651
-msgid "Server timeout"
-msgstr "ôÁÊÍÁÕÔ ÓÅÒ×ÅÒÁ"
-
-#: ../ftp.c:654
-msgid "Unable to lookup server host address"
-msgstr "îÅ ÍÏÇÕ ÎÁÊÔÉ IP-ÁÄÒÅÓ ÓÅÒ×ÅÒÁ"
-
-#: ../ftp.c:657
-msgid "Unable to lookup server host name"
-msgstr "îÅ ÍÏÇÕ ÎÁÊÔÉ ÉÍÑ ÓÅÒ×ÅÒÁ"
-
-#: ../ftp.c:660
-msgid "Failed to connect to server"
-msgstr "îÅ ÍÏÇÕ ÓÏÅÄÉÎÉÔØÓÑ Ó ÓÅÒ×ÅÒÏÍ"
-
-#: ../ftp.c:663
-msgid "Failed to establish data connection to server"
-msgstr "îÅ ÍÏÇÕ ÕÓÔÁÎÏ×ÉÔØ ÓÏÅÄÉÎÅÎÉÅ ÄÌÑ ÄÁÎÎÙÈ Ó ÓÅÒ×ÅÒÏÍ"
-
-#: ../ftp.c:666
-msgid "IO error to local file"
-msgstr "ïÛÉÂËÁ ××ÏÄÁ/×Ù×ÏÄÁ × ÌÏËÁÌØÎÙÊ ÆÁÊÌ"
-
-#: ../ftp.c:669
-msgid "Error setting remote server to passive mode"
-msgstr "ïÛÉÂËÁ ÐÒÉ ÐÅÒÅ×ÏÄÅ ÕÄÁÌÅÎÎÏÇÏ ÓÅÒ×ÅÒÁ × ÐÁÓÓÉ×ÎÙÊ ÒÅÖÉÍ"
-
-#: ../ftp.c:672
-msgid "File not found on server"
-msgstr "æÁÊÌ ÎÅ ÎÁÊÄÅΠÎÁ ÓÅÒ×ÅÒÅ"
-
-#: ../ftp.c:675
-msgid "Abort in progress"
-msgstr "ïÔÍÅÎÁ × ÐÒÏÃÅÓÓÅ"
-
-#: ../ftp.c:679
-msgid "Unknown or unexpected error"
-msgstr "îÅÉÚ×ÅÓÔÎÁÑ ÉÌÉ ÎÅÏÖÉÄÁÎÎÁÑ ÏÛÉÂËÁ"
-
-#: ../install.c:127
-msgid "counting packages to install\n"
-msgstr "ÓÞÉÔÁÀ ÐÁËÅÔÙ ÄÌÑ ÕÓÔÁÎÏ×ËÉ\n"
-
-#: ../install.c:131
-#, c-format
-msgid "found %d packages\n"
-msgstr "ÎÁÊÄÅÎÏ %d ÐÁËÅÔÏ×\n"
-
-#: ../install.c:140
-msgid "looking for packages to download\n"
-msgstr "ÉÝÕ ÐÁËÅÔÙ ÄÌÑ ÐÏÌÕÞÅÎÉÑ Ó ftp/http\n"
-
-#: ../install.c:151
-#, c-format
-msgid "Retrieving %s\n"
-msgstr "ðÏÌÕÞÁÀ %s\n"
-
-#: ../install.c:160
-#, c-format
-msgid " ... as %s\n"
-msgstr " ... ËÁË %s\n"
-
-#: ../install.c:164
-#, c-format
-msgid "skipping %s - transfer failed - %s\n"
-msgstr "ÐÒÏÐÕÓËÁÀ %s - ÏÛÉÂËÁ ÐÅÒÅÄÁÞÉ - %s\n"
-
-#: ../install.c:181
-#, c-format
-msgid "retrieved %d packages\n"
-msgstr "ÐÏÌÕÞÅÎÏ %d ÐÁËÅÔÏ×\n"
-
-#: ../install.c:190 ../install.c:322
-#, c-format
-msgid "cannot open file %s\n"
-msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ ÆÁÊÌ %s\n"
-
-#: ../install.c:202 ../lib/query.c:569
-#, c-format
-msgid "%s does not appear to be a RPM package\n"
-msgstr "%s ÎÅ ÐÏÈÏÖ ÎÁ ÐÁËÅÔ RPM...\n"
-
-#: ../install.c:206 ../install.c:459
-#, c-format
-msgid "%s cannot be installed\n"
-msgstr "%s ÎÅ ÍÏÖÅÔ ÂÙÔØ ÕÓÔÁÎÏ×ÌÅÎ\n"
-
-#: ../install.c:242
-#, c-format
-msgid "package %s is not relocateable\n"
-msgstr "ÐÁËÅÔ %s - ÎÅ ÐÅÒÅÍÅÝÁÅÍÙÊ\n"
-
-#: ../install.c:254
-#, c-format
-msgid "error reading from file %s\n"
-msgstr "ÏÛÉÂËÁ ÞÔÅÎÉÑ ÉÚ ÆÁÊÌÁ %s\n"
-
-#: ../install.c:257
-#, c-format
-msgid "file %s requires a newer version of RPM\n"
-msgstr "ÆÁÊÌ %s ÔÒÅÂÕÅÔ ÂÏÌÅÅ ÎÏ×ÏÊ ×ÅÒÓÉÉ RPM\n"
-
-#: ../install.c:274
-#, c-format
-msgid "found %d source and %d binary packages\n"
-msgstr "ÎÁÊÄÅÎÏ %d ÉÓÈÏÄÎÙÈ É %d ÂÉÎÁÒÎÙÈ ÐÁËÅÔÏ×\n"
-
-#: ../install.c:284
-msgid "failed dependencies:\n"
-msgstr "ÎÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ:\n"
-
-#: ../install.c:302
-msgid "installing binary packages\n"
-msgstr "ÕÓÔÁÎÁ×ÌÉ×ÁÀ ÂÉÎÁÒÎÙÅ ÐÁËÅÔÙ\n"
-
-#: ../install.c:383 ../lib/query.c:717
-#, c-format
-msgid "package %s is not installed\n"
-msgstr "ÐÁËÅÔ %s ÎÅ ÕÓÔÁÎÏ×ÌÅÎ\n"
-
-#: ../install.c:387
-#, c-format
-msgid "searching for package %s\n"
-msgstr "ÉÝÕ ÐÁËÅÔ %s\n"
-
-#: ../install.c:396
-#, c-format
-msgid "\"%s\" specifies multiple packages\n"
-msgstr "\"%s\" ÚÁÄÁÅÔ ÎÅÓËÏÌØËÏ ÐÁËÅÔÏ×\n"
-
-#: ../install.c:422
-msgid "removing these packages would break dependencies:\n"
-msgstr "ÕÄÁÌÅÎÉÅ ÜÔÉÈ ÐÁËÅÔÏ× ÎÁÒÕÛÉÔ ÚÁ×ÉÓÉÍÏÓÔÉ:\n"
-
-#: ../install.c:449
-#, c-format
-msgid "cannot open %s\n"
-msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ %s\n"
-
-#: ../install.c:454
-#, c-format
-msgid "Installing %s\n"
-msgstr "õÓÔÁÎÁ×ÌÉ×ÁÀ %s\n"
-
-#: ../oldrpmdb.c:454
+#: oldrpmdb.c:454
 #, c-format
 msgid "pulling %s from database\n"
 msgstr "ÉÚ×ÌÅËÁÀ %s ÉÚ ÂÁÚÙ ÄÁÎÎÙÈ\n"
 
-#: ../oldrpmdb.c:461
+#: oldrpmdb.c:461
 msgid "package not found in database"
 msgstr "ÐÁËÅÔ ÎÅ ÎÁÊÄÅΠנÂÁÚÅ ÄÁÎÎÙÈ"
 
-#: ../oldrpmdb.c:522
+#: oldrpmdb.c:522
 msgid "no copyright!\n"
 msgstr "ÎÅÔ ËÏÐÉÒÁÊÔÁ!\n"
 
-#: ../rpm.c:159
+#: rpm.c:159
 #, c-format
 msgid "rpm: %s\n"
 msgstr "rpm: %s\n"
 
-#: ../rpm.c:170
+#: rpm.c:170
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM ×ÅÒÓÉÑ %s\n"
 
-#: ../rpm.c:174
+#: rpm.c:174
 msgid "Copyright (C) 1998 - Red Hat Software"
 msgstr "Copyright (C) 1998 - Red Hat Software"
 
-#: ../rpm.c:175
-msgid ""
-"This may be freely redistributed under the terms of the GNU GPL"
+#: rpm.c:175
+msgid "This may be freely redistributed under the terms of the GNU GPL"
 msgstr "íÏÖÅÔ Ó×ÏÂÏÄÎÏ ÒÁÓÐÒÏÓÔÒÁÎÑÔØÓÑ ÎÁ ÕÓÌÏ×ÉÑÈ GNU GPL."
 
-#: ../rpm.c:184
+#: rpm.c:183
 msgid "usage: rpm {--help}"
 msgstr ""
 "éÓÐÏÌØÚÏ×ÁÎÉÅ:\n"
 "       rpm {--help}"
 
-#: ../rpm.c:185
+#: rpm.c:184
 msgid "       rpm {--version}"
 msgstr "       rpm {--version}"
 
-#: ../rpm.c:186
+#: rpm.c:185
 msgid "       rpm {--initdb}   [--dbpath <dir>]"
 msgstr "       rpm {--initdb}   [--dbpath <ËÁÔÁÌÏÇ>]"
 
-#: ../rpm.c:187
+#: rpm.c:186
 msgid ""
 "       rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 "       rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
 
-#: ../rpm.c:188
+#: rpm.c:187
 msgid "                        [--replacepkgs] [--replacefiles] [--root <dir>]"
 msgstr ""
 "                        [--replacepkgs] [--replacefiles] [--root <ËÁÔÁÌÏÇ>]"
 
-#: ../rpm.c:189
+#: rpm.c:188
 msgid "                        [--excludedocs] [--includedocs] [--noscripts]"
 msgstr "                        [--excludedocs] [--includedocs] [--noscripts]"
 
-#: ../rpm.c:190
+#: rpm.c:189
 msgid ""
 "                        [--rcfile <file>] [--ignorearch] [--dbpath <dir>]"
 msgstr ""
 "                        [--rcfile <file>] [--ignorearch] [--dbpath <ËÁÔÁÌÏÇ>]"
 
-#: ../rpm.c:191
+#: rpm.c:190
 msgid ""
 "                        [--prefix <dir>] [--ignoreos] [--nodeps] [--allfiles]"
 msgstr ""
 "                        [--prefix <ËÁÔ.>] [--ignoreos] [--nodeps] "
 "[--allfiles]"
 
-#: ../rpm.c:192
+#: rpm.c:191
 msgid ""
 "                        [--ftpproxy <host>] [--ftpport <port>] [--justdb]"
 msgstr ""
 "                        [--ftpproxy <host>] [--ftpport <ÐÏÒÔ>] [--justdb]"
 
-#: ../rpm.c:193 ../rpm.c:202 ../rpm.c:211
+#: rpm.c:192 rpm.c:201 rpm.c:210
 msgid "                        [--httpproxy <host>] [--httpport <port>] "
 msgstr "                        [--httpproxy <host>] [--httpport <ÐÏÒÔ>]"
 
-#: ../rpm.c:194 ../rpm.c:204
+#: rpm.c:193 rpm.c:203
 msgid "                        [--noorder] [--relocate oldpath=newpath]"
 msgstr "                        [--noorder] [--relocate oldpath=newpath]"
 
-#: ../rpm.c:195
+#: rpm.c:194
 msgid ""
 "                        [--badreloc] [--notriggers] [--excludepath <path>]"
 msgstr ""
 "                        [--badreloc] [--notriggers] [--excludepath <ÐÕÔØ>]"
 
-#: ../rpm.c:196
+#: rpm.c:195
 msgid "                        [--ignoresize] file1.rpm ... fileN.rpm"
 msgstr "                        [--ignoresize] file1.rpm ... fileN.rpm"
 
-#: ../rpm.c:197
+#: rpm.c:196
 msgid ""
 "       rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 "       rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]"
 
-#: ../rpm.c:198
+#: rpm.c:197
 msgid "                        [--oldpackage] [--root <dir>] [--noscripts]"
 msgstr ""
 "                        [--oldpackage] [--root <ËÁÔÁÌÏÇ>] [--noscripts]"
 
-#: ../rpm.c:199
+#: rpm.c:198
 msgid ""
 "                        [--excludedocs] [--includedocs] [--rcfile <file>]"
 msgstr ""
 "                        [--excludedocs] [--includedocs] [--rcfile <ÆÁÊÌ>]"
 
-#: ../rpm.c:200
+#: rpm.c:199
 msgid ""
 "                        [--ignorearch]  [--dbpath <dir>] [--prefix <dir>] "
 msgstr ""
 "                        [--ignorearch]  [--dbpath <ËÁÔ.>] [--prefix <ËÁÔ.>] "
 
-#: ../rpm.c:201
+#: rpm.c:200
 msgid "                        [--ftpproxy <host>] [--ftpport <port>]"
 msgstr "                        [--ftpproxy <host>] [--ftpport <ÐÏÒÔ>]"
 
-#: ../rpm.c:203
+#: rpm.c:202
 msgid "                        [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
 msgstr ""
 "                        [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
 
-#: ../rpm.c:205
+#: rpm.c:204
 msgid ""
 "                        [--badreloc] [--excludepath <path>] [--ignoresize]"
 msgstr ""
 "                        [--badreloc] [--excludepath <ÐÕÔØ>] [--ignoresize]"
 
-#: ../rpm.c:206
+#: rpm.c:205
 msgid "                        file1.rpm ... fileN.rpm"
 msgstr "                        file1.rpm ... fileN.rpm"
 
-#: ../rpm.c:207
+#: rpm.c:206
 msgid "       rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]"
 msgstr "       rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]"
 
-#: ../rpm.c:208
+#: rpm.c:207
 msgid "                        [--scripts] [--root <dir>] [--rcfile <file>]"
 msgstr ""
 "                        [--scripts] [--root <ËÁÔÁÌÏÇ>] [--rcfile <ÆÁÊÌ>]"
 
-#: ../rpm.c:209
+#: rpm.c:208
 msgid "                        [--whatprovides] [--whatrequires] [--requires]"
 msgstr "                        [--whatprovides] [--whatrequires] [--requires]"
 
-#: ../rpm.c:210
+#: rpm.c:209
 msgid ""
 "                        [--triggeredby] [--ftpuseport] [--ftpproxy <host>]"
 msgstr ""
 "                        [--triggeredby] [--ftpuseport] [--ftpproxy <host>]"
 
-#: ../rpm.c:212
+#: rpm.c:211
 msgid ""
 "                        [--ftpport <port>] [--provides] [--triggers] [--dump]"
 msgstr ""
 "                        [--ftpport <port>] [--provides] [--triggers] [--dump]"
 
-#: ../rpm.c:213
+#: rpm.c:212
 msgid "                        [--changelog] [--dbpath <dir>] [targets]"
 msgstr "                        [--changelog] [--dbpath <ËÁÔÁÌÏÇ>] [ÃÅÌÉ]"
 
-#: ../rpm.c:214
+#: rpm.c:213
 msgid "       rpm {--verify -V -y} [-afpg] [--root <dir>] [--rcfile <file>]"
 msgstr ""
 "       rpm {--verify -V -y} [-afpg] [--root <ËÁÔÁÌÏÇ>] [--rcfile <ÆÁÊÌ>]"
 
-#: ../rpm.c:215
+#: rpm.c:214
 msgid ""
 "                        [--dbpath <dir>] [--nodeps] [--nofiles] [--noscripts]"
 msgstr ""
 "                        [--dbpath <ËÁÔ>] [--nodeps] [--nofiles] [--noscripts]"
 
-#: ../rpm.c:216
+#: rpm.c:215
 msgid "                        [--nomd5] [targets]"
 msgstr "                        [--nomd5] [ÃÅÌÉ]"
 
-#: ../rpm.c:217
+#: rpm.c:216
 msgid "       rpm {--setperms} [-afpg] [target]"
 msgstr "       rpm {--setperms} [-afpg] [ÃÅÌØ]"
 
-#: ../rpm.c:218
+#: rpm.c:217
 msgid "       rpm {--setugids} [-afpg] [target]"
 msgstr "       rpm {--setugids} [-afpg] [ÃÅÌØ]"
 
-#: ../rpm.c:219
+#: rpm.c:218
+#, fuzzy
+msgid "       rpm {--freshen -F} file1.rpm ... fileN.rpm"
+msgstr "                        file1.rpm ... fileN.rpm"
+
+#: rpm.c:219
 msgid "       rpm {--erase -e} [--root <dir>] [--noscripts] [--rcfile <file>]"
 msgstr ""
 "       rpm {--erase -e} [--root <ËÁÔÁÌÏÇ>] [--noscripts] [--rcfile <ÆÁÊÌ>]"
 
-#: ../rpm.c:220
+#: rpm.c:220
 msgid "                        [--dbpath <dir>] [--nodeps] [--allmatches]"
 msgstr "                        [--dbpath <ËÁÔÁÌÏÇ>] [--nodeps] [--allmatches]"
 
-#: ../rpm.c:221
+#: rpm.c:221
 msgid ""
 "                        [--justdb] [--notriggers] rpackage1 ... packageN"
 msgstr ""
 "                        [--justdb] [--notriggers] package1 ... packageN"
 
-#: ../rpm.c:222
+#: rpm.c:222
 msgid ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile  <file>]"
 msgstr ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile  <ÆÁÊÌ>]"
 
-#: ../rpm.c:223
+#: rpm.c:223
 msgid "                        [--sign] [--nobuild] [--timecheck <s>] ]"
 msgstr "                        [--sign] [--nobuild] [--timecheck <s>] ]"
 
-#: ../rpm.c:224
+#: rpm.c:224
 msgid "                        [--target=platform1[,platform2...]]"
 msgstr "                        [--target=platform1[,platform2...]]"
 
-#: ../rpm.c:225
+#: rpm.c:225
 msgid "                        [--rmsource] specfile"
 msgstr "                        [--rmsource] specfile"
 
-#: ../rpm.c:226
+#: rpm.c:226
 msgid "       rpm {--rmsource} [--rcfile <file>] [-v] specfile"
 msgstr "       rpm {--rmsource} [--rcfile <ÆÁÊÌ>] [-v] specfile"
 
-#: ../rpm.c:227
+#: rpm.c:227
 msgid ""
 "       rpm {--rebuild} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 "       rpm {--rebuild} [--rcfile <ÆÁÊÌ>] [-v] source1.rpm ... sourceN.rpm"
 
-#: ../rpm.c:228
+#: rpm.c:228
 msgid ""
 "       rpm {--recompile} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 "       rpm {--recompile} [--rcfile <ÆÁÊÌ>] [-v] source1.rpm ... sourceN.rpm"
 
-#: ../rpm.c:229
+#: rpm.c:229
 msgid "       rpm {--resign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr "       rpm {--resign} [--rcfile <ÆÁÊÌ>] ÐÁËÅÔ1 ÐÁËÅÔ2 ... ÐÁËÅÔN"
 
-#: ../rpm.c:230
+#: rpm.c:230
 msgid "       rpm {--addsign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr "       rpm {--addsign} [--rcfile <ÆÁÊÌ>] ÐÁËÅÔ1 ÐÁËÅÔ2 ... ÐÁËÅÔN"
 
-#: ../rpm.c:231
+#: rpm.c:231
 msgid ""
 "       rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile <file>]"
 msgstr ""
 "       rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile <ÆÁÊÌ>]"
 
-#: ../rpm.c:232
+#: rpm.c:232
 msgid "                           package1 ... packageN"
 msgstr "                           ÐÁËÅÔ1 ... ÐÁËÅÔN"
 
-#: ../rpm.c:233
+#: rpm.c:233
 msgid "       rpm {--rebuilddb} [--rcfile <file>] [--dbpath <dir>]"
 msgstr "       rpm {--rebuilddb} [--rcfile <ÆÁÊÌ>] [--dbpath <ËÁÔÁÌÏÇ>]"
 
-#: ../rpm.c:234
+#: rpm.c:234
 msgid "       rpm {--querytags}"
 msgstr "       rpm {--querytags}"
 
-#: ../rpm.c:268
+#: rpm.c:268
 msgid "usage:"
 msgstr "ÉÓÐÏÌØÚÏ×ÁÎÉÅ:"
 
-#: ../rpm.c:270
+#: rpm.c:270
 msgid "print this message"
 msgstr "×Ù×ÅÓÔÉ ÜÔÏ ÓÏÏÂÝÅÎÉÅ"
 
-#: ../rpm.c:272
+#: rpm.c:272
 msgid "print the version of rpm being used"
 msgstr "×Ù×ÅÓÔÉ ×ÅÒÓÉÀ ÉÓÐÏÌØÚÕÅÍÏÇÏ rpm"
 
-#: ../rpm.c:273
+#: rpm.c:273
 msgid "   all modes support the following arguments:"
 msgstr "   ×ÓÅ ÒÅÖÉÍÙ ÐÏÄÄÅÒÖÉ×ÁÀÔ ÓÌÅÄÕÀÝÉÅ ÁÒÇÕÍÅÎÔÙ:"
 
-#: ../rpm.c:274
+#: rpm.c:274
 msgid "      --rcfile <file>     "
 msgstr "      --rcfile <ÆÁÊÌ>     "
 
-#: ../rpm.c:275
+#: rpm.c:275
 msgid "use <file> instead of /etc/rpmrc and $HOME/.rpmrc"
 msgstr "ÉÓÐÏÌØÚÏ×ÁÔØ <ÆÁÊÌ> ×ÍÅÓÔÏ /etc/rpmrc É $HOME/.rpmrc"
 
-#: ../rpm.c:277
+#: rpm.c:277
 msgid "be a little more verbose"
 msgstr "ÂÙÔØ ÎÅÍÎÏÇÏ ÒÁÚÇÏ×ÏÒÞÉ×ÅÅ"
 
-#: ../rpm.c:279
+#: rpm.c:279
 msgid "be incredibly verbose (for debugging)"
 msgstr "ÂÙÔØ ïþåîø ÒÁÚÇÏ×ÏÒÞÉ×ÙÍ (ÄÌÑ ÏÔÌÁÄËÉ)"
 
-#: ../rpm.c:281
+#: rpm.c:281
 msgid "query mode"
 msgstr "ÒÅÖÉÍ ÚÁÐÒÏÓÁ"
 
-#: ../rpm.c:282 ../rpm.c:344 ../rpm.c:408 ../rpm.c:436
+#: rpm.c:282 rpm.c:344 rpm.c:408 rpm.c:436
 msgid "      --root <dir>        "
 msgstr "      --root <ËÁÔÁÌÏÇ>    "
 
-#: ../rpm.c:283 ../rpm.c:345 ../rpm.c:409 ../rpm.c:437 ../rpm.c:499
+#: rpm.c:283 rpm.c:345 rpm.c:409 rpm.c:437 rpm.c:499
 msgid "use <dir> as the top level directory"
 msgstr "ÉÓÐÏÌØÚÏ×ÁÔØ <ËÁÔÁÌÏÇ> ËÁË ËÏÒÎÅ×ÏÊ ËÁÔÁÌÏÇ"
 
-#: ../rpm.c:284 ../rpm.c:342 ../rpm.c:372 ../rpm.c:424 ../rpm.c:496
+#: rpm.c:284 rpm.c:342 rpm.c:372 rpm.c:424 rpm.c:496
 msgid "      --dbpath <dir>      "
 msgstr "      --dbpath <ËÁÔÁÌÏÇ>  "
 
-#: ../rpm.c:285 ../rpm.c:343 ../rpm.c:373 ../rpm.c:425 ../rpm.c:497
+#: rpm.c:285 rpm.c:343 rpm.c:373 rpm.c:425 rpm.c:497
 msgid "use <dir> as the directory for the database"
 msgstr "ÉÓÐÏÌØÚÏ×ÁÔØ <ËÁÔÁÌÏÇ> ËÁË ËÁÔÁÌÏÇ ÄÌÑ ÂÁÚÙ ÄÁÎÎÙÈ"
 
-#: ../rpm.c:286
+#: rpm.c:286
 msgid "      --queryformat <qfmt>"
 msgstr "      --queryformat <qfmt>"
 
-#: ../rpm.c:287
+#: rpm.c:287
 msgid "use <qfmt> as the header format (implies -i)"
 msgstr "ÉÓÐÏÌØÚÏ×ÁÔØ <qfmt> ËÁË ÆÏÒÍÁÔ ÈÅÄÅÒÁ (ÐÏÄÒÁÚÕÍÅ×ÁÅÔ -i)"
 
-#: ../rpm.c:288
+#: rpm.c:288
 msgid ""
 "   install, upgrade and query (with -p) allow ftp URL's to be used in place"
 msgstr ""
 "   ÕÓÔÁÎÏ×ËÁ, ÏÂÎÏ×ÌÅÎÉÅ É ÚÁÐÒÏÓ (Ó -p) ÄÏÐÕÓËÁÀÔ ÉÓÐÏÌØÚÏ×ÁÎÉÅ ftp URL "
 "×ÍÅÓÔÏ"
 
-#: ../rpm.c:289
+#: rpm.c:289
 msgid "   of file names as well as the following options:"
 msgstr "   ÉÍÅΠÆÁÊÌÏ× Á ÔÁËÖÅ ÓÌÅÄÕÀÝÉÅ ÏÐÃÉÉ:"
 
-#: ../rpm.c:290
+#: rpm.c:290
 msgid "      --ftpproxy <host>   "
 msgstr "      --ftpproxy <host>   "
 
-#: ../rpm.c:291
+#: rpm.c:291
 msgid "hostname or IP of ftp proxy"
 msgstr "ÉÍÑ ÉÌÉ IP-ÁÄÒÅÓ ftp proxy"
 
-#: ../rpm.c:292
+#: rpm.c:292
 msgid "      --ftpport <port>    "
 msgstr "      --ftpport <ÐÏÒÔ>    "
 
-#: ../rpm.c:293
+#: rpm.c:293
 msgid "port number of ftp server (or proxy)"
 msgstr "ÎÏÍÅÒ ÐÏÒÔÁ ftp-ÓÅÒ×ÅÒÁ (ÉÌÉ proxy)"
 
-#: ../rpm.c:294
+#: rpm.c:294
 msgid "      --httpproxy <host>   "
 msgstr "      --httpproxy <host>   "
 
-#: ../rpm.c:295
+#: rpm.c:295
 msgid "hostname or IP of http proxy"
 msgstr "ÉÍÑ ÉÌÉ IP-ÁÄÒÅÓ http proxy"
 
-#: ../rpm.c:296
+#: rpm.c:296
 msgid "      --httpport <port>    "
 msgstr "      --httpport <ÐÏÒÔ>    "
 
-#: ../rpm.c:297
+#: rpm.c:297
 msgid "port number of http server (or proxy)"
 msgstr "ÎÏÍÅÒ ÐÏÒÔÁ http-ÓÅÒ×ÅÒÁ (ÉÌÉ proxy)"
 
-#: ../rpm.c:298
+#: rpm.c:298
 msgid "      Package specification options:"
 msgstr "      ïÐÃÉÉ ÓÐÅÃÉÆÉËÁÃÉÉ ÐÁËÅÔÁ:"
 
-#: ../rpm.c:300
+#: rpm.c:300
 msgid "query all packages"
 msgstr "ÚÁÐÒÏÓÉÔØ ×ÓÅ ÐÁËÅÔÙ"
 
-#: ../rpm.c:301
+#: rpm.c:301
 msgid "        -f <file>+        "
 msgstr "        -f <ÆÁÊÌ>+        "
 
-#: ../rpm.c:302
+#: rpm.c:302
 msgid "query package owning <file>"
 msgstr "ÎÁÊÔÉ ÐÁËÅÔ, ËÏÔÏÒÏÍÕ ÐÒÉÎÁÄÌÅÖÉÔ <ÆÁÊÌ>"
 
-#: ../rpm.c:303
+#: rpm.c:303
 msgid "        -p <packagefile>+ "
 msgstr "        -p <ÆÁÊÌ ÐÁËÅÔÁ>+ "
 
-#: ../rpm.c:304
+#: rpm.c:304
 msgid "query (uninstalled) package <packagefile>"
 msgstr "ÚÁÐÒÏÓÉÔØ (ÎÅÕÓÔÁÎÏ×ÌÅÎÎÙÊ) ÐÁËÅÔ <ÆÁÊÌ ÐÁËÅÔÁ>"
 
-#: ../rpm.c:305
+#: rpm.c:305
 msgid "        --triggeredby <pkg>"
 msgstr "        --triggeredby <pkg>"
 
-#: ../rpm.c:306
+#: rpm.c:306
 msgid "query packages triggered by <pkg>"
 msgstr "ÚÁÐÒÏÓÉÔØ ÐÁËÅÔÙ Ó ÔÒÉÇÇÅÒ-ÓËÒÉÐÔÁÍÉ ÎÁ ÐÁËÅÔ <pkg>"
 
-#: ../rpm.c:307
+#: rpm.c:307
 msgid "        --whatprovides <cap>"
 msgstr "        --whatprovides <cap>"
 
-#: ../rpm.c:308
+#: rpm.c:308
 msgid "query packages which provide <cap> capability"
 msgstr "ÎÁÊÔÉ ÐÁËÅÔÙ, ÐÒÅÄÏÓÔÁ×ÌÑÀÝÉÅ ÓÅÒ×ÉÓ <cap>"
 
-#: ../rpm.c:309
+#: rpm.c:309
 msgid "        --whatrequires <cap>"
 msgstr "        --whatrequires <cap>"
 
-#: ../rpm.c:310
+#: rpm.c:310
 msgid "query packages which require <cap> capability"
 msgstr "ÎÁÊÔÉ ÐÁËÅÔÙ, ÔÒÅÂÕÀÝÉÅ ÓÅÒ×ÉÓÁ <cap>"
 
-#: ../rpm.c:311
+#: rpm.c:311
 msgid "      Information selection options:"
 msgstr "      ïÐÃÉÉ ×ÙÂÏÒÁ ÉÎÆÏÒÍÁÃÉÉ:"
 
-#: ../rpm.c:313
+#: rpm.c:313
 msgid "display package information"
 msgstr "×Ù×ÅÓÔÉ ÉÎÆÏÒÍÁÃÉÀ Ï ÐÁËÅÔÅ"
 
-#: ../rpm.c:315
+#: rpm.c:315
 msgid "display the package's change log"
 msgstr "×Ù×ÅÓÔÉ ÐÒÏÔÏËÏÌ ÉÚÍÅÎÅÎÉÊ ÐÁËÅÔÁ"
 
-#: ../rpm.c:317
+#: rpm.c:317
 msgid "display package file list"
 msgstr "×Ù×ÅÓÔÉ ÓÐÉÓÏË ÆÁÊÌÏ× ÐÁËÅÔÁ"
 
-#: ../rpm.c:319
+#: rpm.c:319
 msgid "show file states (implies -l)"
 msgstr "ÐÏËÁÚÁÔØ ÓÏÓÔÏÑÎÉÅ ÆÁÊÌÏ× (ÐÏÄÒÁÚÕÍÅ×ÁÅÔ -l)"
 
-#: ../rpm.c:321
+#: rpm.c:321
 msgid "list only documentation files (implies -l)"
 msgstr "×Ù×ÅÓÔÉ ÔÏÌØËÏ ÆÁÊÌÙ ÄÏËÕÍÅÎÔÁÃÉÉ (ÐÏÄÒÁÚÕÍÅ×ÁÅÔ -l)"
 
-#: ../rpm.c:323
+#: rpm.c:323
 msgid "list only configuration files (implies -l)"
 msgstr "×Ù×ÅÓÔÉ ÔÏÌØËÏ ËÏÎÆÉÇÕÒÁÃÉÏÎÎÙÅ ÆÁÊÌÙ (ÐÏÄÒÁÚÕÍÅ×ÁÅÔ -l)"
 
-#: ../rpm.c:325
+#: rpm.c:325
 msgid ""
 "show all verifiable information for each file (must be used with -l, -c, or "
 "-d)"
@@ -842,35 +604,35 @@ msgstr ""
 "ÐÏËÁÚÁÔØ ×ÓÀ ËÏÎÔÒÏÌØÎÕÀ ÉÎÆÏÒÍÁÃÉÀ ÄÌÑ ËÁÖÄÏÇÏ ÆÁÊÌÁ (ÄÏÌÖÎÏ ÉÓÐÏÌØÚÏ×ÁÔØÓÑ "
 "Ó -l, -c ÉÌÉ -d)"
 
-#: ../rpm.c:327
+#: rpm.c:327
 msgid "list capabilities package provides"
 msgstr "ÐÏËÁÚÁÔØ ÓÅÒ×ÉÓÙ, ÐÒÅÄÏÓÔÁ×ÌÑÅÍÙÅ ÐÁËÅÔÏÍ"
 
-#: ../rpm.c:328
+#: rpm.c:328
 msgid "        --requires"
 msgstr "        --requires"
 
-#: ../rpm.c:330
+#: rpm.c:330
 msgid "list package dependencies"
 msgstr "ÐÏËÁÚÁÔØ ÚÁ×ÉÓÉÍÏÓÔÉ ÐÁËÅÔÁ"
 
-#: ../rpm.c:332
+#: rpm.c:332
 msgid "print the various [un]install scripts"
 msgstr "×Ù×ÅÓÔÉ ÒÁÚÎÏÏÂÒÁÚÎÙÅ [ÄÅ]ÉÎÓÔÁÌÌÑÃÉÏÎÎÙÅ ÓËÒÉÐÔÙ"
 
-#: ../rpm.c:334
+#: rpm.c:334
 msgid "show the trigger scripts contained in the package"
 msgstr "ÐÏËÁÚÁÔØ ÔÒÉÇÇÅÒ-ÓËÒÉÐÔÙ, ÓÏÄÅÒÖÁÝÉÅÓÑ × ÐÁËÅÔÅ"
 
-#: ../rpm.c:338
+#: rpm.c:338
 msgid "    --pipe <cmd>          "
 msgstr "    --pipe <cmd>          "
 
-#: ../rpm.c:339
+#: rpm.c:339
 msgid "send stdout to <cmd>"
 msgstr "ÐÏÓÌÁÔØ ÓÔÁÎÄÁÒÔÎÙÊ ×Ù×ÏÄ × <cmd>"
 
-#: ../rpm.c:341
+#: rpm.c:341
 msgid ""
 "verify a package installation using the same same package specification "
 "options as -q"
@@ -878,19 +640,19 @@ msgstr ""
 "×ÅÒÉÆÉÃÉÒÏ×ÁÔØ ÉÎÓÔÁÌÌÑÃÉÀ ÐÁËÅÔÁ, ÉÓÐÏÌØÚÕÑ ÔÅ ÖÅ ÏÐÃÉÉ ÓÐÅÃÉÆÉËÁÃÉÉ "
 "ÐÁËÅÔÁ, ÞÔÏ É -q"
 
-#: ../rpm.c:347 ../rpm.c:395 ../rpm.c:429
+#: rpm.c:347 rpm.c:395 rpm.c:429
 msgid "do not verify package dependencies"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÚÁ×ÉÓÉÍÏÓÔÅÊ ÐÁËÅÔÁ"
 
-#: ../rpm.c:349
+#: rpm.c:349
 msgid "do not verify file md5 checksums"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ËÏÎÔÒÏÌØÎÙÅ md5-ÓÕÍÍÙ ÆÁÊÌÏ×"
 
-#: ../rpm.c:351
+#: rpm.c:351
 msgid "do not verify file attributes"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÁÔÔÒÉÂÕÔÙ ÆÁÊÌÏ×"
 
-#: ../rpm.c:354
+#: rpm.c:354
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
@@ -898,7 +660,7 @@ msgstr ""
 "ÕÓÔÁÎÏ×ÉÔØ ÐÒÁ×Á ÄÏÓÔÕÐÁ ÆÁÊÌÏ× ÔÁËÉÅ ÖÅ, ËÁË × ÂÁÚÅ ÄÁÎÎÙÈ ÐÁËÅÔÁ, "
 "ÉÓÐÏÌØÚÕÑ ÔÅ ÖÅ ÏÐÃÉÉ ÓÐÅÃÉÆÉËÁÃÉÉ ÐÁËÅÔÁ, ÞÔÏ É -q"
 
-#: ../rpm.c:357
+#: rpm.c:357
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
@@ -906,125 +668,125 @@ msgstr ""
 "ÕÓÔÁÎÏ×ÉÔØ ÈÏÚÑÉÎÁ É ÇÒÕÐÐÕ ÆÁÊÌÏ× ÔÁËÉÅ ÖÅ, ËÁË × ÂÁÚÅ ÄÁÎÎÙÈ ÐÁËÅÔÁ, "
 "ÉÓÐÏÌØÚÕÑ ÔÅ ÖÅ ÏÐÃÉÉ ÓÐÅÃÉÆÉËÁÃÉÉ ÐÁËÅÔÁ, ÞÔÏ É -q"
 
-#: ../rpm.c:361
+#: rpm.c:361
 msgid "    --install <packagefile>"
 msgstr "    --install <ÆÁÊÌ ÐÁËÅÔÁ>"
 
-#: ../rpm.c:362
+#: rpm.c:362
 msgid "    -i <packagefile>      "
 msgstr "    -i <ÆÁÊÌ ÐÁËÅÔÁ>      "
 
-#: ../rpm.c:363
+#: rpm.c:363
 msgid "install package"
 msgstr "ÕÓÔÁÎÏ×ÉÔØ ÐÁËÅÔ"
 
-#: ../rpm.c:364
+#: rpm.c:364
 msgid "      --excludepath <path>"
 msgstr "      --excludepath <ÐÕÔØ>"
 
-#: ../rpm.c:365
+#: rpm.c:365
 msgid "skip files in path <path>"
 msgstr "ÐÒÏÐÕÓÔÉÔØ ÆÁÊÌÙ × ÐÕÔÉ <ÐÕÔØ>"
 
-#: ../rpm.c:366
+#: rpm.c:366
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr "      --relocate <oldpath>=<newpath>"
 
-#: ../rpm.c:367
+#: rpm.c:367
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr "ÐÅÒÅÍÅÓÔÉÔØ ÆÁÊÌÙ ÉÚ <oldpath> × <newpath>"
 
-#: ../rpm.c:369
+#: rpm.c:369
 msgid "relocate files even though the package doesn't allow it"
 msgstr "ÐÅÒÅÍÅÓÔÉÔØ ÆÁÊÌÙ ÎÅ×ÚÉÒÁÑ ÎÁ ÔÏ, ÞÔÏ ÐÁËÅÔ ÜÔÏÇÏ ÎÅ ÐÏÚ×ÏÌÑÅÔ"
 
-#: ../rpm.c:370
+#: rpm.c:370
 msgid "      --prefix <dir>      "
 msgstr "      --prefix <ËÁÔÁÌÏÇ>  "
 
-#: ../rpm.c:371
+#: rpm.c:371
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "ÐÅÒÅÍÅÓÔÉÔØ ÐÁËÅÔ × <ËÁÔÁÌÏÇ>, ÅÓÌÉ ÐÁËÅÔ ÜÔÏ ÐÏÚ×ÏÌÑÅÔ"
 
-#: ../rpm.c:375
+#: rpm.c:375
 msgid "do not install documentation"
 msgstr "ÎÅ ÕÓÔÁÎÁ×ÌÉ×ÁÔØ ÄÏËÕÍÅÎÔÁÃÉÀ"
 
-#: ../rpm.c:377
+#: rpm.c:377
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "ÓÏËÒÁÝÅÎÉÅ ÄÌÑ --replacepkgs --replacefiles"
 
-#: ../rpm.c:380
+#: rpm.c:380
 msgid "print hash marks as package installs (good with -v)"
 msgstr "×Ù×ÏÄÉÔØ \"#\" ÐÏ ÍÅÒÅ ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÁ (ÈÏÒÏÛÏ Ó -v)"
 
-#: ../rpm.c:382
+#: rpm.c:382
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "ÕÓÔÁÎÁ×ÌÉ×ÁÔØ ÷óå ÆÁÊÌÙ, ÄÁÖÅ ËÏÎÆÉÇÕÒÁÃÉÏÎÎÙÅ, ËÏÔÏÒÙÅ ÍÏÇÌÉ ÂÙ ÂÙÔØ "
 "ÐÒÏÐÕÝÅÎÙ"
 
-#: ../rpm.c:385
+#: rpm.c:385
 msgid "don't verify package architecture"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÁÒÈÉÔÅËÔÕÒÕ ÐÁËÅÔÁ"
 
-#: ../rpm.c:387
+#: rpm.c:387
 msgid "don't check disk space before installing"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÄÉÓËÏ×ÏÅ ÐÒÏÓÔÒÁÎÓÔ×Ï ÐÅÒÅÄ ÕÓÔÁÎÏ×ËÏÊ"
 
-#: ../rpm.c:389
+#: rpm.c:389
 msgid "don't verify package operating system"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÏÐÅÒÁÃÉÏÎÎÕÀ ÓÉÓÔÅÍÕ ÐÁËÅÔÁ"
 
-#: ../rpm.c:391
+#: rpm.c:391
 msgid "install documentation"
 msgstr "ÕÓÔÁÎÏ×ÉÔØ ÄÏËÕÍÅÎÔÁÃÉÀ"
 
-#: ../rpm.c:393 ../rpm.c:427
+#: rpm.c:393 rpm.c:427
 msgid "update the database, but do not modify the filesystem"
 msgstr "ÏÂÎÏ×ÉÔØ ÂÁÚÕ ÄÁÎÎÙÈ, ÎÏ ÎÅ ÍÏÄÉÆÉÃÉÒÏ×ÁÔØ ÆÁÊÌÏ×ÕÀ ÓÉÓÔÅÍÕ"
 
-#: ../rpm.c:397 ../rpm.c:431
+#: rpm.c:397 rpm.c:431
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "ÎÅ ÍÅÎÑÔØ ÐÏÒÑÄÏË ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÏ× ÄÌÑ ÕÄÏ×ÌÅÔ×ÏÒÅÎÉÑ ÚÁ×ÉÓÉÍÏÓÔÅÊ"
 
-#: ../rpm.c:399
+#: rpm.c:399
 msgid "don't execute any installation scripts"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ ËÁËÉÈ-ÌÉÂÏ ÕÓÔÁÎÏ×ÏÞÎÙÈ ÓËÒÉÐÔÏ×"
 
-#: ../rpm.c:401 ../rpm.c:435
+#: rpm.c:401 rpm.c:435
 msgid "don't execute any scripts triggered by this package"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ ÔÒÉÇÇÅÒ-ÓËÒÉÐÔÏ×, ×Ú×ÅÄÅÎÎÙÈ ÎÁ ÜÔÏÔ ÐÁËÅÔ"
 
-#: ../rpm.c:403
+#: rpm.c:403
 msgid "print percentages as package installs"
 msgstr "×Ù×ÏÄÉÔØ ÐÒÏÃÅÎÔ ÇÏÔÏ×ÎÏÓÔÉ ÐÏ ÍÅÒÅ ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÁ"
 
-#: ../rpm.c:405
+#: rpm.c:405
 msgid "install even if the package replaces installed files"
 msgstr "ÕÓÔÁÎÁ×ÌÉ×ÁÔØ ÄÁÖÅ ÅÓÌÉ ÐÁËÅÔ ÐÅÒÅÐÉÛÅÔ ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎÎÙÅ ÆÁÊÌÙ"
 
-#: ../rpm.c:407
+#: rpm.c:407
 msgid "reinstall if the package is already present"
 msgstr "ÐÅÒÅÕÓÔÁÎÏ×ÉÔØ ÅÓÌÉ ÐÁËÅÔ ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ"
 
-#: ../rpm.c:411
+#: rpm.c:411
 msgid "don't install, but tell if it would work or not"
 msgstr "ÎÅ ÕÓÔÁÎÁ×ÌÉ×ÁÔØ, Á ÔÏÌØËÏ ÓÏÏÂÝÉÔØ ÕÄÁÓÔÓÑ ÌÉ ÕÓÔÁÎÏ×ËÁ"
 
-#: ../rpm.c:413
+#: rpm.c:413
 msgid "    --upgrade <packagefile>"
 msgstr "    --upgrade <ÆÁÊÌ ÐÁËÅÔÁ>"
 
-#: ../rpm.c:414
+#: rpm.c:414
 msgid "    -U <packagefile>      "
 msgstr "    -U <ÆÁÊÌ ÐÁËÅÔÁ>      "
 
-#: ../rpm.c:415
+#: rpm.c:415
 msgid "upgrade package (same options as --install, plus)"
 msgstr "ÏÂÎÏ×ÌÅÎÉÅ ÐÁËÅÔÁ (ÔÅ ÖÅ ÏÐÃÉÉ, ÞÔÏ É Ó --install, ÐÌÀÓ)"
 
-#: ../rpm.c:417
+#: rpm.c:417
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1032,15 +794,15 @@ msgstr ""
 "ÏÔËÁÔ ÎÁ ÂÏÌÅÅ ÓÔÁÒÕÀ ×ÅÒÓÉÀ ÐÁËÅÔÁ (--force ÄÌÑ ÏÂÎÏ×ÌÅÎÉÑ ÄÅÌÁÅÔ ÜÔÏ "
 "Á×ÔÏÍÁÔÉÞÅÓËÉ)"
 
-#: ../rpm.c:419
+#: rpm.c:419
 msgid "    --erase <package>"
 msgstr "    --erase <ÐÁËÅÔ>  "
 
-#: ../rpm.c:421
+#: rpm.c:421
 msgid "erase (uninstall) package"
 msgstr "ÕÄÁÌÉÔØ (ÄÅÉÎÓÔÁÌÌÉÒÏ×ÁÔØ) ÐÁËÅÔ"
 
-#: ../rpm.c:423
+#: rpm.c:423
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1048,89 +810,89 @@ msgstr ""
 "ÕÄÁÌÉÔØ ×ÓÅ ÐÁËÅÔÙ, ÓÏ×ÐÁÄÁÀÝÉÅ Ó <ÐÁËÅÔ> (ÏÂÙÞÎÏ, ÅÓÌÉ <ÐÁËÅÔ> "
 "ÓÏÏÔ×ÅÔÓÔ×ÕÅÔ ÎÅÓËÏÌØËÉÍ ÐÁËÅÔÁÍ, ÇÅÎÅÒÉÒÕÅÔÓÑ ÏÛÉÂËÁ)"
 
-#: ../rpm.c:433
+#: rpm.c:433
 msgid "do not execute any package specific scripts"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ ÎÉËÁËÉÈ ÓËÒÉÐÔÏ×, ÓÐÅÃÉÆÉÞÎÙÈ ÄÌÑ ÐÁËÅÔÁ"
 
-#: ../rpm.c:439
+#: rpm.c:439
 msgid "    -b<stage> <spec>      "
 msgstr "    -b<stage> <spec>      "
 
-#: ../rpm.c:440
+#: rpm.c:440
 msgid "    -t<stage> <tarball>   "
 msgstr "    -t<stage> <tarball>   "
 
-#: ../rpm.c:441
+#: rpm.c:441
 msgid "build package, where <stage> is one of:"
 msgstr "ÓÏÂÒÁÔØ ÐÁËÅÔ, ÇÄÅ <stage> - ÏÄÎÏ ÉÚ:"
 
-#: ../rpm.c:443
+#: rpm.c:443
 msgid "prep (unpack sources and apply patches)"
 msgstr "prep (ÉÓÐÏÌÎÉÔØ %prep)"
 
-#: ../rpm.c:445
+#: rpm.c:445
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr "list check (ÐÒÏÉÚ×ÅÓÔÉ ÐÒÏ×ÅÒËÕ ÓÅËÃÉÉ %files)"
 
-#: ../rpm.c:447
+#: rpm.c:447
 msgid "compile (prep and compile)"
 msgstr "compile (ÉÓÐÏÌÎÉÔØ %prep É %build)"
 
-#: ../rpm.c:449
+#: rpm.c:449
 msgid "install (prep, compile, install)"
 msgstr "install (ÉÓÐÏÌÎÉÔØ %prep, %build É %install)"
 
-#: ../rpm.c:451
+#: rpm.c:451
 msgid "binary package (prep, compile, install, package)"
 msgstr "binary package (ÉÓÐÏÌÎÉÔØ %prep, %build, %install É ÓÏÚÄÁÔØ RPM)"
 
-#: ../rpm.c:453
+#: rpm.c:453
 msgid "bin/src package (prep, compile, install, package)"
 msgstr ""
 "bin/src package (ÉÓÐÏÌÎÉÔØ %prep, %build, %install, ÓÏÚÄÁÔØ RPM É SRPM)"
 
-#: ../rpm.c:459
+#: rpm.c:459
 msgid "remove sources and spec file when done"
 msgstr "ÐÏÓÌÅ ÚÁ×ÅÒÛÅÎÉÑ ÕÄÁÌÉÔØ ÄÅÒÅ×Ï ÉÓÈÏÄÎÉËÏ× É spec-ÆÁÊÌ"
 
-#: ../rpm.c:461
+#: rpm.c:461
 msgid "generate PGP/GPG signature"
 msgstr "ÇÅÎÅÒÉÒÏ×ÁÔØ PGP/GPG-ÐÏÄÐÉÓØ"
 
-#: ../rpm.c:462
+#: rpm.c:462
 msgid "      --buildroot <dir>   "
 msgstr "      --buildroot <ËÁÔ.>  "
 
-#: ../rpm.c:463
+#: rpm.c:463
 msgid "use <dir> as the build root"
 msgstr "ÉÓÐÏÌØÚÏ×ÁÔØ <ËÁÔ.> ËÁË ËÏÒÎÅ×ÏÊ ÄÌÑ ÐÏÓÔÒÏÅÎÉÑ ÐÁËÅÔÁ"
 
-#: ../rpm.c:464
+#: rpm.c:464
 msgid "      --target=<platform>+"
 msgstr "      --target=<ÐÌÁÔÆÏÒÍÁ>+"
 
-#: ../rpm.c:465
+#: rpm.c:465
 msgid "build the packages for the build targets platform1...platformN."
 msgstr "ÐÏÓÔÒÏÉÔØ ÐÁËÅÔÙ ÄÌÑ ÃÅÌÅ×ÙÈ ÐÌÁÔÆÏÒÍ ÐÌÁÔÆÏÒÍÁ1...ÐÌÁÔÆÏÒÍÁN"
 
-#: ../rpm.c:467
+#: rpm.c:467
 msgid "do not execute any stages"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ ÎÉËÁËÉÈ ÜÔÁÐÏ×"
 
-#: ../rpm.c:468
+#: rpm.c:468
 msgid "      --timecheck <secs>  "
 msgstr "      --timecheck <secs>  "
 
-#: ../rpm.c:469
+#: rpm.c:469
 msgid "set the time check to <secs> seconds (0 disables)"
 msgstr "ÕÓÔÁÎÏ×ÉÔØ ÐÒÏ×ÅÒËÕ ×ÒÅÍÅÎÉ × <secs> ÓÅËÕÎÄ (0 ÏÔÍÅÎÑÅÔ ÅÅ)"
 
-#: ../rpm.c:471
+#: rpm.c:471
 msgid "    --rebuild <src_pkg>   "
 msgstr "    --rebuild <src_pkg>   "
 
-#: ../rpm.c:472
+#: rpm.c:472
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -1138,225 +900,229 @@ msgstr ""
 "ÕÓÔÁÎÏ×ÉÔØ SRPM, ÓÏÂÒÁÔØ RPM É ÕÄÁÌÉÔØ spec-ÆÁÊÌ, ÆÁÊÌÙ Ó ÉÓÈÏÄÎÙÍÉ "
 "ÔÅËÓÔÁÍÉ, ÐÁÔÞÉ É ÐÉËÔÏÇÒÁÍÍÙ."
 
-#: ../rpm.c:473
+#: rpm.c:473
 msgid "    --rmsource <spec>     "
 msgstr "    --rmsource <spec>     "
 
-#: ../rpm.c:474
+#: rpm.c:474
 msgid "remove sources and spec file"
 msgstr "ÕÄÁÌÉÔØ ÉÓÈÏÄÎÉËÉ É spec-ÆÁÊÌ"
 
-#: ../rpm.c:475
+#: rpm.c:475
 msgid "    --recompile <src_pkg> "
 msgstr "    --recompile <src_pkg> "
 
-#: ../rpm.c:476
+#: rpm.c:476
 msgid "like --rebuild, but don't build any package"
 msgstr "ËÁË --rebuild, ÎÏ ÎÅ ÓÏÂÉÒÁÅÔ ÎÉËÁËÉÈ ÐÁËÅÔÏ×"
 
-#: ../rpm.c:477
+#: rpm.c:477
 msgid "    --resign <pkg>+       "
 msgstr "    --resign <pkg>+       "
 
-#: ../rpm.c:478
+#: rpm.c:478
 msgid "sign a package (discard current signature)"
 msgstr "ÐÏÄÐÉÓÁÔØ ÐÁËÅÔ (ÕÄÁÌÉ× ÔÅËÕÝÕÀ ÐÏÄÐÉÓØ)"
 
-#: ../rpm.c:479
+#: rpm.c:479
 msgid "    --addsign <pkg>+      "
 msgstr "    --addsign <pkg>+      "
 
-#: ../rpm.c:480
+#: rpm.c:480
 msgid "add a signature to a package"
 msgstr "ÄÏÂÁ×ÉÔØ ÐÏÄÐÉÓØ Ë ÐÁËÅÔÕ"
 
-#: ../rpm.c:482
+#: rpm.c:482
 msgid "    --checksig <pkg>+     "
 msgstr "    --checksig <pkg>+     "
 
-#: ../rpm.c:483
+#: rpm.c:483
 msgid "verify package signature"
 msgstr "ÐÒÏ×ÅÒÉÔØ ÐÏÄÐÉÓØ × ÐÁËÅÔÅ"
 
-#: ../rpm.c:485
+#: rpm.c:485
 msgid "skip any PGP signatures"
 msgstr "ÐÒÏÐÕÓÔÉÔØ ×ÓÅ PGP-ÐÏÄÐÉÓÉ"
 
-#: ../rpm.c:487
+#: rpm.c:487
 msgid "skip any GPG signatures"
 msgstr "ÐÒÏÐÕÓÔÉÔØ ×ÓÅ GPG-ÐÏÄÐÉÓÉ"
 
-#: ../rpm.c:489
+#: rpm.c:489
 msgid "skip any MD5 signatures"
 msgstr "ÐÒÏÐÕÓÔÉÔØ ×ÓÅ MD5-ÐÏÄÐÉÓÉ"
 
-#: ../rpm.c:491
+#: rpm.c:491
 msgid "list the tags that can be used in a query format"
 msgstr "×Ù×ÅÓÔÉ ÔÜÇÉ, ËÏÔÏÒÙÅ ÍÏÇÕÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÙ × ÆÏÒÍÁÔÅ ÚÁÐÒÏÓÁ"
 
-#: ../rpm.c:493
+#: rpm.c:493
 msgid "make sure a valid database exists"
 msgstr "ÕÂÅÄÉÔØÓÑ, ÞÔÏ ÓÕÝÅÓÔ×ÕÅÔ ÐÒÁ×ÉÌØÎÁÑ ÂÁÚÁ ÄÁÎÎÙÈ"
 
-#: ../rpm.c:495
+#: rpm.c:495
 msgid "rebuild database from existing database"
 msgstr "ÐÅÒÅÓÔÒÏÉÔØ ÂÁÚÕ ÄÁÎÎÙÈ ÉÚ ÓÕÝÅÓÔ×ÕÀÝÅÊ ÂÁÚÙ"
 
-#: ../rpm.c:631 ../rpm.c:637 ../rpm.c:644 ../rpm.c:650 ../rpm.c:659
-#: ../rpm.c:666 ../rpm.c:713 ../rpm.c:719 ../rpm.c:779 ../rpm.c:787
-#: ../rpm.c:794 ../rpm.c:803 ../rpm.c:810 ../rpm.c:818 ../rpm.c:847
-#: ../rpm.c:902 ../rpm.c:909
+#: rpm.c:639 rpm.c:645 rpm.c:652 rpm.c:658 rpm.c:667 rpm.c:674 rpm.c:721
+#: rpm.c:727 rpm.c:761 rpm.c:767 rpm.c:773 rpm.c:781 rpm.c:816 rpm.c:871
+#: rpm.c:878
 msgid "only one major mode may be specified"
 msgstr "ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÏÄÉΠÉÚ ÏÓÎÏ×ÎÙÈ ÒÅÖÉÍÏ×"
 
-#: ../rpm.c:652
+#: rpm.c:660
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr "ÏÐÃÉÉ -u É --uninstall ÕÓÔÁÒÅÌÉ É ÂÏÌØÛÅ ÎÅ ÒÁÂÏÔÁÀÔ.\n"
 
-#: ../rpm.c:654
+#: rpm.c:662
 msgid "Use -e or --erase instead.\n"
 msgstr "÷ÍÅÓÔÏ ÎÉÈ ÉÓÐÏÌØÚÕÊÔÅ -e ÉÌÉ --erase.\n"
 
-#: ../rpm.c:670
+#: rpm.c:678
 msgid "--build (-b) requires one of a,b,i,c,p,l as its sole argument"
 msgstr ""
 "ÏÐÃÉÑ --build (-b) ÔÒÅÂÕÅÔ a,b,i,c,p,l × ËÁÞÅÓÔ×Å ÅÄÉÎÓÔ×ÅÎÎÏÇÏ ÁÒÇÕÍÅÎÔÁ"
 
-#: ../rpm.c:674
+#: rpm.c:682
 msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
 msgstr ""
 "ÏÐÃÉÑ --tarbuild (-t) ÔÒÅÂÕÅÔ a,b,i,c,p,l × ËÁÞÅÓÔ×Å ÅÄÉÎÓÔ×ÅÎÎÏÇÏ ÁÒÇÕÍÅÎÔÁ"
 
-#: ../rpm.c:726 ../rpm.c:732 ../rpm.c:739 ../rpm.c:746 ../rpm.c:755
-#: ../rpm.c:763 ../rpm.c:771 ../rpm.c:916
+#: rpm.c:734 rpm.c:740 rpm.c:747 rpm.c:754 rpm.c:885
 msgid "one type of query/verify may be performed at a time"
 msgstr "ÚÁ ÏÄÉΠÒÁÚ ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌÎÅΠÔÏÌØËÏ ÏÄÉΠÔÉРÐÒÏ×ÅÒËÉ ÉÌÉ ÚÁÐÒÏÓÁ"
 
-#: ../rpm.c:826
+#: rpm.c:789
 msgid "arguments to --dbpath must begin with a /"
 msgstr "ÁÒÇÕÍÅÎÔÙ ÄÌÑ --dbpath ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó /"
 
-#: ../rpm.c:853
+#: rpm.c:822
 msgid "relocations must begin with a /"
 msgstr "ÐÅÒÅÍÅÝÅÎÉÑ ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó /"
 
-#: ../rpm.c:855
+#: rpm.c:824
 msgid "relocations must contain a ="
 msgstr "ÐÅÒÅÍÅÝÅÎÉÑ ÄÏÌÖÎÙ ÓÏÄÅÒÖÁÔØ ="
 
-#: ../rpm.c:858
+#: rpm.c:827
 msgid "relocations must have a / following the ="
 msgstr "ÐÅÒÅÍÅÝÅÎÉÑ ÄÏÌÖÎÙ ÉÍÅÔØ / ÐÏÓÌÅ ="
 
-#: ../rpm.c:867
+#: rpm.c:836
 msgid "exclude paths must begin with a /"
 msgstr "ÉÓËÌÀÞÅÎÉÑ ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó /"
 
-#: ../rpm.c:876
+#: rpm.c:845
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "÷ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ ÐÒÉ ÏÂÒÁÂÏÔËÅ ÁÒÇÕÍÅÎÔÏ× (%d) :-(\n"
 
-#: ../rpm.c:929
+#: rpm.c:898
 msgid "--dbpath given for operation that does not use a database"
 msgstr "ÏÐÃÉÑ --dbpath ÚÁÄÁÎÁ ÄÌÑ ÏÐÅÒÁÃÉÉ, ÎÅ ÉÓÐÏÌØÚÕÀÝÅÊ ÂÁÚÕ ÄÁÎÎÙÈ"
 
-#: ../rpm.c:934
+#: rpm.c:903
 msgid "--timecheck may only be used during package builds"
 msgstr "ÏÐÃÉÑ --timecheck ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ ÔÏÌØËÏ ÐÒÉ ÓÂÏÒËÅ ÐÁËÅÔÏ×"
 
-#: ../rpm.c:937 ../rpm.c:940
-msgid "unexpected query specifiers"
-msgstr "ÎÅÏÖÉÄÁÎÎÁÑ ÓÐÅÃÉÆÉËÁÃÉÑ ÚÁÐÒÏÓÁ"
+#: rpm.c:906
+#, fuzzy
+msgid "unexpected query flags"
+msgstr "ÎÅÏÖÉÄÁÎÎÙÊ ÉÓÔÏÞÎÉË ÚÁÐÒÏÓÁ"
+
+#: rpm.c:909
+#, fuzzy
+msgid "unexpected query format"
+msgstr "ÎÅÏÖÉÄÁÎÎÙÊ ÉÓÔÏÞÎÉË ÚÁÐÒÏÓÁ"
 
-#: ../rpm.c:944
+#: rpm.c:913
 msgid "unexpected query source"
 msgstr "ÎÅÏÖÉÄÁÎÎÙÊ ÉÓÔÏÞÎÉË ÚÁÐÒÏÓÁ"
 
-#: ../rpm.c:950
+#: rpm.c:919
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 "ÐÒÉÎÕÄÉÔÅÌØÎÙÍÉ ÍÏÇÕÔ ÂÙÔØ ÔÏÌØËÏ ÕÓÔÁÎÏ×ËÁ, ÏÂÎÏ×ÌÅÎÉÅ, ÕÄÁÌÅÎÉÅ ÉÓÈÏÄÎÉËÏ× "
 "É spec-ÆÁÊÌÁ"
 
-#: ../rpm.c:953
+#: rpm.c:922
 msgid "files may only be relocated during package installation"
 msgstr "ÆÁÊÌÙ ÍÏÇÕÔ ÂÙÔØ ÐÅÒÅÍÅÝÅÎÙ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: ../rpm.c:956
+#: rpm.c:925
 msgid "only one of --prefix or --relocate may be used"
 msgstr "ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ ÔÏÌØËÏ ÏÄÎÁ ÉÚ ÏÐÃÉÊ --prefix ÉÌÉ --relocate"
 
-#: ../rpm.c:959
+#: rpm.c:928
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 "ÏÐÃÉÉ --relocate É --excludepath ÍÏÖÎÏ ÉÓÐÏÌØÚÏ×ÁÔØ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ "
 "ÎÏ×ÙÈ ÐÁËÅÔÏ×"
 
-#: ../rpm.c:962
+#: rpm.c:931
 msgid "--prefix may only be used when installing new packages"
 msgstr "ÏÐÃÉÀ --prefix ÍÏÖÎÏ ÉÓÐÏÌØÚÏ×ÁÔØ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÎÏ×ÙÈ ÐÁËÅÔÏ×"
 
-#: ../rpm.c:965
+#: rpm.c:934
 msgid "arguments to --prefix must begin with a /"
 msgstr "ÁÒÇÕÍÅÎÔÙ ÄÌÑ --prefix ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó /"
 
-#: ../rpm.c:968
+#: rpm.c:937
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "ÏÐÃÉÑ --hash (-h) ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: ../rpm.c:972
+#: rpm.c:941
 msgid "--percent may only be specified during package installation"
 msgstr "ÏÐÃÉÑ --percent ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: ../rpm.c:976
+#: rpm.c:945
 msgid "--replacefiles may only be specified during package installation"
 msgstr "ÏÐÃÉÑ --replacefiles ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: ../rpm.c:980
+#: rpm.c:949
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "ÏÐÃÉÑ --replacepkgs ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: ../rpm.c:984
+#: rpm.c:953
 msgid "--excludedocs may only be specified during package installation"
 msgstr "ÏÐÃÉÑ --excludedocs ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: ../rpm.c:988
+#: rpm.c:957
 msgid "--includedocs may only be specified during package installation"
 msgstr "ÏÐÃÉÑ --includedocs ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: ../rpm.c:992
+#: rpm.c:961
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 "ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ ÔÏÌØËÏ ÏÄÎÁ ÉÚ ÏÐÃÉÊ --excludedocs ÉÌÉ --includedocs"
 
-#: ../rpm.c:996
+#: rpm.c:965
 msgid "--ignorearch may only be specified during package installation"
 msgstr "ÏÐÃÉÑ --ignorearch ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: ../rpm.c:1000
+#: rpm.c:969
 msgid "--ignoreos may only be specified during package installation"
 msgstr "ÏÐÃÉÑ --ignoreos ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: ../rpm.c:1004
+#: rpm.c:973
 msgid "--ignoresize may only be specified during package installation"
 msgstr "ÏÐÃÉÑ --ignoresize ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: ../rpm.c:1008
+#: rpm.c:977
 msgid "--allmatches may only be specified during package erasure"
 msgstr "ÏÐÃÉÑ --allmatches ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÄÁÌÅÎÉÉ ÐÁËÅÔÁ"
 
-#: ../rpm.c:1012
+#: rpm.c:981
 msgid "--allfiles may only be specified during package installation"
 msgstr "ÏÐÃÉÑ --allfiles ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: ../rpm.c:1016
+#: rpm.c:985
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 "ÏÐÃÉÑ --justdb ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÉÌÉ ÕÄÁÌÅÎÉÉ ÐÁËÅÔÁ"
 
-#: ../rpm.c:1021
+#: rpm.c:990
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -1364,7 +1130,7 @@ msgstr ""
 "ÏÐÃÉÑ --noscripts ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ, ÕÄÁÌÅÎÉÉ É "
 "×ÅÒÉÆÉËÁÃÉÉ ÐÁËÅÔÁ"
 
-#: ../rpm.c:1025
+#: rpm.c:994
 msgid ""
 "--notriggers may only be specified during package installation, erasure, and "
 "verification"
@@ -1372,7 +1138,7 @@ msgstr ""
 "ÏÐÃÉÑ --notriggers ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ, ÕÄÁÌÅÎÉÉ É "
 "×ÅÒÉÆÉËÁÃÉÉ ÐÁËÅÔÁ"
 
-#: ../rpm.c:1031
+#: rpm.c:1000
 msgid ""
 "--nodeps may only be specified during package building, installation, "
 "erasure, and verification"
@@ -1380,11 +1146,7 @@ msgstr ""
 "ÏÐÃÉÑ --nodeps ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÓÂÏÒËÅ, ÕÓÔÁÎÏ×ËÅ, ÕÄÁÌÅÎÉÉ É "
 "×ÅÒÉÆÉËÁÃÉÉ ÐÁËÅÔÏ×"
 
-#: ../rpm.c:1036
-msgid "--nofiles may only be specified during package verification"
-msgstr "ÏÐÃÉÑ --nofiles ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ×ÅÒÉÆÉËÁÃÉÉ ÐÁËÅÔÁ"
-
-#: ../rpm.c:1042
+#: rpm.c:1005
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
@@ -1392,7 +1154,7 @@ msgstr ""
 "ÏÐÃÉÑ --test ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ, ÕÄÁÌÅÎÉÉ É ÓÂÏÒËÅ "
 "ÐÁËÅÔÁ"
 
-#: ../rpm.c:1047
+#: rpm.c:1010
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -1400,1649 +1162,1803 @@ msgstr ""
 "ÏÐÃÉÑ --root (-r) ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ, ÕÄÁÌÅÎÉÉ, "
 "ÚÁÐÒÏÓÁÈ ÐÁËÅÔÁ É ÐÅÒÅÓÔÒÏÅÎÉÉ ÂÁÚÙ ÄÁÎÎÙÈ"
 
-#: ../rpm.c:1052
+#: rpm.c:1015
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "ÁÒÇÕÍÅÎÔÙ ÄÌÑ --root (-r) ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó /"
 
-#: ../rpm.c:1056
-msgid "--clean may only be used with -b and -t"
-msgstr "ÏÐÃÉÑ --clean ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ ÔÏÌØËÏ Ó -b ÉÌÉ -t"
-
-#: ../rpm.c:1059
-msgid "--rmsource may only be used with -b and -t"
-msgstr "ÏÐÃÉÑ --rmsource ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ ÔÏÌØËÏ Ó -b ÉÌÉ -t"
-
-#: ../rpm.c:1062
-msgid "--short-circuit may only be used during package building"
-msgstr ""
-"ÏÐÃÉÑ --short-circuit ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ ÔÏÌØËÏ ÐÒÉ ÓÂÏÒËÅ ÐÁËÅÔÏ×"
-
-#: ../rpm.c:1066
-msgid "--short-circuit may only be used with -bc, -bi, -bs, -tc -ti, or -ts"
-msgstr ""
-"ÏÐÃÉÑ --short-circuit ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ ÔÏÌØËÏ Ó -bc, -bi, -bs, -tc "
-"-ti ÉÌÉ -ts"
-
-#: ../rpm.c:1072
+#: rpm.c:1018
 msgid "--oldpackage may only be used during upgrades"
 msgstr ""
 "ÏÐÃÉÑ --oldpackage ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ ÔÏÌØËÏ ÐÒÉ ÏÂÎÏ×ÌÅÎÉÉ ÐÁËÅÔÏ×"
 
-#: ../rpm.c:1077
+#: rpm.c:1023
 msgid ""
 "ftp options can only be used during package queries, installs, and upgrades"
 msgstr ""
 "ÏÐÃÉÉ ftp ÍÏÇÕÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÙ ÔÏÌØËÏ ÐÒÉ ÚÁÐÒÏÓÁÈ, ÕÓÔÁÎÏ×ËÅ É "
 "ÏÂÎÏ×ÌÅÎÉÉ ÐÁËÅÔÏ×"
 
-#: ../rpm.c:1083
+#: rpm.c:1029
 msgid ""
 "http options can only be used during package queries, installs, and upgrades"
 msgstr ""
 "ÏÐÃÉÉ http ÍÏÇÕÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÙ ÔÏÌØËÏ ÐÒÉ ÚÁÐÒÏÓÁÈ, ÕÓÔÁÎÏ×ËÅ É "
 "ÏÂÎÏ×ÌÅÎÉÉ ÐÁËÅÔÏ×"
 
-#: ../rpm.c:1087
+#: rpm.c:1033
 msgid "--nopgp may only be used during signature checking"
 msgstr "ÏÐÃÉÑ --nopgp ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ ÔÏÌØËÏ ÐÒÉ ÐÒÏ×ÅÒËÅ ÐÏÄÐÉÓÉ"
 
-#: ../rpm.c:1090
+#: rpm.c:1036
 msgid "--nogpg may only be used during signature checking"
 msgstr "ÏÐÃÉÑ --nogpg ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ ÔÏÌØËÏ ÐÒÉ ÐÒÏ×ÅÒËÅ ÐÏÄÐÉÓÉ"
 
-#: ../rpm.c:1093
+#: rpm.c:1039
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr ""
 "ÏÐÃÉÑ --nomd5 ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ ÔÏÌØËÏ ÐÒÉ ÐÒÏ×ÅÒËÅ ÐÏÄÐÉÓÉ É "
 "×ÅÒÉÆÉËÁÃÉÉ ÐÁËÅÔÁ"
 
-#: ../rpm.c:1119
+#: rpm.c:1063
+msgid "no files to sign\n"
+msgstr ""
+
+#: rpm.c:1068
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "ÎÅÔ ÄÏÓÔÕÐÁ Ë ÆÁÊÌÕ %s\n"
 
-#: ../rpm.c:1136
+#: rpm.c:1083
 msgid "pgp not found: "
 msgstr "pgp ÎÅ ÎÁÊÄÅÎ: "
 
-#: ../rpm.c:1139
-msgid "Use `%%_signature pgp5' instead of `%%_signature pgp' in macro file.\n"
-msgstr ""
-"éÓÐÏÌØÚÕÊÔÅ × ÍÁËÒÏÆÁÊÌÅ `%%_signature pgp5' ×ÍÅÓÔÏ `%%_signature pgp'.\n"
-
-#: ../rpm.c:1146
-msgid "pgp version 5 not found: "
-msgstr "PGP ×ÅÒÓÉÉ 5 ÎÅ ÎÁÊÄÅÎ: "
-
-#: ../rpm.c:1149
-msgid "Use `%%_signature pgp' instead of `%%_signature pgp5' in macro file.\n"
-msgstr ""
-"éÓÐÏÌØÚÕÊÔÅ × ÍÁËÒÏÆÁÊÌÅ `%%_signature pgp' ×ÍÅÓÔÏ `%%_signature pgp5'.\n"
-
-#: ../rpm.c:1155
+#: rpm.c:1087
 msgid "Enter pass phrase: "
 msgstr "÷×ÅÄÉÔÅ ÐÁÒÏÌØ: "
 
-#: ../rpm.c:1156
+#: rpm.c:1089
 msgid "Pass phrase check failed\n"
 msgstr "îÅ×ÅÒÎÙÊ ÐÁÒÏÌØ\n"
 
-#: ../rpm.c:1159
+#: rpm.c:1092
 msgid "Pass phrase is good.\n"
 msgstr "ðÁÒÏÌØ ÐÒÉÎÑÔ.\n"
 
-#: ../rpm.c:1166
+#: rpm.c:1097
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "îÅ×ÅÒÎÁÑ ÓÐÅÃÉÆÉËÁÃÉÑ %%_signature × ÍÁËÒÏÆÁÊÌÅ.\n"
 
-#: ../rpm.c:1171
+#: rpm.c:1103
 msgid "--sign may only be used during package building"
 msgstr "ÏÐÃÉÑ --sign ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ ÔÏÌØËÏ ÐÒÉ ÓÂÏÒËÅ ÐÁËÅÔÏ×"
 
-#: ../rpm.c:1188
+#: rpm.c:1118
 msgid "exec failed\n"
 msgstr "ÚÁÐÕÓË ÎÅ ÕÄÁÌÓÑ\n"
 
-#: ../rpm.c:1207
+#: rpm.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr "ÎÅÏÖÉÄÁÎÎÙÅ ÁÒÇÕÍÅÎÔÙ ÄÌÑ --querytags "
 
-#: ../rpm.c:1218
+#: rpm.c:1148
 msgid "no packages given for signature check"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÐÁËÅÔÙ ÄÌÑ ÐÒÏ×ÅÒËÉ ÐÏÄÐÉÓÉ"
 
-#: ../rpm.c:1230
+#: rpm.c:1160
 msgid "no packages given for signing"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÐÁËÅÔÙ ÄÌÑ ÐÏÄÐÉÓÉ"
 
-#: ../rpm.c:1243
+#: rpm.c:1173
 msgid "no packages files given for rebuild"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÐÁËÅÔÙ ÄÌÑ ÐÅÒÅÓÂÏÒËÉ"
 
-#: ../rpm.c:1300
+#: rpm.c:1230
 msgid "no spec files given for build"
 msgstr "ÎÅ ÚÁÄÁΠspec-ÆÁÊÌ ÄÌÑ ÓÂÏÒËÉ ÐÁËÅÔÁ"
 
-#: ../rpm.c:1302
+#: rpm.c:1232
 msgid "no tar files given for build"
 msgstr "ÎÅ ÚÁÄÁÎÙ tar-ÆÁÊÌÙ ÄÌÑ ÓÂÏÒËÉ ÐÁËÅÔÁ"
 
-#: ../rpm.c:1314
+#: rpm.c:1244
 msgid "no packages given for uninstall"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÐÁËÅÔÙ ÄÌÑ ÕÄÁÌÅÎÉÑ"
 
-#: ../rpm.c:1363
+#: rpm.c:1294
 msgid "no packages given for install"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÐÁËÅÔÙ ÄÌÑ ÕÓÔÁÎÏ×ËÉ"
 
-#: ../rpm.c:1386
+#: rpm.c:1317
 msgid "extra arguments given for query of all packages"
 msgstr "× ÚÁÐÒÏÓÅ ËÏ ×ÓÅÍ ÐÁËÅÔÁÍ ÚÁÄÁÎÙ ÌÉÛÎÉÅ ÁÒÇÕÍÅÎÔÙ"
 
-#: ../rpm.c:1391
+#: rpm.c:1322
 msgid "no arguments given for query"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÁÒÇÕÍÅÎÔÙ ÚÁÐÒÏÓÁ"
 
-#: ../rpm.c:1412
+#: rpm.c:1339
 msgid "extra arguments given for verify of all packages"
 msgstr "× ÚÁÐÒÏÓÅ ×ÅÒÉÆÉËÁÃÉÉ ×ÓÅÈ ÐÁËÅÔÏ× ÚÁÄÁÎÙ ÌÉÛÎÉÅ ÁÒÇÕÍÅÎÔÙ"
 
-#: ../rpm.c:1416
+#: rpm.c:1343
 msgid "no arguments given for verify"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÁÒÇÕÍÅÎÔÙ ÄÌÑ ×ÅÒÉÆÉËÁÃÉÉ"
 
-#: ../rpm2cpio.c:42
+#: rpm2cpio.c:34
 msgid "argument is not an RPM package\n"
 msgstr "ÚÁÄÁÎÎÙÊ ÁÒÇÕÍÅÎÔ - ÎÅ ÐÁËÅÔ RPM\n"
 
-#: ../rpm2cpio.c:46
+#: rpm2cpio.c:38
 msgid "error reading header from package\n"
 msgstr "ÏÛÉÂËÁ ÞÔÅÎÉÑ ÈÅÄÅÒÁ ÉÚ ÐÁËÅÔÁ\n"
 
-#: ../url.c:136
-#, c-format
-msgid "Password for %s@%s: "
-msgstr "ðÁÒÏÌØ ÄÌÑ %s@%s: "
-
-#: ../url.c:160 ../url.c:186
-#, c-format
-msgid "error: %sport must be a number\n"
-msgstr "ÏÛÉÂËÁ: %sport ÄÏÌÖÅΠÂÙÔØ ÞÉÓÌÏÍ\n"
-
-#: ../url.c:271
-msgid "url port must be a number\n"
-msgstr "url port ÄÏÌÖÅΠÂÙÔØ ÞÉÓÌÏÍ\n"
-
-#. XXX PARANOIA
-#: ../url.c:308
-#, c-format
-msgid "logging into %s as %s, pw %s\n"
-msgstr "ÒÅÇÉÓÔÒÉÒÕÀÓØ × %s ËÁË %s, ÐÁÒÏÌØ %s\n"
-
-#: ../lib/rpmdb.c:169 ../url.c:422
-#, c-format
-msgid "failed to open %s\n"
-msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ %s\n"
-
-#: ../url.c:437
-#, c-format
-msgid "failed to create %s\n"
-msgstr "ÎÅ ÍÏÇÕ ÓÏÚÄÁÔØ %s\n"
-
-#: ../build/build.c:83 ../build/pack.c:248
+#: build/build.c:83 build/pack.c:263
 msgid "Unable to open temp file"
 msgstr "îÅ ÍÏÇÕ ÏÔËÒÙÔØ ×ÒÅÍÅÎÎÙÊ ÆÁÊÌ"
 
-#: ../build/build.c:122
+#: build/build.c:124
 #, c-format
 msgid "Executing: %s\n"
 msgstr "éÓÐÏÌÎÑÀ: %s\n"
 
-#: ../build/build.c:126
+#: build/build.c:128
 #, c-format
 msgid "Exec of %s failed (%s)"
 msgstr "éÓÐÏÌÎÉÔØ %s ÎÅ ÕÄÁÌÏÓØ (%s)"
 
-#: ../build/build.c:136
+#: build/build.c:138
 #, c-format
 msgid "Bad exit status from %s (%s)"
 msgstr "îÅ×ÅÒÎÙÊ ËÏÄ ×ÏÚ×ÒÁÔÁ ÉÚ %s (%s)"
 
-#: ../build/expression.c:189 ../build/expression.c:198
-msgid "parse error in tokenizer"
-msgstr "ÏÛÉÂËÁ ÒÁÚÂÏÒÁ × ÔÏËÅÎÁÊÚÅÒÅ"
+#: build/expression.c:208
+#, fuzzy
+msgid "syntax error while parsing =="
+msgstr "ÓÉÎÔÁËÓÉÞÅÓËÁÑ ÏÛÉÂËÁ × ×ÙÒÁÖÅÎÉÉ"
+
+#: build/expression.c:238
+#, fuzzy
+msgid "syntax error while parsing &&"
+msgstr "ÓÉÎÔÁËÓÉÞÅÓËÁÑ ÏÛÉÂËÁ × ×ÙÒÁÖÅÎÉÉ"
+
+#: build/expression.c:247
+#, fuzzy
+msgid "syntax error while parsing ||"
+msgstr "ÓÉÎÔÁËÓÉÞÅÓËÁÑ ÏÛÉÂËÁ × ×ÙÒÁÖÅÎÉÉ"
 
-#: ../build/expression.c:240
+#: build/expression.c:289
 msgid "parse error in expression"
 msgstr "ÏÛÉÂËÁ ÒÁÚÂÏÒÁ ×ÙÒÁÖÅÎÉÑ"
 
-#: ../build/expression.c:270
+#: build/expression.c:319
 msgid "unmatched ("
 msgstr "ÎÅÚÁËÒÙÔÁÑ ("
 
-#: ../build/expression.c:288
+#: build/expression.c:337
 msgid "undefined identifier"
 msgstr "ÎÅÏÐÒÅÄÅÌÅÎÎÙÊ ÉÄÅÎÔÉÆÉËÁÔÏÒ"
 
-#: ../build/expression.c:307
+#: build/expression.c:356
 msgid "- only on numbers"
 msgstr "- ÔÏÌØËÏ ÄÌÑ ÞÉÓÅÌ"
 
-#: ../build/expression.c:323
+#: build/expression.c:372
 msgid "! only on numbers"
 msgstr "! ÔÏÌØËÏ ÄÌÑ ÞÉÓÅÌ"
 
-#: ../build/expression.c:362 ../build/expression.c:407
-#: ../build/expression.c:464 ../build/expression.c:551
+#: build/expression.c:411 build/expression.c:456 build/expression.c:513
+#: build/expression.c:600
 msgid "types must match"
 msgstr "ÔÉÐÙ ÄÏÌÖÎÙ ÓÏ×ÐÁÄÁÔØ"
 
-#: ../build/expression.c:375
+#: build/expression.c:424
 msgid "* / not suported for strings"
 msgstr "* / ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ ÄÌÑ ÓÔÒÏË"
 
-#: ../build/expression.c:423
+#: build/expression.c:472
 msgid "- not suported for strings"
 msgstr "- ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ ÄÌÑ ÓÔÒÏË"
 
-#: ../build/expression.c:564
+#: build/expression.c:613
 msgid "&& and || not suported for strings"
 msgstr "&& É || ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ ÄÌÑ ÓÔÒÏË"
 
-#: ../build/expression.c:595 ../build/expression.c:640
+#: build/expression.c:644 build/expression.c:689
 msgid "syntax error in expression"
 msgstr "ÓÉÎÔÁËÓÉÞÅÓËÁÑ ÏÛÉÂËÁ × ×ÙÒÁÖÅÎÉÉ"
 
-#: ../build/files.c:221
+#: build/files.c:224
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "ïÛÉÂËÁ TIMECHECK: %s\n"
 
-#: ../build/files.c:266 ../build/files.c:278 ../build/files.c:347
-#: ../build/files.c:359 ../build/files.c:390
-#, c-format
-msgid "Bad %s() syntax: %s"
-msgstr "îÅ×ÅÒÎÙÊ ÓÉÎÔÁËÓÉÓ %s(): %s"
+#: build/files.c:267 build/files.c:349 build/files.c:512
+#, fuzzy, c-format
+msgid "Missing '(' in %s %s"
+msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ '(' × %s"
+
+#: build/files.c:278 build/files.c:466 build/files.c:523
+#, fuzzy, c-format
+msgid "Missing ')' in %s(%s"
+msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ')' × %s"
 
-#: ../build/files.c:308
+#: build/files.c:316 build/files.c:491
 #, c-format
 msgid "Invalid %s token: %s"
 msgstr "îÅ×ÅÒÎÙÊ ÔÏËÅΠ%s: %s"
 
-#: ../build/files.c:370
-msgid "No files after %%defattr(): %s"
-msgstr "æÁÊÌÙ ÐÏÓÌÅ %%defattr() ÎÅÄÏÐÕÓÔÉÍÙ: %s"
-
-#: ../build/files.c:400
-#, c-format
-msgid "Bad %s() mode spec: %s"
-msgstr "îÅ×ÅÒÎÙÅ ÐÒÁ×Á %s(): %s"
-
-#: ../build/files.c:412
+#: build/files.c:365
 #, c-format
-msgid "Bad %s() dirmode spec: %s"
-msgstr "îÅ×ÅÒÎÙÅ ÐÒÁ×Á ÎÁ ËÁÔÁÌÏÇ %s(): %s"
+msgid "Non-white space follows %s(): %s"
+msgstr ""
 
-#: ../build/files.c:463
-msgid "Bad %%config() syntax: %s"
-msgstr "îÅ×ÅÒÎÙÊ ÓÉÎÔÁËÓÉÓ %%config(): %s"
-
-#: ../build/files.c:481
-msgid "Invalid %%config token: %s"
-msgstr "îÅ×ÅÒÎÙÊ ÔÏËÅΠ%%config: %s"
+#: build/files.c:403
+#, fuzzy, c-format
+msgid "Bad syntax: %s(%s)"
+msgstr "îÅ×ÅÒÎÙÊ ÓÉÎÔÁËÓÉÓ %s(): %s"
 
-#: ../build/files.c:502
-#, c-format
-msgid "Missing '(' in %s"
-msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ '(' × %s"
+#: build/files.c:413
+#, fuzzy, c-format
+msgid "Bad mode spec: %s(%s)"
+msgstr "îÅ×ÅÒÎÙÅ ÐÒÁ×Á %s(): %s"
 
-#: ../build/files.c:511
-#, c-format
-msgid "Missing ')' in %s"
-msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ')' × %s"
+#: build/files.c:425
+#, fuzzy, c-format
+msgid "Bad dirmode spec: %s(%s)"
+msgstr "îÅ×ÅÒÎÙÅ ÐÒÁ×Á ÎÁ ËÁÔÁÌÏÇ %s(): %s"
 
-#: ../build/files.c:537
+#: build/files.c:549
 msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
 msgstr "îÅÏÂÙÞÎÁÑ ÄÌÉÎÁ locale: \"%.*s\" × %%lang(%s)"
 
-#: ../build/files.c:547
+#: build/files.c:559
 msgid "Duplicate locale %.*s in %%lang(%s)"
 msgstr "äÕÂÌÉËÁÔ locale %.*s × %%lang(%s)"
 
-#: ../build/files.c:639
+#: build/files.c:651
 msgid "Hit limit for %%docdir"
 msgstr "ìÉÍÉÔ ÄÌÑ %%docdir ÐÒÅ×ÚÏÊÄÅÎ"
 
-#: ../build/files.c:645
+#: build/files.c:657
 msgid "Only one arg for %%docdir"
 msgstr "ôÏÌØËÏ ÏÄÉΠÁÒÇÕÍÅÎÔ ÄÌÑ %%docdir"
 
 #. We already got a file -- error
-#: ../build/files.c:670
+#: build/files.c:682
 #, c-format
 msgid "Two files on one line: %s"
 msgstr "ä×Á ÆÁÊÌÁ ÎÁ ÏÄÎÏÊ ÓÔÒÏËÅ: %s"
 
-#: ../build/files.c:683
+#: build/files.c:695
 #, c-format
 msgid "File must begin with \"/\": %s"
 msgstr "æÁÊÌ ÄÏÌÖÅΠÎÁÞÉÎÁÔØÓÑ Ó \"/\": %s"
 
-#: ../build/files.c:695
+#: build/files.c:707
 msgid "Can't mix special %%doc with other forms: %s"
 msgstr "îÅÌØÚÑ ÓÍÅÛÉ×ÁÔØ ÓÐÅÃ. %%doc Ó ÄÒÕÇÉÍÉ ÆÏÒÍÁÍÉ: %s"
 
-#: ../build/files.c:783
+#: build/files.c:792
 #, c-format
 msgid "File listed twice: %s"
 msgstr "æÁÊÌ ÕËÁÚÁΠÄ×ÁÖÄÙ: %s"
 
-#: ../build/files.c:943
+#: build/files.c:952
 #, c-format
 msgid "File doesn't match prefix (%s): %s"
 msgstr "æÁÊÌ ÎÅ ÏÔ×ÅÞÁÅÔ ÐÒÅÆÉËÓÕ (%s): %s"
 
-#: ../build/files.c:953 ../build/files.c:1090
+#: build/files.c:962 build/files.c:1099
 #, c-format
 msgid "File not found: %s"
 msgstr "æÁÊÌ ÎÅ ÎÁÊÄÅÎ: %s"
 
-#: ../build/files.c:996
+#: build/files.c:1005
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "îÅ×ÅÒÎÁÑ ÐÁÒÁ ÈÏÚÑÉÎ/ÇÒÕÐÐÁ: %s\n"
 
-#: ../build/files.c:1010
+#: build/files.c:1019
 #, c-format
 msgid "File %4d: 0%o %s.%s\t %s\n"
 msgstr "æÁÊÌ %4d: 0%o %s.%s\t %s\n"
 
-#: ../build/files.c:1074
+#: build/files.c:1083
 #, c-format
 msgid "File needs leading \"/\": %s"
 msgstr "æÁÊÌ ÄÏÌÖÅΠÎÁÞÉÎÁÔØÓÑ Ó \"/\": %s"
 
-#: ../build/files.c:1131
+#: build/files.c:1140
 msgid "Could not open %%files file: %s"
 msgstr "îÅ ÍÏÇÕ ÏÔËÒÙÔØ ÆÁÊÌ %%files: %s"
 
-#: ../build/files.c:1138 ../build/pack.c:433
+#: build/files.c:1147 build/pack.c:484
 #, c-format
 msgid "line: %s"
 msgstr "ÓÔÒÏËÁ: %s"
 
-#: ../build/files.c:1458 ../build/parsePrep.c:31
+#: build/files.c:1469 build/parsePrep.c:29
 #, c-format
 msgid "Bad owner/group: %s"
 msgstr "îÅ×ÅÒÎÁÑ ÐÁÒÁ ÈÏÚÑÉÎ/ÇÒÕÐÐÁ: %s"
 
-#: ../build/files.c:1512
+#: build/files.c:1522
 #, c-format
 msgid "Couldn't exec %s"
 msgstr "îÅ ÍÏÇÕ ÉÓÐÏÌÎÉÔØ %s"
 
-#: ../build/files.c:1516
+#: build/files.c:1526
 #, c-format
 msgid "Couldn't fork %s"
 msgstr "îÅ ÍÏÇÕ ÆÏÒËÎÕÔØ %s"
 
-#: ../build/files.c:1566
+#: build/files.c:1605
 #, c-format
 msgid "%s failed"
 msgstr "%s ÎÅ ÕÄÁÌÏÓØ"
 
-#: ../build/files.c:1570
+#: build/files.c:1609
 #, c-format
 msgid "failed to write all data to %s"
 msgstr "ÚÁÐÉÓØ ×ÓÅÈ ÄÁÎÎÙÈ × %s ÎÅ ÕÄÁÌÁÓØ"
 
-#: ../build/files.c:1604
-msgid "Finding provides...\n"
-msgstr "ïÐÒÅÄÅÌÑÀ ÓÅÒ×ÉÓÙ, ÐÒÅÄÏÓÔÁ×ÌÑÅÍÙÅ ÐÁËÅÔÏÍ...\n"
-
-#: ../build/files.c:1611
-msgid "Failed to find provides"
-msgstr "ïÛÉÂËÁ ÏÐÒÅÄÅÌÅÎÉÑ ÓÅÒ×ÉÓÏ×, ÐÒÅÄÏÓÔÁ×ÌÑÅÍÙÈ ÐÁËÅÔÏÍ"
-
-#: ../build/files.c:1630
-msgid "Finding requires...\n"
+#: build/files.c:1695
+#, fuzzy, c-format
+msgid "Finding  %s: (using %s)...\n"
 msgstr "ïÐÒÅÄÅÌÑÀ ÔÒÅÂÏ×ÁÎÉÑ ÐÁËÅÔÁ...\n"
 
-#: ../build/files.c:1637
-msgid "Failed to find requires"
-msgstr "ïÛÉÂËÁ ÏÐÒÅÄÅÌÅÎÉÑ ÔÒÅÂÏ×ÁÎÉÊ ÐÁËÅÔÁ"
-
-#: ../build/files.c:1671
-msgid "Provides:"
-msgstr "ðÒÅÄÏÓÔÁ×ÌÑÅÔ:"
-
-#: ../build/files.c:1686
-msgid "Prereqs:"
-msgstr "ôÒÅÂÕÅÔ ÄÌÑ ÕÓÔÁÎÏ×ËÉ:"
-
-#: ../build/files.c:1698
-msgid "Requires:"
-msgstr "ôÒÅÂÕÅÔ:"
+#: build/files.c:1723 build/files.c:1732
+#, fuzzy, c-format
+msgid "Failed to find %s:"
+msgstr "ïÛÉÂËÁ ÏÐÒÅÄÅÌÅÎÉÑ ÓÅÒ×ÉÓÏ×, ÐÒÅÄÏÓÔÁ×ÌÑÅÍÙÈ ÐÁËÅÔÏÍ"
 
-#: ../build/files.c:1722
+#: build/files.c:1838
 #, c-format
 msgid "Processing files: %s\n"
 msgstr "ïÂÒÁÂÁÔÙ×ÁÀ ÆÁÊÌÙ: %s\n"
 
-#: ../build/names.c:32 ../build/names.c:64
+#: build/names.c:32 build/names.c:64
 msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
 msgstr "RPMERR_INTERNAL: äÏÓÔÉÇÎÕÔ ÐÒÅÄÅÌ × getUname()\n"
 
-#: ../build/names.c:97 ../build/names.c:129
+#: build/names.c:97 build/names.c:129
 msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
 msgstr "RPMERR_INTERNAL: äÏÓÔÉÇÎÕÔ ÐÒÅÄÅÌ × getGname()\n"
 
-#: ../build/names.c:167
+#: build/names.c:167
 #, c-format
 msgid "Could not canonicalize hostname: %s\n"
 msgstr "îÅ ÍÏÇÕ ËÁÎÏÎÉÚÉÒÏ×ÁÔØ ÉÍÑ ÈÏÓÔÁ: %s\n"
 
-#: ../build/pack.c:134
+#: build/pack.c:131
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr "îÅ ÍÏÇÕ ÓÇÅÎÅÒÉÒÏ×ÁÔØ ÉÍÑ ÆÁÊÌÁ ÄÌÑ ÐÁËÅÔÁ %s: %s\n"
 
-#: ../build/pack.c:167
+#: build/pack.c:148
+#, fuzzy, c-format
+msgid "cannot create %s: %s\n"
+msgstr "ÎÅ ÍÏÇÕ ÓÏÚÄÁÔØ %s"
+
+#: build/pack.c:183
 #, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "readRPM: ÏÔËÒÙÔÉÅ %s: %s\n"
 
-#: ../build/pack.c:177
+#: build/pack.c:193
 #, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "readRPM: ÞÔÅÎÉÅ %s: %s\n"
 
-#: ../build/pack.c:197
+#: build/pack.c:213
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr "readRPM: %s - ÎÅ ÐÁËÅÔ RPM\n"
 
-#: ../build/pack.c:203
+#: build/pack.c:219
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr "readRPM: ÞÉÔÁÀ ÈÅÄÅÒ ÉÚ %s\n"
 
-#: ../build/pack.c:259
+#: build/pack.c:274
 msgid "Bad CSA data"
 msgstr "îÅ×ÅÒÎÙÅ ÄÁÎÎÙÅ CSA"
 
-#: ../build/pack.c:282
+#: build/pack.c:305
 #, c-format
 msgid "Could not open %s\n"
 msgstr "îÅ ÍÏÇÕ ÏÔËÒÙÔØ %s\n"
 
-#: ../build/pack.c:314 ../build/pack.c:357
+#: build/pack.c:337 build/pack.c:379
 #, c-format
 msgid "Unable to write package: %s"
 msgstr "îÅ ÍÏÇÕ ÚÁÐÉÓÁÔØ ÐÁËÅÔ: %s"
 
-#: ../build/pack.c:347
+#: build/pack.c:352
+#, c-format
+msgid "Generating signature: %d\n"
+msgstr "çÅÎÅÒÉÒÕÀ ÐÏÄÐÉÓØ: %d\n"
+
+#: build/pack.c:369
 #, c-format
 msgid "Unable to read sigtarget: %s"
 msgstr "îÅ ÍÏÇÕ ÐÒÏÞÉÔÁÔØ ÃÅÌØ ÐÏÄÐÉÓÉ: %s"
 
-#: ../build/pack.c:372
+#: build/pack.c:394
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "úÁÐÉÓÁÎ: %s\n"
 
-#: ../build/pack.c:387
+#: build/pack.c:411 build/pack.c:435
 #, c-format
 msgid "create archive failed on file %s: %s"
 msgstr "ÏÛÉÂËÁ ÓÏÚÄÁÎÉÑ ÁÒÈÉ×Á ÎÁ ÆÁÊÌÅ %s: %s"
 
-#: ../build/pack.c:403
+#: build/pack.c:454
 #, c-format
 msgid "cpio_copy write failed: %s"
 msgstr "ÎÅÕÄÁÞÁ ÚÁÐÉÓÉ cpio_copy: %s"
 
-#: ../build/pack.c:410
+#: build/pack.c:461
 #, c-format
 msgid "cpio_copy read failed: %s"
 msgstr "ÎÅÕÄÁÞÁ ÞÔÅÎÉÑ cpio_copy: %s"
 
-#: ../build/pack.c:489
+#: build/pack.c:540
 #, c-format
 msgid "Could not open PreIn file: %s"
 msgstr "îÅ ÍÏÇÕ ÏÔËÒÙÔØ ÆÁÊÌ PreIn: %s"
 
-#: ../build/pack.c:496
+#: build/pack.c:547
 #, c-format
 msgid "Could not open PreUn file: %s"
 msgstr "îÅ ÍÏÇÕ ÏÔËÒÙÔØ ÆÁÊÌ PreUn: %s"
 
-#: ../build/pack.c:503
+#: build/pack.c:554
 #, c-format
 msgid "Could not open PostIn file: %s"
 msgstr "îÅ ÍÏÇÕ ÏÔËÒÙÔØ ÆÁÊÌ PostIn: %s"
 
-#: ../build/pack.c:510
+#: build/pack.c:561
 #, c-format
 msgid "Could not open PostUn file: %s"
 msgstr "îÅ ÍÏÇÕ ÏÔËÒÙÔØ ÆÁÊÌ PostUn: %s"
 
-#: ../build/pack.c:518
+#: build/pack.c:569
 #, c-format
 msgid "Could not open VerifyScript file: %s"
 msgstr "îÅ ÍÏÇÕ ÏÔËÒÙÔØ ÆÁÊÌ VerifyScript: %s"
 
-#: ../build/pack.c:534
+#: build/pack.c:585
 #, c-format
 msgid "Could not open Trigger script file: %s"
 msgstr "îÅ ÍÏÇÕ ÏÔËÒÙÔØ ÆÁÊÌ Trigger script: %s"
 
-#: ../build/parseBuildInstallClean.c:27
+#: build/parseBuildInstallClean.c:27
 #, c-format
 msgid "line %d: second %s"
 msgstr "ÓÔÒÏËÁ %d: ×ÔÏÒÏÅ %s"
 
-#: ../build/parseChangelog.c:95
+#: build/parseChangelog.c:103
 msgid "%%changelog entries must start with *"
 msgstr "ÚÁÐÉÓÉ %%changelog ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó *"
 
-#: ../build/parseChangelog.c:103
+#: build/parseChangelog.c:111
 msgid "incomplete %%changelog entry"
 msgstr "ÎÅÐÏÌÎÁÑ ÚÁÐÉÓØ %%changelog"
 
-#: ../build/parseChangelog.c:118
+#: build/parseChangelog.c:126
 msgid "bad date in %%changelog: %s"
 msgstr "ÎÅ×ÅÒÎÁÑ ÄÁÔÁ × %%changelog: %s"
 
-#: ../build/parseChangelog.c:123
+#: build/parseChangelog.c:131
 msgid "%%changelog not in decending chronological order"
 msgstr "%%changelog ÎÅ × ÎÉÓÈÏÄÑÝÅÍ ÈÒÏÎÏÌÏÇÉÞÅÓËÏÍ ÐÏÒÑÄËÅ"
 
-#: ../build/parseChangelog.c:131 ../build/parseChangelog.c:142
+#: build/parseChangelog.c:139 build/parseChangelog.c:150
 msgid "missing name in %%changelog"
 msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ÉÍÑ × %%changelog"
 
-#: ../build/parseChangelog.c:149
+#: build/parseChangelog.c:157
 msgid "no description in %%changelog"
 msgstr "ÎÅÔ ÏÐÉÓÁÎÉÑ × %%changelog"
 
-#: ../build/parseDescription.c:35
+#: build/parseDescription.c:33
 msgid "line %d: Error parsing %%description: %s"
 msgstr "ÓÔÒÏËÁ %d: ïÛÉÂËÁ ÒÁÚÂÏÒÁ %%description: %s"
 
-#: ../build/parseDescription.c:48 ../build/parseFiles.c:42
-#: ../build/parseScript.c:170
+#: build/parseDescription.c:46 build/parseFiles.c:40 build/parseScript.c:168
 #, c-format
 msgid "line %d: Bad option %s: %s"
 msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÁÑ ÏÐÃÉÑ %s: %s"
 
-#: ../build/parseDescription.c:62 ../build/parseFiles.c:56
-#: ../build/parseScript.c:184
+#: build/parseDescription.c:60 build/parseFiles.c:54 build/parseScript.c:182
 #, c-format
 msgid "line %d: Too many names: %s"
 msgstr "ÓÔÒÏËÁ %d: óÌÉÛËÏÍ ÍÎÏÇÏ ÉÍÅÎ: %s"
 
-#: ../build/parseDescription.c:72 ../build/parseFiles.c:66
-#: ../build/parseScript.c:194
+#: build/parseDescription.c:70 build/parseFiles.c:64 build/parseScript.c:192
 #, c-format
 msgid "line %d: Package does not exist: %s"
 msgstr "ÓÔÒÏËÁ %d: ðÁËÅÔ ÎÅ ÓÕÝÅÓÔ×ÕÅÔ: %s"
 
-#: ../build/parseDescription.c:84
+#: build/parseDescription.c:82
 #, c-format
 msgid "line %d: Second description"
 msgstr "ÓÔÒÏËÁ %d: ÷ÔÏÒÏÅ ÏÐÉÓÁÎÉÅ"
 
-#: ../build/parseFiles.c:29
+#: build/parseFiles.c:27
 msgid "line %d: Error parsing %%files: %s"
 msgstr "ÓÔÒÏËÁ %d: ïÛÉÂËÁ ÒÁÚÂÏÒÁ %%files: %s"
 
-#: ../build/parseFiles.c:74
+#: build/parseFiles.c:72
 msgid "line %d: Second %%files list"
 msgstr "ÓÔÒÏËÁ %d: ÷ÔÏÒÏÊ ÓÐÉÓÏË %%files"
 
-#: ../build/parsePreamble.c:143
+#: build/parsePreamble.c:141
 #, c-format
 msgid "Architecture is excluded: %s"
 msgstr "áÒÈÉÔÅËÔÕÒÁ ÉÓËÌÀÞÅÎÁ: %s"
 
-#: ../build/parsePreamble.c:148
+#: build/parsePreamble.c:146
 #, c-format
 msgid "Architecture is not included: %s"
 msgstr "áÒÈÉÔÅËÔÕÒÁ ÎÅ ×ËÌÀÞÅÎÁ: %s"
 
-#: ../build/parsePreamble.c:153
+#: build/parsePreamble.c:151
 #, c-format
 msgid "OS is excluded: %s"
 msgstr "ïó ÉÓËÌÀÞÅÎÁ: %s"
 
-#: ../build/parsePreamble.c:158
+#: build/parsePreamble.c:156
 #, c-format
 msgid "OS is not included: %s"
 msgstr "ïó ÎÅ ×ËÌÀÞÅÎÁ: %s"
 
-#: ../build/parsePreamble.c:193
+#: build/parsePreamble.c:170
 #, c-format
 msgid "%s field must be present in package: %s"
 msgstr "ðÏÌÅ %s ÏÂÑÚÁÎÏ ÐÒÉÓÕÔÓÔ×Ï×ÁÔØ × ÐÁËÅÔÅ: %s"
 
-#: ../build/parsePreamble.c:215
+#: build/parsePreamble.c:192
 #, c-format
 msgid "Duplicate %s entries in package: %s"
 msgstr "äÕÂÌÉÒÕÀÝÉÅÓÑ ÚÁÐÉÓÉ %s × ÐÁËÅÔÅ: %s"
 
-#: ../build/parsePreamble.c:262
+#: build/parsePreamble.c:239
 #, c-format
 msgid "Unable to stat icon: %s"
 msgstr "îÅ ÍÏÇÕ ÐÒÏ×ÅÒÉÔØ ÐÉËÔÏÇÒÁÍÍÕ: %s"
 
-#: ../build/parsePreamble.c:273
+#: build/parsePreamble.c:250
 #, c-format
 msgid "Unable to read icon: %s"
 msgstr "îÅ ÍÏÇÕ ÐÒÏÞÉÔÁÔØ ÐÉËÔÏÇÒÁÍÍÕ: %s"
 
-#: ../build/parsePreamble.c:283
+#: build/parsePreamble.c:260
 #, c-format
 msgid "Unknown icon type: %s"
 msgstr "îÅÉÚ×ÅÓÔÎÙÊ ÔÉРÐÉËÔÏÇÒÁÍÍÙ: %s"
 
-#: ../build/parsePreamble.c:346
+#: build/parsePreamble.c:323
 #, c-format
 msgid "line %d: Malformed tag: %s"
 msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÙÊ ÔÜÇ: %s"
 
 #. Empty field
-#: ../build/parsePreamble.c:354
+#: build/parsePreamble.c:331
 #, c-format
 msgid "line %d: Empty tag: %s"
 msgstr "ÓÔÒÏËÁ %d: ðÕÓÔÏÊ ÔÜÇ: %s"
 
-#: ../build/parsePreamble.c:377 ../build/parsePreamble.c:384
+#: build/parsePreamble.c:354 build/parsePreamble.c:361
 #, c-format
 msgid "line %d: Illegal char '-' in %s: %s"
 msgstr "ÓÔÒÏËÁ %d: îÅÄÏÐÕÓÔÉÍÙÊ ÓÉÍ×ÏÌ '-' × %s: %s"
 
-#: ../build/parsePreamble.c:422
+#: build/parsePreamble.c:399
 #, c-format
 msgid "line %d: BuildRoot can not be \"/\": %s"
 msgstr "ÓÔÒÏËÁ %d: BuildRoot ÎÅ ÍÏÖÅÔ ÂÙÔØ \"/\": %s"
 
-#: ../build/parsePreamble.c:435
+#: build/parsePreamble.c:412
 #, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s"
 msgstr "ÓÔÒÏËÁ %d: ðÒÅÆÉËÓ ÎÅ ÍÏÖÅÔ ÚÁËÁÎÞÉ×ÁÔØÓÑ ÎÁ \"/\": %s"
 
-#: ../build/parsePreamble.c:447
+#: build/parsePreamble.c:424
 #, c-format
 msgid "line %d: Docdir must begin with '/': %s"
 msgstr "ÓÔÒÏËÁ %d: Docdir ÄÏÌÖÅΠÎÁÞÉÎÁÔØÓÑ Ó '/': %s"
 
-#: ../build/parsePreamble.c:459
+#: build/parsePreamble.c:436
 #, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s"
 msgstr "ÓÔÒÏËÁ %d: ðÏÌÅ Epoch/Serial ÄÏÌÖÎÏ ÂÙÔØ ÞÉÓÌÏÍ: %s"
 
-#: ../build/parsePreamble.c:526
+#: build/parsePreamble.c:499
 #, c-format
 msgid "line %d: Bad BuildArchitecture format: %s"
 msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÙÊ ÆÏÒÍÁÔ BuildArchitecture: %s"
 
-#: ../build/parsePreamble.c:536
+#: build/parsePreamble.c:509
 #, c-format
 msgid "Internal error: Bogus tag %d"
 msgstr "÷ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ: \"ìÅ×ÙÊ\" ÔÜÇ %d"
 
-#: ../build/parsePreamble.c:683
+#: build/parsePreamble.c:656
 #, c-format
 msgid "Bad package specification: %s"
 msgstr "îÅ×ÅÒÎÁÑ ÓÐÅÃÉÆÉËÁÃÉÑ ÐÁËÅÔÁ: %s"
 
-#: ../build/parsePreamble.c:689
+#: build/parsePreamble.c:662
 #, c-format
 msgid "Package already exists: %s"
 msgstr "ðÁËÅÔ ÕÖÅ ÓÕÝÅÓÔ×ÕÅÔ: %s"
 
-#: ../build/parsePreamble.c:716
+#: build/parsePreamble.c:689
 #, c-format
 msgid "line %d: Unknown tag: %s"
 msgstr "ÓÔÒÏËÁ %d: îÅÉÚ×ÅÓÔÎÙÊ ÔÜÇ: %s"
 
-#: ../build/parsePreamble.c:741
+#: build/parsePreamble.c:714
 msgid "Spec file can't use BuildRoot"
 msgstr "æÁÊÌ spec ÎÅ ÍÏÖÅÔ ÉÓÐÏÌØÚÏ×ÁÔØ BuildRoot"
 
-#: ../build/parsePrep.c:27
+#: build/parsePrep.c:25
 #, c-format
 msgid "Bad source: %s: %s"
 msgstr "îÅ×ÅÒÎÙÊ ÉÓÈÏÄÎÉË: %s: %s"
 
-#: ../build/parsePrep.c:53
+#: build/parsePrep.c:51
 #, c-format
 msgid "No patch number %d"
 msgstr "îÅÔ ÐÁÔÞÁ ÎÏÍÅÒ %d"
 
-#: ../build/parsePrep.c:119
+#: build/parsePrep.c:117
 #, c-format
 msgid "No source number %d"
 msgstr "îÅÔ ÉÓÈÏÄÎÉËÁ ÎÏÍÅÒ %d"
 
-#: ../build/parsePrep.c:138
+#: build/parsePrep.c:136
 #, c-format
 msgid "Couldn't download nosource %s: %s"
 msgstr "îÅ ÍÏÇÕ ÐÏÌÕÞÉÔØ nosource %s: %s"
 
-#: ../build/parsePrep.c:193
+#: build/parsePrep.c:191
 msgid "Error parsing %%setup: %s"
 msgstr "ïÛÉÂËÁ ÒÁÚÂÏÒÁ %%setup: %s"
 
-#: ../build/parsePrep.c:208
+#: build/parsePrep.c:206
 msgid "line %d: Bad arg to %%setup %c: %s"
 msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÙÊ ÁÒÇÕÍÅÎÔ ÄÌÑ %%setup %c: %s"
 
-#: ../build/parsePrep.c:229
+#: build/parsePrep.c:227
 msgid "line %d: Bad %%setup option %s: %s"
 msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÁÑ ÏÐÃÉÑ %%setup %s: %s"
 
-#: ../build/parsePrep.c:353
+#: build/parsePrep.c:351
 msgid "line %d: Need arg to %%patch -b: %s"
 msgstr "ÓÔÒÏËÁ %d: äÌÑ %%patch -b ÎÕÖÅΠÁÒÇÕÍÅÎÔ: %s"
 
-#: ../build/parsePrep.c:361
+#: build/parsePrep.c:359
 msgid "line %d: Need arg to %%patch -z: %s"
 msgstr "ÓÔÒÏËÁ %d: äÌÑ %%patch -z ÎÕÖÅΠÁÒÇÕÍÅÎÔ: %s"
 
-#: ../build/parsePrep.c:373
+#: build/parsePrep.c:371
 msgid "line %d: Need arg to %%patch -p: %s"
 msgstr "ÓÔÒÏËÁ %d: äÌÑ %%patch -p ÎÕÖÅΠÁÒÇÕÍÅÎÔ: %s"
 
-#: ../build/parsePrep.c:379
+#: build/parsePrep.c:377
 msgid "line %d: Bad arg to %%patch -p: %s"
 msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÙÊ ÁÒÇÕÍÅÎÔ ÄÌÑ %%patch -p: %s"
 
-#: ../build/parsePrep.c:386
+#: build/parsePrep.c:384
 msgid "Too many patches!"
 msgstr "óÌÉÛËÏÍ ÍÎÏÇÏ ÐÁÔÞÅÊ!"
 
-#: ../build/parsePrep.c:390
+#: build/parsePrep.c:388
 msgid "line %d: Bad arg to %%patch: %s"
 msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÙÊ ÁÒÇÕÍÅÎÔ ÄÌÑ %%patch: %s"
 
-#: ../build/parsePrep.c:426
+#: build/parsePrep.c:424
 msgid "line %d: second %%prep"
 msgstr "ÓÔÒÏËÁ %d: ÷ÔÏÒÏÊ %%prep"
 
-#: ../build/parseReqs.c:47 ../build/parseReqs.c:56
+#: build/parseReqs.c:91
+#, fuzzy, c-format
+msgid ""
+"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
+msgstr "ÓÔÒÏËÁ %d: %s: ÔÏËÅÎÙ ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó ÂÕË×Ù ÉÌÉ ÃÉÆÒÙ: %s"
+
+#: build/parseReqs.c:102
 #, fuzzy, c-format
 msgid "line %d: File name not permitted: %s"
 msgstr "ÓÔÒÏËÁ %d: éÍÅÎÁ ÆÁÊÌÏ× × Obsoletes ÎÅÄÏÐÕÓÔÉÍÙ: %s"
 
-#: ../build/parseReqs.c:115
+#: build/parseReqs.c:134
 #, fuzzy, c-format
 msgid "line %d: Versioned file name not permitted: %s"
 msgstr "ÓÔÒÏËÁ %d: ÷ÅÒÓÉÉ É ÉÍÅÎÁ ÆÁÊÌÏ× × %s ÎÅÄÏÐÕÓÔÉÍÙ: %s"
 
-#: ../build/parseReqs.c:123
+#: build/parseReqs.c:146
 #, fuzzy, c-format
 msgid "line %d: Version not permitted: %s"
 msgstr "ÓÔÒÏËÁ %d: ÷ %s ÔÒÅÂÕÅÔÓÑ ×ÅÒÓÉÑ: %s"
 
-#: ../build/parseReqs.c:143
+#: build/parseReqs.c:172
 #, fuzzy, c-format
 msgid "line %d: Version required: %s"
 msgstr "ÓÔÒÏËÁ %d: ÷ %s ÔÒÅÂÕÅÔÓÑ ×ÅÒÓÉÑ: %s"
 
-#: ../build/parseReqs.c:179
-#, c-format
-msgid "line %d: No file names in Obsoletes: %s"
-msgstr "ÓÔÒÏËÁ %d: éÍÅÎÁ ÆÁÊÌÏ× × Obsoletes ÎÅÄÏÐÕÓÔÉÍÙ: %s"
-
-#: ../build/parseReqs.c:186
-#, fuzzy, c-format
-msgid "line %d: tokens must begin with alpha-numeric: %s"
-msgstr "ÓÔÒÏËÁ %d: %s: ÔÏËÅÎÙ ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó ÂÕË×Ù ÉÌÉ ÃÉÆÒÙ: %s"
-
-#: ../build/parseScript.c:138
+#: build/parseScript.c:136
 #, c-format
 msgid "line %d: triggers must have --: %s"
 msgstr "ÓÔÒÏËÁ %d: ôÒÉÇÇÅÒÙ ÄÏÌÖÎÙ ÓÏÄÅÒÖÁÔØ --: %s"
 
-#: ../build/parseScript.c:148 ../build/parseScript.c:212
+#: build/parseScript.c:146 build/parseScript.c:210
 #, c-format
 msgid "line %d: Error parsing %s: %s"
 msgstr "ÓÔÒÏËÁ %d: ïÛÉÂËÁ ÒÁÚÂÏÒÁ %s: %s"
 
-#: ../build/parseScript.c:158
+#: build/parseScript.c:156
 #, c-format
 msgid "line %d: script program must begin with '/': %s"
 msgstr "ÓÔÒÏËÁ %d: ðÒÏÇÒÁÍÍÙ × ÓËÒÉÐÔÁÈ ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó '/': %s"
 
-#: ../build/parseScript.c:203
+#: build/parseScript.c:201
 #, c-format
 msgid "line %d: Second %s"
 msgstr "ÓÔÒÏËÁ %d: ÷ÔÏÒÏÅ %s"
 
-#: ../build/parseSpec.c:119
+#: build/parseSpec.c:126
+#, c-format
+msgid "line %d: %s"
+msgstr "ÓÔÒÏËÁ %d: %s"
+
+#: build/parseSpec.c:172
 #, c-format
 msgid "Unable to open: %s\n"
 msgstr "îÅ ÍÏÇÕ ÏÔËÒÙÔØ %s\n"
 
-#: ../build/parseSpec.c:131
+#: build/parseSpec.c:184
 msgid "Unclosed %%if"
 msgstr "îÅÚÁËÒÙÔÙÊ %%if"
 
-#: ../build/parseSpec.c:187
+#: build/parseSpec.c:243
 #, c-format
-msgid "line %d: %s"
-msgstr "ÓÔÒÏËÁ %d: %s"
+msgid "%s:%d: parseExpressionBoolean returns %d"
+msgstr ""
 
 #. Got an else with no %if !
-#: ../build/parseSpec.c:218
+#: build/parseSpec.c:251
 msgid "%s:%d: Got a %%else with no if"
 msgstr "%s:%d: îÁÊÄÅΠ%%else ÂÅÚ if"
 
 #. Got an end with no %if !
-#: ../build/parseSpec.c:229
+#: build/parseSpec.c:262
 msgid "%s:%d: Got a %%endif with no if"
 msgstr "%s:%d: îÁÊÄÅΠ%%endif ÂÅÚ if"
 
-#: ../build/parseSpec.c:243 ../build/parseSpec.c:252
+#: build/parseSpec.c:276 build/parseSpec.c:285
 msgid "malformed %%include statement"
 msgstr "ÎÅ×ÅÒÎÏÅ ÏÂßÑ×ÌÅÎÉÅ %%include"
 
-#: ../build/parseSpec.c:332
+#: build/parseSpec.c:366
 #, c-format
 msgid "Timecheck value must be an integer: %s"
 msgstr "úÎÁÞÅÎÉÅ Timecheck ÄÏÌÖÎÏ ÂÙÔØ ÃÅÌÙÍ: %s"
 
-#: ../build/parseSpec.c:415
+#: build/parseSpec.c:449
 msgid "No buildable architectures"
 msgstr "îÅÔ ÁÒÈÉÔÅËÔÕÒ, ËÏÔÏÒÙÅ ÍÏÖÎÏ ÐÏÓÔÒÏÉÔØ"
 
-#: ../build/parseSpec.c:460
+#: build/parseSpec.c:494
 msgid "Package has no %%description: %s"
 msgstr "ðÁËÅÔ ÎÅ ÉÍÅÅÔ %%description: %s"
 
-#: ../build/spec.c:28
+#: build/spec.c:31
 #, c-format
 msgid "archive = %s, fs = %s\n"
 msgstr "ÁÒÈÉ× = %s, fs = %s\n"
 
-#: ../build/spec.c:224
+#: build/spec.c:237
 #, c-format
 msgid "line %d: Bad number: %s"
 msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÏÅ ÞÉÓÌÏ: %s"
 
-#: ../build/spec.c:230
+#: build/spec.c:243
 #, c-format
 msgid "line %d: Bad no%s number: %d"
 msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÏÅ ÞÉÓÌÏ no%s: %d"
 
-#: ../build/spec.c:286
+#: build/spec.c:301
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÏÅ ÞÉÓÌÏ %s: %s\n"
 
-#: ../lib/cpio.c:362
+#: lib/cpio.c:385
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr "ÎÅ ÍÏÇÕ ÐÅÒÅÉÍÅÎÏ×ÁÔØ %s × %s: %s\n"
 
-#: ../lib/cpio.c:368
+#: lib/cpio.c:391
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr "ÎÅ ÍÏÇÕ ÕÄÁÌÉÔØ %s: %s\n"
 
-#: ../lib/cpio.c:547
+#: lib/cpio.c:582
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr "getNextHeader: %s\n"
 
-#: ../lib/cpio.c:999
+#: lib/cpio.c:1044
 #, c-format
 msgid "(error 0x%x)"
 msgstr "(ÏÛÉÂËÁ 0x%x)"
 
-#: ../lib/cpio.c:1002
+#: lib/cpio.c:1047
 msgid "Bad magic"
 msgstr "îÅ×ÅÒÎÙÊ magic"
 
-#: ../lib/cpio.c:1003
+#: lib/cpio.c:1048
 msgid "Bad/unreadable  header"
 msgstr "îÅ×ÅÒÎÙÊ/ÎÅÞÉÔÁÅÍÙÊ ÚÁÇÏÌÏ×ÏË"
 
-#: ../lib/cpio.c:1021
+#: lib/cpio.c:1066
 msgid "Header size too big"
 msgstr "úÁÇÏÌÏ×ÏË ÓÌÉÛËÏÍ ×ÅÌÉË"
 
-#: ../lib/cpio.c:1022
+#: lib/cpio.c:1067
 msgid "Unknown file type"
 msgstr "îÅÉÚ×ÅÓÔÎÙÊ ÔÉРÆÁÊÌÁ"
 
-#: ../lib/cpio.c:1023
+#: lib/cpio.c:1068
 msgid "Missing hard link"
 msgstr "ïÔÓÕÔÓÔ×ÕÅÔ ÖÅÓÔËÁÑ ÓÓÙÌËÁ"
 
-#: ../lib/cpio.c:1024
+#: lib/cpio.c:1069
 msgid "Internal error"
 msgstr "÷ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ"
 
-#: ../lib/cpio.c:1033
+#: lib/cpio.c:1078
 msgid " failed - "
 msgstr "ÎÅ ÕÄÁÌÏÓØ - "
 
-#: ../lib/dbindex.c:32
+#: lib/dbindex.c:32
 #, c-format
 msgid "cannot open file %s: %s"
 msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ ÆÁÊÌ %s: %s"
 
-#: ../lib/dbindex.c:77
+#: lib/dbindex.c:84
 #, c-format
 msgid "error getting record %s from %s"
 msgstr "ÏÛÉÂËÁ ÐÏÌÕÞÅÎÉÑ ÚÁÐÉÓÉ %s ÉÚ %s"
 
-#: ../lib/dbindex.c:105
+#: lib/dbindex.c:111
 #, c-format
 msgid "error storing record %s into %s"
 msgstr "ÏÛÉÂËÁ ÓÏÈÒÁÎÅÎÉÑ ÚÁÐÉÓÉ %s × %s"
 
-#: ../lib/dbindex.c:112
+#: lib/dbindex.c:118
 #, c-format
 msgid "error removing record %s into %s"
 msgstr "ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ÚÁÐÉÓÉ %s ÉÚ %s"
 
-#: ../lib/depends.c:456 ../lib/depends.c:615
+#. XXX legacy epoch-less requires/conflicts compatibility
+#: lib/depends.c:339
 #, c-format
-msgid "cannot read header at %d for dependency check"
-msgstr "ÎÅ ÍÏÇÕ ÐÒÏÞÅÓÔØ ÈÅÄÅÒ × %d ÄÌÑ ÐÒÏ×ÅÒËÉ ÚÁ×ÉÓÉÍÏÓÔÅÊ"
+msgid ""
+"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
+"\tA %s\tB %s\n"
+msgstr ""
+
+#: lib/depends.c:368
+#, c-format
+msgid "  %s    A %s\tB %s\n"
+msgstr ""
+
+#: lib/depends.c:460
+msgid "dbrecMatchesDepFlags() failed to read header"
+msgstr "ÏÛÉÂËÁ dbrecMatchesDepFlags() ÐÒÉ ÞÔÅÎÉÉ ÈÅÄÅÒÁ"
+
+#: lib/depends.c:695
+#, fuzzy, c-format
+msgid "%s: %s satisfied by added package.\n"
+msgstr "ÆÁÊÌ %s ÎÅ ÐÒÉÎÁÄÌÅÖÉÔ ÎÉ ÏÄÎÏÍÕ ÉÚ ÐÁËÅÔÏ×\n"
+
+#: lib/depends.c:712
+#, c-format
+msgid "%s: %s satisfied by added provide.\n"
+msgstr ""
+
+#: lib/depends.c:717
+#, c-format
+msgid "%s: %s satisfied by added file list.\n"
+msgstr ""
+
+#: lib/depends.c:747
+#, c-format
+msgid "%s: %s satisfied by rpmrc provides.\n"
+msgstr ""
+
+#: lib/depends.c:775
+#, c-format
+msgid "%s: %s satisfied by db file lists.\n"
+msgstr ""
+
+#: lib/depends.c:797
+#, c-format
+msgid "%s: %s satisfied by db provides.\n"
+msgstr ""
 
-#: ../lib/depends.c:521
+#: lib/depends.c:819
+#, fuzzy, c-format
+msgid "%s: %s satisfied by db packages.\n"
+msgstr "ÆÁÊÌ %s ÎÅ ÐÒÉÎÁÄÌÅÖÉÔ ÎÉ ÏÄÎÏÍÕ ÉÚ ÐÁËÅÔÏ×\n"
+
+#: lib/depends.c:832
+#, c-format
+msgid "%s: %s satisfied by rpmlib version.\n"
+msgstr ""
+
+#: lib/depends.c:842
 #, c-format
-msgid "dependencies: looking for %s\n"
-msgstr "ÚÁ×ÉÓÉÍÏÓÔÉ: ÉÝÕ %s\n"
+msgid "%s: %s unsatisfied.\n"
+msgstr ""
 
-#: ../lib/depends.c:709
+#. requirements are not satisfied.
+#: lib/depends.c:890
 #, c-format
 msgid "package %s require not satisfied: %s\n"
 msgstr "ÔÒÅÂÏ×ÁÎÉÑ ÐÁËÅÔÁ %s ÎÅ ÕÄÏ×ÌÅÔ×ÏÒÅÎÙ: %s\n"
 
-#: ../lib/depends.c:752
+#. conflicts exist.
+#: lib/depends.c:952
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "ÐÁËÅÔ %s ËÏÎÆÌÉËÔÕÅÔ Ó: %s\n"
 
-#: ../lib/depends.c:852
-msgid "dbrecMatchesDepFlags() failed to read header"
-msgstr "ÏÛÉÂËÁ dbrecMatchesDepFlags() ÐÒÉ ÞÔÅÎÉÉ ÈÅÄÅÒÁ"
+#: lib/depends.c:1007 lib/depends.c:1311
+#, c-format
+msgid "cannot read header at %d for dependency check"
+msgstr "ÎÅ ÍÏÇÕ ÐÒÏÞÅÓÔØ ÈÅÄÅÒ × %d ÄÌÑ ÐÒÏ×ÅÒËÉ ÚÁ×ÉÓÉÍÏÓÔÅÊ"
 
-#: ../lib/depends.c:904
+#: lib/depends.c:1102
 #, c-format
 msgid "loop in prerequisite chain: %s"
 msgstr "ÚÁÍËÎÕÔÙÊ ÃÉËÌ × ÃÅÐÏÞËÅ ÔÒÅÂÏ×ÁÎÉÊ ÄÌÑ ÕÓÔÁÎÏ×ËÉ: %s"
 
-#: ../lib/falloc.c:149
+#: lib/falloc.c:160
 #, c-format
-msgid "free list corrupt (%u)- contact rpm-list@redhat.com\n"
-msgstr "free list corrupt (%u)- contact rpm-list@redhat.com\n"
+msgid ""
+"free list corrupt (%u)- please run\n"
+"\t\"rpm --rebuilddb\"\n"
+"More information is available from http://www.rpm.org or the "
+"rpm-list@redhat.com mailing list\n"
+"if \"rpm --rebuilddb\" fails to correct the problem.\n"
+msgstr ""
 
-#: ../lib/formats.c:97 ../lib/formats.c:114 ../lib/formats.c:134
-#: ../lib/formats.c:166 ../lib/header.c:1973 ../lib/header.c:1989
-#: ../lib/header.c:2009
+#: lib/formats.c:66 lib/formats.c:84 lib/formats.c:105 lib/formats.c:138
+#: lib/header.c:2122 lib/header.c:2139 lib/header.c:2159
 msgid "(not a number)"
 msgstr "(ÎÅ ÞÉÓÌÏ)"
 
-#: ../lib/fs.c:41
+#: lib/fs.c:40
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr "mntctl() ÎÅ ×ÏÚ×ÒÁÔÉÌ ÒÁÚÍÅÒÁ fugger(??): %s"
 
-#: ../lib/fs.c:76 ../lib/fs.c:246
+#: lib/fs.c:75 lib/fs.c:253
 #, c-format
 msgid "failed to stat %s: %s"
 msgstr "ÎÅ ÍÏÇÕ ÐÏÌÕÞÉÔØ ÉÎÆÏÒÍÁÃÉÀ Ï %s: %s"
 
-#: ../lib/fs.c:117
+#: lib/fs.c:114
+msgid "getting list of mounted filesystems\n"
+msgstr ""
+
+#: lib/fs.c:119
 #, c-format
 msgid "failed to open %s: %s"
 msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ %s: %s"
 
-#: ../lib/fs.c:267
+#: lib/fs.c:274
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr "ÆÁÊÌ %s - ÎÁ ÎÅÉÚ×ÅÓÔÎÏÍ ÕÓÔÒÏÊÓÔ×Å"
 
-#: ../lib/header.c:669
-#, c-format
-msgid "Data type %d not supprted\n"
-msgstr "ôÉРÄÁÎÎÙÈ %d ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ\n"
+#: lib/ftp.c:666
+msgid "Success"
+msgstr "õÄÁÌÏÓØ"
+
+#: lib/ftp.c:669
+msgid "Bad server response"
+msgstr "îÅ×ÅÒÎÙÊ ÏÔ×ÅÔ ÓÅÒ×ÅÒÁ"
+
+#: lib/ftp.c:672
+msgid "Server IO error"
+msgstr "ïÛÉÂËÁ ××ÏÄÁ/×Ù×ÏÄÁ ÓÅÒ×ÅÒÁ"
+
+#: lib/ftp.c:675
+msgid "Server timeout"
+msgstr "ôÁÊÍÁÕÔ ÓÅÒ×ÅÒÁ"
+
+#: lib/ftp.c:678
+msgid "Unable to lookup server host address"
+msgstr "îÅ ÍÏÇÕ ÎÁÊÔÉ IP-ÁÄÒÅÓ ÓÅÒ×ÅÒÁ"
+
+#: lib/ftp.c:681
+msgid "Unable to lookup server host name"
+msgstr "îÅ ÍÏÇÕ ÎÁÊÔÉ ÉÍÑ ÓÅÒ×ÅÒÁ"
+
+#: lib/ftp.c:684
+msgid "Failed to connect to server"
+msgstr "îÅ ÍÏÇÕ ÓÏÅÄÉÎÉÔØÓÑ Ó ÓÅÒ×ÅÒÏÍ"
+
+#: lib/ftp.c:687
+msgid "Failed to establish data connection to server"
+msgstr "îÅ ÍÏÇÕ ÕÓÔÁÎÏ×ÉÔØ ÓÏÅÄÉÎÅÎÉÅ ÄÌÑ ÄÁÎÎÙÈ Ó ÓÅÒ×ÅÒÏÍ"
+
+#: lib/ftp.c:690
+msgid "IO error to local file"
+msgstr "ïÛÉÂËÁ ××ÏÄÁ/×Ù×ÏÄÁ × ÌÏËÁÌØÎÙÊ ÆÁÊÌ"
+
+#: lib/ftp.c:693
+msgid "Error setting remote server to passive mode"
+msgstr "ïÛÉÂËÁ ÐÒÉ ÐÅÒÅ×ÏÄÅ ÕÄÁÌÅÎÎÏÇÏ ÓÅÒ×ÅÒÁ × ÐÁÓÓÉ×ÎÙÊ ÒÅÖÉÍ"
+
+#: lib/ftp.c:696
+msgid "File not found on server"
+msgstr "æÁÊÌ ÎÅ ÎÁÊÄÅΠÎÁ ÓÅÒ×ÅÒÅ"
+
+#: lib/ftp.c:699
+msgid "Abort in progress"
+msgstr "ïÔÍÅÎÁ × ÐÒÏÃÅÓÓÅ"
+
+#: lib/ftp.c:703
+msgid "Unknown or unexpected error"
+msgstr "îÅÉÚ×ÅÓÔÎÁÑ ÉÌÉ ÎÅÏÖÉÄÁÎÎÁÑ ÏÛÉÂËÁ"
 
 #. This should not be allowed
-#: ../lib/header.c:905
+#: lib/header.c:169
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr "grabData() RPM_STRING_TYPE count must be 1.\n"
 
-#: ../lib/header.c:935
+#: lib/header.c:200
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "ôÉРÄÁÎÎÙÈ %d ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ\n"
 
-#: ../lib/header.c:994
+#: lib/header.c:763
+#, c-format
+msgid "Data type %d not supprted\n"
+msgstr "ôÉРÄÁÎÎÙÈ %d ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ\n"
+
+#: lib/header.c:1119
 #, c-format
 msgid "Bad count for headerAddEntry(): %d\n"
 msgstr "îÅ×ÅÒÎÏÅ ÞÉÓÌÏ ÄÌÑ headerAddEntry(): %d\n"
 
-#: ../lib/header.c:1328
-msgid "? expected in expression"
-msgstr "× ×ÙÒÁÖÅÎÉÉ ÏÖÉÄÁÌÓÑ \"?\""
-
-#: ../lib/header.c:1335
-msgid "{ expected after ? in expression"
-msgstr "× ×ÙÒÁÖÅÎÉÉ ÐÏÓÌÅ \"?\" ÏÖÉÄÁÌÁÓØ \"{\""
-
-#: ../lib/header.c:1345 ../lib/header.c:1377
-msgid "} expected in expression"
-msgstr "× ×ÙÒÁÖÅÎÉÉ ÏÖÉÄÁÌÁÓØ \"}\""
-
-#: ../lib/header.c:1352
-msgid ": expected following ? subexpression"
-msgstr "× ×ÙÒÁÖÅÎÉÉ ÐÏÓÌÅ \"?\" ÏÖÉÄÁÌÏÓØ \":\""
-
-#: ../lib/header.c:1365
-msgid "{ expected after : in expression"
-msgstr "× ×ÙÒÁÖÅÎÉÉ ÐÏÓÌÅ \":\" ÏÖÉÄÁÌÁÓØ \"{\""
-
-#: ../lib/header.c:1384
-msgid "| expected at end of expression"
-msgstr "× ËÏÎÃÅ ×ÙÒÁÖÅÎÉÑ ÏÖÉÄÁÌÓÑ \"|\""
-
-#: ../lib/header.c:1478
+#: lib/header.c:1520
 #, c-format
 msgid "missing { after %"
 msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ \"{\" ÐÏÓÌÅ \"%\""
 
-#: ../lib/header.c:1506
+#: lib/header.c:1548
 msgid "missing } after %{"
 msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ \"}\" ÐÏÓÌÅ \"%{\""
 
-#: ../lib/header.c:1518
+#: lib/header.c:1560
 msgid "empty tag format"
 msgstr "ÐÕÓÔÏÊ ÆÏÒÍÁÔ ÔÜÇÁ"
 
-#: ../lib/header.c:1528
+#: lib/header.c:1570
 msgid "empty tag name"
 msgstr "ÐÕÓÔÏÅ ÉÍÑ ÔÜÇÁ"
 
-#: ../lib/header.c:1543
+#: lib/header.c:1585
 msgid "unknown tag"
 msgstr "ÎÅÉÚ×ÅÓÔÎÙÊ ÔÜÇ"
 
-#: ../lib/header.c:1569
+#: lib/header.c:1611
 msgid "] expected at end of array"
 msgstr "× ËÏÎÃÅ ÍÁÓÓÉ×Á ÏÖÉÄÁÌÁÓØ \"]\""
 
-#: ../lib/header.c:1585
+#: lib/header.c:1627
 msgid "unexpected ]"
 msgstr "ÎÅÏÖÉÄÁÎÎÁÑ \"]\""
 
-#: ../lib/header.c:1587
+#: lib/header.c:1629
 msgid "unexpected }"
 msgstr "ÎÅÏÖÉÄÁÎÎÁÑ \"}\""
 
-#: ../lib/header.c:1762
+#: lib/header.c:1682
+msgid "? expected in expression"
+msgstr "× ×ÙÒÁÖÅÎÉÉ ÏÖÉÄÁÌÓÑ \"?\""
+
+#: lib/header.c:1689
+msgid "{ expected after ? in expression"
+msgstr "× ×ÙÒÁÖÅÎÉÉ ÐÏÓÌÅ \"?\" ÏÖÉÄÁÌÁÓØ \"{\""
+
+#: lib/header.c:1699 lib/header.c:1731
+msgid "} expected in expression"
+msgstr "× ×ÙÒÁÖÅÎÉÉ ÏÖÉÄÁÌÁÓØ \"}\""
+
+#: lib/header.c:1706
+msgid ": expected following ? subexpression"
+msgstr "× ×ÙÒÁÖÅÎÉÉ ÐÏÓÌÅ \"?\" ÏÖÉÄÁÌÏÓØ \":\""
+
+#: lib/header.c:1719
+msgid "{ expected after : in expression"
+msgstr "× ×ÙÒÁÖÅÎÉÉ ÐÏÓÌÅ \":\" ÏÖÉÄÁÌÁÓØ \"{\""
+
+#: lib/header.c:1738
+msgid "| expected at end of expression"
+msgstr "× ËÏÎÃÅ ×ÙÒÁÖÅÎÉÑ ÏÖÉÄÁÌÓÑ \"|\""
+
+#: lib/header.c:1905
 msgid "(unknown type)"
 msgstr "(ÎÅÉÚ×ÅÓÔÎÙÊ ÔÉÐ)"
 
-#: ../lib/install.c:93
-msgid "source package expected, binary found"
-msgstr "ÏÖÉÄÁÌÓÑ ÉÓÈÏÄÎÙÊ ÐÁËÅÔ, ÎÁÊÄÅΠÂÉÎÁÒÎÙÊ"
-
-#: ../lib/install.c:169 ../lib/uninstall.c:111
+#: lib/install.c:141 lib/uninstall.c:179
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr "ÆÁÊÌ : %s ÄÅÊÓÔ×ÉÅ: %s\n"
 
-#: ../lib/install.c:186
+#: lib/install.c:159
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr "ÐÏÌØÚÏ×ÁÔÅÌØ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ, ÉÓÐÏÌØÚÕÀ root"
 
-#: ../lib/install.c:194
+#: lib/install.c:167
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr "ÇÒÕÐÐÁ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ, ÉÓÐÏÌØÚÕÀ root"
 
-#: ../lib/install.c:221
+#: lib/install.c:195
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr "ÚÎÁÞÅÎÉÅ %%instchangelog × ÍÁËÒÏÆÁÊÌÅ ÄÏÌÖÎÏ ÂÙÔØ ÞÉÓÌÏÍ, Á ÏÎÏ ÎÅÔ..."
 
-#: ../lib/install.c:289
-#, c-format
-msgid "package: %s-%s-%s files test = %d\n"
-msgstr "ÐÁËÅÔ: %s-%s-%s ÆÁÊÌÏ×; test = %d\n"
-
-#: ../lib/install.c:352
-msgid "stopping install as we're running --test\n"
-msgstr "ÏÓÔÁÎÁ×ÌÉ×ÁÀ ÕÓÔÁÎÏ×ËÕ, Ô.Ë. ÍÙ ÉÓÐÏÌÎÑÅÍ --test\n"
-
-#: ../lib/install.c:357
-msgid "running preinstall script (if any)\n"
-msgstr "ÉÓÐÏÌÎÑÀ ÓËÒÉÐÔ preinstall (ÅÓÌÉ ÅÓÔØ)\n"
-
-#: ../lib/install.c:387
-#, c-format
-msgid "warning: %s created as %s"
-msgstr "ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ: %s ÓÏÚÄÁΠËÁË %s"
-
-#: ../lib/install.c:423
-#, c-format
-msgid "warning: %s saved as %s"
-msgstr "ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ: %s ÓÏÈÒÁÎÅΠËÁË %s"
-
-#: ../lib/install.c:427 ../lib/install.c:790 ../lib/uninstall.c:337
-#, c-format
-msgid "rename of %s to %s failed: %s"
-msgstr "ÏÛÉÂËÁ ÐÅÒÅÉÍÅÎÏ×ÁÎÉÑ %s × %s: %s"
-
-#: ../lib/install.c:507
-msgid "running postinstall script (if any)\n"
-msgstr "ÉÓÐÏÌÎÑÀ ÓËÒÉÐÔ postinstall (ÅÓÌÉ ÅÓÔØ)\n"
-
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
-#: ../lib/install.c:613
+#: lib/install.c:358
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr "ÒÁÓÐÁËÏ×ËÁ ÁÒÈÉ×Á ÎÅ ÕÄÁÌÁÓØ%s%s: %s"
 
-#: ../lib/install.c:614
+#: lib/install.c:359
 msgid " on file "
 msgstr " ÎÁ ÆÁÊÌÅ "
 
-#: ../lib/install.c:654
+#: lib/install.c:402
 msgid "installing a source package\n"
 msgstr "ÕÓÔÁÎÁ×ÌÉ×ÁÀ ÉÓÈÏÄÎÙÊ ÐÁËÅÔ\n"
 
-#: ../lib/install.c:665 ../lib/install.c:687
-#, c-format
-msgid "cannot create %s"
+#: lib/install.c:413
+#, fuzzy, c-format
+msgid "cannot create %s: %s"
 msgstr "ÎÅ ÍÏÇÕ ÓÏÚÄÁÔØ %s"
 
-#: ../lib/install.c:672 ../lib/install.c:694
+#: lib/install.c:421 lib/install.c:443
 #, c-format
 msgid "cannot write to %s"
 msgstr "ÎÅ ÍÏÇÕ ÐÉÓÁÔØ × %s"
 
-#: ../lib/install.c:676
+#: lib/install.c:425
 #, c-format
 msgid "sources in: %s\n"
 msgstr "ÉÓÈÏÄÎÉËÉ ×: %s\n"
 
-#: ../lib/install.c:698
+#: lib/install.c:436
+#, c-format
+msgid "cannot create %s"
+msgstr "ÎÅ ÍÏÇÕ ÓÏÚÄÁÔØ %s"
+
+#: lib/install.c:447
 #, c-format
 msgid "spec file in: %s\n"
 msgstr "ÆÁÊÌ spec ×: %s\n"
 
-#: ../lib/install.c:731 ../lib/install.c:767
+#: lib/install.c:481 lib/install.c:509
 msgid "source package contains no .spec file"
 msgstr "ÉÓÈÏÄÎÙÊ ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÆÁÊÌÁ .spec"
 
-#: ../lib/install.c:788
+#: lib/install.c:530
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr "ÐÅÒÅÉÍÅÎÏ×Ù×ÁÀ %s × %s\n"
 
-#: ../lib/lookup.c:83
+#: lib/install.c:532 lib/install.c:810 lib/uninstall.c:26
+#, c-format
+msgid "rename of %s to %s failed: %s"
+msgstr "ÏÛÉÂËÁ ÐÅÒÅÉÍÅÎÏ×ÁÎÉÑ %s × %s: %s"
+
+#: lib/install.c:622
+msgid "source package expected, binary found"
+msgstr "ÏÖÉÄÁÌÓÑ ÉÓÈÏÄÎÙÊ ÐÁËÅÔ, ÎÁÊÄÅΠÂÉÎÁÒÎÙÊ"
+
+#: lib/install.c:679
+#, c-format
+msgid "package: %s-%s-%s files test = %d\n"
+msgstr "ÐÁËÅÔ: %s-%s-%s ÆÁÊÌÏ×; test = %d\n"
+
+#: lib/install.c:740
+msgid "stopping install as we're running --test\n"
+msgstr "ÏÓÔÁÎÁ×ÌÉ×ÁÀ ÕÓÔÁÎÏ×ËÕ, Ô.Ë. ÍÙ ÉÓÐÏÌÎÑÅÍ --test\n"
+
+#: lib/install.c:745
+msgid "running preinstall script (if any)\n"
+msgstr "ÉÓÐÏÌÎÑÀ ÓËÒÉÐÔ preinstall (ÅÓÌÉ ÅÓÔØ)\n"
+
+#: lib/install.c:770
+#, c-format
+msgid "warning: %s created as %s"
+msgstr "ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ: %s ÓÏÚÄÁΠËÁË %s"
+
+#: lib/install.c:806
+#, c-format
+msgid "warning: %s saved as %s"
+msgstr "ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ: %s ÓÏÈÒÁÎÅΠËÁË %s"
+
+#: lib/install.c:880
+#, fuzzy
+msgid "running postinstall scripts (if any)\n"
+msgstr "ÉÓÐÏÌÎÑÀ ÓËÒÉÐÔ postinstall (ÅÓÌÉ ÅÓÔØ)\n"
+
+#: lib/lookup.c:35
 #, c-format
 msgid "cannot read header at %d for lookup"
 msgstr "ÎÅ ÍÏÇÕ ÐÒÏÞÅÓÔØ ÈÅÄÅÒ × %d ÄÌÑ ÐÏÉÓËÁ"
 
-#: ../lib/macro.c:129
+#: lib/macro.c:149
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr "======================== ÁËÔÉ×Π%d ÐÕÓÔ. %d\n"
 
 #. XXX just in case
-#: ../lib/macro.c:218
+#: lib/macro.c:243
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr "%3d>%*s(ÐÕÓÔÏ)"
 
-#: ../lib/macro.c:253
+#: lib/macro.c:278
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr "%3d<%*s(ÐÕÓÔÏ)\n"
 
-#: ../lib/macro.c:426
+#: lib/macro.c:457
 msgid "Macro %%%s has unterminated body"
 msgstr "íÁËÒÏÓ %%%s ÓÏÄÅÒÖÉÔ ÎÅÚÁËÒÙÔÏÅ ÔÅÌÏ"
 
-#: ../lib/macro.c:452
+#: lib/macro.c:483
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr "íÁËÒÏÓ %%%s ÉÍÅÅÔ ÎÅÄÏÐÕÓÔÉÍÏÅ ÉÍÑ (%%define)"
 
-#: ../lib/macro.c:458
+#: lib/macro.c:489
 msgid "Macro %%%s has unterminated opts"
 msgstr "íÁËÒÏÓ %%%s ÓÏÄÅÒÖÉÔ ÎÅÚÁËÒÙÔÙÅ ÏÐÃÉÉ"
 
-#: ../lib/macro.c:463
+#: lib/macro.c:494
 msgid "Macro %%%s has empty body"
 msgstr "íÁËÒÏÓ %%%s ÉÍÅÅÔ ÐÕÓÔÏÅ ÔÅÌÏ"
 
-#: ../lib/macro.c:468
+#: lib/macro.c:499
 msgid "Macro %%%s failed to expand"
 msgstr "íÁËÒÏÓ %%%s ÒÁÓËÒÙÔØ ÎÅ ÕÄÁÌÏÓØ"
 
-#: ../lib/macro.c:493
+#: lib/macro.c:524
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr "íÁËÒÏÓ %%%s ÉÍÅÅÔ ÎÅÄÏÐÕÓÔÉÍÏÅ ÉÍÑ (%%undefine)"
 
-#: ../lib/macro.c:566
+#: lib/macro.c:601
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr "íÁËÒÏÓ %%%s (%s) ÎÅ ÂÙÌ ÉÓÐÏÌØÚÏ×ÁΠÎÉÖÅ ÕÒÏ×ÎÑ %d"
 
-#: ../lib/macro.c:650
+#: lib/macro.c:698
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr "îÅÉÚ×ÅÓÔÎÁÑ ÏÐÃÉÑ %c × %s(%s)"
 
-#: ../lib/macro.c:825
+#: lib/macro.c:870
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr "çÌÕÂÉÎÁ ÒÅËÕÒÓÉÉ(%d) ÂÏÌØÛÅ max(%d)"
 
-#: ../lib/macro.c:881 ../lib/macro.c:897
+#: lib/macro.c:936 lib/macro.c:952
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr "îÅÚÁËÒÙÔÁÑ %c: %s"
 
-#: ../lib/macro.c:930
+#: lib/macro.c:992
 msgid "A %% is followed by an unparseable macro"
 msgstr "%% Ó ÐÏÓÌÅÄÕÀÝÉÍ ÎÅÒÁÚÂÉÒÁÅÍÙÍ ÍÁËÒÏÓÏÍ"
 
-#: ../lib/macro.c:1053
+#: lib/macro.c:1115
 msgid "Macro %%%.*s not found, skipping"
 msgstr "íÁËÒÏÓ %s ÎÅ ÎÁÊÄÅÎ, ÐÒÏÐÕÓËÁÀ"
 
-#: ../lib/macro.c:1131
+#: lib/macro.c:1196
 msgid "Target buffer overflow"
 msgstr "ðÅÒÅÐÏÌÎÅÎÉÅ ÃÅÌÅ×ÏÇÏ ÂÕÆÅÒÁ"
 
-#: ../lib/macro.c:1274 ../lib/macro.c:1282
+#: lib/macro.c:1343 lib/macro.c:1351
 #, c-format
 msgid "File %s: %s"
 msgstr "æÁÊÌ %s: %s"
 
-#: ../lib/macro.c:1285
+#: lib/macro.c:1354
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr "æÁÊÌ %s ÍÅÎØÛÅ %d ÂÁÊÔ"
 
-#: ../lib/messages.c:51
+#: lib/messages.c:55
 msgid "warning: "
 msgstr "ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ: "
 
-#: ../lib/messages.c:57
+#: lib/messages.c:64
 msgid "error: "
 msgstr "ÏÛÉÂËÁ: "
 
-#: ../lib/messages.c:63
+#: lib/messages.c:73
 msgid "fatal error: "
 msgstr "ÆÁÔÁÌØÎÁÑ ÏÛÉÂËÁ: "
 
-#: ../lib/messages.c:70
+#: lib/messages.c:82
 msgid "internal error (rpm bug?): "
 msgstr "×ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ (ÂÁÇÁ rpm): "
 
-#: ../lib/misc.c:342 ../lib/misc.c:348 ../lib/misc.c:355
+#: lib/misc.c:367 lib/misc.c:373 lib/misc.c:380
 #, c-format
 msgid "error creating temporary file %s"
 msgstr "ÏÛÉÂËÁ ÓÏÚÄÁÎÉÑ ×ÒÅÍÅÎÎÏÇÏ ÆÁÊÌÁ %s"
 
-#: ../lib/oldheader.c:292
+#: lib/oldheader.c:299
 #, c-format
 msgid "bad file state: %s"
 msgstr "ÎÅ×ÅÒÎÏÅ ÓÏÓÔÏÑÎÉÅ ÆÁÊÌÁ: %s"
 
-#: ../lib/package.c:51
+#: lib/package.c:234
 msgid "package is a version one package!\n"
 msgstr "ÐÁËÅÔ - ÐÁËÅÔ RPM ×ÅÒÓÉÉ 1 !\n"
 
-#: ../lib/package.c:54
+#: lib/package.c:239
 msgid "old style source package -- I'll do my best\n"
 msgstr "ÉÓÈÏÄÎÙÊ ÐÁËÅÔ ÓÔÁÒÏÇÏ ÓÔÉÌÑ -- ÓÄÅÌÁÀ ÞÔÏ ÓÍÏÇÕ\n"
 
-#: ../lib/package.c:57
+#: lib/package.c:242
 #, c-format
 msgid "archive offset is %d\n"
 msgstr "ÓÍÅÝÅÎÉÅ × ÁÒÈÉ×Å %d\n"
 
-#: ../lib/package.c:67
+#: lib/package.c:252
 msgid "old style binary package\n"
 msgstr "ÂÉÎÁÒÎÙÊ ÐÁËÅÔ ÓÔÁÒÏÇÏ ÓÔÉÌÑ\n"
 
-#: ../lib/package.c:105
+#: lib/package.c:298
 msgid ""
 "only packages with major numbers <= 3 are supported by this version of RPM"
 msgstr "ÜÔÁ ×ÅÒÓÉÑ RPM ÐÏÄÄÅÒÖÉ×ÁÅÔ ÔÏÌØËÏ ÐÁËÅÔÙ ×ÅÒÓÉÉ <= 3"
 
-#: ../lib/problems.c:39
+#: lib/problems.c:43
 #, c-format
 msgid " is needed by %s-%s-%s\n"
 msgstr " ÎÕÖÅΠÄÌÑ %s-%s-%s\n"
 
-#: ../lib/problems.c:42
+#: lib/problems.c:46
 #, c-format
 msgid " conflicts with %s-%s-%s\n"
 msgstr " ËÏÎÆÌÉËÔÕÅÔ Ó %s-%s-%s\n"
 
-#: ../lib/problems.c:68
+#: lib/problems.c:66
 #, c-format
 msgid "package %s-%s-%s is for a different architecture"
 msgstr "ÐÁËÅÔ %s-%s-%s - ÄÌÑ ÄÒÕÇÏÊ ÁÒÈÉÔÅËÔÕÒÙ"
 
-#: ../lib/problems.c:73
+#: lib/problems.c:71
 #, c-format
 msgid "package %s-%s-%s is for a different operating system"
 msgstr "ÐÁËÅÔ %s-%s-%s - ÄÌÑ ÄÒÕÇÏÊ ïó"
 
-#: ../lib/problems.c:78
+#: lib/problems.c:76
 #, c-format
 msgid "package %s-%s-%s is already installed"
 msgstr "ÐÁËÅÔ %s-%s-%s ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ"
 
-#: ../lib/problems.c:83
+#: lib/problems.c:81
 #, c-format
 msgid "path %s is not relocateable for package %s-%s-%s"
 msgstr "ÐÕÔØ %s - ÎÅ ÐÅÒÅÍÅÝÁÅÍÙÊ ÄÌÑ ÐÁËÅÔÁ %s-%s-%s"
 
-#: ../lib/problems.c:88
+#: lib/problems.c:86
 #, c-format
 msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
 msgstr "ËÏÎÆÌÉËÔ ÆÁÊÌÁ %s ÐÒÉ ÐÏÐÙÔËÁÈ ÕÓÔÁÎÏ×ËÉ %s-%s-%s É %s-%s-%s"
 
-#: ../lib/problems.c:94
+#: lib/problems.c:92
 #, c-format
 msgid ""
 "file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
 msgstr "ÆÁÊÌ %s ÉÚ ÐÁËÅÔÁ %s-%s-%s ËÏÎÆÌÉËÔÕÅÔ Ó ÆÁÊÌÏÍ ÉÚ ÐÁËÅÔÁ %s-%s-%s"
 
-#: ../lib/problems.c:100
+#: lib/problems.c:98
 #, c-format
 msgid "package %s-%s-%s (which is newer then %s-%s-%s) is already installed"
 msgstr "ÐÁËÅÔ %s-%s-%s (ËÏÔÏÒÙÊ ÎÏ×ÅÅ, ÞÅÍ %s-%s-%s) ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ"
 
-#: ../lib/problems.c:106
-#, c-format
-msgid "installing package %s-%s-%s needs %ld%c on the %s filesystem"
+#: lib/problems.c:104
+#, fuzzy, c-format
+msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
 msgstr "ÄÌÑ ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÁ %s-%s-%s ÎÕÖÎÏ %ld%c ÎÁ ÆÁÊÌÏ×ÏÊ ÓÉÓÔÅÍÅ %s"
 
-#: ../lib/problems.c:118
+#: lib/problems.c:116
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr "ÎÅÉÚ×ÅÓÔÎÁÑ ÏÛÉÂËÁ %d ÐÒÉ ÒÁÂÏÔÅ Ó ÐÁËÅÔÏÍ %s-%s-%s"
 
-#: ../lib/query.c:57
-msgid "query package owning file"
-msgstr "ÎÁÊÔÉ ÐÁËÅÔ, ËÏÔÏÒÏÍÕ ÐÒÉÎÁÄÌÅÖÉÔ ÆÁÊÌ"
+#: lib/query.c:138
+#, c-format
+msgid "error in format: %s\n"
+msgstr "ÏÛÉÂËÁ × ÆÏÒÍÁÔÅ: %s\n"
 
-#: ../lib/query.c:59
-msgid "query packages in group"
-msgstr "ÚÁÐÒÏÓ ÐÁËÅÔÏ× × ÇÒÕÐÐÅ"
+#: lib/query.c:180
+msgid "(contains no files)"
+msgstr "(ÎÅ ÓÏÄÅÒÖÉÔ ÆÁÊÌÏ×)"
 
-#: ../lib/query.c:61
-msgid "query a package file"
-msgstr "ÚÁÐÒÏÓÉÔØ ÆÁÊÌ ÐÁËÅÔÁ"
+#: lib/query.c:233
+msgid "normal        "
+msgstr "ÎÏÒÍÁÌØÎÙÊ    "
 
-#: ../lib/query.c:65
-msgid "query a spec file"
-msgstr "ÚÁÐÒÏÓÉÔØ spec-ÆÁÊÌ"
+#: lib/query.c:235
+msgid "replaced      "
+msgstr "ÚÁÍÅÎÅÎÎÙÊ    "
 
-#: ../lib/query.c:67
-msgid "query the pacakges triggered by the package"
-msgstr "ÚÁÐÒÏÓÉÔØ ÐÁËÅÔÙ Ó ÔÒÉÇÇÅÒ-ÓËÒÉÐÔÁÍÉ ÎÁ ÐÁËÅÔ"
+#: lib/query.c:237
+msgid "not installed "
+msgstr "ÎÅ ÕÓÔÁÎÏ×ÌÅΠ"
 
-#: ../lib/query.c:69
-msgid "query the packages which require a capability"
-msgstr "ÎÁÊÔÉ ÐÁËÅÔÙ, ÔÒÅÂÕÀÝÉÅ ÓÅÒ×ÉÓÁ"
-
-#: ../lib/query.c:71
-msgid "query the packages which provide a capability"
-msgstr "ÎÁÊÔÉ ÐÁËÅÔÙ, ÐÒÅÄÏÓÔÁ×ÌÑÀÝÉÅ ÓÅÒ×ÉÓ"
-
-#: ../lib/query.c:108
-msgid "list all configuration files"
-msgstr "ÐÏËÁÚÁÔØ ×ÓÅ ËÏÎÆÉÇÕÒÁÃÉÏÎÎÙÅ ÆÁÊÌÙ"
-
-#: ../lib/query.c:110
-msgid "list all documentation files"
-msgstr "ÐÏËÁÚÁÔØ ×ÓÅ ÆÁÊÌÙ ÄÏËÕÍÅÎÔÁÃÉÉ"
-
-#: ../lib/query.c:112
-msgid "dump basic file information"
-msgstr "×Ù×ÅÓÔÉ ÂÁÚÏ×ÕÀ ÉÎÆÏÒÍÁÃÉÀ Ï ÆÁÊÌÅ"
-
-#: ../lib/query.c:114
-msgid "list files in package"
-msgstr "ÐÏËÁÚÁÔØ ÆÁÊÌÙ ÐÁËÅÔÁ"
-
-#: ../lib/query.c:118
-msgid "use the following query format"
-msgstr "ÉÓÐ. ÓÌÅÄÕÀÝÉÊ ÆÏÒÍÁÔ ÚÁÐÒÏÓÁ"
-
-#: ../lib/query.c:120
-msgid "substitute i18n sections from the following catalogue"
-msgstr "ÐÏÄÓÔÁ×ÉÔØ ÓÅËÃÉÉ i18n ÉÚ ÓÌÅÄÕÀÝÅÇÏ ËÁÔÁÌÏÇÁ"
-
-#: ../lib/query.c:123
-msgid "display the states of the listed files"
-msgstr "ÐÏËÁÚÁÔØ ÓÏÓÔÏÑÎÉÅ ÐÏËÁÚÁÎÎÙÈ ÆÁÊÌÏ×"
-
-#: ../lib/query.c:125
-msgid "display a verbose file listing"
-msgstr "×Ù×ÅÓÔÉ ÄÅÔÁÌØÎÙÊ ÓÐÉÓÏË ÆÁÊÌÏ× ÐÁËÅÔÁ"
-
-#: ../lib/query.c:136
-#, c-format
-msgid "error in format: %s\n"
-msgstr "ÏÛÉÂËÁ × ÆÏÒÍÁÔÅ: %s\n"
-
-#: ../lib/query.c:177
-msgid "(contains no files)"
-msgstr "(ÎÅ ÓÏÄÅÒÖÉÔ ÆÁÊÌÏ×)"
-
-#: ../lib/query.c:230
-msgid "normal        "
-msgstr "ÎÏÒÍÁÌØÎÙÊ    "
-
-#: ../lib/query.c:232
-msgid "replaced      "
-msgstr "ÚÁÍÅÎÅÎÎÙÊ    "
-
-#: ../lib/query.c:234
+#: lib/query.c:239
 msgid "net shared    "
 msgstr "ÓÅÔÅ×ÏÊ       "
 
-#: ../lib/query.c:236
-msgid "not installed "
-msgstr "ÎÅ ÕÓÔÁÎÏ×ÌÅΠ"
-
-#: ../lib/query.c:238
+#: lib/query.c:241
 #, c-format
 msgid "(unknown %3d) "
 msgstr "(ÎÅÉÚ×. %3d)  "
 
-#: ../lib/query.c:242
+#: lib/query.c:245
 msgid "(no state)    "
 msgstr "(ÓÏÓÔ. ÎÅÔ)   "
 
-#: ../lib/query.c:258 ../lib/query.c:288
+#: lib/query.c:261 lib/query.c:291
 msgid "package has neither file owner or id lists"
 msgstr "ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÓÐÉÓËÏ× ÎÉ ÈÏÚÑÅ× ÆÁÊÌÏ×, ÎÉ ÉÈ ID"
 
-#: ../lib/query.c:514
+#: lib/query.c:400
 #, c-format
 msgid "record number %u\n"
 msgstr "ÚÁÐÉÓØ ÎÏÍÅÒ %u\n"
 
-#: ../lib/query.c:518
+#: lib/query.c:404
 msgid "error: could not read database record\n"
 msgstr "ÏÛÉÂËÁ: ÎÅ ÍÏÇÕ ÐÒÏÞÅÓÔØ ÚÁÐÉÓØ ÂÁÚÙ ÄÁÎÎÙÈ\n"
 
-#: ../lib/query.c:547
-#, c-format
-msgid "open of %s failed\n"
+#: lib/query.c:442
+#, fuzzy, c-format
+msgid "open of %s failed: %s\n"
 msgstr "ÏÔËÒÙÔÉÅ %s ÎÅ ÕÄÁÌÏÓØ\n"
 
-#: ../lib/query.c:560
+#: lib/query.c:455
 msgid "old format source packages cannot be queried\n"
 msgstr "ÚÁÐÒÏÓÙ Ë SRPM × ÓÔÁÒÏÍ ÆÏÒÍÁÔÅ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ\n"
 
-#: ../lib/query.c:572
+#: lib/query.c:464 lib/rpminstall.c:203
+#, c-format
+msgid "%s does not appear to be a RPM package\n"
+msgstr "%s ÎÅ ÐÏÈÏÖ ÎÁ ÐÁËÅÔ RPM...\n"
+
+#: lib/query.c:467
 #, c-format
 msgid "query of %s failed\n"
 msgstr "ÏÛÉÂËÁ ÚÁÐÒÏÓÁ %s\n"
 
-#: ../lib/query.c:593
+#: lib/query.c:494
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "ÚÁÐÒÏÓ spec-ÆÁÊÌÁ %s ÎÅ ÕÄÁÌÓÑ, ÎÅ ÍÏÇÕ ÒÁÚÏÂÒÁÔØ ÆÁÊÌ\n"
 
-#: ../lib/query.c:627
+#: lib/query.c:519
 msgid "could not read database record!\n"
 msgstr "ÎÅ ÍÏÇÕ ÐÒÏÞÅÓÔØ ÚÁÐÉÓØ ÂÁÚÙ ÄÁÎÎÙÈ!\n"
 
-#: ../lib/query.c:638
+#: lib/query.c:530
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "ÇÒÕÐÐÁ %s ÎÅ ÓÏÄÅÒÖÉÔ ÎÉËÁËÉÈ ÐÁËÅÔÏ×\n"
 
-#: ../lib/query.c:648
+#: lib/query.c:540
 #, c-format
 msgid "no package provides %s\n"
 msgstr "ÎÉ ÏÄÉΠÉÚ ÐÁËÅÔÏ× ÎÅ ÐÒÅÄÏÓÔÁ×ÌÑÅÔ %s\n"
 
-#: ../lib/query.c:658
+#: lib/query.c:550
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "ÎÉ ÏÄÉΠÉÚ ÐÁËÅÔÏ× ÎÅ ×Ú×ÏÄÉÔ ÔÒÉÇÇÅÒ %s\n"
 
-#: ../lib/query.c:668
+#: lib/query.c:560
 #, c-format
 msgid "no package requires %s\n"
 msgstr "ÎÉ ÏÄÉΠÉÚ ÐÁËÅÔÏ× ÎÅ ÔÒÅÂÕÅÔ %s\n"
 
-#: ../lib/query.c:683
+#: lib/query.c:575
 #, c-format
 msgid "file %s: %s\n"
 msgstr "ÆÁÊÌ %s: %s\n"
 
-#: ../lib/query.c:686
+#: lib/query.c:578
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "ÆÁÊÌ %s ÎÅ ÐÒÉÎÁÄÌÅÖÉÔ ÎÉ ÏÄÎÏÍÕ ÉÚ ÐÁËÅÔÏ×\n"
 
-#: ../lib/query.c:699
+#: lib/query.c:591
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "ÎÅ×ÅÒÎÙÊ ÎÏÍÅÒ ÐÁËÅÔÁ: %s\n"
 
-#: ../lib/query.c:702
+#: lib/query.c:594
 #, c-format
 msgid "package record number: %d\n"
 msgstr "ÚÁÐÉÓØ ÐÁËÅÔÁ ÎÏÍÅÒ %d\n"
 
-#: ../lib/query.c:705
+#: lib/query.c:597
 #, c-format
 msgid "record %d could not be read\n"
 msgstr "ÚÁÐÉÓØ %d ÎÅ ÞÉÔÁÅÔÓÑ\n"
 
-#: ../lib/query.c:720
+#: lib/query.c:609 lib/rpminstall.c:393
+#, c-format
+msgid "package %s is not installed\n"
+msgstr "ÐÁËÅÔ %s ÎÅ ÕÓÔÁÎÏ×ÌÅÎ\n"
+
+#: lib/query.c:612
 #, c-format
 msgid "error looking for package %s\n"
 msgstr "ÏÛÉÂËÁ ÐÒÉ ÐÏÉÓËÅ ÐÁËÅÔÁ %s\n"
 
-#: ../lib/query.c:742
+#: lib/query.c:634
 msgid "rpmQuery: rpmdbOpen() failed\n"
 msgstr "rpmQuery: ÎÅÕÄÁÞÁ rpmdbOpen()\n"
 
-#: ../lib/rebuilddb.c:18
+#: lib/query.c:691
+msgid "query package owning file"
+msgstr "ÎÁÊÔÉ ÐÁËÅÔ, ËÏÔÏÒÏÍÕ ÐÒÉÎÁÄÌÅÖÉÔ ÆÁÊÌ"
+
+#: lib/query.c:693
+msgid "query packages in group"
+msgstr "ÚÁÐÒÏÓ ÐÁËÅÔÏ× × ÇÒÕÐÐÅ"
+
+#: lib/query.c:695
+msgid "query a package file"
+msgstr "ÚÁÐÒÏÓÉÔØ ÆÁÊÌ ÐÁËÅÔÁ"
+
+#: lib/query.c:699
+msgid "query a spec file"
+msgstr "ÚÁÐÒÏÓÉÔØ spec-ÆÁÊÌ"
+
+#: lib/query.c:701
+msgid "query the pacakges triggered by the package"
+msgstr "ÚÁÐÒÏÓÉÔØ ÐÁËÅÔÙ Ó ÔÒÉÇÇÅÒ-ÓËÒÉÐÔÁÍÉ ÎÁ ÐÁËÅÔ"
+
+#: lib/query.c:703
+msgid "query the packages which require a capability"
+msgstr "ÎÁÊÔÉ ÐÁËÅÔÙ, ÔÒÅÂÕÀÝÉÅ ÓÅÒ×ÉÓÁ"
+
+#: lib/query.c:705
+msgid "query the packages which provide a capability"
+msgstr "ÎÁÊÔÉ ÐÁËÅÔÙ, ÐÒÅÄÏÓÔÁ×ÌÑÀÝÉÅ ÓÅÒ×ÉÓ"
+
+#: lib/query.c:742
+msgid "list all configuration files"
+msgstr "ÐÏËÁÚÁÔØ ×ÓÅ ËÏÎÆÉÇÕÒÁÃÉÏÎÎÙÅ ÆÁÊÌÙ"
+
+#: lib/query.c:744
+msgid "list all documentation files"
+msgstr "ÐÏËÁÚÁÔØ ×ÓÅ ÆÁÊÌÙ ÄÏËÕÍÅÎÔÁÃÉÉ"
+
+#: lib/query.c:746
+msgid "dump basic file information"
+msgstr "×Ù×ÅÓÔÉ ÂÁÚÏ×ÕÀ ÉÎÆÏÒÍÁÃÉÀ Ï ÆÁÊÌÅ"
+
+#: lib/query.c:748
+msgid "list files in package"
+msgstr "ÐÏËÁÚÁÔØ ÆÁÊÌÙ ÐÁËÅÔÁ"
+
+#: lib/query.c:752
+msgid "use the following query format"
+msgstr "ÉÓÐ. ÓÌÅÄÕÀÝÉÊ ÆÏÒÍÁÔ ÚÁÐÒÏÓÁ"
+
+#: lib/query.c:754
+msgid "substitute i18n sections from the following catalogue"
+msgstr "ÐÏÄÓÔÁ×ÉÔØ ÓÅËÃÉÉ i18n ÉÚ ÓÌÅÄÕÀÝÅÇÏ ËÁÔÁÌÏÇÁ"
+
+#: lib/query.c:757
+msgid "display the states of the listed files"
+msgstr "ÐÏËÁÚÁÔØ ÓÏÓÔÏÑÎÉÅ ÐÏËÁÚÁÎÎÙÈ ÆÁÊÌÏ×"
+
+#: lib/query.c:759
+msgid "display a verbose file listing"
+msgstr "×Ù×ÅÓÔÉ ÄÅÔÁÌØÎÙÊ ÓÐÉÓÏË ÆÁÊÌÏ× ÐÁËÅÔÁ"
+
+#: lib/rebuilddb.c:20
 #, c-format
 msgid "rebuilding database in rootdir %s\n"
 msgstr "ÐÅÒÅÓÔÒÁÉ×ÁÀ ÂÁÚÕ × ËÏÒÎÅ×ÏÍ ËÁÔÁÌÏÇÅ %s\n"
 
-#: ../lib/rebuilddb.c:22 ../lib/rpmdb.c:64 ../lib/rpmdb.c:82 ../lib/rpmdb.c:98
+#: lib/rebuilddb.c:24 lib/rpmdb.c:69 lib/rpmdb.c:88 lib/rpmdb.c:105
 msgid "no dbpath has been set"
 msgstr "ÎÅ ÕÓÔÁÎÏ×ÌÅÎÁ dbpath"
 
-#: ../lib/rebuilddb.c:30
+#: lib/rebuilddb.c:33
 #, c-format
 msgid "temporary database %s already exists"
 msgstr "×ÒÅÍÅÎÎÁÑ ÂÁÚÁ ÄÁÎÎÙÈ %s ÕÖÅ ÓÕÝÅÓÔ×ÕÅÔ"
 
-#: ../lib/rebuilddb.c:34
+#: lib/rebuilddb.c:37
 #, c-format
 msgid "creating directory: %s\n"
 msgstr "ÓÏÚÄÁÀ ËÁÔÁÌÏÇ: %s\n"
 
-#: ../lib/rebuilddb.c:36
+#: lib/rebuilddb.c:39
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr "ÏÛÉÂËÁ ÓÏÚÄÁÎÉÑ ËÁÔÁÌÏÇÁ %s: %s"
 
-#: ../lib/rebuilddb.c:44
+#: lib/rebuilddb.c:43
 msgid "opening old database\n"
 msgstr "ÏÔËÒÙ×ÁÀ ÓÔÁÒÕÀ ÂÁÚÕ\n"
 
-#: ../lib/rebuilddb.c:51
+#: lib/rebuilddb.c:50
 msgid "opening new database\n"
 msgstr "ÏÔËÒÙ×ÁÀ ÎÏ×ÕÀ ÂÁÚÕ\n"
 
-#: ../lib/rebuilddb.c:61 ../lib/rebuilddb.c:79
+#: lib/rebuilddb.c:60 lib/rebuilddb.c:78
 #, c-format
 msgid "record number %d in database is bad -- skipping it"
 msgstr "ÚÁÐÉÓØ ÎÏÍÅÒ %d × ÂÁÚÅ ÎÅ×ÅÒÎÁ, ÐÒÏÐÕÓËÁÀ"
 
-#: ../lib/rebuilddb.c:73
+#: lib/rebuilddb.c:72
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr "ÎÅ ÍÏÇÕ ÄÏÂÁ×ÉÔØ ÚÁÐÉÓØ (ÐÅÒ×ÏÎÁÞÁÌØÎÏ × %d)"
 
-#: ../lib/rebuilddb.c:92
+#: lib/rebuilddb.c:91
 msgid "failed to rebuild database; original database remains in place\n"
 msgstr "ÐÅÒÅÓÔÒÏÅÎÉÅ ÂÁÚÙ ÎÅ ÕÄÁÌÏÓØ, ÓÔÁÒÁÑ ÂÁÚÁ ÏÓÔÁÅÔÓÑ ÎÁ ÍÅÓÔÅ\n"
 
-#: ../lib/rebuilddb.c:100
+#: lib/rebuilddb.c:99
 msgid "failed to replace old database with new database!\n"
 msgstr "ÚÁÍÅÎÁ ÓÔÁÒÏÊ ÂÁÚÙ ÎÁ ÎÏ×ÕÀ ÎÅ ÕÄÁÌÁÓØ!\n"
 
-#: ../lib/rebuilddb.c:102
+#: lib/rebuilddb.c:101
 #, c-format
 msgid "replaces files in %s with files from %s to recover"
 msgstr "ÄÌÑ ×ÏÓÓÔÁÎÏ×ÌÅÎÉÑ ÚÁÍÅÎÑÅÔ ÆÁÊÌÙ × %s ÆÁÊÌÁÍÉ ÉÚ %s"
 
-#: ../lib/rebuilddb.c:108
+#: lib/rebuilddb.c:107
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "ÕÄÁÌÅÎÉÅ ËÁÔÁÌÏÇÁ %s ÎÅ ÕÄÁÌÏÓØ: %s\n"
 
-#: ../lib/rpmdb.c:159
+#: lib/rpmchecksig.c:31
+#, fuzzy, c-format
+msgid "%s: fdOpen failed: %s\n"
+msgstr "%s: ïÛÉÂËÁ ÏÔËÒÙÔÉÑ\n"
+
+#: lib/rpmchecksig.c:42
+#, fuzzy
+msgid "makeTempFile failed\n"
+msgstr "ÚÁÐÕÓË ÎÅ ÕÄÁÌÓÑ\n"
+
+#: lib/rpmchecksig.c:74
+#, fuzzy, c-format
+msgid "%s: fdWrite failed: %s\n"
+msgstr "%s: ïÛÉÂËÁ ÏÔËÒÙÔÉÑ\n"
+
+#: lib/rpmchecksig.c:80
+#, fuzzy, c-format
+msgid "%s: fdRead failed: %s\n"
+msgstr "%s: ÏÛÉÂËÁ readLead\n"
+
+#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:242
+#, c-format
+msgid "%s: readLead failed\n"
+msgstr "%s: ÏÛÉÂËÁ readLead\n"
+
+#: lib/rpmchecksig.c:118
+#, c-format
+msgid "%s: Can't sign v1.0 RPM\n"
+msgstr "%s: îÅ ÍÏÇÕ ÐÏÄÐÉÓÁÔØ RPM v1.0\n"
+
+#: lib/rpmchecksig.c:122
+#, c-format
+msgid "%s: Can't re-sign v2.0 RPM\n"
+msgstr "%s: îÅ ÍÏÇÕ ÐÅÒÅÐÏÄÐÉÓÁÔØ RPM v2.0\n"
+
+#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:256
+#, c-format
+msgid "%s: rpmReadSignature failed\n"
+msgstr "%s: ÏÛÉÂËÁ rpmReadSignature\n"
+
+#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:261
+#, c-format
+msgid "%s: No signature available\n"
+msgstr "%s: ðÏÄÐÉÓÉ ÎÅÔ\n"
+
+#: lib/rpmchecksig.c:167
+#, fuzzy, c-format
+msgid "%s: writeLead failed: %s\n"
+msgstr "%s: ÏÛÉÂËÁ readLead\n"
+
+#: lib/rpmchecksig.c:173
+#, fuzzy, c-format
+msgid "%s: rpmWriteSignature failed\n"
+msgstr "%s: ÏÛÉÂËÁ rpmReadSignature\n"
+
+#: lib/rpmchecksig.c:248
+#, c-format
+msgid "%s: No signature available (v1.0 RPM)\n"
+msgstr "%s: ðÏÄÐÉÓÉ ÎÅÔ (RPM v1.0)\n"
+
+#: lib/rpmchecksig.c:408
+msgid "NOT OK"
+msgstr "îå Ok"
+
+#: lib/rpmchecksig.c:409 lib/rpmchecksig.c:423
+msgid " (MISSING KEYS:"
+msgstr " (ïôóõôóô÷õàô ëìàþé:"
+
+#: lib/rpmchecksig.c:411 lib/rpmchecksig.c:425
+msgid ") "
+msgstr ") "
+
+#: lib/rpmchecksig.c:412 lib/rpmchecksig.c:426
+msgid " (UNTRUSTED KEYS:"
+msgstr " ("
+
+#: lib/rpmchecksig.c:414 lib/rpmchecksig.c:428
+msgid ")"
+msgstr ")"
+
+#: lib/rpmchecksig.c:422
+msgid "OK"
+msgstr "Ok"
+
+#: lib/rpmdb.c:184
 #, c-format
 msgid "opening database mode 0x%x in %s\n"
 msgstr "ÏÔËÒÙ×ÁÀ ÂÁÚÕ × ÒÅÖÉÍÅ 0x%x × %s\n"
 
-#: ../lib/rpmdb.c:182 ../lib/rpmdb.c:189
+#: lib/rpmdb.c:193 lib/url.c:431
+#, c-format
+msgid "failed to open %s\n"
+msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ %s\n"
+
+#: lib/rpmdb.c:206 lib/rpmdb.c:214
 #, c-format
 msgid "cannot get %s lock on database"
 msgstr "ÎÅ ÍÏÇÕ ÐÏÌÕÞÉÔØ %s ÄÏÓÔÕРˠÂÁÚÅ ÄÁÎÎÙÈ"
 
-#: ../lib/rpmdb.c:183
+#: lib/rpmdb.c:207
 msgid "exclusive"
 msgstr "ÉÓËÌÀÞÉÔÅÌØÎÙÊ"
 
-#: ../lib/rpmdb.c:190
+#: lib/rpmdb.c:215
 msgid "shared"
 msgstr "ÒÁÚÄÅÌÑÅÍÙÊ"
 
-#: ../lib/rpmdb.c:213
+#: lib/rpmdb.c:246
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
@@ -3050,379 +2966,601 @@ msgstr ""
 "ÎÁÊÄÅÎÁ ÂÁÚÁ ÄÁÎÎÙÈ ÓÔÁÒÏÇÏ ÆÏÒÍÁÔÁ; ÉÓÐÏÌØÚÕÊÔÅ --rebuilddb ÄÌÑ ÇÅÎÅÒÁÃÉÉ "
 "ÂÁÚÙ ÎÏ×ÏÇÏ ÆÏÒÍÁÔÁ"
 
-#: ../lib/rpmdb.c:372
+#: lib/rpmdb.c:439
 #, c-format
 msgid "package %s not listed in %s"
 msgstr "ÐÁËÅÔ %s ÎÅ ×ÎÅÓÅΠנ%s"
 
-#: ../lib/rpmdb.c:383
+#: lib/rpmdb.c:450
 #, c-format
 msgid "package %s not found in %s"
 msgstr "ÐÁËÅÔ %s ÎÅ ÎÁÊÄÅΠנ%s"
 
-#: ../lib/rpmdb.c:407 ../lib/uninstall.c:40
+#: lib/rpmdb.c:475 lib/uninstall.c:85
 #, c-format
 msgid "cannot read header at %d for uninstall"
 msgstr "ÎÅ ÍÏÇÕ ÐÒÏÞÉÔÁÔØ ÈÅÄÅÒ × %d ÄÌÑ ÕÄÁÌÅÎÉÑ"
 
-#: ../lib/rpmdb.c:415
+#: lib/rpmdb.c:483
 msgid "package has no name"
 msgstr "Õ ÐÁËÅÔÁ ÎÅÔ ÉÍÅÎÉ"
 
-#: ../lib/rpmdb.c:417
+#: lib/rpmdb.c:485
 msgid "removing name index\n"
 msgstr "ÕÄÁÌÑÀ ÉÎÄÅËÓ ÉÍÅÎ\n"
 
-#: ../lib/rpmdb.c:422
+#: lib/rpmdb.c:490
 msgid "package has no group\n"
 msgstr "Õ ÐÁËÅÔÁ ÎÅÔ ÇÒÕÐÐÙ\n"
 
-#: ../lib/rpmdb.c:424
+#: lib/rpmdb.c:492
 msgid "removing group index\n"
 msgstr "ÕÄÁÌÑÀ ÉÎÄÅËÓ ÇÒÕÐÐ\n"
 
-#: ../lib/rpmdb.c:431
+#: lib/rpmdb.c:499
 #, c-format
 msgid "removing provides index for %s\n"
 msgstr "ÕÄÁÌÑÀ ÉÎÄÅËÓ ÐÒÅÄÏÓÔÁ×ÌÑÅÍÙÈ ÓÅÒ×ÉÓÏ× ÄÌÑ %s\n"
 
-#: ../lib/rpmdb.c:446
+#: lib/rpmdb.c:514
 #, c-format
 msgid "removing requiredby index for %s\n"
 msgstr "ÕÄÁÌÑÀ ÉÎÄÅËÓ ÔÒÅÂÏ×ÁÎÉÊ ÄÌÑ %s\n"
 
-#: ../lib/rpmdb.c:458
+#: lib/rpmdb.c:526
 #, c-format
 msgid "removing trigger index for %s\n"
 msgstr "ÕÄÁÌÑÀ ÉÎÄÅËÓ ÔÒÉÇÇÅÒÏ× ÄÌÑ %s\n"
 
-#: ../lib/rpmdb.c:469
+#: lib/rpmdb.c:537
 #, c-format
 msgid "removing conflict index for %s\n"
 msgstr "ÕÄÁÌÑÀ ÉÎÄÅËÓ ËÏÎÆÌÉËÔÏ× ÄÌÑ %s\n"
 
-#: ../lib/rpmdb.c:486
+#: lib/rpmdb.c:554
 #, c-format
 msgid "removing file index for %s\n"
 msgstr "ÕÄÁÌÑÀ ÉÎÄÅËÓ ÆÁÊÌÏ× ÄÌÑ %s\n"
 
-#: ../lib/rpmdb.c:495
+#: lib/rpmdb.c:563
 msgid "package has no files\n"
 msgstr "ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÆÁÊÌÏ×\n"
 
-#: ../lib/rpmdb.c:568
+#: lib/rpmdb.c:645
 msgid "cannot allocate space for database"
 msgstr "ÎÅ ÍÏÇÕ ×ÙÄÅÌÉÔØ ÍÅÓÔÏ ÄÌÑ ÂÁÚÙ ÄÁÎÎÙÈ"
 
-#: ../lib/rpmdb.c:639
+#: lib/rpmdb.c:711
 #, c-format
 msgid "cannot read header at %d for update"
 msgstr "ÎÅ ÍÏÇÕ ÐÒÏÞÉÔÁÔØ ÈÅÄÅÒ × %d ÄÌÑ ÁÐÇÒÅÊÄÁ"
 
-#: ../lib/rpmdb.c:648
+#: lib/rpmdb.c:720
 msgid "header changed size!"
 msgstr "ÈÅÄÅÒ ÉÚÍÅÎÉÌ ÒÁÚÍÅÒ!"
 
-#: ../lib/rpmlead.c:41
+#: lib/rpminstall.c:128
+msgid "counting packages to install\n"
+msgstr "ÓÞÉÔÁÀ ÐÁËÅÔÙ ÄÌÑ ÕÓÔÁÎÏ×ËÉ\n"
+
+#: lib/rpminstall.c:132
+#, c-format
+msgid "found %d packages\n"
+msgstr "ÎÁÊÄÅÎÏ %d ÐÁËÅÔÏ×\n"
+
+#: lib/rpminstall.c:141
+msgid "looking for packages to download\n"
+msgstr "ÉÝÕ ÐÁËÅÔÙ ÄÌÑ ÐÏÌÕÞÅÎÉÑ Ó ftp/http\n"
+
+#: lib/rpminstall.c:152
+#, c-format
+msgid "Retrieving %s\n"
+msgstr "ðÏÌÕÞÁÀ %s\n"
+
+#: lib/rpminstall.c:161
+#, c-format
+msgid " ... as %s\n"
+msgstr " ... ËÁË %s\n"
+
+#: lib/rpminstall.c:165
+#, c-format
+msgid "skipping %s - transfer failed - %s\n"
+msgstr "ÐÒÏÐÕÓËÁÀ %s - ÏÛÉÂËÁ ÐÅÒÅÄÁÞÉ - %s\n"
+
+#: lib/rpminstall.c:182
+#, c-format
+msgid "retrieved %d packages\n"
+msgstr "ÐÏÌÕÞÅÎÏ %d ÐÁËÅÔÏ×\n"
+
+#: lib/rpminstall.c:191 lib/rpminstall.c:332
+#, c-format
+msgid "cannot open file %s\n"
+msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ ÆÁÊÌ %s\n"
+
+#: lib/rpminstall.c:207 lib/rpminstall.c:469
+#, c-format
+msgid "%s cannot be installed\n"
+msgstr "%s ÎÅ ÍÏÖÅÔ ÂÙÔØ ÕÓÔÁÎÏ×ÌÅÎ\n"
+
+#: lib/rpminstall.c:243
+#, c-format
+msgid "package %s is not relocateable\n"
+msgstr "ÐÁËÅÔ %s - ÎÅ ÐÅÒÅÍÅÝÁÅÍÙÊ\n"
+
+#: lib/rpminstall.c:261
+#, c-format
+msgid "error reading from file %s\n"
+msgstr "ÏÛÉÂËÁ ÞÔÅÎÉÑ ÉÚ ÆÁÊÌÁ %s\n"
+
+#: lib/rpminstall.c:266
+#, c-format
+msgid "file %s requires a newer version of RPM\n"
+msgstr "ÆÁÊÌ %s ÔÒÅÂÕÅÔ ÂÏÌÅÅ ÎÏ×ÏÊ ×ÅÒÓÉÉ RPM\n"
+
+#: lib/rpminstall.c:283
+#, c-format
+msgid "found %d source and %d binary packages\n"
+msgstr "ÎÁÊÄÅÎÏ %d ÉÓÈÏÄÎÙÈ É %d ÂÉÎÁÒÎÙÈ ÐÁËÅÔÏ×\n"
+
+#: lib/rpminstall.c:294
+msgid "failed dependencies:\n"
+msgstr "ÎÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ:\n"
+
+#: lib/rpminstall.c:312
+msgid "installing binary packages\n"
+msgstr "ÕÓÔÁÎÁ×ÌÉ×ÁÀ ÂÉÎÁÒÎÙÅ ÐÁËÅÔÙ\n"
+
+#: lib/rpminstall.c:397
+#, c-format
+msgid "searching for package %s\n"
+msgstr "ÉÝÕ ÐÁËÅÔ %s\n"
+
+#: lib/rpminstall.c:406
+#, c-format
+msgid "\"%s\" specifies multiple packages\n"
+msgstr "\"%s\" ÚÁÄÁÅÔ ÎÅÓËÏÌØËÏ ÐÁËÅÔÏ×\n"
+
+#: lib/rpminstall.c:432
+msgid "removing these packages would break dependencies:\n"
+msgstr "ÕÄÁÌÅÎÉÅ ÜÔÉÈ ÐÁËÅÔÏ× ÎÁÒÕÛÉÔ ÚÁ×ÉÓÉÍÏÓÔÉ:\n"
+
+#: lib/rpminstall.c:459
+#, c-format
+msgid "cannot open %s\n"
+msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ %s\n"
+
+#: lib/rpminstall.c:464
+#, c-format
+msgid "Installing %s\n"
+msgstr "õÓÔÁÎÁ×ÌÉ×ÁÀ %s\n"
+
+#: lib/rpmlead.c:48
 #, c-format
 msgid "read failed: %s (%d)"
 msgstr "ÏÛÉÂËÁ ÞÔÅÎÉÑ: %s (%d)"
 
-#: ../lib/rpmrc.c:178
+#: lib/rpmrc.c:177
 #, c-format
 msgid "missing second ':' at %s:%d"
 msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ×ÔÏÒÏÅ ':' × %s:%d"
 
-#: ../lib/rpmrc.c:181
+#: lib/rpmrc.c:180
 #, c-format
 msgid "missing architecture name at %s:%d"
 msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ÎÁÚ×ÁÎÉÅ ÁÒÈÉÔÅËÔÕÒÙ × %s:%d"
 
-#: ../lib/rpmrc.c:329
+#: lib/rpmrc.c:328
 #, c-format
 msgid "Incomplete data line at %s:%d"
 msgstr "îÅÐÏÌÎÁÑ ÓÔÒÏËÁ ÄÁÎÎÙÈ × %s:%d"
 
-#: ../lib/rpmrc.c:333
+#: lib/rpmrc.c:332
 #, c-format
 msgid "Too many args in data line at %s:%d"
 msgstr "óÌÉÛËÏÍ ÍÎÏÇÏ ÁÒÇÕÍÅÎÔÏ× × ÓÔÒÏËÅ ÄÁÎÎÙÈ × %s:%d"
 
-#: ../lib/rpmrc.c:340
+#: lib/rpmrc.c:339
 #, c-format
 msgid "Bad arch/os number: %s (%s:%d)"
 msgstr "îÅ×ÅÒÎÙÊ ÎÏÍÅÒ arch/os: %s (%s:%d)"
 
-#: ../lib/rpmrc.c:374
+#: lib/rpmrc.c:373
 #, c-format
 msgid "Incomplete default line at %s:%d"
 msgstr "îÅÐÏÌÎÁÑ ÓÔÒÏËÁ ÐÏ ÕÍÏÌÞÁÎÉÀ × %s:%d"
 
-#: ../lib/rpmrc.c:379
+#: lib/rpmrc.c:378
 #, c-format
 msgid "Too many args in default line at %s:%d"
 msgstr "óÌÉÛËÏÍ ÍÎÏÇÏ ÁÒÇÕÍÅÎÔÏ× × ÓÔÒÏËÅ ÐÏ ÕÍÏÌÞÁÎÉÀ × %s:%d"
 
-#: ../lib/rpmrc.c:562
+#: lib/rpmrc.c:561
 #, c-format
 msgid "Cannot expand %s"
 msgstr "îÅ ÍÏÇÕ ÒÁÓËÒÙÔØ %s"
 
-#: ../lib/rpmrc.c:577
+#: lib/rpmrc.c:576
 #, c-format
 msgid "Unable to open %s for reading: %s."
 msgstr "îÅ ÍÏÇÕ ÏÔËÒÙÔØ %s ÄÌÑ ÞÔÅÎÉÑ: %s."
 
-#: ../lib/rpmrc.c:609
+#: lib/rpmrc.c:608
 #, c-format
 msgid "Failed to read %s: %s."
 msgstr "îÅ ÍÏÇÕ ÐÒÏÞÅÓÔØ %s: %s."
 
-#: ../lib/rpmrc.c:639
+#: lib/rpmrc.c:638
 #, c-format
 msgid "missing ':' at %s:%d"
 msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ':' × %s:%d"
 
-#: ../lib/rpmrc.c:656 ../lib/rpmrc.c:730
+#: lib/rpmrc.c:655 lib/rpmrc.c:729
 #, c-format
 msgid "missing argument for %s at %s:%d"
 msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ÁÒÇÕÍÅÎÔ ÄÌÑ %s × %s:%d"
 
-#: ../lib/rpmrc.c:673 ../lib/rpmrc.c:695
+#: lib/rpmrc.c:672 lib/rpmrc.c:694
 #, c-format
 msgid "%s expansion failed at %s:%d \"%s\""
 msgstr "ÏÛÉÂËÁ ÒÁÓËÒÙÔÉÑ %s ÎÁ %s:%d \"%s\""
 
-#: ../lib/rpmrc.c:681
+#: lib/rpmrc.c:680
 #, c-format
 msgid "cannot open %s at %s:%d"
 msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ %s ÎÁ %s:%d"
 
-#: ../lib/rpmrc.c:722
+#: lib/rpmrc.c:721
 #, c-format
 msgid "missing architecture for %s at %s:%d"
 msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ÁÒÈÉÔÅËÔÕÒÁ ÄÌÑ %s × %s:%d"
 
-#: ../lib/rpmrc.c:789
+#: lib/rpmrc.c:788
 #, c-format
 msgid "bad option '%s' at %s:%d"
 msgstr "ÎÅ×ÅÒÎÁÑ ÏÐÃÉÑ '%s' × %s:%d"
 
-#: ../lib/rpmrc.c:1125
+#: lib/rpmrc.c:1147
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr "îÅÉÚ×ÅÓÔÎÁÑ ÓÉÓÔÅÍÁ: %s\n"
 
-#: ../lib/rpmrc.c:1126
+#: lib/rpmrc.c:1148
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr "ó×ÑÖÉÔÅÓØ Ó rpm-list@redhat.com\n"
 
-#: ../lib/signature.c:147
+#: lib/signature.c:106
+#, c-format
+msgid "sigsize         : %d\n"
+msgstr "ÒÁÚÍÅÒ ÐÏÄÐÉÓÉ  : %d\n"
+
+#: lib/signature.c:107
+#, c-format
+msgid "Header + Archive: %d\n"
+msgstr "èÅÄÅÒ + áÒÈÉ×   : %d\n"
+
+#: lib/signature.c:108
+#, c-format
+msgid "expected size   : %d\n"
+msgstr "ÏÖÉÄÁÅÍÙÊ ÒÁÚÍÅÒ: %d\n"
+
+#: lib/signature.c:112
+msgid "file is not regular -- skipping size check\n"
+msgstr "ÎÅ ÏÂÙÞÎÙÊ ÆÁÊÌ -- ÐÒÏÐÕÓËÁÀ ÐÒÏ×ÅÒËÕ ÒÁÚÍÅÒÁ\n"
+
+#: lib/signature.c:134
 msgid "No signature\n"
 msgstr "ðÏÄÐÉÓÉ ÎÅÔ\n"
 
-#: ../lib/signature.c:150
+#: lib/signature.c:137
 msgid "Old PGP signature\n"
 msgstr "óÔÁÒÁÑ PGP-ÐÏÄÐÉÓØ\n"
 
-#: ../lib/signature.c:163
+#: lib/signature.c:149
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr ""
 "óÔÁÒÁÑ (ÔÏÌØËÏ ÄÌÑ ×ÎÕÔÒÅÎÎÅÇÏ ÉÓÐÏÌØÚÏ×ÁÎÉÑ) ÐÏÄÐÉÓØ! çÄÅ ×Ù üôï ×ÚÑÌÉ!?"
 
-#: ../lib/signature.c:167
+#: lib/signature.c:153
 msgid "New Header signature\n"
 msgstr "îÏ×ÁÑ ÐÏÄÐÉÓØ ÈÅÄÅÒÁ\n"
 
 #. 8-byte pad
-#: ../lib/signature.c:175 ../lib/signature.c:213
+#: lib/signature.c:160 lib/signature.c:202
 #, c-format
 msgid "Signature size: %d\n"
 msgstr "òÁÚÍÅÒ ÐÏÄÐÉÓÉ      : %d\n"
 
-#: ../lib/signature.c:176 ../lib/signature.c:214
+#: lib/signature.c:161 lib/signature.c:203
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr "úÁÐÏÌÎÉÔÅÌØ ÐÏÄÐÉÓÉ : %d\n"
 
-#: ../lib/signature.c:306 ../lib/signature.c:812
-msgid "Couldn't exec pgp"
+#: lib/signature.c:266
+#, fuzzy, c-format
+msgid "Couldn't exec pgp (%s)"
 msgstr "îÅ ÍÏÇÕ ÉÓÐÏÌÎÉÔØ pgp"
 
-#: ../lib/signature.c:317
+#: lib/signature.c:277
 msgid "pgp failed"
 msgstr "ÏÛÉÂËÁ pgp"
 
 #. PGP failed to write signature
 #. Just in case
-#: ../lib/signature.c:324
+#: lib/signature.c:284
 msgid "pgp failed to write signature"
 msgstr "ÏÛÉÂËÁ pgp ÐÒÉ ÚÁÐÉÓÉ ÐÏÄÐÉÓÉ"
 
-#: ../lib/signature.c:329
+#: lib/signature.c:289
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "òÁÚÍÅÒ ÐÏÄÐÉÓÉ PGP  : %d\n"
 
-#: ../lib/signature.c:340 ../lib/signature.c:416
+#: lib/signature.c:300 lib/signature.c:377
 msgid "unable to read the signature"
 msgstr "ÎÅ ÍÏÇÕ ÐÒÏÞÅÓÔØ ÐÏÄÐÉÓØ"
 
-#: ../lib/signature.c:345
+#: lib/signature.c:305
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "ðÏÌÕÞÅÎÏ %d ÂÁÊÔ ÐÏÄÐÉÓÉ PGP\n"
 
-#: ../lib/signature.c:382 ../lib/signature.c:787
+#: lib/signature.c:343 lib/signature.c:686
 msgid "Couldn't exec gpg"
 msgstr "îÅ ÍÏÇÕ ÉÓÐÏÌÎÉÔØ gpg"
 
-#: ../lib/signature.c:393
+#: lib/signature.c:354
 msgid "gpg failed"
 msgstr "ÏÛÉÂËÁ gpg"
 
 #. GPG failed to write signature
 #. Just in case
-#: ../lib/signature.c:400
+#: lib/signature.c:361
 msgid "gpg failed to write signature"
 msgstr "ÏÛÉÂËÁ gpg ÐÒÉ ÚÁÐÉÓÉ ÐÏÄÐÉÓÉ"
 
-#: ../lib/signature.c:405
+#: lib/signature.c:366
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr "òÁÚÍÅÒ ÐÏÄÐÉÓÉ GPG: %d\n"
 
-#: ../lib/signature.c:421
+#: lib/signature.c:382
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr "ðÏÌÕÞÅÎÏ %d ÂÁÊÔ ÐÏÄÐÉÓÉ GPG\n"
 
-#: ../lib/signature.c:436
-#, c-format
-msgid "sigsize         : %d\n"
-msgstr "ÒÁÚÍÅÒ ÐÏÄÐÉÓÉ  : %d\n"
-
-#: ../lib/signature.c:437
-#, c-format
-msgid "Header + Archive: %d\n"
-msgstr "èÅÄÅÒ + áÒÈÉ×   : %d\n"
-
-#: ../lib/signature.c:438
-#, c-format
-msgid "expected size   : %d\n"
-msgstr "ÏÖÉÄÁÅÍÙÊ ÒÁÚÍÅÒ: %d\n"
+#: lib/signature.c:409
+#, fuzzy
+msgid "Generating signature using PGP.\n"
+msgstr "çÅÎÅÒÉÒÕÀ ÐÏÄÐÉÓØ: %d\n"
 
-#: ../lib/signature.c:442
-msgid "file is not regular -- skipping size check\n"
-msgstr "ÎÅ ÏÂÙÞÎÙÊ ÆÁÊÌ -- ÐÒÏÐÕÓËÁÀ ÐÒÏ×ÅÒËÕ ÒÁÚÍÅÒÁ\n"
+#: lib/signature.c:415
+#, fuzzy
+msgid "Generating signature using GPG.\n"
+msgstr "çÅÎÅÒÉÒÕÀ ÐÏÄÐÉÓØ: %d\n"
 
-#: ../lib/signature.c:560 ../lib/signature.c:607
+#: lib/signature.c:492 lib/signature.c:554
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr ""
 "îÅ ÍÏÇÕ ÚÁÐÕÓÔÉÔØ pgp. éÓÐÏÌØÚÕÊÔÅ --nopgp ÞÔÏÂÙ ÐÒÏÐÕÓÔÉÔØ ÐÒÏ×ÅÒËÕ PGP."
 
-#: ../lib/signature.c:605 ../lib/signature.c:677
+#: lib/signature.c:552 lib/signature.c:625
 msgid "exec failed!\n"
 msgstr "ÏÛÉÂËÁ ÚÁÐÕÓËÁ!\n"
 
-#: ../lib/signature.c:679
+#: lib/signature.c:627
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr ""
 "îÅ ÍÏÇÕ ÚÁÐÕÓÔÉÔØ gpg. éÓÐÏÌØÚÕÊÔÅ --nogpg ÞÔÏÂÙ ÐÒÏÐÕÓÔÉÔØ ÐÒÏ×ÅÒËÕ GPG."
 
-#: ../lib/signature.c:716
+#: lib/signature.c:715
+msgid "Couldn't exec pgp"
+msgstr "îÅ ÍÏÇÕ ÉÓÐÏÌÎÉÔØ pgp"
+
+#. @notreached@
+#. This case should have been screened out long ago.
+#: lib/signature.c:719 lib/signature.c:772
+msgid "Invalid %%_signature spec in macro file"
+msgstr "îÅ×ÅÒÎÁÑ ÓÐÅÃÉÆÉËÁÃÉÑ %%_signature × ÍÁËÒÏÆÁÊÌÅ"
+
+#: lib/signature.c:752
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr "÷Ù ÄÏÌÖÎÙ ÕÓÔÁÎÏ×ÉÔØ \"%%_gpg_name:\" × ×ÁÛÅÍ ÍÁËÒÏÆÁÊÌÅ"
 
-#: ../lib/signature.c:728
+#: lib/signature.c:764
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr "÷Ù ÄÏÌÖÎÙ ÕÓÔÁÎÏ×ÉÔØ \"%%_pgp_name:\" × ×ÁÛÅÍ ÍÁËÒÏÆÁÊÌÅ"
 
-#. Currently the calling function (rpm.c:main) is checking this and
-#. * doing a better job.  This section should never be accessed.
-#.
-#: ../lib/signature.c:736 ../lib/signature.c:816
-msgid "Invalid %%_signature spec in macro file"
-msgstr "îÅ×ÅÒÎÁÑ ÓÐÅÃÉÆÉËÁÃÉÑ %%_signature × ÍÁËÒÏÆÁÊÌÅ"
-
-#: ../lib/transaction.c:793
+#: lib/transaction.c:363
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "ÐÅÒÅÍÅÝÁÀ %s × %s\n"
 
-#: ../lib/transaction.c:799
+#: lib/transaction.c:370
 #, c-format
 msgid "excluding %s\n"
 msgstr "ÉÓËÌÀÞÁÀ %s\n"
 
-#: ../lib/transaction.c:887
+#: lib/transaction.c:489
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s ÐÒÏÐÕÝÅΠÉÚ-ÚÁ ÆÌÁÇÁ missingok\n"
 
-#: ../lib/uninstall.c:51
+#: lib/uninstall.c:37
+#, c-format
+msgid "cannot remove %s - directory not empty"
+msgstr "ÎÅ ÍÏÇÕ ÕÄÁÌÉÔØ %s - ËÁÔÁÌÏÇ ÎÅ ÐÕÓÔ"
+
+#: lib/uninstall.c:40
+#, c-format
+msgid "rmdir of %s failed: %s"
+msgstr "ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ËÁÔÁÌÏÇÁ %s: %s"
+
+#: lib/uninstall.c:48
+#, c-format
+msgid "removal of %s failed: %s"
+msgstr "ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ %s: %s"
+
+#: lib/uninstall.c:97
 #, c-format
 msgid "cannot read packages named %s for uninstall"
 msgstr "ÎÅ ÍÏÇÕ ÐÒÏÞÉÔÁÔØ ÐÁËÅÔÙ %s ÄÌÑ ÕÄ×ÌÅÎÉÑ"
 
-#: ../lib/uninstall.c:79
+#: lib/uninstall.c:130
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr "ÕÄÁÌÉÔ ÆÁÊÌÙ; test = %d\n"
 
-#: ../lib/uninstall.c:124
+#: lib/uninstall.c:191
 msgid "running postuninstall script (if any)\n"
 msgstr "ÉÓÐÏÌÎÑÀ ÓËÒÉÐÔ postuninstall (ÅÓÌÉ ÅÓÔØ)\n"
 
-#: ../lib/uninstall.c:138
+#: lib/uninstall.c:204
 msgid "removing database entry\n"
 msgstr "ÕÄÁÌÑÀ ÚÁÐÉÓØ ÂÁÚÙ ÄÁÎÎÙÈ\n"
 
-#: ../lib/uninstall.c:289
+#: lib/uninstall.c:365
 msgid "execution of script failed"
 msgstr "ÏÛÉÂËÁ ÉÓÐÏÌÎÅÎÉÑ ÓËÒÉÐÔÁ"
 
-#: ../lib/uninstall.c:348
+#: lib/url.c:144
 #, c-format
-msgid "cannot remove %s - directory not empty"
-msgstr "ÎÅ ÍÏÇÕ ÕÄÁÌÉÔØ %s - ËÁÔÁÌÏÇ ÎÅ ÐÕÓÔ"
+msgid "Password for %s@%s: "
+msgstr "ðÁÒÏÌØ ÄÌÑ %s@%s: "
 
-#: ../lib/uninstall.c:351
+#: lib/url.c:168 lib/url.c:194
 #, c-format
-msgid "rmdir of %s failed: %s"
-msgstr "ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ËÁÔÁÌÏÇÁ %s: %s"
+msgid "error: %sport must be a number\n"
+msgstr "ÏÛÉÂËÁ: %sport ÄÏÌÖÅΠÂÙÔØ ÞÉÓÌÏÍ\n"
+
+#: lib/url.c:279
+msgid "url port must be a number\n"
+msgstr "url port ÄÏÌÖÅΠÂÙÔØ ÞÉÓÌÏÍ\n"
 
-#: ../lib/uninstall.c:359
+#. XXX PARANOIA
+#: lib/url.c:317
 #, c-format
-msgid "removal of %s failed: %s"
-msgstr "ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ %s: %s"
+msgid "logging into %s as %s, pw %s\n"
+msgstr "ÒÅÇÉÓÔÒÉÒÕÀÓØ × %s ËÁË %s, ÐÁÒÏÌØ %s\n"
 
-#: ../lib/verify.c:36
+#: lib/url.c:446
+#, c-format
+msgid "failed to create %s\n"
+msgstr "ÎÅ ÍÏÇÕ ÓÏÚÄÁÔØ %s\n"
+
+#: lib/verify.c:36
 msgid "don't verify files in package"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÆÁÊÌÙ ÐÁËÅÔÁ"
 
-#: ../lib/verify.c:206
+#: lib/verify.c:206
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr "× ÐÁËÅÔÅ ÎÅÔ ÎÉ ÉÍÅΠÐÏÌØÚÏ×ÁÔÅÌÅÊ, ÎÉ ÉÈ ID (ÔÁË ÎÅ ÂÙ×ÁÅÔ)"
 
-#: ../lib/verify.c:224
+#: lib/verify.c:224
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr "× ÐÁËÅÔÅ ÎÅÔ ÎÉ ÉÍÅΠÇÒÕÐÐ, ÎÉ ÉÈ ID (ÔÁË ÎÅ ÂÙ×ÁÅÔ)"
 
-#: ../lib/verify.c:257
+#: lib/verify.c:257
 #, c-format
 msgid "missing    %s\n"
 msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ %s\n"
 
-#: ../lib/verify.c:321
+#: lib/verify.c:319
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "îÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ ÄÌÑ %s-%s-%s: "
 
-#: ../lib/verify.c:369
+#: lib/verify.c:367
 msgid "rpmVerify: rpmdbOpen() failed\n"
 msgstr "rpmVerify: ÎÅÕÄÁÞÁ rpmdbOpen()\n"
 
+#~ msgid "File contains non-printable characters(%c): %s\n"
+#~ msgstr "æÁÊÌ ÓÏÄÅÒÖÉÔ ÎÅÐÅÞÁÔÁÅÍÙÅ ÓÉÍ×ÏÌÙ(%c): %s\n"
+
+#~ msgid "Couldn't read the header/archive"
+#~ msgstr "îÅ ÍÏÇÕ ÐÒÏÞÉÔÁÔØ ÈÅÄÅÒ/ÁÒÈÉ×"
+
+#~ msgid "Couldn't write header/archive to temp file"
+#~ msgstr "îÅ ÍÏÇÕ ÚÁÐÉÓÁÔØ ÈÅÄÅÒ/ÁÒÈÉ× ×Ï ×ÒÅÍÅÎÎÙÊ ÆÁÊÌ"
+
+#~ msgid "Couldn't read sigtarget"
+#~ msgstr "îÅ ÍÏÇÕ ÐÒÏÞÅÓÔØ ÆÁÊÌ, ÐÏÄÌÅÖÁÝÉÊ ÐÏÄÐÉÓÉ"
+
+#~ msgid "Couldn't write package"
+#~ msgstr "îÅ ÍÏÇÕ ÚÁÐÉÓÁÔØ ÐÁËÅÔ"
+
+#~ msgid "Unable to write %s"
+#~ msgstr "îÅ ÍÏÇÕ ÚÁÐÉÓÁÔØ %s"
+
+#~ msgid "unexpected query specifiers"
+#~ msgstr "ÎÅÏÖÉÄÁÎÎÁÑ ÓÐÅÃÉÆÉËÁÃÉÑ ÚÁÐÒÏÓÁ"
+
+#~ msgid "--nofiles may only be specified during package verification"
+#~ msgstr "ÏÐÃÉÑ --nofiles ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ×ÅÒÉÆÉËÁÃÉÉ ÐÁËÅÔÁ"
+
+#~ msgid "--clean may only be used with -b and -t"
+#~ msgstr "ÏÐÃÉÑ --clean ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ ÔÏÌØËÏ Ó -b ÉÌÉ -t"
+
+#~ msgid "--rmsource may only be used with -b and -t"
+#~ msgstr "ÏÐÃÉÑ --rmsource ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ ÔÏÌØËÏ Ó -b ÉÌÉ -t"
+
+#~ msgid "--short-circuit may only be used during package building"
+#~ msgstr ""
+#~ "ÏÐÃÉÑ --short-circuit ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ ÔÏÌØËÏ ÐÒÉ ÓÂÏÒËÅ ÐÁËÅÔÏ×"
+
+#~ msgid "--short-circuit may only be used with -bc, -bi, -bs, -tc -ti, or -ts"
+#~ msgstr ""
+#~ "ÏÐÃÉÑ --short-circuit ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ ÔÏÌØËÏ Ó -bc, -bi, -bs, -tc "
+#~ "-ti ÉÌÉ -ts"
+
+#~ msgid ""
+#~ "Use `%%_signature pgp5' instead of `%%_signature pgp' in macro file.\n"
+#~ msgstr ""
+#~ "éÓÐÏÌØÚÕÊÔÅ × ÍÁËÒÏÆÁÊÌÅ `%%_signature pgp5' ×ÍÅÓÔÏ `%%_signature pgp'.\n"
+
+#~ msgid "pgp version 5 not found: "
+#~ msgstr "PGP ×ÅÒÓÉÉ 5 ÎÅ ÎÁÊÄÅÎ: "
+
+#~ msgid ""
+#~ "Use `%%_signature pgp' instead of `%%_signature pgp5' in macro file.\n"
+#~ msgstr ""
+#~ "éÓÐÏÌØÚÕÊÔÅ × ÍÁËÒÏÆÁÊÌÅ `%%_signature pgp' ×ÍÅÓÔÏ `%%_signature pgp5'.\n"
+
+#~ msgid "parse error in tokenizer"
+#~ msgstr "ÏÛÉÂËÁ ÒÁÚÂÏÒÁ × ÔÏËÅÎÁÊÚÅÒÅ"
+
+#~ msgid "No files after %%defattr(): %s"
+#~ msgstr "æÁÊÌÙ ÐÏÓÌÅ %%defattr() ÎÅÄÏÐÕÓÔÉÍÙ: %s"
+
+#~ msgid "Bad %%config() syntax: %s"
+#~ msgstr "îÅ×ÅÒÎÙÊ ÓÉÎÔÁËÓÉÓ %%config(): %s"
+
+#~ msgid "Invalid %%config token: %s"
+#~ msgstr "îÅ×ÅÒÎÙÊ ÔÏËÅΠ%%config: %s"
+
+#~ msgid "Finding provides...\n"
+#~ msgstr "ïÐÒÅÄÅÌÑÀ ÓÅÒ×ÉÓÙ, ÐÒÅÄÏÓÔÁ×ÌÑÅÍÙÅ ÐÁËÅÔÏÍ...\n"
+
+#~ msgid "Failed to find requires"
+#~ msgstr "ïÛÉÂËÁ ÏÐÒÅÄÅÌÅÎÉÑ ÔÒÅÂÏ×ÁÎÉÊ ÐÁËÅÔÁ"
+
+#~ msgid "Provides:"
+#~ msgstr "ðÒÅÄÏÓÔÁ×ÌÑÅÔ:"
+
+#~ msgid "Prereqs:"
+#~ msgstr "ôÒÅÂÕÅÔ ÄÌÑ ÕÓÔÁÎÏ×ËÉ:"
+
+#~ msgid "Requires:"
+#~ msgstr "ôÒÅÂÕÅÔ:"
+
+#~ msgid "line %d: No file names in Obsoletes: %s"
+#~ msgstr "ÓÔÒÏËÁ %d: éÍÅÎÁ ÆÁÊÌÏ× × Obsoletes ÎÅÄÏÐÕÓÔÉÍÙ: %s"
+
+#~ msgid "dependencies: looking for %s\n"
+#~ msgstr "ÚÁ×ÉÓÉÍÏÓÔÉ: ÉÝÕ %s\n"
+
+#~ msgid "free list corrupt (%u)- contact rpm-list@redhat.com\n"
+#~ msgstr "free list corrupt (%u)- contact rpm-list@redhat.com\n"
+
 #~ msgid "failed build prerequisites:\n"
 #~ msgstr "ÎÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÔÒÅÂÏ×ÁÎÉÑ ÄÌÑ ÐÏÓÔÒÏÅÎÉÑ ÐÁËÅÔÁ:\n"
 
index 85e274c..d607045 100644 (file)
--- a/po/sk.po
+++ b/po/sk.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 2.93\n"
-"POT-Creation-Date: 1999-05-11 12:17-0400\n"
+"POT-Creation-Date: 1999-09-29 19:30-0400\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"
@@ -9,855 +9,606 @@ msgstr ""
 "Content-Type: text/plain; charset=ISO-8859-2\n"
 "Content-Transfer-Encoding: 8-bit\n"
 
-#: ../build.c:24 ../install.c:221 ../install.c:377
+#: build.c:23 lib/rpminstall.c:222 lib/rpminstall.c:382
 #, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr "nie je mo¾né otvori» %s/packages.rpm\n"
 
-#: ../build.c:34
+#: build.c:33
 #, fuzzy
-msgid "failed build prerequisites:\n"
+msgid "failed build dependencies:\n"
 msgstr "nevyrie¹ené závislosti:\n"
 
-#: ../build.c:83 ../build.c:96
+#: build.c:61
+#, c-format
+msgid "Unable to open spec file: %s\n"
+msgstr "Nie je mo¾né otvori» spec súbor: %s\n"
+
+#: build.c:117 build.c:130
 #, c-format
 msgid "Failed to open tar pipe: %s\n"
 msgstr "Otvorenie rúry pre tar zlyhalo: %s\n"
 
 #. Give up
-#: ../build.c:104
+#: build.c:138
 #, 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:129
+#: build.c:163
 #, c-format
 msgid "Failed to rename %s to %s: %s\n"
 msgstr "Nie je mo¾né premenova» %s na %s: %s\n"
 
-#: ../build.c:167
+#: build.c:201
 #, c-format
 msgid "File is not a regular file: %s\n"
 msgstr "Súbor nie je obyèajný súbor: %s\n"
 
-#: ../build.c:172
-#, c-format
-msgid "Unable to open spec file: %s\n"
-msgstr "Nie je mo¾né otvori» spec súbor: %s\n"
-
-#: ../build.c:180
-#, c-format
-msgid "File contains non-printable characters(%c): %s\n"
-msgstr "Súbor obsahuje netlaèiteµné znaky(%c): %s\n"
+#: build.c:207
+#, 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:233
+#: build.c:258
 #, fuzzy, c-format
 msgid "Building target platforms: %s\n"
 msgstr "predefinova» cieµovú platformu"
 
-#: ../build.c:242
+#: build.c:267
 #, fuzzy, c-format
 msgid "Building for target %s\n"
 msgstr "vyhµadáva sa balík %s\n"
 
-#: ../build.c:286
+#: build.c:311
 msgid "buildroot already specified"
 msgstr "buildroot u¾ bol zadaný"
 
-#: ../build.c:292
+#: build.c:317
 msgid "--buildarch has been obsoleted.  Use the --target option instead.\n"
 msgstr "Voµba --buildarch je zastaralá. Pou¾ite namiesto nej --target.\n"
 
-#: ../build.c:296
+#: build.c:321
 msgid "--buildos has been obsoleted.  Use the --target option instead.\n"
 msgstr "Voµba --buildos je zastaralá. Pou¾ite namiesto nej --target.\n"
 
-#: ../build.c:317
+#: build.c:342
 msgid "override build architecture"
 msgstr "predefinova» architektúru balíka"
 
-#: ../build.c:319
+#: build.c:344
 msgid "override build operating system"
 msgstr "predefinova» operaèný systém balíka"
 
-#: ../build.c:321
+#: build.c:346
 msgid "override build root"
 msgstr "predefinova» adresár pre zostavenie balíka"
 
-#: ../build.c:323 ../rpm.c:458
+#: build.c:348 rpm.c:457
 msgid "remove build tree when done"
 msgstr "po ukonèení odstráni» adresár, v ktorom sa balík zostavoval"
 
-#: ../build.c:325
+#: build.c:350
 msgid "do not execute any stages of the build"
 msgstr "nevykona» ¾iadne etapy zostavenia"
 
-#: ../build.c:327
+#: build.c:352
 msgid "do not accept I18N msgstr's from specfile"
 msgstr "neakceptova» lokalizované re»azce zo spec-súboru"
 
-#: ../build.c:329
+#: build.c:354
 #, fuzzy
 msgid "remove sources when done"
 msgstr "po ukonèení odstráni» zdrojové súbory a spec-súbor"
 
-#: ../build.c:331
+#: build.c:356
 #, fuzzy
 msgid "remove specfile when done"
 msgstr "po ukonèení odstráni» zdrojové súbory a spec-súbor"
 
-#: ../build.c:333 ../rpm.c:456
+#: build.c:358 rpm.c:455
 msgid "skip straight to specified stage (only for c,i)"
 msgstr "preskoèi» priamo k urèenej etape (iba pre c, i)"
 
-#: ../build.c:335
+#: build.c:360
 msgid "override target platform"
 msgstr "predefinova» cieµovú platformu"
 
-#: ../build.c:337
+#: build.c:362
 msgid "lookup I18N strings in specfile catalog"
 msgstr "pre preklad re»azcov pou¾i» katalóg správ spec-súborov"
 
-#: ../checksig.c:27 ../checksig.c:166
-#, c-format
-msgid "%s: Open failed\n"
-msgstr "%s: otvorenie zlyhalo\n"
-
-#: ../checksig.c:31 ../checksig.c:171
-#, c-format
-msgid "%s: readLead failed\n"
-msgstr "%s: readLead zlyhalo\n"
-
-#: ../checksig.c:35
-#, c-format
-msgid "%s: Can't sign v1.0 RPM\n"
-msgstr "%s: Nie je mo¾né podpísa» v1.0 RPM\n"
-
-#: ../checksig.c:39
-#, c-format
-msgid "%s: Can't re-sign v2.0 RPM\n"
-msgstr "%s: Nie je mo¾né znovu podpísa» v2.0 RPM\n"
-
-#: ../checksig.c:43 ../checksig.c:181
-#, c-format
-msgid "%s: rpmReadSignature failed\n"
-msgstr "%s: rpmReadSignature zlyhalo\n"
-
-#: ../checksig.c:56 ../checksig.c:195
-msgid "Couldn't read the header/archive"
-msgstr "Nie je mo¾né preèíta» hlavièku/archív"
-
-#: ../checksig.c:63
-msgid "Couldn't write header/archive to temp file"
-msgstr "Nie je mo¾né zapísa» hlavièku/archív do doèasného súboru"
-
-#: ../build/pack.c:330 ../checksig.c:91
-#, c-format
-msgid "Generating signature: %d\n"
-msgstr "Vytvára sa PGP podpis: %d\n"
-
-#: ../checksig.c:114
-msgid "Couldn't read sigtarget"
-msgstr "Nie je mo¾né preèíta» cieµ podpisu"
-
-#: ../checksig.c:123
-msgid "Couldn't write package"
-msgstr "Nie je mo¾né zapísa» balík"
-
-#: ../checksig.c:176
-#, c-format
-msgid "%s: No signature available (v1.0 RPM)\n"
-msgstr "%s: Podpis nie je k dispozícii (v1.0 RPM)\n"
-
-#: ../checksig.c:186
-#, c-format
-msgid "%s: No signature available\n"
-msgstr "%s: Podpis nie je k dispozícii\n"
-
-#: ../checksig.c:202
-#, c-format
-msgid "Unable to write %s"
-msgstr "Nie je mo¾né zapísa» %s"
-
-#: ../checksig.c:328
-msgid "NOT OK"
-msgstr "NIE JE V PORIADKU"
-
-#: ../checksig.c:329 ../checksig.c:343
-msgid " (MISSING KEYS:"
-msgstr " (CHÝBAJÚCE K¥ÚÈE):"
-
-#: ../checksig.c:331 ../checksig.c:345
-msgid ") "
-msgstr ") "
-
-#: ../checksig.c:332 ../checksig.c:346
-msgid " (UNTRUSTED KEYS:"
-msgstr " (NEDÔVERUJE SA K¥ÚÈOM: "
-
-#: ../checksig.c:334 ../checksig.c:348
-msgid ")"
-msgstr ")"
-
-#: ../checksig.c:342
-msgid "OK"
-msgstr "V PORIADKU"
-
-#: ../convertdb.c:38
+#: convertdb.c:39
 msgid "RPM database already exists"
 msgstr "RPM databáza u¾ existuje"
 
-#: ../convertdb.c:43
+#: convertdb.c:44
 msgid "Old db is missing"
 msgstr "Stará databáza neexistuje"
 
-#: ../convertdb.c:54
+#: convertdb.c:55
 msgid "failed to create RPM database /var/lib/rpm"
 msgstr "Nepodarilo sa vytvori» RPM databázu /var/lib/rpm"
 
-#: ../convertdb.c:60
+#: convertdb.c:61
 msgid "Old db is corrupt"
 msgstr "Stará databáze je po¹kodená"
 
-#: ../convertdb.c:69
+#: convertdb.c:70
 #, c-format
 msgid "oldrpmdbGetPackageInfo failed &olddb = %p olddb.packages = %p\n"
 msgstr "oldrpmdbGetPackageInfo zlyhal &olddb = %p olddb.packages = %p\n"
 
-#: ../convertdb.c:201
+#: convertdb.c:204
 msgid "rpmconvert: no arguments expected"
 msgstr "rpmconvert: argumenty nie sú oèakávané"
 
-#: ../convertdb.c:207
+#: convertdb.c:210
 msgid "rpmconvert 1.0 - converting database in /var/lib/rpm\n"
 msgstr "rpmconvert 1.0 - konverzia databázy v /var/lib/rpm\n"
 
-#: ../ftp.c:642
-msgid "Success"
-msgstr "Úspech"
-
-#: ../ftp.c:645
-msgid "Bad server response"
-msgstr "Chybná odpoveï servera"
-
-#: ../ftp.c:648
-msgid "Server IO error"
-msgstr "Chyba vstupu/výstupu servera"
-
-#: ../ftp.c:651
-msgid "Server timeout"
-msgstr "Prekroèenie èasového limitu servera"
-
-#: ../ftp.c:654
-msgid "Unable to lookup server host address"
-msgstr "Nie je mo¾né vyhµada» adresu servera"
-
-#: ../ftp.c:657
-msgid "Unable to lookup server host name"
-msgstr "Nie je mo¾né vyhµada» názov servera"
-
-#: ../ftp.c:660
-msgid "Failed to connect to server"
-msgstr "Pripojenie k serveru zlyhalo"
-
-#: ../ftp.c:663
-msgid "Failed to establish data connection to server"
-msgstr "Vytvorenie dátového spojenia k serveru zlyhalo"
-
-#: ../ftp.c:666
-msgid "IO error to local file"
-msgstr "Chyba vstupu/výstupu lokálneho súboru"
-
-#: ../ftp.c:669
-msgid "Error setting remote server to passive mode"
-msgstr "Chyba pri nastavení vzdialeného servera do pasívneho re¾imu"
-
-#: ../ftp.c:672
-msgid "File not found on server"
-msgstr "Súbor sa na serveri nenachádza"
-
-#: ../ftp.c:675
-msgid "Abort in progress"
-msgstr "Zru¹enie prebieha"
-
-#: ../ftp.c:679
-msgid "Unknown or unexpected error"
-msgstr "Neznáma alebo neoèakávaná chyba"
-
-#: ../install.c:127
-msgid "counting packages to install\n"
-msgstr "poèítajú sa balíky pre in¹taláciu\n"
-
-#: ../install.c:131
-#, c-format
-msgid "found %d packages\n"
-msgstr "nájdených %d balíkov\n"
-
-#: ../install.c:140
-msgid "looking for packages to download\n"
-msgstr "hµadajú sa balíky, ktoré treba prenies»\n"
-
-#: ../install.c:151
-#, c-format
-msgid "Retrieving %s\n"
-msgstr "Prená¹a sa %s\n"
-
-#: ../install.c:160
-#, c-format
-msgid " ... as %s\n"
-msgstr "... ako %s\n"
-
-#: ../install.c:164
-#, c-format
-msgid "skipping %s - transfer failed - %s\n"
-msgstr "%s vynechané - prenos zlyhal - %s\n"
-
-#: ../install.c:181
-#, c-format
-msgid "retrieved %d packages\n"
-msgstr "prenieslo sa %d balíkov\n"
-
-#: ../install.c:190 ../install.c:327
-#, c-format
-msgid "cannot open file %s\n"
-msgstr "nie je mo¾né otvori» súbor %s\n"
-
-#: ../install.c:202 ../lib/query.c:569
-#, c-format
-msgid "%s does not appear to be a RPM package\n"
-msgstr "%s zrejme nie je RPM balík\n"
-
-#: ../install.c:206 ../install.c:464
-#, c-format
-msgid "%s cannot be installed\n"
-msgstr "%s nie je mo¾né nain¹talova»\n"
-
-#: ../install.c:242
-#, fuzzy, c-format
-msgid "package %s is not relocateable\n"
-msgstr "balík %s nie je nain¹talovaný\n"
-
-#: ../install.c:254
-#, fuzzy, c-format
-msgid "error reading from file %s\n"
-msgstr "chyba pri vytváraní doèasného súboru %s"
-
-#: ../install.c:257
-#, c-format
-msgid "file %s requires a newer version of RPM\n"
-msgstr ""
-
-#: ../install.c:272
-#, 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"
-
-#: ../install.c:282
-msgid "failed dependencies:\n"
-msgstr "nevyrie¹ené závislosti:\n"
-
-#: ../install.c:300
-msgid "installing binary packages\n"
-msgstr "in¹talujú sa binárne balíky\n"
-
-#: ../install.c:388 ../lib/query.c:717
-#, c-format
-msgid "package %s is not installed\n"
-msgstr "balík %s nie je nain¹talovaný\n"
-
-#: ../install.c:392
-#, c-format
-msgid "searching for package %s\n"
-msgstr "vyhµadáva sa balík %s\n"
-
-#: ../install.c:401
-#, c-format
-msgid "\"%s\" specifies multiple packages\n"
-msgstr "\"%s\" ¹pecifikuje viac balíkov\n"
-
-#: ../install.c:427
-msgid "removing these packages would break dependencies:\n"
-msgstr "odstránenie týchto balíkov by poru¹ilo závislosti:\n"
-
-#: ../install.c:454
-#, c-format
-msgid "cannot open %s\n"
-msgstr "nie je mo¾né otvori» %s\n"
-
-#: ../install.c:459
-#, c-format
-msgid "Installing %s\n"
-msgstr "In¹taluje sa %s\n"
-
-#: ../install.c:503
-#, c-format
-msgid " is needed by %s-%s-%s\n"
-msgstr " je vy¾adované %s-%s-%s\n"
-
-#: ../install.c:506
-#, c-format
-msgid " conflicts with %s-%s-%s\n"
-msgstr " koliduje s %s-%s-%s\n"
-
-#: ../oldrpmdb.c:454
+#: oldrpmdb.c:454
 #, c-format
 msgid "pulling %s from database\n"
 msgstr "naèíta sa %s z databázy\n"
 
-#: ../oldrpmdb.c:461
+#: oldrpmdb.c:461
 msgid "package not found in database"
 msgstr "balík nebol nájdený v databáze"
 
-#: ../oldrpmdb.c:522
+#: oldrpmdb.c:522
 msgid "no copyright!\n"
 msgstr "¾iadny copyright!\n"
 
-#: ../rpm.c:160
+#: rpm.c:159
 #, c-format
 msgid "rpm: %s\n"
 msgstr "rpm: %s\n"
 
-#: ../rpm.c:171
+#: rpm.c:170
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM verzia %s\n"
 
-#: ../rpm.c:175
+#: rpm.c:174
 msgid "Copyright (C) 1998 - Red Hat Software"
 msgstr "Copyright (C) 1998 - Red Hat Software"
 
-#: ../rpm.c:176
-msgid ""
-"This may be freely redistributed under the terms of the GNU GPL"
-msgstr ""
-"Program mô¾e by» voµne redistribuovaný v súlade s podmienkami GNU GPL"
+#: rpm.c:175
+msgid "This may be freely redistributed under the terms of the GNU GPL"
+msgstr "Program mô¾e by» voµne redistribuovaný v súlade s podmienkami GNU GPL"
 
-#: ../rpm.c:185
+#: rpm.c:183
 msgid "usage: rpm {--help}"
 msgstr "pou¾itie: rpm {--help}"
 
-#: ../rpm.c:186
+#: rpm.c:184
 msgid "       rpm {--version}"
 msgstr "          rpm {--version}"
 
-#: ../rpm.c:187
+#: rpm.c:185
 msgid "       rpm {--initdb}   [--dbpath <dir>]"
 msgstr "          rpm {--initdb}   [--dbpath <adresár>]"
 
-#: ../rpm.c:188
+#: rpm.c:186
 msgid ""
 "       rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 "          rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
 
-#: ../rpm.c:189
+#: rpm.c:187
 msgid "                        [--replacepkgs] [--replacefiles] [--root <dir>]"
 msgstr ""
 "                           [--replacepkgs] [--replacefiles] [--root "
 "<adresár>]"
 
-#: ../rpm.c:190
+#: rpm.c:188
 msgid "                        [--excludedocs] [--includedocs] [--noscripts]"
 msgstr ""
 "                           [--excludedocs] [--includedocs] [--noscripts]"
 
-#: ../rpm.c:191
+#: rpm.c:189
 msgid ""
 "                        [--rcfile <file>] [--ignorearch] [--dbpath <dir>]"
 msgstr ""
 "                           [--rcfile <súbor>] [--ignorearch] [--dbpath "
 "<adresár>]"
 
-#: ../rpm.c:192
+#: rpm.c:190
 msgid ""
 "                        [--prefix <dir>] [--ignoreos] [--nodeps] [--allfiles]"
 msgstr ""
 "                           [--prefix <adresár>] [--ignoreos] [--nodeps] "
 "[--allfiles]"
 
-#: ../rpm.c:193
+#: rpm.c:191
 msgid ""
 "                        [--ftpproxy <host>] [--ftpport <port>] [--justdb]"
 msgstr ""
 "                           [--ftpproxy <poèítaè>] [--ftpport <port>] "
 "[--justdb]"
 
-#: ../rpm.c:194 ../rpm.c:203 ../rpm.c:212
+#: rpm.c:192 rpm.c:201 rpm.c:210
 msgid "                        [--httpproxy <host>] [--httpport <port>] "
 msgstr "                           [--httproxy <poèítaè>] [--httpport <port>]"
 
-#: ../rpm.c:195 ../rpm.c:205
+#: rpm.c:193 rpm.c:203
 msgid "                        [--noorder] [--relocate oldpath=newpath]"
 msgstr ""
 "                           [--noorder] [--relocate stará_cesta=nová_cesta]"
 
-#: ../rpm.c:196
+#: rpm.c:194
 msgid ""
 "                        [--badreloc] [--notriggers] [--excludepath <path>]"
 msgstr ""
 "                           [--badreloc] [--notriggers] [--excludepath <path>]"
 
-#: ../rpm.c:197
+#: rpm.c:195
 msgid "                        [--ignoresize] file1.rpm ... fileN.rpm"
 msgstr "                           [--ignoresize] súbor1.rpm ... súborN.rpm"
 
-#: ../rpm.c:198
+#: rpm.c:196
 msgid ""
 "       rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 "          rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]"
 
-#: ../rpm.c:199
+#: rpm.c:197
 msgid "                        [--oldpackage] [--root <dir>] [--noscripts]"
 msgstr ""
 "                           [--oldpackage] [--root <adresár>] [--noscripts]"
 
-#: ../rpm.c:200
+#: rpm.c:198
 msgid ""
 "                        [--excludedocs] [--includedocs] [--rcfile <file>]"
 msgstr ""
 "                           [--excludedocs] [--includedocs] [--rcfile <súbor>]"
 
-#: ../rpm.c:201
+#: rpm.c:199
 msgid ""
 "                        [--ignorearch]  [--dbpath <dir>] [--prefix <dir>] "
 msgstr ""
 "                           [--ignorearch]  [--dbpath <adresár>] [--prefix "
 "<adresár>] "
 
-#: ../rpm.c:202
+#: rpm.c:200
 msgid "                        [--ftpproxy <host>] [--ftpport <port>]"
 msgstr "                           [--ftpproxy <poèítaè>] [--ftpport <port>]"
 
-#: ../rpm.c:204
+#: rpm.c:202
 msgid "                        [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
 msgstr ""
 "                           [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
 
-#: ../rpm.c:206
+#: rpm.c:204
 msgid ""
 "                        [--badreloc] [--excludepath <path>] [--ignoresize]"
 msgstr ""
 "                           [--badreloc] [--excludepath <path>] [--ignoresize]"
 
-#: ../rpm.c:207
+#: rpm.c:205
 msgid "                        file1.rpm ... fileN.rpm"
 msgstr "                           súbor1.rpm ... súborN.rpm"
 
-#: ../rpm.c:208
+#: rpm.c:206
 msgid "       rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]"
 msgstr "          rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]"
 
-#: ../rpm.c:209
+#: rpm.c:207
 msgid "                        [--scripts] [--root <dir>] [--rcfile <file>]"
 msgstr ""
 "                           [--scripts] [--root <adresár>] [--rcfile <súbor>]"
 
-#: ../rpm.c:210
+#: rpm.c:208
 msgid "                        [--whatprovides] [--whatrequires] [--requires]"
 msgstr ""
 "                           [--whatprovides] [--whatrequires] [--requires]"
 
-#: ../rpm.c:211
+#: rpm.c:209
 msgid ""
 "                        [--triggeredby] [--ftpuseport] [--ftpproxy <host>]"
 msgstr ""
 "                           [--triggeredby] [--ftpuseport] [--ftpproxy "
 "<poèítaè>]"
 
-#: ../rpm.c:213
+#: rpm.c:211
 msgid ""
 "                        [--ftpport <port>] [--provides] [--triggers] [--dump]"
 msgstr ""
 "                           [--ftpport <port>] [--provides] [--triggers] "
 "[--dump]"
 
-#: ../rpm.c:214
+#: rpm.c:212
 msgid "                        [--changelog] [--dbpath <dir>] [targets]"
 msgstr ""
 "                           [--changelog] [--dbpath <adresár>] [targets]"
 
-#: ../rpm.c:215
+#: rpm.c:213
 msgid "       rpm {--verify -V -y} [-afpg] [--root <dir>] [--rcfile <file>]"
 msgstr ""
 "          rpm {--verify -V -y} [-afpg] [--root <adresár>] [--rcfile <súbor>]"
 
-#: ../rpm.c:216
+#: rpm.c:214
 msgid ""
 "                        [--dbpath <dir>] [--nodeps] [--nofiles] [--noscripts]"
 msgstr ""
 "                           [--dbpath <adresár>] [--nodeps] [--nofiles] "
 "[--noscripts]"
 
-#: ../rpm.c:217
+#: rpm.c:215
 msgid "                        [--nomd5] [targets]"
 msgstr "                           [--nomd5] [ciele]"
 
-#: ../rpm.c:218
+#: rpm.c:216
 msgid "       rpm {--setperms} [-afpg] [target]"
 msgstr "          rpm {--setperms} [-afpg] [cieµ]"
 
-#: ../rpm.c:219
+#: rpm.c:217
 msgid "       rpm {--setugids} [-afpg] [target]"
 msgstr "          rpm {--setugids} [-afpg] [cieµ]"
 
-#: ../rpm.c:220
+#: rpm.c:218
+#, fuzzy
+msgid "       rpm {--freshen -F} file1.rpm ... fileN.rpm"
+msgstr "                           súbor1.rpm ... súborN.rpm"
+
+#: rpm.c:219
 msgid "       rpm {--erase -e} [--root <dir>] [--noscripts] [--rcfile <file>]"
 msgstr ""
 "          rpm {--erase -e} [--root <adresár>] [--noscripts] [--rcfile "
 "<súbor>]"
 
-#: ../rpm.c:221
+#: rpm.c:220
 msgid "                        [--dbpath <dir>] [--nodeps] [--allmatches]"
 msgstr ""
 "                           [--dbpath <adresár>] [--nodeps] [--allmatches]"
 
-#: ../rpm.c:222
+#: rpm.c:221
 msgid ""
 "                        [--justdb] [--notriggers] rpackage1 ... packageN"
 msgstr "                           [--justdb] [--notriggers] balík1 ... balíkN"
 
-#: ../rpm.c:223
+#: rpm.c:222
 msgid ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile  <file>]"
 msgstr ""
 "          rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile  "
 "<súbor>]"
 
-#: ../rpm.c:224
+#: rpm.c:223
 msgid "                        [--sign] [--nobuild] [--timecheck <s>] ]"
 msgstr "                           [--sign] [--nobuild] [--timecheck <s>] ]"
 
-#: ../rpm.c:225
+#: rpm.c:224
 msgid "                        [--target=platform1[,platform2...]]"
 msgstr "                           [--target=platform1[,platform2...]]"
 
-#: ../rpm.c:226
+#: rpm.c:225
 msgid "                        [--rmsource] specfile"
 msgstr "                           [--rmsource] specsúbor"
 
-#: ../rpm.c:227
+#: rpm.c:226
 msgid "       rpm {--rmsource} [--rcfile <file>] [-v] specfile"
 msgstr "          rpm {--rmsource} [--rcfile <súbor>] [-v] specsúbor"
 
-#: ../rpm.c:228
+#: rpm.c:227
 msgid ""
 "       rpm {--rebuild} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 "          rpm {--rebuild}  [--rcfile <súbor>] [-v] zdroj1.rpm ... zdrojN.rpm"
 
-#: ../rpm.c:229
+#: rpm.c:228
 msgid ""
 "       rpm {--recompile} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 "          rpm {--recompile} [--rcfile <súbor>] [-v] zdroj1.rpm ... zdrojN.rpm"
 
-#: ../rpm.c:230
+#: rpm.c:229
 msgid "       rpm {--resign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr "          rpm {--resign}   [--rcfile <súbor>] balík1 balík2 ... balíkN"
 
-#: ../rpm.c:231
+#: rpm.c:230
 msgid "       rpm {--addsign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr "          rpm {--addsign}  [--rcfile <súbor>] balík1 balík2 ... balíkN"
 
-#: ../rpm.c:232
+#: rpm.c:231
 msgid ""
 "       rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile <file>]"
 msgstr ""
 "          rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile "
 "<súbor>]"
 
-#: ../rpm.c:233
+#: rpm.c:232
 msgid "                           package1 ... packageN"
 msgstr "                              balík1 ... balíkN"
 
-#: ../rpm.c:234
+#: rpm.c:233
 msgid "       rpm {--rebuilddb} [--rcfile <file>] [--dbpath <dir>]"
 msgstr "          rpm {--rebuilddb} [--rcfile <súbor>] [--dbpath <adresár>]"
 
-#: ../rpm.c:235
+#: rpm.c:234
 msgid "       rpm {--querytags}"
 msgstr "          rpm {--querytags}"
 
-#: ../rpm.c:269
+#: rpm.c:268
 msgid "usage:"
 msgstr "pou¾itie:"
 
-#: ../rpm.c:271
+#: rpm.c:270
 msgid "print this message"
 msgstr "vypísa» túto správu"
 
-#: ../rpm.c:273
+#: rpm.c:272
 msgid "print the version of rpm being used"
 msgstr "vypísa» verziu pou¾ívaného rpm"
 
-#: ../rpm.c:274
+#: rpm.c:273
 msgid "   all modes support the following arguments:"
 msgstr "   v¹etky re¾imy podporujú nasledovné argumenty:"
 
-#: ../rpm.c:275
+#: rpm.c:274
 msgid "      --rcfile <file>     "
 msgstr "      --rcfile <file>     "
 
-#: ../rpm.c:276
+#: rpm.c:275
 msgid "use <file> instead of /etc/rpmrc and $HOME/.rpmrc"
 msgstr "pou¾i» <súbor> namiesto /etc/rpmrc a $HOME/.rpmrc"
 
-#: ../rpm.c:278
+#: rpm.c:277
 msgid "be a little more verbose"
 msgstr "o nieèo popisnej¹í re¾im"
 
-#: ../rpm.c:280
+#: rpm.c:279
 msgid "be incredibly verbose (for debugging)"
 msgstr "veµmi popisný re¾im (pre odlaïovanie)"
 
-#: ../rpm.c:282
+#: rpm.c:281
 msgid "query mode"
 msgstr "re¾im otázok"
 
-#: ../rpm.c:283 ../rpm.c:345 ../rpm.c:409 ../rpm.c:437
+#: rpm.c:282 rpm.c:344 rpm.c:408 rpm.c:436
 msgid "      --root <dir>        "
 msgstr "      --root <dir>        "
 
-#: ../rpm.c:284 ../rpm.c:346 ../rpm.c:410 ../rpm.c:438 ../rpm.c:500
+#: rpm.c:283 rpm.c:345 rpm.c:409 rpm.c:437 rpm.c:499
 msgid "use <dir> as the top level directory"
 msgstr "pou¾i» <adresár> ako adresár najvy¹¹ej úrovne"
 
-#: ../rpm.c:285 ../rpm.c:343 ../rpm.c:373 ../rpm.c:425 ../rpm.c:497
+#: rpm.c:284 rpm.c:342 rpm.c:372 rpm.c:424 rpm.c:496
 msgid "      --dbpath <dir>      "
 msgstr "      --dbpath <dir>      "
 
-#: ../rpm.c:286 ../rpm.c:344 ../rpm.c:374 ../rpm.c:426 ../rpm.c:498
+#: rpm.c:285 rpm.c:343 rpm.c:373 rpm.c:425 rpm.c:497
 msgid "use <dir> as the directory for the database"
 msgstr "pou¾i» <adresár> ako adresár pre databázu"
 
-#: ../rpm.c:287
+#: rpm.c:286
 msgid "      --queryformat <qfmt>"
 msgstr "      --queryformat <qfmt>"
 
-#: ../rpm.c:288
+#: rpm.c:287
 msgid "use <qfmt> as the header format (implies -i)"
 msgstr "pou¾i» <qfmt> ako hlavièkový formát (implikuje -i)"
 
-#: ../rpm.c:289
+#: rpm.c:288
 msgid ""
 "   install, upgrade and query (with -p) allow ftp URL's to be used in place"
 msgstr "   in¹talácia, aktualizácia a otázky (s -p) umo¾òujú pou¾i» ftp URL"
 
-#: ../rpm.c:290
+#: rpm.c:289
 msgid "   of file names as well as the following options:"
 msgstr "   namiesto názvov súborov, ako aj nasledujúce voµby:"
 
-#: ../rpm.c:291
+#: rpm.c:290
 msgid "      --ftpproxy <host>   "
 msgstr "      --ftpproxy <poèítaè>"
 
-#: ../rpm.c:292
+#: rpm.c:291
 msgid "hostname or IP of ftp proxy"
 msgstr "názov poèítaèa alebo IP adresa ftp proxy"
 
-#: ../rpm.c:293
+#: rpm.c:292
 msgid "      --ftpport <port>    "
 msgstr "      --ftpport <port>    "
 
-#: ../rpm.c:294
+#: rpm.c:293
 msgid "port number of ftp server (or proxy)"
 msgstr "èíslo portu ftp servera (alebo proxy)"
 
-#: ../rpm.c:295
+#: rpm.c:294
 msgid "      --httpproxy <host>   "
 msgstr "      --httpproxy <poèítaè>"
 
-#: ../rpm.c:296
+#: rpm.c:295
 msgid "hostname or IP of http proxy"
 msgstr "názov poèítaèa alebo IP adresa http proxy"
 
-#: ../rpm.c:297
+#: rpm.c:296
 msgid "      --httpport <port>    "
 msgstr "      --httpport <port>   "
 
-#: ../rpm.c:298
+#: rpm.c:297
 msgid "port number of http server (or proxy)"
 msgstr "èíslo portu http servera (alebo proxy)"
 
-#: ../rpm.c:299
+#: rpm.c:298
 msgid "      Package specification options:"
 msgstr "      Voµby pre ¹pecifikáciu balíkov"
 
-#: ../rpm.c:301
+#: rpm.c:300
 msgid "query all packages"
 msgstr "opýta» sa na v¹etky balíky"
 
-#: ../rpm.c:302
+#: rpm.c:301
 msgid "        -f <file>+        "
 msgstr "        -f <súbor>+       "
 
-#: ../rpm.c:303
+#: rpm.c:302
 msgid "query package owning <file>"
 msgstr "opýta» sa na balík vlastniaci <súbor>"
 
-#: ../rpm.c:304
+#: rpm.c:303
 msgid "        -p <packagefile>+ "
 msgstr "        -p <súbor_balíku>+"
 
-#: ../rpm.c:305
+#: rpm.c:304
 msgid "query (uninstalled) package <packagefile>"
 msgstr "opýta» sa (nenain¹talovaného) balíku <súbor_balíku>"
 
-#: ../rpm.c:306
+#: rpm.c:305
 msgid "        --triggeredby <pkg>"
 msgstr "        --triggeredby <balík>"
 
-#: ../rpm.c:307
+#: rpm.c:306
 msgid "query packages triggered by <pkg>"
 msgstr "opýta» sa na balíky spustené balíkom <balík>"
 
-#: ../rpm.c:308
+#: rpm.c:307
 msgid "        --whatprovides <cap>"
 msgstr "        --whatprovides <schopnos»>"
 
-#: ../rpm.c:309
+#: rpm.c:308
 msgid "query packages which provide <cap> capability"
 msgstr "opýta» sa na balíky poskytujúce schopnos» <schopnos»>"
 
-#: ../rpm.c:310
+#: rpm.c:309
 msgid "        --whatrequires <cap>"
 msgstr "        --whatrequires <schopnos»>"
 
-#: ../rpm.c:311
+#: rpm.c:310
 msgid "query packages which require <cap> capability"
 msgstr "opýta» sa na balíky vy¾adujúce schopnos» <schopnos»>"
 
-#: ../rpm.c:312
+#: rpm.c:311
 msgid "      Information selection options:"
 msgstr "      Voµby pre výber po¾adovanej informácie:"
 
-#: ../rpm.c:314
+#: rpm.c:313
 msgid "display package information"
 msgstr "zobrazi» informácie o balíku"
 
-#: ../rpm.c:316
+#: rpm.c:315
 msgid "display the package's change log"
 msgstr "zobrazi» históriu zmien balíka"
 
-#: ../rpm.c:318
+#: rpm.c:317
 msgid "display package file list"
 msgstr "zobrazi» zoznam súborov balíka"
 
-#: ../rpm.c:320
+#: rpm.c:319
 msgid "show file states (implies -l)"
 msgstr "zobrazi» stavy súborov (implikuje -l)"
 
-#: ../rpm.c:322
+#: rpm.c:321
 msgid "list only documentation files (implies -l)"
 msgstr "zobrazi» len súbory obsahujúce dokumentáciu (implikuje -l)"
 
-#: ../rpm.c:324
+#: rpm.c:323
 msgid "list only configuration files (implies -l)"
 msgstr "zobrazi» iba konfiguraèné súbory (implikuje -l)"
 
-#: ../rpm.c:326
+#: rpm.c:325
 msgid ""
 "show all verifiable information for each file (must be used with -l, -c, or "
 "-d)"
@@ -865,35 +616,35 @@ msgstr ""
 "zobrazi» v¹etky overiteµné údaje pre ka¾dý súbor (musí by» pou¾ité s -l, -c "
 "alebo -d)"
 
-#: ../rpm.c:328
+#: rpm.c:327
 msgid "list capabilities package provides"
 msgstr "zobrazi» schopnosti poskytované balíkom"
 
-#: ../rpm.c:329
+#: rpm.c:328
 msgid "        --requires"
 msgstr "        --requires"
 
-#: ../rpm.c:331
+#: rpm.c:330
 msgid "list package dependencies"
 msgstr "zobrazi» závislosti balíka"
 
-#: ../rpm.c:333
+#: rpm.c:332
 msgid "print the various [un]install scripts"
 msgstr "vypísa» rôzne [od]in¹talaèné skripty"
 
-#: ../rpm.c:335
+#: rpm.c:334
 msgid "show the trigger scripts contained in the package"
 msgstr "zobrazi» spú¹»acie skripty obsiahnuté v balíku"
 
-#: ../rpm.c:339
+#: rpm.c:338
 msgid "    --pipe <cmd>          "
 msgstr "    --pipe <príkaz>       "
 
-#: ../rpm.c:340
+#: rpm.c:339
 msgid "send stdout to <cmd>"
 msgstr "posla» ¹tandardný výstup do <príkazu>"
 
-#: ../rpm.c:342
+#: rpm.c:341
 msgid ""
 "verify a package installation using the same same package specification "
 "options as -q"
@@ -901,19 +652,19 @@ msgstr ""
 "overi» in¹taláciu balíka s pou¾itím rovnakých volieb ¹pecifikácia balíka ako "
 "pre -q"
 
-#: ../rpm.c:348 ../rpm.c:396 ../rpm.c:430
+#: rpm.c:347 rpm.c:395 rpm.c:429
 msgid "do not verify package dependencies"
 msgstr "neoverova» závislosti balíka"
 
-#: ../rpm.c:350
+#: rpm.c:349
 msgid "do not verify file md5 checksums"
 msgstr "neoverova» md5 kontrolné súèty súborov"
 
-#: ../rpm.c:352
+#: rpm.c:351
 msgid "do not verify file attributes"
 msgstr "neoverova» atribúty súborov"
 
-#: ../rpm.c:355
+#: rpm.c:354
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
@@ -921,7 +672,7 @@ msgstr ""
 "nastavi» prístupové práva súborov podµa údajov v databáze balíkov s pou¾itím "
 "rovnakých volieb ¹pecifikácia balíka ako pre -q"
 
-#: ../rpm.c:358
+#: rpm.c:357
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
@@ -929,125 +680,125 @@ msgstr ""
 "nastavi» vlastníka a skupinu súborov podµa údajov v databáze balíkov s "
 "pou¾itím rovnakých volieb ¹pecifikácia balíka ako pre -q"
 
-#: ../rpm.c:362
+#: rpm.c:361
 msgid "    --install <packagefile>"
 msgstr "    --install <súbor_balíku>"
 
-#: ../rpm.c:363
+#: rpm.c:362
 msgid "    -i <packagefile>      "
 msgstr "    -i <súbor_balíku>      "
 
-#: ../rpm.c:364
+#: rpm.c:363
 msgid "install package"
 msgstr "in¹talova» balík"
 
-#: ../rpm.c:365
+#: rpm.c:364
 msgid "      --excludepath <path>"
 msgstr "      --excludepath <cesta>"
 
-#: ../rpm.c:366
+#: rpm.c:365
 msgid "skip files in path <path>"
 msgstr "vynecha» súbory v ceste <cesta>"
 
-#: ../rpm.c:367
+#: rpm.c:366
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr "      --relocate <stará_cesta>=<nová_cesta>"
 
-#: ../rpm.c:368
+#: rpm.c:367
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr "presunú» súbory zo <starej_cesty> do <novej_cesty>"
 
-#: ../rpm.c:370
+#: rpm.c:369
 msgid "relocate files even though the package doesn't allow it"
 msgstr "presunú» súbory napriek tomu, ¾e to balík nedovoµuje"
 
-#: ../rpm.c:371
+#: rpm.c:370
 msgid "      --prefix <dir>      "
 msgstr "      --prefix <adresár>  "
 
-#: ../rpm.c:372
+#: rpm.c:371
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "presunú» balík do <adresára>, pokiaµ to balík povoµuje"
 
-#: ../rpm.c:376
+#: rpm.c:375
 msgid "do not install documentation"
 msgstr "nein¹talova» dokumentáciu"
 
-#: ../rpm.c:378
+#: rpm.c:377
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "skratka pre --replacepkgs --replacefiles"
 
-#: ../rpm.c:381
+#: rpm.c:380
 msgid "print hash marks as package installs (good with -v)"
 msgstr "vypisova» znaèky poèas in¹talácie balíka (vhodné s -v)"
 
-#: ../rpm.c:383
+#: rpm.c:382
 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é"
 
-#: ../rpm.c:386
+#: rpm.c:385
 msgid "don't verify package architecture"
 msgstr "neoverova» architektúru balíka"
 
-#: ../rpm.c:388
+#: rpm.c:387
 msgid "don't check disk space before installing"
 msgstr "pred in¹taláciou nekontrolova» dostupné miesto na disku"
 
-#: ../rpm.c:390
+#: rpm.c:389
 msgid "don't verify package operating system"
 msgstr "neoverova» operaèný systém balíka"
 
-#: ../rpm.c:392
+#: rpm.c:391
 msgid "install documentation"
 msgstr "in¹talova» dokumentáciu"
 
-#: ../rpm.c:394 ../rpm.c:428
+#: rpm.c:393 rpm.c:427
 msgid "update the database, but do not modify the filesystem"
 msgstr "aktualizova» databázu bez zmeny súborového systému"
 
-#: ../rpm.c:398 ../rpm.c:432
+#: rpm.c:397 rpm.c:431
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "nemeni» poradie balíkov kvôli vyrie¹eniu závislostí"
 
-#: ../rpm.c:400
+#: rpm.c:399
 msgid "don't execute any installation scripts"
 msgstr "nevykona» ¾iadne in¹talaèné skripty"
 
-#: ../rpm.c:402 ../rpm.c:436
+#: rpm.c:401 rpm.c:435
 msgid "don't execute any scripts triggered by this package"
 msgstr "nevykona» ¾iadne skripty spú¹»ané týmto balíkom"
 
-#: ../rpm.c:404
+#: rpm.c:403
 msgid "print percentages as package installs"
 msgstr "vypisova» percentá poèas in¹talácie balíka"
 
-#: ../rpm.c:406
+#: rpm.c:405
 msgid "install even if the package replaces installed files"
 msgstr "in¹talova» aj pokiaµ balík prepí¹e in¹talované súbory"
 
-#: ../rpm.c:408
+#: rpm.c:407
 msgid "reinstall if the package is already present"
 msgstr "prein¹talova», pokiaµ u¾ balík existuje"
 
-#: ../rpm.c:412
+#: rpm.c:411
 msgid "don't install, but tell if it would work or not"
 msgstr "nein¹talova», ale oznámi», èi by to bolo mo¾né"
 
-#: ../rpm.c:414
+#: rpm.c:413
 msgid "    --upgrade <packagefile>"
 msgstr "    --upgrade <súbor_balíka>"
 
-#: ../rpm.c:415
+#: rpm.c:414
 msgid "    -U <packagefile>      "
 msgstr "    -U <súbor_balíka>     "
 
-#: ../rpm.c:416
+#: rpm.c:415
 msgid "upgrade package (same options as --install, plus)"
 msgstr "aktualizova» balík (rovnaké voµby ako --install, a k tomu)"
 
-#: ../rpm.c:418
+#: rpm.c:417
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1055,15 +806,15 @@ msgstr ""
 "aktualizova» na star¹iu verziu balíka (--force to pri aktualizácii urobí "
 "automaticky)"
 
-#: ../rpm.c:420
+#: rpm.c:419
 msgid "    --erase <package>"
 msgstr "    --erase <package>"
 
-#: ../rpm.c:422
+#: rpm.c:421
 msgid "erase (uninstall) package"
 msgstr "odin¹talova» balík"
 
-#: ../rpm.c:424
+#: rpm.c:423
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1071,88 +822,88 @@ msgstr ""
 "odin¹talova» v¹etky balíky urèené <balíkom> (inak je chybou, pokiaµ <balík> "
 "¹pecifikuje viac ako jeden balík)"
 
-#: ../rpm.c:434
+#: rpm.c:433
 msgid "do not execute any package specific scripts"
 msgstr "nevykona» ¾iadne skripty ¹pecifikované balíkom"
 
-#: ../rpm.c:440
+#: rpm.c:439
 msgid "    -b<stage> <spec>      "
 msgstr "    -b<etapa> <spec>      "
 
-#: ../rpm.c:441
+#: rpm.c:440
 msgid "    -t<stage> <tarball>   "
 msgstr "    -t<etapa> <tar_súbor> "
 
-#: ../rpm.c:442
+#: rpm.c:441
 msgid "build package, where <stage> is one of:"
 msgstr "zostavi» balík, kde <etapa> je jedna z:"
 
-#: ../rpm.c:444
+#: rpm.c:443
 msgid "prep (unpack sources and apply patches)"
 msgstr "príprava (rozbali» zdrojové súbory a aplikova» záplaty)"
 
-#: ../rpm.c:446
+#: rpm.c:445
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr "kontrola zoznamu (vykona» niektoré zbe¾né kontroly sekcie %files)"
 
-#: ../rpm.c:448
+#: rpm.c:447
 msgid "compile (prep and compile)"
 msgstr "kompilácia (príprava a kompilácia)"
 
-#: ../rpm.c:450
+#: rpm.c:449
 msgid "install (prep, compile, install)"
 msgstr "in¹talácia (príprava, kompilácia, in¹talácia)"
 
-#: ../rpm.c:452
+#: rpm.c:451
 msgid "binary package (prep, compile, install, package)"
 msgstr "binárny balík (príprava, kompilácia, in¹talácia, zabalenie)"
 
-#: ../rpm.c:454
+#: rpm.c:453
 msgid "bin/src package (prep, compile, install, package)"
 msgstr "binárny a zdrojový balík (príprava, kompilácia, in¹talácia, zabalenie)"
 
-#: ../rpm.c:460
+#: rpm.c:459
 msgid "remove sources and spec file when done"
 msgstr "po ukonèení odstráni» zdrojové súbory a spec-súbor"
 
-#: ../rpm.c:462
+#: rpm.c:461
 msgid "generate PGP/GPG signature"
 msgstr "vytvori» PGP/GPG podpis"
 
-#: ../rpm.c:463
+#: rpm.c:462
 msgid "      --buildroot <dir>   "
 msgstr "      --buildroot <adresár>   "
 
-#: ../rpm.c:464
+#: rpm.c:463
 msgid "use <dir> as the build root"
 msgstr "pou¾i» <adresár> pre zostavenie balíka"
 
-#: ../rpm.c:465
+#: rpm.c:464
 msgid "      --target=<platform>+"
 msgstr "      --target=<platforma>+"
 
-#: ../rpm.c:466
+#: rpm.c:465
 msgid "build the packages for the build targets platform1...platformN."
 msgstr "vytvori» balíky pre ciele platforma1...platformaN."
 
-#: ../rpm.c:468
+#: rpm.c:467
 msgid "do not execute any stages"
 msgstr "nevykona» ¾iadne etapy"
 
-#: ../rpm.c:469
+#: rpm.c:468
 msgid "      --timecheck <secs>  "
 msgstr "      --timecheck <sekúnd>"
 
-#: ../rpm.c:470
+#: rpm.c:469
 msgid "set the time check to <secs> seconds (0 disables)"
 msgstr "nastavi» kontrolu èasu na <sekúnd> sekúnd (0 pre deaktiváciu)"
 
-#: ../rpm.c:472
+#: rpm.c:471
 msgid "    --rebuild <src_pkg>   "
 msgstr "    --rebuild <zdroj_balík>"
 
-#: ../rpm.c:473
+#: rpm.c:472
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -1160,220 +911,224 @@ msgstr ""
 "in¹talova» zdrojový balík, vytvori» binárny balík a odstráni» spec-súbor, "
 "zdroje, záplaty a ikony"
 
-#: ../rpm.c:474
+#: rpm.c:473
 msgid "    --rmsource <spec>     "
 msgstr "    --rmsource <spec>     "
 
-#: ../rpm.c:475
+#: rpm.c:474
 msgid "remove sources and spec file"
 msgstr "odstráni» zdroje a spec-súbor"
 
-#: ../rpm.c:476
+#: rpm.c:475
 msgid "    --recompile <src_pkg> "
 msgstr "    --recompile <src_pkg> "
 
-#: ../rpm.c:477
+#: rpm.c:476
 msgid "like --rebuild, but don't build any package"
 msgstr "ako --rebuild, ale nezostavi» ¾iadny balík"
 
-#: ../rpm.c:478
+#: rpm.c:477
 msgid "    --resign <pkg>+       "
 msgstr "    --resign <balík>+     "
 
-#: ../rpm.c:479
+#: rpm.c:478
 msgid "sign a package (discard current signature)"
 msgstr "podpísa» balík (znièi» aktuálny podpis)"
 
-#: ../rpm.c:480
+#: rpm.c:479
 msgid "    --addsign <pkg>+      "
 msgstr "    --addsign <balík>+    "
 
-#: ../rpm.c:481
+#: rpm.c:480
 msgid "add a signature to a package"
 msgstr "prida» podpis balíku"
 
-#: ../rpm.c:483
+#: rpm.c:482
 msgid "    --checksig <pkg>+     "
 msgstr "    --checksig <balík>+   "
 
-#: ../rpm.c:484
+#: rpm.c:483
 msgid "verify package signature"
 msgstr "overi» podpis balíka"
 
-#: ../rpm.c:486
+#: rpm.c:485
 msgid "skip any PGP signatures"
 msgstr "vynecha» akékoµvek PGP podpisy"
 
-#: ../rpm.c:488
+#: rpm.c:487
 msgid "skip any GPG signatures"
 msgstr "vynecha» akékoµvek GPG podpisy"
 
-#: ../rpm.c:490
+#: rpm.c:489
 msgid "skip any MD5 signatures"
 msgstr "vynecha» akékoµvek MD5 podpisy"
 
-#: ../rpm.c:492
+#: rpm.c:491
 msgid "list the tags that can be used in a query format"
 msgstr "vypísa» príznaky, ktoré mô¾u by» pou¾ité vo formáte otázky"
 
-#: ../rpm.c:494
+#: rpm.c:493
 msgid "make sure a valid database exists"
 msgstr "uisti» sa, ¾e existuje platná databáza"
 
-#: ../rpm.c:496
+#: rpm.c:495
 msgid "rebuild database from existing database"
 msgstr "znovu vytvori» databázu z existujúcej"
 
-#: ../rpm.c:631 ../rpm.c:637 ../rpm.c:644 ../rpm.c:650 ../rpm.c:659
-#: ../rpm.c:666 ../rpm.c:713 ../rpm.c:719 ../rpm.c:779 ../rpm.c:787
-#: ../rpm.c:794 ../rpm.c:803 ../rpm.c:810 ../rpm.c:818 ../rpm.c:854
-#: ../rpm.c:909 ../rpm.c:916
+#: rpm.c:639 rpm.c:645 rpm.c:652 rpm.c:658 rpm.c:667 rpm.c:674 rpm.c:721
+#: rpm.c:727 rpm.c:761 rpm.c:767 rpm.c:773 rpm.c:781 rpm.c:816 rpm.c:871
+#: rpm.c:878
 msgid "only one major mode may be specified"
 msgstr "mô¾e by» pou¾itý iba jeden hlavný re¾im"
 
-#: ../rpm.c:652
+#: rpm.c:660
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr "-u a --uninstall sú zastaralé a u¾ nefungujú.\n"
 
-#: ../rpm.c:654
+#: rpm.c:662
 msgid "Use -e or --erase instead.\n"
 msgstr "Namiesto nich pou¾ite -e alebo --erase.\n"
 
-#: ../rpm.c:670
+#: rpm.c:678
 msgid "--build (-b) requires one of a,b,i,c,p,l as its sole argument"
 msgstr "--build (-b) vy¾aduje jedno z a,b,i,c,p,l ako jediný argument"
 
-#: ../rpm.c:674
+#: rpm.c:682
 msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
 msgstr "--tarbuild (-t) vy¾aduje jedno z a,b,i,c,p,l ako jediný argument"
 
-#: ../rpm.c:726 ../rpm.c:732 ../rpm.c:739 ../rpm.c:746 ../rpm.c:755
-#: ../rpm.c:763 ../rpm.c:771 ../rpm.c:923
+#: rpm.c:734 rpm.c:740 rpm.c:747 rpm.c:754 rpm.c:885
 msgid "one type of query/verify may be performed at a time"
 msgstr "naraz mô¾e by» vykonaný jeden typ otázky alebo overenia"
 
-#: ../rpm.c:826
+#: rpm.c:789
 msgid "arguments to --dbpath must begin with a /"
 msgstr "argumenty pre --dbpath musia zaèína» /"
 
-#: ../rpm.c:860
+#: rpm.c:822
 msgid "relocations must begin with a /"
 msgstr "presunutia musia zaèína» znakom /"
 
-#: ../rpm.c:862
+#: rpm.c:824
 msgid "relocations must contain a ="
 msgstr "presunutia musia obsahova» znak ="
 
-#: ../rpm.c:865
+#: rpm.c:827
 msgid "relocations must have a / following the ="
 msgstr "presunutia musia ma» za znakom = znak /"
 
-#: ../rpm.c:874
+#: rpm.c:836
 msgid "exclude paths must begin with a /"
 msgstr "vynechané cesty musia zaèína» znakom /"
 
-#: ../rpm.c:883
+#: rpm.c:845
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "Vnútorná chyba pri spracovaní argumentu (%d) :-(\n"
 
-#: ../rpm.c:936
+#: rpm.c:898
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath zadané pre operáciu nepou¾ívajúcu databázu"
 
-#: ../rpm.c:941
+#: rpm.c:903
 msgid "--timecheck may only be used during package builds"
 msgstr "--timecheck mô¾e by» pou¾ité iba pri zostavovaní balíka"
 
-#: ../rpm.c:944 ../rpm.c:947
-msgid "unexpected query specifiers"
-msgstr "neoèakávané ¹pecifikátory otázky"
+#: rpm.c:906
+#, fuzzy
+msgid "unexpected query flags"
+msgstr "neoèakávaný zdroj pre otázku"
+
+#: rpm.c:909
+#, fuzzy
+msgid "unexpected query format"
+msgstr "neoèakávaný zdroj pre otázku"
 
-#: ../rpm.c:951
+#: rpm.c:913
 msgid "unexpected query source"
 msgstr "neoèakávaný zdroj pre otázku"
 
-#: ../rpm.c:957
+#: rpm.c:919
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "iba in¹talácia, aktualizácia a odstránenie zdrojov mô¾u by» vynútené"
 
-#: ../rpm.c:960
+#: rpm.c:922
 msgid "files may only be relocated during package installation"
 msgstr "súbory mô¾u by» presunuté iba poèas inètalácie balíka"
 
-#: ../rpm.c:963
+#: rpm.c:925
 msgid "only one of --prefix or --relocate may be used"
 msgstr "mo¾e by» pou¾itá iba jedna z volieb --prefix a --relocate"
 
-#: ../rpm.c:966
+#: rpm.c:928
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 "--relocate a --excludepath mô¾u by» pou¾ité iba poèas in¹talácie nových "
 "balíkov"
 
-#: ../rpm.c:969
+#: rpm.c:931
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix mô¾e by» pou¾itý iba poèas in¹talácie nových balíkov"
 
-#: ../rpm.c:972
+#: rpm.c:934
 msgid "arguments to --prefix must begin with a /"
 msgstr "argumenty pre --prefix musia zaèína» znakom /"
 
-#: ../rpm.c:975
+#: rpm.c:937
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) mô¾e by» pou¾itý iba poèas in¹talácie balíka"
 
-#: ../rpm.c:979
+#: rpm.c:941
 msgid "--percent may only be specified during package installation"
 msgstr "--percent mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: ../rpm.c:983
+#: rpm.c:945
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: ../rpm.c:987
+#: rpm.c:949
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: ../rpm.c:991
+#: rpm.c:953
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: ../rpm.c:995
+#: rpm.c:957
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: ../rpm.c:999
+#: rpm.c:961
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "mô¾e by» pou¾itá iba jedna voµba z --excludedocs a --includedocs"
 
-#: ../rpm.c:1003
+#: rpm.c:965
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: ../rpm.c:1007
+#: rpm.c:969
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: ../rpm.c:1011
+#: rpm.c:973
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoresize mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: ../rpm.c:1015
+#: rpm.c:977
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches mô¾e by» pou¾ité iba poèas odstránenia balíkov"
 
-#: ../rpm.c:1019
+#: rpm.c:981
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: ../rpm.c:1023
+#: rpm.c:985
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr "--justdb mô¾e by» pou¾ité iba poèas in¹talácie a odstránenia balíka"
 
-#: ../rpm.c:1028
+#: rpm.c:990
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -1381,7 +1136,7 @@ msgstr ""
 "--noscripts mô¾e by» pou¾ité iba poèas in¹talácie, odstránenia alebo "
 "overenia balíka"
 
-#: ../rpm.c:1032
+#: rpm.c:994
 msgid ""
 "--notriggers may only be specified during package installation, erasure, and "
 "verification"
@@ -1389,7 +1144,7 @@ msgstr ""
 "--notriggers mô¾e by» pou¾ité iba poèas in¹talácie, odstránenia alebo "
 "overenia balíka"
 
-#: ../rpm.c:1038
+#: rpm.c:1000
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, installation, "
@@ -1398,11 +1153,7 @@ msgstr ""
 "--nodeps mô¾e by» pou¾ité iba poèas in¹talácie, odstránenia alebo overenia "
 "balíka"
 
-#: ../rpm.c:1043
-msgid "--nofiles may only be specified during package verification"
-msgstr "--nofiles mô¾e by» pou¾ité iba poèas overenia balíka"
-
-#: ../rpm.c:1049
+#: rpm.c:1005
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
@@ -1410,7 +1161,7 @@ msgstr ""
 "--test mô¾e by» pou¾ité iba poèas in¹talácie, odstránenia alebo zostavenia "
 "balíka"
 
-#: ../rpm.c:1054
+#: rpm.c:1010
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -1418,1625 +1169,1801 @@ msgstr ""
 "--root (-r) mô¾e by» pou¾ité iba poèas in¹talácie a odstránenia balíka, "
 "otázky alebo znovuzostavenia databázy"
 
-#: ../rpm.c:1059
+#: rpm.c:1015
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "argumenty pre --root (-r) musia zaèína» znakom /"
 
-#: ../rpm.c:1063
-msgid "--clean may only be used with -b and -t"
-msgstr "--clean mô¾e by» pou¾ité iba s -b a -t"
-
-#: ../rpm.c:1066
-msgid "--rmsource may only be used with -b and -t"
-msgstr "--rmsource mô¾e by» pou¾ité iba s -b a -t"
-
-#: ../rpm.c:1069
-msgid "--short-circuit may only be used during package building"
-msgstr "--short-circuit mô¾e by» pou¾ité iba poèas zostavenia balíka"
-
-#: ../rpm.c:1073
-msgid "--short-circuit may only be used with -bc, -bi, -bs, -tc -ti, or -ts"
-msgstr ""
-"--short-circuit mô¾e by» pou¾ité iba s -bc, -bi, -bs, -tc -ti alebo -ts"
-
-#: ../rpm.c:1079
+#: rpm.c:1018
 msgid "--oldpackage may only be used during upgrades"
 msgstr "--oldpackage mô¾e by» pou¾íté iba poèas aktualizácie"
 
-#: ../rpm.c:1084
+#: rpm.c:1023
 msgid ""
 "ftp options can only be used during package queries, installs, and upgrades"
 msgstr ""
 "ftp voµby mô¾e by» pou¾íté iba poèas otázok, in¹talácie alebo aktualizácie"
 
-#: ../rpm.c:1090
+#: rpm.c:1029
 msgid ""
 "http options can only be used during package queries, installs, and upgrades"
 msgstr ""
 "http voµby mô¾e by» pou¾íté iba poèas otázok, in¹talácie alebo aktualizácie"
 
-#: ../rpm.c:1094
+#: rpm.c:1033
 msgid "--nopgp may only be used during signature checking"
 msgstr "--nopgp mô¾e by» pou¾íté iba poèas overenia podpisu"
 
-#: ../rpm.c:1097
+#: rpm.c:1036
 msgid "--nogpg may only be used during signature checking"
 msgstr "--nogpg mô¾e by» pou¾íté iba poèas overenia podpisu"
 
-#: ../rpm.c:1100
+#: rpm.c:1039
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr "--nomd5 mô¾e by» pou¾íté iba poèas overenia podpisu alebo balíka"
 
-#: ../rpm.c:1126
+#: rpm.c:1063
+msgid "no files to sign\n"
+msgstr ""
+
+#: rpm.c:1068
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "nie je mo¾né pracova» so súborom %s\n"
 
-#: ../rpm.c:1143
+#: rpm.c:1083
 msgid "pgp not found: "
 msgstr "pgp nebolo nájdené: "
 
-#: ../rpm.c:1146
-msgid "Use `%%_signature pgp5' instead of `%%_signature pgp' in macro file.\n"
-msgstr ""
-"Pou¾ite `%%_signature pgp5' namiesto `%%_signature pgp' v makro-súbore.\n"
-
-#: ../rpm.c:1153
-msgid "pgp version 5 not found: "
-msgstr "pgp verzie 5 nebolo nájdené: "
-
-#: ../rpm.c:1156
-msgid "Use `%%_signature pgp' instead of `%%_signature pgp5' in macro file.\n"
-msgstr ""
-"Pou¾ite `%%_signature pgp' namiesto `%%_signature pgp5' v makro-súbore.\n"
-
-#: ../rpm.c:1162
+#: rpm.c:1087
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: ../rpm.c:1163
+#: rpm.c:1089
 msgid "Pass phrase check failed\n"
 msgstr "Kontrola hesla zlyhala\n"
 
-#: ../rpm.c:1166
+#: rpm.c:1092
 msgid "Pass phrase is good.\n"
 msgstr "Heslo je v poriadku.\n"
 
-#: ../rpm.c:1173
+#: rpm.c:1097
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "Chybná ¹pecifikácia %%_signature v makro-súbore.\n"
 
-#: ../rpm.c:1178
+#: rpm.c:1103
 msgid "--sign may only be used during package building"
 msgstr "--sign mô¾e by» pou¾íté iba poèas zostavenia balíka"
 
-#: ../rpm.c:1195
+#: rpm.c:1118
 msgid "exec failed\n"
 msgstr "vykonanie zlyhalo\n"
 
-#: ../rpm.c:1214
+#: rpm.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr "neoèakávané argumenty pre --querytags"
 
-#: ../rpm.c:1225
+#: rpm.c:1148
 msgid "no packages given for signature check"
 msgstr "neboli zadané ¾iadne balíky pre overenie podpisu"
 
-#: ../rpm.c:1233
+#: rpm.c:1160
 msgid "no packages given for signing"
 msgstr "neboli zadané ¾iadne balíky na podpis"
 
-#: ../rpm.c:1242
+#: rpm.c:1173
 msgid "no packages files given for rebuild"
 msgstr "neboli zadané ¾iadne balíky pre znovuzostavenie"
 
-#: ../rpm.c:1299
+#: rpm.c:1230
 msgid "no spec files given for build"
 msgstr "neboli zadané ¾iadne spec-súbory pre zostavenie"
 
-#: ../rpm.c:1301
+#: rpm.c:1232
 msgid "no tar files given for build"
 msgstr "neboli zadané ¾iadne tar-súbory pre zostavenie"
 
-#: ../rpm.c:1313
+#: rpm.c:1244
 msgid "no packages given for uninstall"
 msgstr "neboli zadané ¾iadne balíky pre odin¹talovanie"
 
-#: ../rpm.c:1362
+#: rpm.c:1294
 msgid "no packages given for install"
 msgstr "neboli zadané ¾iadne balíky pre in¹taláciu"
 
-#: ../rpm.c:1385
+#: rpm.c:1317
 msgid "extra arguments given for query of all packages"
 msgstr "boli zadané nadbytoèné argumenty otázky pre v¹etky balíky"
 
-#: ../rpm.c:1390
+#: rpm.c:1322
 msgid "no arguments given for query"
 msgstr "neboli zadané ¾iadne argumenty pre otázku"
 
-#: ../rpm.c:1411
+#: rpm.c:1339
 #, fuzzy
 msgid "extra arguments given for verify of all packages"
 msgstr "boli zadané nadbytoèné argumenty otázky pre v¹etky balíky"
 
-#: ../rpm.c:1415
+#: rpm.c:1343
 msgid "no arguments given for verify"
 msgstr "neboli zadané ¾iadne argumenty pre overenie"
 
-#: ../rpm2cpio.c:42
+#: rpm2cpio.c:34
 msgid "argument is not an RPM package\n"
 msgstr "argument nie je RPM balík\n"
 
-#: ../rpm2cpio.c:46
+#: rpm2cpio.c:38
 msgid "error reading header from package\n"
 msgstr "chyba pri èítaní hlavièky balíka\n"
 
-#: ../url.c:136
-#, c-format
-msgid "Password for %s@%s: "
-msgstr "Heslo pre %s@%s: "
-
-#: ../url.c:160 ../url.c:186
-#, c-format
-msgid "error: %sport must be a number\n"
-msgstr "chyba: %sport musí by» èíslo\n"
-
-#: ../url.c:271
-msgid "url port must be a number\n"
-msgstr "url port musí by» èíslo\n"
-
-#. XXX PARANOIA
-#: ../url.c:308
-#, c-format
-msgid "logging into %s as %s, pw %s\n"
-msgstr "prihlasuje sa na %s ako %s, heslo %s\n"
-
-#: ../lib/rpmdb.c:169 ../url.c:422
-#, c-format
-msgid "failed to open %s\n"
-msgstr "otvorenie %s zlyhalo\n"
-
-#: ../url.c:437
-#, c-format
-msgid "failed to create %s\n"
-msgstr "nepodarilo sa vytvori» %s\n"
-
-#: ../build/build.c:83 ../build/pack.c:248
+#: build/build.c:83 build/pack.c:263
 msgid "Unable to open temp file"
 msgstr "Nie je mo¾né otvori» doèasný súbor"
 
-#: ../build/build.c:122
+#: build/build.c:124
 #, c-format
 msgid "Executing: %s\n"
 msgstr "Vykonáva sa: %s\n"
 
-#: ../build/build.c:126
+#: build/build.c:128
 #, c-format
 msgid "Exec of %s failed (%s)"
 msgstr "Vykonanie %s zlyhalo (%s)"
 
-#: ../build/build.c:136
+#: build/build.c:138
 #, c-format
 msgid "Bad exit status from %s (%s)"
 msgstr "Chybný výstupný kód z %s (%s)"
 
-#: ../build/expression.c:189 ../build/expression.c:198
-msgid "parse error in tokenizer"
-msgstr "chyba pri analýze (parse error in tokenizer)"
+#: build/expression.c:208
+#, fuzzy
+msgid "syntax error while parsing =="
+msgstr "chyba syntaxe vo výraze"
+
+#: build/expression.c:238
+#, fuzzy
+msgid "syntax error while parsing &&"
+msgstr "chyba syntaxe vo výraze"
+
+#: build/expression.c:247
+#, fuzzy
+msgid "syntax error while parsing ||"
+msgstr "chyba syntaxe vo výraze"
 
-#: ../build/expression.c:240
+#: build/expression.c:289
 msgid "parse error in expression"
 msgstr "chyba pri analýze výrazu"
 
-#: ../build/expression.c:270
+#: build/expression.c:319
 msgid "unmatched ("
 msgstr "nepárová ("
 
-#: ../build/expression.c:288
+#: build/expression.c:337
 msgid "undefined identifier"
 msgstr "nedefinovaný identifikátor"
 
-#: ../build/expression.c:307
+#: build/expression.c:356
 msgid "- only on numbers"
 msgstr "- ibe pre èísla"
 
-#: ../build/expression.c:323
+#: build/expression.c:372
 msgid "! only on numbers"
 msgstr "! iba pre èísla"
 
-#: ../build/expression.c:362 ../build/expression.c:407
-#: ../build/expression.c:464 ../build/expression.c:551
+#: build/expression.c:411 build/expression.c:456 build/expression.c:513
+#: build/expression.c:600
 msgid "types must match"
 msgstr "typy sa musia zhodova»"
 
-#: ../build/expression.c:375
+#: build/expression.c:424
 msgid "* / not suported for strings"
 msgstr "* / nie sú podporované pre re»azce"
 
-#: ../build/expression.c:423
+#: build/expression.c:472
 msgid "- not suported for strings"
 msgstr "- nie je podporované pre re»azce"
 
-#: ../build/expression.c:564
+#: build/expression.c:613
 msgid "&& and || not suported for strings"
 msgstr "&& a || nie sú podporované pre re»azce"
 
-#: ../build/expression.c:595 ../build/expression.c:640
+#: build/expression.c:644 build/expression.c:689
 msgid "syntax error in expression"
 msgstr "chyba syntaxe vo výraze"
 
-#: ../build/files.c:220
+#: build/files.c:224
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr "chyba PREKROÈENIA ÈASU: %s\n"
 
-#: ../build/files.c:265 ../build/files.c:277 ../build/files.c:346
-#: ../build/files.c:358 ../build/files.c:389
-#, c-format
-msgid "Bad %s() syntax: %s"
-msgstr "Chybná %s() syntax: %s"
+#: build/files.c:267 build/files.c:349 build/files.c:512
+#, fuzzy, c-format
+msgid "Missing '(' in %s %s"
+msgstr "chýbajúce    %s\n"
 
-#: ../build/files.c:307
-#, c-format
-msgid "Invalid %s token: %s"
-msgstr "Chybný %s prvok: %s"
-
-#: ../build/files.c:369
-msgid "No files after %%defattr(): %s"
-msgstr "®iadne súbory po %%defattr(): %s"
+#: build/files.c:278 build/files.c:466 build/files.c:523
+#, fuzzy, c-format
+msgid "Missing ')' in %s(%s"
+msgstr "chýbajúca ':' na %s:%d"
 
-#: ../build/files.c:399
+#: build/files.c:316 build/files.c:491
 #, c-format
-msgid "Bad %s() mode spec: %s"
-msgstr "Chybná ¹pecifikácia práv %s(): %s"
+msgid "Invalid %s token: %s"
+msgstr "Chybný %s prvok: %s"
 
-#: ../build/files.c:411
+#: build/files.c:365
 #, c-format
-msgid "Bad %s() dirmode spec: %s"
-msgstr "Chybná ¹pecifikácia práv adresára %s(): %s"
-
-#: ../build/files.c:462
-msgid "Bad %%config() syntax: %s"
-msgstr "Chybná syntax %%config(): %s"
+msgid "Non-white space follows %s(): %s"
+msgstr ""
 
-#: ../build/files.c:480
-msgid "Invalid %%config token: %s"
-msgstr "Chybný %%config prvok: %s"
+#: build/files.c:403
+#, fuzzy, c-format
+msgid "Bad syntax: %s(%s)"
+msgstr "Chybná %s() syntax: %s"
 
-#: ../build/files.c:503 ../build/files.c:515 ../build/files.c:528
-msgid "Bad %%lang() syntax: %s"
-msgstr "Chybná syntax %%lang(): %s"
+#: build/files.c:413
+#, fuzzy, c-format
+msgid "Bad mode spec: %s(%s)"
+msgstr "Chybná ¹pecifikácia práv %s(): %s"
 
-#: ../build/files.c:534
-msgid "%%lang() entries are 2 characters: %s"
-msgstr "Záznamy %%lang() sú dvojznakové: %s"
+#: build/files.c:425
+#, fuzzy, c-format
+msgid "Bad dirmode spec: %s(%s)"
+msgstr "Chybná ¹pecifikácia práv adresára %s(): %s"
 
-#: ../build/files.c:540
-msgid "Only one entry in %%lang(): %s"
+#: build/files.c:549
+#, fuzzy
+msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
 msgstr "Iba jeden záznam v %%lang(): %s"
 
-#: ../build/files.c:620
+#: build/files.c:559
+msgid "Duplicate locale %.*s in %%lang(%s)"
+msgstr ""
+
+#: build/files.c:651
 msgid "Hit limit for %%docdir"
 msgstr "Dosiahnutý limit pre %%docdir"
 
-#: ../build/files.c:626
+#: build/files.c:657
 msgid "Only one arg for %%docdir"
 msgstr "Iba jeden argument pre %%docdir"
 
 #. We already got a file -- error
-#: ../build/files.c:651
+#: build/files.c:682
 #, c-format
 msgid "Two files on one line: %s"
 msgstr "Dva súbory na riadku: %s"
 
-#: ../build/files.c:664
+#: build/files.c:695
 #, c-format
 msgid "File must begin with \"/\": %s"
 msgstr "Súbory musia zaèína» znakom \"/\": %s"
 
-#: ../build/files.c:676
+#: build/files.c:707
 msgid "Can't mix special %%doc with other forms: %s"
 msgstr "Nie je mo¾né mie¹a» ¹peciálne %%doc s inými formami: %s"
 
-#: ../build/files.c:764
+#: build/files.c:792
 #, c-format
 msgid "File listed twice: %s"
 msgstr "Súbor zadaný dvakrát: %s."
 
-#: ../build/files.c:916
+#: build/files.c:952
 #, c-format
 msgid "File doesn't match prefix (%s): %s"
 msgstr "Súbor nesúhlasí s prefixom (%s): %s."
 
-#: ../build/files.c:926 ../build/files.c:1049
+#: build/files.c:962 build/files.c:1099
 #, c-format
 msgid "File not found: %s"
 msgstr "Súbor nebol nájdený: %s"
 
-#: ../build/files.c:969
+#: build/files.c:1005
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr "Chybný vlastník/skupina: %s\n"
 
-#: ../build/files.c:983
+#: build/files.c:1019
 #, c-format
 msgid "File %4d: 0%o %s.%s\t %s\n"
 msgstr "Súbor %4d: 0%o %s.%s\t %s\n"
 
-#: ../build/files.c:1033
+#: build/files.c:1083
 #, c-format
 msgid "File needs leading \"/\": %s"
 msgstr "Súbor potrebuje na zaèiatku \"/\": %s"
 
-#: ../build/files.c:1090
+#: build/files.c:1140
 msgid "Could not open %%files file: %s"
 msgstr "chybe: nie je mo¾né otvori» %%files súbor: %s"
 
-#: ../build/files.c:1097 ../build/pack.c:433
+#: build/files.c:1147 build/pack.c:484
 #, c-format
 msgid "line: %s"
 msgstr "riadok: %s"
 
-#: ../build/files.c:1394 ../build/parsePrep.c:31
+#: build/files.c:1469 build/parsePrep.c:29
 #, c-format
 msgid "Bad owner/group: %s"
 msgstr "Chybný vlastník/skupina: %s"
 
-#: ../build/files.c:1448
+#: build/files.c:1522
 #, c-format
 msgid "Couldn't exec %s"
 msgstr "Nie je mo¾né spusti» %s"
 
-#: ../build/files.c:1452
+#: build/files.c:1526
 #, c-format
 msgid "Couldn't fork %s"
 msgstr "Nie je mo¾né vytvori» proces %s"
 
-#: ../build/files.c:1502
+#: build/files.c:1605
 #, c-format
 msgid "%s failed"
 msgstr "%s zlyhalo"
 
-#: ../build/files.c:1506
+#: build/files.c:1609
 #, c-format
 msgid "failed to write all data to %s"
 msgstr "nepodarilo sa zapísa» v¹etky dáta do %s"
 
-#: ../build/files.c:1540
-msgid "Finding provides...\n"
-msgstr "Zis»ujú sa poskytované vlastnosti...\n"
-
-#: ../build/files.c:1547
-msgid "Failed to find provides"
-msgstr "Nepodarilo sa zisti» poskytované vlastnosti"
-
-#: ../build/files.c:1566
-msgid "Finding requires...\n"
+#: build/files.c:1695
+#, fuzzy, c-format
+msgid "Finding  %s: (using %s)...\n"
 msgstr "Zis»ujú sa po¾adované vlastnosti...\n"
 
-#: ../build/files.c:1573
-msgid "Failed to find requires"
-msgstr "Nepodarilo sa zisti» po¾adované vlastnosti"
-
-#: ../build/files.c:1607
-msgid "Provides:"
-msgstr "Poskytuje:"
-
-#: ../build/files.c:1622
-msgid "Prereqs:"
-msgstr "Predpoklady:"
-
-#: ../build/files.c:1634
-msgid "Requires:"
-msgstr "Po¾aduje:"
+#: build/files.c:1723 build/files.c:1732
+#, fuzzy, c-format
+msgid "Failed to find %s:"
+msgstr "Nepodarilo sa zisti» poskytované vlastnosti"
 
-#: ../build/files.c:1658
+#: build/files.c:1838
 #, c-format
 msgid "Processing files: %s\n"
 msgstr "Spracovávajú sa súbory: %s\n"
 
-#: ../build/names.c:32 ../build/names.c:64
+#: build/names.c:32 build/names.c:64
 msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
 msgstr "RPMERR_INTERNAL: Dosiahnutý limit v getUname()\n"
 
-#: ../build/names.c:97 ../build/names.c:129
+#: build/names.c:97 build/names.c:129
 msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
 msgstr "RPMERR_INTERNAL: Dosiahnutý limit v getGname()\n"
 
-#: ../build/names.c:167
+#: build/names.c:167
 #, c-format
 msgid "Could not canonicalize hostname: %s\n"
 msgstr "Nie je mo¾né kanonizova» názov poèítaèa: %s\n"
 
-#: ../build/pack.c:134
+#: build/pack.c:131
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr "Nie je mo¾né vytvori» meno výstupného súboru pre balík %s: %s\n"
 
-#: ../build/pack.c:167
+#: build/pack.c:148
+#, fuzzy, c-format
+msgid "cannot create %s: %s\n"
+msgstr "nie je mo¾né zapísa» do %s: "
+
+#: build/pack.c:183
 #, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "readRPM: otvorenie %s: %s\n"
 
-#: ../build/pack.c:177
+#: build/pack.c:193
 #, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "readRPM: èítanie %s: %s\n"
 
-#: ../build/pack.c:197
+#: build/pack.c:213
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr "readRPM: %s nie je RPM balík\n"
 
-#: ../build/pack.c:203
+#: build/pack.c:219
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr "readRPM: èítanie hlavièky %s\n"
 
-#: ../build/pack.c:259
+#: build/pack.c:274
 msgid "Bad CSA data"
 msgstr "Chybné CSA dáta"
 
-#: ../build/pack.c:282
+#: build/pack.c:305
 #, c-format
 msgid "Could not open %s\n"
 msgstr "Otvorenie %s zlyhalo\n"
 
-#: ../build/pack.c:314 ../build/pack.c:357
+#: build/pack.c:337 build/pack.c:379
 #, c-format
 msgid "Unable to write package: %s"
 msgstr "Nie je mo¾né zapísa» balík: %s"
 
-#: ../build/pack.c:347
+#: build/pack.c:352
+#, c-format
+msgid "Generating signature: %d\n"
+msgstr "Vytvára sa PGP podpis: %d\n"
+
+#: build/pack.c:369
 #, c-format
 msgid "Unable to read sigtarget: %s"
 msgstr "Nie je preèíta» sigtarget: %s"
 
-#: ../build/pack.c:372
+#: build/pack.c:394
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Zapísané: %s\n"
 
-#: ../build/pack.c:387
+#: build/pack.c:411 build/pack.c:435
 #, c-format
 msgid "create archive failed on file %s: %s"
 msgstr "vytvorenie archívu zlyhalo pri súbore %s: %s"
 
-#: ../build/pack.c:403
+#: build/pack.c:454
 #, c-format
 msgid "cpio_copy write failed: %s"
 msgstr "cpio_copy zápis zlyhal: %s"
 
-#: ../build/pack.c:410
+#: build/pack.c:461
 #, c-format
 msgid "cpio_copy read failed: %s"
 msgstr "cpio_copy èítanie zlyhalo: %s"
 
-#: ../build/pack.c:489
+#: build/pack.c:540
 #, c-format
 msgid "Could not open PreIn file: %s"
 msgstr "Nie je mo¾né otvori» PreIn súbor: %s"
 
-#: ../build/pack.c:496
+#: build/pack.c:547
 #, c-format
 msgid "Could not open PreUn file: %s"
 msgstr "Nie je mo¾né otvori» PreUn súbor: %s"
 
-#: ../build/pack.c:503
+#: build/pack.c:554
 #, c-format
 msgid "Could not open PostIn file: %s"
 msgstr "Nie je mo¾né otvori» PostIn súbor: %s"
 
-#: ../build/pack.c:510
+#: build/pack.c:561
 #, c-format
 msgid "Could not open PostUn file: %s"
 msgstr "Nie je mo¾né otvori» PostUn súbor: %s"
 
-#: ../build/pack.c:518
+#: build/pack.c:569
 #, c-format
 msgid "Could not open VerifyScript file: %s"
 msgstr "Nie je mo¾né otvori» VerifyScript súbor: %s"
 
-#: ../build/pack.c:534
+#: build/pack.c:585
 #, c-format
 msgid "Could not open Trigger script file: %s"
 msgstr "Nie je mo¾né otvori» Trigger skriptový súbor: %s"
 
-#: ../build/parseBuildInstallClean.c:27
+#: build/parseBuildInstallClean.c:27
 #, c-format
 msgid "line %d: second %s"
 msgstr "riadok %d: druhý %s"
 
-#: ../build/parseChangelog.c:95
+#: build/parseChangelog.c:103
 msgid "%%changelog entries must start with *"
 msgstr "%%changelog záznamy musia zaèína» *"
 
-#: ../build/parseChangelog.c:103
+#: build/parseChangelog.c:111
 msgid "incomplete %%changelog entry"
 msgstr "nekompletný %%changelog záznam"
 
-#: ../build/parseChangelog.c:118
+#: build/parseChangelog.c:126
 msgid "bad date in %%changelog: %s"
 msgstr "chybný dátum v %%changelog: %s "
 
-#: ../build/parseChangelog.c:123
+#: build/parseChangelog.c:131
 msgid "%%changelog not in decending chronological order"
 msgstr "%%changelog nie sú v zostupnom chronologickom poradí"
 
-#: ../build/parseChangelog.c:131 ../build/parseChangelog.c:142
+#: build/parseChangelog.c:139 build/parseChangelog.c:150
 msgid "missing name in %%changelog"
 msgstr "chýbajúce meno v %%changelog"
 
-#: ../build/parseChangelog.c:149
+#: build/parseChangelog.c:157
 msgid "no description in %%changelog"
 msgstr "¾iadny popis v %%changelog"
 
-#: ../build/parseDescription.c:35
+#: build/parseDescription.c:33
 msgid "line %d: Error parsing %%description: %s"
 msgstr "riadok %d: Chyba pri analýze %%description: %s"
 
-#: ../build/parseDescription.c:48 ../build/parseFiles.c:42
-#: ../build/parseScript.c:170
+#: build/parseDescription.c:46 build/parseFiles.c:40 build/parseScript.c:168
 #, c-format
 msgid "line %d: Bad option %s: %s"
 msgstr "riadok %d: Chybná voµba %s: %s"
 
-#: ../build/parseDescription.c:62 ../build/parseFiles.c:56
-#: ../build/parseScript.c:184
+#: build/parseDescription.c:60 build/parseFiles.c:54 build/parseScript.c:182
 #, c-format
 msgid "line %d: Too many names: %s"
 msgstr "riadok %d: Priveµa názvov: %s"
 
-#: ../build/parseDescription.c:72 ../build/parseFiles.c:66
-#: ../build/parseScript.c:194
+#: build/parseDescription.c:70 build/parseFiles.c:64 build/parseScript.c:192
 #, c-format
 msgid "line %d: Package does not exist: %s"
 msgstr "riadok %d: Balík neexistuje: %s"
 
-#: ../build/parseDescription.c:84
+#: build/parseDescription.c:82
 #, c-format
 msgid "line %d: Second description"
 msgstr "riadok %d: Druhý popis"
 
-#: ../build/parseFiles.c:29
+#: build/parseFiles.c:27
 msgid "line %d: Error parsing %%files: %s"
 msgstr "riadok %d: Chyba pri analýze %%files: %s"
 
-#: ../build/parseFiles.c:74
+#: build/parseFiles.c:72
 msgid "line %d: Second %%files list"
 msgstr "riadok %d: Druhý %%files zoznam"
 
-#: ../build/parsePreamble.c:143
+#: build/parsePreamble.c:141
 #, c-format
 msgid "Architecture is excluded: %s"
 msgstr "Architektúra je vynechaná: %s"
 
-#: ../build/parsePreamble.c:148
+#: build/parsePreamble.c:146
 #, c-format
 msgid "Architecture is not included: %s"
 msgstr "Architektúra nie je obsiahnutá: %s"
 
-#: ../build/parsePreamble.c:153
+#: build/parsePreamble.c:151
 #, c-format
 msgid "OS is excluded: %s"
 msgstr "OS je vynechaný: %s"
 
-#: ../build/parsePreamble.c:158
+#: build/parsePreamble.c:156
 #, c-format
 msgid "OS is not included: %s"
 msgstr "OS nie je obsiahnutý: %s"
 
-#: ../build/parsePreamble.c:193
+#: build/parsePreamble.c:170
 #, c-format
 msgid "%s field must be present in package: %s"
 msgstr "V balíku musí existova» pole %s: %s"
 
-#: ../build/parsePreamble.c:215
+#: build/parsePreamble.c:192
 #, c-format
 msgid "Duplicate %s entries in package: %s"
 msgstr "Duplicitné záznamy %s v balíku: %s"
 
-#: ../build/parsePreamble.c:262
+#: build/parsePreamble.c:239
 #, c-format
 msgid "Unable to stat icon: %s"
 msgstr "Nie je mo¾né zisti5 stav ikony: %s"
 
-#: ../build/parsePreamble.c:273
+#: build/parsePreamble.c:250
 #, c-format
 msgid "Unable to read icon: %s"
 msgstr "Nie je mo¾né preèíta» ikonu: %s"
 
-#: ../build/parsePreamble.c:283
+#: build/parsePreamble.c:260
 #, c-format
 msgid "Unknown icon type: %s"
 msgstr "Neznámy typ ikony: %s"
 
-#: ../build/parsePreamble.c:346
+#: build/parsePreamble.c:323
 #, c-format
 msgid "line %d: Malformed tag: %s"
 msgstr "riadok %d: Znetvorený popis: %s"
 
 #. Empty field
-#: ../build/parsePreamble.c:354
+#: build/parsePreamble.c:331
 #, c-format
 msgid "line %d: Empty tag: %s"
 msgstr "riadok %d: Prázdny popis: %s"
 
-#: ../build/parsePreamble.c:377 ../build/parsePreamble.c:384
+#: build/parsePreamble.c:354 build/parsePreamble.c:361
 #, c-format
 msgid "line %d: Illegal char '-' in %s: %s"
 msgstr "riadok %d: Neprípustný znak '-' v %s: %s"
 
-#: ../build/parsePreamble.c:422
+#: build/parsePreamble.c:399
 #, c-format
 msgid "line %d: BuildRoot can not be \"/\": %s"
 msgstr "riadok %d: BuildRoot nemô¾e by» \"/\": %s"
 
-#: ../build/parsePreamble.c:435
+#: build/parsePreamble.c:412
 #, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s"
 msgstr "riadok %d: Prefixy nesmú konèi» \"/\": %s"
 
-#: ../build/parsePreamble.c:447
+#: build/parsePreamble.c:424
 #, c-format
 msgid "line %d: Docdir must begin with '/': %s"
 msgstr "riadok %d: Docdir musí zaèína» '/': %s"
 
-#: ../build/parsePreamble.c:459
+#: build/parsePreamble.c:436
 #, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s"
 msgstr "riadok %d: Epoch/Serial pole musí by» èíslo: %s"
 
-#: ../build/parsePreamble.c:524
+#: build/parsePreamble.c:499
 #, c-format
 msgid "line %d: Bad BuildArchitecture format: %s"
 msgstr "riadok %d: Chybný formát BuildArchitecture: %s"
 
-#: ../build/parsePreamble.c:534
+#: build/parsePreamble.c:509
 #, c-format
 msgid "Internal error: Bogus tag %d"
 msgstr "Interná chyba: Èudný popis %d "
 
-#: ../build/parsePreamble.c:679
+#: build/parsePreamble.c:656
 #, c-format
 msgid "Bad package specification: %s"
 msgstr "Chybná ¹pecifikácia balíka: %s"
 
-#: ../build/parsePreamble.c:685
+#: build/parsePreamble.c:662
 #, c-format
 msgid "Package already exists: %s"
 msgstr "Balík u¾ existuje: %s"
 
-#: ../build/parsePreamble.c:712
+#: build/parsePreamble.c:689
 #, c-format
 msgid "line %d: Unknown tag: %s"
 msgstr "riadok %d: Neznámy popis: %s"
 
-#: ../build/parsePreamble.c:737
+#: build/parsePreamble.c:714
 msgid "Spec file can't use BuildRoot"
 msgstr "Spec súbor nemô¾e pou¾i» BuildRoot"
 
-#: ../build/parsePrep.c:27
+#: build/parsePrep.c:25
 #, c-format
 msgid "Bad source: %s: %s"
 msgstr "Chybný zdroj %s: %s"
 
-#: ../build/parsePrep.c:53
+#: build/parsePrep.c:51
 #, c-format
 msgid "No patch number %d"
 msgstr "Neexistuje patch èíslo %d"
 
-#: ../build/parsePrep.c:119
+#: build/parsePrep.c:117
 #, c-format
 msgid "No source number %d"
 msgstr "Neexistuje zdroj èíslo %d"
 
-#: ../build/parsePrep.c:138
+#: build/parsePrep.c:136
 #, c-format
 msgid "Couldn't download nosource %s: %s"
 msgstr "Nebolo mo¾né prenies» nie-zdroj %s: %s"
 
-#: ../build/parsePrep.c:193
+#: build/parsePrep.c:191
 msgid "Error parsing %%setup: %s"
 msgstr "Chyba pri analýze %%setup: %s"
 
-#: ../build/parsePrep.c:208
+#: build/parsePrep.c:206
 msgid "line %d: Bad arg to %%setup %c: %s"
 msgstr "riadok %d: Chybný argument pre %%setup %c: %s"
 
-#: ../build/parsePrep.c:229
+#: build/parsePrep.c:227
 msgid "line %d: Bad %%setup option %s: %s"
 msgstr "riadok %d: Chybná voµba pre %%setup %s: %s"
 
-#: ../build/parsePrep.c:353
+#: build/parsePrep.c:351
 msgid "line %d: Need arg to %%patch -b: %s"
 msgstr "riadok %d: %%patch -b potrebuje argument: %s"
 
-#: ../build/parsePrep.c:361
+#: build/parsePrep.c:359
 msgid "line %d: Need arg to %%patch -z: %s"
 msgstr "riadok %d: %%patch -z potrebuje argument: %s"
 
-#: ../build/parsePrep.c:373
+#: build/parsePrep.c:371
 msgid "line %d: Need arg to %%patch -p: %s"
 msgstr "riadok %d: %%patch -p potrebuje argument: %s"
 
-#: ../build/parsePrep.c:379
+#: build/parsePrep.c:377
 msgid "line %d: Bad arg to %%patch -p: %s"
 msgstr "riadok %d: Chybný argument pre %%patch -p: %s"
 
-#: ../build/parsePrep.c:386
+#: build/parsePrep.c:384
 msgid "Too many patches!"
 msgstr "Priveµa záplat!"
 
-#: ../build/parsePrep.c:390
+#: build/parsePrep.c:388
 msgid "line %d: Bad arg to %%patch: %s"
 msgstr "riadok %d: Chybný argument pre %%patch: %s"
 
-#: ../build/parsePrep.c:426
+#: build/parsePrep.c:424
 msgid "line %d: second %%prep"
 msgstr "riadok %d: druhý %%prep"
 
-#: ../build/parseReqs.c:45
-#, c-format
-msgid "line %d: No file names in Conflicts: %s"
-msgstr "riadok %d: Conflicts: neobsahuje ¾iadne názvy súborov: %s"
+#: build/parseReqs.c:91
+#, fuzzy, c-format
+msgid ""
+"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
+msgstr "riadok %d: %s: prvky musia zaèína» alfanumerickým znakom: %s"
 
-#: ../build/parseReqs.c:79
-#, c-format
-msgid "line %d: No versions on file names in %s: %s"
-msgstr "riadok %d: Názvy súborov v %s neobsahujú verzie: %s"
+#: build/parseReqs.c:102
+#, fuzzy, c-format
+msgid "line %d: File name not permitted: %s"
+msgstr "riadok %d: Obsoletes: neobsahuje ¾iadne názvy súborov: %s"
 
-#: ../build/parseReqs.c:85
-#, c-format
-msgid "line %d: No versions in PreReq: %s"
-msgstr "riadok %d: PreReq: neobsahuje verzie : %s"
+#: build/parseReqs.c:134
+#, fuzzy, c-format
+msgid "line %d: Versioned file name not permitted: %s"
+msgstr "riadok %d: Názvy súborov v %s neobsahujú verzie: %s"
 
-#: ../build/parseReqs.c:97
-#, c-format
-msgid "line %d: Version required in %s: %s"
+#: build/parseReqs.c:146
+#, fuzzy, c-format
+msgid "line %d: Version not permitted: %s"
 msgstr "riadok %d: V %s sú vy¾adované verzie: %s"
 
-#: ../build/parseReqs.c:126
-#, c-format
-msgid "line %d: No file names in Obsoletes: %s"
-msgstr "riadok %d: Obsoletes: neobsahuje ¾iadne názvy súborov: %s"
-
-#: ../build/parseReqs.c:133
-#, c-format
-msgid "line %d: %s: tokens must begin with alpha-numeric: %s"
-msgstr "riadok %d: %s: prvky musia zaèína» alfanumerickým znakom: %s"
+#: build/parseReqs.c:172
+#, fuzzy, c-format
+msgid "line %d: Version required: %s"
+msgstr "riadok %d: V %s sú vy¾adované verzie: %s"
 
-#: ../build/parseScript.c:138
+#: build/parseScript.c:136
 #, c-format
 msgid "line %d: triggers must have --: %s"
 msgstr "riadok %d: triggers musia obsahova» --: %s"
 
-#: ../build/parseScript.c:148 ../build/parseScript.c:212
+#: build/parseScript.c:146 build/parseScript.c:210
 #, c-format
 msgid "line %d: Error parsing %s: %s"
 msgstr "riadok %d: Chyba pri analýze %s: %s"
 
-#: ../build/parseScript.c:158
+#: build/parseScript.c:156
 #, c-format
 msgid "line %d: script program must begin with '/': %s"
 msgstr "riadok %d: program skriptu musí zaèína» '/': %s"
 
-#: ../build/parseScript.c:203
+#: build/parseScript.c:201
 #, c-format
 msgid "line %d: Second %s"
 msgstr "riadok %d: Druhý %s"
 
-#: ../build/parseSpec.c:120
+#: build/parseSpec.c:126
+#, c-format
+msgid "line %d: %s"
+msgstr "riadok %d: %s"
+
+#: build/parseSpec.c:172
 #, c-format
 msgid "Unable to open: %s\n"
 msgstr "otvorenie zlyhalo: %s\n"
 
-#: ../build/parseSpec.c:132
+#: build/parseSpec.c:184
 msgid "Unclosed %%if"
 msgstr "Neuzavretý %%if"
 
-#: ../build/parseSpec.c:188
+#: build/parseSpec.c:243
 #, c-format
-msgid "line %d: %s"
-msgstr "riadok %d: %s"
+msgid "%s:%d: parseExpressionBoolean returns %d"
+msgstr ""
 
 #. Got an else with no %if !
-#: ../build/parseSpec.c:213
+#: build/parseSpec.c:251
 msgid "%s:%d: Got a %%else with no if"
 msgstr "%s:%d: %%else bez if"
 
 #. Got an end with no %if !
-#: ../build/parseSpec.c:223
+#: build/parseSpec.c:262
 msgid "%s:%d: Got a %%endif with no if"
 msgstr "%s:%d: %%endif bez if"
 
-#: ../build/parseSpec.c:235 ../build/parseSpec.c:244
+#: build/parseSpec.c:276 build/parseSpec.c:285
 msgid "malformed %%include statement"
 msgstr "znetvorený príkaz %%include"
 
-#: ../build/parseSpec.c:323
+#: build/parseSpec.c:366
 #, c-format
 msgid "Timecheck value must be an integer: %s"
 msgstr "Èasový limit musí by» celé èíslo: %s"
 
-#: ../build/parseSpec.c:406
+#: build/parseSpec.c:449
 msgid "No buildable architectures"
 msgstr "®iadne zostaviteµné architektúry"
 
-#: ../build/parseSpec.c:451
+#: build/parseSpec.c:494
 msgid "Package has no %%description: %s"
 msgstr "Balík neobsahuje %%description: %s"
 
-#: ../build/spec.c:28
+#: build/spec.c:31
 #, c-format
 msgid "archive = %s, fs = %s\n"
 msgstr "archív = %s, fs = %s\n"
 
-#: ../build/spec.c:224
+#: build/spec.c:237
 #, c-format
 msgid "line %d: Bad number: %s"
 msgstr "riadok %d: Chybné èíslo: %s"
 
-#: ../build/spec.c:230
+#: build/spec.c:243
 #, c-format
 msgid "line %d: Bad no%s number: %d"
 msgstr "riadok %d: Chybné no%s èíslo: %d"
 
-#: ../build/spec.c:286
+#: build/spec.c:301
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr "riadok %d: Chybné %s èíslo: %s\n"
 
-#: ../lib/cpio.c:362
+#: lib/cpio.c:385
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr "premenovanie %s na %s zlyhalo: %s\n"
 
-#: ../lib/cpio.c:368
+#: lib/cpio.c:391
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr "zmazanie %s zlyhalo: %s\n"
 
-#: ../lib/cpio.c:547
+#: lib/cpio.c:582
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr "getNextHeader: %s\n"
 
-#: ../lib/cpio.c:1000
+#: lib/cpio.c:1044
 #, c-format
 msgid "(error 0x%x)"
 msgstr "(chyba 0x%x)"
 
-#: ../lib/cpio.c:1003
+#: lib/cpio.c:1047
 msgid "Bad magic"
 msgstr "Chybné magické èíslo"
 
-#: ../lib/cpio.c:1004
+#: lib/cpio.c:1048
 msgid "Bad/unreadable  header"
 msgstr "Chybná/neèitateµná hlavièka"
 
-#: ../lib/cpio.c:1022
-msgid "Internal error"
-msgstr "Interná chyba"
-
-#: ../lib/cpio.c:1023
+#: lib/cpio.c:1066
 msgid "Header size too big"
 msgstr "Priveµká hlavièka"
 
-#: ../lib/cpio.c:1024
+#: lib/cpio.c:1067
 msgid "Unknown file type"
 msgstr "Neznámy typ súboru"
 
-#: ../lib/cpio.c:1033
+#: lib/cpio.c:1068
+msgid "Missing hard link"
+msgstr ""
+
+#: lib/cpio.c:1069
+msgid "Internal error"
+msgstr "Interná chyba"
+
+#: lib/cpio.c:1078
 msgid " failed - "
 msgstr " zlyhalo - "
 
-#: ../lib/dbindex.c:32
+#: lib/dbindex.c:32
 #, c-format
 msgid "cannot open file %s: %s"
 msgstr "nie je mo¾né otvori» súbor %s: %s"
 
-#: ../lib/dbindex.c:77
+#: lib/dbindex.c:84
 #, c-format
 msgid "error getting record %s from %s"
 msgstr "chyba pri naèítaní záznamu %s z %s"
 
-#: ../lib/dbindex.c:105
+#: lib/dbindex.c:111
 #, c-format
 msgid "error storing record %s into %s"
 msgstr "chyba pri zápise záznamu %s do %s"
 
-#: ../lib/dbindex.c:112
+#: lib/dbindex.c:118
 #, c-format
 msgid "error removing record %s into %s"
 msgstr "chyba pri odstraòovaní záznamu %s z %s"
 
-#: ../lib/depends.c:429 ../lib/depends.c:588
+#. XXX legacy epoch-less requires/conflicts compatibility
+#: lib/depends.c:339
 #, c-format
-msgid "cannot read header at %d for dependency check"
-msgstr "nie je mo¾né preèíta» hlavièku na %d pre kontrolu závislostí"
+msgid ""
+"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
+"\tA %s\tB %s\n"
+msgstr ""
+
+#: lib/depends.c:368
+#, c-format
+msgid "  %s    A %s\tB %s\n"
+msgstr ""
+
+#: lib/depends.c:460
+msgid "dbrecMatchesDepFlags() failed to read header"
+msgstr "dbrecMatchesDepFlags() sa nepodarilo preèíta» hlavièku"
+
+#: lib/depends.c:695
+#, fuzzy, c-format
+msgid "%s: %s satisfied by added package.\n"
+msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n"
+
+#: lib/depends.c:712
+#, c-format
+msgid "%s: %s satisfied by added provide.\n"
+msgstr ""
+
+#: lib/depends.c:717
+#, c-format
+msgid "%s: %s satisfied by added file list.\n"
+msgstr ""
+
+#: lib/depends.c:747
+#, c-format
+msgid "%s: %s satisfied by rpmrc provides.\n"
+msgstr ""
+
+#: lib/depends.c:775
+#, c-format
+msgid "%s: %s satisfied by db file lists.\n"
+msgstr ""
 
-#: ../lib/depends.c:494
+#: lib/depends.c:797
 #, c-format
-msgid "dependencies: looking for %s\n"
-msgstr "závislosti: hµadá sa %s\n"
+msgid "%s: %s satisfied by db provides.\n"
+msgstr ""
+
+#: lib/depends.c:819
+#, fuzzy, c-format
+msgid "%s: %s satisfied by db packages.\n"
+msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n"
+
+#: lib/depends.c:832
+#, c-format
+msgid "%s: %s satisfied by rpmlib version.\n"
+msgstr ""
+
+#: lib/depends.c:842
+#, c-format
+msgid "%s: %s unsatisfied.\n"
+msgstr ""
 
-#: ../lib/depends.c:682
+#. requirements are not satisfied.
+#: lib/depends.c:890
 #, c-format
 msgid "package %s require not satisfied: %s\n"
 msgstr "po¾iadavka balíka %s nie je uspokojená: %s\n"
 
-#: ../lib/depends.c:725
+#. conflicts exist.
+#: lib/depends.c:952
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "balík %s koliduje: %s\n"
 
-#: ../lib/depends.c:825
-msgid "dbrecMatchesDepFlags() failed to read header"
-msgstr "dbrecMatchesDepFlags() sa nepodarilo preèíta» hlavièku"
+#: lib/depends.c:1007 lib/depends.c:1311
+#, c-format
+msgid "cannot read header at %d for dependency check"
+msgstr "nie je mo¾né preèíta» hlavièku na %d pre kontrolu závislostí"
 
-#: ../lib/depends.c:877
+#: lib/depends.c:1102
 #, c-format
 msgid "loop in prerequisite chain: %s"
 msgstr "sluèka v re»azi po¾iadaviek: %s"
 
-#: ../lib/falloc.c:149
+#: lib/falloc.c:160
 #, c-format
-msgid "free list corrupt (%u)- contact rpm-list@redhat.com\n"
+msgid ""
+"free list corrupt (%u)- please run\n"
+"\t\"rpm --rebuilddb\"\n"
+"More information is available from http://www.rpm.org or the "
+"rpm-list@redhat.com mailing list\n"
+"if \"rpm --rebuilddb\" fails to correct the problem.\n"
 msgstr ""
-"po¹kodený zoznam voµných blokov (%u) - kontaktujte rpm-list@redhat.com\n"
 
-#: ../lib/formats.c:97 ../lib/formats.c:114 ../lib/formats.c:134
-#: ../lib/formats.c:166 ../lib/header.c:1973 ../lib/header.c:1989
-#: ../lib/header.c:2009
+#: lib/formats.c:66 lib/formats.c:84 lib/formats.c:105 lib/formats.c:138
+#: lib/header.c:2122 lib/header.c:2139 lib/header.c:2159
 msgid "(not a number)"
 msgstr "(nie je èíslo)"
 
-#: ../lib/fs.c:41
+#: lib/fs.c:40
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr "mntctl() nevrátil veµkos» fuggeru: %s"
 
-#: ../lib/fs.c:76 ../lib/fs.c:246
+#: lib/fs.c:75 lib/fs.c:253
 #, c-format
 msgid "failed to stat %s: %s"
 msgstr "nepodarilo sa zisti» stav %s: %s"
 
-#: ../lib/fs.c:117
+#: lib/fs.c:114
+msgid "getting list of mounted filesystems\n"
+msgstr ""
+
+#: lib/fs.c:119
 #, c-format
 msgid "failed to open %s: %s"
 msgstr "nepodarilo sa otvori» %s: %s"
 
-#: ../lib/fs.c:267
+#: lib/fs.c:274
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr "súbor %s sa nachádza na neznámom zariadení"
 
-#: ../lib/header.c:669
-#, c-format
-msgid "Data type %d not supprted\n"
-msgstr "Typ údajov %d nie je podorovaný\n"
+#: lib/ftp.c:666
+msgid "Success"
+msgstr "Úspech"
+
+#: lib/ftp.c:669
+msgid "Bad server response"
+msgstr "Chybná odpoveï servera"
+
+#: lib/ftp.c:672
+msgid "Server IO error"
+msgstr "Chyba vstupu/výstupu servera"
+
+#: lib/ftp.c:675
+msgid "Server timeout"
+msgstr "Prekroèenie èasového limitu servera"
+
+#: lib/ftp.c:678
+msgid "Unable to lookup server host address"
+msgstr "Nie je mo¾né vyhµada» adresu servera"
+
+#: lib/ftp.c:681
+msgid "Unable to lookup server host name"
+msgstr "Nie je mo¾né vyhµada» názov servera"
+
+#: lib/ftp.c:684
+msgid "Failed to connect to server"
+msgstr "Pripojenie k serveru zlyhalo"
+
+#: lib/ftp.c:687
+msgid "Failed to establish data connection to server"
+msgstr "Vytvorenie dátového spojenia k serveru zlyhalo"
+
+#: lib/ftp.c:690
+msgid "IO error to local file"
+msgstr "Chyba vstupu/výstupu lokálneho súboru"
+
+#: lib/ftp.c:693
+msgid "Error setting remote server to passive mode"
+msgstr "Chyba pri nastavení vzdialeného servera do pasívneho re¾imu"
+
+#: lib/ftp.c:696
+msgid "File not found on server"
+msgstr "Súbor sa na serveri nenachádza"
+
+#: lib/ftp.c:699
+msgid "Abort in progress"
+msgstr "Zru¹enie prebieha"
+
+#: lib/ftp.c:703
+msgid "Unknown or unexpected error"
+msgstr "Neznáma alebo neoèakávaná chyba"
 
 #. This should not be allowed
-#: ../lib/header.c:905
+#: lib/header.c:169
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr "grabData() RPM_STRING_TYPE poèet musí by» 1.\n"
 
-#: ../lib/header.c:935
+#: lib/header.c:200
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Typ údajov %d nie je podorovaný\n"
 
-#: ../lib/header.c:994
+#: lib/header.c:763
+#, c-format
+msgid "Data type %d not supprted\n"
+msgstr "Typ údajov %d nie je podorovaný\n"
+
+#: lib/header.c:1119
 #, c-format
 msgid "Bad count for headerAddEntry(): %d\n"
 msgstr "Chybný poèet pre headerAddEntry(): %d\n"
 
-#: ../lib/header.c:1328
-msgid "? expected in expression"
-msgstr "? oèakávané vo výraze"
-
-#: ../lib/header.c:1335
-msgid "{ expected after ? in expression"
-msgstr "{ oèakávané po ? vo výraze"
-
-#: ../lib/header.c:1345 ../lib/header.c:1377
-msgid "} expected in expression"
-msgstr "} oèakávané vo výraze"
-
-#: ../lib/header.c:1352
-msgid ": expected following ? subexpression"
-msgstr ": oèakávané po ? podvýraze"
-
-#: ../lib/header.c:1365
-msgid "{ expected after : in expression"
-msgstr "{ oèakávané po : vo výraze"
-
-#: ../lib/header.c:1384
-msgid "| expected at end of expression"
-msgstr "| oèakávené na konci výrazu"
-
-#: ../lib/header.c:1478
+#: lib/header.c:1520
 #, c-format
 msgid "missing { after %"
 msgstr "chýbajúce { po %"
 
-#: ../lib/header.c:1506
+#: lib/header.c:1548
 msgid "missing } after %{"
 msgstr "chýbajúce } po %{"
 
-#: ../lib/header.c:1518
+#: lib/header.c:1560
 msgid "empty tag format"
 msgstr "prázdny tag formát"
 
-#: ../lib/header.c:1528
+#: lib/header.c:1570
 msgid "empty tag name"
 msgstr "prázdne meno tagu"
 
-#: ../lib/header.c:1543
+#: lib/header.c:1585
 msgid "unknown tag"
 msgstr "neznámy tag"
 
-#: ../lib/header.c:1569
+#: lib/header.c:1611
 msgid "] expected at end of array"
 msgstr "] oèakávané na konci poµa"
 
-#: ../lib/header.c:1585
+#: lib/header.c:1627
 msgid "unexpected ]"
 msgstr "neoèakávané ]"
 
-#: ../lib/header.c:1587
+#: lib/header.c:1629
 msgid "unexpected }"
 msgstr "neoèakávané }"
 
-#: ../lib/header.c:1762
+#: lib/header.c:1682
+msgid "? expected in expression"
+msgstr "? oèakávané vo výraze"
+
+#: lib/header.c:1689
+msgid "{ expected after ? in expression"
+msgstr "{ oèakávané po ? vo výraze"
+
+#: lib/header.c:1699 lib/header.c:1731
+msgid "} expected in expression"
+msgstr "} oèakávané vo výraze"
+
+#: lib/header.c:1706
+msgid ": expected following ? subexpression"
+msgstr ": oèakávané po ? podvýraze"
+
+#: lib/header.c:1719
+msgid "{ expected after : in expression"
+msgstr "{ oèakávané po : vo výraze"
+
+#: lib/header.c:1738
+msgid "| expected at end of expression"
+msgstr "| oèakávené na konci výrazu"
+
+#: lib/header.c:1905
 msgid "(unknown type)"
 msgstr "(neznámy typ)"
 
-#: ../lib/install.c:93
-msgid "source package expected, binary found"
-msgstr "oèakávaný zdrojový balík, nájdený binárny"
-
-#: ../lib/install.c:169 ../lib/uninstall.c:111
+#: lib/install.c:141 lib/uninstall.c:179
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr "   súbor: akcia %s: %s\n"
 
-#: ../lib/install.c:186
+#: lib/install.c:159
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr "pou¾ívateµ %s neexistuje - pou¾ije sa root"
 
-#: ../lib/install.c:194
+#: lib/install.c:167
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr "skupina %s neexistuje - pou¾ije sa root"
 
-#: ../lib/install.c:221
+#: lib/install.c:195
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr "hodnota %%instchangelog v makro-súbore by mala by» èíselná, ale nie je"
 
-#: ../lib/install.c:289
-#, c-format
-msgid "package: %s-%s-%s files test = %d\n"
-msgstr "balík: %s-%s-%s test súborov = %d\n"
-
-#: ../lib/install.c:352
-msgid "stopping install as we're running --test\n"
-msgstr "in¹talácia zastavená kvôli re¾imu --test\n"
-
-#: ../lib/install.c:357
-msgid "running preinstall script (if any)\n"
-msgstr "vykonávajú sa predin¹talaèné skripty (ak existujú)\n"
-
-#: ../lib/install.c:387
-#, c-format
-msgid "warning: %s created as %s"
-msgstr "varovanie: %s vytvorené ako %s"
-
-#: ../lib/install.c:423
-#, c-format
-msgid "warning: %s saved as %s"
-msgstr "varovanie: %s uchovaný ako %s"
-
-#: ../lib/install.c:427 ../lib/install.c:790 ../lib/uninstall.c:337
-#, c-format
-msgid "rename of %s to %s failed: %s"
-msgstr "premenovanie %s na %s zlyhalo: %s"
-
-#: ../lib/install.c:507
-msgid "running postinstall script (if any)\n"
-msgstr "vykonávajú sa poin¹talaèné skripty (ak existujú)\n"
-
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
-#: ../lib/install.c:613
+#: lib/install.c:358
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr "rozbalenie archívu zlyhalo%s%s: %s"
 
-#: ../lib/install.c:614
+#: lib/install.c:359
 msgid " on file "
 msgstr " pre súbor "
 
-#: ../lib/install.c:654
+#: lib/install.c:402
 msgid "installing a source package\n"
 msgstr "in¹taluje sa zdrojový balík\n"
 
-#: ../lib/install.c:665 ../lib/install.c:687
+#: lib/install.c:413
 #, fuzzy, c-format
-msgid "cannot create %s"
+msgid "cannot create %s: %s"
 msgstr "nie je mo¾né zapísa» do %s: "
 
-#: ../lib/install.c:672 ../lib/install.c:694
+#: lib/install.c:421 lib/install.c:443
 #, c-format
 msgid "cannot write to %s"
 msgstr "nie je mo¾né zapísa» do %s: "
 
-#: ../lib/install.c:676
+#: lib/install.c:425
 #, c-format
 msgid "sources in: %s\n"
 msgstr "zdroje v: %s\n"
 
-#: ../lib/install.c:698
+#: lib/install.c:436
+#, fuzzy, c-format
+msgid "cannot create %s"
+msgstr "nie je mo¾né zapísa» do %s: "
+
+#: lib/install.c:447
 #, c-format
 msgid "spec file in: %s\n"
 msgstr "spec-súbor v: %s\n"
 
-#: ../lib/install.c:731 ../lib/install.c:767
+#: lib/install.c:481 lib/install.c:509
 msgid "source package contains no .spec file"
 msgstr "zdrojový balík neobsahuje ¾iadny .spec súbor"
 
-#: ../lib/install.c:788
+#: lib/install.c:530
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr "premenováva sa %s na %s\n"
 
-#: ../lib/lookup.c:83
+#: lib/install.c:532 lib/install.c:810 lib/uninstall.c:26
+#, c-format
+msgid "rename of %s to %s failed: %s"
+msgstr "premenovanie %s na %s zlyhalo: %s"
+
+#: lib/install.c:622
+msgid "source package expected, binary found"
+msgstr "oèakávaný zdrojový balík, nájdený binárny"
+
+#: lib/install.c:679
+#, c-format
+msgid "package: %s-%s-%s files test = %d\n"
+msgstr "balík: %s-%s-%s test súborov = %d\n"
+
+#: lib/install.c:740
+msgid "stopping install as we're running --test\n"
+msgstr "in¹talácia zastavená kvôli re¾imu --test\n"
+
+#: lib/install.c:745
+msgid "running preinstall script (if any)\n"
+msgstr "vykonávajú sa predin¹talaèné skripty (ak existujú)\n"
+
+#: lib/install.c:770
+#, c-format
+msgid "warning: %s created as %s"
+msgstr "varovanie: %s vytvorené ako %s"
+
+#: lib/install.c:806
+#, c-format
+msgid "warning: %s saved as %s"
+msgstr "varovanie: %s uchovaný ako %s"
+
+#: lib/install.c:880
+#, fuzzy
+msgid "running postinstall scripts (if any)\n"
+msgstr "vykonávajú sa poin¹talaèné skripty (ak existujú)\n"
+
+#: lib/lookup.c:35
 #, c-format
 msgid "cannot read header at %d for lookup"
 msgstr "nie je mo¾né preèíta» hlavièku na %d pre vyhµadanie"
 
-#: ../lib/macro.c:129
+#: lib/macro.c:149
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr "======================== aktívnych %d prázdnych %d\n"
 
 #. XXX just in case
-#: ../lib/macro.c:218
+#: lib/macro.c:243
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr "%3d>%*s(prázdne)"
 
-#: ../lib/macro.c:253
+#: lib/macro.c:278
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr "%3d<%*s(prázdne)\n"
 
-#: ../lib/macro.c:426
+#: lib/macro.c:457
 msgid "Macro %%%s has unterminated body"
 msgstr "Makro %%%s obsahuje neukonèené telo"
 
-#: ../lib/macro.c:452
+#: lib/macro.c:483
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr "Makro %%%s obsahuje chybný názov (%%define)"
 
-#: ../lib/macro.c:458
+#: lib/macro.c:489
 msgid "Macro %%%s has unterminated opts"
 msgstr "Makro %%%s obsahuje neukonèené voµby"
 
-#: ../lib/macro.c:463
+#: lib/macro.c:494
 msgid "Macro %%%s has empty body"
 msgstr "Makro %%%s obsahuje prázdne telo"
 
-#: ../lib/macro.c:468
+#: lib/macro.c:499
 msgid "Macro %%%s failed to expand"
 msgstr "Makro %%%s sa nepodarilo expandova»"
 
-#: ../lib/macro.c:493
+#: lib/macro.c:524
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr "Makro %%%s obsahuje chybný názov (%%undefine)"
 
-#: ../lib/macro.c:566
+#: lib/macro.c:601
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr "Makro %%%s (%s) nebolo pou¾ité pod úrovòou %d "
 
-#: ../lib/macro.c:650
+#: lib/macro.c:698
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr "Neznáma voµba %c v %s(%s)"
 
-#: ../lib/macro.c:825
+#: lib/macro.c:870
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr "Håbka rekurzie (%d) väè¹ia ako maximálna (%d)"
 
-#: ../lib/macro.c:881 ../lib/macro.c:897
+#: lib/macro.c:936 lib/macro.c:952
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr "Neukonèené %c: %s"
 
-#: ../lib/macro.c:930
+#: lib/macro.c:992
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: ../lib/macro.c:1053
+#: lib/macro.c:1115
 msgid "Macro %%%.*s not found, skipping"
 msgstr "balík %%%.*s nebol nájdený, vynecháva sa"
 
-#: ../lib/macro.c:1131
+#: lib/macro.c:1196
 msgid "Target buffer overflow"
 msgstr "Preplnenie cieµovej vyrovnávacej pamäti"
 
-#: ../lib/macro.c:1274 ../lib/macro.c:1282
+#: lib/macro.c:1343 lib/macro.c:1351
 #, c-format
 msgid "File %s: %s"
 msgstr "Súbor %s: %s"
 
-#: ../lib/macro.c:1285
+#: lib/macro.c:1354
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr "Súbor %s je men¹í ako %d bajtov"
 
-#: ../lib/messages.c:51
+#: lib/messages.c:55
 msgid "warning: "
 msgstr "varovanie: "
 
-#: ../lib/messages.c:57
+#: lib/messages.c:64
 msgid "error: "
 msgstr "chyba: "
 
-#: ../lib/messages.c:63
+#: lib/messages.c:73
 msgid "fatal error: "
 msgstr "fatálna chyba: "
 
-#: ../lib/messages.c:70
+#: lib/messages.c:82
 msgid "internal error (rpm bug?): "
 msgstr "interná chyba (chyba rpm?): "
 
-#: ../lib/misc.c:342 ../lib/misc.c:348 ../lib/misc.c:355
+#: lib/misc.c:367 lib/misc.c:373 lib/misc.c:380
 #, c-format
 msgid "error creating temporary file %s"
 msgstr "chyba pri vytváraní doèasného súboru %s"
 
-#: ../lib/oldheader.c:292
+#: lib/oldheader.c:299
 #, c-format
 msgid "bad file state: %s"
 msgstr "chybný stav súboru: %s"
 
-#: ../lib/package.c:51
+#: lib/package.c:234
 msgid "package is a version one package!\n"
 msgstr "balík je verzie jedna!\n"
 
-#: ../lib/package.c:54
+#: lib/package.c:239
 msgid "old style source package -- I'll do my best\n"
 msgstr "zdrojový balík v starom ¹týle - urobím, èo sa dá\n"
 
-#: ../lib/package.c:57
+#: lib/package.c:242
 #, c-format
 msgid "archive offset is %d\n"
 msgstr "posunutie v archíve je %d\n"
 
-#: ../lib/package.c:67
+#: lib/package.c:252
 msgid "old style binary package\n"
 msgstr "binárny balík v starom ¹týle\n"
 
-#: ../lib/package.c:105
+#: lib/package.c:298
 msgid ""
 "only packages with major numbers <= 3 are supported by this version of RPM"
 msgstr "táto verzia RPM podporuje iba balíky s hlavným èíslom <= 3"
 
-#: ../lib/problems.c:29
+#: lib/problems.c:43
 #, c-format
-msgid "package %s-%s-%s is for a different operating system"
-msgstr ""
+msgid " is needed by %s-%s-%s\n"
+msgstr " je vy¾adované %s-%s-%s\n"
+
+#: lib/problems.c:46
+#, c-format
+msgid " conflicts with %s-%s-%s\n"
+msgstr " koliduje s %s-%s-%s\n"
 
-#: ../lib/problems.c:34
+#: lib/problems.c:66
 #, c-format
 msgid "package %s-%s-%s is for a different architecture"
 msgstr ""
 
-#: ../lib/problems.c:39
+#: lib/problems.c:71
+#, c-format
+msgid "package %s-%s-%s is for a different operating system"
+msgstr ""
+
+#: lib/problems.c:76
 #, fuzzy, c-format
 msgid "package %s-%s-%s is already installed"
 msgstr "balík %s nie je nain¹talovaný\n"
 
-#: ../lib/problems.c:44
+#: lib/problems.c:81
 #, fuzzy, c-format
 msgid "path %s is not relocateable for package %s-%s-%s"
 msgstr "balík %s nie je nain¹talovaný\n"
 
-#: ../lib/problems.c:49
+#: lib/problems.c:86
 #, c-format
 msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
 msgstr ""
 
-#: ../lib/problems.c:55
+#: lib/problems.c:92
 #, c-format
 msgid ""
 "file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
 msgstr ""
 
-#: ../lib/problems.c:61
+#: lib/problems.c:98
 #, c-format
 msgid "package %s-%s-%s (which is newer then %s-%s-%s) is already installed"
 msgstr ""
 
-#: ../lib/problems.c:67
+#: lib/problems.c:104
 #, c-format
-msgid "installing package %s-%s-%s needs %ld%c on the %s filesystem"
+msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: ../lib/problems.c:77
+#: lib/problems.c:116
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
 
-#: ../lib/query.c:57
-msgid "query package owning file"
-msgstr "opýta» sa balíku vlastniaceho súbor"
-
-#: ../lib/query.c:59
-msgid "query packages in group"
-msgstr "opýta» sa v¹etkých balíkov v skupine"
-
-#: ../lib/query.c:61
-msgid "query a package file"
-msgstr "opýta» sa súboru balíka"
-
-#: ../lib/query.c:65
-msgid "query a spec file"
-msgstr "opýta» sa spec súboru"
-
-#: ../lib/query.c:67
-msgid "query the pacakges triggered by the package"
-msgstr "opýta» sa balíkov spustených balíkom"
-
-#: ../lib/query.c:69
-msgid "query the packages which require a capability"
-msgstr "opýta» sa balíkov vy¾adujúcich schopnos»"
-
-#: ../lib/query.c:71
-msgid "query the packages which provide a capability"
-msgstr "opýta» sa balíkov poskytujúcich schopnos»"
-
-#: ../lib/query.c:108
-msgid "list all configuration files"
-msgstr "zobrazi» v¹etky konfiguraèné súbory"
-
-#: ../lib/query.c:110
-#, fuzzy
-msgid "list all documentation files"
-msgstr "zobrazi» v¹etky dokumentaèné súbory"
-
-#: ../lib/query.c:112
-msgid "dump basic file information"
-msgstr "zobrazi» základné informácie o balíku"
-
-#: ../lib/query.c:114
-msgid "list files in package"
-msgstr "zobrazi» súbory v balíku"
-
-#: ../lib/query.c:118
-msgid "use the following query format"
-msgstr "pou¾i» nasledovný formát otázky"
-
-#: ../lib/query.c:120
-msgid "substitute i18n sections from the following catalogue"
-msgstr ""
-
-#: ../lib/query.c:123
-msgid "display the states of the listed files"
-msgstr "zobrazii» stav daných súborov"
-
-#: ../lib/query.c:125
-msgid "display a verbose file listing"
-msgstr "zobrazi» podrobný zoznam súborov balíka"
-
-#: ../lib/query.c:136
+#: lib/query.c:138
 #, c-format
 msgid "error in format: %s\n"
 msgstr "chyba formátu: %s\n"
 
-#: ../lib/query.c:177
+#: lib/query.c:180
 msgid "(contains no files)"
 msgstr "(neobsahuje ¾iadne súbory)"
 
-#: ../lib/query.c:230
+#: lib/query.c:233
 msgid "normal        "
 msgstr "normálny      "
 
-#: ../lib/query.c:232
+#: lib/query.c:235
 msgid "replaced      "
 msgstr "nahradený     "
 
-#: ../lib/query.c:234
-msgid "net shared    "
-msgstr "zdieµaný      "
-
-#: ../lib/query.c:236
+#: lib/query.c:237
 msgid "not installed "
 msgstr "nein¹talovaný "
 
-#: ../lib/query.c:238
+#: lib/query.c:239
+msgid "net shared    "
+msgstr "zdieµaný      "
+
+#: lib/query.c:241
 #, c-format
 msgid "(unknown %3d) "
 msgstr "(neznámy %d)  "
 
-#: ../lib/query.c:242
+#: lib/query.c:245
 msgid "(no state)    "
 msgstr "(¾iadny stav) "
 
-#: ../lib/query.c:258 ../lib/query.c:288
+#: lib/query.c:261 lib/query.c:291
 msgid "package has neither file owner or id lists"
 msgstr "balík neobsahuje ani vlastníka súboru, ani zoznamy identifikácií"
 
-#: ../lib/query.c:514
+#: lib/query.c:400
 #, fuzzy, c-format
 msgid "record number %u\n"
 msgstr "overuje sa záznam èíslo %u\n"
 
-#: ../lib/query.c:518
+#: lib/query.c:404
 msgid "error: could not read database record\n"
 msgstr "chyba: nie je mo¾né preèíta» záznam v databáze\n"
 
-#: ../lib/query.c:547
-#, c-format
-msgid "open of %s failed\n"
+#: lib/query.c:442
+#, fuzzy, c-format
+msgid "open of %s failed: %s\n"
 msgstr "otvorenie %s zlyhalo\n"
 
-#: ../lib/query.c:560
+#: lib/query.c:455
 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:572
+#: lib/query.c:464 lib/rpminstall.c:203
+#, c-format
+msgid "%s does not appear to be a RPM package\n"
+msgstr "%s zrejme nie je RPM balík\n"
+
+#: lib/query.c:467
 #, c-format
 msgid "query of %s failed\n"
 msgstr "otázka na %s zlyhala\n"
 
-#: ../lib/query.c:593
+#: lib/query.c:494
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "otázka na spec-súbor %s zlyhala, nie je mo¾né analyzova»\n"
 
-#: ../lib/query.c:627
+#: lib/query.c:519
 msgid "could not read database record!\n"
 msgstr "nie je mo¾né preèíta» záznam v databáze!\n"
 
-#: ../lib/query.c:638
+#: lib/query.c:530
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "skupina %s neobsahuje ¾iadne balíky\n"
 
-#: ../lib/query.c:648
+#: lib/query.c:540
 #, c-format
 msgid "no package provides %s\n"
 msgstr "¾iadny z balíkov neposkytuje %s\n"
 
-#: ../lib/query.c:658
+#: lib/query.c:550
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "¾iadny z balíkov nespú¹»a %s\n"
 
-#: ../lib/query.c:668
+#: lib/query.c:560
 #, c-format
 msgid "no package requires %s\n"
 msgstr "¾iadny z balíkov nevy¾aduje %s\n"
 
-#: ../lib/query.c:683
+#: lib/query.c:575
 #, c-format
 msgid "file %s: %s\n"
 msgstr "súbor %s: %s\n"
 
-#: ../lib/query.c:686
+#: lib/query.c:578
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n"
 
-#: ../lib/query.c:699
+#: lib/query.c:591
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "chybné èíslo balíku: %s\n"
 
-#: ../lib/query.c:702
+#: lib/query.c:594
 #, fuzzy, c-format
 msgid "package record number: %d\n"
 msgstr "po¾aduje sa záznam èíslo %d\n"
 
-#: ../lib/query.c:705
+#: lib/query.c:597
 #, c-format
 msgid "record %d could not be read\n"
 msgstr "záznam %d nie je mo¾né preèíta»\n"
 
-#: ../lib/query.c:720
+#: lib/query.c:609 lib/rpminstall.c:393
+#, c-format
+msgid "package %s is not installed\n"
+msgstr "balík %s nie je nain¹talovaný\n"
+
+#: lib/query.c:612
 #, c-format
 msgid "error looking for package %s\n"
 msgstr "chyba pri hµadaní balíka %s\n"
 
-#: ../lib/query.c:742
+#: lib/query.c:634
 msgid "rpmQuery: rpmdbOpen() failed\n"
 msgstr "rpmQuery: rpmdbOpen() zlyhalo\n"
 
-#: ../lib/rebuilddb.c:18
+#: lib/query.c:691
+msgid "query package owning file"
+msgstr "opýta» sa balíku vlastniaceho súbor"
+
+#: lib/query.c:693
+msgid "query packages in group"
+msgstr "opýta» sa v¹etkých balíkov v skupine"
+
+#: lib/query.c:695
+msgid "query a package file"
+msgstr "opýta» sa súboru balíka"
+
+#: lib/query.c:699
+msgid "query a spec file"
+msgstr "opýta» sa spec súboru"
+
+#: lib/query.c:701
+msgid "query the pacakges triggered by the package"
+msgstr "opýta» sa balíkov spustených balíkom"
+
+#: lib/query.c:703
+msgid "query the packages which require a capability"
+msgstr "opýta» sa balíkov vy¾adujúcich schopnos»"
+
+#: lib/query.c:705
+msgid "query the packages which provide a capability"
+msgstr "opýta» sa balíkov poskytujúcich schopnos»"
+
+#: lib/query.c:742
+msgid "list all configuration files"
+msgstr "zobrazi» v¹etky konfiguraèné súbory"
+
+#: lib/query.c:744
+#, fuzzy
+msgid "list all documentation files"
+msgstr "zobrazi» v¹etky dokumentaèné súbory"
+
+#: lib/query.c:746
+msgid "dump basic file information"
+msgstr "zobrazi» základné informácie o balíku"
+
+#: lib/query.c:748
+msgid "list files in package"
+msgstr "zobrazi» súbory v balíku"
+
+#: lib/query.c:752
+msgid "use the following query format"
+msgstr "pou¾i» nasledovný formát otázky"
+
+#: lib/query.c:754
+msgid "substitute i18n sections from the following catalogue"
+msgstr ""
+
+#: lib/query.c:757
+msgid "display the states of the listed files"
+msgstr "zobrazii» stav daných súborov"
+
+#: lib/query.c:759
+msgid "display a verbose file listing"
+msgstr "zobrazi» podrobný zoznam súborov balíka"
+
+#: lib/rebuilddb.c:20
 #, c-format
 msgid "rebuilding database in rootdir %s\n"
 msgstr "znovu sa vytvára databáza v adresári %s\n"
 
-#: ../lib/rebuilddb.c:22 ../lib/rpmdb.c:64 ../lib/rpmdb.c:82 ../lib/rpmdb.c:98
+#: lib/rebuilddb.c:24 lib/rpmdb.c:69 lib/rpmdb.c:88 lib/rpmdb.c:105
 msgid "no dbpath has been set"
 msgstr "nebola nastavená ¾iadna dbpath"
 
-#: ../lib/rebuilddb.c:30
+#: lib/rebuilddb.c:33
 #, c-format
 msgid "temporary database %s already exists"
 msgstr "doèasná databáza %s u¾ existuje"
 
-#: ../lib/rebuilddb.c:34
+#: lib/rebuilddb.c:37
 #, c-format
 msgid "creating directory: %s\n"
 msgstr "vytvára sa adresár %s\n"
 
-#: ../lib/rebuilddb.c:36
+#: lib/rebuilddb.c:39
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr "chyba pri vytváraní adresára %s: %s"
 
-#: ../lib/rebuilddb.c:44
+#: lib/rebuilddb.c:43
 msgid "opening old database\n"
 msgstr "otvára sa stará databáza\n"
 
-#: ../lib/rebuilddb.c:51
+#: lib/rebuilddb.c:50
 msgid "opening new database\n"
 msgstr "otvára sa nová databáza\n"
 
-#: ../lib/rebuilddb.c:61 ../lib/rebuilddb.c:79
+#: lib/rebuilddb.c:60 lib/rebuilddb.c:78
 #, c-format
 msgid "record number %d in database is bad -- skipping it"
 msgstr "záznam èíslo %d v databáze je chybný -- bol vynechaný"
 
-#: ../lib/rebuilddb.c:73
+#: lib/rebuilddb.c:72
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr "nie je mo¾né prida» záznam pôvodne na %d"
 
-#: ../lib/rebuilddb.c:92
+#: lib/rebuilddb.c:91
 msgid "failed to rebuild database; original database remains in place\n"
 msgstr "nepodarilo sa znovu vytvori» databázu; zostáva pôvodná\n"
 
-#: ../lib/rebuilddb.c:100
+#: lib/rebuilddb.c:99
 msgid "failed to replace old database with new database!\n"
 msgstr "nepodarilo sa nahradi» starú databázu novou!\n"
 
-#: ../lib/rebuilddb.c:102
+#: lib/rebuilddb.c:101
 #, c-format
 msgid "replaces files in %s with files from %s to recover"
 msgstr "nahradí súbory v %s súbormi z %s kvôli obnove"
 
-#: ../lib/rebuilddb.c:108
+#: lib/rebuilddb.c:107
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "nepodarilo sa odstráni» adresár %s: %s\n"
 
-#: ../lib/rpmdb.c:159
+#: lib/rpmchecksig.c:31
+#, fuzzy, c-format
+msgid "%s: fdOpen failed: %s\n"
+msgstr "%s: otvorenie zlyhalo\n"
+
+#: lib/rpmchecksig.c:42
+#, fuzzy
+msgid "makeTempFile failed\n"
+msgstr "vykonanie zlyhalo\n"
+
+#: lib/rpmchecksig.c:74
+#, fuzzy, c-format
+msgid "%s: fdWrite failed: %s\n"
+msgstr "%s: otvorenie zlyhalo\n"
+
+#: lib/rpmchecksig.c:80
+#, fuzzy, c-format
+msgid "%s: fdRead failed: %s\n"
+msgstr "%s: readLead zlyhalo\n"
+
+#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:242
+#, c-format
+msgid "%s: readLead failed\n"
+msgstr "%s: readLead zlyhalo\n"
+
+#: lib/rpmchecksig.c:118
+#, c-format
+msgid "%s: Can't sign v1.0 RPM\n"
+msgstr "%s: Nie je mo¾né podpísa» v1.0 RPM\n"
+
+#: lib/rpmchecksig.c:122
+#, c-format
+msgid "%s: Can't re-sign v2.0 RPM\n"
+msgstr "%s: Nie je mo¾né znovu podpísa» v2.0 RPM\n"
+
+#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:256
+#, c-format
+msgid "%s: rpmReadSignature failed\n"
+msgstr "%s: rpmReadSignature zlyhalo\n"
+
+#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:261
+#, c-format
+msgid "%s: No signature available\n"
+msgstr "%s: Podpis nie je k dispozícii\n"
+
+#: lib/rpmchecksig.c:167
+#, fuzzy, c-format
+msgid "%s: writeLead failed: %s\n"
+msgstr "%s: readLead zlyhalo\n"
+
+#: lib/rpmchecksig.c:173
+#, fuzzy, c-format
+msgid "%s: rpmWriteSignature failed\n"
+msgstr "%s: rpmReadSignature zlyhalo\n"
+
+#: lib/rpmchecksig.c:248
+#, c-format
+msgid "%s: No signature available (v1.0 RPM)\n"
+msgstr "%s: Podpis nie je k dispozícii (v1.0 RPM)\n"
+
+#: lib/rpmchecksig.c:408
+msgid "NOT OK"
+msgstr "NIE JE V PORIADKU"
+
+#: lib/rpmchecksig.c:409 lib/rpmchecksig.c:423
+msgid " (MISSING KEYS:"
+msgstr " (CHÝBAJÚCE K¥ÚÈE):"
+
+#: lib/rpmchecksig.c:411 lib/rpmchecksig.c:425
+msgid ") "
+msgstr ") "
+
+#: lib/rpmchecksig.c:412 lib/rpmchecksig.c:426
+msgid " (UNTRUSTED KEYS:"
+msgstr " (NEDÔVERUJE SA K¥ÚÈOM: "
+
+#: lib/rpmchecksig.c:414 lib/rpmchecksig.c:428
+msgid ")"
+msgstr ")"
+
+#: lib/rpmchecksig.c:422
+msgid "OK"
+msgstr "V PORIADKU"
+
+#: lib/rpmdb.c:184
 #, c-format
 msgid "opening database mode 0x%x in %s\n"
 msgstr "otvára sa databáza s právami 0x%x v %s\n"
 
-#: ../lib/rpmdb.c:182 ../lib/rpmdb.c:189
+#: lib/rpmdb.c:193 lib/url.c:431
+#, c-format
+msgid "failed to open %s\n"
+msgstr "otvorenie %s zlyhalo\n"
+
+#: lib/rpmdb.c:206 lib/rpmdb.c:214
 #, c-format
 msgid "cannot get %s lock on database"
 msgstr "nie je mo¾né získa» %s zámok pre databázu"
 
-#: ../lib/rpmdb.c:183
+#: lib/rpmdb.c:207
 msgid "exclusive"
 msgstr "výhradný"
 
-#: ../lib/rpmdb.c:190
+#: lib/rpmdb.c:215
 msgid "shared"
 msgstr "zdieµaný"
 
-#: ../lib/rpmdb.c:213
+#: lib/rpmdb.c:246
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
@@ -3044,382 +2971,616 @@ msgstr ""
 "existuje databáza v starom formáte; pou¾ite --rebuilddb pre vytvorenie "
 "databázy v novom formáte"
 
-#: ../lib/rpmdb.c:372
+#: lib/rpmdb.c:439
 #, c-format
 msgid "package %s not listed in %s"
 msgstr "balík %s nie je uvedený v %s"
 
-#: ../lib/rpmdb.c:383
+#: lib/rpmdb.c:450
 #, c-format
 msgid "package %s not found in %s"
 msgstr "balík %s nebol nájdený v %s"
 
-#: ../lib/rpmdb.c:407 ../lib/uninstall.c:40
+#: lib/rpmdb.c:475 lib/uninstall.c:85
 #, c-format
 msgid "cannot read header at %d for uninstall"
 msgstr "nie je mo¾né preèíta» hlavièku na %d pre odin¹talovanie"
 
-#: ../lib/rpmdb.c:415
+#: lib/rpmdb.c:483
 msgid "package has no name"
 msgstr "balík nemá meno"
 
-#: ../lib/rpmdb.c:417
+#: lib/rpmdb.c:485
 msgid "removing name index\n"
 msgstr "odstraòuje sa index názvov\n"
 
-#: ../lib/rpmdb.c:422
+#: lib/rpmdb.c:490
 msgid "package has no group\n"
 msgstr "balík nemá skupinu\n"
 
-#: ../lib/rpmdb.c:424
+#: lib/rpmdb.c:492
 msgid "removing group index\n"
 msgstr "odstraòuje sa index skupín\n"
 
-#: ../lib/rpmdb.c:431
+#: lib/rpmdb.c:499
 #, c-format
 msgid "removing provides index for %s\n"
 msgstr "odstraòuje sa index poskytovaných vlastností pre %s\n"
 
-#: ../lib/rpmdb.c:446
+#: lib/rpmdb.c:514
 #, c-format
 msgid "removing requiredby index for %s\n"
 msgstr "odstraòuje sa index po¾iadaviek pre %s\n"
 
-#: ../lib/rpmdb.c:458
+#: lib/rpmdb.c:526
 #, c-format
 msgid "removing trigger index for %s\n"
 msgstr "odstraòuje sa index triggerov pre %s\n"
 
-#: ../lib/rpmdb.c:469
+#: lib/rpmdb.c:537
 #, c-format
 msgid "removing conflict index for %s\n"
 msgstr "odstraòuje sa index kolízií pre %s\n"
 
-#: ../lib/rpmdb.c:486
+#: lib/rpmdb.c:554
 #, c-format
 msgid "removing file index for %s\n"
 msgstr "odstraòuje sa index súborov pre %s\n"
 
-#: ../lib/rpmdb.c:495
+#: lib/rpmdb.c:563
 msgid "package has no files\n"
 msgstr "balík neobsahuje ¾iadne súbory\n"
 
-#: ../lib/rpmdb.c:568
+#: lib/rpmdb.c:645
 msgid "cannot allocate space for database"
 msgstr "nie je mo¾né prideli» miesto pre databázu"
 
-#: ../lib/rpmdb.c:639
+#: lib/rpmdb.c:711
 #, c-format
 msgid "cannot read header at %d for update"
 msgstr "nie je mo¾né preèíta» hlavièku na %d pre úpravu"
 
-#: ../lib/rpmdb.c:648
+#: lib/rpmdb.c:720
 msgid "header changed size!"
 msgstr "zmenila sa veµkos» hlavièky!"
 
-#: ../lib/rpmlead.c:41
+#: lib/rpminstall.c:128
+msgid "counting packages to install\n"
+msgstr "poèítajú sa balíky pre in¹taláciu\n"
+
+#: lib/rpminstall.c:132
+#, c-format
+msgid "found %d packages\n"
+msgstr "nájdených %d balíkov\n"
+
+#: lib/rpminstall.c:141
+msgid "looking for packages to download\n"
+msgstr "hµadajú sa balíky, ktoré treba prenies»\n"
+
+#: lib/rpminstall.c:152
+#, c-format
+msgid "Retrieving %s\n"
+msgstr "Prená¹a sa %s\n"
+
+#: lib/rpminstall.c:161
+#, c-format
+msgid " ... as %s\n"
+msgstr "... ako %s\n"
+
+#: lib/rpminstall.c:165
+#, c-format
+msgid "skipping %s - transfer failed - %s\n"
+msgstr "%s vynechané - prenos zlyhal - %s\n"
+
+#: lib/rpminstall.c:182
+#, c-format
+msgid "retrieved %d packages\n"
+msgstr "prenieslo sa %d balíkov\n"
+
+#: lib/rpminstall.c:191 lib/rpminstall.c:332
+#, c-format
+msgid "cannot open file %s\n"
+msgstr "nie je mo¾né otvori» súbor %s\n"
+
+#: lib/rpminstall.c:207 lib/rpminstall.c:469
+#, c-format
+msgid "%s cannot be installed\n"
+msgstr "%s nie je mo¾né nain¹talova»\n"
+
+#: lib/rpminstall.c:243
+#, fuzzy, c-format
+msgid "package %s is not relocateable\n"
+msgstr "balík %s nie je nain¹talovaný\n"
+
+#: lib/rpminstall.c:261
+#, fuzzy, c-format
+msgid "error reading from file %s\n"
+msgstr "chyba pri vytváraní doèasného súboru %s"
+
+#: lib/rpminstall.c:266
+#, c-format
+msgid "file %s requires a newer version of RPM\n"
+msgstr ""
+
+#: lib/rpminstall.c:283
+#, 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:294
+msgid "failed dependencies:\n"
+msgstr "nevyrie¹ené závislosti:\n"
+
+#: lib/rpminstall.c:312
+msgid "installing binary packages\n"
+msgstr "in¹talujú sa binárne balíky\n"
+
+#: lib/rpminstall.c:397
+#, c-format
+msgid "searching for package %s\n"
+msgstr "vyhµadáva sa balík %s\n"
+
+#: lib/rpminstall.c:406
+#, c-format
+msgid "\"%s\" specifies multiple packages\n"
+msgstr "\"%s\" ¹pecifikuje viac balíkov\n"
+
+#: lib/rpminstall.c:432
+msgid "removing these packages would break dependencies:\n"
+msgstr "odstránenie týchto balíkov by poru¹ilo závislosti:\n"
+
+#: lib/rpminstall.c:459
+#, c-format
+msgid "cannot open %s\n"
+msgstr "nie je mo¾né otvori» %s\n"
+
+#: lib/rpminstall.c:464
+#, c-format
+msgid "Installing %s\n"
+msgstr "In¹taluje sa %s\n"
+
+#: lib/rpmlead.c:48
 #, c-format
 msgid "read failed: %s (%d)"
 msgstr "èítanie zlyhalo: %s (%d)"
 
-#: ../lib/rpmrc.c:178
+#: lib/rpmrc.c:177
 #, c-format
 msgid "missing second ':' at %s:%d"
 msgstr "chýbajúce druhé ':' na %s:%d"
 
-#: ../lib/rpmrc.c:181
+#: lib/rpmrc.c:180
 #, c-format
 msgid "missing architecture name at %s:%d"
 msgstr "chýba názov architektúry na %s:%d"
 
-#: ../lib/rpmrc.c:329
+#: lib/rpmrc.c:328
 #, c-format
 msgid "Incomplete data line at %s:%d"
 msgstr "Neúplný riadok údajov na %s:%d"
 
-#: ../lib/rpmrc.c:333
+#: lib/rpmrc.c:332
 #, c-format
 msgid "Too many args in data line at %s:%d"
 msgstr "Priveµa argumentov v riadku údajov na %s:%d"
 
-#: ../lib/rpmrc.c:340
+#: lib/rpmrc.c:339
 #, c-format
 msgid "Bad arch/os number: %s (%s:%d)"
 msgstr "Chybné èíslo arch/os: %s (%s:%d)"
 
-#: ../lib/rpmrc.c:374
+#: lib/rpmrc.c:373
 #, c-format
 msgid "Incomplete default line at %s:%d"
 msgstr "Neúplný implicitný riadok na %s:%d"
 
-#: ../lib/rpmrc.c:379
+#: lib/rpmrc.c:378
 #, c-format
 msgid "Too many args in default line at %s:%d"
 msgstr "Priveµa argumentov v implicitnom riadku na %s:%d"
 
-#: ../lib/rpmrc.c:562
+#: lib/rpmrc.c:561
 #, c-format
 msgid "Cannot expand %s"
 msgstr "Nie je mo¾né expandova» %s"
 
-#: ../lib/rpmrc.c:577
+#: lib/rpmrc.c:576
 #, c-format
 msgid "Unable to open %s for reading: %s."
 msgstr "Nie je mo¾né otvori» %s pre èítanie: %s."
 
-#: ../lib/rpmrc.c:611
+#: lib/rpmrc.c:608
 #, c-format
 msgid "Failed to read %s: %s."
 msgstr "Nie je mo¾né preèíta» %s: %s."
 
-#: ../lib/rpmrc.c:642
+#: lib/rpmrc.c:638
 #, c-format
 msgid "missing ':' at %s:%d"
 msgstr "chýbajúca ':' na %s:%d"
 
-#: ../lib/rpmrc.c:658 ../lib/rpmrc.c:716
+#: lib/rpmrc.c:655 lib/rpmrc.c:729
 #, c-format
 msgid "missing argument for %s at %s:%d"
 msgstr "chýbajúci argument pre %s na %s:%d"
 
-#: ../lib/rpmrc.c:672 ../lib/rpmrc.c:690
+#: lib/rpmrc.c:672 lib/rpmrc.c:694
 #, c-format
 msgid "%s expansion failed at %s:%d \"%s\""
 msgstr "expanzia %s zlyhala na %s:%d \"%s\""
 
-#: ../lib/rpmrc.c:678
+#: lib/rpmrc.c:680
 #, c-format
 msgid "cannot open %s at %s:%d"
 msgstr "nie je mo¾né otvori» %s na %s:%d"
 
-#: ../lib/rpmrc.c:706
+#: lib/rpmrc.c:721
 #, c-format
 msgid "missing architecture for %s at %s:%d"
 msgstr "chýbajúca architektúra pre %s na %s:%d"
 
-#: ../lib/rpmrc.c:773
+#: lib/rpmrc.c:788
 #, c-format
 msgid "bad option '%s' at %s:%d"
 msgstr "chybná voµba '%s' na %s:%d"
 
-#: ../lib/rpmrc.c:1109
+#: lib/rpmrc.c:1147
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr "Neznámy systém: %s\n"
 
-#: ../lib/rpmrc.c:1110
+#: lib/rpmrc.c:1148
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr "Kontaktujte prosím rpm-list@redhat.com\n"
 
-#: ../lib/signature.c:147
+#: lib/signature.c:106
+#, c-format
+msgid "sigsize         : %d\n"
+msgstr "veµkos» podpisu  : %d\n"
+
+#: lib/signature.c:107
+#, c-format
+msgid "Header + Archive: %d\n"
+msgstr "Hlavièka a archív: %d\n"
+
+#: lib/signature.c:108
+#, c-format
+msgid "expected size   : %d\n"
+msgstr "oèakávaná veµkos»: %d\n"
+
+#: lib/signature.c:112
+msgid "file is not regular -- skipping size check\n"
+msgstr "nejde o be¾ný súbor - kontrola veµkosti vynechaná\n"
+
+#: lib/signature.c:134
 msgid "No signature\n"
 msgstr "Podpis nie je k dispozícii\n"
 
-#: ../lib/signature.c:150
+#: lib/signature.c:137
 msgid "Old PGP signature\n"
 msgstr "Starý PGP podpis\n"
 
-#: ../lib/signature.c:163
+#: lib/signature.c:149
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr "Starý (iba interný) podpis! Ako ste sa k tomu dostali?!"
 
-#: ../lib/signature.c:167
+#: lib/signature.c:153
 msgid "New Header signature\n"
 msgstr "Nová hlavièka podpisu\n"
 
 #. 8-byte pad
-#: ../lib/signature.c:175 ../lib/signature.c:213
+#: lib/signature.c:160 lib/signature.c:202
 #, c-format
 msgid "Signature size: %d\n"
 msgstr "Veµkos» podpisu:   %d\n"
 
-#: ../lib/signature.c:176 ../lib/signature.c:214
+#: lib/signature.c:161 lib/signature.c:203
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr "Doplnenie podpisu: %d\n"
 
-#: ../lib/signature.c:306 ../lib/signature.c:812
-msgid "Couldn't exec pgp"
+#: lib/signature.c:266
+#, fuzzy, c-format
+msgid "Couldn't exec pgp (%s)"
 msgstr "Nie je mo¾né spusti» pgp"
 
-#: ../lib/signature.c:317
+#: lib/signature.c:277
 msgid "pgp failed"
 msgstr "pgp zlyhalo"
 
 #. PGP failed to write signature
 #. Just in case
-#: ../lib/signature.c:324
+#: lib/signature.c:284
 msgid "pgp failed to write signature"
 msgstr "pgp sa nepodarilo zapísa» podpis"
 
-#: ../lib/signature.c:329
+#: lib/signature.c:289
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "Veµkos» PGP podpisu: %d\n"
 
-#: ../lib/signature.c:340 ../lib/signature.c:416
+#: lib/signature.c:300 lib/signature.c:377
 msgid "unable to read the signature"
 msgstr "nie je mo¾né preèíta» podpis"
 
-#: ../lib/signature.c:345
+#: lib/signature.c:305
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "Preèítaný PGP podpis obsahuje %d bajtov\n"
 
-#: ../lib/signature.c:382 ../lib/signature.c:787
+#: lib/signature.c:343 lib/signature.c:686
 msgid "Couldn't exec gpg"
 msgstr "Nie je mo¾né spusti» gpg"
 
-#: ../lib/signature.c:393
+#: lib/signature.c:354
 msgid "gpg failed"
 msgstr "gpg zlyhalo"
 
 #. GPG failed to write signature
 #. Just in case
-#: ../lib/signature.c:400
+#: lib/signature.c:361
 msgid "gpg failed to write signature"
 msgstr "gpg sa nepodarilo zapísa» podpis"
 
-#: ../lib/signature.c:405
+#: lib/signature.c:366
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr "Veµkos» GPG podpisu: %d\n"
 
-#: ../lib/signature.c:421
+#: lib/signature.c:382
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr "Preèítaný GPG podpis obsahuje %d bajtov\n"
 
-#: ../lib/signature.c:436
-#, c-format
-msgid "sigsize         : %d\n"
-msgstr "veµkos» podpisu  : %d\n"
-
-#: ../lib/signature.c:437
-#, c-format
-msgid "Header + Archive: %d\n"
-msgstr "Hlavièka a archív: %d\n"
-
-#: ../lib/signature.c:438
-#, c-format
-msgid "expected size   : %d\n"
-msgstr "oèakávaná veµkos»: %d\n"
+#: lib/signature.c:409
+#, fuzzy
+msgid "Generating signature using PGP.\n"
+msgstr "Vytvára sa PGP podpis: %d\n"
 
-#: ../lib/signature.c:442
-msgid "file is not regular -- skipping size check\n"
-msgstr "nejde o be¾ný súbor - kontrola veµkosti vynechaná\n"
+#: lib/signature.c:415
+#, fuzzy
+msgid "Generating signature using GPG.\n"
+msgstr "Vytvára sa PGP podpis: %d\n"
 
-#: ../lib/signature.c:560 ../lib/signature.c:607
+#: lib/signature.c:492 lib/signature.c:554
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr "Nie je mo¾né spusti» pgp. Pou¾ite --nopgp pre vynechanie PGP kontrol."
 
-#: ../lib/signature.c:605 ../lib/signature.c:677
+#: lib/signature.c:552 lib/signature.c:625
 msgid "exec failed!\n"
 msgstr "vykonanie zlyhalo!\n"
 
-#: ../lib/signature.c:679
+#: lib/signature.c:627
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr "Nie je mo¾né spusti» gpg. Pou¾ite --nogpg pre vynechanie GPG kontrol."
 
-#: ../lib/signature.c:716
+#: lib/signature.c:715
+msgid "Couldn't exec pgp"
+msgstr "Nie je mo¾né spusti» pgp"
+
+#. @notreached@
+#. This case should have been screened out long ago.
+#: lib/signature.c:719 lib/signature.c:772
+msgid "Invalid %%_signature spec in macro file"
+msgstr "Chybná ¹pecifikácia podpisu %%_signature v makro-súbore"
+
+#: lib/signature.c:752
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr "Musíte nastavi» \"%%gpg_name\" vo va¹om makro-súbore"
 
-#: ../lib/signature.c:728
+#: lib/signature.c:764
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr "Musíte nastavi» \"%%pgp_name\" vo va¹om makro-súbore"
 
-#. Currently the calling function (rpm.c:main) is checking this and
-#. * doing a better job.  This section should never be accessed.
-#.
-#: ../lib/signature.c:736 ../lib/signature.c:816
-msgid "Invalid %%_signature spec in macro file"
-msgstr "Chybná ¹pecifikácia podpisu %%_signature v makro-súbore"
-
-#: ../lib/transaction.c:793
+#: lib/transaction.c:363
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "presúva sa %s do %s\n"
 
-#: ../lib/transaction.c:799
+#: lib/transaction.c:370
 #, c-format
 msgid "excluding %s\n"
 msgstr "vynecháva sa %s\n"
 
-#: ../lib/transaction.c:887
+#: lib/transaction.c:489
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s vynechané kvôli príznaku missingok\n"
 
-#: ../lib/uninstall.c:51
+#: lib/uninstall.c:37
+#, c-format
+msgid "cannot remove %s - directory not empty"
+msgstr "nie je mo¾né odstráni» %s - adresár nie je prázdny"
+
+#: lib/uninstall.c:40
+#, c-format
+msgid "rmdir of %s failed: %s"
+msgstr "rmdir %s zlyhalo: %s"
+
+#: lib/uninstall.c:48
+#, c-format
+msgid "removal of %s failed: %s"
+msgstr "odstránenie %s zlyhalo: %s"
+
+#: lib/uninstall.c:97
 #, c-format
 msgid "cannot read packages named %s for uninstall"
 msgstr "nie je mo¾né preèíta» balíky %s pre odin¹talovanie"
 
-#: ../lib/uninstall.c:79
+#: lib/uninstall.c:130
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr "budú sa odstraòova» súbory test = %d\n"
 
-#: ../lib/uninstall.c:124
+#: lib/uninstall.c:191
 msgid "running postuninstall script (if any)\n"
 msgstr "vykonávajú sa postdein¹talaèné skripty (ak existujú)\n"
 
-#: ../lib/uninstall.c:138
+#: lib/uninstall.c:204
 msgid "removing database entry\n"
 msgstr "odstraòuje sa záznam z databázy\n"
 
-#: ../lib/uninstall.c:289
+#: lib/uninstall.c:365
 msgid "execution of script failed"
 msgstr "vykonanie skriptu zlyhalo"
 
-#: ../lib/uninstall.c:348
+#: lib/url.c:144
 #, c-format
-msgid "cannot remove %s - directory not empty"
-msgstr "nie je mo¾né odstráni» %s - adresár nie je prázdny"
+msgid "Password for %s@%s: "
+msgstr "Heslo pre %s@%s: "
 
-#: ../lib/uninstall.c:351
+#: lib/url.c:168 lib/url.c:194
 #, c-format
-msgid "rmdir of %s failed: %s"
-msgstr "rmdir %s zlyhalo: %s"
+msgid "error: %sport must be a number\n"
+msgstr "chyba: %sport musí by» èíslo\n"
+
+#: lib/url.c:279
+msgid "url port must be a number\n"
+msgstr "url port musí by» èíslo\n"
 
-#: ../lib/uninstall.c:359
+#. XXX PARANOIA
+#: lib/url.c:317
 #, c-format
-msgid "removal of %s failed: %s"
-msgstr "odstránenie %s zlyhalo: %s"
+msgid "logging into %s as %s, pw %s\n"
+msgstr "prihlasuje sa na %s ako %s, heslo %s\n"
 
-#: ../lib/verify.c:36
+#: lib/url.c:446
+#, c-format
+msgid "failed to create %s\n"
+msgstr "nepodarilo sa vytvori» %s\n"
+
+#: lib/verify.c:36
 #, fuzzy
 msgid "don't verify files in package"
 msgstr "zobrazi» súbory v balíku"
 
-#: ../lib/verify.c:206
+#: lib/verify.c:206
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 "v balíku chýba tak meno pou¾ívateµa, ako aj zoznamy identifikácií (nemalo by "
 "sa nikdy sta»)"
 
-#: ../lib/verify.c:224
+#: lib/verify.c:224
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 "v balíku chýba tak meno skupiny, ako aj zoznamy identifikácií (nemalo by sa "
 "nikdy sta»)"
 
-#: ../lib/verify.c:257
+#: lib/verify.c:257
 #, c-format
 msgid "missing    %s\n"
 msgstr "chýbajúce    %s\n"
 
-#: ../lib/verify.c:321
+#: lib/verify.c:319
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "Nevyrie¹ené závislosti pre %s-%s-%s: "
 
-#: ../lib/verify.c:369
+#: lib/verify.c:367
 #, fuzzy
 msgid "rpmVerify: rpmdbOpen() failed\n"
 msgstr "rpmQuery: rpmdbOpen() zlyhalo\n"
 
+#, fuzzy
+#~ msgid "failed build prerequisites:\n"
+#~ msgstr "nevyrie¹ené závislosti:\n"
+
+#~ msgid "File contains non-printable characters(%c): %s\n"
+#~ msgstr "Súbor obsahuje netlaèiteµné znaky(%c): %s\n"
+
+#~ msgid "Couldn't read the header/archive"
+#~ msgstr "Nie je mo¾né preèíta» hlavièku/archív"
+
+#~ msgid "Couldn't write header/archive to temp file"
+#~ msgstr "Nie je mo¾né zapísa» hlavièku/archív do doèasného súboru"
+
+#~ msgid "Couldn't read sigtarget"
+#~ msgstr "Nie je mo¾né preèíta» cieµ podpisu"
+
+#~ msgid "Couldn't write package"
+#~ msgstr "Nie je mo¾né zapísa» balík"
+
+#~ msgid "Unable to write %s"
+#~ msgstr "Nie je mo¾né zapísa» %s"
+
+#~ msgid "unexpected query specifiers"
+#~ msgstr "neoèakávané ¹pecifikátory otázky"
+
+#~ msgid "--nofiles may only be specified during package verification"
+#~ msgstr "--nofiles mô¾e by» pou¾ité iba poèas overenia balíka"
+
+#~ msgid "--clean may only be used with -b and -t"
+#~ msgstr "--clean mô¾e by» pou¾ité iba s -b a -t"
+
+#~ msgid "--rmsource may only be used with -b and -t"
+#~ msgstr "--rmsource mô¾e by» pou¾ité iba s -b a -t"
+
+#~ msgid "--short-circuit may only be used during package building"
+#~ msgstr "--short-circuit mô¾e by» pou¾ité iba poèas zostavenia balíka"
+
+#~ msgid "--short-circuit may only be used with -bc, -bi, -bs, -tc -ti, or -ts"
+#~ msgstr ""
+#~ "--short-circuit mô¾e by» pou¾ité iba s -bc, -bi, -bs, -tc -ti alebo -ts"
+
+#~ msgid ""
+#~ "Use `%%_signature pgp5' instead of `%%_signature pgp' in macro file.\n"
+#~ msgstr ""
+#~ "Pou¾ite `%%_signature pgp5' namiesto `%%_signature pgp' v makro-súbore.\n"
+
+#~ msgid "pgp version 5 not found: "
+#~ msgstr "pgp verzie 5 nebolo nájdené: "
+
+#~ msgid ""
+#~ "Use `%%_signature pgp' instead of `%%_signature pgp5' in macro file.\n"
+#~ msgstr ""
+#~ "Pou¾ite `%%_signature pgp' namiesto `%%_signature pgp5' v makro-súbore.\n"
+
+#~ msgid "parse error in tokenizer"
+#~ msgstr "chyba pri analýze (parse error in tokenizer)"
+
+#~ msgid "No files after %%defattr(): %s"
+#~ msgstr "®iadne súbory po %%defattr(): %s"
+
+#~ msgid "Bad %%config() syntax: %s"
+#~ msgstr "Chybná syntax %%config(): %s"
+
+#~ msgid "Invalid %%config token: %s"
+#~ msgstr "Chybný %%config prvok: %s"
+
+#~ msgid "Bad %%lang() syntax: %s"
+#~ msgstr "Chybná syntax %%lang(): %s"
+
+#~ msgid "%%lang() entries are 2 characters: %s"
+#~ msgstr "Záznamy %%lang() sú dvojznakové: %s"
+
+#~ msgid "Finding provides...\n"
+#~ msgstr "Zis»ujú sa poskytované vlastnosti...\n"
+
+#~ msgid "Failed to find requires"
+#~ msgstr "Nepodarilo sa zisti» po¾adované vlastnosti"
+
+#~ msgid "Provides:"
+#~ msgstr "Poskytuje:"
+
+#~ msgid "Prereqs:"
+#~ msgstr "Predpoklady:"
+
+#~ msgid "Requires:"
+#~ msgstr "Po¾aduje:"
+
+#~ msgid "line %d: No file names in Conflicts: %s"
+#~ msgstr "riadok %d: Conflicts: neobsahuje ¾iadne názvy súborov: %s"
+
+#~ msgid "line %d: No versions in PreReq: %s"
+#~ msgstr "riadok %d: PreReq: neobsahuje verzie : %s"
+
+#~ msgid "dependencies: looking for %s\n"
+#~ msgstr "závislosti: hµadá sa %s\n"
+
+#~ msgid "free list corrupt (%u)- contact rpm-list@redhat.com\n"
+#~ msgstr ""
+#~ "po¹kodený zoznam voµných blokov (%u) - kontaktujte rpm-list@redhat.com\n"
+
 #~ msgid "%s is not an RPM\n"
 #~ msgstr "%s nie je RPM\n"
 
index d0a6faf..804525c 100644 (file)
--- a/po/sr.po
+++ b/po/sr.po
@@ -1,6 +1,6 @@
 msgid ""
 msgstr ""
-"POT-Creation-Date: 1999-05-11 12:17-0400\n"
+"POT-Creation-Date: 1999-09-29 19:30-0400\n"
 "Content-Type: text/plain; charset=\n"
 "Date: 1998-05-02 21:41:47-0400\n"
 "From: Erik Troan <ewt@lacrosse.redhat.com>\n"
@@ -18,859 +18,599 @@ msgstr ""
 "/home/ewt/redhat/rpm/lib/package.c /home/ewt/redhat/rpm/lib/rpmlead.c "
 "/home/ewt/redhat/rpm/lib/rpmrc.c\n"
 
-#: ../build.c:24 ../install.c:221 ../install.c:377
+#: build.c:23 lib/rpminstall.c:222 lib/rpminstall.c:382
 #, fuzzy, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr "gre¹ka: ne mogu da otvorim %s%s/packages.rpm\n"
 
-#: ../build.c:34
+#: build.c:33
 #, fuzzy
-msgid "failed build prerequisites:\n"
+msgid "failed build dependencies:\n"
 msgstr "lo¹e meðuzavisnosti:\n"
 
-#: ../build.c:83 ../build.c:96
+#: build.c:61
+#, fuzzy, c-format
+msgid "Unable to open spec file: %s\n"
+msgstr "Ne mogu da otvorim %s za èitanje: %s"
+
+#: build.c:117 build.c:130
 #, fuzzy, c-format
 msgid "Failed to open tar pipe: %s\n"
 msgstr "neuspelo otvaranje %s\n"
 
 #. Give up
-#: ../build.c:104
+#: build.c:138
 #, fuzzy, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "Neuspelo èitanje %s: %s."
 
-#: ../build.c:129
+#: build.c:163
 #, fuzzy, c-format
 msgid "Failed to rename %s to %s: %s\n"
 msgstr "Neuspelo èitanje %s: %s."
 
-#: ../build.c:167
+#: build.c:201
 #, c-format
 msgid "File is not a regular file: %s\n"
 msgstr ""
 
-#: ../build.c:172
+#: build.c:207
 #, fuzzy, c-format
-msgid "Unable to open spec file: %s\n"
-msgstr "Ne mogu da otvorim %s za èitanje: %s"
-
-#: ../build.c:180
-#, c-format
-msgid "File contains non-printable characters(%c): %s\n"
-msgstr ""
+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:233
+#: build.c:258
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr ""
 
-#: ../build.c:242
+#: build.c:267
 #, fuzzy, c-format
 msgid "Building for target %s\n"
 msgstr "gre¹ka potrage za paketom %s\n"
 
-#: ../build.c:286
+#: build.c:311
 msgid "buildroot already specified"
 msgstr ""
 
-#: ../build.c:292
+#: build.c:317
 msgid "--buildarch has been obsoleted.  Use the --target option instead.\n"
 msgstr ""
 
-#: ../build.c:296
+#: build.c:321
 msgid "--buildos has been obsoleted.  Use the --target option instead.\n"
 msgstr ""
 
-#: ../build.c:317
+#: build.c:342
 #, fuzzy
 msgid "override build architecture"
 msgstr "nemoj proveravati arhitekturu paketa"
 
-#: ../build.c:319
+#: build.c:344
 #, fuzzy
 msgid "override build operating system"
 msgstr "nemoj proveravati operativni sistem za paket"
 
-#: ../build.c:321
+#: build.c:346
 #, fuzzy
 msgid "override build root"
 msgstr "koristi <dir> kao korenski katalog kod kreiranja"
 
-#: ../build.c:323 ../rpm.c:458
+#: build.c:348 rpm.c:457
 msgid "remove build tree when done"
 msgstr "ukloni stablo direktorijuma po zavr¹etku"
 
-#: ../build.c:325
+#: build.c:350
 #, fuzzy
 msgid "do not execute any stages of the build"
 msgstr "nemoj izvr¹iti nijednu fazu"
 
-#: ../build.c:327
+#: build.c:352
 msgid "do not accept I18N msgstr's from specfile"
 msgstr ""
 
-#: ../build.c:329
+#: build.c:354
 #, fuzzy
 msgid "remove sources when done"
 msgstr "ukloni izvorne datoteke i datoteku specifikacije po zavr¹etku"
 
-#: ../build.c:331
+#: build.c:356
 #, fuzzy
 msgid "remove specfile when done"
 msgstr "ukloni izvorne datoteke i datoteku specifikacije po zavr¹etku"
 
-#: ../build.c:333 ../rpm.c:456
+#: build.c:358 rpm.c:455
 msgid "skip straight to specified stage (only for c,i)"
 msgstr "idi pravo do odreðene faze (samo za k,i)"
 
-#: ../build.c:335
+#: build.c:360
 msgid "override target platform"
 msgstr ""
 
-#: ../build.c:337
+#: build.c:362
 msgid "lookup I18N strings in specfile catalog"
 msgstr ""
 
-#: ../checksig.c:27 ../checksig.c:166
-#, c-format
-msgid "%s: Open failed\n"
-msgstr "%s: Neuspelo otvaranje\n"
-
-#: ../checksig.c:31 ../checksig.c:171
-#, c-format
-msgid "%s: readLead failed\n"
-msgstr "%s: Neuspeo 'readLead'\n"
-
-#: ../checksig.c:35
-#, c-format
-msgid "%s: Can't sign v1.0 RPM\n"
-msgstr "%s: Ne mogu da potpi¹em v1.0 RPM\n"
-
-#: ../checksig.c:39
-#, c-format
-msgid "%s: Can't re-sign v2.0 RPM\n"
-msgstr "%s: Ne mogu da ponovo potpi¹em v2.0 RPM\n"
-
-#: ../checksig.c:43 ../checksig.c:181
-#, c-format
-msgid "%s: rpmReadSignature failed\n"
-msgstr "%s: Neuspelo 'rpmReadSignature'\n"
-
-#: ../checksig.c:56 ../checksig.c:195
-msgid "Couldn't read the header/archive"
-msgstr "Ne mogu da proèitam zaglavlje/arhivu"
-
-#: ../checksig.c:63
-msgid "Couldn't write header/archive to temp file"
-msgstr "Ne mogu da upi¹em zaglavlje/arhivu u privremenu datoteku"
-
-#: ../build/pack.c:330 ../checksig.c:91
-#, fuzzy, c-format
-msgid "Generating signature: %d\n"
-msgstr "napravi PGP potpis"
-
-#: ../checksig.c:114
-msgid "Couldn't read sigtarget"
-msgstr "Ne mogu da proèitam 'sigtarget'"
-
-#: ../checksig.c:123
-msgid "Couldn't write package"
-msgstr "Ne mogu da upi¹em paket"
-
-#: ../checksig.c:176
-#, c-format
-msgid "%s: No signature available (v1.0 RPM)\n"
-msgstr "%s: Potpis nije na raspolaganju (RPM v1.0)\n"
-
-#: ../checksig.c:186
-#, c-format
-msgid "%s: No signature available\n"
-msgstr "%s: Potpis nije na raspolaganju\n"
-
-#: ../checksig.c:202
-#, c-format
-msgid "Unable to write %s"
-msgstr "Ne mogu da upi¹em %s"
-
-#: ../checksig.c:328
-msgid "NOT OK"
-msgstr ""
-
-#: ../checksig.c:329 ../checksig.c:343
-#, fuzzy
-msgid " (MISSING KEYS:"
-msgstr " (NEDOSTAJUÆI KLJUÈEVI)"
-
-#: ../checksig.c:331 ../checksig.c:345
-msgid ") "
-msgstr ""
-
-#: ../checksig.c:332 ../checksig.c:346
-msgid " (UNTRUSTED KEYS:"
-msgstr ""
-
-#: ../checksig.c:334 ../checksig.c:348
-msgid ")"
-msgstr ""
-
-#: ../checksig.c:342
-msgid "OK"
-msgstr ""
-
-#: ../convertdb.c:38
+#: convertdb.c:39
 #, fuzzy
 msgid "RPM database already exists"
 msgstr "privremena baza podataka %s veæ postoji"
 
-#: ../convertdb.c:43
+#: convertdb.c:44
 msgid "Old db is missing"
 msgstr ""
 
-#: ../convertdb.c:54
+#: convertdb.c:55
 msgid "failed to create RPM database /var/lib/rpm"
 msgstr ""
 
-#: ../convertdb.c:60
+#: convertdb.c:61
 msgid "Old db is corrupt"
 msgstr ""
 
-#: ../convertdb.c:69
+#: convertdb.c:70
 #, c-format
 msgid "oldrpmdbGetPackageInfo failed &olddb = %p olddb.packages = %p\n"
 msgstr ""
 
-#: ../convertdb.c:201
+#: convertdb.c:204
 msgid "rpmconvert: no arguments expected"
 msgstr ""
 
-#: ../convertdb.c:207
+#: convertdb.c:210
 msgid "rpmconvert 1.0 - converting database in /var/lib/rpm\n"
 msgstr ""
 
-#: ../ftp.c:642
-msgid "Success"
-msgstr ""
-
-#: ../ftp.c:645
-#, fuzzy
-msgid "Bad server response"
-msgstr "Lo¹ odgovor FTP servera"
-
-#: ../ftp.c:648
-#, fuzzy
-msgid "Server IO error"
-msgstr "Ulazno/izlazna FTP gre¹ka"
-
-#: ../ftp.c:651
-#, fuzzy
-msgid "Server timeout"
-msgstr "Tajm-aut FTP servera"
-
-#: ../ftp.c:654
-#, fuzzy
-msgid "Unable to lookup server host address"
-msgstr "Ne mogu da odredim host adresu FTP servera"
-
-#: ../ftp.c:657
-#, fuzzy
-msgid "Unable to lookup server host name"
-msgstr "Ne mogu da odredim ime FTP hosta"
-
-#: ../ftp.c:660
-#, fuzzy
-msgid "Failed to connect to server"
-msgstr "Ne mogu da se pove¾em sa FTP serverom"
-
-#: ../ftp.c:663
-#, fuzzy
-msgid "Failed to establish data connection to server"
-msgstr "Ne mogu da uspostavim vezu podataka sa FTP serverom"
-
-#: ../ftp.c:666
-msgid "IO error to local file"
-msgstr "Ulazno/izlazna gre¹ka kod lokalne datoteke"
-
-#: ../ftp.c:669
-msgid "Error setting remote server to passive mode"
-msgstr "Gre¹ka kod stavljanja udaljenog servera u pasivni re¾im"
-
-#: ../ftp.c:672
-msgid "File not found on server"
-msgstr "Datoteka nije pronaðena na serveru"
-
-#: ../ftp.c:675
-msgid "Abort in progress"
-msgstr ""
-
-#: ../ftp.c:679
-#, fuzzy
-msgid "Unknown or unexpected error"
-msgstr "Neoèekivana ili nepoznata FTP gre¹ka"
-
-#: ../install.c:127
-#, fuzzy
-msgid "counting packages to install\n"
-msgstr "nedostaje paket za instalaciju"
-
-#: ../install.c:131
-#, fuzzy, c-format
-msgid "found %d packages\n"
-msgstr "upit nad svim paketima"
-
-#: ../install.c:140
-#, fuzzy
-msgid "looking for packages to download\n"
-msgstr "gre¹ka kod potrage za paketom %s\n"
-
-#: ../install.c:151
-#, c-format
-msgid "Retrieving %s\n"
-msgstr "Pribavljam %s\n"
-
-#: ../install.c:160
-#, c-format
-msgid " ... as %s\n"
-msgstr ""
-
-#: ../install.c:164
-#, fuzzy, c-format
-msgid "skipping %s - transfer failed - %s\n"
-msgstr "gre¹ka: preskaèem %s - neuspelo preno¹enje - %s\n"
-
-#: ../install.c:181
-#, c-format
-msgid "retrieved %d packages\n"
-msgstr ""
-
-#: ../install.c:190 ../install.c:327
-#, fuzzy, c-format
-msgid "cannot open file %s\n"
-msgstr "Ne mogu da otvorim datoteku %s: "
-
-#: ../install.c:202 ../lib/query.c:569
-#, c-format
-msgid "%s does not appear to be a RPM package\n"
-msgstr "%s ne lièi na RPM paket\n"
-
-#: ../install.c:206 ../install.c:464
-#, fuzzy, c-format
-msgid "%s cannot be installed\n"
-msgstr "gre¹ka: %s se ne mo¾e instalirati\n"
-
-#: ../install.c:242
-#, fuzzy, c-format
-msgid "package %s is not relocateable\n"
-msgstr "paket %s nije instaliran\n"
-
-#: ../install.c:254
-#, fuzzy, c-format
-msgid "error reading from file %s\n"
-msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
-
-#: ../install.c:257
-#, c-format
-msgid "file %s requires a newer version of RPM\n"
-msgstr ""
-
-#: ../install.c:272
-#, fuzzy, c-format
-msgid "found %d source and %d binary packages\n"
-msgstr "grupa %s ne sadr¾i nijedan paket\n"
-
-#: ../install.c:282
-msgid "failed dependencies:\n"
-msgstr "lo¹e meðuzavisnosti:\n"
-
-#: ../install.c:300
-#, fuzzy
-msgid "installing binary packages\n"
-msgstr "instaliraj paket"
-
-#: ../install.c:388 ../lib/query.c:717
-#, c-format
-msgid "package %s is not installed\n"
-msgstr "paket %s nije instaliran\n"
-
-#: ../install.c:392
-#, fuzzy, c-format
-msgid "searching for package %s\n"
-msgstr "gre¹ka potrage za paketom %s\n"
-
-#: ../install.c:401
-#, c-format
-msgid "\"%s\" specifies multiple packages\n"
-msgstr "\"%s\" odreðuje vi¹e paketa\n"
-
-#: ../install.c:427
-msgid "removing these packages would break dependencies:\n"
-msgstr "uklanjanje oviha paketa æe naru¹iti zavisnosti:\n"
-
-#: ../install.c:454
-#, fuzzy, c-format
-msgid "cannot open %s\n"
-msgstr "gre¹ka: ne mogu da otvorim %s\n"
-
-#: ../install.c:459
-#, c-format
-msgid "Installing %s\n"
-msgstr "Instaliram %s\n"
-
-#: ../install.c:503
-#, c-format
-msgid " is needed by %s-%s-%s\n"
-msgstr " je potreban paketu %s-%s-%s\n"
-
-#: ../install.c:506
-#, c-format
-msgid " conflicts with %s-%s-%s\n"
-msgstr " se sudara sa %s-%s-%s\n"
-
-#: ../oldrpmdb.c:454
+#: oldrpmdb.c:454
 #, c-format
 msgid "pulling %s from database\n"
 msgstr ""
 
-#: ../oldrpmdb.c:461
+#: oldrpmdb.c:461
 #, fuzzy
 msgid "package not found in database"
 msgstr "paket %s nije naðen u %s"
 
-#: ../oldrpmdb.c:522
+#: oldrpmdb.c:522
 msgid "no copyright!\n"
 msgstr ""
 
-#: ../rpm.c:160
+#: rpm.c:159
 #, c-format
 msgid "rpm: %s\n"
 msgstr ""
 
-#: ../rpm.c:171
+#: rpm.c:170
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM verzija %s\n"
 
-#: ../rpm.c:175
+#: rpm.c:174
 msgid "Copyright (C) 1998 - Red Hat Software"
 msgstr ""
 
-#: ../rpm.c:176
-msgid ""
-"This may be freely redistributed under the terms of the GNU GPL"
+#: rpm.c:175
+msgid "This may be freely redistributed under the terms of the GNU GPL"
 msgstr "Mo¾ete slobodno distribuirati dalje pod odredbama GNU GPL"
 
-#: ../rpm.c:185
+#: rpm.c:183
 msgid "usage: rpm {--help}"
 msgstr "kori¹æenje: {rpm --help}"
 
-#: ../rpm.c:186
+#: rpm.c:184
 msgid "       rpm {--version}"
 msgstr ""
 
-#: ../rpm.c:187
+#: rpm.c:185
 msgid "       rpm {--initdb}   [--dbpath <dir>]"
 msgstr ""
 
-#: ../rpm.c:188
+#: rpm.c:186
 msgid ""
 "       rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 
-#: ../rpm.c:189
+#: rpm.c:187
 msgid "                        [--replacepkgs] [--replacefiles] [--root <dir>]"
 msgstr ""
 
-#: ../rpm.c:190
+#: rpm.c:188
 msgid "                        [--excludedocs] [--includedocs] [--noscripts]"
 msgstr ""
 
-#: ../rpm.c:191
+#: rpm.c:189
 msgid ""
 "                        [--rcfile <file>] [--ignorearch] [--dbpath <dir>]"
 msgstr ""
 
-#: ../rpm.c:192
+#: rpm.c:190
 msgid ""
 "                        [--prefix <dir>] [--ignoreos] [--nodeps] [--allfiles]"
 msgstr ""
 
-#: ../rpm.c:193
+#: rpm.c:191
 msgid ""
 "                        [--ftpproxy <host>] [--ftpport <port>] [--justdb]"
 msgstr ""
 
-#: ../rpm.c:194 ../rpm.c:203 ../rpm.c:212
+#: rpm.c:192 rpm.c:201 rpm.c:210
 #, fuzzy
 msgid "                        [--httpproxy <host>] [--httpport <port>] "
 msgstr "\t\t\t   paket1 ...paketN"
 
-#: ../rpm.c:195 ../rpm.c:205
+#: rpm.c:193 rpm.c:203
 msgid "                        [--noorder] [--relocate oldpath=newpath]"
 msgstr ""
 
-#: ../rpm.c:196
+#: rpm.c:194
 #, fuzzy
 msgid ""
 "                        [--badreloc] [--notriggers] [--excludepath <path>]"
 msgstr "\t\t\t[--badreloc] datoteka1.rpm ... datotekaN.rpm"
 
-#: ../rpm.c:197
+#: rpm.c:195
 #, fuzzy
 msgid "                        [--ignoresize] file1.rpm ... fileN.rpm"
 msgstr "\t\t\t[--badreloc] datoteka1.rpm ... datotekaN.rpm"
 
-#: ../rpm.c:198
+#: rpm.c:196
 msgid ""
 "       rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 
-#: ../rpm.c:199
+#: rpm.c:197
 msgid "                        [--oldpackage] [--root <dir>] [--noscripts]"
 msgstr ""
 
-#: ../rpm.c:200
+#: rpm.c:198
 msgid ""
 "                        [--excludedocs] [--includedocs] [--rcfile <file>]"
 msgstr ""
 
-#: ../rpm.c:201
+#: rpm.c:199
 msgid ""
 "                        [--ignorearch]  [--dbpath <dir>] [--prefix <dir>] "
 msgstr ""
 
-#: ../rpm.c:202
+#: rpm.c:200
 msgid "                        [--ftpproxy <host>] [--ftpport <port>]"
 msgstr ""
 
-#: ../rpm.c:204
+#: rpm.c:202
 msgid "                        [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
 msgstr ""
 
-#: ../rpm.c:206
+#: rpm.c:204
 #, fuzzy
 msgid ""
 "                        [--badreloc] [--excludepath <path>] [--ignoresize]"
 msgstr "\t\t\t   paket1 ...paketN"
 
-#: ../rpm.c:207
+#: rpm.c:205
 #, fuzzy
 msgid "                        file1.rpm ... fileN.rpm"
 msgstr "\t\t\t[--badreloc] datoteka1.rpm ... datotekaN.rpm"
 
-#: ../rpm.c:208
+#: rpm.c:206
 msgid "       rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]"
 msgstr ""
 
-#: ../rpm.c:209
+#: rpm.c:207
 msgid "                        [--scripts] [--root <dir>] [--rcfile <file>]"
 msgstr ""
 
-#: ../rpm.c:210
+#: rpm.c:208
 msgid "                        [--whatprovides] [--whatrequires] [--requires]"
 msgstr ""
 
-#: ../rpm.c:211
+#: rpm.c:209
 msgid ""
 "                        [--triggeredby] [--ftpuseport] [--ftpproxy <host>]"
 msgstr ""
 
-#: ../rpm.c:213
+#: rpm.c:211
 msgid ""
 "                        [--ftpport <port>] [--provides] [--triggers] [--dump]"
 msgstr ""
 
-#: ../rpm.c:214
+#: rpm.c:212
 #, fuzzy
 msgid "                        [--changelog] [--dbpath <dir>] [targets]"
 msgstr "\t\t\t   paket1 ...paketN"
 
-#: ../rpm.c:215
+#: rpm.c:213
 msgid "       rpm {--verify -V -y} [-afpg] [--root <dir>] [--rcfile <file>]"
 msgstr ""
 
-#: ../rpm.c:216
+#: rpm.c:214
 msgid ""
 "                        [--dbpath <dir>] [--nodeps] [--nofiles] [--noscripts]"
 msgstr ""
 
-#: ../rpm.c:217
+#: rpm.c:215
 msgid "                        [--nomd5] [targets]"
 msgstr ""
 
-#: ../rpm.c:218
+#: rpm.c:216
 msgid "       rpm {--setperms} [-afpg] [target]"
 msgstr ""
 
-#: ../rpm.c:219
+#: rpm.c:217
 msgid "       rpm {--setugids} [-afpg] [target]"
 msgstr ""
 
-#: ../rpm.c:220
+#: rpm.c:218
+#, fuzzy
+msgid "       rpm {--freshen -F} file1.rpm ... fileN.rpm"
+msgstr "\t\t\t[--badreloc] datoteka1.rpm ... datotekaN.rpm"
+
+#: rpm.c:219
 msgid "       rpm {--erase -e} [--root <dir>] [--noscripts] [--rcfile <file>]"
 msgstr ""
 
-#: ../rpm.c:221
+#: rpm.c:220
 msgid "                        [--dbpath <dir>] [--nodeps] [--allmatches]"
 msgstr ""
 
-#: ../rpm.c:222
+#: rpm.c:221
 #, fuzzy
 msgid ""
 "                        [--justdb] [--notriggers] rpackage1 ... packageN"
 msgstr "\t\t\t   paket1 ...paketN"
 
-#: ../rpm.c:223
+#: rpm.c:222
 msgid ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile  <file>]"
 msgstr ""
 
-#: ../rpm.c:224
+#: rpm.c:223
 #, fuzzy
 msgid "                        [--sign] [--nobuild] [--timecheck <s>] ]"
 msgstr "\t\t\t   paket1 ...paketN"
 
-#: ../rpm.c:225
+#: rpm.c:224
 #, fuzzy
 msgid "                        [--target=platform1[,platform2...]]"
 msgstr "\t\t\t[--badreloc] datoteka1.rpm ... datotekaN.rpm"
 
-#: ../rpm.c:226
+#: rpm.c:225
 #, fuzzy
 msgid "                        [--rmsource] specfile"
 msgstr "\t\t\t[--badreloc] datoteka1.rpm ... datotekaN.rpm"
 
-#: ../rpm.c:227
+#: rpm.c:226
 msgid "       rpm {--rmsource} [--rcfile <file>] [-v] specfile"
 msgstr ""
 
-#: ../rpm.c:228
+#: rpm.c:227
 msgid ""
 "       rpm {--rebuild} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 
-#: ../rpm.c:229
+#: rpm.c:228
 msgid ""
 "       rpm {--recompile} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 
-#: ../rpm.c:230
+#: rpm.c:229
 msgid "       rpm {--resign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr "\trpm {--resign} [--rcfile <datoteka>] paket1 paket2 ... paketN"
 
-#: ../rpm.c:231
+#: rpm.c:230
 msgid "       rpm {--addsign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr "\trpm {--addsign} [--rcfile <datoteka>] paket1 paket2 ... paketN"
 
-#: ../rpm.c:232
+#: rpm.c:231
 #, fuzzy
 msgid ""
 "       rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile <file>]"
 msgstr "\trpm {--checksig -K} [--nopgp] [--nomd5] [--rcfile <datoteka>]"
 
-#: ../rpm.c:233
+#: rpm.c:232
 msgid "                           package1 ... packageN"
 msgstr "\t\t\t   paket1 ...paketN"
 
-#: ../rpm.c:234
+#: rpm.c:233
 msgid "       rpm {--rebuilddb} [--rcfile <file>] [--dbpath <dir>]"
 msgstr ""
 
-#: ../rpm.c:235
+#: rpm.c:234
 msgid "       rpm {--querytags}"
 msgstr ""
 
-#: ../rpm.c:269
+#: rpm.c:268
 msgid "usage:"
 msgstr "kori¹æenje:"
 
-#: ../rpm.c:271
+#: rpm.c:270
 msgid "print this message"
 msgstr "¹tampaj ovu poruku"
 
-#: ../rpm.c:273
+#: rpm.c:272
 msgid "print the version of rpm being used"
 msgstr "napi¹i verziju rpm-a koja se koristi"
 
-#: ../rpm.c:274
+#: rpm.c:273
 msgid "   all modes support the following arguments:"
 msgstr "   svi re¾imi podr¾avaju sledeæe argumente:"
 
-#: ../rpm.c:275
+#: rpm.c:274
 msgid "      --rcfile <file>     "
 msgstr ""
 
-#: ../rpm.c:276
+#: rpm.c:275
 msgid "use <file> instead of /etc/rpmrc and $HOME/.rpmrc"
 msgstr "koristi <datoteku> umesto /etc/rpmrc i $HOME/.rpmrc"
 
-#: ../rpm.c:278
+#: rpm.c:277
 msgid "be a little more verbose"
 msgstr "budi malko prièljiviji"
 
-#: ../rpm.c:280
+#: rpm.c:279
 msgid "be incredibly verbose (for debugging)"
 msgstr "budi neverovatno prièljiv (zbog nala¾enja gre¹aka)"
 
-#: ../rpm.c:282
+#: rpm.c:281
 msgid "query mode"
 msgstr "re¾im upita"
 
-#: ../rpm.c:283 ../rpm.c:345 ../rpm.c:409 ../rpm.c:437
+#: rpm.c:282 rpm.c:344 rpm.c:408 rpm.c:436
 msgid "      --root <dir>        "
 msgstr ""
 
-#: ../rpm.c:284 ../rpm.c:346 ../rpm.c:410 ../rpm.c:438 ../rpm.c:500
+#: rpm.c:283 rpm.c:345 rpm.c:409 rpm.c:437 rpm.c:499
 msgid "use <dir> as the top level directory"
 msgstr "koristi <dir> kao direktorijum najvi¹eg nivoa"
 
-#: ../rpm.c:285 ../rpm.c:343 ../rpm.c:373 ../rpm.c:425 ../rpm.c:497
+#: rpm.c:284 rpm.c:342 rpm.c:372 rpm.c:424 rpm.c:496
 #, fuzzy
 msgid "      --dbpath <dir>      "
 msgstr "    -b<faza> <spec>\t "
 
-#: ../rpm.c:286 ../rpm.c:344 ../rpm.c:374 ../rpm.c:426 ../rpm.c:498
+#: rpm.c:285 rpm.c:343 rpm.c:373 rpm.c:425 rpm.c:497
 msgid "use <dir> as the directory for the database"
 msgstr "koristi <dir> kao direktorijum baze podataka"
 
-#: ../rpm.c:287
+#: rpm.c:286
 msgid "      --queryformat <qfmt>"
 msgstr ""
 
-#: ../rpm.c:288
+#: rpm.c:287
 #, fuzzy
 msgid "use <qfmt> as the header format (implies -i)"
 msgstr "koristi s kao format zaglavlja (povlaèi -i)"
 
-#: ../rpm.c:289
+#: rpm.c:288
 msgid ""
 "   install, upgrade and query (with -p) allow ftp URL's to be used in place"
 msgstr ""
 "   instaliranje, pobolj¹avanja i upit (sa -p) dozvoljavaju kori¹æenje URL-ova"
 
-#: ../rpm.c:290
+#: rpm.c:289
 #, fuzzy
 msgid "   of file names as well as the following options:"
 msgstr "   na mestu imena datoteka kao i sledeæe opcije:\n"
 
-#: ../rpm.c:291
+#: rpm.c:290
 msgid "      --ftpproxy <host>   "
 msgstr ""
 
-#: ../rpm.c:292
+#: rpm.c:291
 msgid "hostname or IP of ftp proxy"
 msgstr "ime hosta ili IP ftp proxy-ja"
 
-#: ../rpm.c:293
+#: rpm.c:292
 msgid "      --ftpport <port>    "
 msgstr ""
 
-#: ../rpm.c:294
+#: rpm.c:293
 msgid "port number of ftp server (or proxy)"
 msgstr "broj porta FTP servera (ili proxy)"
 
-#: ../rpm.c:295
+#: rpm.c:294
 #, fuzzy
 msgid "      --httpproxy <host>   "
 msgstr "    -b<faza> <spec>\t "
 
-#: ../rpm.c:296
+#: rpm.c:295
 #, fuzzy
 msgid "hostname or IP of http proxy"
 msgstr "ime hosta ili IP ftp proxy-ja"
 
-#: ../rpm.c:297
+#: rpm.c:296
 #, fuzzy
 msgid "      --httpport <port>    "
 msgstr "    -b<faza> <spec>\t "
 
-#: ../rpm.c:298
+#: rpm.c:297
 #, fuzzy
 msgid "port number of http server (or proxy)"
 msgstr "broj porta FTP servera (ili proxy)"
 
-#: ../rpm.c:299
+#: rpm.c:298
 msgid "      Package specification options:"
 msgstr "      Opcije odrednice paketa:"
 
-#: ../rpm.c:301
+#: rpm.c:300
 msgid "query all packages"
 msgstr "upit nad svim paketima"
 
-#: ../rpm.c:302
+#: rpm.c:301
 msgid "        -f <file>+        "
 msgstr ""
 
-#: ../rpm.c:303
+#: rpm.c:302
 msgid "query package owning <file>"
 msgstr "upit nad paketom koji ima <datoteku>"
 
-#: ../rpm.c:304
+#: rpm.c:303
 msgid "        -p <packagefile>+ "
 msgstr ""
 
-#: ../rpm.c:305
+#: rpm.c:304
 msgid "query (uninstalled) package <packagefile>"
 msgstr "upit za (deinstaliran) paket <paketdatoteka>"
 
-#: ../rpm.c:306
+#: rpm.c:305
 #, fuzzy
 msgid "        --triggeredby <pkg>"
 msgstr "upit nad paketom koji ima <datoteku>"
 
-#: ../rpm.c:307
+#: rpm.c:306
 #, fuzzy
 msgid "query packages triggered by <pkg>"
 msgstr "upit nad paketom koji ima <datoteku>"
 
-#: ../rpm.c:308
+#: rpm.c:307
 #, fuzzy
 msgid "        --whatprovides <cap>"
 msgstr "upit nad paketom koji ima <datoteku>"
 
-#: ../rpm.c:309
+#: rpm.c:308
 #, fuzzy
 msgid "query packages which provide <cap> capability"
 msgstr "upit za pakete koji omoguæavaju <i> svojstvo"
 
-#: ../rpm.c:310
+#: rpm.c:309
 #, fuzzy
 msgid "        --whatrequires <cap>"
 msgstr "upit nad paketom koji ima <datoteku>"
 
-#: ../rpm.c:311
+#: rpm.c:310
 #, fuzzy
 msgid "query packages which require <cap> capability"
 msgstr "upit za pakete koji zahtevaju <i> svojstvo"
 
-#: ../rpm.c:312
+#: rpm.c:311
 msgid "      Information selection options:"
 msgstr "      Opcije za selekciju informacije:"
 
-#: ../rpm.c:314
+#: rpm.c:313
 msgid "display package information"
 msgstr "prika¾i informacije o paketu"
 
-#: ../rpm.c:316
+#: rpm.c:315
 msgid "display the package's change log"
 msgstr "prika¾i dnevnik promene paketa"
 
-#: ../rpm.c:318
+#: rpm.c:317
 msgid "display package file list"
 msgstr "prika¾i listu datoteka u paketu"
 
-#: ../rpm.c:320
+#: rpm.c:319
 msgid "show file states (implies -l)"
 msgstr "prika¾i stanja datoteka (povlaèi -i)"
 
-#: ../rpm.c:322
+#: rpm.c:321
 msgid "list only documentation files (implies -l)"
 msgstr "prika¾i samo datoteke iz dokumentacije (povlaèi -i)"
 
-#: ../rpm.c:324
+#: rpm.c:323
 msgid "list only configuration files (implies -l)"
 msgstr "prika¾i samo konfiguracione datoteke (povlaèi -i)"
 
-#: ../rpm.c:326
+#: rpm.c:325
 msgid ""
 "show all verifiable information for each file (must be used with -l, -c, or "
 "-d)"
@@ -878,36 +618,36 @@ msgstr ""
 "poka¾i sve informacije koje se mogu proveriti za svaku datoteku (mora se "
 "koristiti sa -l, -c ili -d)"
 
-#: ../rpm.c:328
+#: rpm.c:327
 msgid "list capabilities package provides"
 msgstr "poka¾i koja svojstva donosi paket"
 
-#: ../rpm.c:329
+#: rpm.c:328
 msgid "        --requires"
 msgstr ""
 
-#: ../rpm.c:331
+#: rpm.c:330
 msgid "list package dependencies"
 msgstr "poka¾i zavisnosti paketa"
 
-#: ../rpm.c:333
+#: rpm.c:332
 msgid "print the various [un]install scripts"
 msgstr "ispi¹i razne skriptove za [de]instalaciju"
 
-#: ../rpm.c:335
+#: rpm.c:334
 msgid "show the trigger scripts contained in the package"
 msgstr ""
 
-#: ../rpm.c:339
+#: rpm.c:338
 #, fuzzy
 msgid "    --pipe <cmd>          "
 msgstr "    -b<faza> <spec>\t "
 
-#: ../rpm.c:340
+#: rpm.c:339
 msgid "send stdout to <cmd>"
 msgstr "po¹alji standardni izlaz u <komandu>"
 
-#: ../rpm.c:342
+#: rpm.c:341
 #, fuzzy
 msgid ""
 "verify a package installation using the same same package specification "
@@ -915,19 +655,19 @@ msgid ""
 msgstr ""
 "proveri instalaciju paketa koristeæi iste opcije za odreðenje paketa kao i -q"
 
-#: ../rpm.c:348 ../rpm.c:396 ../rpm.c:430
+#: rpm.c:347 rpm.c:395 rpm.c:429
 msgid "do not verify package dependencies"
 msgstr "nemoj proveravati zavisnosti paketa"
 
-#: ../rpm.c:350
+#: rpm.c:349
 msgid "do not verify file md5 checksums"
 msgstr "nemoj proveravati md5 kontrolne sume datoteke"
 
-#: ../rpm.c:352
+#: rpm.c:351
 msgid "do not verify file attributes"
 msgstr "nemoj proveravati atribute datoteke"
 
-#: ../rpm.c:355
+#: rpm.c:354
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
@@ -935,7 +675,7 @@ msgstr ""
 "postavi dozvole datoteke kao one u bazi podataka paketa koristeæi iste "
 "opcije za odreðenje datoteka kao i -q"
 
-#: ../rpm.c:358
+#: rpm.c:357
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
@@ -943,145 +683,145 @@ msgstr ""
 "postavi vlasnika i grupu datoteke kao i one u bazi podataka paketa koristeæi "
 "iste opcije za odreðenje datoteka kao i -q"
 
-#: ../rpm.c:362
+#: rpm.c:361
 #, fuzzy
 msgid "    --install <packagefile>"
 msgstr "instaliraj paket"
 
-#: ../rpm.c:363
+#: rpm.c:362
 #, fuzzy
 msgid "    -i <packagefile>      "
 msgstr "    -b<faza> <spec>\t "
 
-#: ../rpm.c:364
+#: rpm.c:363
 msgid "install package"
 msgstr "instaliraj paket"
 
-#: ../rpm.c:365
+#: rpm.c:364
 #, fuzzy
 msgid "      --excludepath <path>"
 msgstr "premesti datoteke iz <starog-puta> u <novi-put>"
 
-#: ../rpm.c:366
+#: rpm.c:365
 msgid "skip files in path <path>"
 msgstr ""
 
-#: ../rpm.c:367
+#: rpm.c:366
 #, fuzzy
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr "premesti datoteke iz <starog-puta> u <novi-put>"
 
-#: ../rpm.c:368
+#: rpm.c:367
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr "premesti datoteke iz <starog-puta> u <novi-put>"
 
-#: ../rpm.c:370
+#: rpm.c:369
 msgid "relocate files even though the package doesn't allow it"
 msgstr "premesti datoteke èak iako paket to ne dozvoljava"
 
-#: ../rpm.c:371
+#: rpm.c:370
 msgid "      --prefix <dir>      "
 msgstr ""
 
-#: ../rpm.c:372
+#: rpm.c:371
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "premesti paket u <dir>, ako se mo¾e premestiti"
 
-#: ../rpm.c:376
+#: rpm.c:375
 msgid "do not install documentation"
 msgstr "nemoj da instalira¹ dokumentaciju"
 
-#: ../rpm.c:378
+#: rpm.c:377
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "skraæenica za --replacepkgs --replacefiles"
 
-#: ../rpm.c:381
+#: rpm.c:380
 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)"
 
-#: ../rpm.c:383
+#: rpm.c:382
 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"
 
-#: ../rpm.c:386
+#: rpm.c:385
 msgid "don't verify package architecture"
 msgstr "nemoj proveravati arhitekturu paketa"
 
-#: ../rpm.c:388
+#: rpm.c:387
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: ../rpm.c:390
+#: rpm.c:389
 msgid "don't verify package operating system"
 msgstr "nemoj proveravati operativni sistem za paket"
 
-#: ../rpm.c:392
+#: rpm.c:391
 msgid "install documentation"
 msgstr "instaliraj dokumentaciju"
 
-#: ../rpm.c:394 ../rpm.c:428
+#: rpm.c:393 rpm.c:427
 msgid "update the database, but do not modify the filesystem"
 msgstr "a¾uriraj bazu podataka, ali nemoj menjati fajl-sistem"
 
-#: ../rpm.c:398 ../rpm.c:432
+#: rpm.c:397 rpm.c:431
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 "nemoj preurediti redosled instalacije paketa kako bi zadovoljio zavisnosti"
 
-#: ../rpm.c:400
+#: rpm.c:399
 msgid "don't execute any installation scripts"
 msgstr "nemoj izvr¹iti nijedan instalacioni skript"
 
-#: ../rpm.c:402 ../rpm.c:436
+#: rpm.c:401 rpm.c:435
 msgid "don't execute any scripts triggered by this package"
 msgstr ""
 
-#: ../rpm.c:404
+#: rpm.c:403
 msgid "print percentages as package installs"
 msgstr "pi¹i procente instalacije paketa"
 
-#: ../rpm.c:406
+#: rpm.c:405
 msgid "install even if the package replaces installed files"
 msgstr "instaliraj èak iako æe paket zameniti instalirane datoteke"
 
-#: ../rpm.c:408
+#: rpm.c:407
 msgid "reinstall if the package is already present"
 msgstr "ponovo instaliraj ako je paket veæ prisutan"
 
-#: ../rpm.c:412
+#: rpm.c:411
 msgid "don't install, but tell if it would work or not"
 msgstr "nemoj instalirati, ali reci da li æe da radi ili ne"
 
-#: ../rpm.c:414
+#: rpm.c:413
 msgid "    --upgrade <packagefile>"
 msgstr ""
 
-#: ../rpm.c:415
+#: rpm.c:414
 #, fuzzy
 msgid "    -U <packagefile>      "
 msgstr "    -b<faza> <spec>\t "
 
-#: ../rpm.c:416
+#: rpm.c:415
 msgid "upgrade package (same options as --install, plus)"
 msgstr "a¾uriraj paket (iste opcije kao --install, plus)"
 
-#: ../rpm.c:418
+#: rpm.c:417
 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)"
 
-#: ../rpm.c:420
+#: rpm.c:419
 msgid "    --erase <package>"
 msgstr ""
 
-#: ../rpm.c:422
+#: rpm.c:421
 msgid "erase (uninstall) package"
 msgstr "izbri¹i (deinstaliraj) paket"
 
-#: ../rpm.c:424
+#: rpm.c:423
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1089,93 +829,93 @@ msgstr ""
 "ukloni sve pakete koji odgovaraju <paketu> (normalno, javlja se gre¹ka ako "
 "<paket> oznaèava vi¹e paketa)"
 
-#: ../rpm.c:434
+#: rpm.c:433
 msgid "do not execute any package specific scripts"
 msgstr "nemoj izvr¹iti nijedan skript iz paketa"
 
-#: ../rpm.c:440
+#: rpm.c:439
 msgid "    -b<stage> <spec>      "
 msgstr "    -b<faza> <spec>\t "
 
-#: ../rpm.c:441
+#: rpm.c:440
 #, fuzzy
 msgid "    -t<stage> <tarball>   "
 msgstr "    -b<faza> <spec>\t "
 
-#: ../rpm.c:442
+#: rpm.c:441
 msgid "build package, where <stage> is one of:"
 msgstr "napravi paket, gde je <faza> jedna od:"
 
-#: ../rpm.c:444
+#: rpm.c:443
 msgid "prep (unpack sources and apply patches)"
 msgstr "priprema (raspakuj izvorne datoteke i primeni zakrpe)"
 
-#: ../rpm.c:446
+#: rpm.c:445
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr "provera liste (mala provera na %files)"
 
-#: ../rpm.c:448
+#: rpm.c:447
 msgid "compile (prep and compile)"
 msgstr "kompilacija (priprema i kompilacija)"
 
-#: ../rpm.c:450
+#: rpm.c:449
 msgid "install (prep, compile, install)"
 msgstr "instalacija (priprema, kompilacija, instalacija)"
 
-#: ../rpm.c:452
+#: rpm.c:451
 msgid "binary package (prep, compile, install, package)"
 msgstr "binarni paket (priprema, kompilacija, instalacija, pakovanje)"
 
-#: ../rpm.c:454
+#: rpm.c:453
 msgid "bin/src package (prep, compile, install, package)"
 msgstr "bin/src paket (priprema, kompilacija, instalacija, pakovanje)"
 
-#: ../rpm.c:460
+#: rpm.c:459
 msgid "remove sources and spec file when done"
 msgstr "ukloni izvorne datoteke i datoteku specifikacije po zavr¹etku"
 
-#: ../rpm.c:462
+#: rpm.c:461
 #, fuzzy
 msgid "generate PGP/GPG signature"
 msgstr "napravi PGP potpis"
 
-#: ../rpm.c:463
+#: rpm.c:462
 #, fuzzy
 msgid "      --buildroot <dir>   "
 msgstr "    -b<faza> <spec>\t "
 
-#: ../rpm.c:464
+#: rpm.c:463
 msgid "use <dir> as the build root"
 msgstr "koristi <dir> kao korenski katalog kod kreiranja"
 
-#: ../rpm.c:465
+#: rpm.c:464
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: ../rpm.c:466
+#: rpm.c:465
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: ../rpm.c:468
+#: rpm.c:467
 msgid "do not execute any stages"
 msgstr "nemoj izvr¹iti nijednu fazu"
 
-#: ../rpm.c:469
+#: rpm.c:468
 #, fuzzy
 msgid "      --timecheck <secs>  "
 msgstr "    -b<faza> <spec>\t "
 
-#: ../rpm.c:470
+#: rpm.c:469
 #, fuzzy
 msgid "set the time check to <secs> seconds (0 disables)"
 msgstr "postavi vremensku proveru na S sekundi (0 je deaktivira)"
 
-#: ../rpm.c:472
+#: rpm.c:471
 msgid "    --rebuild <src_pkg>   "
 msgstr ""
 
-#: ../rpm.c:473
+#: rpm.c:472
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -1183,227 +923,231 @@ msgstr ""
 "instaliraj izvorni paket, napravi binarni paket i ukloni specifikaciju, "
 "izvorne datoteke, zakrpe i ikone."
 
-#: ../rpm.c:474
+#: rpm.c:473
 #, fuzzy
 msgid "    --rmsource <spec>     "
 msgstr "    -b<faza> <spec>\t "
 
-#: ../rpm.c:475
+#: rpm.c:474
 msgid "remove sources and spec file"
 msgstr "ukloni izvorne datoteke i datoteku specifikacije"
 
-#: ../rpm.c:476
+#: rpm.c:475
 msgid "    --recompile <src_pkg> "
 msgstr ""
 
-#: ../rpm.c:477
+#: rpm.c:476
 msgid "like --rebuild, but don't build any package"
 msgstr "kao i --rebuild, samo nemoj praviti nikakav paket"
 
-#: ../rpm.c:478
+#: rpm.c:477
 #, fuzzy
 msgid "    --resign <pkg>+       "
 msgstr "    -b<faza> <spec>\t "
 
-#: ../rpm.c:479
+#: rpm.c:478
 msgid "sign a package (discard current signature)"
 msgstr "potpi¹i paket (ukloni tekuæi potpis)"
 
-#: ../rpm.c:480
+#: rpm.c:479
 #, fuzzy
 msgid "    --addsign <pkg>+      "
 msgstr "    -b<faza> <spec>\t "
 
-#: ../rpm.c:481
+#: rpm.c:480
 msgid "add a signature to a package"
 msgstr "dodaj potpis u paket"
 
-#: ../rpm.c:483
+#: rpm.c:482
 #, fuzzy
 msgid "    --checksig <pkg>+     "
 msgstr "    -b<faza> <spec>\t "
 
-#: ../rpm.c:484
+#: rpm.c:483
 msgid "verify package signature"
 msgstr "proveri potpis u paketu"
 
-#: ../rpm.c:486
+#: rpm.c:485
 msgid "skip any PGP signatures"
 msgstr "preskoèi sve PGP potpise"
 
-#: ../rpm.c:488
+#: rpm.c:487
 #, fuzzy
 msgid "skip any GPG signatures"
 msgstr "preskoèi sve PGP potpise"
 
-#: ../rpm.c:490
+#: rpm.c:489
 msgid "skip any MD5 signatures"
 msgstr "preskoèi sve MD5 potpise"
 
-#: ../rpm.c:492
+#: rpm.c:491
 msgid "list the tags that can be used in a query format"
 msgstr "ispi¹i tag-ove koji mogu biti kori¹æeni u formatu upita"
 
-#: ../rpm.c:494
+#: rpm.c:493
 msgid "make sure a valid database exists"
 msgstr "uveri se da postoji ispravna baza podataka"
 
-#: ../rpm.c:496
+#: rpm.c:495
 msgid "rebuild database from existing database"
 msgstr "rekreiraj bazu podataka iz postojeæe baze"
 
-#: ../rpm.c:631 ../rpm.c:637 ../rpm.c:644 ../rpm.c:650 ../rpm.c:659
-#: ../rpm.c:666 ../rpm.c:713 ../rpm.c:719 ../rpm.c:779 ../rpm.c:787
-#: ../rpm.c:794 ../rpm.c:803 ../rpm.c:810 ../rpm.c:818 ../rpm.c:854
-#: ../rpm.c:909 ../rpm.c:916
+#: rpm.c:639 rpm.c:645 rpm.c:652 rpm.c:658 rpm.c:667 rpm.c:674 rpm.c:721
+#: rpm.c:727 rpm.c:761 rpm.c:767 rpm.c:773 rpm.c:781 rpm.c:816 rpm.c:871
+#: rpm.c:878
 msgid "only one major mode may be specified"
 msgstr "samo jedan glavni re¾im mo¾e biti naveden"
 
-#: ../rpm.c:652
+#: rpm.c:660
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr "-u i --uninstall nisu vi¹e podr¾ani i ne rade vi¹e.\n"
 
-#: ../rpm.c:654
+#: rpm.c:662
 msgid "Use -e or --erase instead.\n"
 msgstr "Koristite -e ili --erase.\n"
 
-#: ../rpm.c:670
+#: rpm.c:678
 msgid "--build (-b) requires one of a,b,i,c,p,l as its sole argument"
 msgstr "--build (-b) zahteva jedan od sledeæih podargumenata: a,b,i,c,p ili l"
 
-#: ../rpm.c:674
+#: rpm.c:682
 msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
 msgstr ""
 "--tarbuild (-t) zahteva jedan od sledeæih podargumenata: a,b,c,i,p ili l"
 
-#: ../rpm.c:726 ../rpm.c:732 ../rpm.c:739 ../rpm.c:746 ../rpm.c:755
-#: ../rpm.c:763 ../rpm.c:771 ../rpm.c:923
+#: rpm.c:734 rpm.c:740 rpm.c:747 rpm.c:754 rpm.c:885
 msgid "one type of query/verify may be performed at a time"
 msgstr "samo jedan tip upita/provere mo¾e biti uraðen odjednom"
 
-#: ../rpm.c:826
+#: rpm.c:789
 msgid "arguments to --dbpath must begin with a /"
 msgstr "argumenti za --dbpath moraju poèeti znakom '/'"
 
-#: ../rpm.c:860
+#: rpm.c:822
 msgid "relocations must begin with a /"
 msgstr "preme¹tanja moraju poèeti znakom '/'"
 
-#: ../rpm.c:862
+#: rpm.c:824
 msgid "relocations must contain a ="
 msgstr "preme¹tanja moraju imati znak ="
 
-#: ../rpm.c:865
+#: rpm.c:827
 msgid "relocations must have a / following the ="
 msgstr "preme¹tanja moraju imati / praæeno sa ="
 
-#: ../rpm.c:874
+#: rpm.c:836
 #, fuzzy
 msgid "exclude paths must begin with a /"
 msgstr "preme¹tanja moraju poèeti znakom '/'"
 
-#: ../rpm.c:883
+#: rpm.c:845
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: ../rpm.c:936
+#: rpm.c:898
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath je naveden za operaciju koja ne koristi bazu podataka"
 
-#: ../rpm.c:941
+#: rpm.c:903
 msgid "--timecheck may only be used during package builds"
 msgstr "--timecheck se mo¾e koristiti samo kod kreiranja paketa"
 
-#: ../rpm.c:944 ../rpm.c:947
-msgid "unexpected query specifiers"
-msgstr "neoèekivani parametri upita"
+#: rpm.c:906
+#, fuzzy
+msgid "unexpected query flags"
+msgstr "neoèekivan izvor upita"
+
+#: rpm.c:909
+#, fuzzy
+msgid "unexpected query format"
+msgstr "neoèekivan izvor upita"
 
-#: ../rpm.c:951
+#: rpm.c:913
 msgid "unexpected query source"
 msgstr "neoèekivan izvor upita"
 
-#: ../rpm.c:957
+#: rpm.c:919
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "samo instalacija i a¾uriranje mogu biti forsirane"
 
-#: ../rpm.c:960
+#: rpm.c:922
 msgid "files may only be relocated during package installation"
 msgstr "datoteke mogu biti preme¹tene samo tokom instalacije paketa"
 
-#: ../rpm.c:963
+#: rpm.c:925
 msgid "only one of --prefix or --relocate may be used"
 msgstr "samo jedno mo¾ete koristiti: --prefix ili --relocate"
 
-#: ../rpm.c:966
+#: rpm.c:928
 #, fuzzy
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr "--relocate mo¾ete koristiti samo kad instalirate novi paket"
 
-#: ../rpm.c:969
+#: rpm.c:931
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix mo¾ete koristiti samo kod instalacije novog paketa"
 
-#: ../rpm.c:972
+#: rpm.c:934
 msgid "arguments to --prefix must begin with a /"
 msgstr "argumenti za --prefix moraju poèeti znakom /"
 
-#: ../rpm.c:975
+#: rpm.c:937
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) mo¾ete koristiti samo kod instalacije paketa"
 
-#: ../rpm.c:979
+#: rpm.c:941
 msgid "--percent may only be specified during package installation"
 msgstr "--percent mo¾ete koristiti samo kod instalacije paketa"
 
-#: ../rpm.c:983
+#: rpm.c:945
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles mo¾ete koristiti samo kod instalacije paketa"
 
-#: ../rpm.c:987
+#: rpm.c:949
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs mo¾ete koristiti samo kod instalacije paketa"
 
-#: ../rpm.c:991
+#: rpm.c:953
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludecocs mo¾ete koristiti samo kod instalacije paketa"
 
-#: ../rpm.c:995
+#: rpm.c:957
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includecocs mo¾ete koristiti samo kod instalacije paketa"
 
-#: ../rpm.c:999
+#: rpm.c:961
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "samo jedno mo¾ete da navedete: --excludedocs ili --includedocs"
 
-#: ../rpm.c:1003
+#: rpm.c:965
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch mo¾ete koristiti samo kod instalacije paketa"
 
-#: ../rpm.c:1007
+#: rpm.c:969
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos mo¾ete koristiti samo kod instalacije paketa"
 
-#: ../rpm.c:1011
+#: rpm.c:973
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoreos mo¾ete koristiti samo kod instalacije paketa"
 
-#: ../rpm.c:1015
+#: rpm.c:977
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches mo¾ete koristiti samo kod brisanja paketa"
 
-#: ../rpm.c:1019
+#: rpm.c:981
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles mo¾ete koristiti samo kod instalacije paketa"
 
-#: ../rpm.c:1023
+#: rpm.c:985
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr "--justdb mo¾ete koristiti samo kod instalacije i brisanja paketa"
 
-#: ../rpm.c:1028
+#: rpm.c:990
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -1411,7 +1155,7 @@ msgstr ""
 "--noscripsts mo¾ete koristiti samo kod instalacije, uklanjanja ili provere "
 "paketa"
 
-#: ../rpm.c:1032
+#: rpm.c:994
 #, fuzzy
 msgid ""
 "--notriggers may only be specified during package installation, erasure, and "
@@ -1419,7 +1163,7 @@ msgid ""
 msgstr ""
 "--nodeps mo¾ete koristiti samo kod instalacije, uklanjanja ili provere paketa"
 
-#: ../rpm.c:1038
+#: rpm.c:1000
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, installation, "
@@ -1427,18 +1171,14 @@ msgid ""
 msgstr ""
 "--nodeps mo¾ete koristiti samo kod instalacije, uklanjanja ili provere paketa"
 
-#: ../rpm.c:1043
-msgid "--nofiles may only be specified during package verification"
-msgstr "--nofiles mo¾ete koristiti samo kod provere paketa"
-
-#: ../rpm.c:1049
+#: rpm.c:1005
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 "--test mo¾ete koristiti samo kod instalacije, uklanjanja ili kreiranja paketa"
 
-#: ../rpm.c:1054
+#: rpm.c:1010
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -1446,39 +1186,22 @@ msgstr ""
 "--root (-r) mo¾ete navesti samo kod instalacije, uklanjanja, upita ili "
 "rekreiranja baze podataka"
 
-#: ../rpm.c:1059
+#: rpm.c:1015
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "argumenti za --root (-r) moraju poèeti znakom /"
 
-#: ../rpm.c:1063
-msgid "--clean may only be used with -b and -t"
-msgstr "--clean se mo¾e koristiti samo sa -b ili -t"
-
-#: ../rpm.c:1066
-msgid "--rmsource may only be used with -b and -t"
-msgstr "--rmsource se mo¾e koristiti samo sa -b ili -t"
-
-#: ../rpm.c:1069
-msgid "--short-circuit may only be used during package building"
-msgstr "--short-circuit se mo¾e koristiti samo tokom kreiranja paketa"
-
-#: ../rpm.c:1073
-#, fuzzy
-msgid "--short-circuit may only be used with -bc, -bi, -bs, -tc -ti, or -ts"
-msgstr "--short-circuit se mo¾e koristiti samo sa -bc, -bi, -tc ili -ti"
-
-#: ../rpm.c:1079
+#: rpm.c:1018
 msgid "--oldpackage may only be used during upgrades"
 msgstr "--oldpackage se mo¾e koristiti samo tokom a¾uriranja paketa"
 
-#: ../rpm.c:1084
+#: rpm.c:1023
 msgid ""
 "ftp options can only be used during package queries, installs, and upgrades"
 msgstr ""
 "opcije za FTP se mogu koristiti samo kod upita, instalacije ili a¾uriranja "
 "paketa"
 
-#: ../rpm.c:1090
+#: rpm.c:1029
 #, fuzzy
 msgid ""
 "http options can only be used during package queries, installs, and upgrades"
@@ -1486,2009 +1209,2389 @@ msgstr ""
 "opcije za FTP se mogu koristiti samo kod upita, instalacije ili a¾uriranja "
 "paketa"
 
-#: ../rpm.c:1094
+#: rpm.c:1033
 msgid "--nopgp may only be used during signature checking"
 msgstr "--nopgp se mo¾e koristiti samo prilikom provere potpisa"
 
-#: ../rpm.c:1097
+#: rpm.c:1036
 #, fuzzy
 msgid "--nogpg may only be used during signature checking"
 msgstr "--nopgp se mo¾e koristiti samo prilikom provere potpisa"
 
-#: ../rpm.c:1100
+#: rpm.c:1039
 #, fuzzy
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr "--nopgp se mo¾e koristiti samo kod provere potpisa ili paketa"
 
-#: ../rpm.c:1126
+#: rpm.c:1063
+msgid "no files to sign\n"
+msgstr ""
+
+#: rpm.c:1068
 #, fuzzy, c-format
 msgid "cannot access file %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: ../rpm.c:1143
+#: rpm.c:1083
 #, fuzzy
 msgid "pgp not found: "
 msgstr "Datoteka nije pronaðena na serveru"
 
-#: ../rpm.c:1146
-msgid "Use `%%_signature pgp5' instead of `%%_signature pgp' in macro file.\n"
-msgstr ""
-
-#: ../rpm.c:1153
-#, fuzzy
-msgid "pgp version 5 not found: "
-msgstr "Datoteka nije pronaðena na serveru"
-
-#: ../rpm.c:1156
-msgid "Use `%%_signature pgp' instead of `%%_signature pgp5' in macro file.\n"
-msgstr ""
-
-#: ../rpm.c:1162
+#: rpm.c:1087
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: ../rpm.c:1163
+#: rpm.c:1089
 msgid "Pass phrase check failed\n"
 msgstr "Neuspela provera lozinke\n"
 
-#: ../rpm.c:1166
+#: rpm.c:1092
 msgid "Pass phrase is good.\n"
 msgstr "Lozinka je dobra.\n"
 
-#: ../rpm.c:1173
+#: rpm.c:1097
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: ../rpm.c:1178
+#: rpm.c:1103
 msgid "--sign may only be used during package building"
 msgstr "--sign se mo¾e koristiti samo kod kreiranja paketa"
 
-#: ../rpm.c:1195
+#: rpm.c:1118
 #, fuzzy
 msgid "exec failed\n"
 msgstr "%s: Neuspelo otvaranje\n"
 
-#: ../rpm.c:1214
+#: rpm.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr "neoèekivani argumenti za --querytags"
 
-#: ../rpm.c:1225
+#: rpm.c:1148
 msgid "no packages given for signature check"
 msgstr "nedostaje paket za proveru potpisa"
 
-#: ../rpm.c:1233
+#: rpm.c:1160
 msgid "no packages given for signing"
 msgstr "nedostaje paket za potpisivanje"
 
-#: ../rpm.c:1242
+#: rpm.c:1173
 msgid "no packages files given for rebuild"
 msgstr "nedosataje paket za rekreiranje"
 
-#: ../rpm.c:1299
+#: rpm.c:1230
 msgid "no spec files given for build"
 msgstr "nedostaje specifikacije za kreiranje"
 
-#: ../rpm.c:1301
+#: rpm.c:1232
 msgid "no tar files given for build"
 msgstr "nedostaju 'tar' datoteke za kreiranje"
 
-#: ../rpm.c:1313
+#: rpm.c:1244
 msgid "no packages given for uninstall"
 msgstr "neodstaje paket za deinstalaciju"
 
-#: ../rpm.c:1362
+#: rpm.c:1294
 msgid "no packages given for install"
 msgstr "nedostaje paket za instalaciju"
 
-#: ../rpm.c:1385
+#: rpm.c:1317
 msgid "extra arguments given for query of all packages"
 msgstr "suvi¹ni argumenti su navedeni za upit nad svim paketima"
 
-#: ../rpm.c:1390
+#: rpm.c:1322
 msgid "no arguments given for query"
 msgstr "nedostaju argumenti za upit"
 
-#: ../rpm.c:1411
+#: rpm.c:1339
 #, fuzzy
 msgid "extra arguments given for verify of all packages"
 msgstr "suvi¹ni argumenti su navedeni za upit nad svim paketima"
 
-#: ../rpm.c:1415
+#: rpm.c:1343
 msgid "no arguments given for verify"
 msgstr "nedostaju argumenti za proveru"
 
-#: ../rpm2cpio.c:42
+#: rpm2cpio.c:34
 msgid "argument is not an RPM package\n"
 msgstr ""
 
-#: ../rpm2cpio.c:46
+#: rpm2cpio.c:38
 #, fuzzy
 msgid "error reading header from package\n"
 msgstr "gre¹ka potrage za paketom %s\n"
 
-#: ../url.c:136
-#, c-format
-msgid "Password for %s@%s: "
-msgstr "Lozinka za %s@%s: "
+#: build/build.c:83 build/pack.c:263
+#, fuzzy
+msgid "Unable to open temp file"
+msgstr "Ne mogu da otvorim %s za èitanje: %s"
 
-#: ../url.c:160 ../url.c:186
+#: build/build.c:124
 #, fuzzy, c-format
-msgid "error: %sport must be a number\n"
-msgstr "gre¹ka: FTP port mora biti broj\n"
+msgid "Executing: %s\n"
+msgstr "Pribavljam %s\n"
 
-#: ../url.c:271
-#, fuzzy
-msgid "url port must be a number\n"
-msgstr "gre¹ka: FTP port mora biti broj\n"
+#: build/build.c:128
+#, fuzzy, c-format
+msgid "Exec of %s failed (%s)"
+msgstr "neuspelo otvaranje %s: %s\n"
 
-#. XXX PARANOIA
-#: ../url.c:308
+#: build/build.c:138
 #, c-format
-msgid "logging into %s as %s, pw %s\n"
+msgid "Bad exit status from %s (%s)"
 msgstr ""
 
-#: ../lib/rpmdb.c:169 ../url.c:422
-#, c-format
-msgid "failed to open %s\n"
-msgstr "neuspelo otvaranje %s\n"
-
-#: ../url.c:437
-#, c-format
-msgid "failed to create %s\n"
-msgstr "neuspelo kreiranje %s\n"
-
-#: ../build/build.c:83 ../build/pack.c:248
+#: build/expression.c:208
 #, fuzzy
-msgid "Unable to open temp file"
-msgstr "Ne mogu da otvorim %s za èitanje: %s"
-
-#: ../build/build.c:122
-#, fuzzy, c-format
-msgid "Executing: %s\n"
-msgstr "Pribavljam %s\n"
-
-#: ../build/build.c:126
-#, fuzzy, c-format
-msgid "Exec of %s failed (%s)"
-msgstr "neuspelo otvaranje %s: %s\n"
+msgid "syntax error while parsing =="
+msgstr "oèekivan znak ? u izrazu"
 
-#: ../build/build.c:136
-#, c-format
-msgid "Bad exit status from %s (%s)"
-msgstr ""
+#: build/expression.c:238
+#, fuzzy
+msgid "syntax error while parsing &&"
+msgstr "oèekivan znak ? u izrazu"
 
-#: ../build/expression.c:189 ../build/expression.c:198
-msgid "parse error in tokenizer"
-msgstr ""
+#: build/expression.c:247
+#, fuzzy
+msgid "syntax error while parsing ||"
+msgstr "oèekivan znak ? u izrazu"
 
-#: ../build/expression.c:240
+#: build/expression.c:289
 #, fuzzy
 msgid "parse error in expression"
 msgstr "oèekivan znak ? u izrazu"
 
-#: ../build/expression.c:270
+#: build/expression.c:319
 msgid "unmatched ("
 msgstr ""
 
-#: ../build/expression.c:288
+#: build/expression.c:337
 msgid "undefined identifier"
 msgstr ""
 
-#: ../build/expression.c:307
+#: build/expression.c:356
 msgid "- only on numbers"
 msgstr ""
 
-#: ../build/expression.c:323
+#: build/expression.c:372
 msgid "! only on numbers"
 msgstr ""
 
-#: ../build/expression.c:362 ../build/expression.c:407
-#: ../build/expression.c:464 ../build/expression.c:551
+#: build/expression.c:411 build/expression.c:456 build/expression.c:513
+#: build/expression.c:600
 msgid "types must match"
 msgstr ""
 
-#: ../build/expression.c:375
+#: build/expression.c:424
 msgid "* / not suported for strings"
 msgstr ""
 
-#: ../build/expression.c:423
+#: build/expression.c:472
 msgid "- not suported for strings"
 msgstr ""
 
-#: ../build/expression.c:564
+#: build/expression.c:613
 msgid "&& and || not suported for strings"
 msgstr ""
 
-#: ../build/expression.c:595 ../build/expression.c:640
+#: build/expression.c:644 build/expression.c:689
 #, fuzzy
 msgid "syntax error in expression"
 msgstr "oèekivan znak ? u izrazu"
 
-#: ../build/files.c:220
+#: build/files.c:224
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr ""
 
-#: ../build/files.c:265 ../build/files.c:277 ../build/files.c:346
-#: ../build/files.c:358 ../build/files.c:389
-#, c-format
-msgid "Bad %s() syntax: %s"
-msgstr ""
-
-#: ../build/files.c:307
-#, c-format
-msgid "Invalid %s token: %s"
-msgstr ""
+#: build/files.c:267 build/files.c:349 build/files.c:512
+#, fuzzy, c-format
+msgid "Missing '(' in %s %s"
+msgstr "nedostaje { posle %"
 
-#: ../build/files.c:369
-msgid "No files after %%defattr(): %s"
-msgstr ""
+#: build/files.c:278 build/files.c:466 build/files.c:523
+#, fuzzy, c-format
+msgid "Missing ')' in %s(%s"
+msgstr "nedostaje ':' na %s:%d"
 
-#: ../build/files.c:399
+#: build/files.c:316 build/files.c:491
 #, c-format
-msgid "Bad %s() mode spec: %s"
+msgid "Invalid %s token: %s"
 msgstr ""
 
-#: ../build/files.c:411
+#: build/files.c:365
 #, c-format
-msgid "Bad %s() dirmode spec: %s"
+msgid "Non-white space follows %s(): %s"
 msgstr ""
 
-#: ../build/files.c:462
-msgid "Bad %%config() syntax: %s"
-msgstr ""
+#: build/files.c:403
+#, fuzzy, c-format
+msgid "Bad syntax: %s(%s)"
+msgstr "Neuspelo èitanje %s: %s."
 
-#: ../build/files.c:480
-msgid "Invalid %%config token: %s"
-msgstr ""
+#: build/files.c:413
+#, fuzzy, c-format
+msgid "Bad mode spec: %s(%s)"
+msgstr "Neuspelo èitanje %s: %s."
 
-#: ../build/files.c:503 ../build/files.c:515 ../build/files.c:528
-msgid "Bad %%lang() syntax: %s"
+#: build/files.c:425
+#, c-format
+msgid "Bad dirmode spec: %s(%s)"
 msgstr ""
 
-#: ../build/files.c:534
-msgid "%%lang() entries are 2 characters: %s"
+#: build/files.c:549
+msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
 msgstr ""
 
-#: ../build/files.c:540
-msgid "Only one entry in %%lang(): %s"
+#: build/files.c:559
+msgid "Duplicate locale %.*s in %%lang(%s)"
 msgstr ""
 
-#: ../build/files.c:620
+#: build/files.c:651
 msgid "Hit limit for %%docdir"
 msgstr ""
 
-#: ../build/files.c:626
+#: build/files.c:657
 msgid "Only one arg for %%docdir"
 msgstr ""
 
 #. We already got a file -- error
-#: ../build/files.c:651
+#: build/files.c:682
 #, fuzzy, c-format
 msgid "Two files on one line: %s"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: ../build/files.c:664
+#: build/files.c:695
 #, fuzzy, c-format
 msgid "File must begin with \"/\": %s"
 msgstr "preme¹tanja moraju poèeti znakom '/'"
 
-#: ../build/files.c:676
+#: build/files.c:707
 msgid "Can't mix special %%doc with other forms: %s"
 msgstr ""
 
-#: ../build/files.c:764
+#: build/files.c:792
 #, fuzzy, c-format
 msgid "File listed twice: %s"
 msgstr "Neuspelo èitanje %s: %s."
 
-#: ../build/files.c:916
+#: build/files.c:952
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s"
 msgstr "Neuspelo èitanje %s: %s."
 
-#: ../build/files.c:926 ../build/files.c:1049
+#: build/files.c:962 build/files.c:1099
 #, fuzzy, c-format
 msgid "File not found: %s"
 msgstr "Datoteka nije pronaðena na serveru"
 
-#: ../build/files.c:969
+#: build/files.c:1005
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: ../build/files.c:983
+#: build/files.c:1019
 #, fuzzy, c-format
 msgid "File %4d: 0%o %s.%s\t %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: ../build/files.c:1033
+#: build/files.c:1083
 #, c-format
 msgid "File needs leading \"/\": %s"
 msgstr ""
 
-#: ../build/files.c:1090
+#: build/files.c:1140
 #, fuzzy
 msgid "Could not open %%files file: %s"
 msgstr "gre¹ka: ne mogu da otvorim datoteku %s\n"
 
-#: ../build/files.c:1097 ../build/pack.c:433
+#: build/files.c:1147 build/pack.c:484
 #, c-format
 msgid "line: %s"
 msgstr ""
 
-#: ../build/files.c:1394 ../build/parsePrep.c:31
+#: build/files.c:1469 build/parsePrep.c:29
 #, c-format
 msgid "Bad owner/group: %s"
 msgstr ""
 
-#: ../build/files.c:1448
+#: build/files.c:1522
 #, fuzzy, c-format
 msgid "Couldn't exec %s"
 msgstr "Ne mogu da izvr¹im PGP"
 
-#: ../build/files.c:1452
+#: build/files.c:1526
 #, fuzzy, c-format
 msgid "Couldn't fork %s"
 msgstr "Ne mogu da proèitam 'sigtarget'"
 
-#: ../build/files.c:1502
+#: build/files.c:1605
 #, fuzzy, c-format
 msgid "%s failed"
 msgstr "PGP omanuo"
 
-#: ../build/files.c:1506
+#: build/files.c:1609
 #, fuzzy, c-format
 msgid "failed to write all data to %s"
 msgstr "neuspelo kreiranje %s\n"
 
-#: ../build/files.c:1540
-msgid "Finding provides...\n"
-msgstr ""
-
-#: ../build/files.c:1547
-msgid "Failed to find provides"
-msgstr ""
-
-#: ../build/files.c:1566
-msgid "Finding requires...\n"
+#: build/files.c:1695
+#, c-format
+msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: ../build/files.c:1573
-#, fuzzy
-msgid "Failed to find requires"
+#: build/files.c:1723 build/files.c:1732
+#, fuzzy, c-format
+msgid "Failed to find %s:"
 msgstr "neuspelo kreiranje %s\n"
 
-#: ../build/files.c:1607
-msgid "Provides:"
-msgstr ""
-
-#: ../build/files.c:1622
-msgid "Prereqs:"
-msgstr ""
-
-#: ../build/files.c:1634
-msgid "Requires:"
-msgstr ""
-
-#: ../build/files.c:1658
+#: build/files.c:1838
 #, fuzzy, c-format
 msgid "Processing files: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: ../build/names.c:32 ../build/names.c:64
+#: build/names.c:32 build/names.c:64
 msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
 msgstr ""
 
-#: ../build/names.c:97 ../build/names.c:129
+#: build/names.c:97 build/names.c:129
 msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
 msgstr ""
 
-#: ../build/names.c:167
+#: build/names.c:167
 #, c-format
 msgid "Could not canonicalize hostname: %s\n"
 msgstr ""
 
-#: ../build/pack.c:134
+#: build/pack.c:131
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr ""
 
-#: ../build/pack.c:167
+#: build/pack.c:148
+#, fuzzy, c-format
+msgid "cannot create %s: %s\n"
+msgstr "Ne mogu da otvorim datoteku %s: "
+
+#: build/pack.c:183
 #, fuzzy, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: ../build/pack.c:177
+#: build/pack.c:193
 #, fuzzy, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "Neuspelo èitanje %s: %s."
 
-#: ../build/pack.c:197
+#: build/pack.c:213
 #, fuzzy, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr "gre¹ka: èini se da %s nije RPM paket\n"
 
-#: ../build/pack.c:203
+#: build/pack.c:219
 #, fuzzy, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr "gre¹ka kod uzimanja sloga %s iz %s"
 
-#: ../build/pack.c:259
+#: build/pack.c:274
 msgid "Bad CSA data"
 msgstr ""
 
-#: ../build/pack.c:282
+#: build/pack.c:305
 #, fuzzy, c-format
 msgid "Could not open %s\n"
 msgstr "neuspelo otvaranje %s\n"
 
-#: ../build/pack.c:314 ../build/pack.c:357
+#: build/pack.c:337 build/pack.c:379
 #, fuzzy, c-format
 msgid "Unable to write package: %s"
 msgstr "Ne mogu da upi¹em %s"
 
-#: ../build/pack.c:347
+#: build/pack.c:352
+#, fuzzy, c-format
+msgid "Generating signature: %d\n"
+msgstr "napravi PGP potpis"
+
+#: build/pack.c:369
 #, fuzzy, c-format
 msgid "Unable to read sigtarget: %s"
 msgstr "Ne mogu da upi¹em %s"
 
-#: ../build/pack.c:372
+#: build/pack.c:394
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
 
-#: ../build/pack.c:387
+#: build/pack.c:411 build/pack.c:435
 #, fuzzy, c-format
 msgid "create archive failed on file %s: %s"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: ../build/pack.c:403
+#: build/pack.c:454
 #, c-format
 msgid "cpio_copy write failed: %s"
 msgstr ""
 
-#: ../build/pack.c:410
+#: build/pack.c:461
 #, fuzzy, c-format
 msgid "cpio_copy read failed: %s"
 msgstr "neuspelo èitanje: %s (%d)"
 
-#: ../build/pack.c:489
+#: build/pack.c:540
 #, fuzzy, c-format
 msgid "Could not open PreIn file: %s"
 msgstr "gre¹ka: ne mogu da otvorim datoteku %s\n"
 
-#: ../build/pack.c:496
+#: build/pack.c:547
 #, fuzzy, c-format
 msgid "Could not open PreUn file: %s"
 msgstr "gre¹ka: ne mogu da otvorim datoteku %s\n"
 
-#: ../build/pack.c:503
+#: build/pack.c:554
 #, fuzzy, c-format
 msgid "Could not open PostIn file: %s"
 msgstr "gre¹ka: ne mogu da otvorim datoteku %s\n"
 
-#: ../build/pack.c:510
+#: build/pack.c:561
 #, fuzzy, c-format
 msgid "Could not open PostUn file: %s"
 msgstr "gre¹ka: ne mogu da otvorim datoteku %s\n"
 
-#: ../build/pack.c:518
+#: build/pack.c:569
 #, c-format
 msgid "Could not open VerifyScript file: %s"
 msgstr ""
 
-#: ../build/pack.c:534
+#: build/pack.c:585
 #, c-format
 msgid "Could not open Trigger script file: %s"
 msgstr ""
 
-#: ../build/parseBuildInstallClean.c:27
+#: build/parseBuildInstallClean.c:27
 #, c-format
 msgid "line %d: second %s"
 msgstr ""
 
-#: ../build/parseChangelog.c:95
+#: build/parseChangelog.c:103
 msgid "%%changelog entries must start with *"
 msgstr ""
 
-#: ../build/parseChangelog.c:103
+#: build/parseChangelog.c:111
 msgid "incomplete %%changelog entry"
 msgstr ""
 
-#: ../build/parseChangelog.c:118
+#: build/parseChangelog.c:126
 msgid "bad date in %%changelog: %s"
 msgstr ""
 
-#: ../build/parseChangelog.c:123
+#: build/parseChangelog.c:131
 msgid "%%changelog not in decending chronological order"
 msgstr ""
 
-#: ../build/parseChangelog.c:131 ../build/parseChangelog.c:142
+#: build/parseChangelog.c:139 build/parseChangelog.c:150
 msgid "missing name in %%changelog"
 msgstr ""
 
-#: ../build/parseChangelog.c:149
+#: build/parseChangelog.c:157
 msgid "no description in %%changelog"
 msgstr ""
 
-#: ../build/parseDescription.c:35
+#: build/parseDescription.c:33
 msgid "line %d: Error parsing %%description: %s"
 msgstr ""
 
-#: ../build/parseDescription.c:48 ../build/parseFiles.c:42
-#: ../build/parseScript.c:170
+#: build/parseDescription.c:46 build/parseFiles.c:40 build/parseScript.c:168
 #, fuzzy, c-format
 msgid "line %d: Bad option %s: %s"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: ../build/parseDescription.c:62 ../build/parseFiles.c:56
-#: ../build/parseScript.c:184
+#: build/parseDescription.c:60 build/parseFiles.c:54 build/parseScript.c:182
 #, c-format
 msgid "line %d: Too many names: %s"
 msgstr ""
 
-#: ../build/parseDescription.c:72 ../build/parseFiles.c:66
-#: ../build/parseScript.c:194
+#: build/parseDescription.c:70 build/parseFiles.c:64 build/parseScript.c:192
 #, fuzzy, c-format
 msgid "line %d: Package does not exist: %s"
 msgstr "paket %s nije naveden u %s"
 
-#: ../build/parseDescription.c:84
+#: build/parseDescription.c:82
 #, c-format
 msgid "line %d: Second description"
 msgstr ""
 
-#: ../build/parseFiles.c:29
+#: build/parseFiles.c:27
 msgid "line %d: Error parsing %%files: %s"
 msgstr ""
 
-#: ../build/parseFiles.c:74
+#: build/parseFiles.c:72
 msgid "line %d: Second %%files list"
 msgstr ""
 
-#: ../build/parsePreamble.c:143
+#: build/parsePreamble.c:141
 #, c-format
 msgid "Architecture is excluded: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:148
+#: build/parsePreamble.c:146
 #, c-format
 msgid "Architecture is not included: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:153
+#: build/parsePreamble.c:151
 #, c-format
 msgid "OS is excluded: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:158
+#: build/parsePreamble.c:156
 #, c-format
 msgid "OS is not included: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:193
+#: build/parsePreamble.c:170
 #, c-format
 msgid "%s field must be present in package: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:215
+#: build/parsePreamble.c:192
 #, c-format
 msgid "Duplicate %s entries in package: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:262
+#: build/parsePreamble.c:239
 #, fuzzy, c-format
 msgid "Unable to stat icon: %s"
 msgstr "Ne mogu da upi¹em %s"
 
-#: ../build/parsePreamble.c:273
+#: build/parsePreamble.c:250
 #, fuzzy, c-format
 msgid "Unable to read icon: %s"
 msgstr "Ne mogu da upi¹em %s"
 
-#: ../build/parsePreamble.c:283
+#: build/parsePreamble.c:260
 #, fuzzy, c-format
 msgid "Unknown icon type: %s"
 msgstr "(nepoznat tip)"
 
-#: ../build/parsePreamble.c:346
+#: build/parsePreamble.c:323
 #, c-format
 msgid "line %d: Malformed tag: %s"
 msgstr ""
 
 #. Empty field
-#: ../build/parsePreamble.c:354
+#: build/parsePreamble.c:331
 #, c-format
 msgid "line %d: Empty tag: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:377 ../build/parsePreamble.c:384
+#: build/parsePreamble.c:354 build/parsePreamble.c:361
 #, fuzzy, c-format
 msgid "line %d: Illegal char '-' in %s: %s"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: ../build/parsePreamble.c:422
+#: build/parsePreamble.c:399
 #, c-format
 msgid "line %d: BuildRoot can not be \"/\": %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:435
+#: build/parsePreamble.c:412
 #, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:447
+#: build/parsePreamble.c:424
 #, fuzzy, c-format
 msgid "line %d: Docdir must begin with '/': %s"
 msgstr "preme¹tanja moraju poèeti znakom '/'"
 
-#: ../build/parsePreamble.c:459
+#: build/parsePreamble.c:436
 #, fuzzy, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s"
 msgstr "pogre¹an broj paketa: %s\n"
 
-#: ../build/parsePreamble.c:524
+#: build/parsePreamble.c:499
 #, fuzzy, c-format
 msgid "line %d: Bad BuildArchitecture format: %s"
 msgstr "nedostaje arhitektura za %s na %s:%d"
 
-#: ../build/parsePreamble.c:534
+#: build/parsePreamble.c:509
 #, c-format
 msgid "Internal error: Bogus tag %d"
 msgstr ""
 
-#: ../build/parsePreamble.c:679
+#: build/parsePreamble.c:656
 #, fuzzy, c-format
 msgid "Bad package specification: %s"
 msgstr "      Opcije odrednice paketa:"
 
-#: ../build/parsePreamble.c:685
+#: build/parsePreamble.c:662
 #, c-format
 msgid "Package already exists: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:712
+#: build/parsePreamble.c:689
 #, c-format
 msgid "line %d: Unknown tag: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:737
+#: build/parsePreamble.c:714
 msgid "Spec file can't use BuildRoot"
 msgstr ""
 
-#: ../build/parsePrep.c:27
+#: build/parsePrep.c:25
 #, fuzzy, c-format
 msgid "Bad source: %s: %s"
 msgstr "Neuspelo èitanje %s: %s."
 
-#: ../build/parsePrep.c:53
+#: build/parsePrep.c:51
 #, fuzzy, c-format
 msgid "No patch number %d"
 msgstr "(nije broj)"
 
-#: ../build/parsePrep.c:119
+#: build/parsePrep.c:117
 #, c-format
 msgid "No source number %d"
 msgstr ""
 
-#: ../build/parsePrep.c:138
+#: build/parsePrep.c:136
 #, fuzzy, c-format
 msgid "Couldn't download nosource %s: %s"
 msgstr "Neuspelo èitanje %s: %s."
 
-#: ../build/parsePrep.c:193
+#: build/parsePrep.c:191
 msgid "Error parsing %%setup: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:208
+#: build/parsePrep.c:206
 msgid "line %d: Bad arg to %%setup %c: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:229
+#: build/parsePrep.c:227
 msgid "line %d: Bad %%setup option %s: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:353
+#: build/parsePrep.c:351
 msgid "line %d: Need arg to %%patch -b: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:361
+#: build/parsePrep.c:359
 msgid "line %d: Need arg to %%patch -z: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:373
+#: build/parsePrep.c:371
 msgid "line %d: Need arg to %%patch -p: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:379
+#: build/parsePrep.c:377
 msgid "line %d: Bad arg to %%patch -p: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:386
+#: build/parsePrep.c:384
 msgid "Too many patches!"
 msgstr ""
 
-#: ../build/parsePrep.c:390
+#: build/parsePrep.c:388
 msgid "line %d: Bad arg to %%patch: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:426
+#: build/parsePrep.c:424
 msgid "line %d: second %%prep"
 msgstr ""
 
-#: ../build/parseReqs.c:45
-#, c-format
-msgid "line %d: No file names in Conflicts: %s"
-msgstr ""
-
-#: ../build/parseReqs.c:79
-#, c-format
-msgid "line %d: No versions on file names in %s: %s"
-msgstr ""
+#: build/parseReqs.c:91
+#, fuzzy, c-format
+msgid ""
+"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
+msgstr "preme¹tanja moraju poèeti znakom '/'"
 
-#: ../build/parseReqs.c:85
-#, c-format
-msgid "line %d: No versions in PreReq: %s"
-msgstr ""
+#: build/parseReqs.c:102
+#, fuzzy, c-format
+msgid "line %d: File name not permitted: %s"
+msgstr "paket %s nije naveden u %s"
 
-#: ../build/parseReqs.c:97
-#, c-format
-msgid "line %d: Version required in %s: %s"
-msgstr ""
+#: build/parseReqs.c:134
+#, fuzzy, c-format
+msgid "line %d: Versioned file name not permitted: %s"
+msgstr "paket %s nije naveden u %s"
 
-#: ../build/parseReqs.c:126
+#: build/parseReqs.c:146
 #, fuzzy, c-format
-msgid "line %d: No file names in Obsoletes: %s"
+msgid "line %d: Version not permitted: %s"
 msgstr "paket %s nije naveden u %s"
 
-#: ../build/parseReqs.c:133
-#, c-format
-msgid "line %d: %s: tokens must begin with alpha-numeric: %s"
-msgstr ""
+#: build/parseReqs.c:172
+#, fuzzy, c-format
+msgid "line %d: Version required: %s"
+msgstr "neuspelo otvaranje %s: %s"
 
-#: ../build/parseScript.c:138
+#: build/parseScript.c:136
 #, c-format
 msgid "line %d: triggers must have --: %s"
 msgstr ""
 
-#: ../build/parseScript.c:148 ../build/parseScript.c:212
+#: build/parseScript.c:146 build/parseScript.c:210
 #, c-format
 msgid "line %d: Error parsing %s: %s"
 msgstr ""
 
-#: ../build/parseScript.c:158
+#: build/parseScript.c:156
 #, c-format
 msgid "line %d: script program must begin with '/': %s"
 msgstr ""
 
-#: ../build/parseScript.c:203
+#: build/parseScript.c:201
 #, c-format
 msgid "line %d: Second %s"
 msgstr ""
 
-#: ../build/parseSpec.c:120
+#: build/parseSpec.c:126
+#, fuzzy, c-format
+msgid "line %d: %s"
+msgstr "neuspelo otvaranje %s: %s"
+
+#: build/parseSpec.c:172
 #, fuzzy, c-format
 msgid "Unable to open: %s\n"
 msgstr "neuspelo otvaranje %s\n"
 
-#: ../build/parseSpec.c:132
+#: build/parseSpec.c:184
 msgid "Unclosed %%if"
 msgstr ""
 
-#: ../build/parseSpec.c:188
-#, fuzzy, c-format
-msgid "line %d: %s"
-msgstr "neuspelo otvaranje %s: %s"
+#: build/parseSpec.c:243
+#, c-format
+msgid "%s:%d: parseExpressionBoolean returns %d"
+msgstr ""
 
 #. Got an else with no %if !
-#: ../build/parseSpec.c:213
+#: build/parseSpec.c:251
 msgid "%s:%d: Got a %%else with no if"
 msgstr ""
 
 #. Got an end with no %if !
-#: ../build/parseSpec.c:223
+#: build/parseSpec.c:262
 msgid "%s:%d: Got a %%endif with no if"
 msgstr ""
 
-#: ../build/parseSpec.c:235 ../build/parseSpec.c:244
+#: build/parseSpec.c:276 build/parseSpec.c:285
 msgid "malformed %%include statement"
 msgstr ""
 
-#: ../build/parseSpec.c:323
+#: build/parseSpec.c:366
 #, c-format
 msgid "Timecheck value must be an integer: %s"
 msgstr ""
 
-#: ../build/parseSpec.c:406
+#: build/parseSpec.c:449
 #, fuzzy
 msgid "No buildable architectures"
 msgstr "nemoj proveravati arhitekturu paketa"
 
-#: ../build/parseSpec.c:451
+#: build/parseSpec.c:494
 #, fuzzy
 msgid "Package has no %%description: %s"
 msgstr "paket %s nije naveden u %s"
 
-#: ../build/spec.c:28
+#: build/spec.c:31
 #, c-format
 msgid "archive = %s, fs = %s\n"
 msgstr ""
 
-#: ../build/spec.c:224
+#: build/spec.c:237
 #, fuzzy, c-format
 msgid "line %d: Bad number: %s"
 msgstr "pogre¹an broj paketa: %s\n"
 
-#: ../build/spec.c:230
+#: build/spec.c:243
 #, c-format
 msgid "line %d: Bad no%s number: %d"
 msgstr ""
 
-#: ../build/spec.c:286
+#: build/spec.c:301
 #, fuzzy, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr "pogre¹an broj paketa: %s\n"
 
-#: ../lib/cpio.c:362
+#: lib/cpio.c:385
 #, fuzzy, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr "Neuspelo èitanje %s: %s."
 
-#: ../lib/cpio.c:368
+#: lib/cpio.c:391
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: ../lib/cpio.c:547
+#: lib/cpio.c:582
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: ../lib/cpio.c:1000
+#: lib/cpio.c:1044
 #, fuzzy, c-format
 msgid "(error 0x%x)"
 msgstr "gre¹ka: "
 
-#: ../lib/cpio.c:1003
+#: lib/cpio.c:1047
 msgid "Bad magic"
 msgstr ""
 
-#: ../lib/cpio.c:1004
+#: lib/cpio.c:1048
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: ../lib/cpio.c:1022
-#, fuzzy
-msgid "Internal error"
-msgstr "fatalna gre¹ka: "
-
-#: ../lib/cpio.c:1023
+#: lib/cpio.c:1066
 msgid "Header size too big"
 msgstr ""
 
-#: ../lib/cpio.c:1024
+#: lib/cpio.c:1067
 #, fuzzy
 msgid "Unknown file type"
 msgstr "(nepoznat tip)"
 
-#: ../lib/cpio.c:1033
+#: lib/cpio.c:1068
+msgid "Missing hard link"
+msgstr ""
+
+#: lib/cpio.c:1069
+#, fuzzy
+msgid "Internal error"
+msgstr "fatalna gre¹ka: "
+
+#: lib/cpio.c:1078
 #, fuzzy
 msgid " failed - "
 msgstr "PGP omanuo"
 
-#: ../lib/dbindex.c:32
+#: lib/dbindex.c:32
 #, fuzzy, c-format
 msgid "cannot open file %s: %s"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: ../lib/dbindex.c:77
+#: lib/dbindex.c:84
 #, c-format
 msgid "error getting record %s from %s"
 msgstr "gre¹ka kod uzimanja sloga %s iz %s"
 
-#: ../lib/dbindex.c:105
+#: lib/dbindex.c:111
 #, c-format
 msgid "error storing record %s into %s"
 msgstr "gre¹ka zapisivanja sloga %s u %s"
 
-#: ../lib/dbindex.c:112
+#: lib/dbindex.c:118
 #, c-format
 msgid "error removing record %s into %s"
 msgstr "gre¹ka uklanjanja sloga %s u %s"
 
-#: ../lib/depends.c:429 ../lib/depends.c:588
+#. XXX legacy epoch-less requires/conflicts compatibility
+#: lib/depends.c:339
 #, c-format
-msgid "cannot read header at %d for dependency check"
-msgstr "ne mogu da proèitam zaglavlje na %s za proveru zavisnosti"
+msgid ""
+"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
+"\tA %s\tB %s\n"
+msgstr ""
+
+#: lib/depends.c:368
+#, c-format
+msgid "  %s    A %s\tB %s\n"
+msgstr ""
+
+#: lib/depends.c:460
+msgid "dbrecMatchesDepFlags() failed to read header"
+msgstr ""
+
+#: lib/depends.c:695
+#, fuzzy, c-format
+msgid "%s: %s satisfied by added package.\n"
+msgstr "datoteka %s ne pripada nijednom paketu\n"
+
+#: lib/depends.c:712
+#, c-format
+msgid "%s: %s satisfied by added provide.\n"
+msgstr ""
+
+#: lib/depends.c:717
+#, c-format
+msgid "%s: %s satisfied by added file list.\n"
+msgstr ""
+
+#: lib/depends.c:747
+#, c-format
+msgid "%s: %s satisfied by rpmrc provides.\n"
+msgstr ""
+
+#: lib/depends.c:775
+#, c-format
+msgid "%s: %s satisfied by db file lists.\n"
+msgstr ""
+
+#: lib/depends.c:797
+#, c-format
+msgid "%s: %s satisfied by db provides.\n"
+msgstr ""
+
+#: lib/depends.c:819
+#, fuzzy, c-format
+msgid "%s: %s satisfied by db packages.\n"
+msgstr "datoteka %s ne pripada nijednom paketu\n"
 
-#: ../lib/depends.c:494
+#: lib/depends.c:832
 #, c-format
-msgid "dependencies: looking for %s\n"
+msgid "%s: %s satisfied by rpmlib version.\n"
 msgstr ""
 
-#: ../lib/depends.c:682
+#: lib/depends.c:842
+#, c-format
+msgid "%s: %s unsatisfied.\n"
+msgstr ""
+
+#. requirements are not satisfied.
+#: lib/depends.c:890
 #, fuzzy, c-format
 msgid "package %s require not satisfied: %s\n"
 msgstr "paket %s nije naveden u %s"
 
-#: ../lib/depends.c:725
+#. conflicts exist.
+#: lib/depends.c:952
 #, fuzzy, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "paket %s nije naveden u %s"
 
-#: ../lib/depends.c:825
-msgid "dbrecMatchesDepFlags() failed to read header"
-msgstr ""
+#: lib/depends.c:1007 lib/depends.c:1311
+#, c-format
+msgid "cannot read header at %d for dependency check"
+msgstr "ne mogu da proèitam zaglavlje na %s za proveru zavisnosti"
 
-#: ../lib/depends.c:877
+#: lib/depends.c:1102
 #, c-format
 msgid "loop in prerequisite chain: %s"
 msgstr "petlja u lancu: %s"
 
-#: ../lib/falloc.c:149
+#: lib/falloc.c:160
 #, c-format
-msgid "free list corrupt (%u)- contact rpm-list@redhat.com\n"
+msgid ""
+"free list corrupt (%u)- please run\n"
+"\t\"rpm --rebuilddb\"\n"
+"More information is available from http://www.rpm.org or the "
+"rpm-list@redhat.com mailing list\n"
+"if \"rpm --rebuilddb\" fails to correct the problem.\n"
 msgstr ""
 
-#: ../lib/formats.c:97 ../lib/formats.c:114 ../lib/formats.c:134
-#: ../lib/formats.c:166 ../lib/header.c:1973 ../lib/header.c:1989
-#: ../lib/header.c:2009
+#: lib/formats.c:66 lib/formats.c:84 lib/formats.c:105 lib/formats.c:138
+#: lib/header.c:2122 lib/header.c:2139 lib/header.c:2159
 msgid "(not a number)"
 msgstr "(nije broj)"
 
-#: ../lib/fs.c:41
+#: lib/fs.c:40
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr "mntctl() nije vratio 'fugger' velièinu: %s"
 
-#: ../lib/fs.c:76 ../lib/fs.c:246
+#: lib/fs.c:75 lib/fs.c:253
 #, fuzzy, c-format
 msgid "failed to stat %s: %s"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: ../lib/fs.c:117
+#: lib/fs.c:114
+msgid "getting list of mounted filesystems\n"
+msgstr ""
+
+#: lib/fs.c:119
 #, c-format
 msgid "failed to open %s: %s"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: ../lib/fs.c:267
+#: lib/fs.c:274
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr ""
 
-#: ../lib/header.c:669
-#, c-format
-msgid "Data type %d not supprted\n"
+#: lib/ftp.c:666
+msgid "Success"
+msgstr ""
+
+#: lib/ftp.c:669
+#, fuzzy
+msgid "Bad server response"
+msgstr "Lo¹ odgovor FTP servera"
+
+#: lib/ftp.c:672
+#, fuzzy
+msgid "Server IO error"
+msgstr "Ulazno/izlazna FTP gre¹ka"
+
+#: lib/ftp.c:675
+#, fuzzy
+msgid "Server timeout"
+msgstr "Tajm-aut FTP servera"
+
+#: lib/ftp.c:678
+#, fuzzy
+msgid "Unable to lookup server host address"
+msgstr "Ne mogu da odredim host adresu FTP servera"
+
+#: lib/ftp.c:681
+#, fuzzy
+msgid "Unable to lookup server host name"
+msgstr "Ne mogu da odredim ime FTP hosta"
+
+#: lib/ftp.c:684
+#, fuzzy
+msgid "Failed to connect to server"
+msgstr "Ne mogu da se pove¾em sa FTP serverom"
+
+#: lib/ftp.c:687
+#, fuzzy
+msgid "Failed to establish data connection to server"
+msgstr "Ne mogu da uspostavim vezu podataka sa FTP serverom"
+
+#: lib/ftp.c:690
+msgid "IO error to local file"
+msgstr "Ulazno/izlazna gre¹ka kod lokalne datoteke"
+
+#: lib/ftp.c:693
+msgid "Error setting remote server to passive mode"
+msgstr "Gre¹ka kod stavljanja udaljenog servera u pasivni re¾im"
+
+#: lib/ftp.c:696
+msgid "File not found on server"
+msgstr "Datoteka nije pronaðena na serveru"
+
+#: lib/ftp.c:699
+msgid "Abort in progress"
 msgstr ""
 
+#: lib/ftp.c:703
+#, fuzzy
+msgid "Unknown or unexpected error"
+msgstr "Neoèekivana ili nepoznata FTP gre¹ka"
+
 #. This should not be allowed
-#: ../lib/header.c:905
+#: lib/header.c:169
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: ../lib/header.c:935
+#: lib/header.c:200
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: ../lib/header.c:994
+#: lib/header.c:763
 #, c-format
-msgid "Bad count for headerAddEntry(): %d\n"
+msgid "Data type %d not supprted\n"
 msgstr ""
 
-#: ../lib/header.c:1328
-msgid "? expected in expression"
-msgstr "oèekivan znak ? u izrazu"
-
-#: ../lib/header.c:1335
-#, fuzzy
-msgid "{ expected after ? in expression"
-msgstr "{ oèekivano posle ? u izrazu"
-
-#: ../lib/header.c:1345 ../lib/header.c:1377
-msgid "} expected in expression"
-msgstr "} oèekivano u izrazu"
-
-#: ../lib/header.c:1352
-msgid ": expected following ? subexpression"
-msgstr "oèekivano : praæeno ? podizrazom"
-
-#: ../lib/header.c:1365
-#, fuzzy
-msgid "{ expected after : in expression"
-msgstr "{ oèekivano posle : u izrazu"
-
-#: ../lib/header.c:1384
-msgid "| expected at end of expression"
-msgstr "| oèekivano na kraju izraza"
+#: lib/header.c:1119
+#, c-format
+msgid "Bad count for headerAddEntry(): %d\n"
+msgstr ""
 
-#: ../lib/header.c:1478
+#: lib/header.c:1520
 #, c-format
 msgid "missing { after %"
 msgstr "nedostaje { posle %"
 
-#: ../lib/header.c:1506
+#: lib/header.c:1548
 msgid "missing } after %{"
 msgstr "nedostaje } posle %"
 
-#: ../lib/header.c:1518
+#: lib/header.c:1560
 msgid "empty tag format"
 msgstr "prazan 'tag' format'"
 
-#: ../lib/header.c:1528
+#: lib/header.c:1570
 msgid "empty tag name"
 msgstr "prazno ime tag-a"
 
-#: ../lib/header.c:1543
+#: lib/header.c:1585
 msgid "unknown tag"
 msgstr "nepoznat tag"
 
-#: ../lib/header.c:1569
+#: lib/header.c:1611
 msgid "] expected at end of array"
 msgstr "] oèekivano na kraju niza"
 
-#: ../lib/header.c:1585
+#: lib/header.c:1627
 msgid "unexpected ]"
 msgstr "neoèekivano ]"
 
-#: ../lib/header.c:1587
+#: lib/header.c:1629
 msgid "unexpected }"
 msgstr "neoèekivano }"
 
-#: ../lib/header.c:1762
+#: lib/header.c:1682
+msgid "? expected in expression"
+msgstr "oèekivan znak ? u izrazu"
+
+#: lib/header.c:1689
+#, fuzzy
+msgid "{ expected after ? in expression"
+msgstr "{ oèekivano posle ? u izrazu"
+
+#: lib/header.c:1699 lib/header.c:1731
+msgid "} expected in expression"
+msgstr "} oèekivano u izrazu"
+
+#: lib/header.c:1706
+msgid ": expected following ? subexpression"
+msgstr "oèekivano : praæeno ? podizrazom"
+
+#: lib/header.c:1719
+#, fuzzy
+msgid "{ expected after : in expression"
+msgstr "{ oèekivano posle : u izrazu"
+
+#: lib/header.c:1738
+msgid "| expected at end of expression"
+msgstr "| oèekivano na kraju izraza"
+
+#: lib/header.c:1905
 msgid "(unknown type)"
 msgstr "(nepoznat tip)"
 
-#: ../lib/install.c:93
-msgid "source package expected, binary found"
-msgstr ""
-
-#: ../lib/install.c:169 ../lib/uninstall.c:111
+#: lib/install.c:141 lib/uninstall.c:179
 #, fuzzy, c-format
 msgid "   file: %s action: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: ../lib/install.c:186
+#: lib/install.c:159
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: ../lib/install.c:194
+#: lib/install.c:167
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: ../lib/install.c:221
+#: lib/install.c:195
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
-#: ../lib/install.c:289
-#, fuzzy, c-format
-msgid "package: %s-%s-%s files test = %d\n"
-msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
-
-#: ../lib/install.c:352
-msgid "stopping install as we're running --test\n"
-msgstr ""
-
-#: ../lib/install.c:357
-msgid "running preinstall script (if any)\n"
-msgstr ""
-
-#: ../lib/install.c:387
+#. this would probably be a good place to check if disk space
+#. was used up - if so, we should return a different error
+#: lib/install.c:358
 #, c-format
-msgid "warning: %s created as %s"
+msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: ../lib/install.c:423
-#, c-format
-msgid "warning: %s saved as %s"
+#: lib/install.c:359
+msgid " on file "
 msgstr ""
 
-#: ../lib/install.c:427 ../lib/install.c:790 ../lib/uninstall.c:337
-#, c-format
-msgid "rename of %s to %s failed: %s"
-msgstr "preimenovanje %s u %s nije uspelo: %s"
-
-#: ../lib/install.c:507
-msgid "running postinstall script (if any)\n"
-msgstr ""
-
-#. this would probably be a good place to check if disk space
-#. was used up - if so, we should return a different error
-#: ../lib/install.c:613
-#, c-format
-msgid "unpacking of archive failed%s%s: %s"
-msgstr ""
-
-#: ../lib/install.c:614
-msgid " on file "
-msgstr ""
-
-#: ../lib/install.c:654
+#: lib/install.c:402
 #, fuzzy
 msgid "installing a source package\n"
 msgstr "instaliraj paket"
 
-#: ../lib/install.c:665 ../lib/install.c:687
+#: lib/install.c:413
 #, fuzzy, c-format
-msgid "cannot create %s"
+msgid "cannot create %s: %s"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: ../lib/install.c:672 ../lib/install.c:694
+#: lib/install.c:421 lib/install.c:443
 #, fuzzy, c-format
 msgid "cannot write to %s"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: ../lib/install.c:676
+#: lib/install.c:425
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: ../lib/install.c:698
+#: lib/install.c:436
+#, fuzzy, c-format
+msgid "cannot create %s"
+msgstr "Ne mogu da otvorim datoteku %s: "
+
+#: lib/install.c:447
 #, fuzzy, c-format
 msgid "spec file in: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: ../lib/install.c:731 ../lib/install.c:767
+#: lib/install.c:481 lib/install.c:509
 #, fuzzy
 msgid "source package contains no .spec file"
 msgstr "upit nad paketom koji ima <datoteku>"
 
-#: ../lib/install.c:788
+#: lib/install.c:530
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: ../lib/lookup.c:83
+#: lib/install.c:532 lib/install.c:810 lib/uninstall.c:26
+#, c-format
+msgid "rename of %s to %s failed: %s"
+msgstr "preimenovanje %s u %s nije uspelo: %s"
+
+#: lib/install.c:622
+msgid "source package expected, binary found"
+msgstr ""
+
+#: lib/install.c:679
+#, fuzzy, c-format
+msgid "package: %s-%s-%s files test = %d\n"
+msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
+
+#: lib/install.c:740
+msgid "stopping install as we're running --test\n"
+msgstr ""
+
+#: lib/install.c:745
+msgid "running preinstall script (if any)\n"
+msgstr ""
+
+#: lib/install.c:770
+#, c-format
+msgid "warning: %s created as %s"
+msgstr ""
+
+#: lib/install.c:806
+#, c-format
+msgid "warning: %s saved as %s"
+msgstr ""
+
+#: lib/install.c:880
+msgid "running postinstall scripts (if any)\n"
+msgstr ""
+
+#: lib/lookup.c:35
 #, c-format
 msgid "cannot read header at %d for lookup"
 msgstr "ne mogu da proèitam zaglavlje na %d za proveru"
 
-#: ../lib/macro.c:129
+#: lib/macro.c:149
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr ""
 
 #. XXX just in case
-#: ../lib/macro.c:218
+#: lib/macro.c:243
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: ../lib/macro.c:253
+#: lib/macro.c:278
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: ../lib/macro.c:426
+#: lib/macro.c:457
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: ../lib/macro.c:452
+#: lib/macro.c:483
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: ../lib/macro.c:458
+#: lib/macro.c:489
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: ../lib/macro.c:463
+#: lib/macro.c:494
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: ../lib/macro.c:468
+#: lib/macro.c:499
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: ../lib/macro.c:493
+#: lib/macro.c:524
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: ../lib/macro.c:566
+#: lib/macro.c:601
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: ../lib/macro.c:650
+#: lib/macro.c:698
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr ""
 
-#: ../lib/macro.c:825
+#: lib/macro.c:870
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: ../lib/macro.c:881 ../lib/macro.c:897
+#: lib/macro.c:936 lib/macro.c:952
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: ../lib/macro.c:930
+#: lib/macro.c:992
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: ../lib/macro.c:1053
+#: lib/macro.c:1115
 #, fuzzy
 msgid "Macro %%%.*s not found, skipping"
 msgstr "paket %s nije naðen u %s"
 
-#: ../lib/macro.c:1131
+#: lib/macro.c:1196
 msgid "Target buffer overflow"
 msgstr ""
 
-#: ../lib/macro.c:1274 ../lib/macro.c:1282
+#: lib/macro.c:1343 lib/macro.c:1351
 #, fuzzy, c-format
 msgid "File %s: %s"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: ../lib/macro.c:1285
+#: lib/macro.c:1354
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
 
-#: ../lib/messages.c:51
+#: lib/messages.c:55
 msgid "warning: "
 msgstr "upozorenje: "
 
-#: ../lib/messages.c:57
+#: lib/messages.c:64
 msgid "error: "
 msgstr "gre¹ka: "
 
-#: ../lib/messages.c:63
+#: lib/messages.c:73
 msgid "fatal error: "
 msgstr "fatalna gre¹ka: "
 
-#: ../lib/messages.c:70
+#: lib/messages.c:82
 msgid "internal error (rpm bug?): "
 msgstr ""
 
-#: ../lib/misc.c:342 ../lib/misc.c:348 ../lib/misc.c:355
+#: lib/misc.c:367 lib/misc.c:373 lib/misc.c:380
 #, fuzzy, c-format
 msgid "error creating temporary file %s"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: ../lib/oldheader.c:292
+#: lib/oldheader.c:299
 #, fuzzy, c-format
 msgid "bad file state: %s"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: ../lib/package.c:51
+#: lib/package.c:234
 msgid "package is a version one package!\n"
 msgstr ""
 
-#: ../lib/package.c:54
+#: lib/package.c:239
 msgid "old style source package -- I'll do my best\n"
 msgstr ""
 
-#: ../lib/package.c:57
+#: lib/package.c:242
 #, c-format
 msgid "archive offset is %d\n"
 msgstr ""
 
-#: ../lib/package.c:67
+#: lib/package.c:252
 msgid "old style binary package\n"
 msgstr ""
 
-#: ../lib/package.c:105
+#: lib/package.c:298
 msgid ""
 "only packages with major numbers <= 3 are supported by this version of RPM"
 msgstr "samo paketi sa glavnim brojevima <= 3 su podr¾ani u ovoj verziji RPM-a"
 
-#: ../lib/problems.c:29
+#: lib/problems.c:43
+#, c-format
+msgid " is needed by %s-%s-%s\n"
+msgstr " je potreban paketu %s-%s-%s\n"
+
+#: lib/problems.c:46
+#, c-format
+msgid " conflicts with %s-%s-%s\n"
+msgstr " se sudara sa %s-%s-%s\n"
+
+#: lib/problems.c:66
 #, fuzzy, c-format
-msgid "package %s-%s-%s is for a different operating system"
+msgid "package %s-%s-%s is for a different architecture"
 msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
 
-#: ../lib/problems.c:34
+#: lib/problems.c:71
 #, fuzzy, c-format
-msgid "package %s-%s-%s is for a different architecture"
+msgid "package %s-%s-%s is for a different operating system"
 msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
 
-#: ../lib/problems.c:39
+#: lib/problems.c:76
 #, fuzzy, c-format
 msgid "package %s-%s-%s is already installed"
 msgstr "paket %s nije instaliran\n"
 
-#: ../lib/problems.c:44
+#: lib/problems.c:81
 #, fuzzy, c-format
 msgid "path %s is not relocateable for package %s-%s-%s"
 msgstr "paket %s nije instaliran\n"
 
-#: ../lib/problems.c:49
+#: lib/problems.c:86
 #, c-format
 msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
 msgstr ""
 
-#: ../lib/problems.c:55
+#: lib/problems.c:92
 #, fuzzy, c-format
 msgid ""
 "file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
 msgstr " se sudara sa %s-%s-%s\n"
 
-#: ../lib/problems.c:61
+#: lib/problems.c:98
 #, fuzzy, c-format
 msgid "package %s-%s-%s (which is newer then %s-%s-%s) is already installed"
 msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
 
-#: ../lib/problems.c:67
+#: lib/problems.c:104
 #, c-format
-msgid "installing package %s-%s-%s needs %ld%c on the %s filesystem"
+msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: ../lib/problems.c:77
+#: lib/problems.c:116
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
 
-#: ../lib/query.c:57
-#, fuzzy
-msgid "query package owning file"
-msgstr "upit nad paketom koji ima <datoteku>"
-
-#: ../lib/query.c:59
-#, fuzzy
-msgid "query packages in group"
-msgstr "paket nema imena"
-
-#: ../lib/query.c:61
-#, fuzzy
-msgid "query a package file"
-msgstr "upit nad svim paketima"
-
-#: ../lib/query.c:65
-#, fuzzy
-msgid "query a spec file"
-msgstr "upit nad %s neuspeo\n"
-
-#: ../lib/query.c:67
-#, fuzzy
-msgid "query the pacakges triggered by the package"
-msgstr "upit nad paketom koji ima <datoteku>"
-
-#: ../lib/query.c:69
-#, fuzzy
-msgid "query the packages which require a capability"
-msgstr "upit za pakete koji zahtevaju <i> svojstvo"
-
-#: ../lib/query.c:71
-#, fuzzy
-msgid "query the packages which provide a capability"
-msgstr "upit za pakete koji omoguæavaju <i> svojstvo"
-
-#: ../lib/query.c:108
-#, fuzzy
-msgid "list all configuration files"
-msgstr "prika¾i samo konfiguracione datoteke (povlaèi -i)"
-
-#: ../lib/query.c:110
-#, fuzzy
-msgid "list all documentation files"
-msgstr "instaliraj dokumentaciju"
-
-#: ../lib/query.c:112
-#, fuzzy
-msgid "dump basic file information"
-msgstr "prika¾i informacije o paketu"
-
-#: ../lib/query.c:114
-#, fuzzy
-msgid "list files in package"
-msgstr "instaliraj paket"
-
-#: ../lib/query.c:118
-msgid "use the following query format"
-msgstr ""
-
-#: ../lib/query.c:120
-msgid "substitute i18n sections from the following catalogue"
-msgstr ""
-
-#: ../lib/query.c:123
-msgid "display the states of the listed files"
-msgstr ""
-
-#: ../lib/query.c:125
-#, fuzzy
-msgid "display a verbose file listing"
-msgstr "prika¾i listu datoteka u paketu"
-
-#: ../lib/query.c:136
+#: lib/query.c:138
 #, c-format
 msgid "error in format: %s\n"
 msgstr "gre¹ka u formatu: %s\n"
 
-#: ../lib/query.c:177
+#: lib/query.c:180
 msgid "(contains no files)"
 msgstr "(nema datoteka)"
 
-#: ../lib/query.c:230
+#: lib/query.c:233
 msgid "normal        "
 msgstr ""
 
-#: ../lib/query.c:232
+#: lib/query.c:235
 msgid "replaced      "
 msgstr ""
 
-#: ../lib/query.c:234
-msgid "net shared    "
-msgstr ""
-
-#: ../lib/query.c:236
+#: lib/query.c:237
 #, fuzzy
 msgid "not installed "
 msgstr "paket %s nije instaliran\n"
 
-#: ../lib/query.c:238
+#: lib/query.c:239
+msgid "net shared    "
+msgstr ""
+
+#: lib/query.c:241
 #, fuzzy, c-format
 msgid "(unknown %3d) "
 msgstr "(nepoznat tip)"
 
-#: ../lib/query.c:242
+#: lib/query.c:245
 msgid "(no state)    "
 msgstr ""
 
-#: ../lib/query.c:258 ../lib/query.c:288
+#: lib/query.c:261 lib/query.c:291
 msgid "package has neither file owner or id lists"
 msgstr ""
 
-#: ../lib/query.c:514
+#: lib/query.c:400
 #, c-format
 msgid "record number %u\n"
 msgstr ""
 
-#: ../lib/query.c:518
+#: lib/query.c:404
 msgid "error: could not read database record\n"
 msgstr "gre¹ka: neuspelo èitanje sloga baze podataka\n"
 
-#: ../lib/query.c:547
+#: lib/query.c:442
 #, fuzzy, c-format
-msgid "open of %s failed\n"
+msgid "open of %s failed: %s\n"
 msgstr "neuspelo otvaranje %s: %s\n"
 
-#: ../lib/query.c:560
+#: lib/query.c:455
 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:572
+#: lib/query.c:464 lib/rpminstall.c:203
+#, c-format
+msgid "%s does not appear to be a RPM package\n"
+msgstr "%s ne lièi na RPM paket\n"
+
+#: lib/query.c:467
 #, c-format
 msgid "query of %s failed\n"
 msgstr "upit nad %s neuspeo\n"
 
-#: ../lib/query.c:593
+#: lib/query.c:494
 #, fuzzy, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "upit nad %s neuspeo\n"
 
-#: ../lib/query.c:627
+#: lib/query.c:519
 msgid "could not read database record!\n"
 msgstr "neuspelo èitanje sloga baze podataka!\n"
 
-#: ../lib/query.c:638
+#: lib/query.c:530
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "grupa %s ne sadr¾i nijedan paket\n"
 
-#: ../lib/query.c:648
+#: lib/query.c:540
 #, c-format
 msgid "no package provides %s\n"
 msgstr "nijedan paket ne obezbeðuje %s\n"
 
-#: ../lib/query.c:658
+#: lib/query.c:550
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "nijedan paket ne aktivira %s\n"
 
-#: ../lib/query.c:668
+#: lib/query.c:560
 #, c-format
 msgid "no package requires %s\n"
 msgstr "nijedan paket ne zahteva %s\n"
 
-#: ../lib/query.c:683
+#: lib/query.c:575
 #, fuzzy, c-format
 msgid "file %s: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: ../lib/query.c:686
+#: lib/query.c:578
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "datoteka %s ne pripada nijednom paketu\n"
 
-#: ../lib/query.c:699
+#: lib/query.c:591
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "pogre¹an broj paketa: %s\n"
 
-#: ../lib/query.c:702
+#: lib/query.c:594
 #, fuzzy, c-format
 msgid "package record number: %d\n"
 msgstr "pogre¹an broj paketa: %s\n"
 
-#: ../lib/query.c:705
+#: lib/query.c:597
 #, c-format
 msgid "record %d could not be read\n"
 msgstr "ne mogu da proèitam slog %d\n"
 
-#: ../lib/query.c:720
+#: lib/query.c:609 lib/rpminstall.c:393
+#, c-format
+msgid "package %s is not installed\n"
+msgstr "paket %s nije instaliran\n"
+
+#: lib/query.c:612
 #, c-format
 msgid "error looking for package %s\n"
 msgstr "gre¹ka kod potrage za paketom %s\n"
 
-#: ../lib/query.c:742
+#: lib/query.c:634
 #, fuzzy
 msgid "rpmQuery: rpmdbOpen() failed\n"
 msgstr "%s: Neuspelo otvaranje\n"
 
-#: ../lib/rebuilddb.c:18
+#: lib/query.c:691
+#, fuzzy
+msgid "query package owning file"
+msgstr "upit nad paketom koji ima <datoteku>"
+
+#: lib/query.c:693
+#, fuzzy
+msgid "query packages in group"
+msgstr "paket nema imena"
+
+#: lib/query.c:695
+#, fuzzy
+msgid "query a package file"
+msgstr "upit nad svim paketima"
+
+#: lib/query.c:699
+#, fuzzy
+msgid "query a spec file"
+msgstr "upit nad %s neuspeo\n"
+
+#: lib/query.c:701
+#, fuzzy
+msgid "query the pacakges triggered by the package"
+msgstr "upit nad paketom koji ima <datoteku>"
+
+#: lib/query.c:703
+#, fuzzy
+msgid "query the packages which require a capability"
+msgstr "upit za pakete koji zahtevaju <i> svojstvo"
+
+#: lib/query.c:705
+#, fuzzy
+msgid "query the packages which provide a capability"
+msgstr "upit za pakete koji omoguæavaju <i> svojstvo"
+
+#: lib/query.c:742
+#, fuzzy
+msgid "list all configuration files"
+msgstr "prika¾i samo konfiguracione datoteke (povlaèi -i)"
+
+#: lib/query.c:744
+#, fuzzy
+msgid "list all documentation files"
+msgstr "instaliraj dokumentaciju"
+
+#: lib/query.c:746
+#, fuzzy
+msgid "dump basic file information"
+msgstr "prika¾i informacije o paketu"
+
+#: lib/query.c:748
+#, fuzzy
+msgid "list files in package"
+msgstr "instaliraj paket"
+
+#: lib/query.c:752
+msgid "use the following query format"
+msgstr ""
+
+#: lib/query.c:754
+msgid "substitute i18n sections from the following catalogue"
+msgstr ""
+
+#: lib/query.c:757
+msgid "display the states of the listed files"
+msgstr ""
+
+#: lib/query.c:759
+#, fuzzy
+msgid "display a verbose file listing"
+msgstr "prika¾i listu datoteka u paketu"
+
+#: lib/rebuilddb.c:20
 #, fuzzy, c-format
 msgid "rebuilding database in rootdir %s\n"
 msgstr "rekreiraj bazu podataka iz postojeæe baze"
 
-#: ../lib/rebuilddb.c:22 ../lib/rpmdb.c:64 ../lib/rpmdb.c:82 ../lib/rpmdb.c:98
+#: lib/rebuilddb.c:24 lib/rpmdb.c:69 lib/rpmdb.c:88 lib/rpmdb.c:105
 msgid "no dbpath has been set"
 msgstr "dbpath nije odreðen"
 
-#: ../lib/rebuilddb.c:30
+#: lib/rebuilddb.c:33
 #, c-format
 msgid "temporary database %s already exists"
 msgstr "privremena baza podataka %s veæ postoji"
 
-#: ../lib/rebuilddb.c:34
+#: lib/rebuilddb.c:37
 #, fuzzy, c-format
 msgid "creating directory: %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: ../lib/rebuilddb.c:36
+#: lib/rebuilddb.c:39
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: ../lib/rebuilddb.c:44
+#: lib/rebuilddb.c:43
 msgid "opening old database\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:51
+#: lib/rebuilddb.c:50
 msgid "opening new database\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:61 ../lib/rebuilddb.c:79
+#: lib/rebuilddb.c:60 lib/rebuilddb.c:78
 #, c-format
 msgid "record number %d in database is bad -- skipping it"
 msgstr "slog broj %d u bazi podataka je neispravan -- preskaèem ga"
 
-#: ../lib/rebuilddb.c:73
+#: lib/rebuilddb.c:72
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr "ne mogu da dodam slog originalno na %d"
 
-#: ../lib/rebuilddb.c:92
+#: lib/rebuilddb.c:91
 msgid "failed to rebuild database; original database remains in place\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:100
+#: lib/rebuilddb.c:99
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:102
+#: lib/rebuilddb.c:101
 #, c-format
 msgid "replaces files in %s with files from %s to recover"
 msgstr ""
 
-#: ../lib/rebuilddb.c:108
+#: lib/rebuilddb.c:107
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: ../lib/rpmdb.c:159
+#: lib/rpmchecksig.c:31
+#, fuzzy, c-format
+msgid "%s: fdOpen failed: %s\n"
+msgstr "%s: Neuspelo otvaranje\n"
+
+#: lib/rpmchecksig.c:42
+#, fuzzy
+msgid "makeTempFile failed\n"
+msgstr "%s: Neuspelo otvaranje\n"
+
+#: lib/rpmchecksig.c:74
+#, fuzzy, c-format
+msgid "%s: fdWrite failed: %s\n"
+msgstr "%s: Neuspelo otvaranje\n"
+
+#: lib/rpmchecksig.c:80
+#, fuzzy, c-format
+msgid "%s: fdRead failed: %s\n"
+msgstr "%s: Neuspeo 'readLead'\n"
+
+#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:242
+#, c-format
+msgid "%s: readLead failed\n"
+msgstr "%s: Neuspeo 'readLead'\n"
+
+#: lib/rpmchecksig.c:118
+#, c-format
+msgid "%s: Can't sign v1.0 RPM\n"
+msgstr "%s: Ne mogu da potpi¹em v1.0 RPM\n"
+
+#: lib/rpmchecksig.c:122
+#, c-format
+msgid "%s: Can't re-sign v2.0 RPM\n"
+msgstr "%s: Ne mogu da ponovo potpi¹em v2.0 RPM\n"
+
+#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:256
+#, c-format
+msgid "%s: rpmReadSignature failed\n"
+msgstr "%s: Neuspelo 'rpmReadSignature'\n"
+
+#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:261
+#, c-format
+msgid "%s: No signature available\n"
+msgstr "%s: Potpis nije na raspolaganju\n"
+
+#: lib/rpmchecksig.c:167
+#, fuzzy, c-format
+msgid "%s: writeLead failed: %s\n"
+msgstr "%s: Neuspeo 'readLead'\n"
+
+#: lib/rpmchecksig.c:173
+#, fuzzy, c-format
+msgid "%s: rpmWriteSignature failed\n"
+msgstr "%s: Neuspelo 'rpmReadSignature'\n"
+
+#: lib/rpmchecksig.c:248
+#, c-format
+msgid "%s: No signature available (v1.0 RPM)\n"
+msgstr "%s: Potpis nije na raspolaganju (RPM v1.0)\n"
+
+#: lib/rpmchecksig.c:408
+msgid "NOT OK"
+msgstr ""
+
+#: lib/rpmchecksig.c:409 lib/rpmchecksig.c:423
+#, fuzzy
+msgid " (MISSING KEYS:"
+msgstr " (NEDOSTAJUÆI KLJUÈEVI)"
+
+#: lib/rpmchecksig.c:411 lib/rpmchecksig.c:425
+msgid ") "
+msgstr ""
+
+#: lib/rpmchecksig.c:412 lib/rpmchecksig.c:426
+msgid " (UNTRUSTED KEYS:"
+msgstr ""
+
+#: lib/rpmchecksig.c:414 lib/rpmchecksig.c:428
+msgid ")"
+msgstr ""
+
+#: lib/rpmchecksig.c:422
+msgid "OK"
+msgstr ""
+
+#: lib/rpmdb.c:184
 #, fuzzy, c-format
 msgid "opening database mode 0x%x in %s\n"
 msgstr "rekreiraj bazu podataka iz postojeæe baze"
 
-#: ../lib/rpmdb.c:182 ../lib/rpmdb.c:189
+#: lib/rpmdb.c:193 lib/url.c:431
+#, c-format
+msgid "failed to open %s\n"
+msgstr "neuspelo otvaranje %s\n"
+
+#: lib/rpmdb.c:206 lib/rpmdb.c:214
 #, c-format
 msgid "cannot get %s lock on database"
 msgstr "ne mogu da dobijem %s zakljuèavanje baze podataka"
 
-#: ../lib/rpmdb.c:183
+#: lib/rpmdb.c:207
 msgid "exclusive"
 msgstr "ekskluzivno"
 
-#: ../lib/rpmdb.c:190
+#: lib/rpmdb.c:215
 msgid "shared"
 msgstr "deljeno"
 
-#: ../lib/rpmdb.c:213
+#: lib/rpmdb.c:246
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
-#: ../lib/rpmdb.c:372
+#: lib/rpmdb.c:439
 #, c-format
 msgid "package %s not listed in %s"
 msgstr "paket %s nije naveden u %s"
 
-#: ../lib/rpmdb.c:383
+#: lib/rpmdb.c:450
 #, c-format
 msgid "package %s not found in %s"
 msgstr "paket %s nije naðen u %s"
 
-#: ../lib/rpmdb.c:407 ../lib/uninstall.c:40
+#: lib/rpmdb.c:475 lib/uninstall.c:85
 #, c-format
 msgid "cannot read header at %d for uninstall"
 msgstr "ne mogu da proèitam zaglavlje na %d za deinstalaciju"
 
-#: ../lib/rpmdb.c:415
+#: lib/rpmdb.c:483
 msgid "package has no name"
 msgstr "paket nema imena"
 
-#: ../lib/rpmdb.c:417
+#: lib/rpmdb.c:485
 msgid "removing name index\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:422
+#: lib/rpmdb.c:490
 #, fuzzy
 msgid "package has no group\n"
 msgstr "paket nema imena"
 
-#: ../lib/rpmdb.c:424
+#: lib/rpmdb.c:492
 msgid "removing group index\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:431
+#: lib/rpmdb.c:499
 #, fuzzy, c-format
 msgid "removing provides index for %s\n"
 msgstr "gre¹ka uklanjanja sloga %s u %s"
 
-#: ../lib/rpmdb.c:446
+#: lib/rpmdb.c:514
 #, fuzzy, c-format
 msgid "removing requiredby index for %s\n"
 msgstr "gre¹ka uklanjanja sloga %s u %s"
 
-#: ../lib/rpmdb.c:458
+#: lib/rpmdb.c:526
 #, fuzzy, c-format
 msgid "removing trigger index for %s\n"
 msgstr "gre¹ka uklanjanja sloga %s u %s"
 
-#: ../lib/rpmdb.c:469
+#: lib/rpmdb.c:537
 #, c-format
 msgid "removing conflict index for %s\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:486
+#: lib/rpmdb.c:554
 #, c-format
 msgid "removing file index for %s\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:495
+#: lib/rpmdb.c:563
 #, fuzzy
 msgid "package has no files\n"
 msgstr "paket nema imena"
 
-#: ../lib/rpmdb.c:568
+#: lib/rpmdb.c:645
 msgid "cannot allocate space for database"
 msgstr "ne mogu da zauzmem prostor za bazu podataka"
 
-#: ../lib/rpmdb.c:639
+#: lib/rpmdb.c:711
 #, c-format
 msgid "cannot read header at %d for update"
 msgstr "ne mogu da proèitam zaglavlje na %d za a¾uriranje"
 
-#: ../lib/rpmdb.c:648
+#: lib/rpmdb.c:720
 msgid "header changed size!"
 msgstr ""
 
-#: ../lib/rpmlead.c:41
+#: lib/rpminstall.c:128
+#, fuzzy
+msgid "counting packages to install\n"
+msgstr "nedostaje paket za instalaciju"
+
+#: lib/rpminstall.c:132
+#, fuzzy, c-format
+msgid "found %d packages\n"
+msgstr "upit nad svim paketima"
+
+#: lib/rpminstall.c:141
+#, fuzzy
+msgid "looking for packages to download\n"
+msgstr "gre¹ka kod potrage za paketom %s\n"
+
+#: lib/rpminstall.c:152
+#, c-format
+msgid "Retrieving %s\n"
+msgstr "Pribavljam %s\n"
+
+#: lib/rpminstall.c:161
+#, c-format
+msgid " ... as %s\n"
+msgstr ""
+
+#: lib/rpminstall.c:165
+#, fuzzy, c-format
+msgid "skipping %s - transfer failed - %s\n"
+msgstr "gre¹ka: preskaèem %s - neuspelo preno¹enje - %s\n"
+
+#: lib/rpminstall.c:182
+#, c-format
+msgid "retrieved %d packages\n"
+msgstr ""
+
+#: lib/rpminstall.c:191 lib/rpminstall.c:332
+#, fuzzy, c-format
+msgid "cannot open file %s\n"
+msgstr "Ne mogu da otvorim datoteku %s: "
+
+#: lib/rpminstall.c:207 lib/rpminstall.c:469
+#, fuzzy, c-format
+msgid "%s cannot be installed\n"
+msgstr "gre¹ka: %s se ne mo¾e instalirati\n"
+
+#: lib/rpminstall.c:243
+#, fuzzy, c-format
+msgid "package %s is not relocateable\n"
+msgstr "paket %s nije instaliran\n"
+
+#: lib/rpminstall.c:261
+#, fuzzy, c-format
+msgid "error reading from file %s\n"
+msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
+
+#: lib/rpminstall.c:266
+#, c-format
+msgid "file %s requires a newer version of RPM\n"
+msgstr ""
+
+#: lib/rpminstall.c:283
+#, fuzzy, c-format
+msgid "found %d source and %d binary packages\n"
+msgstr "grupa %s ne sadr¾i nijedan paket\n"
+
+#: lib/rpminstall.c:294
+msgid "failed dependencies:\n"
+msgstr "lo¹e meðuzavisnosti:\n"
+
+#: lib/rpminstall.c:312
+#, fuzzy
+msgid "installing binary packages\n"
+msgstr "instaliraj paket"
+
+#: lib/rpminstall.c:397
+#, fuzzy, c-format
+msgid "searching for package %s\n"
+msgstr "gre¹ka potrage za paketom %s\n"
+
+#: lib/rpminstall.c:406
+#, c-format
+msgid "\"%s\" specifies multiple packages\n"
+msgstr "\"%s\" odreðuje vi¹e paketa\n"
+
+#: lib/rpminstall.c:432
+msgid "removing these packages would break dependencies:\n"
+msgstr "uklanjanje oviha paketa æe naru¹iti zavisnosti:\n"
+
+#: lib/rpminstall.c:459
+#, fuzzy, c-format
+msgid "cannot open %s\n"
+msgstr "gre¹ka: ne mogu da otvorim %s\n"
+
+#: lib/rpminstall.c:464
+#, c-format
+msgid "Installing %s\n"
+msgstr "Instaliram %s\n"
+
+#: lib/rpmlead.c:48
 #, c-format
 msgid "read failed: %s (%d)"
 msgstr "neuspelo èitanje: %s (%d)"
 
-#: ../lib/rpmrc.c:178
+#: lib/rpmrc.c:177
 #, c-format
 msgid "missing second ':' at %s:%d"
 msgstr "nedostaje drugo ':' na %s:%d"
 
-#: ../lib/rpmrc.c:181
+#: lib/rpmrc.c:180
 #, c-format
 msgid "missing architecture name at %s:%d"
 msgstr "nedostaje ime arhitekture na %s:%d"
 
-#: ../lib/rpmrc.c:329
+#: lib/rpmrc.c:328
 #, c-format
 msgid "Incomplete data line at %s:%d"
 msgstr "Nepotpuna linija podataka na %s:%d"
 
-#: ../lib/rpmrc.c:333
+#: lib/rpmrc.c:332
 #, c-format
 msgid "Too many args in data line at %s:%d"
 msgstr "Premnogo argumenata u liniji podataka na %s:%d"
 
-#: ../lib/rpmrc.c:340
+#: lib/rpmrc.c:339
 #, c-format
 msgid "Bad arch/os number: %s (%s:%d)"
 msgstr "Lo¹ broj arhitekture/oper.sist.: %s (%s:%d)"
 
-#: ../lib/rpmrc.c:374
+#: lib/rpmrc.c:373
 #, c-format
 msgid "Incomplete default line at %s:%d"
 msgstr "Nepotpuna podrazumevana linija na %s:%d"
 
-#: ../lib/rpmrc.c:379
+#: lib/rpmrc.c:378
 #, c-format
 msgid "Too many args in default line at %s:%d"
 msgstr "Premnogo argumenata u podrazumevanoj liniji na %s:%d"
 
-#: ../lib/rpmrc.c:562
+#: lib/rpmrc.c:561
 #, c-format
 msgid "Cannot expand %s"
 msgstr ""
 
-#: ../lib/rpmrc.c:577
+#: lib/rpmrc.c:576
 #, c-format
 msgid "Unable to open %s for reading: %s."
 msgstr "Ne mogu da otvorim %s za èitanje: %s"
 
-#: ../lib/rpmrc.c:611
+#: lib/rpmrc.c:608
 #, c-format
 msgid "Failed to read %s: %s."
 msgstr "Neuspelo èitanje %s: %s."
 
-#: ../lib/rpmrc.c:642
+#: lib/rpmrc.c:638
 #, c-format
 msgid "missing ':' at %s:%d"
 msgstr "nedostaje ':' na %s:%d"
 
-#: ../lib/rpmrc.c:658 ../lib/rpmrc.c:716
+#: lib/rpmrc.c:655 lib/rpmrc.c:729
 #, c-format
 msgid "missing argument for %s at %s:%d"
 msgstr "nedostaje argument za %s na %s:%d"
 
-#: ../lib/rpmrc.c:672 ../lib/rpmrc.c:690
+#: lib/rpmrc.c:672 lib/rpmrc.c:694
 #, fuzzy, c-format
 msgid "%s expansion failed at %s:%d \"%s\""
 msgstr "neuspelo otvaranje %s: %s"
 
-#: ../lib/rpmrc.c:678
+#: lib/rpmrc.c:680
 #, fuzzy, c-format
 msgid "cannot open %s at %s:%d"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: ../lib/rpmrc.c:706
+#: lib/rpmrc.c:721
 #, c-format
 msgid "missing architecture for %s at %s:%d"
 msgstr "nedostaje arhitektura za %s na %s:%d"
 
-#: ../lib/rpmrc.c:773
+#: lib/rpmrc.c:788
 #, c-format
 msgid "bad option '%s' at %s:%d"
 msgstr "lo¹a opcija '%s' na %s:%d"
 
-#: ../lib/rpmrc.c:1109
+#: lib/rpmrc.c:1147
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: ../lib/rpmrc.c:1110
+#: lib/rpmrc.c:1148
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: ../lib/signature.c:147
+#: lib/signature.c:106
+#, c-format
+msgid "sigsize         : %d\n"
+msgstr ""
+
+#: lib/signature.c:107
+#, c-format
+msgid "Header + Archive: %d\n"
+msgstr ""
+
+#: lib/signature.c:108
+#, c-format
+msgid "expected size   : %d\n"
+msgstr ""
+
+#: lib/signature.c:112
+msgid "file is not regular -- skipping size check\n"
+msgstr ""
+
+#: lib/signature.c:134
 #, fuzzy
 msgid "No signature\n"
 msgstr "%s: Potpis nije na raspolaganju\n"
 
-#: ../lib/signature.c:150
+#: lib/signature.c:137
 #, fuzzy
 msgid "Old PGP signature\n"
 msgstr "napravi PGP potpis"
 
-#: ../lib/signature.c:163
+#: lib/signature.c:149
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr "Stari (interni) potpis!  Odakle vam!?"
 
-#: ../lib/signature.c:167
+#: lib/signature.c:153
 #, fuzzy
 msgid "New Header signature\n"
 msgstr "ne mogu da proèitam potpis"
 
 #. 8-byte pad
-#: ../lib/signature.c:175 ../lib/signature.c:213
+#: lib/signature.c:160 lib/signature.c:202
 #, c-format
 msgid "Signature size: %d\n"
 msgstr ""
 
-#: ../lib/signature.c:176 ../lib/signature.c:214
+#: lib/signature.c:161 lib/signature.c:203
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr ""
 
-#: ../lib/signature.c:306 ../lib/signature.c:812
-msgid "Couldn't exec pgp"
+#: lib/signature.c:266
+#, fuzzy, c-format
+msgid "Couldn't exec pgp (%s)"
 msgstr "Ne mogu da izvr¹im PGP"
 
-#: ../lib/signature.c:317
+#: lib/signature.c:277
 msgid "pgp failed"
 msgstr "PGP omanuo"
 
 #. PGP failed to write signature
 #. Just in case
-#: ../lib/signature.c:324
+#: lib/signature.c:284
 msgid "pgp failed to write signature"
 msgstr "PGP nije uspeo da zapi¹e potpis"
 
-#: ../lib/signature.c:329
+#: lib/signature.c:289
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: ../lib/signature.c:340 ../lib/signature.c:416
+#: lib/signature.c:300 lib/signature.c:377
 msgid "unable to read the signature"
 msgstr "ne mogu da proèitam potpis"
 
-#: ../lib/signature.c:345
+#: lib/signature.c:305
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: ../lib/signature.c:382 ../lib/signature.c:787
+#: lib/signature.c:343 lib/signature.c:686
 #, fuzzy
 msgid "Couldn't exec gpg"
 msgstr "Ne mogu da izvr¹im PGP"
 
-#: ../lib/signature.c:393
+#: lib/signature.c:354
 #, fuzzy
 msgid "gpg failed"
 msgstr "PGP omanuo"
 
 #. GPG failed to write signature
 #. Just in case
-#: ../lib/signature.c:400
+#: lib/signature.c:361
 #, fuzzy
 msgid "gpg failed to write signature"
 msgstr "PGP nije uspeo da zapi¹e potpis"
 
-#: ../lib/signature.c:405
+#: lib/signature.c:366
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: ../lib/signature.c:421
+#: lib/signature.c:382
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
-#: ../lib/signature.c:436
-#, c-format
-msgid "sigsize         : %d\n"
-msgstr ""
-
-#: ../lib/signature.c:437
-#, c-format
-msgid "Header + Archive: %d\n"
-msgstr ""
-
-#: ../lib/signature.c:438
-#, c-format
-msgid "expected size   : %d\n"
-msgstr ""
+#: lib/signature.c:409
+#, fuzzy
+msgid "Generating signature using PGP.\n"
+msgstr "napravi PGP potpis"
 
-#: ../lib/signature.c:442
-msgid "file is not regular -- skipping size check\n"
-msgstr ""
+#: lib/signature.c:415
+#, fuzzy
+msgid "Generating signature using GPG.\n"
+msgstr "napravi PGP potpis"
 
-#: ../lib/signature.c:560 ../lib/signature.c:607
+#: lib/signature.c:492 lib/signature.c:554
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr "Ne mogu da pokrenem pgp. Koristite --nopgp da preskoèite PGP proveru."
 
-#: ../lib/signature.c:605 ../lib/signature.c:677
+#: lib/signature.c:552 lib/signature.c:625
 #, fuzzy
 msgid "exec failed!\n"
 msgstr "%s: Neuspelo otvaranje\n"
 
-#: ../lib/signature.c:679
+#: lib/signature.c:627
 #, fuzzy
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr "Ne mogu da pokrenem pgp. Koristite --nopgp da preskoèite PGP proveru."
 
-#: ../lib/signature.c:716
+#: lib/signature.c:715
+msgid "Couldn't exec pgp"
+msgstr "Ne mogu da izvr¹im PGP"
+
+#. @notreached@
+#. This case should have been screened out long ago.
+#: lib/signature.c:719 lib/signature.c:772
+msgid "Invalid %%_signature spec in macro file"
+msgstr ""
+
+#: lib/signature.c:752
 #, fuzzy
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr "Morate podesiti \"pgp_name:\" u va¹oj rpmrc datoteci"
 
-#: ../lib/signature.c:728
+#: lib/signature.c:764
 #, fuzzy
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr "Morate podesiti \"pgp_name:\" u va¹oj rpmrc datoteci"
 
-#. Currently the calling function (rpm.c:main) is checking this and
-#. * doing a better job.  This section should never be accessed.
-#.
-#: ../lib/signature.c:736 ../lib/signature.c:816
-msgid "Invalid %%_signature spec in macro file"
-msgstr ""
-
-#: ../lib/transaction.c:793
+#: lib/transaction.c:363
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: ../lib/transaction.c:799
+#: lib/transaction.c:370
 #, fuzzy, c-format
 msgid "excluding %s\n"
 msgstr "Pribavljam %s\n"
 
-#: ../lib/transaction.c:887
+#: lib/transaction.c:489
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: ../lib/uninstall.c:51
+#: lib/uninstall.c:37
+#, c-format
+msgid "cannot remove %s - directory not empty"
+msgstr "ne mogu da uklonim %s - direktorijum nije prazan"
+
+#: lib/uninstall.c:40
+#, c-format
+msgid "rmdir of %s failed: %s"
+msgstr "neuspela komanda rmdir %s: %s"
+
+#: lib/uninstall.c:48
+#, c-format
+msgid "removal of %s failed: %s"
+msgstr "uklanjanje %s nije uspelo: %s"
+
+#: lib/uninstall.c:97
 #, fuzzy, c-format
 msgid "cannot read packages named %s for uninstall"
 msgstr "ne mogu da proèitam zaglavlje na %d za deinstalaciju"
 
-#: ../lib/uninstall.c:79
+#: lib/uninstall.c:130
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: ../lib/uninstall.c:124
+#: lib/uninstall.c:191
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: ../lib/uninstall.c:138
+#: lib/uninstall.c:204
 msgid "removing database entry\n"
 msgstr ""
 
-#: ../lib/uninstall.c:289
+#: lib/uninstall.c:365
 msgid "execution of script failed"
 msgstr "neuspelo izvr¹avanje skripta"
 
-#: ../lib/uninstall.c:348
+#: lib/url.c:144
 #, c-format
-msgid "cannot remove %s - directory not empty"
-msgstr "ne mogu da uklonim %s - direktorijum nije prazan"
+msgid "Password for %s@%s: "
+msgstr "Lozinka za %s@%s: "
+
+#: lib/url.c:168 lib/url.c:194
+#, fuzzy, c-format
+msgid "error: %sport must be a number\n"
+msgstr "gre¹ka: FTP port mora biti broj\n"
+
+#: lib/url.c:279
+#, fuzzy
+msgid "url port must be a number\n"
+msgstr "gre¹ka: FTP port mora biti broj\n"
 
-#: ../lib/uninstall.c:351
+#. XXX PARANOIA
+#: lib/url.c:317
 #, c-format
-msgid "rmdir of %s failed: %s"
-msgstr "neuspela komanda rmdir %s: %s"
+msgid "logging into %s as %s, pw %s\n"
+msgstr ""
 
-#: ../lib/uninstall.c:359
+#: lib/url.c:446
 #, c-format
-msgid "removal of %s failed: %s"
-msgstr "uklanjanje %s nije uspelo: %s"
+msgid "failed to create %s\n"
+msgstr "neuspelo kreiranje %s\n"
 
-#: ../lib/verify.c:36
+#: lib/verify.c:36
 #, fuzzy
 msgid "don't verify files in package"
 msgstr "instaliraj paket"
 
-#: ../lib/verify.c:206
+#: lib/verify.c:206
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 
-#: ../lib/verify.c:224
+#: lib/verify.c:224
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: ../lib/verify.c:257
+#: lib/verify.c:257
 #, fuzzy, c-format
 msgid "missing    %s\n"
 msgstr "nedostaje { posle %"
 
-#: ../lib/verify.c:321
+#: lib/verify.c:319
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "Nezadovoljene meðuzavisnosti za %s-%s-%s: "
 
-#: ../lib/verify.c:369
+#: lib/verify.c:367
 #, fuzzy
 msgid "rpmVerify: rpmdbOpen() failed\n"
 msgstr "%s: Neuspelo otvaranje\n"
 
+#, fuzzy
+#~ msgid "failed build prerequisites:\n"
+#~ msgstr "lo¹e meðuzavisnosti:\n"
+
+#~ msgid "Couldn't read the header/archive"
+#~ msgstr "Ne mogu da proèitam zaglavlje/arhivu"
+
+#~ msgid "Couldn't write header/archive to temp file"
+#~ msgstr "Ne mogu da upi¹em zaglavlje/arhivu u privremenu datoteku"
+
+#~ msgid "Couldn't read sigtarget"
+#~ msgstr "Ne mogu da proèitam 'sigtarget'"
+
+#~ msgid "Couldn't write package"
+#~ msgstr "Ne mogu da upi¹em paket"
+
+#~ msgid "Unable to write %s"
+#~ msgstr "Ne mogu da upi¹em %s"
+
+#~ msgid "unexpected query specifiers"
+#~ msgstr "neoèekivani parametri upita"
+
+#~ msgid "--nofiles may only be specified during package verification"
+#~ msgstr "--nofiles mo¾ete koristiti samo kod provere paketa"
+
+#~ msgid "--clean may only be used with -b and -t"
+#~ msgstr "--clean se mo¾e koristiti samo sa -b ili -t"
+
+#~ msgid "--rmsource may only be used with -b and -t"
+#~ msgstr "--rmsource se mo¾e koristiti samo sa -b ili -t"
+
+#~ msgid "--short-circuit may only be used during package building"
+#~ msgstr "--short-circuit se mo¾e koristiti samo tokom kreiranja paketa"
+
+#, fuzzy
+#~ msgid "--short-circuit may only be used with -bc, -bi, -bs, -tc -ti, or -ts"
+#~ msgstr "--short-circuit se mo¾e koristiti samo sa -bc, -bi, -tc ili -ti"
+
+#, fuzzy
+#~ msgid "pgp version 5 not found: "
+#~ msgstr "Datoteka nije pronaðena na serveru"
+
 #~ msgid "showing package: %d\n"
 #~ msgstr "prikazivanje paketa: %d\n"
 
index 178651c..3e9e97b 100644 (file)
--- a/po/sv.po
+++ b/po/sv.po
 msgid ""
-msgstr "POT-Creation-Date: 1999-05-11 12:17-0400\n"
+msgstr "POT-Creation-Date: 1999-09-29 19:30-0400\n"
 
-#: ../build.c:24 ../install.c:221 ../install.c:377
+#: build.c:23 lib/rpminstall.c:222 lib/rpminstall.c:382
 #, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr ""
 
-#: ../build.c:34
+#: build.c:33
 #, fuzzy
-msgid "failed build prerequisites:\n"
+msgid "failed build dependencies:\n"
 msgstr "kan inte öppna: %s\n"
 
-#: ../build.c:83 ../build.c:96
+#: build.c:61
+#, fuzzy, c-format
+msgid "Unable to open spec file: %s\n"
+msgstr "kan inte öppna: %s\n"
+
+#: build.c:117 build.c:130
 #, fuzzy, c-format
 msgid "Failed to open tar pipe: %s\n"
 msgstr "kan inte öppna: %s\n"
 
 #. Give up
-#: ../build.c:104
+#: build.c:138
 #, fuzzy, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "kan inte öppna: %s\n"
 
-#: ../build.c:129
+#: build.c:163
 #, fuzzy, c-format
 msgid "Failed to rename %s to %s: %s\n"
 msgstr "kan inte öppna: %s\n"
 
-#: ../build.c:167
+#: build.c:201
 #, c-format
 msgid "File is not a regular file: %s\n"
 msgstr ""
 
-#: ../build.c:172
-#, fuzzy, c-format
-msgid "Unable to open spec file: %s\n"
-msgstr "kan inte öppna: %s\n"
-
-#: ../build.c:180
+#: build.c:207
 #, c-format
-msgid "File contains non-printable characters(%c): %s\n"
+msgid "File %s does not appear to be a specfile.\n"
 msgstr ""
 
 #. parse up the build operators
-#: ../build.c:233
+#: build.c:258
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr ""
 
-#: ../build.c:242
+#: build.c:267
 #, fuzzy, c-format
 msgid "Building for target %s\n"
 msgstr "    --install <paketfil>"
 
-#: ../build.c:286
+#: build.c:311
 msgid "buildroot already specified"
 msgstr ""
 
-#: ../build.c:292
+#: build.c:317
 msgid "--buildarch has been obsoleted.  Use the --target option instead.\n"
 msgstr ""
 
-#: ../build.c:296
+#: build.c:321
 msgid "--buildos has been obsoleted.  Use the --target option instead.\n"
 msgstr ""
 
-#: ../build.c:317
+#: build.c:342
 #, fuzzy
 msgid "override build architecture"
 msgstr "%s går inte att tillverka på den här platformen\n"
 
-#: ../build.c:319
+#: build.c:344
 msgid "override build operating system"
 msgstr ""
 
-#: ../build.c:321
+#: build.c:346
 msgid "override build root"
 msgstr ""
 
-#: ../build.c:323 ../rpm.c:458
+#: build.c:348 rpm.c:457
 #, fuzzy
 msgid "remove build tree when done"
 msgstr ""
 "      --clean           - tag bort biblioteket där filerna kompilerades när "
 "det är klart"
 
-#: ../build.c:325
+#: build.c:350
 msgid "do not execute any stages of the build"
 msgstr ""
 
-#: ../build.c:327
+#: build.c:352
 msgid "do not accept I18N msgstr's from specfile"
 msgstr ""
 
-#: ../build.c:329
+#: build.c:354
 #, fuzzy
 msgid "remove sources when done"
 msgstr ""
 "      --clean           - tag bort biblioteket där filerna kompilerades när "
 "det är klart"
 
-#: ../build.c:331
+#: build.c:356
 #, fuzzy
 msgid "remove specfile when done"
 msgstr ""
 "      --clean           - tag bort biblioteket där filerna kompilerades när "
 "det är klart"
 
-#: ../build.c:333 ../rpm.c:456
+#: build.c:358 rpm.c:455
 #, fuzzy
 msgid "skip straight to specified stage (only for c,i)"
 msgstr ""
 "      --short-circuit   - hoppa direkt till specifierat steg (enbart för c,i)"
 
-#: ../build.c:335
+#: build.c:360
 msgid "override target platform"
 msgstr ""
 
-#: ../build.c:337
+#: build.c:362
 msgid "lookup I18N strings in specfile catalog"
 msgstr ""
 
-#: ../checksig.c:27 ../checksig.c:166
-#, c-format
-msgid "%s: Open failed\n"
-msgstr ""
-
-#: ../checksig.c:31 ../checksig.c:171
-#, c-format
-msgid "%s: readLead failed\n"
-msgstr ""
-
-#: ../checksig.c:35
-#, c-format
-msgid "%s: Can't sign v1.0 RPM\n"
-msgstr ""
-
-#: ../checksig.c:39
-#, c-format
-msgid "%s: Can't re-sign v2.0 RPM\n"
-msgstr ""
-
-#: ../checksig.c:43 ../checksig.c:181
-#, c-format
-msgid "%s: rpmReadSignature failed\n"
-msgstr ""
-
-#: ../checksig.c:56 ../checksig.c:195
-msgid "Couldn't read the header/archive"
-msgstr ""
-
-#: ../checksig.c:63
-msgid "Couldn't write header/archive to temp file"
-msgstr ""
-
-#: ../build/pack.c:330 ../checksig.c:91
-#, fuzzy, c-format
-msgid "Generating signature: %d\n"
-msgstr "      --sign            - tillverka en PGP signatur"
-
-#: ../checksig.c:114
-msgid "Couldn't read sigtarget"
-msgstr ""
-
-#: ../checksig.c:123
-msgid "Couldn't write package"
-msgstr ""
-
-#: ../checksig.c:176
-#, c-format
-msgid "%s: No signature available (v1.0 RPM)\n"
-msgstr ""
-
-#: ../checksig.c:186
-#, c-format
-msgid "%s: No signature available\n"
-msgstr ""
-
-#: ../checksig.c:202
-#, fuzzy, c-format
-msgid "Unable to write %s"
-msgstr "kan inte öppna: %s\n"
-
-#: ../checksig.c:328
-msgid "NOT OK"
-msgstr ""
-
-#: ../checksig.c:329 ../checksig.c:343
-msgid " (MISSING KEYS:"
-msgstr ""
-
-#: ../checksig.c:331 ../checksig.c:345
-msgid ") "
-msgstr ""
-
-#: ../checksig.c:332 ../checksig.c:346
-msgid " (UNTRUSTED KEYS:"
-msgstr ""
-
-#: ../checksig.c:334 ../checksig.c:348
-msgid ")"
-msgstr ""
-
-#: ../checksig.c:342
-msgid "OK"
-msgstr ""
-
-#: ../convertdb.c:38
+#: convertdb.c:39
 msgid "RPM database already exists"
 msgstr ""
 
-#: ../convertdb.c:43
+#: convertdb.c:44
 msgid "Old db is missing"
 msgstr ""
 
-#: ../convertdb.c:54
+#: convertdb.c:55
 msgid "failed to create RPM database /var/lib/rpm"
 msgstr ""
 
-#: ../convertdb.c:60
+#: convertdb.c:61
 msgid "Old db is corrupt"
 msgstr ""
 
-#: ../convertdb.c:69
+#: convertdb.c:70
 #, c-format
 msgid "oldrpmdbGetPackageInfo failed &olddb = %p olddb.packages = %p\n"
 msgstr ""
 
-#: ../convertdb.c:201
+#: convertdb.c:204
 msgid "rpmconvert: no arguments expected"
 msgstr ""
 
-#: ../convertdb.c:207
+#: convertdb.c:210
 msgid "rpmconvert 1.0 - converting database in /var/lib/rpm\n"
 msgstr ""
 
-#: ../ftp.c:642
-msgid "Success"
-msgstr ""
-
-#: ../ftp.c:645
-msgid "Bad server response"
-msgstr ""
-
-#: ../ftp.c:648
-msgid "Server IO error"
-msgstr ""
-
-#: ../ftp.c:651
-msgid "Server timeout"
-msgstr ""
-
-#: ../ftp.c:654
-msgid "Unable to lookup server host address"
-msgstr ""
-
-#: ../ftp.c:657
-msgid "Unable to lookup server host name"
-msgstr ""
-
-#: ../ftp.c:660
-msgid "Failed to connect to server"
-msgstr ""
-
-#: ../ftp.c:663
-msgid "Failed to establish data connection to server"
-msgstr ""
-
-#: ../ftp.c:666
-msgid "IO error to local file"
-msgstr ""
-
-#: ../ftp.c:669
-msgid "Error setting remote server to passive mode"
-msgstr ""
-
-#: ../ftp.c:672
-msgid "File not found on server"
-msgstr ""
-
-#: ../ftp.c:675
-msgid "Abort in progress"
-msgstr ""
-
-#: ../ftp.c:679
-msgid "Unknown or unexpected error"
-msgstr ""
-
-#: ../install.c:127
-#, fuzzy
-msgid "counting packages to install\n"
-msgstr "inga paket angivna för installation"
-
-#: ../install.c:131
-#, c-format
-msgid "found %d packages\n"
-msgstr ""
-
-#: ../install.c:140
-msgid "looking for packages to download\n"
-msgstr ""
-
-#: ../install.c:151
-#, fuzzy, c-format
-msgid "Retrieving %s\n"
-msgstr "RPM version %s\n"
-
-#: ../install.c:160
-#, c-format
-msgid " ... as %s\n"
-msgstr ""
-
-#: ../install.c:164
-#, c-format
-msgid "skipping %s - transfer failed - %s\n"
-msgstr ""
-
-#: ../install.c:181
-#, c-format
-msgid "retrieved %d packages\n"
-msgstr ""
-
-#: ../install.c:190 ../install.c:327
-#, fuzzy, c-format
-msgid "cannot open file %s\n"
-msgstr "kan inte öppna: %s\n"
-
-#: ../install.c:202 ../lib/query.c:569
-#, c-format
-msgid "%s does not appear to be a RPM package\n"
-msgstr ""
-
-#: ../install.c:206 ../install.c:464
-#, fuzzy, c-format
-msgid "%s cannot be installed\n"
-msgstr "inga paket angivna för installation"
-
-#: ../install.c:242
-#, fuzzy, c-format
-msgid "package %s is not relocateable\n"
-msgstr "inga paket angivna för installation"
-
-#: ../install.c:254
-#, c-format
-msgid "error reading from file %s\n"
-msgstr ""
-
-#: ../install.c:257
-#, c-format
-msgid "file %s requires a newer version of RPM\n"
-msgstr ""
-
-#: ../install.c:272
-#, c-format
-msgid "found %d source and %d binary packages\n"
-msgstr ""
-
-#: ../install.c:282
-msgid "failed dependencies:\n"
-msgstr ""
-
-#: ../install.c:300
-#, fuzzy
-msgid "installing binary packages\n"
-msgstr "    --install <paketfil>"
-
-#: ../install.c:388 ../lib/query.c:717
-#, fuzzy, c-format
-msgid "package %s is not installed\n"
-msgstr "inga paket angivna för installation"
-
-#: ../install.c:392
-#, fuzzy, c-format
-msgid "searching for package %s\n"
-msgstr "    --install <paketfil>"
-
-#: ../install.c:401
-#, c-format
-msgid "\"%s\" specifies multiple packages\n"
-msgstr ""
-
-#: ../install.c:427
-msgid "removing these packages would break dependencies:\n"
-msgstr ""
-
-#: ../install.c:454
-#, fuzzy, c-format
-msgid "cannot open %s\n"
-msgstr "kan inte öppna: %s\n"
-
-#: ../install.c:459
-#, c-format
-msgid "Installing %s\n"
-msgstr ""
-
-#: ../install.c:503
-#, c-format
-msgid " is needed by %s-%s-%s\n"
-msgstr ""
-
-#: ../install.c:506
-#, c-format
-msgid " conflicts with %s-%s-%s\n"
-msgstr ""
-
-#: ../oldrpmdb.c:454
+#: oldrpmdb.c:454
 #, c-format
 msgid "pulling %s from database\n"
 msgstr ""
 
-#: ../oldrpmdb.c:461
+#: oldrpmdb.c:461
 #, fuzzy
 msgid "package not found in database"
 msgstr "inga paket angivna för avinstallation"
 
-#: ../oldrpmdb.c:522
+#: oldrpmdb.c:522
 msgid "no copyright!\n"
 msgstr ""
 
-#: ../rpm.c:160
+#: rpm.c:159
 #, c-format
 msgid "rpm: %s\n"
 msgstr ""
 
-#: ../rpm.c:171
+#: rpm.c:170
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM version %s\n"
 
-#: ../rpm.c:175
+#: rpm.c:174
 #, fuzzy
 msgid "Copyright (C) 1998 - Red Hat Software"
 msgstr "Copyright (C) 1995 - Red Hat Software"
 
-#: ../rpm.c:176
-msgid ""
-"This may be freely redistributed under the terms of the GNU GPL"
-msgstr ""
-"Den här programvaran kan distribueras fritt med hänsyn till GNU GPL"
+#: rpm.c:175
+msgid "This may be freely redistributed under the terms of the GNU GPL"
+msgstr "Den här programvaran kan distribueras fritt med hänsyn till GNU GPL"
 
-#: ../rpm.c:185
+#: rpm.c:183
 msgid "usage: rpm {--help}"
 msgstr "använd: rpm {--help}"
 
-#: ../rpm.c:186
+#: rpm.c:184
 msgid "       rpm {--version}"
 msgstr "       rpm {--version}"
 
-#: ../rpm.c:187
+#: rpm.c:185
 msgid "       rpm {--initdb}   [--dbpath <dir>]"
 msgstr ""
 
-#: ../rpm.c:188
+#: rpm.c:186
 msgid ""
 "       rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 "       rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
 
-#: ../rpm.c:189
+#: rpm.c:187
 #, fuzzy
 msgid "                        [--replacepkgs] [--replacefiles] [--root <dir>]"
 msgstr "                          [--replacepkgs] [--replacefiles] [--search]"
 
-#: ../rpm.c:190
+#: rpm.c:188
 #, fuzzy
 msgid "                        [--excludedocs] [--includedocs] [--noscripts]"
 msgstr "                          [--replacepkgs] [--replacefiles] [--search]"
 
-#: ../rpm.c:191
+#: rpm.c:189
 #, fuzzy
 msgid ""
 "                        [--rcfile <file>] [--ignorearch] [--dbpath <dir>]"
 msgstr "                          [--search] [--oldpackage] [--root <dir>]"
 
-#: ../rpm.c:192
+#: rpm.c:190
 #, fuzzy
 msgid ""
 "                        [--prefix <dir>] [--ignoreos] [--nodeps] [--allfiles]"
 msgstr "                        [--sign] [--test] [--time-check <s>] specfil"
 
-#: ../rpm.c:193
+#: rpm.c:191
 #, fuzzy
 msgid ""
 "                        [--ftpproxy <host>] [--ftpport <port>] [--justdb]"
 msgstr "                        [--root <dir>] [targets]"
 
-#: ../rpm.c:194 ../rpm.c:203 ../rpm.c:212
+#: rpm.c:192 rpm.c:201 rpm.c:210
 #, fuzzy
 msgid "                        [--httpproxy <host>] [--httpport <port>] "
 msgstr "                        [--root <dir>] [targets]"
 
-#: ../rpm.c:195 ../rpm.c:205
+#: rpm.c:193 rpm.c:203
 #, fuzzy
 msgid "                        [--noorder] [--relocate oldpath=newpath]"
 msgstr "                        [--root <dir>] [targets]"
 
-#: ../rpm.c:196
+#: rpm.c:194
 #, fuzzy
 msgid ""
 "                        [--badreloc] [--notriggers] [--excludepath <path>]"
 msgstr "                          [--root <dir>] file1.rpm ... filen.rpm"
 
-#: ../rpm.c:197
+#: rpm.c:195
 #, fuzzy
 msgid "                        [--ignoresize] file1.rpm ... fileN.rpm"
 msgstr "                          file1.rpm ... fileN.rpm"
 
-#: ../rpm.c:198
+#: rpm.c:196
 #, fuzzy
 msgid ""
 "       rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 "       rpm {--upgrage -U} [-v] [--hash -h] [--percent] [--force] [--test]"
 
-#: ../rpm.c:199
+#: rpm.c:197
 #, fuzzy
 msgid "                        [--oldpackage] [--root <dir>] [--noscripts]"
 msgstr "                          [--search] [--oldpackage] [--root <dir>]"
 
-#: ../rpm.c:200
+#: rpm.c:198
 #, fuzzy
 msgid ""
 "                        [--excludedocs] [--includedocs] [--rcfile <file>]"
 msgstr "                          [--search] [--oldpackage] [--root <dir>]"
 
-#: ../rpm.c:201
+#: rpm.c:199
 #, fuzzy
 msgid ""
 "                        [--ignorearch]  [--dbpath <dir>] [--prefix <dir>] "
 msgstr "                          [--search] [--oldpackage] [--root <dir>]"
 
-#: ../rpm.c:202
+#: rpm.c:200
 #, fuzzy
 msgid "                        [--ftpproxy <host>] [--ftpport <port>]"
 msgstr "                        [--root <dir>] [targets]"
 
-#: ../rpm.c:204
+#: rpm.c:202
 #, fuzzy
 msgid "                        [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
 msgstr "                          [--replacepkgs] [--replacefiles] [--search]"
 
-#: ../rpm.c:206
+#: rpm.c:204
 #, fuzzy
 msgid ""
 "                        [--badreloc] [--excludepath <path>] [--ignoresize]"
 msgstr "                        [--root <dir>] [targets]"
 
-#: ../rpm.c:207
+#: rpm.c:205
 #, fuzzy
 msgid "                        file1.rpm ... fileN.rpm"
 msgstr "                          file1.rpm ... fileN.rpm"
 
-#: ../rpm.c:208
+#: rpm.c:206
 #, fuzzy
 msgid "       rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]"
 msgstr "       rpm {--query -q} [-afFpP] [-i] [-l] [-s] [-d] [-c] [-v] "
 
-#: ../rpm.c:209
+#: rpm.c:207
 #, fuzzy
 msgid "                        [--scripts] [--root <dir>] [--rcfile <file>]"
 msgstr "                          [--root <dir>] file1.rpm ... filen.rpm"
 
-#: ../rpm.c:210
+#: rpm.c:208
 #, fuzzy
 msgid "                        [--whatprovides] [--whatrequires] [--requires]"
 msgstr "                          [--replacepkgs] [--replacefiles] [--search]"
 
-#: ../rpm.c:211
+#: rpm.c:209
 #, fuzzy
 msgid ""
 "                        [--triggeredby] [--ftpuseport] [--ftpproxy <host>]"
 msgstr "                          [--search] [--oldpackage] [--root <dir>]"
 
-#: ../rpm.c:213
+#: rpm.c:211
 #, fuzzy
 msgid ""
 "                        [--ftpport <port>] [--provides] [--triggers] [--dump]"
 msgstr "                        [--root <dir>] [targets]"
 
-#: ../rpm.c:214
+#: rpm.c:212
 #, fuzzy
 msgid "                        [--changelog] [--dbpath <dir>] [targets]"
 msgstr "                        [--root <dir>] [targets]"
 
-#: ../rpm.c:215
+#: rpm.c:213
 #, fuzzy
 msgid "       rpm {--verify -V -y} [-afpg] [--root <dir>] [--rcfile <file>]"
 msgstr "       rpm {--verify -V -y] [-afFpP] [--root <dir>] [targets]"
 
-#: ../rpm.c:216
+#: rpm.c:214
 #, fuzzy
 msgid ""
 "                        [--dbpath <dir>] [--nodeps] [--nofiles] [--noscripts]"
 msgstr "                          [--replacepkgs] [--replacefiles] [--search]"
 
-#: ../rpm.c:217
+#: rpm.c:215
 #, fuzzy
 msgid "                        [--nomd5] [targets]"
 msgstr "                        [--root <dir>] [targets]"
 
-#: ../rpm.c:218
+#: rpm.c:216
 #, fuzzy
 msgid "       rpm {--setperms} [-afpg] [target]"
 msgstr "       rpm {--verify -V -y] [-afFpP] [--root <dir>] [targets]"
 
-#: ../rpm.c:219
+#: rpm.c:217
 #, fuzzy
 msgid "       rpm {--setugids} [-afpg] [target]"
 msgstr "       rpm {--verify -V -y] [-afFpP] [--root <dir>] [targets]"
 
-#: ../rpm.c:220
+#: rpm.c:218
+#, fuzzy
+msgid "       rpm {--freshen -F} file1.rpm ... fileN.rpm"
+msgstr "                          file1.rpm ... fileN.rpm"
+
+#: rpm.c:219
 #, fuzzy
 msgid "       rpm {--erase -e} [--root <dir>] [--noscripts] [--rcfile <file>]"
 msgstr "       rpm {--erase -e] [--root <dir>] paket1 paket2 ... paketN"
 
-#: ../rpm.c:221
+#: rpm.c:220
 #, fuzzy
 msgid "                        [--dbpath <dir>] [--nodeps] [--allmatches]"
 msgstr "                        [--root <dir>] [targets]"
 
-#: ../rpm.c:222
+#: rpm.c:221
 #, fuzzy
 msgid ""
 "                        [--justdb] [--notriggers] rpackage1 ... packageN"
 msgstr ""
 "                        - installera källkods paket, tillverka binär paket,"
 
-#: ../rpm.c:223
+#: rpm.c:222
 #, fuzzy
 msgid ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile  <file>]"
 msgstr ""
 "       rpm {-b}[plciba] [-v] [--short-circuit] [--clean] [--keep-temps]"
 
-#: ../rpm.c:224
+#: rpm.c:223
 #, fuzzy
 msgid "                        [--sign] [--nobuild] [--timecheck <s>] ]"
 msgstr "                        [--sign] [--test] [--time-check <s>] specfil"
 
-#: ../rpm.c:225
+#: rpm.c:224
 #, fuzzy
 msgid "                        [--target=platform1[,platform2...]]"
 msgstr "        -i                - visa paket information"
 
-#: ../rpm.c:226
+#: rpm.c:225
 #, fuzzy
 msgid "                        [--rmsource] specfile"
 msgstr "                        [--root <dir>] [targets]"
 
-#: ../rpm.c:227
+#: rpm.c:226
 msgid "       rpm {--rmsource} [--rcfile <file>] [-v] specfile"
 msgstr ""
 
-#: ../rpm.c:228
+#: rpm.c:227
 #, fuzzy
 msgid ""
 "       rpm {--rebuild} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr "       rpm {--rebuild} [-v] source1.rpm source2.rpm ... sourceN.rpm"
 
-#: ../rpm.c:229
+#: rpm.c:228
 #, fuzzy
 msgid ""
 "       rpm {--recompile} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr "       rpm {--rebuild} [-v] source1.rpm source2.rpm ... sourceN.rpm"
 
-#: ../rpm.c:230
+#: rpm.c:229
 #, fuzzy
 msgid "       rpm {--resign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr "       rpm {--erase -e] [--root <dir>] paket1 paket2 ... paketN"
 
-#: ../rpm.c:231
+#: rpm.c:230
 #, fuzzy
 msgid "       rpm {--addsign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr "       rpm {--erase -e] [--root <dir>] paket1 paket2 ... paketN"
 
-#: ../rpm.c:232
+#: rpm.c:231
 #, fuzzy
 msgid ""
 "       rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile <file>]"
 msgstr "       rpm {--verify -V -y] [-afFpP] [--root <dir>] [targets]"
 
-#: ../rpm.c:233
+#: rpm.c:232
 #, fuzzy
 msgid "                           package1 ... packageN"
 msgstr "                          som matchar <pkg>"
 
-#: ../rpm.c:234
+#: rpm.c:233
 msgid "       rpm {--rebuilddb} [--rcfile <file>] [--dbpath <dir>]"
 msgstr ""
 
-#: ../rpm.c:235
+#: rpm.c:234
 #, fuzzy
 msgid "       rpm {--querytags}"
 msgstr "       rpm {--version}"
 
-#: ../rpm.c:269
+#: rpm.c:268
 msgid "usage:"
 msgstr "använd:"
 
-#: ../rpm.c:271
+#: rpm.c:270
 #, fuzzy
 msgid "print this message"
 msgstr "   --help\t\t- visa det här meddelandet"
 
-#: ../rpm.c:273
+#: rpm.c:272
 #, fuzzy
 msgid "print the version of rpm being used"
 msgstr "   --version\t\t- visa vilken version av rpm som används"
 
-#: ../rpm.c:274
+#: rpm.c:273
 msgid "   all modes support the following arguments:"
 msgstr ""
 
-#: ../rpm.c:275
+#: rpm.c:274
 msgid "      --rcfile <file>     "
 msgstr ""
 
-#: ../rpm.c:276
+#: rpm.c:275
 msgid "use <file> instead of /etc/rpmrc and $HOME/.rpmrc"
 msgstr ""
 
-#: ../rpm.c:278
+#: rpm.c:277
 msgid "be a little more verbose"
 msgstr ""
 
-#: ../rpm.c:280
+#: rpm.c:279
 msgid "be incredibly verbose (for debugging)"
 msgstr ""
 
-#: ../rpm.c:282
+#: rpm.c:281
 msgid "query mode"
 msgstr ""
 
-#: ../rpm.c:283 ../rpm.c:345 ../rpm.c:409 ../rpm.c:437
+#: rpm.c:282 rpm.c:344 rpm.c:408 rpm.c:436
 msgid "      --root <dir>        "
 msgstr ""
 
-#: ../rpm.c:284 ../rpm.c:346 ../rpm.c:410 ../rpm.c:438 ../rpm.c:500
+#: rpm.c:283 rpm.c:345 rpm.c:409 rpm.c:437 rpm.c:499
 #, fuzzy
 msgid "use <dir> as the top level directory"
 msgstr "      --root <dir>\t- använd <dir> som start bibliotek"
 
-#: ../rpm.c:285 ../rpm.c:343 ../rpm.c:373 ../rpm.c:425 ../rpm.c:497
+#: rpm.c:284 rpm.c:342 rpm.c:372 rpm.c:424 rpm.c:496
 msgid "      --dbpath <dir>      "
 msgstr ""
 
-#: ../rpm.c:286 ../rpm.c:344 ../rpm.c:374 ../rpm.c:426 ../rpm.c:498
+#: rpm.c:285 rpm.c:343 rpm.c:373 rpm.c:425 rpm.c:497
 msgid "use <dir> as the directory for the database"
 msgstr ""
 
-#: ../rpm.c:287
+#: rpm.c:286
 msgid "      --queryformat <qfmt>"
 msgstr ""
 
-#: ../rpm.c:288
+#: rpm.c:287
 msgid "use <qfmt> as the header format (implies -i)"
 msgstr ""
 
-#: ../rpm.c:289
+#: rpm.c:288
 msgid ""
 "   install, upgrade and query (with -p) allow ftp URL's to be used in place"
 msgstr ""
 
-#: ../rpm.c:290
+#: rpm.c:289
 msgid "   of file names as well as the following options:"
 msgstr ""
 
-#: ../rpm.c:291
+#: rpm.c:290
 msgid "      --ftpproxy <host>   "
 msgstr ""
 
-#: ../rpm.c:292
+#: rpm.c:291
 msgid "hostname or IP of ftp proxy"
 msgstr ""
 
-#: ../rpm.c:293
+#: rpm.c:292
 msgid "      --ftpport <port>    "
 msgstr ""
 
-#: ../rpm.c:294
+#: rpm.c:293
 msgid "port number of ftp server (or proxy)"
 msgstr ""
 
-#: ../rpm.c:295
+#: rpm.c:294
 #, fuzzy
 msgid "      --httpproxy <host>   "
 msgstr "    --rebuild <källkods_paket>"
 
-#: ../rpm.c:296
+#: rpm.c:295
 msgid "hostname or IP of http proxy"
 msgstr ""
 
-#: ../rpm.c:297
+#: rpm.c:296
 #, fuzzy
 msgid "      --httpport <port>    "
 msgstr "    --rebuild <källkods_paket>"
 
-#: ../rpm.c:298
+#: rpm.c:297
 msgid "port number of http server (or proxy)"
 msgstr ""
 
-#: ../rpm.c:299
+#: rpm.c:298
 msgid "      Package specification options:"
 msgstr "      Paket urvals parametrar:"
 
-#: ../rpm.c:301
+#: rpm.c:300
 msgid "query all packages"
 msgstr ""
 
-#: ../rpm.c:302
+#: rpm.c:301
 msgid "        -f <file>+        "
 msgstr ""
 
-#: ../rpm.c:303
+#: rpm.c:302
 #, fuzzy
 msgid "query package owning <file>"
 msgstr "        -f <fil>+         - undersök paket som äger <fil>"
 
-#: ../rpm.c:304
+#: rpm.c:303
 #, fuzzy
 msgid "        -p <packagefile>+ "
 msgstr "    --upgrade <paketfil>"
 
-#: ../rpm.c:305
+#: rpm.c:304
 #, fuzzy
 msgid "query (uninstalled) package <packagefile>"
 msgstr "        -p <paketfil>+    - undersök (uninstalled) paket <packagefile>"
 
-#: ../rpm.c:306
+#: rpm.c:305
 #, fuzzy
 msgid "        --triggeredby <pkg>"
 msgstr "    --erase <paket>"
 
-#: ../rpm.c:307
+#: rpm.c:306
 #, fuzzy
 msgid "query packages triggered by <pkg>"
 msgstr "        -f <fil>+         - undersök paket som äger <fil>"
 
-#: ../rpm.c:308
+#: rpm.c:307
 #, fuzzy
 msgid "        --whatprovides <cap>"
 msgstr "       rpm {--version}"
 
-#: ../rpm.c:309
+#: rpm.c:308
 msgid "query packages which provide <cap> capability"
 msgstr ""
 
-#: ../rpm.c:310
+#: rpm.c:309
 #, fuzzy
 msgid "        --whatrequires <cap>"
 msgstr "       rpm {--version}"
 
-#: ../rpm.c:311
+#: rpm.c:310
 msgid "query packages which require <cap> capability"
 msgstr ""
 
-#: ../rpm.c:312
+#: rpm.c:311
 msgid "      Information selection options:"
 msgstr "      Information urvals parametrar:"
 
-#: ../rpm.c:314
+#: rpm.c:313
 #, fuzzy
 msgid "display package information"
 msgstr "        -i                - visa paket information"
 
-#: ../rpm.c:316
+#: rpm.c:315
 msgid "display the package's change log"
 msgstr ""
 
-#: ../rpm.c:318
+#: rpm.c:317
 #, fuzzy
 msgid "display package file list"
 msgstr "        -l                - visa paketets fil lista"
 
-#: ../rpm.c:320
+#: rpm.c:319
 #, fuzzy
 msgid "show file states (implies -l)"
 msgstr "        -s                - visa filers status (implicerar -l)"
 
-#: ../rpm.c:322
+#: rpm.c:321
 #, fuzzy
 msgid "list only documentation files (implies -l)"
 msgstr ""
 "        -d                - visa enbart dokumentation filer (implicerar -l)"
 
-#: ../rpm.c:324
+#: rpm.c:323
 #, fuzzy
 msgid "list only configuration files (implies -l)"
 msgstr ""
 "        -c                - visa enbart konfiguration filer (implicerar -l)"
 
-#: ../rpm.c:326
+#: rpm.c:325
 msgid ""
 "show all verifiable information for each file (must be used with -l, -c, or "
 "-d)"
 msgstr ""
 
-#: ../rpm.c:328
+#: rpm.c:327
 msgid "list capabilities package provides"
 msgstr ""
 
-#: ../rpm.c:329
+#: rpm.c:328
 #, fuzzy
 msgid "        --requires"
 msgstr "       rpm {--version}"
 
-#: ../rpm.c:331
+#: rpm.c:330
 msgid "list package dependencies"
 msgstr ""
 
-#: ../rpm.c:333
+#: rpm.c:332
 msgid "print the various [un]install scripts"
 msgstr ""
 
-#: ../rpm.c:335
+#: rpm.c:334
 msgid "show the trigger scripts contained in the package"
 msgstr ""
 
-#: ../rpm.c:339
+#: rpm.c:338
 #, fuzzy
 msgid "    --pipe <cmd>          "
 msgstr "    --checksig <pkg>+  - verifiera PGP signatur"
 
-#: ../rpm.c:340
+#: rpm.c:339
 msgid "send stdout to <cmd>"
 msgstr ""
 
-#: ../rpm.c:342
+#: rpm.c:341
 #, fuzzy
 msgid ""
 "verify a package installation using the same same package specification "
 "options as -q"
 msgstr "\t\t\t  samma paket urvals parametrar som -q"
 
-#: ../rpm.c:348 ../rpm.c:396 ../rpm.c:430
+#: rpm.c:347 rpm.c:395 rpm.c:429
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: ../rpm.c:350
+#: rpm.c:349
 msgid "do not verify file md5 checksums"
 msgstr ""
 
-#: ../rpm.c:352
+#: rpm.c:351
 msgid "do not verify file attributes"
 msgstr ""
 
-#: ../rpm.c:355
+#: rpm.c:354
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
-#: ../rpm.c:358
+#: rpm.c:357
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
-#: ../rpm.c:362
+#: rpm.c:361
 #, fuzzy
 msgid "    --install <packagefile>"
 msgstr "    --upgrade <paketfil>"
 
-#: ../rpm.c:363
+#: rpm.c:362
 #, fuzzy
 msgid "    -i <packagefile>      "
 msgstr "    --upgrade <paketfil>"
 
-#: ../rpm.c:364
+#: rpm.c:363
 #, fuzzy
 msgid "install package"
 msgstr "    --install <paketfil>"
 
-#: ../rpm.c:365
+#: rpm.c:364
 #, fuzzy
 msgid "      --excludepath <path>"
 msgstr "                        [--root <dir>] [targets]"
 
-#: ../rpm.c:366
+#: rpm.c:365
 msgid "skip files in path <path>"
 msgstr ""
 
-#: ../rpm.c:367
+#: rpm.c:366
 #, fuzzy
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr "                        [--root <dir>] [targets]"
 
-#: ../rpm.c:368
+#: rpm.c:367
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr ""
 
-#: ../rpm.c:370
+#: rpm.c:369
 msgid "relocate files even though the package doesn't allow it"
 msgstr ""
 
-#: ../rpm.c:371
+#: rpm.c:370
 msgid "      --prefix <dir>      "
 msgstr ""
 
-#: ../rpm.c:372
+#: rpm.c:371
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: ../rpm.c:376
+#: rpm.c:375
 msgid "do not install documentation"
 msgstr ""
 
-#: ../rpm.c:378
+#: rpm.c:377
 #, fuzzy
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "      --force           - förkortning för --replacepkgs --replacefiles"
 
-#: ../rpm.c:381
+#: rpm.c:380
 #, fuzzy
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 "      --hash            - skriv ut brädgårdar eftersom paketet installeras "
 "(bra tillsammans med -v)"
 
-#: ../rpm.c:383
+#: rpm.c:382
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: ../rpm.c:386
+#: rpm.c:385
 msgid "don't verify package architecture"
 msgstr ""
 
-#: ../rpm.c:388
+#: rpm.c:387
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: ../rpm.c:390
+#: rpm.c:389
 msgid "don't verify package operating system"
 msgstr ""
 
-#: ../rpm.c:392
+#: rpm.c:391
 msgid "install documentation"
 msgstr ""
 
-#: ../rpm.c:394 ../rpm.c:428
+#: rpm.c:393 rpm.c:427
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: ../rpm.c:398 ../rpm.c:432
+#: rpm.c:397 rpm.c:431
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: ../rpm.c:400
+#: rpm.c:399
 msgid "don't execute any installation scripts"
 msgstr ""
 
-#: ../rpm.c:402 ../rpm.c:436
+#: rpm.c:401 rpm.c:435
 msgid "don't execute any scripts triggered by this package"
 msgstr ""
 
-#: ../rpm.c:404
+#: rpm.c:403
 #, fuzzy
 msgid "print percentages as package installs"
 msgstr "      --percent         - skriv procent eftersom paketet installeras"
 
-#: ../rpm.c:406
+#: rpm.c:405
 #, fuzzy
 msgid "install even if the package replaces installed files"
 msgstr ""
 "      --replacefiles    - installera även om paketet som det byter ut "
 "installerade filer"
 
-#: ../rpm.c:408
+#: rpm.c:407
 #, fuzzy
 msgid "reinstall if the package is already present"
 msgstr ""
 "      --replacepkgs      - installera om ifall paketet redan är installerat"
 
-#: ../rpm.c:412
+#: rpm.c:411
 #, fuzzy
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 "      --test            - installera inte, men tala om ifall det skulle "
 "fungera eller inte"
 
-#: ../rpm.c:414
+#: rpm.c:413
 msgid "    --upgrade <packagefile>"
 msgstr "    --upgrade <paketfil>"
 
-#: ../rpm.c:415
+#: rpm.c:414
 #, fuzzy
 msgid "    -U <packagefile>      "
 msgstr "    --upgrade <paketfil>"
 
-#: ../rpm.c:416
+#: rpm.c:415
 #, fuzzy
 msgid "upgrade package (same options as --install, plus)"
 msgstr ""
 "    -U <paketfil>\t- upgradera paket (samma argument som --install, samt)"
 
-#: ../rpm.c:418
+#: rpm.c:417
 #, fuzzy
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
@@ -1103,116 +852,116 @@ msgstr ""
 "      --oldpackage      - upgradera till en gammal version av paketet "
 "(--force"
 
-#: ../rpm.c:420
+#: rpm.c:419
 msgid "    --erase <package>"
 msgstr "    --erase <paket>"
 
-#: ../rpm.c:422
+#: rpm.c:421
 #, fuzzy
 msgid "erase (uninstall) package"
 msgstr "    --install <paketfil>"
 
-#: ../rpm.c:424
+#: rpm.c:423
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: ../rpm.c:434
+#: rpm.c:433
 msgid "do not execute any package specific scripts"
 msgstr ""
 
-#: ../rpm.c:440
+#: rpm.c:439
 msgid "    -b<stage> <spec>      "
 msgstr ""
 
-#: ../rpm.c:441
+#: rpm.c:440
 msgid "    -t<stage> <tarball>   "
 msgstr ""
 
-#: ../rpm.c:442
+#: rpm.c:441
 #, fuzzy
 msgid "build package, where <stage> is one of:"
 msgstr "    -b<steg> <spec>    - tillverka paket, där <steg> är något av:"
 
-#: ../rpm.c:444
+#: rpm.c:443
 #, fuzzy
 msgid "prep (unpack sources and apply patches)"
 msgstr "\t\t\t  p - förbered (packa upp källkod samt applicera patchar)"
 
-#: ../rpm.c:446
+#: rpm.c:445
 #, fuzzy, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr "\t\t\t  l - kontrollera (gör några enkla kontroller på %files)"
 
-#: ../rpm.c:448
+#: rpm.c:447
 #, fuzzy
 msgid "compile (prep and compile)"
 msgstr "\t\t\t  c - kompilera (förbered och kompilera)"
 
-#: ../rpm.c:450
+#: rpm.c:449
 #, fuzzy
 msgid "install (prep, compile, install)"
 msgstr "\t\t\t  i - installera (förbered, kompilera, installera)"
 
-#: ../rpm.c:452
+#: rpm.c:451
 #, fuzzy
 msgid "binary package (prep, compile, install, package)"
 msgstr "\t\t\t  b - binär paketera (förbered, kompilera, installera, paketera)"
 
-#: ../rpm.c:454
+#: rpm.c:453
 #, fuzzy
 msgid "bin/src package (prep, compile, install, package)"
 msgstr ""
 "\t\t\t  a - bin/src paketera (förbered, kompilera, installera, paketera)"
 
-#: ../rpm.c:460
+#: rpm.c:459
 msgid "remove sources and spec file when done"
 msgstr ""
 
-#: ../rpm.c:462
+#: rpm.c:461
 #, fuzzy
 msgid "generate PGP/GPG signature"
 msgstr "      --sign            - tillverka en PGP signatur"
 
-#: ../rpm.c:463
+#: rpm.c:462
 #, fuzzy
 msgid "      --buildroot <dir>   "
 msgstr "    --rebuild <källkods_paket>"
 
-#: ../rpm.c:464
+#: rpm.c:463
 msgid "use <dir> as the build root"
 msgstr ""
 
-#: ../rpm.c:465
+#: rpm.c:464
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: ../rpm.c:466
+#: rpm.c:465
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: ../rpm.c:468
+#: rpm.c:467
 msgid "do not execute any stages"
 msgstr ""
 
-#: ../rpm.c:469
+#: rpm.c:468
 #, fuzzy
 msgid "      --timecheck <secs>  "
 msgstr "    --erase <paket>"
 
-#: ../rpm.c:470
+#: rpm.c:469
 #, fuzzy
 msgid "set the time check to <secs> seconds (0 disables)"
 msgstr ""
 "      --time-check <s>  - sätt tidskontrollen till S sekunder (0 slår av den)"
 
-#: ../rpm.c:472
+#: rpm.c:471
 #, fuzzy
 msgid "    --rebuild <src_pkg>   "
 msgstr "    --rebuild <källkods_paket>"
 
-#: ../rpm.c:473
+#: rpm.c:472
 #, fuzzy
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
@@ -1221,276 +970,275 @@ msgstr ""
 "                          och ta bort spec filen, källkoden, patchar, och "
 "ikoner."
 
-#: ../rpm.c:474
+#: rpm.c:473
 #, fuzzy
 msgid "    --rmsource <spec>     "
 msgstr "    --erase <paket>"
 
-#: ../rpm.c:475
+#: rpm.c:474
 msgid "remove sources and spec file"
 msgstr ""
 
-#: ../rpm.c:476
+#: rpm.c:475
 #, fuzzy
 msgid "    --recompile <src_pkg> "
 msgstr "    --rebuild <källkods_paket>"
 
-#: ../rpm.c:477
+#: rpm.c:476
 msgid "like --rebuild, but don't build any package"
 msgstr ""
 
-#: ../rpm.c:478
+#: rpm.c:477
 #, fuzzy
 msgid "    --resign <pkg>+       "
 msgstr "    --checksig <pkg>+  - verifiera PGP signatur"
 
-#: ../rpm.c:479
+#: rpm.c:478
 msgid "sign a package (discard current signature)"
 msgstr ""
 
-#: ../rpm.c:480
+#: rpm.c:479
 msgid "    --addsign <pkg>+      "
 msgstr ""
 
-#: ../rpm.c:481
+#: rpm.c:480
 msgid "add a signature to a package"
 msgstr ""
 
-#: ../rpm.c:483
+#: rpm.c:482
 #, fuzzy
 msgid "    --checksig <pkg>+     "
 msgstr "    --checksig <pkg>+  - verifiera PGP signatur"
 
-#: ../rpm.c:484
+#: rpm.c:483
 msgid "verify package signature"
 msgstr ""
 
-#: ../rpm.c:486
+#: rpm.c:485
 msgid "skip any PGP signatures"
 msgstr ""
 
-#: ../rpm.c:488
+#: rpm.c:487
 #, fuzzy
 msgid "skip any GPG signatures"
 msgstr "      --sign            - tillverka en PGP signatur"
 
-#: ../rpm.c:490
+#: rpm.c:489
 msgid "skip any MD5 signatures"
 msgstr ""
 
-#: ../rpm.c:492
+#: rpm.c:491
 msgid "list the tags that can be used in a query format"
 msgstr ""
 
-#: ../rpm.c:494
+#: rpm.c:493
 msgid "make sure a valid database exists"
 msgstr ""
 
-#: ../rpm.c:496
+#: rpm.c:495
 msgid "rebuild database from existing database"
 msgstr ""
 
-#: ../rpm.c:631 ../rpm.c:637 ../rpm.c:644 ../rpm.c:650 ../rpm.c:659
-#: ../rpm.c:666 ../rpm.c:713 ../rpm.c:719 ../rpm.c:779 ../rpm.c:787
-#: ../rpm.c:794 ../rpm.c:803 ../rpm.c:810 ../rpm.c:818 ../rpm.c:854
-#: ../rpm.c:909 ../rpm.c:916
+#: rpm.c:639 rpm.c:645 rpm.c:652 rpm.c:658 rpm.c:667 rpm.c:674 rpm.c:721
+#: rpm.c:727 rpm.c:761 rpm.c:767 rpm.c:773 rpm.c:781 rpm.c:816 rpm.c:871
+#: rpm.c:878
 msgid "only one major mode may be specified"
 msgstr "enbart ett läge kan specifieras"
 
-#: ../rpm.c:652
+#: rpm.c:660
 #, fuzzy
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr "-u och --uninstall är föråldrade och vill snart bli borttagna.\n"
 
-#: ../rpm.c:654
+#: rpm.c:662
 msgid "Use -e or --erase instead.\n"
 msgstr "Använd -e eller --erase istället.\n"
 
-#: ../rpm.c:670
+#: rpm.c:678
 msgid "--build (-b) requires one of a,b,i,c,p,l as its sole argument"
 msgstr "--build (-b) kräver en av a,b,i,c,p,l som dess enda argument"
 
-#: ../rpm.c:674
+#: rpm.c:682
 #, fuzzy
 msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
 msgstr "--build (-b) kräver en av a,b,i,c,p,l som dess enda argument"
 
-#: ../rpm.c:726 ../rpm.c:732 ../rpm.c:739 ../rpm.c:746 ../rpm.c:755
-#: ../rpm.c:763 ../rpm.c:771 ../rpm.c:923
+#: rpm.c:734 rpm.c:740 rpm.c:747 rpm.c:754 rpm.c:885
 msgid "one type of query/verify may be performed at a time"
 msgstr "en typ av undersökning/verifiering kan utföras åt gången"
 
-#: ../rpm.c:826
+#: rpm.c:789
 #, fuzzy
 msgid "arguments to --dbpath must begin with a /"
 msgstr "argument till --root (-r) måste börja med /"
 
-#: ../rpm.c:860
+#: rpm.c:822
 #, fuzzy
 msgid "relocations must begin with a /"
 msgstr "argument till --root (-r) måste börja med /"
 
-#: ../rpm.c:862
+#: rpm.c:824
 msgid "relocations must contain a ="
 msgstr ""
 
-#: ../rpm.c:865
+#: rpm.c:827
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: ../rpm.c:874
+#: rpm.c:836
 #, fuzzy
 msgid "exclude paths must begin with a /"
 msgstr "argument till --root (-r) måste börja med /"
 
-#: ../rpm.c:883
+#: rpm.c:845
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: ../rpm.c:936
+#: rpm.c:898
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: ../rpm.c:941
+#: rpm.c:903
 #, fuzzy
 msgid "--timecheck may only be used during package builds"
 msgstr "--clean kan enbart användas vid paket tillverkning"
 
-#: ../rpm.c:944 ../rpm.c:947
-msgid "unexpected query specifiers"
-msgstr "oväntade undersöknings parameterar"
+#: rpm.c:906
+#, fuzzy
+msgid "unexpected query flags"
+msgstr "oväntad undersöknings källa"
+
+#: rpm.c:909
+#, fuzzy
+msgid "unexpected query format"
+msgstr "oväntad undersöknings källa"
 
-#: ../rpm.c:951
+#: rpm.c:913
 msgid "unexpected query source"
 msgstr "oväntad undersöknings källa"
 
-#: ../rpm.c:957
+#: rpm.c:919
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "enbart installation och upgradering kan bli tvingade"
 
-#: ../rpm.c:960
+#: rpm.c:922
 #, fuzzy
 msgid "files may only be relocated during package installation"
 msgstr "--replacefiles kan enbart användas vid paket installation"
 
-#: ../rpm.c:963
+#: rpm.c:925
 #, fuzzy
 msgid "only one of --prefix or --relocate may be used"
 msgstr "enbart ett läge kan specifieras"
 
-#: ../rpm.c:966
+#: rpm.c:928
 #, fuzzy
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr "--clean kan enbart användas vid paket tillverkning"
 
-#: ../rpm.c:969
+#: rpm.c:931
 #, fuzzy
 msgid "--prefix may only be used when installing new packages"
 msgstr "--sign kan enbart användas vid paket tillverkning"
 
-#: ../rpm.c:972
+#: rpm.c:934
 #, fuzzy
 msgid "arguments to --prefix must begin with a /"
 msgstr "argument till --root (-r) måste börja med /"
 
-#: ../rpm.c:975
+#: rpm.c:937
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) kan enbart användas vid paket installation"
 
-#: ../rpm.c:979
+#: rpm.c:941
 msgid "--percent may only be specified during package installation"
 msgstr "--percent kan enbart användas vid paket installation"
 
-#: ../rpm.c:983
+#: rpm.c:945
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles kan enbart användas vid paket installation"
 
-#: ../rpm.c:987
+#: rpm.c:949
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs kan enbart användas vid paket installation"
 
-#: ../rpm.c:991
+#: rpm.c:953
 #, fuzzy
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--percent kan enbart användas vid paket installation"
 
-#: ../rpm.c:995
+#: rpm.c:957
 #, fuzzy
 msgid "--includedocs may only be specified during package installation"
 msgstr "--percent kan enbart användas vid paket installation"
 
-#: ../rpm.c:999
+#: rpm.c:961
 #, fuzzy
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "enbart ett läge kan specifieras"
 
-#: ../rpm.c:1003
+#: rpm.c:965
 #, fuzzy
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--percent kan enbart användas vid paket installation"
 
-#: ../rpm.c:1007
+#: rpm.c:969
 #, fuzzy
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--percent kan enbart användas vid paket installation"
 
-#: ../rpm.c:1011
+#: rpm.c:973
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--percent kan enbart användas vid paket installation"
 
-#: ../rpm.c:1015
+#: rpm.c:977
 #, fuzzy
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--replacepkgs kan enbart användas vid paket installation"
 
-#: ../rpm.c:1019
+#: rpm.c:981
 #, fuzzy
 msgid "--allfiles may only be specified during package installation"
 msgstr "--replacefiles kan enbart användas vid paket installation"
 
-#: ../rpm.c:1023
+#: rpm.c:985
 #, fuzzy
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr "--test kan enbart användas vid paket installation och avinstallation"
 
-#: ../rpm.c:1028
+#: rpm.c:990
 #, fuzzy
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
 msgstr "--test kan enbart användas vid paket installation och avinstallation"
 
-#: ../rpm.c:1032
+#: rpm.c:994
 #, fuzzy
 msgid ""
 "--notriggers may only be specified during package installation, erasure, and "
 "verification"
 msgstr "--test kan enbart användas vid paket installation och avinstallation"
 
-#: ../rpm.c:1038
+#: rpm.c:1000
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, installation, "
 "erasure, and verification"
 msgstr "--test kan enbart användas vid paket installation och avinstallation"
 
-#: ../rpm.c:1043
-#, fuzzy
-msgid "--nofiles may only be specified during package verification"
-msgstr "--replacefiles kan enbart användas vid paket installation"
-
-#: ../rpm.c:1049
+#: rpm.c:1005
 #, fuzzy
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr "--test kan enbart användas vid paket installation och avinstallation"
 
-#: ../rpm.c:1054
+#: rpm.c:1010
 #, fuzzy
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
@@ -1499,2039 +1247,2372 @@ msgstr ""
 "--root (-r) kan enbart användas vid paket installation, avinstallation, och "
 "undersökning"
 
-#: ../rpm.c:1059
+#: rpm.c:1015
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "argument till --root (-r) måste börja med /"
 
-#: ../rpm.c:1063
-#, fuzzy
-msgid "--clean may only be used with -b and -t"
-msgstr "--clean kan enbart användas vid paket tillverkning"
-
-#: ../rpm.c:1066
-#, fuzzy
-msgid "--rmsource may only be used with -b and -t"
-msgstr "--oldpackage kan enbart användas vid paket uppgraderingar"
-
-#: ../rpm.c:1069
-#, fuzzy
-msgid "--short-circuit may only be used during package building"
-msgstr "--sign kan enbart användas vid paket tillverkning"
-
-#: ../rpm.c:1073
-msgid "--short-circuit may only be used with -bc, -bi, -bs, -tc -ti, or -ts"
-msgstr ""
-
-#: ../rpm.c:1079
+#: rpm.c:1018
 msgid "--oldpackage may only be used during upgrades"
 msgstr "--oldpackage kan enbart användas vid paket uppgraderingar"
 
-#: ../rpm.c:1084
+#: rpm.c:1023
 #, fuzzy
 msgid ""
 "ftp options can only be used during package queries, installs, and upgrades"
 msgstr "--sign kan enbart användas vid paket tillverkning"
 
-#: ../rpm.c:1090
+#: rpm.c:1029
 #, fuzzy
 msgid ""
 "http options can only be used during package queries, installs, and upgrades"
 msgstr "--sign kan enbart användas vid paket tillverkning"
 
-#: ../rpm.c:1094
+#: rpm.c:1033
 #, fuzzy
 msgid "--nopgp may only be used during signature checking"
 msgstr "--sign kan enbart användas vid paket tillverkning"
 
-#: ../rpm.c:1097
+#: rpm.c:1036
 #, fuzzy
 msgid "--nogpg may only be used during signature checking"
 msgstr "--sign kan enbart användas vid paket tillverkning"
 
-#: ../rpm.c:1100
+#: rpm.c:1039
 #, fuzzy
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr "--sign kan enbart användas vid paket tillverkning"
 
-#: ../rpm.c:1126
+#: rpm.c:1063
+msgid "no files to sign\n"
+msgstr ""
+
+#: rpm.c:1068
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: ../rpm.c:1143
+#: rpm.c:1083
 #, fuzzy
 msgid "pgp not found: "
 msgstr "inga paket angivna för avinstallation"
 
-#: ../rpm.c:1146
-msgid "Use `%%_signature pgp5' instead of `%%_signature pgp' in macro file.\n"
-msgstr ""
-
-#: ../rpm.c:1153
-#, fuzzy
-msgid "pgp version 5 not found: "
-msgstr "inga paket angivna för avinstallation"
-
-#: ../rpm.c:1156
-msgid "Use `%%_signature pgp' instead of `%%_signature pgp5' in macro file.\n"
-msgstr ""
-
-#: ../rpm.c:1162
+#: rpm.c:1087
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: ../rpm.c:1163
+#: rpm.c:1089
 msgid "Pass phrase check failed\n"
 msgstr "Kontrollen av Id-strängen misslyckades\n"
 
-#: ../rpm.c:1166
+#: rpm.c:1092
 msgid "Pass phrase is good.\n"
 msgstr "Id strängen är ok.\n"
 
-#: ../rpm.c:1173
+#: rpm.c:1097
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: ../rpm.c:1178
+#: rpm.c:1103
 msgid "--sign may only be used during package building"
 msgstr "--sign kan enbart användas vid paket tillverkning"
 
-#: ../rpm.c:1195
+#: rpm.c:1118
 #, fuzzy
 msgid "exec failed\n"
 msgstr "Tillverkningen misslyckades.\n"
 
-#: ../rpm.c:1214
+#: rpm.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: ../rpm.c:1225
+#: rpm.c:1148
 msgid "no packages given for signature check"
 msgstr "inga paket angivna för signatur kontroll"
 
-#: ../rpm.c:1233
+#: rpm.c:1160
 #, fuzzy
 msgid "no packages given for signing"
 msgstr "inga paket angivna för avinstallation"
 
-#: ../rpm.c:1242
+#: rpm.c:1173
 msgid "no packages files given for rebuild"
 msgstr "inga paket filer angivna för omtillverkning"
 
-#: ../rpm.c:1299
+#: rpm.c:1230
 msgid "no spec files given for build"
 msgstr "ingen spec filer angivna för tillverkning"
 
-#: ../rpm.c:1301
+#: rpm.c:1232
 #, fuzzy
 msgid "no tar files given for build"
 msgstr "ingen spec filer angivna för tillverkning"
 
-#: ../rpm.c:1313
+#: rpm.c:1244
 msgid "no packages given for uninstall"
 msgstr "inga paket angivna för avinstallation"
 
-#: ../rpm.c:1362
+#: rpm.c:1294
 msgid "no packages given for install"
 msgstr "inga paket angivna för installation"
 
-#: ../rpm.c:1385
+#: rpm.c:1317
 #, fuzzy
 msgid "extra arguments given for query of all packages"
 msgstr "inga parametrar angivna för undersökning"
 
-#: ../rpm.c:1390
+#: rpm.c:1322
 msgid "no arguments given for query"
 msgstr "inga parametrar angivna för undersökning"
 
-#: ../rpm.c:1411
+#: rpm.c:1339
 #, fuzzy
 msgid "extra arguments given for verify of all packages"
 msgstr "inga parametrar angivna för undersökning"
 
-#: ../rpm.c:1415
+#: rpm.c:1343
 msgid "no arguments given for verify"
 msgstr "inga parametrar angivna för verifiering"
 
-#: ../rpm2cpio.c:42
+#: rpm2cpio.c:34
 msgid "argument is not an RPM package\n"
 msgstr ""
 
-#: ../rpm2cpio.c:46
+#: rpm2cpio.c:38
 msgid "error reading header from package\n"
 msgstr ""
 
-#: ../url.c:136
+#: build/build.c:83 build/pack.c:263
+#, fuzzy
+msgid "Unable to open temp file"
+msgstr "kan inte öppna: %s\n"
+
+#: build/build.c:124
+#, fuzzy, c-format
+msgid "Executing: %s\n"
+msgstr "RPM version %s\n"
+
+#: build/build.c:128
 #, c-format
-msgid "Password for %s@%s: "
+msgid "Exec of %s failed (%s)"
 msgstr ""
 
-#: ../url.c:160 ../url.c:186
+#: build/build.c:138
 #, c-format
-msgid "error: %sport must be a number\n"
+msgid "Bad exit status from %s (%s)"
 msgstr ""
 
-#: ../url.c:271
-msgid "url port must be a number\n"
+#: build/expression.c:208
+msgid "syntax error while parsing =="
 msgstr ""
 
-#. XXX PARANOIA
-#: ../url.c:308
-#, c-format
-msgid "logging into %s as %s, pw %s\n"
+#: build/expression.c:238
+msgid "syntax error while parsing &&"
 msgstr ""
 
-#: ../lib/rpmdb.c:169 ../url.c:422
-#, fuzzy, c-format
-msgid "failed to open %s\n"
-msgstr "kan inte öppna: %s\n"
+#: build/expression.c:247
+msgid "syntax error while parsing ||"
+msgstr ""
 
-#: ../url.c:437
-#, fuzzy, c-format
-msgid "failed to create %s\n"
-msgstr "kan inte öppna: %s\n"
-
-#: ../build/build.c:83 ../build/pack.c:248
-#, fuzzy
-msgid "Unable to open temp file"
-msgstr "kan inte öppna: %s\n"
-
-#: ../build/build.c:122
-#, fuzzy, c-format
-msgid "Executing: %s\n"
-msgstr "RPM version %s\n"
-
-#: ../build/build.c:126
-#, c-format
-msgid "Exec of %s failed (%s)"
-msgstr ""
-
-#: ../build/build.c:136
-#, c-format
-msgid "Bad exit status from %s (%s)"
-msgstr ""
-
-#: ../build/expression.c:189 ../build/expression.c:198
-msgid "parse error in tokenizer"
-msgstr ""
-
-#: ../build/expression.c:240
+#: build/expression.c:289
 msgid "parse error in expression"
 msgstr ""
 
-#: ../build/expression.c:270
+#: build/expression.c:319
 msgid "unmatched ("
 msgstr ""
 
-#: ../build/expression.c:288
+#: build/expression.c:337
 msgid "undefined identifier"
 msgstr ""
 
-#: ../build/expression.c:307
+#: build/expression.c:356
 msgid "- only on numbers"
 msgstr ""
 
-#: ../build/expression.c:323
+#: build/expression.c:372
 msgid "! only on numbers"
 msgstr ""
 
-#: ../build/expression.c:362 ../build/expression.c:407
-#: ../build/expression.c:464 ../build/expression.c:551
+#: build/expression.c:411 build/expression.c:456 build/expression.c:513
+#: build/expression.c:600
 msgid "types must match"
 msgstr ""
 
-#: ../build/expression.c:375
+#: build/expression.c:424
 msgid "* / not suported for strings"
 msgstr ""
 
-#: ../build/expression.c:423
+#: build/expression.c:472
 msgid "- not suported for strings"
 msgstr ""
 
-#: ../build/expression.c:564
+#: build/expression.c:613
 msgid "&& and || not suported for strings"
 msgstr ""
 
-#: ../build/expression.c:595 ../build/expression.c:640
+#: build/expression.c:644 build/expression.c:689
 msgid "syntax error in expression"
 msgstr ""
 
-#: ../build/files.c:220
+#: build/files.c:224
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr ""
 
-#: ../build/files.c:265 ../build/files.c:277 ../build/files.c:346
-#: ../build/files.c:358 ../build/files.c:389
+#: build/files.c:267 build/files.c:349 build/files.c:512
 #, c-format
-msgid "Bad %s() syntax: %s"
+msgid "Missing '(' in %s %s"
 msgstr ""
 
-#: ../build/files.c:307
+#: build/files.c:278 build/files.c:466 build/files.c:523
 #, c-format
-msgid "Invalid %s token: %s"
+msgid "Missing ')' in %s(%s"
 msgstr ""
 
-#: ../build/files.c:369
-msgid "No files after %%defattr(): %s"
-msgstr ""
-
-#: ../build/files.c:399
+#: build/files.c:316 build/files.c:491
 #, c-format
-msgid "Bad %s() mode spec: %s"
+msgid "Invalid %s token: %s"
 msgstr ""
 
-#: ../build/files.c:411
+#: build/files.c:365
 #, c-format
-msgid "Bad %s() dirmode spec: %s"
+msgid "Non-white space follows %s(): %s"
 msgstr ""
 
-#: ../build/files.c:462
-msgid "Bad %%config() syntax: %s"
-msgstr ""
+#: build/files.c:403
+#, fuzzy, c-format
+msgid "Bad syntax: %s(%s)"
+msgstr "kan inte öppna: %s\n"
 
-#: ../build/files.c:480
-msgid "Invalid %%config token: %s"
-msgstr ""
+#: build/files.c:413
+#, fuzzy, c-format
+msgid "Bad mode spec: %s(%s)"
+msgstr "kan inte öppna: %s\n"
 
-#: ../build/files.c:503 ../build/files.c:515 ../build/files.c:528
-msgid "Bad %%lang() syntax: %s"
+#: build/files.c:425
+#, c-format
+msgid "Bad dirmode spec: %s(%s)"
 msgstr ""
 
-#: ../build/files.c:534
-msgid "%%lang() entries are 2 characters: %s"
+#: build/files.c:549
+msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
 msgstr ""
 
-#: ../build/files.c:540
-msgid "Only one entry in %%lang(): %s"
+#: build/files.c:559
+msgid "Duplicate locale %.*s in %%lang(%s)"
 msgstr ""
 
-#: ../build/files.c:620
+#: build/files.c:651
 msgid "Hit limit for %%docdir"
 msgstr ""
 
-#: ../build/files.c:626
+#: build/files.c:657
 msgid "Only one arg for %%docdir"
 msgstr ""
 
 #. We already got a file -- error
-#: ../build/files.c:651
+#: build/files.c:682
 #, fuzzy, c-format
 msgid "Two files on one line: %s"
 msgstr "kan inte öppna: %s\n"
 
-#: ../build/files.c:664
+#: build/files.c:695
 #, fuzzy, c-format
 msgid "File must begin with \"/\": %s"
 msgstr "argument till --root (-r) måste börja med /"
 
-#: ../build/files.c:676
+#: build/files.c:707
 msgid "Can't mix special %%doc with other forms: %s"
 msgstr ""
 
-#: ../build/files.c:764
+#: build/files.c:792
 #, c-format
 msgid "File listed twice: %s"
 msgstr ""
 
-#: ../build/files.c:916
+#: build/files.c:952
 #, c-format
 msgid "File doesn't match prefix (%s): %s"
 msgstr ""
 
-#: ../build/files.c:926 ../build/files.c:1049
+#: build/files.c:962 build/files.c:1099
 #, fuzzy, c-format
 msgid "File not found: %s"
 msgstr "inga paket angivna för avinstallation"
 
-#: ../build/files.c:969
+#: build/files.c:1005
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: ../build/files.c:983
+#: build/files.c:1019
 #, c-format
 msgid "File %4d: 0%o %s.%s\t %s\n"
 msgstr ""
 
-#: ../build/files.c:1033
+#: build/files.c:1083
 #, c-format
 msgid "File needs leading \"/\": %s"
 msgstr ""
 
-#: ../build/files.c:1090
+#: build/files.c:1140
 #, fuzzy
 msgid "Could not open %%files file: %s"
 msgstr "kan inte öppna: %s\n"
 
-#: ../build/files.c:1097 ../build/pack.c:433
+#: build/files.c:1147 build/pack.c:484
 #, c-format
 msgid "line: %s"
 msgstr ""
 
-#: ../build/files.c:1394 ../build/parsePrep.c:31
+#: build/files.c:1469 build/parsePrep.c:29
 #, c-format
 msgid "Bad owner/group: %s"
 msgstr ""
 
-#: ../build/files.c:1448
+#: build/files.c:1522
 #, c-format
 msgid "Couldn't exec %s"
 msgstr ""
 
-#: ../build/files.c:1452
+#: build/files.c:1526
 #, c-format
 msgid "Couldn't fork %s"
 msgstr ""
 
-#: ../build/files.c:1502
+#: build/files.c:1605
 #, fuzzy, c-format
 msgid "%s failed"
 msgstr "Tillverkningen misslyckades.\n"
 
-#: ../build/files.c:1506
+#: build/files.c:1609
 #, fuzzy, c-format
 msgid "failed to write all data to %s"
 msgstr "kan inte öppna: %s\n"
 
-#: ../build/files.c:1540
-msgid "Finding provides...\n"
-msgstr ""
-
-#: ../build/files.c:1547
-msgid "Failed to find provides"
-msgstr ""
-
-#: ../build/files.c:1566
-msgid "Finding requires...\n"
+#: build/files.c:1695
+#, c-format
+msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: ../build/files.c:1573
-#, fuzzy
-msgid "Failed to find requires"
+#: build/files.c:1723 build/files.c:1732
+#, fuzzy, c-format
+msgid "Failed to find %s:"
 msgstr "kan inte öppna: %s\n"
 
-#: ../build/files.c:1607
-msgid "Provides:"
-msgstr ""
-
-#: ../build/files.c:1622
-msgid "Prereqs:"
-msgstr ""
-
-#: ../build/files.c:1634
-msgid "Requires:"
-msgstr ""
-
-#: ../build/files.c:1658
+#: build/files.c:1838
 #, c-format
 msgid "Processing files: %s\n"
 msgstr ""
 
-#: ../build/names.c:32 ../build/names.c:64
+#: build/names.c:32 build/names.c:64
 msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
 msgstr ""
 
-#: ../build/names.c:97 ../build/names.c:129
+#: build/names.c:97 build/names.c:129
 msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
 msgstr ""
 
-#: ../build/names.c:167
+#: build/names.c:167
 #, c-format
 msgid "Could not canonicalize hostname: %s\n"
 msgstr ""
 
-#: ../build/pack.c:134
+#: build/pack.c:131
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr ""
 
-#: ../build/pack.c:167
+#: build/pack.c:148
+#, fuzzy, c-format
+msgid "cannot create %s: %s\n"
+msgstr "kan inte öppna: %s\n"
+
+#: build/pack.c:183
 #, fuzzy, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "kan inte öppna: %s\n"
 
-#: ../build/pack.c:177
+#: build/pack.c:193
 #, fuzzy, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "kan inte öppna: %s\n"
 
-#: ../build/pack.c:197
+#: build/pack.c:213
 #, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr ""
 
-#: ../build/pack.c:203
+#: build/pack.c:219
 #, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr ""
 
-#: ../build/pack.c:259
+#: build/pack.c:274
 msgid "Bad CSA data"
 msgstr ""
 
-#: ../build/pack.c:282
+#: build/pack.c:305
 #, fuzzy, c-format
 msgid "Could not open %s\n"
 msgstr "kan inte öppna: %s\n"
 
-#: ../build/pack.c:314 ../build/pack.c:357
+#: build/pack.c:337 build/pack.c:379
 #, fuzzy, c-format
 msgid "Unable to write package: %s"
 msgstr "kan inte öppna: %s\n"
 
-#: ../build/pack.c:347
+#: build/pack.c:352
+#, fuzzy, c-format
+msgid "Generating signature: %d\n"
+msgstr "      --sign            - tillverka en PGP signatur"
+
+#: build/pack.c:369
 #, fuzzy, c-format
 msgid "Unable to read sigtarget: %s"
 msgstr "kan inte öppna: %s\n"
 
-#: ../build/pack.c:372
+#: build/pack.c:394
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
 
-#: ../build/pack.c:387
+#: build/pack.c:411 build/pack.c:435
 #, fuzzy, c-format
 msgid "create archive failed on file %s: %s"
 msgstr "kan inte öppna: %s\n"
 
-#: ../build/pack.c:403
+#: build/pack.c:454
 #, c-format
 msgid "cpio_copy write failed: %s"
 msgstr ""
 
-#: ../build/pack.c:410
+#: build/pack.c:461
 #, c-format
 msgid "cpio_copy read failed: %s"
 msgstr ""
 
-#: ../build/pack.c:489
+#: build/pack.c:540
 #, c-format
 msgid "Could not open PreIn file: %s"
 msgstr ""
 
-#: ../build/pack.c:496
+#: build/pack.c:547
 #, c-format
 msgid "Could not open PreUn file: %s"
 msgstr ""
 
-#: ../build/pack.c:503
+#: build/pack.c:554
 #, c-format
 msgid "Could not open PostIn file: %s"
 msgstr ""
 
-#: ../build/pack.c:510
+#: build/pack.c:561
 #, c-format
 msgid "Could not open PostUn file: %s"
 msgstr ""
 
-#: ../build/pack.c:518
+#: build/pack.c:569
 #, c-format
 msgid "Could not open VerifyScript file: %s"
 msgstr ""
 
-#: ../build/pack.c:534
+#: build/pack.c:585
 #, c-format
 msgid "Could not open Trigger script file: %s"
 msgstr ""
 
-#: ../build/parseBuildInstallClean.c:27
+#: build/parseBuildInstallClean.c:27
 #, c-format
 msgid "line %d: second %s"
 msgstr ""
 
-#: ../build/parseChangelog.c:95
+#: build/parseChangelog.c:103
 msgid "%%changelog entries must start with *"
 msgstr ""
 
-#: ../build/parseChangelog.c:103
+#: build/parseChangelog.c:111
 msgid "incomplete %%changelog entry"
 msgstr ""
 
-#: ../build/parseChangelog.c:118
+#: build/parseChangelog.c:126
 msgid "bad date in %%changelog: %s"
 msgstr ""
 
-#: ../build/parseChangelog.c:123
+#: build/parseChangelog.c:131
 msgid "%%changelog not in decending chronological order"
 msgstr ""
 
-#: ../build/parseChangelog.c:131 ../build/parseChangelog.c:142
+#: build/parseChangelog.c:139 build/parseChangelog.c:150
 msgid "missing name in %%changelog"
 msgstr ""
 
-#: ../build/parseChangelog.c:149
+#: build/parseChangelog.c:157
 msgid "no description in %%changelog"
 msgstr ""
 
-#: ../build/parseDescription.c:35
+#: build/parseDescription.c:33
 msgid "line %d: Error parsing %%description: %s"
 msgstr ""
 
-#: ../build/parseDescription.c:48 ../build/parseFiles.c:42
-#: ../build/parseScript.c:170
+#: build/parseDescription.c:46 build/parseFiles.c:40 build/parseScript.c:168
 #, fuzzy, c-format
 msgid "line %d: Bad option %s: %s"
 msgstr "kan inte öppna: %s\n"
 
-#: ../build/parseDescription.c:62 ../build/parseFiles.c:56
-#: ../build/parseScript.c:184
+#: build/parseDescription.c:60 build/parseFiles.c:54 build/parseScript.c:182
 #, c-format
 msgid "line %d: Too many names: %s"
 msgstr ""
 
-#: ../build/parseDescription.c:72 ../build/parseFiles.c:66
-#: ../build/parseScript.c:194
+#: build/parseDescription.c:70 build/parseFiles.c:64 build/parseScript.c:192
 #, c-format
 msgid "line %d: Package does not exist: %s"
 msgstr ""
 
-#: ../build/parseDescription.c:84
+#: build/parseDescription.c:82
 #, c-format
 msgid "line %d: Second description"
 msgstr ""
 
-#: ../build/parseFiles.c:29
+#: build/parseFiles.c:27
 msgid "line %d: Error parsing %%files: %s"
 msgstr ""
 
-#: ../build/parseFiles.c:74
+#: build/parseFiles.c:72
 msgid "line %d: Second %%files list"
 msgstr ""
 
-#: ../build/parsePreamble.c:143
+#: build/parsePreamble.c:141
 #, c-format
 msgid "Architecture is excluded: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:148
+#: build/parsePreamble.c:146
 #, c-format
 msgid "Architecture is not included: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:153
+#: build/parsePreamble.c:151
 #, c-format
 msgid "OS is excluded: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:158
+#: build/parsePreamble.c:156
 #, c-format
 msgid "OS is not included: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:193
+#: build/parsePreamble.c:170
 #, c-format
 msgid "%s field must be present in package: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:215
+#: build/parsePreamble.c:192
 #, c-format
 msgid "Duplicate %s entries in package: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:262
+#: build/parsePreamble.c:239
 #, fuzzy, c-format
 msgid "Unable to stat icon: %s"
 msgstr "kan inte öppna: %s\n"
 
-#: ../build/parsePreamble.c:273
+#: build/parsePreamble.c:250
 #, fuzzy, c-format
 msgid "Unable to read icon: %s"
 msgstr "kan inte öppna: %s\n"
 
-#: ../build/parsePreamble.c:283
+#: build/parsePreamble.c:260
 #, c-format
 msgid "Unknown icon type: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:346
+#: build/parsePreamble.c:323
 #, c-format
 msgid "line %d: Malformed tag: %s"
 msgstr ""
 
 #. Empty field
-#: ../build/parsePreamble.c:354
+#: build/parsePreamble.c:331
 #, c-format
 msgid "line %d: Empty tag: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:377 ../build/parsePreamble.c:384
+#: build/parsePreamble.c:354 build/parsePreamble.c:361
 #, fuzzy, c-format
 msgid "line %d: Illegal char '-' in %s: %s"
 msgstr "kan inte öppna: %s\n"
 
-#: ../build/parsePreamble.c:422
+#: build/parsePreamble.c:399
 #, c-format
 msgid "line %d: BuildRoot can not be \"/\": %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:435
+#: build/parsePreamble.c:412
 #, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:447
+#: build/parsePreamble.c:424
 #, fuzzy, c-format
 msgid "line %d: Docdir must begin with '/': %s"
 msgstr "argument till --root (-r) måste börja med /"
 
-#: ../build/parsePreamble.c:459
+#: build/parsePreamble.c:436
 #, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:524
+#: build/parsePreamble.c:499
 #, c-format
 msgid "line %d: Bad BuildArchitecture format: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:534
+#: build/parsePreamble.c:509
 #, c-format
 msgid "Internal error: Bogus tag %d"
 msgstr ""
 
-#: ../build/parsePreamble.c:679
+#: build/parsePreamble.c:656
 #, fuzzy, c-format
 msgid "Bad package specification: %s"
 msgstr "      Paket urvals parametrar:"
 
-#: ../build/parsePreamble.c:685
+#: build/parsePreamble.c:662
 #, c-format
 msgid "Package already exists: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:712
+#: build/parsePreamble.c:689
 #, c-format
 msgid "line %d: Unknown tag: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:737
+#: build/parsePreamble.c:714
 msgid "Spec file can't use BuildRoot"
 msgstr ""
 
-#: ../build/parsePrep.c:27
+#: build/parsePrep.c:25
 #, fuzzy, c-format
 msgid "Bad source: %s: %s"
 msgstr "kan inte öppna: %s\n"
 
-#: ../build/parsePrep.c:53
+#: build/parsePrep.c:51
 #, c-format
 msgid "No patch number %d"
 msgstr ""
 
-#: ../build/parsePrep.c:119
+#: build/parsePrep.c:117
 #, c-format
 msgid "No source number %d"
 msgstr ""
 
-#: ../build/parsePrep.c:138
+#: build/parsePrep.c:136
 #, fuzzy, c-format
 msgid "Couldn't download nosource %s: %s"
 msgstr "kan inte öppna: %s\n"
 
-#: ../build/parsePrep.c:193
+#: build/parsePrep.c:191
 msgid "Error parsing %%setup: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:208
+#: build/parsePrep.c:206
 msgid "line %d: Bad arg to %%setup %c: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:229
+#: build/parsePrep.c:227
 msgid "line %d: Bad %%setup option %s: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:353
+#: build/parsePrep.c:351
 msgid "line %d: Need arg to %%patch -b: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:361
+#: build/parsePrep.c:359
 msgid "line %d: Need arg to %%patch -z: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:373
+#: build/parsePrep.c:371
 msgid "line %d: Need arg to %%patch -p: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:379
+#: build/parsePrep.c:377
 msgid "line %d: Bad arg to %%patch -p: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:386
+#: build/parsePrep.c:384
 msgid "Too many patches!"
 msgstr ""
 
-#: ../build/parsePrep.c:390
+#: build/parsePrep.c:388
 msgid "line %d: Bad arg to %%patch: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:426
+#: build/parsePrep.c:424
 msgid "line %d: second %%prep"
 msgstr ""
 
-#: ../build/parseReqs.c:45
-#, c-format
-msgid "line %d: No file names in Conflicts: %s"
-msgstr ""
-
-#: ../build/parseReqs.c:79
-#, c-format
-msgid "line %d: No versions on file names in %s: %s"
-msgstr ""
+#: build/parseReqs.c:91
+#, fuzzy, c-format
+msgid ""
+"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
+msgstr "argument till --root (-r) måste börja med /"
 
-#: ../build/parseReqs.c:85
+#: build/parseReqs.c:102
 #, c-format
-msgid "line %d: No versions in PreReq: %s"
+msgid "line %d: File name not permitted: %s"
 msgstr ""
 
-#: ../build/parseReqs.c:97
+#: build/parseReqs.c:134
 #, c-format
-msgid "line %d: Version required in %s: %s"
+msgid "line %d: Versioned file name not permitted: %s"
 msgstr ""
 
-#: ../build/parseReqs.c:126
+#: build/parseReqs.c:146
 #, c-format
-msgid "line %d: No file names in Obsoletes: %s"
+msgid "line %d: Version not permitted: %s"
 msgstr ""
 
-#: ../build/parseReqs.c:133
-#, c-format
-msgid "line %d: %s: tokens must begin with alpha-numeric: %s"
-msgstr ""
+#: build/parseReqs.c:172
+#, fuzzy, c-format
+msgid "line %d: Version required: %s"
+msgstr "kan inte öppna: %s\n"
 
-#: ../build/parseScript.c:138
+#: build/parseScript.c:136
 #, c-format
 msgid "line %d: triggers must have --: %s"
 msgstr ""
 
-#: ../build/parseScript.c:148 ../build/parseScript.c:212
+#: build/parseScript.c:146 build/parseScript.c:210
 #, c-format
 msgid "line %d: Error parsing %s: %s"
 msgstr ""
 
-#: ../build/parseScript.c:158
+#: build/parseScript.c:156
 #, c-format
 msgid "line %d: script program must begin with '/': %s"
 msgstr ""
 
-#: ../build/parseScript.c:203
+#: build/parseScript.c:201
 #, c-format
 msgid "line %d: Second %s"
 msgstr ""
 
-#: ../build/parseSpec.c:120
+#: build/parseSpec.c:126
+#, fuzzy, c-format
+msgid "line %d: %s"
+msgstr "kan inte öppna: %s\n"
+
+#: build/parseSpec.c:172
 #, fuzzy, c-format
 msgid "Unable to open: %s\n"
 msgstr "kan inte öppna: %s\n"
 
-#: ../build/parseSpec.c:132
+#: build/parseSpec.c:184
 msgid "Unclosed %%if"
 msgstr ""
 
-#: ../build/parseSpec.c:188
-#, fuzzy, c-format
-msgid "line %d: %s"
-msgstr "kan inte öppna: %s\n"
+#: build/parseSpec.c:243
+#, c-format
+msgid "%s:%d: parseExpressionBoolean returns %d"
+msgstr ""
 
 #. Got an else with no %if !
-#: ../build/parseSpec.c:213
+#: build/parseSpec.c:251
 msgid "%s:%d: Got a %%else with no if"
 msgstr ""
 
 #. Got an end with no %if !
-#: ../build/parseSpec.c:223
+#: build/parseSpec.c:262
 msgid "%s:%d: Got a %%endif with no if"
 msgstr ""
 
-#: ../build/parseSpec.c:235 ../build/parseSpec.c:244
+#: build/parseSpec.c:276 build/parseSpec.c:285
 msgid "malformed %%include statement"
 msgstr ""
 
-#: ../build/parseSpec.c:323
+#: build/parseSpec.c:366
 #, c-format
 msgid "Timecheck value must be an integer: %s"
 msgstr ""
 
-#: ../build/parseSpec.c:406
+#: build/parseSpec.c:449
 #, fuzzy
 msgid "No buildable architectures"
 msgstr "%s går inte att tillverka på den här platformen\n"
 
-#: ../build/parseSpec.c:451
+#: build/parseSpec.c:494
 #, fuzzy
 msgid "Package has no %%description: %s"
 msgstr "inga paket angivna för avinstallation"
 
-#: ../build/spec.c:28
+#: build/spec.c:31
 #, c-format
 msgid "archive = %s, fs = %s\n"
 msgstr ""
 
-#: ../build/spec.c:224
+#: build/spec.c:237
 #, c-format
 msgid "line %d: Bad number: %s"
 msgstr ""
 
-#: ../build/spec.c:230
+#: build/spec.c:243
 #, c-format
 msgid "line %d: Bad no%s number: %d"
 msgstr ""
 
-#: ../build/spec.c:286
+#: build/spec.c:301
 #, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: ../lib/cpio.c:362
+#: lib/cpio.c:385
 #, fuzzy, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr "kan inte öppna: %s\n"
 
-#: ../lib/cpio.c:368
+#: lib/cpio.c:391
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: ../lib/cpio.c:547
+#: lib/cpio.c:582
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: ../lib/cpio.c:1000
+#: lib/cpio.c:1044
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: ../lib/cpio.c:1003
+#: lib/cpio.c:1047
 msgid "Bad magic"
 msgstr ""
 
-#: ../lib/cpio.c:1004
+#: lib/cpio.c:1048
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: ../lib/cpio.c:1022
-msgid "Internal error"
-msgstr ""
-
-#: ../lib/cpio.c:1023
+#: lib/cpio.c:1066
 msgid "Header size too big"
 msgstr ""
 
-#: ../lib/cpio.c:1024
+#: lib/cpio.c:1067
 msgid "Unknown file type"
 msgstr ""
 
-#: ../lib/cpio.c:1033
+#: lib/cpio.c:1068
+msgid "Missing hard link"
+msgstr ""
+
+#: lib/cpio.c:1069
+msgid "Internal error"
+msgstr ""
+
+#: lib/cpio.c:1078
 #, fuzzy
 msgid " failed - "
 msgstr "Tillverkningen misslyckades.\n"
 
-#: ../lib/dbindex.c:32
+#: lib/dbindex.c:32
 #, fuzzy, c-format
 msgid "cannot open file %s: %s"
 msgstr "kan inte öppna: %s\n"
 
-#: ../lib/dbindex.c:77
+#: lib/dbindex.c:84
 #, c-format
 msgid "error getting record %s from %s"
 msgstr ""
 
-#: ../lib/dbindex.c:105
+#: lib/dbindex.c:111
 #, c-format
 msgid "error storing record %s into %s"
 msgstr ""
 
-#: ../lib/dbindex.c:112
+#: lib/dbindex.c:118
 #, c-format
 msgid "error removing record %s into %s"
 msgstr ""
 
-#: ../lib/depends.c:429 ../lib/depends.c:588
+#. XXX legacy epoch-less requires/conflicts compatibility
+#: lib/depends.c:339
 #, c-format
-msgid "cannot read header at %d for dependency check"
+msgid ""
+"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
+"\tA %s\tB %s\n"
+msgstr ""
+
+#: lib/depends.c:368
+#, c-format
+msgid "  %s    A %s\tB %s\n"
+msgstr ""
+
+#: lib/depends.c:460
+msgid "dbrecMatchesDepFlags() failed to read header"
+msgstr ""
+
+#: lib/depends.c:695
+#, c-format
+msgid "%s: %s satisfied by added package.\n"
+msgstr ""
+
+#: lib/depends.c:712
+#, c-format
+msgid "%s: %s satisfied by added provide.\n"
+msgstr ""
+
+#: lib/depends.c:717
+#, c-format
+msgid "%s: %s satisfied by added file list.\n"
 msgstr ""
 
-#: ../lib/depends.c:494
+#: lib/depends.c:747
 #, c-format
-msgid "dependencies: looking for %s\n"
+msgid "%s: %s satisfied by rpmrc provides.\n"
 msgstr ""
 
-#: ../lib/depends.c:682
+#: lib/depends.c:775
+#, c-format
+msgid "%s: %s satisfied by db file lists.\n"
+msgstr ""
+
+#: lib/depends.c:797
+#, c-format
+msgid "%s: %s satisfied by db provides.\n"
+msgstr ""
+
+#: lib/depends.c:819
+#, c-format
+msgid "%s: %s satisfied by db packages.\n"
+msgstr ""
+
+#: lib/depends.c:832
+#, c-format
+msgid "%s: %s satisfied by rpmlib version.\n"
+msgstr ""
+
+#: lib/depends.c:842
+#, c-format
+msgid "%s: %s unsatisfied.\n"
+msgstr ""
+
+#. requirements are not satisfied.
+#: lib/depends.c:890
 #, fuzzy, c-format
 msgid "package %s require not satisfied: %s\n"
 msgstr "inga paket angivna för installation"
 
-#: ../lib/depends.c:725
+#. conflicts exist.
+#: lib/depends.c:952
 #, fuzzy, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "inga paket angivna för avinstallation"
 
-#: ../lib/depends.c:825
-msgid "dbrecMatchesDepFlags() failed to read header"
+#: lib/depends.c:1007 lib/depends.c:1311
+#, c-format
+msgid "cannot read header at %d for dependency check"
 msgstr ""
 
-#: ../lib/depends.c:877
+#: lib/depends.c:1102
 #, c-format
 msgid "loop in prerequisite chain: %s"
 msgstr ""
 
-#: ../lib/falloc.c:149
+#: lib/falloc.c:160
 #, c-format
-msgid "free list corrupt (%u)- contact rpm-list@redhat.com\n"
+msgid ""
+"free list corrupt (%u)- please run\n"
+"\t\"rpm --rebuilddb\"\n"
+"More information is available from http://www.rpm.org or the "
+"rpm-list@redhat.com mailing list\n"
+"if \"rpm --rebuilddb\" fails to correct the problem.\n"
 msgstr ""
 
-#: ../lib/formats.c:97 ../lib/formats.c:114 ../lib/formats.c:134
-#: ../lib/formats.c:166 ../lib/header.c:1973 ../lib/header.c:1989
-#: ../lib/header.c:2009
+#: lib/formats.c:66 lib/formats.c:84 lib/formats.c:105 lib/formats.c:138
+#: lib/header.c:2122 lib/header.c:2139 lib/header.c:2159
 msgid "(not a number)"
 msgstr ""
 
-#: ../lib/fs.c:41
+#: lib/fs.c:40
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr ""
 
-#: ../lib/fs.c:76 ../lib/fs.c:246
+#: lib/fs.c:75 lib/fs.c:253
 #, fuzzy, c-format
 msgid "failed to stat %s: %s"
 msgstr "kan inte öppna: %s\n"
 
-#: ../lib/fs.c:117
+#: lib/fs.c:114
+msgid "getting list of mounted filesystems\n"
+msgstr ""
+
+#: lib/fs.c:119
 #, fuzzy, c-format
 msgid "failed to open %s: %s"
 msgstr "kan inte öppna: %s\n"
 
-#: ../lib/fs.c:267
+#: lib/fs.c:274
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr ""
 
-#: ../lib/header.c:669
-#, c-format
-msgid "Data type %d not supprted\n"
+#: lib/ftp.c:666
+msgid "Success"
 msgstr ""
 
-#. This should not be allowed
-#: ../lib/header.c:905
-msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
+#: lib/ftp.c:669
+msgid "Bad server response"
 msgstr ""
 
-#: ../lib/header.c:935
-#, c-format
-msgid "Data type %d not supported\n"
+#: lib/ftp.c:672
+msgid "Server IO error"
 msgstr ""
 
-#: ../lib/header.c:994
-#, c-format
-msgid "Bad count for headerAddEntry(): %d\n"
+#: lib/ftp.c:675
+msgid "Server timeout"
 msgstr ""
 
-#: ../lib/header.c:1328
-msgid "? expected in expression"
+#: lib/ftp.c:678
+msgid "Unable to lookup server host address"
 msgstr ""
 
-#: ../lib/header.c:1335
-msgid "{ expected after ? in expression"
+#: lib/ftp.c:681
+msgid "Unable to lookup server host name"
 msgstr ""
 
-#: ../lib/header.c:1345 ../lib/header.c:1377
-msgid "} expected in expression"
+#: lib/ftp.c:684
+msgid "Failed to connect to server"
 msgstr ""
 
-#: ../lib/header.c:1352
-msgid ": expected following ? subexpression"
+#: lib/ftp.c:687
+msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: ../lib/header.c:1365
-msgid "{ expected after : in expression"
+#: lib/ftp.c:690
+msgid "IO error to local file"
 msgstr ""
 
-#: ../lib/header.c:1384
-msgid "| expected at end of expression"
+#: lib/ftp.c:693
+msgid "Error setting remote server to passive mode"
+msgstr ""
+
+#: lib/ftp.c:696
+msgid "File not found on server"
+msgstr ""
+
+#: lib/ftp.c:699
+msgid "Abort in progress"
+msgstr ""
+
+#: lib/ftp.c:703
+msgid "Unknown or unexpected error"
+msgstr ""
+
+#. This should not be allowed
+#: lib/header.c:169
+msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
+msgstr ""
+
+#: lib/header.c:200
+#, c-format
+msgid "Data type %d not supported\n"
+msgstr ""
+
+#: lib/header.c:763
+#, c-format
+msgid "Data type %d not supprted\n"
+msgstr ""
+
+#: lib/header.c:1119
+#, c-format
+msgid "Bad count for headerAddEntry(): %d\n"
 msgstr ""
 
-#: ../lib/header.c:1478
+#: lib/header.c:1520
 #, c-format
 msgid "missing { after %"
 msgstr ""
 
-#: ../lib/header.c:1506
+#: lib/header.c:1548
 msgid "missing } after %{"
 msgstr ""
 
-#: ../lib/header.c:1518
+#: lib/header.c:1560
 msgid "empty tag format"
 msgstr ""
 
-#: ../lib/header.c:1528
+#: lib/header.c:1570
 msgid "empty tag name"
 msgstr ""
 
-#: ../lib/header.c:1543
+#: lib/header.c:1585
 msgid "unknown tag"
 msgstr ""
 
-#: ../lib/header.c:1569
+#: lib/header.c:1611
 msgid "] expected at end of array"
 msgstr ""
 
-#: ../lib/header.c:1585
+#: lib/header.c:1627
 #, fuzzy
 msgid "unexpected ]"
 msgstr "oväntad undersöknings källa"
 
-#: ../lib/header.c:1587
+#: lib/header.c:1629
 #, fuzzy
 msgid "unexpected }"
 msgstr "oväntad undersöknings källa"
 
-#: ../lib/header.c:1762
-msgid "(unknown type)"
-msgstr ""
-
-#: ../lib/install.c:93
-msgid "source package expected, binary found"
+#: lib/header.c:1682
+msgid "? expected in expression"
 msgstr ""
 
-#: ../lib/install.c:169 ../lib/uninstall.c:111
-#, c-format
-msgid "   file: %s action: %s\n"
+#: lib/header.c:1689
+msgid "{ expected after ? in expression"
 msgstr ""
 
-#: ../lib/install.c:186
-#, c-format
-msgid "user %s does not exist - using root"
+#: lib/header.c:1699 lib/header.c:1731
+msgid "} expected in expression"
 msgstr ""
 
-#: ../lib/install.c:194
-#, c-format
-msgid "group %s does not exist - using root"
+#: lib/header.c:1706
+msgid ": expected following ? subexpression"
 msgstr ""
 
-#: ../lib/install.c:221
-msgid "%%instchangelog value in macro file should be a number, but isn't"
+#: lib/header.c:1719
+msgid "{ expected after : in expression"
 msgstr ""
 
-#: ../lib/install.c:289
-#, fuzzy, c-format
-msgid "package: %s-%s-%s files test = %d\n"
-msgstr "inga paket angivna för installation"
-
-#: ../lib/install.c:352
-msgid "stopping install as we're running --test\n"
+#: lib/header.c:1738
+msgid "| expected at end of expression"
 msgstr ""
 
-#: ../lib/install.c:357
-msgid "running preinstall script (if any)\n"
+#: lib/header.c:1905
+msgid "(unknown type)"
 msgstr ""
 
-#: ../lib/install.c:387
+#: lib/install.c:141 lib/uninstall.c:179
 #, c-format
-msgid "warning: %s created as %s"
+msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: ../lib/install.c:423
+#: lib/install.c:159
 #, c-format
-msgid "warning: %s saved as %s"
+msgid "user %s does not exist - using root"
 msgstr ""
 
-#: ../lib/install.c:427 ../lib/install.c:790 ../lib/uninstall.c:337
+#: lib/install.c:167
 #, c-format
-msgid "rename of %s to %s failed: %s"
+msgid "group %s does not exist - using root"
 msgstr ""
 
-#: ../lib/install.c:507
-msgid "running postinstall script (if any)\n"
+#: lib/install.c:195
+msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
-#: ../lib/install.c:613
+#: lib/install.c:358
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: ../lib/install.c:614
+#: lib/install.c:359
 msgid " on file "
 msgstr ""
 
-#: ../lib/install.c:654
+#: lib/install.c:402
 #, fuzzy
 msgid "installing a source package\n"
 msgstr "    --install <paketfil>"
 
-#: ../lib/install.c:665 ../lib/install.c:687
+#: lib/install.c:413
 #, fuzzy, c-format
-msgid "cannot create %s"
+msgid "cannot create %s: %s"
 msgstr "kan inte öppna: %s\n"
 
-#: ../lib/install.c:672 ../lib/install.c:694
+#: lib/install.c:421 lib/install.c:443
 #, fuzzy, c-format
 msgid "cannot write to %s"
 msgstr "kan inte öppna: %s\n"
 
-#: ../lib/install.c:676
+#: lib/install.c:425
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: ../lib/install.c:698
+#: lib/install.c:436
+#, fuzzy, c-format
+msgid "cannot create %s"
+msgstr "kan inte öppna: %s\n"
+
+#: lib/install.c:447
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: ../lib/install.c:731 ../lib/install.c:767
+#: lib/install.c:481 lib/install.c:509
 #, fuzzy
 msgid "source package contains no .spec file"
 msgstr "        -f <fil>+         - undersök paket som äger <fil>"
 
-#: ../lib/install.c:788
+#: lib/install.c:530
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: ../lib/lookup.c:83
+#: lib/install.c:532 lib/install.c:810 lib/uninstall.c:26
+#, c-format
+msgid "rename of %s to %s failed: %s"
+msgstr ""
+
+#: lib/install.c:622
+msgid "source package expected, binary found"
+msgstr ""
+
+#: lib/install.c:679
+#, fuzzy, c-format
+msgid "package: %s-%s-%s files test = %d\n"
+msgstr "inga paket angivna för installation"
+
+#: lib/install.c:740
+msgid "stopping install as we're running --test\n"
+msgstr ""
+
+#: lib/install.c:745
+msgid "running preinstall script (if any)\n"
+msgstr ""
+
+#: lib/install.c:770
+#, c-format
+msgid "warning: %s created as %s"
+msgstr ""
+
+#: lib/install.c:806
+#, c-format
+msgid "warning: %s saved as %s"
+msgstr ""
+
+#: lib/install.c:880
+msgid "running postinstall scripts (if any)\n"
+msgstr ""
+
+#: lib/lookup.c:35
 #, c-format
 msgid "cannot read header at %d for lookup"
 msgstr ""
 
-#: ../lib/macro.c:129
+#: lib/macro.c:149
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr ""
 
 #. XXX just in case
-#: ../lib/macro.c:218
+#: lib/macro.c:243
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: ../lib/macro.c:253
+#: lib/macro.c:278
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: ../lib/macro.c:426
+#: lib/macro.c:457
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: ../lib/macro.c:452
+#: lib/macro.c:483
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: ../lib/macro.c:458
+#: lib/macro.c:489
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: ../lib/macro.c:463
+#: lib/macro.c:494
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: ../lib/macro.c:468
+#: lib/macro.c:499
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: ../lib/macro.c:493
+#: lib/macro.c:524
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: ../lib/macro.c:566
+#: lib/macro.c:601
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: ../lib/macro.c:650
+#: lib/macro.c:698
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr ""
 
-#: ../lib/macro.c:825
+#: lib/macro.c:870
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: ../lib/macro.c:881 ../lib/macro.c:897
+#: lib/macro.c:936 lib/macro.c:952
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: ../lib/macro.c:930
+#: lib/macro.c:992
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: ../lib/macro.c:1053
+#: lib/macro.c:1115
 #, fuzzy
 msgid "Macro %%%.*s not found, skipping"
 msgstr "inga paket angivna för avinstallation"
 
-#: ../lib/macro.c:1131
+#: lib/macro.c:1196
 msgid "Target buffer overflow"
 msgstr ""
 
-#: ../lib/macro.c:1274 ../lib/macro.c:1282
+#: lib/macro.c:1343 lib/macro.c:1351
 #, fuzzy, c-format
 msgid "File %s: %s"
 msgstr "kan inte öppna: %s\n"
 
-#: ../lib/macro.c:1285
+#: lib/macro.c:1354
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
 
-#: ../lib/messages.c:51
+#: lib/messages.c:55
 msgid "warning: "
 msgstr ""
 
-#: ../lib/messages.c:57
+#: lib/messages.c:64
 msgid "error: "
 msgstr ""
 
-#: ../lib/messages.c:63
+#: lib/messages.c:73
 msgid "fatal error: "
 msgstr ""
 
-#: ../lib/messages.c:70
+#: lib/messages.c:82
 msgid "internal error (rpm bug?): "
 msgstr ""
 
-#: ../lib/misc.c:342 ../lib/misc.c:348 ../lib/misc.c:355
+#: lib/misc.c:367 lib/misc.c:373 lib/misc.c:380
 #, c-format
 msgid "error creating temporary file %s"
 msgstr ""
 
-#: ../lib/oldheader.c:292
+#: lib/oldheader.c:299
 #, fuzzy, c-format
 msgid "bad file state: %s"
 msgstr "kan inte öppna: %s\n"
 
-#: ../lib/package.c:51
+#: lib/package.c:234
 msgid "package is a version one package!\n"
 msgstr ""
 
-#: ../lib/package.c:54
+#: lib/package.c:239
 msgid "old style source package -- I'll do my best\n"
 msgstr ""
 
-#: ../lib/package.c:57
+#: lib/package.c:242
 #, c-format
 msgid "archive offset is %d\n"
 msgstr ""
 
-#: ../lib/package.c:67
+#: lib/package.c:252
 msgid "old style binary package\n"
 msgstr ""
 
-#: ../lib/package.c:105
+#: lib/package.c:298
 msgid ""
 "only packages with major numbers <= 3 are supported by this version of RPM"
 msgstr ""
 
-#: ../lib/problems.c:29
+#: lib/problems.c:43
+#, c-format
+msgid " is needed by %s-%s-%s\n"
+msgstr ""
+
+#: lib/problems.c:46
+#, c-format
+msgid " conflicts with %s-%s-%s\n"
+msgstr ""
+
+#: lib/problems.c:66
 #, fuzzy, c-format
-msgid "package %s-%s-%s is for a different operating system"
+msgid "package %s-%s-%s is for a different architecture"
 msgstr "inga paket angivna för installation"
 
-#: ../lib/problems.c:34
+#: lib/problems.c:71
 #, fuzzy, c-format
-msgid "package %s-%s-%s is for a different architecture"
+msgid "package %s-%s-%s is for a different operating system"
 msgstr "inga paket angivna för installation"
 
-#: ../lib/problems.c:39
+#: lib/problems.c:76
 #, fuzzy, c-format
 msgid "package %s-%s-%s is already installed"
 msgstr "inga paket angivna för installation"
 
-#: ../lib/problems.c:44
+#: lib/problems.c:81
 #, fuzzy, c-format
 msgid "path %s is not relocateable for package %s-%s-%s"
 msgstr "inga paket angivna för installation"
 
-#: ../lib/problems.c:49
+#: lib/problems.c:86
 #, c-format
 msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
 msgstr ""
 
-#: ../lib/problems.c:55
+#: lib/problems.c:92
 #, c-format
 msgid ""
 "file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
 msgstr ""
 
-#: ../lib/problems.c:61
+#: lib/problems.c:98
 #, fuzzy, c-format
 msgid "package %s-%s-%s (which is newer then %s-%s-%s) is already installed"
 msgstr "inga paket angivna för installation"
 
-#: ../lib/problems.c:67
+#: lib/problems.c:104
 #, c-format
-msgid "installing package %s-%s-%s needs %ld%c on the %s filesystem"
+msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: ../lib/problems.c:77
+#: lib/problems.c:116
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
 
-#: ../lib/query.c:57
-#, fuzzy
-msgid "query package owning file"
-msgstr "        -f <fil>+         - undersök paket som äger <fil>"
+#: lib/query.c:138
+#, c-format
+msgid "error in format: %s\n"
+msgstr ""
 
-#: ../lib/query.c:59
-#, fuzzy
-msgid "query packages in group"
-msgstr "inga paket angivna för avinstallation"
+#: lib/query.c:180
+msgid "(contains no files)"
+msgstr ""
 
-#: ../lib/query.c:61
+#: lib/query.c:233
 #, fuzzy
-msgid "query a package file"
-msgstr "        -f <fil>+         - undersök paket som äger <fil>"
+msgid "normal        "
+msgstr "       -h"
 
-#: ../lib/query.c:65
-msgid "query a spec file"
-msgstr ""
-
-#: ../lib/query.c:67
-#, fuzzy
-msgid "query the pacakges triggered by the package"
-msgstr "        -f <fil>+         - undersök paket som äger <fil>"
-
-#: ../lib/query.c:69
-msgid "query the packages which require a capability"
-msgstr ""
-
-#: ../lib/query.c:71
-msgid "query the packages which provide a capability"
-msgstr ""
-
-#: ../lib/query.c:108
-#, fuzzy
-msgid "list all configuration files"
-msgstr ""
-"        -c                - visa enbart konfiguration filer (implicerar -l)"
-
-#: ../lib/query.c:110
-#, fuzzy
-msgid "list all documentation files"
-msgstr ""
-"        -d                - visa enbart dokumentation filer (implicerar -l)"
-
-#: ../lib/query.c:112
-#, fuzzy
-msgid "dump basic file information"
-msgstr "        -i                - visa paket information"
-
-#: ../lib/query.c:114
-#, fuzzy
-msgid "list files in package"
-msgstr "    --install <paketfil>"
-
-#: ../lib/query.c:118
-msgid "use the following query format"
-msgstr ""
-
-#: ../lib/query.c:120
-msgid "substitute i18n sections from the following catalogue"
-msgstr ""
-
-#: ../lib/query.c:123
-msgid "display the states of the listed files"
-msgstr ""
-
-#: ../lib/query.c:125
-#, fuzzy
-msgid "display a verbose file listing"
-msgstr "        -l                - visa paketets fil lista"
-
-#: ../lib/query.c:136
-#, c-format
-msgid "error in format: %s\n"
-msgstr ""
-
-#: ../lib/query.c:177
-msgid "(contains no files)"
-msgstr ""
-
-#: ../lib/query.c:230
-#, fuzzy
-msgid "normal        "
-msgstr "       -h"
-
-#: ../lib/query.c:232
+#: lib/query.c:235
 msgid "replaced      "
 msgstr ""
 
-#: ../lib/query.c:234
-msgid "net shared    "
-msgstr ""
-
-#: ../lib/query.c:236
+#: lib/query.c:237
 #, fuzzy
 msgid "not installed "
 msgstr "inga paket angivna för installation"
 
-#: ../lib/query.c:238
+#: lib/query.c:239
+msgid "net shared    "
+msgstr ""
+
+#: lib/query.c:241
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: ../lib/query.c:242
+#: lib/query.c:245
 msgid "(no state)    "
 msgstr ""
 
-#: ../lib/query.c:258 ../lib/query.c:288
+#: lib/query.c:261 lib/query.c:291
 msgid "package has neither file owner or id lists"
 msgstr ""
 
-#: ../lib/query.c:514
+#: lib/query.c:400
 #, c-format
 msgid "record number %u\n"
 msgstr ""
 
-#: ../lib/query.c:518
+#: lib/query.c:404
 msgid "error: could not read database record\n"
 msgstr ""
 
-#: ../lib/query.c:547
+#: lib/query.c:442
 #, fuzzy, c-format
-msgid "open of %s failed\n"
+msgid "open of %s failed: %s\n"
 msgstr "Tillverkningen misslyckades.\n"
 
-#: ../lib/query.c:560
+#: lib/query.c:455
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: ../lib/query.c:572
+#: lib/query.c:464 lib/rpminstall.c:203
+#, c-format
+msgid "%s does not appear to be a RPM package\n"
+msgstr ""
+
+#: lib/query.c:467
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: ../lib/query.c:593
+#: lib/query.c:494
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: ../lib/query.c:627
+#: lib/query.c:519
 msgid "could not read database record!\n"
 msgstr ""
 
-#: ../lib/query.c:638
+#: lib/query.c:530
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: ../lib/query.c:648
+#: lib/query.c:540
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: ../lib/query.c:658
+#: lib/query.c:550
 #, fuzzy, c-format
 msgid "no package triggers %s\n"
 msgstr "inga paket angivna för installation"
 
-#: ../lib/query.c:668
+#: lib/query.c:560
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: ../lib/query.c:683
+#: lib/query.c:575
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: ../lib/query.c:686
+#: lib/query.c:578
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: ../lib/query.c:699
+#: lib/query.c:591
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: ../lib/query.c:702
+#: lib/query.c:594
 #, c-format
 msgid "package record number: %d\n"
 msgstr ""
 
-#: ../lib/query.c:705
+#: lib/query.c:597
 #, c-format
 msgid "record %d could not be read\n"
 msgstr ""
 
-#: ../lib/query.c:720
+#: lib/query.c:609 lib/rpminstall.c:393
+#, fuzzy, c-format
+msgid "package %s is not installed\n"
+msgstr "inga paket angivna för installation"
+
+#: lib/query.c:612
 #, c-format
 msgid "error looking for package %s\n"
 msgstr ""
 
-#: ../lib/query.c:742
+#: lib/query.c:634
 msgid "rpmQuery: rpmdbOpen() failed\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:18
+#: lib/query.c:691
+#, fuzzy
+msgid "query package owning file"
+msgstr "        -f <fil>+         - undersök paket som äger <fil>"
+
+#: lib/query.c:693
+#, fuzzy
+msgid "query packages in group"
+msgstr "inga paket angivna för avinstallation"
+
+#: lib/query.c:695
+#, fuzzy
+msgid "query a package file"
+msgstr "        -f <fil>+         - undersök paket som äger <fil>"
+
+#: lib/query.c:699
+msgid "query a spec file"
+msgstr ""
+
+#: lib/query.c:701
+#, fuzzy
+msgid "query the pacakges triggered by the package"
+msgstr "        -f <fil>+         - undersök paket som äger <fil>"
+
+#: lib/query.c:703
+msgid "query the packages which require a capability"
+msgstr ""
+
+#: lib/query.c:705
+msgid "query the packages which provide a capability"
+msgstr ""
+
+#: lib/query.c:742
+#, fuzzy
+msgid "list all configuration files"
+msgstr ""
+"        -c                - visa enbart konfiguration filer (implicerar -l)"
+
+#: lib/query.c:744
+#, fuzzy
+msgid "list all documentation files"
+msgstr ""
+"        -d                - visa enbart dokumentation filer (implicerar -l)"
+
+#: lib/query.c:746
+#, fuzzy
+msgid "dump basic file information"
+msgstr "        -i                - visa paket information"
+
+#: lib/query.c:748
+#, fuzzy
+msgid "list files in package"
+msgstr "    --install <paketfil>"
+
+#: lib/query.c:752
+msgid "use the following query format"
+msgstr ""
+
+#: lib/query.c:754
+msgid "substitute i18n sections from the following catalogue"
+msgstr ""
+
+#: lib/query.c:757
+msgid "display the states of the listed files"
+msgstr ""
+
+#: lib/query.c:759
+#, fuzzy
+msgid "display a verbose file listing"
+msgstr "        -l                - visa paketets fil lista"
+
+#: lib/rebuilddb.c:20
 #, c-format
 msgid "rebuilding database in rootdir %s\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:22 ../lib/rpmdb.c:64 ../lib/rpmdb.c:82 ../lib/rpmdb.c:98
+#: lib/rebuilddb.c:24 lib/rpmdb.c:69 lib/rpmdb.c:88 lib/rpmdb.c:105
 msgid "no dbpath has been set"
 msgstr ""
 
-#: ../lib/rebuilddb.c:30
+#: lib/rebuilddb.c:33
 #, c-format
 msgid "temporary database %s already exists"
 msgstr ""
 
-#: ../lib/rebuilddb.c:34
+#: lib/rebuilddb.c:37
 #, c-format
 msgid "creating directory: %s\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:36
+#: lib/rebuilddb.c:39
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr ""
 
-#: ../lib/rebuilddb.c:44
+#: lib/rebuilddb.c:43
 msgid "opening old database\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:51
+#: lib/rebuilddb.c:50
 msgid "opening new database\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:61 ../lib/rebuilddb.c:79
+#: lib/rebuilddb.c:60 lib/rebuilddb.c:78
 #, c-format
 msgid "record number %d in database is bad -- skipping it"
 msgstr ""
 
-#: ../lib/rebuilddb.c:73
+#: lib/rebuilddb.c:72
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr ""
 
-#: ../lib/rebuilddb.c:92
+#: lib/rebuilddb.c:91
 msgid "failed to rebuild database; original database remains in place\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:100
+#: lib/rebuilddb.c:99
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:102
+#: lib/rebuilddb.c:101
 #, c-format
 msgid "replaces files in %s with files from %s to recover"
 msgstr ""
 
-#: ../lib/rebuilddb.c:108
+#: lib/rebuilddb.c:107
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "kan inte öppna: %s\n"
 
-#: ../lib/rpmdb.c:159
+#: lib/rpmchecksig.c:31
+#, fuzzy, c-format
+msgid "%s: fdOpen failed: %s\n"
+msgstr "kan inte öppna: %s\n"
+
+#: lib/rpmchecksig.c:42
+#, fuzzy
+msgid "makeTempFile failed\n"
+msgstr "Tillverkningen misslyckades.\n"
+
+#: lib/rpmchecksig.c:74
+#, c-format
+msgid "%s: fdWrite failed: %s\n"
+msgstr ""
+
+#: lib/rpmchecksig.c:80
+#, c-format
+msgid "%s: fdRead failed: %s\n"
+msgstr ""
+
+#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:242
+#, c-format
+msgid "%s: readLead failed\n"
+msgstr ""
+
+#: lib/rpmchecksig.c:118
+#, c-format
+msgid "%s: Can't sign v1.0 RPM\n"
+msgstr ""
+
+#: lib/rpmchecksig.c:122
+#, c-format
+msgid "%s: Can't re-sign v2.0 RPM\n"
+msgstr ""
+
+#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:256
+#, c-format
+msgid "%s: rpmReadSignature failed\n"
+msgstr ""
+
+#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:261
+#, c-format
+msgid "%s: No signature available\n"
+msgstr ""
+
+#: lib/rpmchecksig.c:167
+#, c-format
+msgid "%s: writeLead failed: %s\n"
+msgstr ""
+
+#: lib/rpmchecksig.c:173
+#, c-format
+msgid "%s: rpmWriteSignature failed\n"
+msgstr ""
+
+#: lib/rpmchecksig.c:248
+#, c-format
+msgid "%s: No signature available (v1.0 RPM)\n"
+msgstr ""
+
+#: lib/rpmchecksig.c:408
+msgid "NOT OK"
+msgstr ""
+
+#: lib/rpmchecksig.c:409 lib/rpmchecksig.c:423
+msgid " (MISSING KEYS:"
+msgstr ""
+
+#: lib/rpmchecksig.c:411 lib/rpmchecksig.c:425
+msgid ") "
+msgstr ""
+
+#: lib/rpmchecksig.c:412 lib/rpmchecksig.c:426
+msgid " (UNTRUSTED KEYS:"
+msgstr ""
+
+#: lib/rpmchecksig.c:414 lib/rpmchecksig.c:428
+msgid ")"
+msgstr ""
+
+#: lib/rpmchecksig.c:422
+msgid "OK"
+msgstr ""
+
+#: lib/rpmdb.c:184
 #, c-format
 msgid "opening database mode 0x%x in %s\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:182 ../lib/rpmdb.c:189
+#: lib/rpmdb.c:193 lib/url.c:431
+#, fuzzy, c-format
+msgid "failed to open %s\n"
+msgstr "kan inte öppna: %s\n"
+
+#: lib/rpmdb.c:206 lib/rpmdb.c:214
 #, c-format
 msgid "cannot get %s lock on database"
 msgstr ""
 
-#: ../lib/rpmdb.c:183
+#: lib/rpmdb.c:207
 msgid "exclusive"
 msgstr ""
 
-#: ../lib/rpmdb.c:190
+#: lib/rpmdb.c:215
 msgid "shared"
 msgstr ""
 
-#: ../lib/rpmdb.c:213
+#: lib/rpmdb.c:246
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
-#: ../lib/rpmdb.c:372
+#: lib/rpmdb.c:439
 #, c-format
 msgid "package %s not listed in %s"
 msgstr ""
 
-#: ../lib/rpmdb.c:383
+#: lib/rpmdb.c:450
 #, fuzzy, c-format
 msgid "package %s not found in %s"
 msgstr "inga paket angivna för avinstallation"
 
-#: ../lib/rpmdb.c:407 ../lib/uninstall.c:40
+#: lib/rpmdb.c:475 lib/uninstall.c:85
 #, fuzzy, c-format
 msgid "cannot read header at %d for uninstall"
 msgstr "inga paket angivna för avinstallation"
 
-#: ../lib/rpmdb.c:415
+#: lib/rpmdb.c:483
 msgid "package has no name"
 msgstr ""
 
-#: ../lib/rpmdb.c:417
+#: lib/rpmdb.c:485
 msgid "removing name index\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:422
+#: lib/rpmdb.c:490
 #, fuzzy
 msgid "package has no group\n"
 msgstr "inga paket angivna för avinstallation"
 
-#: ../lib/rpmdb.c:424
+#: lib/rpmdb.c:492
 msgid "removing group index\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:431
+#: lib/rpmdb.c:499
 #, c-format
 msgid "removing provides index for %s\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:446
+#: lib/rpmdb.c:514
 #, c-format
 msgid "removing requiredby index for %s\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:458
+#: lib/rpmdb.c:526
 #, c-format
 msgid "removing trigger index for %s\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:469
+#: lib/rpmdb.c:537
 #, c-format
 msgid "removing conflict index for %s\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:486
+#: lib/rpmdb.c:554
 #, c-format
 msgid "removing file index for %s\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:495
+#: lib/rpmdb.c:563
 #, fuzzy
 msgid "package has no files\n"
 msgstr "inga paket angivna för installation"
 
-#: ../lib/rpmdb.c:568
+#: lib/rpmdb.c:645
 msgid "cannot allocate space for database"
 msgstr ""
 
-#: ../lib/rpmdb.c:639
+#: lib/rpmdb.c:711
 #, c-format
 msgid "cannot read header at %d for update"
 msgstr ""
 
-#: ../lib/rpmdb.c:648
+#: lib/rpmdb.c:720
 msgid "header changed size!"
 msgstr ""
 
-#: ../lib/rpmlead.c:41
+#: lib/rpminstall.c:128
+#, fuzzy
+msgid "counting packages to install\n"
+msgstr "inga paket angivna för installation"
+
+#: lib/rpminstall.c:132
+#, c-format
+msgid "found %d packages\n"
+msgstr ""
+
+#: lib/rpminstall.c:141
+msgid "looking for packages to download\n"
+msgstr ""
+
+#: lib/rpminstall.c:152
+#, fuzzy, c-format
+msgid "Retrieving %s\n"
+msgstr "RPM version %s\n"
+
+#: lib/rpminstall.c:161
+#, c-format
+msgid " ... as %s\n"
+msgstr ""
+
+#: lib/rpminstall.c:165
+#, c-format
+msgid "skipping %s - transfer failed - %s\n"
+msgstr ""
+
+#: lib/rpminstall.c:182
+#, c-format
+msgid "retrieved %d packages\n"
+msgstr ""
+
+#: lib/rpminstall.c:191 lib/rpminstall.c:332
+#, fuzzy, c-format
+msgid "cannot open file %s\n"
+msgstr "kan inte öppna: %s\n"
+
+#: lib/rpminstall.c:207 lib/rpminstall.c:469
+#, fuzzy, c-format
+msgid "%s cannot be installed\n"
+msgstr "inga paket angivna för installation"
+
+#: lib/rpminstall.c:243
+#, fuzzy, c-format
+msgid "package %s is not relocateable\n"
+msgstr "inga paket angivna för installation"
+
+#: lib/rpminstall.c:261
+#, c-format
+msgid "error reading from file %s\n"
+msgstr ""
+
+#: lib/rpminstall.c:266
+#, c-format
+msgid "file %s requires a newer version of RPM\n"
+msgstr ""
+
+#: lib/rpminstall.c:283
+#, c-format
+msgid "found %d source and %d binary packages\n"
+msgstr ""
+
+#: lib/rpminstall.c:294
+msgid "failed dependencies:\n"
+msgstr ""
+
+#: lib/rpminstall.c:312
+#, fuzzy
+msgid "installing binary packages\n"
+msgstr "    --install <paketfil>"
+
+#: lib/rpminstall.c:397
+#, fuzzy, c-format
+msgid "searching for package %s\n"
+msgstr "    --install <paketfil>"
+
+#: lib/rpminstall.c:406
+#, c-format
+msgid "\"%s\" specifies multiple packages\n"
+msgstr ""
+
+#: lib/rpminstall.c:432
+msgid "removing these packages would break dependencies:\n"
+msgstr ""
+
+#: lib/rpminstall.c:459
+#, fuzzy, c-format
+msgid "cannot open %s\n"
+msgstr "kan inte öppna: %s\n"
+
+#: lib/rpminstall.c:464
+#, c-format
+msgid "Installing %s\n"
+msgstr ""
+
+#: lib/rpmlead.c:48
 #, c-format
 msgid "read failed: %s (%d)"
 msgstr ""
 
-#: ../lib/rpmrc.c:178
+#: lib/rpmrc.c:177
 #, c-format
 msgid "missing second ':' at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:181
+#: lib/rpmrc.c:180
 #, c-format
 msgid "missing architecture name at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:329
+#: lib/rpmrc.c:328
 #, c-format
 msgid "Incomplete data line at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:333
+#: lib/rpmrc.c:332
 #, c-format
 msgid "Too many args in data line at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:340
+#: lib/rpmrc.c:339
 #, c-format
 msgid "Bad arch/os number: %s (%s:%d)"
 msgstr ""
 
-#: ../lib/rpmrc.c:374
+#: lib/rpmrc.c:373
 #, c-format
 msgid "Incomplete default line at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:379
+#: lib/rpmrc.c:378
 #, c-format
 msgid "Too many args in default line at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:562
+#: lib/rpmrc.c:561
 #, c-format
 msgid "Cannot expand %s"
 msgstr ""
 
-#: ../lib/rpmrc.c:577
+#: lib/rpmrc.c:576
 #, fuzzy, c-format
 msgid "Unable to open %s for reading: %s."
 msgstr "kan inte öppna: %s\n"
 
-#: ../lib/rpmrc.c:611
+#: lib/rpmrc.c:608
 #, c-format
 msgid "Failed to read %s: %s."
 msgstr ""
 
-#: ../lib/rpmrc.c:642
+#: lib/rpmrc.c:638
 #, c-format
 msgid "missing ':' at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:658 ../lib/rpmrc.c:716
+#: lib/rpmrc.c:655 lib/rpmrc.c:729
 #, c-format
 msgid "missing argument for %s at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:672 ../lib/rpmrc.c:690
+#: lib/rpmrc.c:672 lib/rpmrc.c:694
 #, fuzzy, c-format
 msgid "%s expansion failed at %s:%d \"%s\""
 msgstr "kan inte öppna: %s\n"
 
-#: ../lib/rpmrc.c:678
+#: lib/rpmrc.c:680
 #, c-format
 msgid "cannot open %s at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:706
+#: lib/rpmrc.c:721
 #, c-format
 msgid "missing architecture for %s at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:773
+#: lib/rpmrc.c:788
 #, c-format
 msgid "bad option '%s' at %s:%d"
 msgstr ""
 
-#: ../lib/rpmrc.c:1109
+#: lib/rpmrc.c:1147
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: ../lib/rpmrc.c:1110
+#: lib/rpmrc.c:1148
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: ../lib/signature.c:147
+#: lib/signature.c:106
+#, c-format
+msgid "sigsize         : %d\n"
+msgstr ""
+
+#: lib/signature.c:107
+#, c-format
+msgid "Header + Archive: %d\n"
+msgstr ""
+
+#: lib/signature.c:108
+#, c-format
+msgid "expected size   : %d\n"
+msgstr ""
+
+#: lib/signature.c:112
+msgid "file is not regular -- skipping size check\n"
+msgstr ""
+
+#: lib/signature.c:134
 msgid "No signature\n"
 msgstr ""
 
-#: ../lib/signature.c:150
+#: lib/signature.c:137
 #, fuzzy
 msgid "Old PGP signature\n"
 msgstr "      --sign            - tillverka en PGP signatur"
 
-#: ../lib/signature.c:163
+#: lib/signature.c:149
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr ""
 
-#: ../lib/signature.c:167
+#: lib/signature.c:153
 #, fuzzy
 msgid "New Header signature\n"
 msgstr "      --sign            - tillverka en PGP signatur"
 
 #. 8-byte pad
-#: ../lib/signature.c:175 ../lib/signature.c:213
+#: lib/signature.c:160 lib/signature.c:202
 #, c-format
 msgid "Signature size: %d\n"
 msgstr ""
 
-#: ../lib/signature.c:176 ../lib/signature.c:214
+#: lib/signature.c:161 lib/signature.c:203
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr ""
 
-#: ../lib/signature.c:306 ../lib/signature.c:812
-msgid "Couldn't exec pgp"
+#: lib/signature.c:266
+#, c-format
+msgid "Couldn't exec pgp (%s)"
 msgstr ""
 
-#: ../lib/signature.c:317
+#: lib/signature.c:277
 msgid "pgp failed"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: ../lib/signature.c:324
+#: lib/signature.c:284
 msgid "pgp failed to write signature"
 msgstr ""
 
-#: ../lib/signature.c:329
+#: lib/signature.c:289
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: ../lib/signature.c:340 ../lib/signature.c:416
+#: lib/signature.c:300 lib/signature.c:377
 msgid "unable to read the signature"
 msgstr ""
 
-#: ../lib/signature.c:345
+#: lib/signature.c:305
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: ../lib/signature.c:382 ../lib/signature.c:787
+#: lib/signature.c:343 lib/signature.c:686
 msgid "Couldn't exec gpg"
 msgstr ""
 
-#: ../lib/signature.c:393
+#: lib/signature.c:354
 #, fuzzy
 msgid "gpg failed"
 msgstr "Tillverkningen misslyckades.\n"
 
 #. GPG failed to write signature
 #. Just in case
-#: ../lib/signature.c:400
+#: lib/signature.c:361
 #, fuzzy
 msgid "gpg failed to write signature"
 msgstr "kan inte öppna: %s\n"
 
-#: ../lib/signature.c:405
+#: lib/signature.c:366
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: ../lib/signature.c:421
+#: lib/signature.c:382
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
-#: ../lib/signature.c:436
-#, c-format
-msgid "sigsize         : %d\n"
-msgstr ""
+#: lib/signature.c:409
+#, fuzzy
+msgid "Generating signature using PGP.\n"
+msgstr "      --sign            - tillverka en PGP signatur"
 
-#: ../lib/signature.c:437
-#, c-format
-msgid "Header + Archive: %d\n"
-msgstr ""
+#: lib/signature.c:415
+#, fuzzy
+msgid "Generating signature using GPG.\n"
+msgstr "      --sign            - tillverka en PGP signatur"
 
-#: ../lib/signature.c:438
-#, c-format
-msgid "expected size   : %d\n"
+#: lib/signature.c:492 lib/signature.c:554
+msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr ""
 
-#: ../lib/signature.c:442
-msgid "file is not regular -- skipping size check\n"
+#: lib/signature.c:552 lib/signature.c:625
+msgid "exec failed!\n"
 msgstr ""
 
-#: ../lib/signature.c:560 ../lib/signature.c:607
-msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
+#: lib/signature.c:627
+msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr ""
 
-#: ../lib/signature.c:605 ../lib/signature.c:677
-msgid "exec failed!\n"
+#: lib/signature.c:715
+msgid "Couldn't exec pgp"
 msgstr ""
 
-#: ../lib/signature.c:679
-msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
+#. @notreached@
+#. This case should have been screened out long ago.
+#: lib/signature.c:719 lib/signature.c:772
+msgid "Invalid %%_signature spec in macro file"
 msgstr ""
 
-#: ../lib/signature.c:716
+#: lib/signature.c:752
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr ""
 
-#: ../lib/signature.c:728
+#: lib/signature.c:764
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
-#. Currently the calling function (rpm.c:main) is checking this and
-#. * doing a better job.  This section should never be accessed.
-#.
-#: ../lib/signature.c:736 ../lib/signature.c:816
-msgid "Invalid %%_signature spec in macro file"
-msgstr ""
-
-#: ../lib/transaction.c:793
+#: lib/transaction.c:363
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: ../lib/transaction.c:799
+#: lib/transaction.c:370
 #, fuzzy, c-format
 msgid "excluding %s\n"
 msgstr "RPM version %s\n"
 
-#: ../lib/transaction.c:887
+#: lib/transaction.c:489
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: ../lib/uninstall.c:51
+#: lib/uninstall.c:37
+#, c-format
+msgid "cannot remove %s - directory not empty"
+msgstr ""
+
+#: lib/uninstall.c:40
+#, c-format
+msgid "rmdir of %s failed: %s"
+msgstr ""
+
+#: lib/uninstall.c:48
+#, c-format
+msgid "removal of %s failed: %s"
+msgstr ""
+
+#: lib/uninstall.c:97
 #, fuzzy, c-format
 msgid "cannot read packages named %s for uninstall"
 msgstr "inga paket angivna för avinstallation"
 
-#: ../lib/uninstall.c:79
+#: lib/uninstall.c:130
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: ../lib/uninstall.c:124
+#: lib/uninstall.c:191
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: ../lib/uninstall.c:138
+#: lib/uninstall.c:204
 msgid "removing database entry\n"
 msgstr ""
 
-#: ../lib/uninstall.c:289
+#: lib/uninstall.c:365
 msgid "execution of script failed"
 msgstr ""
 
-#: ../lib/uninstall.c:348
+#: lib/url.c:144
 #, c-format
-msgid "cannot remove %s - directory not empty"
+msgid "Password for %s@%s: "
 msgstr ""
 
-#: ../lib/uninstall.c:351
+#: lib/url.c:168 lib/url.c:194
 #, c-format
-msgid "rmdir of %s failed: %s"
+msgid "error: %sport must be a number\n"
 msgstr ""
 
-#: ../lib/uninstall.c:359
+#: lib/url.c:279
+msgid "url port must be a number\n"
+msgstr ""
+
+#. XXX PARANOIA
+#: lib/url.c:317
 #, c-format
-msgid "removal of %s failed: %s"
+msgid "logging into %s as %s, pw %s\n"
 msgstr ""
 
-#: ../lib/verify.c:36
+#: lib/url.c:446
+#, fuzzy, c-format
+msgid "failed to create %s\n"
+msgstr "kan inte öppna: %s\n"
+
+#: lib/verify.c:36
 #, fuzzy
 msgid "don't verify files in package"
 msgstr "    --install <paketfil>"
 
-#: ../lib/verify.c:206
+#: lib/verify.c:206
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 
-#: ../lib/verify.c:224
+#: lib/verify.c:224
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: ../lib/verify.c:257
+#: lib/verify.c:257
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: ../lib/verify.c:321
+#: lib/verify.c:319
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: ../lib/verify.c:369
+#: lib/verify.c:367
 msgid "rpmVerify: rpmdbOpen() failed\n"
 msgstr ""
 
 #, fuzzy
+#~ msgid "Unable to write %s"
+#~ msgstr "kan inte öppna: %s\n"
+
+#~ msgid "unexpected query specifiers"
+#~ msgstr "oväntade undersöknings parameterar"
+
+#, fuzzy
+#~ msgid "--nofiles may only be specified during package verification"
+#~ msgstr "--replacefiles kan enbart användas vid paket installation"
+
+#, fuzzy
+#~ msgid "--clean may only be used with -b and -t"
+#~ msgstr "--clean kan enbart användas vid paket tillverkning"
+
+#, fuzzy
+#~ msgid "--rmsource may only be used with -b and -t"
+#~ msgstr "--oldpackage kan enbart användas vid paket uppgraderingar"
+
+#, fuzzy
+#~ msgid "--short-circuit may only be used during package building"
+#~ msgstr "--sign kan enbart användas vid paket tillverkning"
+
+#, fuzzy
+#~ msgid "pgp version 5 not found: "
+#~ msgstr "inga paket angivna för avinstallation"
+
+#, fuzzy
 #~ msgid "--prefix is broke, use --relocate /oldpath=/newpath instead"
 #~ msgstr "                        [--root <dir>] [targets]"
 
index 0f1d538..e32d933 100644 (file)
--- a/po/tr.po
+++ b/po/tr.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 1999-05-11 12:17-0400\n"
+"POT-Creation-Date: 1999-09-29 19:30-0400\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"
@@ -14,430 +14,166 @@ msgstr ""
 "Content-Type: text/plain; charset=CHARSET\n"
 "Content-Transfer-Encoding: ENCODING\n"
 
-#: ../build.c:24 ../install.c:221 ../install.c:377
+#: build.c:23 lib/rpminstall.c:222 lib/rpminstall.c:382
 #, fuzzy, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr "hata: %s%s/packages.rpm açýlamýyor\n"
 
-#: ../build.c:34
+#: build.c:33
 #, fuzzy
-msgid "failed build prerequisites:\n"
+msgid "failed build dependencies:\n"
 msgstr "baðýmlýlýk hatasý, aþaðýdaki paketlere ihtiyacýnýz var:\n"
 
+#: build.c:61
+#, fuzzy, c-format
+msgid "Unable to open spec file: %s\n"
+msgstr "%s okuma eriþimi için açýlamadý:%s."
+
 # , c-format
-#: ../build.c:83 ../build.c:96
+#: build.c:117 build.c:130
 #, fuzzy, c-format
 msgid "Failed to open tar pipe: %s\n"
 msgstr "%s 'ye eriþimde hata oluþtu\n"
 
 #. Give up
-#: ../build.c:104
+#: build.c:138
 #, fuzzy, c-format
 msgid "Failed to read spec file from %s\n"
 msgstr "%s okunamadý: %s"
 
-#: ../build.c:129
+#: build.c:163
 #, fuzzy, c-format
 msgid "Failed to rename %s to %s: %s\n"
 msgstr "%s okunamadý: %s"
 
-#: ../build.c:167
+#: build.c:201
 #, c-format
 msgid "File is not a regular file: %s\n"
 msgstr ""
 
-#: ../build.c:172
+#: build.c:207
 #, fuzzy, c-format
-msgid "Unable to open spec file: %s\n"
-msgstr "%s okuma eriþimi için açýlamadý:%s."
-
-#: ../build.c:180
-#, c-format
-msgid "File contains non-printable characters(%c): %s\n"
-msgstr ""
+msgid "File %s does not appear to be a specfile.\n"
+msgstr "%s bir RPM paketi deðil (gibi)\n"
 
 #. parse up the build operators
-#: ../build.c:233
+#: build.c:258
 #, c-format
 msgid "Building target platforms: %s\n"
 msgstr ""
 
-#: ../build.c:242
+#: build.c:267
 #, fuzzy, c-format
 msgid "Building for target %s\n"
 msgstr "%s paketi bulunamadý\n"
 
-#: ../build.c:286
+#: build.c:311
 msgid "buildroot already specified"
 msgstr ""
 
-#: ../build.c:292
+#: build.c:317
 msgid "--buildarch has been obsoleted.  Use the --target option instead.\n"
 msgstr ""
 
-#: ../build.c:296
+#: build.c:321
 msgid "--buildos has been obsoleted.  Use the --target option instead.\n"
 msgstr ""
 
-#: ../build.c:317
+#: build.c:342
 #, fuzzy
 msgid "override build architecture"
 msgstr "paket mimarisini doðrulamaz"
 
-#: ../build.c:319
+#: build.c:344
 #, fuzzy
 msgid "override build operating system"
 msgstr "paketin ait olduðu iþletim sistemini doðrulamaz"
 
-#: ../build.c:321
+#: build.c:346
 #, fuzzy
 msgid "override build root"
 msgstr "paket yaratýlýrken <dizin> baþlangýç dizini olarak kullanýlýr"
 
-#: ../build.c:323 ../rpm.c:458
+#: build.c:348 rpm.c:457
 msgid "remove build tree when done"
 msgstr "iþlem sonunda paket yaratma yapýsýný siler"
 
-#: ../build.c:325
+#: build.c:350
 #, fuzzy
 msgid "do not execute any stages of the build"
 msgstr "adýmlarýn hiçbirini çalýþtýrmaz"
 
-#: ../build.c:327
+#: build.c:352
 msgid "do not accept I18N msgstr's from specfile"
 msgstr ""
 
-#: ../build.c:329
+#: build.c:354
 #, fuzzy
 msgid "remove sources when done"
 msgstr "iþlem sonunda kaynaklarý ve spec dosyasýný siler"
 
-#: ../build.c:331
+#: build.c:356
 #, fuzzy
 msgid "remove specfile when done"
 msgstr "iþlem sonunda kaynaklarý ve spec dosyasýný siler"
 
-#: ../build.c:333 ../rpm.c:456
+#: build.c:358 rpm.c:455
 msgid "skip straight to specified stage (only for c,i)"
 msgstr "doðrudan belirtilen adýma atlar (sadece c ve i için)"
 
-#: ../build.c:335
+#: build.c:360
 msgid "override target platform"
 msgstr ""
 
-#: ../build.c:337
+#: build.c:362
 msgid "lookup I18N strings in specfile catalog"
 msgstr ""
 
-#: ../checksig.c:27 ../checksig.c:166
-#, c-format
-msgid "%s: Open failed\n"
-msgstr "%s: Eriþilemedi\n"
-
-#: ../checksig.c:31 ../checksig.c:171
-#, c-format
-msgid "%s: readLead failed\n"
-msgstr "%s: 'readLead' hata verdi\n"
-
-#: ../checksig.c:35
-#, c-format
-msgid "%s: Can't sign v1.0 RPM\n"
-msgstr "%s: v1.0-RPM (eski sürüm) imzalanamýyor\n"
-
-#: ../checksig.c:39
-#, c-format
-msgid "%s: Can't re-sign v2.0 RPM\n"
-msgstr "%s: v2.0-RPM (eski sürüm) yeniden imzalanamýyor\n"
-
-#: ../checksig.c:43 ../checksig.c:181
-#, c-format
-msgid "%s: rpmReadSignature failed\n"
-msgstr "%s: 'rpmReadSignature' hata verdi\n"
-
-#: ../checksig.c:56 ../checksig.c:195
-msgid "Couldn't read the header/archive"
-msgstr "'header/archive' okunamadý"
-
-#: ../checksig.c:63
-msgid "Couldn't write header/archive to temp file"
-msgstr "'header/archive' geçici bir dosyaya yazýlamadý"
-
-#: ../build/pack.c:330 ../checksig.c:91
-#, fuzzy, c-format
-msgid "Generating signature: %d\n"
-msgstr "PGP-imzasý yaratýr"
-
-#: ../checksig.c:114
-msgid "Couldn't read sigtarget"
-msgstr "Ýmza hedefi 'sigtarget' okunamadý"
-
-#: ../checksig.c:123
-msgid "Couldn't write package"
-msgstr "Paket yazýlamadý"
-
-#: ../checksig.c:176
-#, c-format
-msgid "%s: No signature available (v1.0 RPM)\n"
-msgstr "%s: Ýmza bulundurmuyor (v1.0 RPM)\n"
-
-#: ../checksig.c:186
-#, c-format
-msgid "%s: No signature available\n"
-msgstr "%s: Ýmza bulunmuyor\n"
-
-#: ../checksig.c:202
-#, c-format
-msgid "Unable to write %s"
-msgstr "%s 'nin yazýlmasý mümkün deðil"
-
-#: ../checksig.c:328
-msgid "NOT OK"
-msgstr ""
-
-#: ../checksig.c:329 ../checksig.c:343
-#, fuzzy
-msgid " (MISSING KEYS:"
-msgstr " (EKSÝK ANAHTARLAR)"
-
-#: ../checksig.c:331 ../checksig.c:345
-msgid ") "
-msgstr ""
-
-#: ../checksig.c:332 ../checksig.c:346
-msgid " (UNTRUSTED KEYS:"
-msgstr ""
-
-#: ../checksig.c:334 ../checksig.c:348
-msgid ")"
-msgstr ""
-
-#: ../checksig.c:342
-msgid "OK"
-msgstr ""
-
-#: ../convertdb.c:38
+#: convertdb.c:39
 #, fuzzy
 msgid "RPM database already exists"
 msgstr "geçici veritabaný %s mevcut"
 
-#: ../convertdb.c:43
+#: convertdb.c:44
 msgid "Old db is missing"
 msgstr ""
 
-#: ../convertdb.c:54
+#: convertdb.c:55
 msgid "failed to create RPM database /var/lib/rpm"
 msgstr ""
 
-#: ../convertdb.c:60
+#: convertdb.c:61
 msgid "Old db is corrupt"
 msgstr ""
 
-#: ../convertdb.c:69
+#: convertdb.c:70
 #, c-format
 msgid "oldrpmdbGetPackageInfo failed &olddb = %p olddb.packages = %p\n"
 msgstr ""
 
-#: ../convertdb.c:201
+#: convertdb.c:204
 msgid "rpmconvert: no arguments expected"
 msgstr ""
 
-#: ../convertdb.c:207
+#: convertdb.c:210
 msgid "rpmconvert 1.0 - converting database in /var/lib/rpm\n"
 msgstr ""
 
-#: ../ftp.c:642
-msgid "Success"
-msgstr ""
-
-#: ../ftp.c:645
-#, fuzzy
-msgid "Bad server response"
-msgstr "FTP sunucusundan kötü yanýt"
-
-#: ../ftp.c:648
-#, fuzzy
-msgid "Server IO error"
-msgstr "FTP I/O hatasý"
-
-#: ../ftp.c:651
-#, fuzzy
-msgid "Server timeout"
-msgstr "FTP sunucusu zaman aþýmý"
-
-#: ../ftp.c:654
-#, fuzzy
-msgid "Unable to lookup server host address"
-msgstr "FTP sunucusunun isim adres dönüþümü yapýlamadý"
-
-#: ../ftp.c:657
-#, fuzzy
-msgid "Unable to lookup server host name"
-msgstr "FTP sunucusunun adres isim dönüþümü yapýlamadý"
-
-#: ../ftp.c:660
-#, fuzzy
-msgid "Failed to connect to server"
-msgstr "FTP sunucusuna baðlanýlamadý"
-
-#: ../ftp.c:663
-#, fuzzy
-msgid "Failed to establish data connection to server"
-msgstr "FTP sunucusu ile veri alýþveriþi yapýlamadý"
-
-#: ../ftp.c:666
-msgid "IO error to local file"
-msgstr "Yerel dosyaya eriþim sýrasýnda I/O hatasý"
-
-#: ../ftp.c:669
-msgid "Error setting remote server to passive mode"
-msgstr "Karþý sunucuyu pasif kipe sokam hatasý"
-
-#: ../ftp.c:672
-msgid "File not found on server"
-msgstr "Dosya sunucuda bulunamadý"
-
-#: ../ftp.c:675
-msgid "Abort in progress"
-msgstr ""
-
-#: ../ftp.c:679
-#, fuzzy
-msgid "Unknown or unexpected error"
-msgstr "FTP bilinmeyen ya da beklenmeyen hata"
-
-#: ../install.c:127
-#, fuzzy
-msgid "counting packages to install\n"
-msgstr "yüklenecek paketler belirtilmedi"
-
-#: ../install.c:131
-#, fuzzy, c-format
-msgid "found %d packages\n"
-msgstr "Tüm paketleri sorgulama"
-
-#: ../install.c:140
-#, fuzzy
-msgid "looking for packages to download\n"
-msgstr "%s pakedi aranýrken hata oluþtu\n"
-
-#: ../install.c:151
-#, c-format
-msgid "Retrieving %s\n"
-msgstr "%s alýnýyor\n"
-
-#: ../install.c:160
-#, c-format
-msgid " ... as %s\n"
-msgstr ""
-
-#: ../install.c:164
-#, fuzzy, c-format
-msgid "skipping %s - transfer failed - %s\n"
-msgstr "hata: %s atlanýyor - aktarým baþarýsýz - %s\n"
-
-#: ../install.c:181
-#, c-format
-msgid "retrieved %d packages\n"
-msgstr ""
-
-#: ../install.c:190 ../install.c:327
-#, fuzzy, c-format
-msgid "cannot open file %s\n"
-msgstr "%s dosyasý açýlamýyor: "
-
-#: ../install.c:202 ../lib/query.c:569
-#, c-format
-msgid "%s does not appear to be a RPM package\n"
-msgstr "%s bir RPM paketi deðil (gibi)\n"
-
-#: ../install.c:206 ../install.c:464
-#, fuzzy, c-format
-msgid "%s cannot be installed\n"
-msgstr "hata: %s yüklenemedi\n"
-
-#: ../install.c:242
-#, fuzzy, c-format
-msgid "package %s is not relocateable\n"
-msgstr "%s pakedi yüklenmemiþ\n"
-
-#: ../install.c:254
-#, fuzzy, c-format
-msgid "error reading from file %s\n"
-msgstr "%s dizinin oluþturulmasýnda hata: %s"
-
-#: ../install.c:257
-#, c-format
-msgid "file %s requires a newer version of RPM\n"
-msgstr ""
-
-#: ../install.c:272
-#, fuzzy, c-format
-msgid "found %d source and %d binary packages\n"
-msgstr "%s grubu hiç paket içermiyor\n"
-
-#: ../install.c:282
-msgid "failed dependencies:\n"
-msgstr "baðýmlýlýk hatasý, aþaðýdaki paketlere ihtiyacýnýz var:\n"
-
-#: ../install.c:300
-#, fuzzy
-msgid "installing binary packages\n"
-msgstr "paket yüklemek"
-
-#: ../install.c:388 ../lib/query.c:717
-#, c-format
-msgid "package %s is not installed\n"
-msgstr "%s pakedi yüklenmemiþ\n"
-
-#: ../install.c:392
-#, fuzzy, c-format
-msgid "searching for package %s\n"
-msgstr "%s paketi bulunamadý\n"
-
-#: ../install.c:401
-#, c-format
-msgid "\"%s\" specifies multiple packages\n"
-msgstr "\"%s\" birden fazla paketi tanýmlýyor\n"
-
-#: ../install.c:427
-msgid "removing these packages would break dependencies:\n"
-msgstr "bu paketin silinmesi aþaðýdaki baðýmlýlýklarý etkileyecektir:\n"
-
-#: ../install.c:454
-#, fuzzy, c-format
-msgid "cannot open %s\n"
-msgstr "hata: %s eriþilemiyor\n"
-
-#: ../install.c:459
-#, c-format
-msgid "Installing %s\n"
-msgstr "%s yükleniyor\n"
-
-#: ../install.c:503
-#, c-format
-msgid " is needed by %s-%s-%s\n"
-msgstr ", %s-%s-%s tarafýndan kullanýlýyor\n"
-
-#: ../install.c:506
-#, c-format
-msgid " conflicts with %s-%s-%s\n"
-msgstr ", %s-%s-%s ile çeliþiyor\n"
-
-#: ../oldrpmdb.c:454
+#: oldrpmdb.c:454
 #, c-format
 msgid "pulling %s from database\n"
 msgstr ""
 
-#: ../oldrpmdb.c:461
+#: oldrpmdb.c:461
 #, fuzzy
 msgid "package not found in database"
 msgstr "%s pakedi %s içerisinde bulunamadý"
 
-#: ../oldrpmdb.c:522
+#: oldrpmdb.c:522
 msgid "no copyright!\n"
 msgstr ""
 
-#: ../rpm.c:160
+#: rpm.c:159
 #, c-format
 msgid "rpm: %s\n"
 msgstr ""
@@ -455,143 +191,142 @@ msgstr ""
 # May 5, 1998 
 #
 # , c-format
-#: ../rpm.c:171
+#: rpm.c:170
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM Sürüm %s\n"
 
-#: ../rpm.c:175
+#: rpm.c:174
 msgid "Copyright (C) 1998 - Red Hat Software"
 msgstr "Copyright (C) 1998 - Red Hat Software"
 
-#: ../rpm.c:176
-msgid ""
-"This may be freely redistributed under the terms of the GNU GPL"
+#: rpm.c:175
+msgid "This may be freely redistributed under the terms of the GNU GPL"
 msgstr "Bu ðrogram GNU GPL uyarýnca serbestçe daðýtýlabilir."
 
-#: ../rpm.c:185
+#: rpm.c:183
 msgid "usage: rpm {--help}"
 msgstr "Kullaným: rpm {--help}"
 
-#: ../rpm.c:186
+#: rpm.c:184
 msgid "       rpm {--version}"
 msgstr "       rpm {--version}"
 
-#: ../rpm.c:187
+#: rpm.c:185
 msgid "       rpm {--initdb}   [--dbpath <dir>]"
 msgstr "       rpm {--initdb}   [--dbpath <dizin>]"
 
-#: ../rpm.c:188
+#: rpm.c:186
 msgid ""
 "       rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 "       rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
 
-#: ../rpm.c:189
+#: rpm.c:187
 msgid "                        [--replacepkgs] [--replacefiles] [--root <dir>]"
 msgstr ""
 "                        [--replacepkgs] [--replacefiles] [--root <dizin>]"
 
-#: ../rpm.c:190
+#: rpm.c:188
 msgid "                        [--excludedocs] [--includedocs] [--noscripts]"
 msgstr "                        [--excludedocs] [--includedocs] [--noscripts]"
 
-#: ../rpm.c:191
+#: rpm.c:189
 msgid ""
 "                        [--rcfile <file>] [--ignorearch] [--dbpath <dir>]"
 msgstr ""
 "                        [--rcfile <dosya>] [--ignorearch] [--dbpath <dizin>]"
 
-#: ../rpm.c:192
+#: rpm.c:190
 msgid ""
 "                        [--prefix <dir>] [--ignoreos] [--nodeps] [--allfiles]"
 msgstr ""
 "                        [--prefix <dizin>] [--ignoreos] [--nodeps] "
 "[--allfiles]"
 
-#: ../rpm.c:193
+#: rpm.c:191
 msgid ""
 "                        [--ftpproxy <host>] [--ftpport <port>] [--justdb]"
 msgstr ""
 "                        [--ftpproxy <sunucu>] [--ftpport <port>] [--justdb]"
 
-#: ../rpm.c:194 ../rpm.c:203 ../rpm.c:212
+#: rpm.c:192 rpm.c:201 rpm.c:210
 #, fuzzy
 msgid "                        [--httpproxy <host>] [--httpport <port>] "
 msgstr "                        [--ftpproxy <sunucu>] [--ftpport <port>]"
 
-#: ../rpm.c:195 ../rpm.c:205
+#: rpm.c:193 rpm.c:203
 msgid "                        [--noorder] [--relocate oldpath=newpath]"
 msgstr "                        [--noorder] [--relocate eskidizin=yenidizin]"
 
-#: ../rpm.c:196
+#: rpm.c:194
 #, fuzzy
 msgid ""
 "                        [--badreloc] [--notriggers] [--excludepath <path>]"
 msgstr "                        [--badreloc] dosya1.rpm ... dosyaN.rpm"
 
-#: ../rpm.c:197
+#: rpm.c:195
 #, fuzzy
 msgid "                        [--ignoresize] file1.rpm ... fileN.rpm"
 msgstr "                        [--badreloc] dosya1.rpm ... dosyaN.rpm"
 
-#: ../rpm.c:198
+#: rpm.c:196
 msgid ""
 "       rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 "       rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]"
 
-#: ../rpm.c:199
+#: rpm.c:197
 msgid "                        [--oldpackage] [--root <dir>] [--noscripts]"
 msgstr "                        [--oldpackage] [--root <dizin>] [--noscripts]"
 
-#: ../rpm.c:200
+#: rpm.c:198
 msgid ""
 "                        [--excludedocs] [--includedocs] [--rcfile <file>]"
 msgstr ""
 "                        [--excludedocs] [--includedocs] [--rcfile <dosya>]"
 
-#: ../rpm.c:201
+#: rpm.c:199
 msgid ""
 "                        [--ignorearch]  [--dbpath <dir>] [--prefix <dir>] "
 msgstr ""
 "                        [--ignorearch]  [--dbpath <dizin>] [--prefix "
 "<dizin>] "
 
-#: ../rpm.c:202
+#: rpm.c:200
 msgid "                        [--ftpproxy <host>] [--ftpport <port>]"
 msgstr "                        [--ftpproxy <sunucu>] [--ftpport <port>]"
 
-#: ../rpm.c:204
+#: rpm.c:202
 msgid "                        [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
 msgstr ""
 "                        [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
 
-#: ../rpm.c:206
+#: rpm.c:204
 #, fuzzy
 msgid ""
 "                        [--badreloc] [--excludepath <path>] [--ignoresize]"
 msgstr "                        [--nomd5] [targets]"
 
-#: ../rpm.c:207
+#: rpm.c:205
 #, fuzzy
 msgid "                        file1.rpm ... fileN.rpm"
 msgstr "                        [--badreloc] dosya1.rpm ... dosyaN.rpm"
 
-#: ../rpm.c:208
+#: rpm.c:206
 msgid "       rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]"
 msgstr "       rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]"
 
-#: ../rpm.c:209
+#: rpm.c:207
 msgid "                        [--scripts] [--root <dir>] [--rcfile <file>]"
 msgstr ""
 "                        [--scripts] [--root <dizin>] [--rcfile <dosya>]"
 
-#: ../rpm.c:210
+#: rpm.c:208
 msgid "                        [--whatprovides] [--whatrequires] [--requires]"
 msgstr ""
 
-#: ../rpm.c:211
+#: rpm.c:209
 #, fuzzy
 msgid ""
 "                        [--triggeredby] [--ftpuseport] [--ftpproxy <host>]"
@@ -599,7 +334,7 @@ msgstr ""
 "                        [--ftpuseport] [--ftpproxy <sunucu>] [--ftpport "
 "<port>]"
 
-#: ../rpm.c:213
+#: rpm.c:211
 #, fuzzy
 msgid ""
 "                        [--ftpport <port>] [--provides] [--triggers] [--dump]"
@@ -607,309 +342,314 @@ msgstr ""
 "                        [--dbpath <dizin>] [--nodeps] [--nofiles] "
 "[--noscripts]"
 
-#: ../rpm.c:214
+#: rpm.c:212
 #, fuzzy
 msgid "                        [--changelog] [--dbpath <dir>] [targets]"
 msgstr "                        [--nomd5] [targets]"
 
-#: ../rpm.c:215
+#: rpm.c:213
 msgid "       rpm {--verify -V -y} [-afpg] [--root <dir>] [--rcfile <file>]"
 msgstr ""
 "       rpm {--verify -V -y} [-afpg] [--root <dizin>] [--rcfile <dosya>]"
 
-#: ../rpm.c:216
+#: rpm.c:214
 msgid ""
 "                        [--dbpath <dir>] [--nodeps] [--nofiles] [--noscripts]"
 msgstr ""
 "                        [--dbpath <dizin>] [--nodeps] [--nofiles] "
 "[--noscripts]"
 
-#: ../rpm.c:217
+#: rpm.c:215
 msgid "                        [--nomd5] [targets]"
 msgstr "                        [--nomd5] [targets]"
 
-#: ../rpm.c:218
+#: rpm.c:216
 msgid "       rpm {--setperms} [-afpg] [target]"
 msgstr "       rpm {--setperms} [-afpg] [target]"
 
-#: ../rpm.c:219
+#: rpm.c:217
 msgid "       rpm {--setugids} [-afpg] [target]"
 msgstr "       rpm {--setugids} [-afpg] [target]"
 
-#: ../rpm.c:220
+#: rpm.c:218
+#, fuzzy
+msgid "       rpm {--freshen -F} file1.rpm ... fileN.rpm"
+msgstr "                        [--badreloc] dosya1.rpm ... dosyaN.rpm"
+
+#: rpm.c:219
 msgid "       rpm {--erase -e} [--root <dir>] [--noscripts] [--rcfile <file>]"
 msgstr ""
 "       rpm {--erase -e] [--root <dizin>] [--noscripts] [--rcfile <dosya>]"
 
-#: ../rpm.c:221
+#: rpm.c:220
 msgid "                        [--dbpath <dir>] [--nodeps] [--allmatches]"
 msgstr "                        [--dbpath <dizin>] [--nodeps] [--allmatches]"
 
-#: ../rpm.c:222
+#: rpm.c:221
 #, fuzzy
 msgid ""
 "                        [--justdb] [--notriggers] rpackage1 ... packageN"
 msgstr "                        [--justdb] paket1 ... paketN"
 
-#: ../rpm.c:223
+#: rpm.c:222
 msgid ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile  <file>]"
 msgstr ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile  "
 "<dosya>]"
 
-#: ../rpm.c:224
+#: rpm.c:223
 #, fuzzy
 msgid "                        [--sign] [--nobuild] [--timecheck <s>] ]"
 msgstr ""
 "                        [--sign] [--test] [--timecheck <s>] [--buildos <os>]"
 
-#: ../rpm.c:225
+#: rpm.c:224
 #, fuzzy
 msgid "                        [--target=platform1[,platform2...]]"
 msgstr "                        [targets]"
 
-#: ../rpm.c:226
+#: rpm.c:225
 #, fuzzy
 msgid "                        [--rmsource] specfile"
 msgstr ""
 "                        [--buildarch <mimari>] [--rmsource] specdosyasý"
 
-#: ../rpm.c:227
+#: rpm.c:226
 msgid "       rpm {--rmsource} [--rcfile <file>] [-v] specfile"
 msgstr "       rpm {--rmsource} [--rcfile <dosya>] [-v] specdosyasý"
 
-#: ../rpm.c:228
+#: rpm.c:227
 msgid ""
 "       rpm {--rebuild} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 "       rpm {--rebuild} [--rcfile <dosya>] [-v] kaynak1.rpm ... kaynakN.rpm"
 
-#: ../rpm.c:229
+#: rpm.c:228
 msgid ""
 "       rpm {--recompile} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 "       rpm {--recompile} [--rcfile <dosya>] [-v] kaynak1.rpm ... kaynakN.rpm"
 
-#: ../rpm.c:230
+#: rpm.c:229
 msgid "       rpm {--resign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr "       rpm {--resign} [--rcfile <dosya>] paket1 paket2 ... paketN"
 
-#: ../rpm.c:231
+#: rpm.c:230
 msgid "       rpm {--addsign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr "       rpm {--addsign} [--rcfile <dosya>] paket1 paket2 ... paketN"
 
-#: ../rpm.c:232
+#: rpm.c:231
 #, fuzzy
 msgid ""
 "       rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile <file>]"
 msgstr "       rpm {--checksig -K} [--nopgp] [--nomd5] [--rcfile <dosya>]"
 
-#: ../rpm.c:233
+#: rpm.c:232
 msgid "                           package1 ... packageN"
 msgstr "                           paket1 ... paketN"
 
-#: ../rpm.c:234
+#: rpm.c:233
 msgid "       rpm {--rebuilddb} [--rcfile <file>] [--dbpath <dir>]"
 msgstr "       rpm {--rebuilddb} [--rcfile <dosya>] [--dbpath <dizin>]"
 
-#: ../rpm.c:235
+#: rpm.c:234
 msgid "       rpm {--querytags}"
 msgstr "       rpm {--querytags}"
 
-#: ../rpm.c:269
+#: rpm.c:268
 msgid "usage:"
 msgstr "Kullaným:"
 
-#: ../rpm.c:271
+#: rpm.c:270
 msgid "print this message"
 msgstr "Bu bilgiyi verir"
 
-#: ../rpm.c:273
+#: rpm.c:272
 msgid "print the version of rpm being used"
 msgstr "Kullanýlan RPM sürümünü verir"
 
-#: ../rpm.c:274
+#: rpm.c:273
 msgid "   all modes support the following arguments:"
 msgstr "   tüm kipler aþaðýdaki argümanlarý kabul ederler:"
 
-#: ../rpm.c:275
+#: rpm.c:274
 msgid "      --rcfile <file>     "
 msgstr ""
 
-#: ../rpm.c:276
+#: rpm.c:275
 msgid "use <file> instead of /etc/rpmrc and $HOME/.rpmrc"
 msgstr "/etc/rpmrc ve $HOME/.rpmrc yerine <dosya> kullanýn"
 
-#: ../rpm.c:278
+#: rpm.c:277
 msgid "be a little more verbose"
 msgstr "daha çok açýklama verir"
 
-#: ../rpm.c:280
+#: rpm.c:279
 msgid "be incredibly verbose (for debugging)"
 msgstr "çok fazla açýklama verir (hata ayýklama için)"
 
-#: ../rpm.c:282
+#: rpm.c:281
 msgid "query mode"
 msgstr "Sorgulama kipi"
 
-#: ../rpm.c:283 ../rpm.c:345 ../rpm.c:409 ../rpm.c:437
+#: rpm.c:282 rpm.c:344 rpm.c:408 rpm.c:436
 msgid "      --root <dir>        "
 msgstr ""
 
-#: ../rpm.c:284 ../rpm.c:346 ../rpm.c:410 ../rpm.c:438 ../rpm.c:500
+#: rpm.c:283 rpm.c:345 rpm.c:409 rpm.c:437 rpm.c:499
 msgid "use <dir> as the top level directory"
 msgstr "kök (baþlangýç) dizini olarak <dizin> kullanýlýr"
 
-#: ../rpm.c:285 ../rpm.c:343 ../rpm.c:373 ../rpm.c:425 ../rpm.c:497
+#: rpm.c:284 rpm.c:342 rpm.c:372 rpm.c:424 rpm.c:496
 #, fuzzy
 msgid "      --dbpath <dir>      "
 msgstr "    -b<adým> <spec>      "
 
-#: ../rpm.c:286 ../rpm.c:344 ../rpm.c:374 ../rpm.c:426 ../rpm.c:498
+#: rpm.c:285 rpm.c:343 rpm.c:373 rpm.c:425 rpm.c:497
 msgid "use <dir> as the directory for the database"
 msgstr "Veritabaný dizini olarak <dizin> kullanýlýr"
 
-#: ../rpm.c:287
+#: rpm.c:286
 msgid "      --queryformat <qfmt>"
 msgstr ""
 
-#: ../rpm.c:288
+#: rpm.c:287
 #, fuzzy
 msgid "use <qfmt> as the header format (implies -i)"
 msgstr "'header format' olarak s kullanýlýr (-i'yi gerektirir)"
 
-#: ../rpm.c:289
+#: rpm.c:288
 msgid ""
 "   install, upgrade and query (with -p) allow ftp URL's to be used in place"
 msgstr ""
 "   yükleme, güncelleme ve sorgulama (-p ile) iþlemlerimde dosya isimleri "
 
-#: ../rpm.c:290
+#: rpm.c:289
 #, fuzzy
 msgid "   of file names as well as the following options:"
 msgstr "   yerine FTP adreslerini aþaðýdaki seçeneklerle kabul eder:\n"
 
-#: ../rpm.c:291
+#: rpm.c:290
 msgid "      --ftpproxy <host>   "
 msgstr ""
 
-#: ../rpm.c:292
+#: rpm.c:291
 msgid "hostname or IP of ftp proxy"
 msgstr "Makina ismi veya FTP-Proxy'nin IP numarasý"
 
-#: ../rpm.c:293
+#: rpm.c:292
 msgid "      --ftpport <port>    "
 msgstr ""
 
-#: ../rpm.c:294
+#: rpm.c:293
 msgid "port number of ftp server (or proxy)"
 msgstr "FTP sunucusunun (ya da Proxy'nin) port numarasý"
 
-#: ../rpm.c:295
+#: rpm.c:294
 #, fuzzy
 msgid "      --httpproxy <host>   "
 msgstr "    -b<adým> <spec>      "
 
-#: ../rpm.c:296
+#: rpm.c:295
 #, fuzzy
 msgid "hostname or IP of http proxy"
 msgstr "Makina ismi veya FTP-Proxy'nin IP numarasý"
 
-#: ../rpm.c:297
+#: rpm.c:296
 #, fuzzy
 msgid "      --httpport <port>    "
 msgstr "    -b<adým> <spec>      "
 
-#: ../rpm.c:298
+#: rpm.c:297
 #, fuzzy
 msgid "port number of http server (or proxy)"
 msgstr "FTP sunucusunun (ya da Proxy'nin) port numarasý"
 
-#: ../rpm.c:299
+#: rpm.c:298
 msgid "      Package specification options:"
 msgstr "      Paket seçim seçenekleri:"
 
-#: ../rpm.c:301
+#: rpm.c:300
 msgid "query all packages"
 msgstr "Tüm paketleri sorgulama"
 
-#: ../rpm.c:302
+#: rpm.c:301
 msgid "        -f <file>+        "
 msgstr ""
 
-#: ../rpm.c:303
+#: rpm.c:302
 msgid "query package owning <file>"
 msgstr "<dosya> isimli dosyayý içeren paketi sorgulamak"
 
-#: ../rpm.c:304
+#: rpm.c:303
 msgid "        -p <packagefile>+ "
 msgstr ""
 
-#: ../rpm.c:305
+#: rpm.c:304
 msgid "query (uninstalled) package <packagefile>"
 msgstr "(henüz yüklenmemiþ) <paket dosyasý> paketi sorgulama"
 
-#: ../rpm.c:306
+#: rpm.c:305
 #, fuzzy
 msgid "        --triggeredby <pkg>"
 msgstr "<dosya> isimli dosyayý içeren paketi sorgulamak"
 
-#: ../rpm.c:307
+#: rpm.c:306
 #, fuzzy
 msgid "query packages triggered by <pkg>"
 msgstr "<dosya> isimli dosyayý içeren paketi sorgulamak"
 
-#: ../rpm.c:308
+#: rpm.c:307
 #, fuzzy
 msgid "        --whatprovides <cap>"
 msgstr "        --requires"
 
-#: ../rpm.c:309
+#: rpm.c:308
 #, fuzzy
 msgid "query packages which provide <cap> capability"
 msgstr "<i> yeteneði olan paketleri sorgulama"
 
-#: ../rpm.c:310
+#: rpm.c:309
 #, fuzzy
 msgid "        --whatrequires <cap>"
 msgstr "        --requires"
 
-#: ../rpm.c:311
+#: rpm.c:310
 #, fuzzy
 msgid "query packages which require <cap> capability"
 msgstr "<i> yeteneðine ihtiyaç duyan paketleri sorgulama"
 
-#: ../rpm.c:312
+#: rpm.c:311
 msgid "      Information selection options:"
 msgstr "      Bilgilendirme seçenekleri:"
 
-#: ../rpm.c:314
+#: rpm.c:313
 msgid "display package information"
 msgstr "Paket bilgisini gösterme"
 
-#: ../rpm.c:316
+#: rpm.c:315
 msgid "display the package's change log"
 msgstr "Paketin 'Change Log' (deðiþiklik) bilgisini gösterme"
 
-#: ../rpm.c:318
+#: rpm.c:317
 msgid "display package file list"
 msgstr "Paketin içerdiði dosyalarý gösterme"
 
-#: ../rpm.c:320
+#: rpm.c:319
 msgid "show file states (implies -l)"
 msgstr "dosyalarýn durumunu gösterir (-l gerektirir)"
 
-#: ../rpm.c:322
+#: rpm.c:321
 msgid "list only documentation files (implies -l)"
 msgstr "sadece belge dosyalarýný gösterir (-l gerektirir)"
 
-#: ../rpm.c:324
+#: rpm.c:323
 msgid "list only configuration files (implies -l)"
 msgstr ""
 "sadece yapýlandýrma (configuration) dosyalarýný gösterir (impliziert -l)"
 
-#: ../rpm.c:326
+#: rpm.c:325
 msgid ""
 "show all verifiable information for each file (must be used with -l, -c, or "
 "-d)"
@@ -917,54 +657,54 @@ msgstr ""
 "her dosya için doðrulanabilir bilgileri göster (-l, -c veya -d ile "
 "kullanýlmalý)"
 
-#: ../rpm.c:328
+#: rpm.c:327
 msgid "list capabilities package provides"
 msgstr "paketin saðladýðý yetenekleri sýralar"
 
-#: ../rpm.c:329
+#: rpm.c:328
 msgid "        --requires"
 msgstr "        --requires"
 
-#: ../rpm.c:331
+#: rpm.c:330
 msgid "list package dependencies"
 msgstr "paketin baðýmlýlýklarýný (gerektirdiði paketleri) gösterir"
 
-#: ../rpm.c:333
+#: rpm.c:332
 msgid "print the various [un]install scripts"
 msgstr "paketin çeþitli yükleme, silme betiklerini (scripts) gösterir"
 
-#: ../rpm.c:335
+#: rpm.c:334
 msgid "show the trigger scripts contained in the package"
 msgstr ""
 
-#: ../rpm.c:339
+#: rpm.c:338
 #, fuzzy
 msgid "    --pipe <cmd>          "
 msgstr "    -b<adým> <spec>      "
 
-#: ../rpm.c:340
+#: rpm.c:339
 msgid "send stdout to <cmd>"
 msgstr "standart çýktýyý <KOMUT>'a gönderir"
 
-#: ../rpm.c:342
+#: rpm.c:341
 msgid ""
 "verify a package installation using the same same package specification "
 "options as -q"
 msgstr "paketi -q ile belirtilen paket parametrelerini kullanarak doðrula"
 
-#: ../rpm.c:348 ../rpm.c:396 ../rpm.c:430
+#: rpm.c:347 rpm.c:395 rpm.c:429
 msgid "do not verify package dependencies"
 msgstr "paket baðýmlýlýklarýný doðrulamaz"
 
-#: ../rpm.c:350
+#: rpm.c:349
 msgid "do not verify file md5 checksums"
 msgstr "dosyalarýn 'md5-checksum' larýný doðrulamaz"
 
-#: ../rpm.c:352
+#: rpm.c:351
 msgid "do not verify file attributes"
 msgstr "dosya özelliklerini doðrulamaz"
 
-#: ../rpm.c:355
+#: rpm.c:354
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
@@ -972,7 +712,7 @@ msgstr ""
 "dosya eriþim haklarýný veri tabanýnda yer alanlarla -q ile belirtilen paket "
 "parametrelerini kullanarak güncelle"
 
-#: ../rpm.c:358
+#: rpm.c:357
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
@@ -980,144 +720,144 @@ msgstr ""
 "dosya kullanýcý ve grup bilgilerini veri tabanýnda yer alanlarla -q ile "
 "belirtilen paket parametrelerini kullanarak güncelle"
 
-#: ../rpm.c:362
+#: rpm.c:361
 #, fuzzy
 msgid "    --install <packagefile>"
 msgstr "paket yüklemek"
 
-#: ../rpm.c:363
+#: rpm.c:362
 #, fuzzy
 msgid "    -i <packagefile>      "
 msgstr "    -b<adým> <spec>      "
 
-#: ../rpm.c:364
+#: rpm.c:363
 msgid "install package"
 msgstr "paket yüklemek"
 
-#: ../rpm.c:365
+#: rpm.c:364
 #, fuzzy
 msgid "      --excludepath <path>"
 msgstr "dosyalarý <eskidizin> den <yenidizin> e relocate et"
 
-#: ../rpm.c:366
+#: rpm.c:365
 msgid "skip files in path <path>"
 msgstr ""
 
-#: ../rpm.c:367
+#: rpm.c:366
 #, fuzzy
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr "dosyalarý <eskidizin> den <yenidizin> e relocate et"
 
-#: ../rpm.c:368
+#: rpm.c:367
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr "dosyalarý <eskidizin> den <yenidizin> e relocate et"
 
-#: ../rpm.c:370
+#: rpm.c:369
 msgid "relocate files even though the package doesn't allow it"
 msgstr "paket desteklemese bile dosyalarý relocate et"
 
-#: ../rpm.c:371
+#: rpm.c:370
 msgid "      --prefix <dir>      "
 msgstr ""
 
-#: ../rpm.c:372
+#: rpm.c:371
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "paketin yerini (eðer deðitirilebiliyorsa) <dizin>'e deðiþtirir"
 
-#: ../rpm.c:376
+#: rpm.c:375
 msgid "do not install documentation"
 msgstr "yazýlýmýn belgelerini yüklemez"
 
-#: ../rpm.c:378
+#: rpm.c:377
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "--replacepkgs --replacefiles'ýn kýsaltmasý"
 
-#: ../rpm.c:381
+#: rpm.c:380
 msgid "print hash marks as package installs (good with -v)"
 msgstr "yükleme sýrasýnda bir gösterge çýkarýr (-v seçeneði ile iyi)"
 
-#: ../rpm.c:383
+#: rpm.c:382
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "tüm dosyalarý, hatta normal olarak atlanabilecek yapýlandýrmalarý bile,yükler"
 
-#: ../rpm.c:386
+#: rpm.c:385
 msgid "don't verify package architecture"
 msgstr "paket mimarisini doðrulamaz"
 
-#: ../rpm.c:388
+#: rpm.c:387
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: ../rpm.c:390
+#: rpm.c:389
 msgid "don't verify package operating system"
 msgstr "paketin ait olduðu iþletim sistemini doðrulamaz"
 
-#: ../rpm.c:392
+#: rpm.c:391
 msgid "install documentation"
 msgstr "paket ile gelen belgeleri de yükler"
 
-#: ../rpm.c:394 ../rpm.c:428
+#: rpm.c:393 rpm.c:427
 msgid "update the database, but do not modify the filesystem"
 msgstr "veri tabanýný günceller, ama dosya sistemini deðiþtirmez"
 
-#: ../rpm.c:398 ../rpm.c:432
+#: rpm.c:397 rpm.c:431
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "paket yükleme sýrasýný baðýmlýlýklara göre düzenleme"
 
-#: ../rpm.c:400
+#: rpm.c:399
 msgid "don't execute any installation scripts"
 msgstr "yükleme betiklerini (scripts) çalýþtýrmaz."
 
-#: ../rpm.c:402 ../rpm.c:436
+#: rpm.c:401 rpm.c:435
 msgid "don't execute any scripts triggered by this package"
 msgstr ""
 
-#: ../rpm.c:404
+#: rpm.c:403
 msgid "print percentages as package installs"
 msgstr "yükleme sýrasýnda geliþme yüzde olarak gösterilir"
 
-#: ../rpm.c:406
+#: rpm.c:405
 msgid "install even if the package replaces installed files"
 msgstr "paket mevcut dosyalarý silse bile paketi yükler"
 
-#: ../rpm.c:408
+#: rpm.c:407
 msgid "reinstall if the package is already present"
 msgstr "paket mevcutsa yeniden yükler"
 
-#: ../rpm.c:412
+#: rpm.c:411
 msgid "don't install, but tell if it would work or not"
 msgstr "yükleme yapmaz, sadece çalýþýp çalýþmayacaðýný belirtir"
 
-#: ../rpm.c:414
+#: rpm.c:413
 msgid "    --upgrade <packagefile>"
 msgstr ""
 
-#: ../rpm.c:415
+#: rpm.c:414
 #, fuzzy
 msgid "    -U <packagefile>      "
 msgstr "    -b<adým> <spec>      "
 
-#: ../rpm.c:416
+#: rpm.c:415
 msgid "upgrade package (same options as --install, plus)"
 msgstr "Paketi günceller (seçenekler --install ile ayný, ek olarak)"
 
-#: ../rpm.c:418
+#: rpm.c:417
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 "pakedin eski bir sürüme güncellenmesini saðlar (--force ayný iþi görür)"
 
-#: ../rpm.c:420
+#: rpm.c:419
 msgid "    --erase <package>"
 msgstr ""
 
-#: ../rpm.c:422
+#: rpm.c:421
 msgid "erase (uninstall) package"
 msgstr "paketi siler (uninstall)"
 
-#: ../rpm.c:424
+#: rpm.c:423
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1125,97 +865,97 @@ msgstr ""
 "<paket> ile eþlenen tüm paketleri siler (birden fazla paket eþlenirse bir "
 "hata mesajý çýkmasý gerekir)"
 
-#: ../rpm.c:434
+#: rpm.c:433
 msgid "do not execute any package specific scripts"
 msgstr "pakete ait hiçbir betik (Script) çalýþtýrýlmaz"
 
-#: ../rpm.c:440
+#: rpm.c:439
 msgid "    -b<stage> <spec>      "
 msgstr "    -b<adým> <spec>      "
 
-#: ../rpm.c:441
+#: rpm.c:440
 #, fuzzy
 msgid "    -t<stage> <tarball>   "
 msgstr "    -b<adým> <spec>      "
 
-#: ../rpm.c:442
+#: rpm.c:441
 msgid "build package, where <stage> is one of:"
 msgstr "paket yaratýr, <adým> aþaðýdaki harflerden biridir:"
 
-#: ../rpm.c:444
+#: rpm.c:443
 msgid "prep (unpack sources and apply patches)"
 msgstr "hazýrlama (kaynaklar açýlýr ve yamalar uygulanýr)"
 
 # , c-format
-#: ../rpm.c:446
+#: rpm.c:445
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr "kontrol ( %files üstünkörü bir kontrol edilir)"
 
-#: ../rpm.c:448
+#: rpm.c:447
 msgid "compile (prep and compile)"
 msgstr "derleme (hazýrlama ve derleme)"
 
-#: ../rpm.c:450
+#: rpm.c:449
 msgid "install (prep, compile, install)"
 msgstr "yükleme (hazýrlama, derleme, yükleme)"
 
-#: ../rpm.c:452
+#: rpm.c:451
 msgid "binary package (prep, compile, install, package)"
 msgstr ""
 "çalýþtýrýlabilir paket yaratma (hazýrlama, derleme, yükleme, paketleme)"
 
-#: ../rpm.c:454
+#: rpm.c:453
 msgid "bin/src package (prep, compile, install, package)"
 msgstr ""
 "çalýþtýrýlabilir ve Kaynak paket yaratmak (hazýrlama, derleme, yükleme "
 "vepaketleme)"
 
-#: ../rpm.c:460
+#: rpm.c:459
 msgid "remove sources and spec file when done"
 msgstr "iþlem sonunda kaynaklarý ve spec dosyasýný siler"
 
-#: ../rpm.c:462
+#: rpm.c:461
 #, fuzzy
 msgid "generate PGP/GPG signature"
 msgstr "PGP-imzasý yaratýr"
 
-#: ../rpm.c:463
+#: rpm.c:462
 #, fuzzy
 msgid "      --buildroot <dir>   "
 msgstr "    -b<adým> <spec>      "
 
-#: ../rpm.c:464
+#: rpm.c:463
 msgid "use <dir> as the build root"
 msgstr "paket yaratýlýrken <dizin> baþlangýç dizini olarak kullanýlýr"
 
-#: ../rpm.c:465
+#: rpm.c:464
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: ../rpm.c:466
+#: rpm.c:465
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: ../rpm.c:468
+#: rpm.c:467
 msgid "do not execute any stages"
 msgstr "adýmlarýn hiçbirini çalýþtýrmaz"
 
-#: ../rpm.c:469
+#: rpm.c:468
 #, fuzzy
 msgid "      --timecheck <secs>  "
 msgstr "    -b<adým> <spec>      "
 
-#: ../rpm.c:470
+#: rpm.c:469
 #, fuzzy
 msgid "set the time check to <secs> seconds (0 disables)"
 msgstr "zaman kontrolünü S saniyeye ayarlar (0 ile tümüyle kaldýrýr)"
 
-#: ../rpm.c:472
+#: rpm.c:471
 msgid "    --rebuild <src_pkg>   "
 msgstr ""
 
-#: ../rpm.c:473
+#: rpm.c:472
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -1223,235 +963,239 @@ msgstr ""
 "kaynak paketini yükler, çalýþýr paketi oluþturur ve spec dosyasý, kaynaklar "
 "ile yamalarý siler"
 
-#: ../rpm.c:474
+#: rpm.c:473
 #, fuzzy
 msgid "    --rmsource <spec>     "
 msgstr "    -b<adým> <spec>      "
 
-#: ../rpm.c:475
+#: rpm.c:474
 msgid "remove sources and spec file"
 msgstr "kaynak dosyalarýný ve spec dosyasýný siler"
 
-#: ../rpm.c:476
+#: rpm.c:475
 msgid "    --recompile <src_pkg> "
 msgstr ""
 
-#: ../rpm.c:477
+#: rpm.c:476
 msgid "like --rebuild, but don't build any package"
 msgstr "--rebuild gibi, ama paket yaratmaz"
 
-#: ../rpm.c:478
+#: rpm.c:477
 #, fuzzy
 msgid "    --resign <pkg>+       "
 msgstr "    -b<adým> <spec>      "
 
-#: ../rpm.c:479
+#: rpm.c:478
 msgid "sign a package (discard current signature)"
 msgstr "paketi imzalar (mevcut imza kaldýrýlýr)"
 
-#: ../rpm.c:480
+#: rpm.c:479
 #, fuzzy
 msgid "    --addsign <pkg>+      "
 msgstr "    -b<adým> <spec>      "
 
-#: ../rpm.c:481
+#: rpm.c:480
 msgid "add a signature to a package"
 msgstr "pakete bir imza ekler"
 
-#: ../rpm.c:483
+#: rpm.c:482
 #, fuzzy
 msgid "    --checksig <pkg>+     "
 msgstr "    -b<adým> <spec>      "
 
-#: ../rpm.c:484
+#: rpm.c:483
 msgid "verify package signature"
 msgstr "paket imzasýný doðrular"
 
-#: ../rpm.c:486
+#: rpm.c:485
 msgid "skip any PGP signatures"
 msgstr "tüm PGP imzalarýný atlar"
 
-#: ../rpm.c:488
+#: rpm.c:487
 #, fuzzy
 msgid "skip any GPG signatures"
 msgstr "tüm PGP imzalarýný atlar"
 
-#: ../rpm.c:490
+#: rpm.c:489
 msgid "skip any MD5 signatures"
 msgstr "tüm MD5 imzalarýný atlar"
 
-#: ../rpm.c:492
+#: rpm.c:491
 msgid "list the tags that can be used in a query format"
 msgstr "sorgulama sýrasýnda kullanýlabilecek 'Tag'leri sýralar"
 
-#: ../rpm.c:494
+#: rpm.c:493
 msgid "make sure a valid database exists"
 msgstr "geçerli bir veri tabaný olmasýný saðlar"
 
-#: ../rpm.c:496
+#: rpm.c:495
 msgid "rebuild database from existing database"
 msgstr "mevcut veritabanýný kullanýlarak veritabýnýný yeniden oluþturur"
 
-#: ../rpm.c:631 ../rpm.c:637 ../rpm.c:644 ../rpm.c:650 ../rpm.c:659
-#: ../rpm.c:666 ../rpm.c:713 ../rpm.c:719 ../rpm.c:779 ../rpm.c:787
-#: ../rpm.c:794 ../rpm.c:803 ../rpm.c:810 ../rpm.c:818 ../rpm.c:854
-#: ../rpm.c:909 ../rpm.c:916
+#: rpm.c:639 rpm.c:645 rpm.c:652 rpm.c:658 rpm.c:667 rpm.c:674 rpm.c:721
+#: rpm.c:727 rpm.c:761 rpm.c:767 rpm.c:773 rpm.c:781 rpm.c:816 rpm.c:871
+#: rpm.c:878
 msgid "only one major mode may be specified"
 msgstr "sadece bir ana kip (major mode) belirtilebilir"
 
-#: ../rpm.c:652
+#: rpm.c:660
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr "-u ve --uninstall komutlarý eskidirler ve çalýþmamaktadýrlar.\n"
 
-#: ../rpm.c:654
+#: rpm.c:662
 msgid "Use -e or --erase instead.\n"
 msgstr "Yerine  -e veya --erase komutunu kullanýn\n"
 
-#: ../rpm.c:670
+#: rpm.c:678
 msgid "--build (-b) requires one of a,b,i,c,p,l as its sole argument"
 msgstr ""
 "--build (-b) tek argüman olarak a,b,i,c,p,l harflerinden birini kabul eder"
 
-#: ../rpm.c:674
+#: rpm.c:682
 msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
 msgstr ""
 "--tarbuild (-t) tek argüman olarak a,b,i,c,p,l harflerinden birini kabul eder"
 
-#: ../rpm.c:726 ../rpm.c:732 ../rpm.c:739 ../rpm.c:746 ../rpm.c:755
-#: ../rpm.c:763 ../rpm.c:771 ../rpm.c:923
+#: rpm.c:734 rpm.c:740 rpm.c:747 rpm.c:754 rpm.c:885
 msgid "one type of query/verify may be performed at a time"
 msgstr "bir anda sadece bir tarz sorgulama veya doðrulama yapýlabilir"
 
-#: ../rpm.c:826
+#: rpm.c:789
 msgid "arguments to --dbpath must begin with a /"
 msgstr "--dbpath için verilen argümanlar '/' ile baþlamalý"
 
-#: ../rpm.c:860
+#: rpm.c:822
 msgid "relocations must begin with a /"
 msgstr "relocate iþlemi / ile baþlamalý"
 
-#: ../rpm.c:862
+#: rpm.c:824
 msgid "relocations must contain a ="
 msgstr "relocate satýrýnda = bulunmalý"
 
-#: ../rpm.c:865
+#: rpm.c:827
 msgid "relocations must have a / following the ="
 msgstr "relocate için = den sonra bir / gerekir"
 
-#: ../rpm.c:874
+#: rpm.c:836
 #, fuzzy
 msgid "exclude paths must begin with a /"
 msgstr "relocate iþlemi / ile baþlamalý"
 
-#: ../rpm.c:883
+#: rpm.c:845
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: ../rpm.c:936
+#: rpm.c:898
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath veritabaný kullanýlmayan bir iþlemde belirtildi"
 
-#: ../rpm.c:941
+#: rpm.c:903
 msgid "--timecheck may only be used during package builds"
 msgstr "--timecheck sadece paket oluþturulurken kullanýlabilir"
 
-#: ../rpm.c:944 ../rpm.c:947
-msgid "unexpected query specifiers"
-msgstr "sorgulama için beklenmeyen bilgiler girildi"
+#: rpm.c:906
+#, fuzzy
+msgid "unexpected query flags"
+msgstr "beklenmeyen sorgulama kaynaðý girildi"
+
+#: rpm.c:909
+#, fuzzy
+msgid "unexpected query format"
+msgstr "beklenmeyen sorgulama kaynaðý girildi"
 
-#: ../rpm.c:951
+#: rpm.c:913
 msgid "unexpected query source"
 msgstr "beklenmeyen sorgulama kaynaðý girildi"
 
-#: ../rpm.c:957
+#: rpm.c:919
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "sadece yükleme ve güncelleme zorlanabilir (force edilebilir)"
 
-#: ../rpm.c:960
+#: rpm.c:922
 msgid "files may only be relocated during package installation"
 msgstr "dosyalar sadece paket yüklemesi sýrasýnda relocate edilebilir"
 
-#: ../rpm.c:963
+#: rpm.c:925
 msgid "only one of --prefix or --relocate may be used"
 msgstr "--prefix ve --relocate seçeneklerinden sadece biri kullanýlabilir"
 
-#: ../rpm.c:966
+#: rpm.c:928
 #, fuzzy
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr "--relocate sadece yeni paketler yüklenirken kullanýlýr"
 
-#: ../rpm.c:969
+#: rpm.c:931
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix sadece yeni paketlerin yüklenmesi sýrasýnda kullanýlabilir"
 
-#: ../rpm.c:972
+#: rpm.c:934
 msgid "arguments to --prefix must begin with a /"
 msgstr "--prefix komutunun argümanlarý '/' ile baþlamalý"
 
-#: ../rpm.c:975
+#: rpm.c:937
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) sadece paket yüklenmesi sýrasýnda kullanýlabilir"
 
-#: ../rpm.c:979
+#: rpm.c:941
 msgid "--percent may only be specified during package installation"
 msgstr "--percent sadece paket yüklenmesi sýrasýnda kullanýlabilir"
 
-#: ../rpm.c:983
+#: rpm.c:945
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles sadece paket yüklenmesi sýrasýnda kullanýlabilir"
 
-#: ../rpm.c:987
+#: rpm.c:949
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs sadece paket yüklenmesi sýrasýnda kullanýlabilir"
 
-#: ../rpm.c:991
+#: rpm.c:953
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs sadece paket yüklenmesi sýrasýnda kullanýlabilir"
 
-#: ../rpm.c:995
+#: rpm.c:957
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs sadece paket yüklenmesi sýrasýnda kullanýlabilir"
 
-#: ../rpm.c:999
+#: rpm.c:961
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 "--excludedocs ve --includedocs bir arada kullanýlamaz (bi daha olmasýn)"
 
-#: ../rpm.c:1003
+#: rpm.c:965
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch sadece paket yüklenmesi sýrasýnda kullanýlabilir"
 
-#: ../rpm.c:1007
+#: rpm.c:969
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos sadece paket yüklenmesi sýrasýnda kullanýlabilir"
 
-#: ../rpm.c:1011
+#: rpm.c:973
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoreos sadece paket yüklenmesi sýrasýnda kullanýlabilir"
 
-#: ../rpm.c:1015
+#: rpm.c:977
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches sadece paket silinmesi sýrasýnda kullanýlabilir"
 
-#: ../rpm.c:1019
+#: rpm.c:981
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles sadece paket yüklenmesi sýrasýnda kullanýlabilir"
 
-#: ../rpm.c:1023
+#: rpm.c:985
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr "--justdb sadece paket yükleme ve silmelerinde kullanýlýr"
 
-#: ../rpm.c:1028
+#: rpm.c:990
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
 msgstr "--noscripts sadece paket yükleme, silme ve doðrulamalarýnda kullanýlýr"
 
-#: ../rpm.c:1032
+#: rpm.c:994
 #, fuzzy
 msgid ""
 "--notriggers may only be specified during package installation, erasure, and "
@@ -1459,7 +1203,7 @@ msgid ""
 msgstr ""
 "--nodeps sadece paket yüklemelerinde, silme ve doðrulamalarda kullanýlýr"
 
-#: ../rpm.c:1038
+#: rpm.c:1000
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, installation, "
@@ -1467,17 +1211,13 @@ msgid ""
 msgstr ""
 "--nodeps sadece paket yüklemelerinde, silme ve doðrulamalarda kullanýlýr"
 
-#: ../rpm.c:1043
-msgid "--nofiles may only be specified during package verification"
-msgstr "--nofiles sadece paket doðrulamasý sýrasýnda kullanýlabilir"
-
-#: ../rpm.c:1049
+#: rpm.c:1005
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr "--test sadece paket yüklemelerinde, silme ve derlemelerinde kullanýlýr"
 
-#: ../rpm.c:1054
+#: rpm.c:1010
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -1485,2053 +1225,2416 @@ msgstr ""
 "--root (-r) sadece yükleme, silme, sorgulama ve veritabaný güncellemelerinde "
 "kullanýlýr"
 
-#: ../rpm.c:1059
+#: rpm.c:1015
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "--root (-r) komutun argümanlarý '/' ile baþlamalý"
 
-#: ../rpm.c:1063
-msgid "--clean may only be used with -b and -t"
-msgstr "--clean sadece -b ve -t ile kullanýlýr"
-
-#: ../rpm.c:1066
-msgid "--rmsource may only be used with -b and -t"
-msgstr "--rmsource sadece -b ve -t ile kullanýlýr"
-
-#: ../rpm.c:1069
-msgid "--short-circuit may only be used during package building"
-msgstr "--short-circuit sadece paket oluþturulmasý sýrasýnda kullanýlabilir"
-
-#: ../rpm.c:1073
-#, fuzzy
-msgid "--short-circuit may only be used with -bc, -bi, -bs, -tc -ti, or -ts"
-msgstr ""
-"--short-circuit mutlaka -bc, bi, -tc veya -ti ile beraber kullanýlmalýdýr"
-
-#: ../rpm.c:1079
+#: rpm.c:1018
 msgid "--oldpackage may only be used during upgrades"
 msgstr "--oldpackage sadece güncelleme sýrasýnda kullanýlabilir"
 
-#: ../rpm.c:1084
+#: rpm.c:1023
 msgid ""
 "ftp options can only be used during package queries, installs, and upgrades"
 msgstr "FTP seçenekleri sadece sorgulama, yükleme ve güncellemede kullanýlýr"
 
-#: ../rpm.c:1090
+#: rpm.c:1029
 #, fuzzy
 msgid ""
 "http options can only be used during package queries, installs, and upgrades"
 msgstr "FTP seçenekleri sadece sorgulama, yükleme ve güncellemede kullanýlýr"
 
-#: ../rpm.c:1094
+#: rpm.c:1033
 msgid "--nopgp may only be used during signature checking"
 msgstr "--nopgp sadece Ýmza kontrolü sýrasýnda kullanýlabilir"
 
-#: ../rpm.c:1097
+#: rpm.c:1036
 #, fuzzy
 msgid "--nogpg may only be used during signature checking"
 msgstr "--nopgp sadece Ýmza kontrolü sýrasýnda kullanýlabilir"
 
-#: ../rpm.c:1100
+#: rpm.c:1039
 #, fuzzy
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr ""
 "--nopgp sadece imza kontrolü veya paket doðrulamasý sýrasýnda kullanýlýr"
 
-#: ../rpm.c:1126
+#: rpm.c:1063
+msgid "no files to sign\n"
+msgstr ""
+
+#: rpm.c:1068
 #, fuzzy, c-format
 msgid "cannot access file %s\n"
 msgstr "%s dosyasý açýlamýyor: "
 
-#: ../rpm.c:1143
+#: rpm.c:1083
 #, fuzzy
 msgid "pgp not found: "
 msgstr "Dosya sunucuda bulunamadý"
 
-#: ../rpm.c:1146
-msgid "Use `%%_signature pgp5' instead of `%%_signature pgp' in macro file.\n"
-msgstr ""
-
-#: ../rpm.c:1153
-#, fuzzy
-msgid "pgp version 5 not found: "
-msgstr "Dosya sunucuda bulunamadý"
-
-#: ../rpm.c:1156
-msgid "Use `%%_signature pgp' instead of `%%_signature pgp5' in macro file.\n"
-msgstr ""
-
-#: ../rpm.c:1162
+#: rpm.c:1087
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: ../rpm.c:1163
+#: rpm.c:1089
 msgid "Pass phrase check failed\n"
 msgstr "Parola kontrolü baþarýsýzlýkla sonuçlandý\n"
 
-#: ../rpm.c:1166
+#: rpm.c:1092
 msgid "Pass phrase is good.\n"
 msgstr "Parola doðru.\n"
 
-#: ../rpm.c:1173
+#: rpm.c:1097
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: ../rpm.c:1178
+#: rpm.c:1103
 msgid "--sign may only be used during package building"
 msgstr "--sign sadece paket olusturulurken kullanýlabilir"
 
-#: ../rpm.c:1195
+#: rpm.c:1118
 #, fuzzy
 msgid "exec failed\n"
 msgstr "%s: Eriþilemedi\n"
 
-#: ../rpm.c:1214
+#: rpm.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr "--querytags için beklenmeyen argümanlar"
 
-#: ../rpm.c:1225
+#: rpm.c:1148
 msgid "no packages given for signature check"
 msgstr "imzasý kontrol edilecek paketler belirtilmedi"
 
-#: ../rpm.c:1233
+#: rpm.c:1160
 msgid "no packages given for signing"
 msgstr "imzalanacak paketler belirtilmedi"
 
-#: ../rpm.c:1242
+#: rpm.c:1173
 msgid "no packages files given for rebuild"
 msgstr "yeniden oluþturmak için paket dosyalarý belirtilmedi"
 
-#: ../rpm.c:1299
+#: rpm.c:1230
 msgid "no spec files given for build"
 msgstr "oluþturma için gerekli spec dosyasý belirtilmedi"
 
-#: ../rpm.c:1301
+#: rpm.c:1232
 msgid "no tar files given for build"
 msgstr "oluþturma için gereken tar dosyalarý belirttilmedi"
 
-#: ../rpm.c:1313
+#: rpm.c:1244
 msgid "no packages given for uninstall"
 msgstr "sistemden silinecek paketler belirtilmedi"
 
-#: ../rpm.c:1362
+#: rpm.c:1294
 msgid "no packages given for install"
 msgstr "yüklenecek paketler belirtilmedi"
 
-#: ../rpm.c:1385
+#: rpm.c:1317
 msgid "extra arguments given for query of all packages"
 msgstr "tüm paketlerin sorgulanmasý için fazladan argümanlar belirtildi"
 
-#: ../rpm.c:1390
+#: rpm.c:1322
 msgid "no arguments given for query"
 msgstr "sorgulama için hiç argüman belirtilmedi"
 
-#: ../rpm.c:1411
+#: rpm.c:1339
 #, fuzzy
 msgid "extra arguments given for verify of all packages"
 msgstr "tüm paketlerin sorgulanmasý için fazladan argümanlar belirtildi"
 
-#: ../rpm.c:1415
+#: rpm.c:1343
 msgid "no arguments given for verify"
 msgstr "doðrulama için hiç argüman belirtilmedi"
 
-#: ../rpm2cpio.c:42
+#: rpm2cpio.c:34
 msgid "argument is not an RPM package\n"
 msgstr ""
 
-#: ../rpm2cpio.c:46
+#: rpm2cpio.c:38
 #, fuzzy
 msgid "error reading header from package\n"
 msgstr "%s paketi bulunamadý\n"
 
-#: ../url.c:136
-#, c-format
-msgid "Password for %s@%s: "
-msgstr "%s'%s için parola"
+#: build/build.c:83 build/pack.c:263
+#, fuzzy
+msgid "Unable to open temp file"
+msgstr "%s okuma eriþimi için açýlamadý:%s."
 
-#: ../url.c:160 ../url.c:186
+#: build/build.c:124
 #, fuzzy, c-format
-msgid "error: %sport must be a number\n"
-msgstr "hata: ftpport bir sayý olmalý\n"
+msgid "Executing: %s\n"
+msgstr "%s alýnýyor\n"
 
-#: ../url.c:271
-#, fuzzy
-msgid "url port must be a number\n"
-msgstr "hata: ftpport bir sayý olmalý\n"
+#: build/build.c:128
+#, fuzzy, c-format
+msgid "Exec of %s failed (%s)"
+msgstr "%s 'ye erisimde belirtilen hata oluþtu: %s\n"
 
-#. XXX PARANOIA
-#: ../url.c:308
+#: build/build.c:138
 #, c-format
-msgid "logging into %s as %s, pw %s\n"
+msgid "Bad exit status from %s (%s)"
 msgstr ""
 
-# , c-format
-#: ../lib/rpmdb.c:169 ../url.c:422
-#, c-format
-msgid "failed to open %s\n"
-msgstr "%s 'ye eriþimde hata oluþtu\n"
-
-#: ../url.c:437
-#, c-format
-msgid "failed to create %s\n"
-msgstr "%s yaratýlamýyor\n"
-
-#: ../build/build.c:83 ../build/pack.c:248
+#: build/expression.c:208
 #, fuzzy
-msgid "Unable to open temp file"
-msgstr "%s okuma eriþimi için açýlamadý:%s."
-
-#: ../build/build.c:122
-#, fuzzy, c-format
-msgid "Executing: %s\n"
-msgstr "%s alýnýyor\n"
-
-#: ../build/build.c:126
-#, fuzzy, c-format
-msgid "Exec of %s failed (%s)"
-msgstr "%s 'ye erisimde belirtilen hata oluþtu: %s\n"
+msgid "syntax error while parsing =="
+msgstr "dizi içerisinde ? bekleniyordu"
 
-#: ../build/build.c:136
-#, c-format
-msgid "Bad exit status from %s (%s)"
-msgstr ""
+#: build/expression.c:238
+#, fuzzy
+msgid "syntax error while parsing &&"
+msgstr "dizi içerisinde ? bekleniyordu"
 
-#: ../build/expression.c:189 ../build/expression.c:198
-msgid "parse error in tokenizer"
-msgstr ""
+#: build/expression.c:247
+#, fuzzy
+msgid "syntax error while parsing ||"
+msgstr "dizi içerisinde ? bekleniyordu"
 
-#: ../build/expression.c:240
+#: build/expression.c:289
 #, fuzzy
 msgid "parse error in expression"
 msgstr "dizi içerisinde ? bekleniyordu"
 
-#: ../build/expression.c:270
+#: build/expression.c:319
 msgid "unmatched ("
 msgstr ""
 
-#: ../build/expression.c:288
+#: build/expression.c:337
 msgid "undefined identifier"
 msgstr ""
 
-#: ../build/expression.c:307
+#: build/expression.c:356
 msgid "- only on numbers"
 msgstr ""
 
-#: ../build/expression.c:323
+#: build/expression.c:372
 msgid "! only on numbers"
 msgstr ""
 
-#: ../build/expression.c:362 ../build/expression.c:407
-#: ../build/expression.c:464 ../build/expression.c:551
+#: build/expression.c:411 build/expression.c:456 build/expression.c:513
+#: build/expression.c:600
 msgid "types must match"
 msgstr ""
 
-#: ../build/expression.c:375
+#: build/expression.c:424
 msgid "* / not suported for strings"
 msgstr ""
 
-#: ../build/expression.c:423
+#: build/expression.c:472
 msgid "- not suported for strings"
 msgstr ""
 
-#: ../build/expression.c:564
+#: build/expression.c:613
 msgid "&& and || not suported for strings"
 msgstr ""
 
-#: ../build/expression.c:595 ../build/expression.c:640
+#: build/expression.c:644 build/expression.c:689
 #, fuzzy
 msgid "syntax error in expression"
 msgstr "dizi içerisinde ? bekleniyordu"
 
-#: ../build/files.c:220
+#: build/files.c:224
 #, c-format
 msgid "TIMECHECK failure: %s\n"
 msgstr ""
 
-#: ../build/files.c:265 ../build/files.c:277 ../build/files.c:346
-#: ../build/files.c:358 ../build/files.c:389
-#, c-format
-msgid "Bad %s() syntax: %s"
-msgstr ""
-
-#: ../build/files.c:307
-#, c-format
-msgid "Invalid %s token: %s"
-msgstr ""
+#: build/files.c:267 build/files.c:349 build/files.c:512
+#, fuzzy, c-format
+msgid "Missing '(' in %s %s"
+msgstr "% den sonra eksik {"
 
-#: ../build/files.c:369
-msgid "No files after %%defattr(): %s"
-msgstr ""
+#: build/files.c:278 build/files.c:466 build/files.c:523
+#, fuzzy, c-format
+msgid "Missing ')' in %s(%s"
+msgstr "%s te eksik ':' :%d"
 
-#: ../build/files.c:399
+#: build/files.c:316 build/files.c:491
 #, c-format
-msgid "Bad %s() mode spec: %s"
+msgid "Invalid %s token: %s"
 msgstr ""
 
-#: ../build/files.c:411
+#: build/files.c:365
 #, c-format
-msgid "Bad %s() dirmode spec: %s"
+msgid "Non-white space follows %s(): %s"
 msgstr ""
 
-#: ../build/files.c:462
-msgid "Bad %%config() syntax: %s"
-msgstr ""
+#: build/files.c:403
+#, fuzzy, c-format
+msgid "Bad syntax: %s(%s)"
+msgstr "%s okunamadý: %s"
 
-#: ../build/files.c:480
-msgid "Invalid %%config token: %s"
-msgstr ""
+#: build/files.c:413
+#, fuzzy, c-format
+msgid "Bad mode spec: %s(%s)"
+msgstr "%s okunamadý: %s"
 
-#: ../build/files.c:503 ../build/files.c:515 ../build/files.c:528
-msgid "Bad %%lang() syntax: %s"
+#: build/files.c:425
+#, c-format
+msgid "Bad dirmode spec: %s(%s)"
 msgstr ""
 
-#: ../build/files.c:534
-msgid "%%lang() entries are 2 characters: %s"
+#: build/files.c:549
+msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
 msgstr ""
 
-#: ../build/files.c:540
-msgid "Only one entry in %%lang(): %s"
+#: build/files.c:559
+msgid "Duplicate locale %.*s in %%lang(%s)"
 msgstr ""
 
-#: ../build/files.c:620
+#: build/files.c:651
 msgid "Hit limit for %%docdir"
 msgstr ""
 
-#: ../build/files.c:626
+#: build/files.c:657
 msgid "Only one arg for %%docdir"
 msgstr ""
 
 #. We already got a file -- error
-#: ../build/files.c:651
+#: build/files.c:682
 #, fuzzy, c-format
 msgid "Two files on one line: %s"
 msgstr "%s açýlamadý: %s"
 
-#: ../build/files.c:664
+#: build/files.c:695
 #, fuzzy, c-format
 msgid "File must begin with \"/\": %s"
 msgstr "relocate iþlemi / ile baþlamalý"
 
-#: ../build/files.c:676
+#: build/files.c:707
 msgid "Can't mix special %%doc with other forms: %s"
 msgstr ""
 
-#: ../build/files.c:764
+#: build/files.c:792
 #, fuzzy, c-format
 msgid "File listed twice: %s"
 msgstr "%s okunamadý: %s"
 
-#: ../build/files.c:916
+#: build/files.c:952
 #, fuzzy, c-format
 msgid "File doesn't match prefix (%s): %s"
 msgstr "%s okunamadý: %s"
 
-#: ../build/files.c:926 ../build/files.c:1049
+#: build/files.c:962 build/files.c:1099
 #, fuzzy, c-format
 msgid "File not found: %s"
 msgstr "Dosya sunucuda bulunamadý"
 
-#: ../build/files.c:969
+#: build/files.c:1005
 #, c-format
 msgid "Bad owner/group: %s\n"
 msgstr ""
 
-#: ../build/files.c:983
+#: build/files.c:1019
 #, fuzzy, c-format
 msgid "File %4d: 0%o %s.%s\t %s\n"
 msgstr "%s açýlamadý: %s"
 
-#: ../build/files.c:1033
+#: build/files.c:1083
 #, c-format
 msgid "File needs leading \"/\": %s"
 msgstr ""
 
-#: ../build/files.c:1090
+#: build/files.c:1140
 #, fuzzy
 msgid "Could not open %%files file: %s"
 msgstr "hata: %s dosyasý okunamadý\n"
 
-#: ../build/files.c:1097 ../build/pack.c:433
+#: build/files.c:1147 build/pack.c:484
 #, c-format
 msgid "line: %s"
 msgstr ""
 
-#: ../build/files.c:1394 ../build/parsePrep.c:31
+#: build/files.c:1469 build/parsePrep.c:29
 #, c-format
 msgid "Bad owner/group: %s"
 msgstr ""
 
-#: ../build/files.c:1448
+#: build/files.c:1522
 #, fuzzy, c-format
 msgid "Couldn't exec %s"
 msgstr "PGP çalýþtýrýlamadý"
 
-#: ../build/files.c:1452
+#: build/files.c:1526
 #, fuzzy, c-format
 msgid "Couldn't fork %s"
 msgstr "Ýmza hedefi 'sigtarget' okunamadý"
 
-#: ../build/files.c:1502
+#: build/files.c:1605
 #, fuzzy, c-format
 msgid "%s failed"
 msgstr "PGP hata verdi"
 
-#: ../build/files.c:1506
+#: build/files.c:1609
 #, fuzzy, c-format
 msgid "failed to write all data to %s"
 msgstr "%s yaratýlamýyor\n"
 
-#: ../build/files.c:1540
-msgid "Finding provides...\n"
-msgstr ""
-
-#: ../build/files.c:1547
-msgid "Failed to find provides"
-msgstr ""
-
-#: ../build/files.c:1566
-msgid "Finding requires...\n"
+#: build/files.c:1695
+#, c-format
+msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: ../build/files.c:1573
-#, fuzzy
-msgid "Failed to find requires"
+#: build/files.c:1723 build/files.c:1732
+#, fuzzy, c-format
+msgid "Failed to find %s:"
 msgstr "%s yaratýlamýyor\n"
 
-#: ../build/files.c:1607
-msgid "Provides:"
-msgstr ""
-
-#: ../build/files.c:1622
-msgid "Prereqs:"
-msgstr ""
-
-#: ../build/files.c:1634
-msgid "Requires:"
-msgstr ""
-
-#: ../build/files.c:1658
+#: build/files.c:1838
 #, fuzzy, c-format
 msgid "Processing files: %s\n"
 msgstr "%s açýlamadý: %s"
 
-#: ../build/names.c:32 ../build/names.c:64
+#: build/names.c:32 build/names.c:64
 msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
 msgstr ""
 
-#: ../build/names.c:97 ../build/names.c:129
+#: build/names.c:97 build/names.c:129
 msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
 msgstr ""
 
-#: ../build/names.c:167
+#: build/names.c:167
 #, c-format
 msgid "Could not canonicalize hostname: %s\n"
 msgstr ""
 
-#: ../build/pack.c:134
+#: build/pack.c:131
 #, c-format
 msgid "Could not generate output filename for package %s: %s\n"
 msgstr ""
 
-#: ../build/pack.c:167
+#: build/pack.c:148
+#, fuzzy, c-format
+msgid "cannot create %s: %s\n"
+msgstr "%s dosyasý açýlamýyor: "
+
+#: build/pack.c:183
 #, fuzzy, c-format
 msgid "readRPM: open %s: %s\n"
 msgstr "%s açýlamadý: %s"
 
-#: ../build/pack.c:177
+#: build/pack.c:193
 #, fuzzy, c-format
 msgid "readRPM: read %s: %s\n"
 msgstr "%s okunamadý: %s"
 
-#: ../build/pack.c:197
+#: build/pack.c:213
 #, fuzzy, c-format
 msgid "readRPM: %s is not an RPM package\n"
 msgstr "hata: %s herhangi bir RPM pakedine ait görünmüyor\n"
 
-#: ../build/pack.c:203
+#: build/pack.c:219
 #, fuzzy, c-format
 msgid "readRPM: reading header from %s\n"
 msgstr "%s kaydýna %s dosyasýnda eriþilemiyor:"
 
-#: ../build/pack.c:259
+#: build/pack.c:274
 msgid "Bad CSA data"
 msgstr ""
 
 # , c-format
-#: ../build/pack.c:282
+#: build/pack.c:305
 #, fuzzy, c-format
 msgid "Could not open %s\n"
 msgstr "%s 'ye eriþimde hata oluþtu\n"
 
-#: ../build/pack.c:314 ../build/pack.c:357
+#: build/pack.c:337 build/pack.c:379
 #, fuzzy, c-format
 msgid "Unable to write package: %s"
 msgstr "%s 'nin yazýlmasý mümkün deðil"
 
-#: ../build/pack.c:347
+#: build/pack.c:352
+#, fuzzy, c-format
+msgid "Generating signature: %d\n"
+msgstr "PGP-imzasý yaratýr"
+
+#: build/pack.c:369
 #, fuzzy, c-format
 msgid "Unable to read sigtarget: %s"
 msgstr "%s 'nin yazýlmasý mümkün deðil"
 
-#: ../build/pack.c:372
+#: build/pack.c:394
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
 
-#: ../build/pack.c:387
+#: build/pack.c:411 build/pack.c:435
 #, fuzzy, c-format
 msgid "create archive failed on file %s: %s"
 msgstr "%s açýlamadý: %s"
 
-#: ../build/pack.c:403
+#: build/pack.c:454
 #, c-format
 msgid "cpio_copy write failed: %s"
 msgstr ""
 
-#: ../build/pack.c:410
+#: build/pack.c:461
 #, fuzzy, c-format
 msgid "cpio_copy read failed: %s"
 msgstr "okuma hatasý: %s (%d)"
 
-#: ../build/pack.c:489
+#: build/pack.c:540
 #, fuzzy, c-format
 msgid "Could not open PreIn file: %s"
 msgstr "hata: %s dosyasý okunamadý\n"
 
-#: ../build/pack.c:496
+#: build/pack.c:547
 #, fuzzy, c-format
 msgid "Could not open PreUn file: %s"
 msgstr "hata: %s dosyasý okunamadý\n"
 
-#: ../build/pack.c:503
+#: build/pack.c:554
 #, fuzzy, c-format
 msgid "Could not open PostIn file: %s"
 msgstr "hata: %s dosyasý okunamadý\n"
 
-#: ../build/pack.c:510
+#: build/pack.c:561
 #, fuzzy, c-format
 msgid "Could not open PostUn file: %s"
 msgstr "hata: %s dosyasý okunamadý\n"
 
-#: ../build/pack.c:518
+#: build/pack.c:569
 #, c-format
 msgid "Could not open VerifyScript file: %s"
 msgstr ""
 
-#: ../build/pack.c:534
+#: build/pack.c:585
 #, c-format
 msgid "Could not open Trigger script file: %s"
 msgstr ""
 
-#: ../build/parseBuildInstallClean.c:27
+#: build/parseBuildInstallClean.c:27
 #, c-format
 msgid "line %d: second %s"
 msgstr ""
 
-#: ../build/parseChangelog.c:95
+#: build/parseChangelog.c:103
 msgid "%%changelog entries must start with *"
 msgstr ""
 
-#: ../build/parseChangelog.c:103
+#: build/parseChangelog.c:111
 msgid "incomplete %%changelog entry"
 msgstr ""
 
-#: ../build/parseChangelog.c:118
+#: build/parseChangelog.c:126
 msgid "bad date in %%changelog: %s"
 msgstr ""
 
-#: ../build/parseChangelog.c:123
+#: build/parseChangelog.c:131
 msgid "%%changelog not in decending chronological order"
 msgstr ""
 
-#: ../build/parseChangelog.c:131 ../build/parseChangelog.c:142
+#: build/parseChangelog.c:139 build/parseChangelog.c:150
 msgid "missing name in %%changelog"
 msgstr ""
 
-#: ../build/parseChangelog.c:149
+#: build/parseChangelog.c:157
 msgid "no description in %%changelog"
 msgstr ""
 
-#: ../build/parseDescription.c:35
+#: build/parseDescription.c:33
 msgid "line %d: Error parsing %%description: %s"
 msgstr ""
 
-#: ../build/parseDescription.c:48 ../build/parseFiles.c:42
-#: ../build/parseScript.c:170
+#: build/parseDescription.c:46 build/parseFiles.c:40 build/parseScript.c:168
 #, fuzzy, c-format
 msgid "line %d: Bad option %s: %s"
 msgstr "%s açýlamadý: %s"
 
-#: ../build/parseDescription.c:62 ../build/parseFiles.c:56
-#: ../build/parseScript.c:184
+#: build/parseDescription.c:60 build/parseFiles.c:54 build/parseScript.c:182
 #, c-format
 msgid "line %d: Too many names: %s"
 msgstr ""
 
-#: ../build/parseDescription.c:72 ../build/parseFiles.c:66
-#: ../build/parseScript.c:194
+#: build/parseDescription.c:70 build/parseFiles.c:64 build/parseScript.c:192
 #, fuzzy, c-format
 msgid "line %d: Package does not exist: %s"
 msgstr "%s paketi %s altýnda gözükmüyor"
 
-#: ../build/parseDescription.c:84
+#: build/parseDescription.c:82
 #, c-format
 msgid "line %d: Second description"
 msgstr ""
 
-#: ../build/parseFiles.c:29
+#: build/parseFiles.c:27
 msgid "line %d: Error parsing %%files: %s"
 msgstr ""
 
-#: ../build/parseFiles.c:74
+#: build/parseFiles.c:72
 msgid "line %d: Second %%files list"
 msgstr ""
 
-#: ../build/parsePreamble.c:143
+#: build/parsePreamble.c:141
 #, c-format
 msgid "Architecture is excluded: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:148
+#: build/parsePreamble.c:146
 #, c-format
 msgid "Architecture is not included: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:153
+#: build/parsePreamble.c:151
 #, c-format
 msgid "OS is excluded: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:158
+#: build/parsePreamble.c:156
 #, c-format
 msgid "OS is not included: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:193
+#: build/parsePreamble.c:170
 #, c-format
 msgid "%s field must be present in package: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:215
+#: build/parsePreamble.c:192
 #, c-format
 msgid "Duplicate %s entries in package: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:262
+#: build/parsePreamble.c:239
 #, fuzzy, c-format
 msgid "Unable to stat icon: %s"
 msgstr "%s 'nin yazýlmasý mümkün deðil"
 
-#: ../build/parsePreamble.c:273
+#: build/parsePreamble.c:250
 #, fuzzy, c-format
 msgid "Unable to read icon: %s"
 msgstr "%s 'nin yazýlmasý mümkün deðil"
 
-#: ../build/parsePreamble.c:283
+#: build/parsePreamble.c:260
 #, fuzzy, c-format
 msgid "Unknown icon type: %s"
 msgstr "(bilinmeyen tip)"
 
-#: ../build/parsePreamble.c:346
+#: build/parsePreamble.c:323
 #, c-format
 msgid "line %d: Malformed tag: %s"
 msgstr ""
 
 #. Empty field
-#: ../build/parsePreamble.c:354
+#: build/parsePreamble.c:331
 #, c-format
 msgid "line %d: Empty tag: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:377 ../build/parsePreamble.c:384
+#: build/parsePreamble.c:354 build/parsePreamble.c:361
 #, fuzzy, c-format
 msgid "line %d: Illegal char '-' in %s: %s"
 msgstr "%s açýlamadý: %s"
 
-#: ../build/parsePreamble.c:422
+#: build/parsePreamble.c:399
 #, c-format
 msgid "line %d: BuildRoot can not be \"/\": %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:435
+#: build/parsePreamble.c:412
 #, c-format
 msgid "line %d: Prefixes must not end with \"/\": %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:447
+#: build/parsePreamble.c:424
 #, fuzzy, c-format
 msgid "line %d: Docdir must begin with '/': %s"
 msgstr "relocate iþlemi / ile baþlamalý"
 
-#: ../build/parsePreamble.c:459
+#: build/parsePreamble.c:436
 #, fuzzy, c-format
 msgid "line %d: Epoch/Serial field must be a number: %s"
 msgstr "geçersiz paket numarsý: %s\n"
 
-#: ../build/parsePreamble.c:524
+#: build/parsePreamble.c:499
 #, fuzzy, c-format
 msgid "line %d: Bad BuildArchitecture format: %s"
 msgstr "%s için %s te eksik mimari:%d"
 
-#: ../build/parsePreamble.c:534
+#: build/parsePreamble.c:509
 #, c-format
 msgid "Internal error: Bogus tag %d"
 msgstr ""
 
-#: ../build/parsePreamble.c:679
+#: build/parsePreamble.c:656
 #, fuzzy, c-format
 msgid "Bad package specification: %s"
 msgstr "      Paket seçim seçenekleri:"
 
-#: ../build/parsePreamble.c:685
+#: build/parsePreamble.c:662
 #, c-format
 msgid "Package already exists: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:712
+#: build/parsePreamble.c:689
 #, c-format
 msgid "line %d: Unknown tag: %s"
 msgstr ""
 
-#: ../build/parsePreamble.c:737
+#: build/parsePreamble.c:714
 msgid "Spec file can't use BuildRoot"
 msgstr ""
 
-#: ../build/parsePrep.c:27
+#: build/parsePrep.c:25
 #, fuzzy, c-format
 msgid "Bad source: %s: %s"
 msgstr "%s okunamadý: %s"
 
-#: ../build/parsePrep.c:53
+#: build/parsePrep.c:51
 #, fuzzy, c-format
 msgid "No patch number %d"
 msgstr "(üye deðil)"
 
-#: ../build/parsePrep.c:119
+#: build/parsePrep.c:117
 #, c-format
 msgid "No source number %d"
 msgstr ""
 
-#: ../build/parsePrep.c:138
+#: build/parsePrep.c:136
 #, fuzzy, c-format
 msgid "Couldn't download nosource %s: %s"
 msgstr "%s okunamadý: %s"
 
-#: ../build/parsePrep.c:193
+#: build/parsePrep.c:191
 msgid "Error parsing %%setup: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:208
+#: build/parsePrep.c:206
 msgid "line %d: Bad arg to %%setup %c: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:229
+#: build/parsePrep.c:227
 msgid "line %d: Bad %%setup option %s: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:353
+#: build/parsePrep.c:351
 msgid "line %d: Need arg to %%patch -b: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:361
+#: build/parsePrep.c:359
 msgid "line %d: Need arg to %%patch -z: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:373
+#: build/parsePrep.c:371
 msgid "line %d: Need arg to %%patch -p: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:379
+#: build/parsePrep.c:377
 msgid "line %d: Bad arg to %%patch -p: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:386
+#: build/parsePrep.c:384
 msgid "Too many patches!"
 msgstr ""
 
-#: ../build/parsePrep.c:390
+#: build/parsePrep.c:388
 msgid "line %d: Bad arg to %%patch: %s"
 msgstr ""
 
-#: ../build/parsePrep.c:426
+#: build/parsePrep.c:424
 msgid "line %d: second %%prep"
 msgstr ""
 
-#: ../build/parseReqs.c:45
-#, c-format
-msgid "line %d: No file names in Conflicts: %s"
-msgstr ""
-
-#: ../build/parseReqs.c:79
-#, c-format
-msgid "line %d: No versions on file names in %s: %s"
-msgstr ""
+#: build/parseReqs.c:91
+#, fuzzy, c-format
+msgid ""
+"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
+msgstr "relocate iþlemi / ile baþlamalý"
 
-#: ../build/parseReqs.c:85
-#, c-format
-msgid "line %d: No versions in PreReq: %s"
-msgstr ""
+#: build/parseReqs.c:102
+#, fuzzy, c-format
+msgid "line %d: File name not permitted: %s"
+msgstr "%s paketi %s altýnda gözükmüyor"
 
-#: ../build/parseReqs.c:97
-#, c-format
-msgid "line %d: Version required in %s: %s"
-msgstr ""
+#: build/parseReqs.c:134
+#, fuzzy, c-format
+msgid "line %d: Versioned file name not permitted: %s"
+msgstr "%s paketi %s altýnda gözükmüyor"
 
-#: ../build/parseReqs.c:126
+#: build/parseReqs.c:146
 #, fuzzy, c-format
-msgid "line %d: No file names in Obsoletes: %s"
+msgid "line %d: Version not permitted: %s"
 msgstr "%s paketi %s altýnda gözükmüyor"
 
-#: ../build/parseReqs.c:133
-#, c-format
-msgid "line %d: %s: tokens must begin with alpha-numeric: %s"
-msgstr ""
+#: build/parseReqs.c:172
+#, fuzzy, c-format
+msgid "line %d: Version required: %s"
+msgstr "%s açýlamadý: %s"
 
-#: ../build/parseScript.c:138
+#: build/parseScript.c:136
 #, c-format
 msgid "line %d: triggers must have --: %s"
 msgstr ""
 
-#: ../build/parseScript.c:148 ../build/parseScript.c:212
+#: build/parseScript.c:146 build/parseScript.c:210
 #, c-format
 msgid "line %d: Error parsing %s: %s"
 msgstr ""
 
-#: ../build/parseScript.c:158
+#: build/parseScript.c:156
 #, c-format
 msgid "line %d: script program must begin with '/': %s"
 msgstr ""
 
-#: ../build/parseScript.c:203
+#: build/parseScript.c:201
 #, c-format
 msgid "line %d: Second %s"
 msgstr ""
 
+#: build/parseSpec.c:126
+#, fuzzy, c-format
+msgid "line %d: %s"
+msgstr "%s açýlamadý: %s"
+
 # , c-format
-#: ../build/parseSpec.c:120
+#: build/parseSpec.c:172
 #, fuzzy, c-format
 msgid "Unable to open: %s\n"
 msgstr "%s 'ye eriþimde hata oluþtu\n"
 
-#: ../build/parseSpec.c:132
+#: build/parseSpec.c:184
 msgid "Unclosed %%if"
 msgstr ""
 
-#: ../build/parseSpec.c:188
-#, fuzzy, c-format
-msgid "line %d: %s"
-msgstr "%s açýlamadý: %s"
+#: build/parseSpec.c:243
+#, c-format
+msgid "%s:%d: parseExpressionBoolean returns %d"
+msgstr ""
 
 #. Got an else with no %if !
-#: ../build/parseSpec.c:213
+#: build/parseSpec.c:251
 msgid "%s:%d: Got a %%else with no if"
 msgstr ""
 
 #. Got an end with no %if !
-#: ../build/parseSpec.c:223
+#: build/parseSpec.c:262
 msgid "%s:%d: Got a %%endif with no if"
 msgstr ""
 
-#: ../build/parseSpec.c:235 ../build/parseSpec.c:244
+#: build/parseSpec.c:276 build/parseSpec.c:285
 msgid "malformed %%include statement"
 msgstr ""
 
-#: ../build/parseSpec.c:323
+#: build/parseSpec.c:366
 #, c-format
 msgid "Timecheck value must be an integer: %s"
 msgstr ""
 
-#: ../build/parseSpec.c:406
+#: build/parseSpec.c:449
 #, fuzzy
 msgid "No buildable architectures"
 msgstr "paket mimarisini doðrulamaz"
 
-#: ../build/parseSpec.c:451
+#: build/parseSpec.c:494
 #, fuzzy
 msgid "Package has no %%description: %s"
 msgstr "%s paketi %s altýnda gözükmüyor"
 
-#: ../build/spec.c:28
+#: build/spec.c:31
 #, c-format
 msgid "archive = %s, fs = %s\n"
 msgstr ""
 
-#: ../build/spec.c:224
+#: build/spec.c:237
 #, fuzzy, c-format
 msgid "line %d: Bad number: %s"
 msgstr "geçersiz paket numarsý: %s\n"
 
-#: ../build/spec.c:230
+#: build/spec.c:243
 #, c-format
 msgid "line %d: Bad no%s number: %d"
 msgstr ""
 
-#: ../build/spec.c:286
+#: build/spec.c:301
 #, fuzzy, c-format
 msgid "line %d: Bad %s number: %s\n"
 msgstr "geçersiz paket numarsý: %s\n"
 
-#: ../lib/cpio.c:362
+#: lib/cpio.c:385
 #, fuzzy, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr "%s okunamadý: %s"
 
-#: ../lib/cpio.c:368
+#: lib/cpio.c:391
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: ../lib/cpio.c:547
+#: lib/cpio.c:582
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: ../lib/cpio.c:1000
+#: lib/cpio.c:1044
 #, fuzzy, c-format
 msgid "(error 0x%x)"
 msgstr "hata: "
 
-#: ../lib/cpio.c:1003
+#: lib/cpio.c:1047
 msgid "Bad magic"
 msgstr ""
 
-#: ../lib/cpio.c:1004
+#: lib/cpio.c:1048
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: ../lib/cpio.c:1022
-#, fuzzy
-msgid "Internal error"
-msgstr "ölümcül hata: "
-
-#: ../lib/cpio.c:1023
+#: lib/cpio.c:1066
 msgid "Header size too big"
 msgstr ""
 
-#: ../lib/cpio.c:1024
+#: lib/cpio.c:1067
 #, fuzzy
 msgid "Unknown file type"
 msgstr "(bilinmeyen tip)"
 
-#: ../lib/cpio.c:1033
+#: lib/cpio.c:1068
+msgid "Missing hard link"
+msgstr ""
+
+#: lib/cpio.c:1069
+#, fuzzy
+msgid "Internal error"
+msgstr "ölümcül hata: "
+
+#: lib/cpio.c:1078
 #, fuzzy
 msgid " failed - "
 msgstr "PGP hata verdi"
 
-#: ../lib/dbindex.c:32
+#: lib/dbindex.c:32
 #, fuzzy, c-format
 msgid "cannot open file %s: %s"
 msgstr "%s dosyasý açýlamýyor: "
 
-#: ../lib/dbindex.c:77
+#: lib/dbindex.c:84
 #, c-format
 msgid "error getting record %s from %s"
 msgstr "%s kaydýna %s dosyasýnda eriþilemiyor:"
 
-#: ../lib/dbindex.c:105
+#: lib/dbindex.c:111
 #, c-format
 msgid "error storing record %s into %s"
 msgstr "%s kaydý %s dosyasýna yazýlamýyor"
 
-#: ../lib/dbindex.c:112
+#: lib/dbindex.c:118
 #, c-format
 msgid "error removing record %s into %s"
 msgstr "%s kaydýnýn %s dosyasýndan silinmesinde hata"
 
-#: ../lib/depends.c:429 ../lib/depends.c:588
+#. XXX legacy epoch-less requires/conflicts compatibility
+#: lib/depends.c:339
 #, c-format
-msgid "cannot read header at %d for dependency check"
-msgstr "baðýmlýlýk sorgulamasý için %d numaralý baþlýk okunamýyor"
+msgid ""
+"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
+"\tA %s\tB %s\n"
+msgstr ""
+
+#: lib/depends.c:368
+#, c-format
+msgid "  %s    A %s\tB %s\n"
+msgstr ""
+
+#: lib/depends.c:460
+msgid "dbrecMatchesDepFlags() failed to read header"
+msgstr ""
+
+#: lib/depends.c:695
+#, fuzzy, c-format
+msgid "%s: %s satisfied by added package.\n"
+msgstr "%s dosyasý, hiç bir pakete ait deðil\n"
+
+#: lib/depends.c:712
+#, c-format
+msgid "%s: %s satisfied by added provide.\n"
+msgstr ""
+
+#: lib/depends.c:717
+#, c-format
+msgid "%s: %s satisfied by added file list.\n"
+msgstr ""
+
+#: lib/depends.c:747
+#, c-format
+msgid "%s: %s satisfied by rpmrc provides.\n"
+msgstr ""
+
+#: lib/depends.c:775
+#, c-format
+msgid "%s: %s satisfied by db file lists.\n"
+msgstr ""
 
-#: ../lib/depends.c:494
+#: lib/depends.c:797
 #, c-format
-msgid "dependencies: looking for %s\n"
+msgid "%s: %s satisfied by db provides.\n"
 msgstr ""
 
-#: ../lib/depends.c:682
+#: lib/depends.c:819
+#, fuzzy, c-format
+msgid "%s: %s satisfied by db packages.\n"
+msgstr "%s dosyasý, hiç bir pakete ait deðil\n"
+
+#: lib/depends.c:832
+#, c-format
+msgid "%s: %s satisfied by rpmlib version.\n"
+msgstr ""
+
+#: lib/depends.c:842
+#, c-format
+msgid "%s: %s unsatisfied.\n"
+msgstr ""
+
+#. requirements are not satisfied.
+#: lib/depends.c:890
 #, fuzzy, c-format
 msgid "package %s require not satisfied: %s\n"
 msgstr "%s paketi %s altýnda gözükmüyor"
 
-#: ../lib/depends.c:725
+#. conflicts exist.
+#: lib/depends.c:952
 #, fuzzy, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "%s paketi %s altýnda gözükmüyor"
 
-#: ../lib/depends.c:825
-msgid "dbrecMatchesDepFlags() failed to read header"
-msgstr ""
+#: lib/depends.c:1007 lib/depends.c:1311
+#, c-format
+msgid "cannot read header at %d for dependency check"
+msgstr "baðýmlýlýk sorgulamasý için %d numaralý baþlýk okunamýyor"
 
-#: ../lib/depends.c:877
+#: lib/depends.c:1102
 #, c-format
 msgid "loop in prerequisite chain: %s"
 msgstr "gerekenler zincirinde döngü: %s"
 
-#: ../lib/falloc.c:149
+#: lib/falloc.c:160
 #, c-format
-msgid "free list corrupt (%u)- contact rpm-list@redhat.com\n"
+msgid ""
+"free list corrupt (%u)- please run\n"
+"\t\"rpm --rebuilddb\"\n"
+"More information is available from http://www.rpm.org or the "
+"rpm-list@redhat.com mailing list\n"
+"if \"rpm --rebuilddb\" fails to correct the problem.\n"
 msgstr ""
 
-#: ../lib/formats.c:97 ../lib/formats.c:114 ../lib/formats.c:134
-#: ../lib/formats.c:166 ../lib/header.c:1973 ../lib/header.c:1989
-#: ../lib/header.c:2009
+#: lib/formats.c:66 lib/formats.c:84 lib/formats.c:105 lib/formats.c:138
+#: lib/header.c:2122 lib/header.c:2139 lib/header.c:2159
 msgid "(not a number)"
 msgstr "(üye deðil)"
 
-#: ../lib/fs.c:41
+#: lib/fs.c:40
 #, c-format
 msgid "mntctl() failed to return fugger size: %s"
 msgstr "mntctl() çaðrýsý boyut bilgisi vermedi: %s"
 
-#: ../lib/fs.c:76 ../lib/fs.c:246
+#: lib/fs.c:75 lib/fs.c:253
 #, fuzzy, c-format
 msgid "failed to stat %s: %s"
 msgstr "%s açýlamadý: %s"
 
-#: ../lib/fs.c:117
+#: lib/fs.c:114
+msgid "getting list of mounted filesystems\n"
+msgstr ""
+
+#: lib/fs.c:119
 #, c-format
 msgid "failed to open %s: %s"
 msgstr "%s açýlamadý: %s"
 
-#: ../lib/fs.c:267
+#: lib/fs.c:274
 #, c-format
 msgid "file %s is on an unknown device"
 msgstr ""
 
-#: ../lib/header.c:669
-#, c-format
-msgid "Data type %d not supprted\n"
+#: lib/ftp.c:666
+msgid "Success"
+msgstr ""
+
+#: lib/ftp.c:669
+#, fuzzy
+msgid "Bad server response"
+msgstr "FTP sunucusundan kötü yanýt"
+
+#: lib/ftp.c:672
+#, fuzzy
+msgid "Server IO error"
+msgstr "FTP I/O hatasý"
+
+#: lib/ftp.c:675
+#, fuzzy
+msgid "Server timeout"
+msgstr "FTP sunucusu zaman aþýmý"
+
+#: lib/ftp.c:678
+#, fuzzy
+msgid "Unable to lookup server host address"
+msgstr "FTP sunucusunun isim adres dönüþümü yapýlamadý"
+
+#: lib/ftp.c:681
+#, fuzzy
+msgid "Unable to lookup server host name"
+msgstr "FTP sunucusunun adres isim dönüþümü yapýlamadý"
+
+#: lib/ftp.c:684
+#, fuzzy
+msgid "Failed to connect to server"
+msgstr "FTP sunucusuna baðlanýlamadý"
+
+#: lib/ftp.c:687
+#, fuzzy
+msgid "Failed to establish data connection to server"
+msgstr "FTP sunucusu ile veri alýþveriþi yapýlamadý"
+
+#: lib/ftp.c:690
+msgid "IO error to local file"
+msgstr "Yerel dosyaya eriþim sýrasýnda I/O hatasý"
+
+#: lib/ftp.c:693
+msgid "Error setting remote server to passive mode"
+msgstr "Karþý sunucuyu pasif kipe sokam hatasý"
+
+#: lib/ftp.c:696
+msgid "File not found on server"
+msgstr "Dosya sunucuda bulunamadý"
+
+#: lib/ftp.c:699
+msgid "Abort in progress"
 msgstr ""
 
+#: lib/ftp.c:703
+#, fuzzy
+msgid "Unknown or unexpected error"
+msgstr "FTP bilinmeyen ya da beklenmeyen hata"
+
 #. This should not be allowed
-#: ../lib/header.c:905
+#: lib/header.c:169
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: ../lib/header.c:935
+#: lib/header.c:200
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: ../lib/header.c:994
+#: lib/header.c:763
 #, c-format
-msgid "Bad count for headerAddEntry(): %d\n"
+msgid "Data type %d not supprted\n"
 msgstr ""
 
-#: ../lib/header.c:1328
-msgid "? expected in expression"
-msgstr "dizi içerisinde ? bekleniyordu"
-
-#: ../lib/header.c:1335
-#, fuzzy
-msgid "{ expected after ? in expression"
-msgstr "dizi içerisinde ? den sonra { bekleniyordu"
-
-#: ../lib/header.c:1345 ../lib/header.c:1377
-msgid "} expected in expression"
-msgstr "dizi içerisinde } bekleniyordu"
-
-#: ../lib/header.c:1352
-msgid ": expected following ? subexpression"
-msgstr "? altdizisinden sonra : bekleniyordu"
-
-#: ../lib/header.c:1365
-#, fuzzy
-msgid "{ expected after : in expression"
-msgstr "dizide : den sonra { bekleniyordu"
-
-#: ../lib/header.c:1384
-msgid "| expected at end of expression"
-msgstr "dizinin sonunda | bekleniyordu"
+#: lib/header.c:1119
+#, c-format
+msgid "Bad count for headerAddEntry(): %d\n"
+msgstr ""
 
-#: ../lib/header.c:1478
+#: lib/header.c:1520
 #, c-format
 msgid "missing { after %"
 msgstr "% den sonra eksik {"
 
-#: ../lib/header.c:1506
+#: lib/header.c:1548
 msgid "missing } after %{"
 msgstr "%{ den sonra eksik }"
 
-#: ../lib/header.c:1518
+#: lib/header.c:1560
 msgid "empty tag format"
 msgstr "boþ tag tanýmlamasý"
 
-#: ../lib/header.c:1528
+#: lib/header.c:1570
 msgid "empty tag name"
 msgstr "boþ tag ismi"
 
-#: ../lib/header.c:1543
+#: lib/header.c:1585
 msgid "unknown tag"
 msgstr "bilinmeyen tag"
 
-#: ../lib/header.c:1569
+#: lib/header.c:1611
 msgid "] expected at end of array"
 msgstr "dizinin sonunda ] bekleniyordu"
 
-#: ../lib/header.c:1585
+#: lib/header.c:1627
 msgid "unexpected ]"
 msgstr "beklenmeyen ]"
 
-#: ../lib/header.c:1587
+#: lib/header.c:1629
 msgid "unexpected }"
 msgstr "beklenmeyen }"
 
-#: ../lib/header.c:1762
+#: lib/header.c:1682
+msgid "? expected in expression"
+msgstr "dizi içerisinde ? bekleniyordu"
+
+#: lib/header.c:1689
+#, fuzzy
+msgid "{ expected after ? in expression"
+msgstr "dizi içerisinde ? den sonra { bekleniyordu"
+
+#: lib/header.c:1699 lib/header.c:1731
+msgid "} expected in expression"
+msgstr "dizi içerisinde } bekleniyordu"
+
+#: lib/header.c:1706
+msgid ": expected following ? subexpression"
+msgstr "? altdizisinden sonra : bekleniyordu"
+
+#: lib/header.c:1719
+#, fuzzy
+msgid "{ expected after : in expression"
+msgstr "dizide : den sonra { bekleniyordu"
+
+#: lib/header.c:1738
+msgid "| expected at end of expression"
+msgstr "dizinin sonunda | bekleniyordu"
+
+#: lib/header.c:1905
 msgid "(unknown type)"
 msgstr "(bilinmeyen tip)"
 
-#: ../lib/install.c:93
-msgid "source package expected, binary found"
-msgstr ""
-
-#: ../lib/install.c:169 ../lib/uninstall.c:111
+#: lib/install.c:141 lib/uninstall.c:179
 #, fuzzy, c-format
 msgid "   file: %s action: %s\n"
 msgstr "%s açýlamadý: %s"
 
-#: ../lib/install.c:186
+#: lib/install.c:159
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: ../lib/install.c:194
+#: lib/install.c:167
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: ../lib/install.c:221
+#: lib/install.c:195
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
-#: ../lib/install.c:289
-#, fuzzy, c-format
-msgid "package: %s-%s-%s files test = %d\n"
-msgstr "Paket %s-%s-%s ortak (shared) dosyalar içeriyor\n"
-
-#: ../lib/install.c:352
-msgid "stopping install as we're running --test\n"
-msgstr ""
-
-#: ../lib/install.c:357
-msgid "running preinstall script (if any)\n"
-msgstr ""
-
-#: ../lib/install.c:387
+#. this would probably be a good place to check if disk space
+#. was used up - if so, we should return a different error
+#: lib/install.c:358
 #, c-format
-msgid "warning: %s created as %s"
+msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: ../lib/install.c:423
-#, c-format
-msgid "warning: %s saved as %s"
+#: lib/install.c:359
+msgid " on file "
 msgstr ""
 
-#: ../lib/install.c:427 ../lib/install.c:790 ../lib/uninstall.c:337
-#, c-format
-msgid "rename of %s to %s failed: %s"
-msgstr "%s 'nin isminin  %s 'ye çevrilmesinde belirtilen hata oluþtu: %s"
-
-#: ../lib/install.c:507
-msgid "running postinstall script (if any)\n"
-msgstr ""
-
-#. this would probably be a good place to check if disk space
-#. was used up - if so, we should return a different error
-#: ../lib/install.c:613
-#, c-format
-msgid "unpacking of archive failed%s%s: %s"
-msgstr ""
-
-#: ../lib/install.c:614
-msgid " on file "
-msgstr ""
-
-#: ../lib/install.c:654
+#: lib/install.c:402
 #, fuzzy
 msgid "installing a source package\n"
 msgstr "paket yüklemek"
 
-#: ../lib/install.c:665 ../lib/install.c:687
+#: lib/install.c:413
 #, fuzzy, c-format
-msgid "cannot create %s"
+msgid "cannot create %s: %s"
 msgstr "%s dosyasý açýlamýyor: "
 
-#: ../lib/install.c:672 ../lib/install.c:694
+#: lib/install.c:421 lib/install.c:443
 #, fuzzy, c-format
 msgid "cannot write to %s"
 msgstr "%s dosyasý açýlamýyor: "
 
-#: ../lib/install.c:676
+#: lib/install.c:425
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: ../lib/install.c:698
+#: lib/install.c:436
+#, fuzzy, c-format
+msgid "cannot create %s"
+msgstr "%s dosyasý açýlamýyor: "
+
+#: lib/install.c:447
 #, fuzzy, c-format
 msgid "spec file in: %s\n"
 msgstr "%s açýlamadý: %s"
 
-#: ../lib/install.c:731 ../lib/install.c:767
+#: lib/install.c:481 lib/install.c:509
 #, fuzzy
 msgid "source package contains no .spec file"
 msgstr "<dosya> isimli dosyayý içeren paketi sorgulamak"
 
-#: ../lib/install.c:788
+#: lib/install.c:530
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: ../lib/lookup.c:83
+#: lib/install.c:532 lib/install.c:810 lib/uninstall.c:26
+#, c-format
+msgid "rename of %s to %s failed: %s"
+msgstr "%s 'nin isminin  %s 'ye çevrilmesinde belirtilen hata oluþtu: %s"
+
+#: lib/install.c:622
+msgid "source package expected, binary found"
+msgstr ""
+
+#: lib/install.c:679
+#, fuzzy, c-format
+msgid "package: %s-%s-%s files test = %d\n"
+msgstr "Paket %s-%s-%s ortak (shared) dosyalar içeriyor\n"
+
+#: lib/install.c:740
+msgid "stopping install as we're running --test\n"
+msgstr ""
+
+#: lib/install.c:745
+msgid "running preinstall script (if any)\n"
+msgstr ""
+
+#: lib/install.c:770
+#, c-format
+msgid "warning: %s created as %s"
+msgstr ""
+
+#: lib/install.c:806
+#, c-format
+msgid "warning: %s saved as %s"
+msgstr ""
+
+#: lib/install.c:880
+msgid "running postinstall scripts (if any)\n"
+msgstr ""
+
+#: lib/lookup.c:35
 #, c-format
 msgid "cannot read header at %d for lookup"
 msgstr "%d kaydýndan baþlýk bilgisi okunamadý"
 
-#: ../lib/macro.c:129
+#: lib/macro.c:149
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr ""
 
 #. XXX just in case
-#: ../lib/macro.c:218
+#: lib/macro.c:243
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: ../lib/macro.c:253
+#: lib/macro.c:278
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: ../lib/macro.c:426
+#: lib/macro.c:457
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: ../lib/macro.c:452
+#: lib/macro.c:483
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: ../lib/macro.c:458
+#: lib/macro.c:489
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: ../lib/macro.c:463
+#: lib/macro.c:494
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: ../lib/macro.c:468
+#: lib/macro.c:499
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: ../lib/macro.c:493
+#: lib/macro.c:524
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: ../lib/macro.c:566
+#: lib/macro.c:601
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: ../lib/macro.c:650
+#: lib/macro.c:698
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr ""
 
-#: ../lib/macro.c:825
+#: lib/macro.c:870
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: ../lib/macro.c:881 ../lib/macro.c:897
+#: lib/macro.c:936 lib/macro.c:952
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: ../lib/macro.c:930
+#: lib/macro.c:992
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: ../lib/macro.c:1053
+#: lib/macro.c:1115
 #, fuzzy
 msgid "Macro %%%.*s not found, skipping"
 msgstr "%s pakedi %s içerisinde bulunamadý"
 
-#: ../lib/macro.c:1131
+#: lib/macro.c:1196
 msgid "Target buffer overflow"
 msgstr ""
 
-#: ../lib/macro.c:1274 ../lib/macro.c:1282
+#: lib/macro.c:1343 lib/macro.c:1351
 #, fuzzy, c-format
 msgid "File %s: %s"
 msgstr "%s açýlamadý: %s"
 
-#: ../lib/macro.c:1285
+#: lib/macro.c:1354
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
 
-#: ../lib/messages.c:51
+#: lib/messages.c:55
 msgid "warning: "
 msgstr "uyarý: "
 
-#: ../lib/messages.c:57
+#: lib/messages.c:64
 msgid "error: "
 msgstr "hata: "
 
-#: ../lib/messages.c:63
+#: lib/messages.c:73
 msgid "fatal error: "
 msgstr "ölümcül hata: "
 
-#: ../lib/messages.c:70
+#: lib/messages.c:82
 msgid "internal error (rpm bug?): "
 msgstr ""
 
-#: ../lib/misc.c:342 ../lib/misc.c:348 ../lib/misc.c:355
+#: lib/misc.c:367 lib/misc.c:373 lib/misc.c:380
 #, fuzzy, c-format
 msgid "error creating temporary file %s"
 msgstr "%s dizinin oluþturulmasýnda hata: %s"
 
-#: ../lib/oldheader.c:292
+#: lib/oldheader.c:299
 #, fuzzy, c-format
 msgid "bad file state: %s"
 msgstr "%s açýlamadý: %s"
 
-#: ../lib/package.c:51
+#: lib/package.c:234
 msgid "package is a version one package!\n"
 msgstr ""
 
-#: ../lib/package.c:54
+#: lib/package.c:239
 msgid "old style source package -- I'll do my best\n"
 msgstr ""
 
-#: ../lib/package.c:57
+#: lib/package.c:242
 #, c-format
 msgid "archive offset is %d\n"
 msgstr ""
 
-#: ../lib/package.c:67
+#: lib/package.c:252
 msgid "old style binary package\n"
 msgstr ""
 
-#: ../lib/package.c:105
+#: lib/package.c:298
 msgid ""
 "only packages with major numbers <= 3 are supported by this version of RPM"
 msgstr ""
 "RPM'in bu sürümünde sadece major numarasý <= 3 olan paketler destekleniyor"
 
-#: ../lib/problems.c:29
+#: lib/problems.c:43
+#, c-format
+msgid " is needed by %s-%s-%s\n"
+msgstr ", %s-%s-%s tarafýndan kullanýlýyor\n"
+
+#: lib/problems.c:46
+#, c-format
+msgid " conflicts with %s-%s-%s\n"
+msgstr ", %s-%s-%s ile çeliþiyor\n"
+
+#: lib/problems.c:66
 #, fuzzy, c-format
-msgid "package %s-%s-%s is for a different operating system"
+msgid "package %s-%s-%s is for a different architecture"
 msgstr "Paket %s-%s-%s ortak (shared) dosyalar içeriyor\n"
 
-#: ../lib/problems.c:34
+#: lib/problems.c:71
 #, fuzzy, c-format
-msgid "package %s-%s-%s is for a different architecture"
+msgid "package %s-%s-%s is for a different operating system"
 msgstr "Paket %s-%s-%s ortak (shared) dosyalar içeriyor\n"
 
-#: ../lib/problems.c:39
+#: lib/problems.c:76
 #, fuzzy, c-format
 msgid "package %s-%s-%s is already installed"
 msgstr "%s pakedi yüklenmemiþ\n"
 
-#: ../lib/problems.c:44
+#: lib/problems.c:81
 #, fuzzy, c-format
 msgid "path %s is not relocateable for package %s-%s-%s"
 msgstr "%s pakedi yüklenmemiþ\n"
 
-#: ../lib/problems.c:49
+#: lib/problems.c:86
 #, c-format
 msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
 msgstr ""
 
-#: ../lib/problems.c:55
+#: lib/problems.c:92
 #, fuzzy, c-format
 msgid ""
 "file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
 msgstr ", %s-%s-%s ile çeliþiyor\n"
 
-#: ../lib/problems.c:61
+#: lib/problems.c:98
 #, fuzzy, c-format
 msgid "package %s-%s-%s (which is newer then %s-%s-%s) is already installed"
 msgstr "Paket %s-%s-%s ortak (shared) dosyalar içeriyor\n"
 
-#: ../lib/problems.c:67
+#: lib/problems.c:104
 #, c-format
-msgid "installing package %s-%s-%s needs %ld%c on the %s filesystem"
+msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
 msgstr ""
 
-#: ../lib/problems.c:77
+#: lib/problems.c:116
 #, c-format
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
 
-#: ../lib/query.c:57
-#, fuzzy
-msgid "query package owning file"
-msgstr "<dosya> isimli dosyayý içeren paketi sorgulamak"
-
-#: ../lib/query.c:59
-#, fuzzy
-msgid "query packages in group"
-msgstr "pakedin adý yok :-)"
-
-#: ../lib/query.c:61
-#, fuzzy
-msgid "query a package file"
-msgstr "Tüm paketleri sorgulama"
-
-#: ../lib/query.c:65
-#, fuzzy
-msgid "query a spec file"
-msgstr "%s 'nin sorgulamasý baþarýsýzlýkla sonuçlandý\n"
-
-#: ../lib/query.c:67
-#, fuzzy
-msgid "query the pacakges triggered by the package"
-msgstr "<dosya> isimli dosyayý içeren paketi sorgulamak"
-
-#: ../lib/query.c:69
-#, fuzzy
-msgid "query the packages which require a capability"
-msgstr "<i> yeteneðine ihtiyaç duyan paketleri sorgulama"
-
-#: ../lib/query.c:71
-#, fuzzy
-msgid "query the packages which provide a capability"
-msgstr "<i> yeteneði olan paketleri sorgulama"
-
-#: ../lib/query.c:108
-#, fuzzy
-msgid "list all configuration files"
-msgstr ""
-"sadece yapýlandýrma (configuration) dosyalarýný gösterir (impliziert -l)"
-
-#: ../lib/query.c:110
-#, fuzzy
-msgid "list all documentation files"
-msgstr "paket ile gelen belgeleri de yükler"
-
-#: ../lib/query.c:112
-#, fuzzy
-msgid "dump basic file information"
-msgstr "Paket bilgisini gösterme"
-
-#: ../lib/query.c:114
-#, fuzzy
-msgid "list files in package"
-msgstr "paket yüklemek"
-
-#: ../lib/query.c:118
-msgid "use the following query format"
-msgstr ""
-
-#: ../lib/query.c:120
-msgid "substitute i18n sections from the following catalogue"
-msgstr ""
-
-#: ../lib/query.c:123
-msgid "display the states of the listed files"
-msgstr ""
-
-#: ../lib/query.c:125
-#, fuzzy
-msgid "display a verbose file listing"
-msgstr "Paketin içerdiði dosyalarý gösterme"
-
-#: ../lib/query.c:136
+#: lib/query.c:138
 #, c-format
 msgid "error in format: %s\n"
 msgstr "format hatasý: %s\n"
 
-#: ../lib/query.c:177
+#: lib/query.c:180
 msgid "(contains no files)"
 msgstr "(hiç dosya içermiyor)"
 
-#: ../lib/query.c:230
+#: lib/query.c:233
 msgid "normal        "
 msgstr ""
 
-#: ../lib/query.c:232
+#: lib/query.c:235
 msgid "replaced      "
 msgstr ""
 
-#: ../lib/query.c:234
-msgid "net shared    "
-msgstr ""
-
-#: ../lib/query.c:236
+#: lib/query.c:237
 #, fuzzy
 msgid "not installed "
 msgstr "%s pakedi yüklenmemiþ\n"
 
-#: ../lib/query.c:238
+#: lib/query.c:239
+msgid "net shared    "
+msgstr ""
+
+#: lib/query.c:241
 #, fuzzy, c-format
 msgid "(unknown %3d) "
 msgstr "(bilinmeyen tip)"
 
-#: ../lib/query.c:242
+#: lib/query.c:245
 msgid "(no state)    "
 msgstr ""
 
-#: ../lib/query.c:258 ../lib/query.c:288
+#: lib/query.c:261 lib/query.c:291
 msgid "package has neither file owner or id lists"
 msgstr ""
 
-#: ../lib/query.c:514
+#: lib/query.c:400
 #, c-format
 msgid "record number %u\n"
 msgstr ""
 
-#: ../lib/query.c:518
+#: lib/query.c:404
 msgid "error: could not read database record\n"
 msgstr "hata: veritabaný kaydý okunamadý\n"
 
-#: ../lib/query.c:547
+#: lib/query.c:442
 #, fuzzy, c-format
-msgid "open of %s failed\n"
+msgid "open of %s failed: %s\n"
 msgstr "%s 'ye erisimde belirtilen hata oluþtu: %s\n"
 
-#: ../lib/query.c:560
+#: lib/query.c:455
 msgid "old format source packages cannot be queried\n"
 msgstr "eski tip kaynak paketleri sorgulanamýyor\n"
 
-#: ../lib/query.c:572
+#: lib/query.c:464 lib/rpminstall.c:203
+#, c-format
+msgid "%s does not appear to be a RPM package\n"
+msgstr "%s bir RPM paketi deðil (gibi)\n"
+
+#: lib/query.c:467
 #, c-format
 msgid "query of %s failed\n"
 msgstr "%s 'nin sorgulamasý baþarýsýzlýkla sonuçlandý\n"
 
-#: ../lib/query.c:593
+#: lib/query.c:494
 #, fuzzy, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "%s 'nin sorgulamasý baþarýsýzlýkla sonuçlandý\n"
 
-#: ../lib/query.c:627
+#: lib/query.c:519
 msgid "could not read database record!\n"
 msgstr "veritabaný kaydý okunamadý!\n"
 
-#: ../lib/query.c:638
+#: lib/query.c:530
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "%s grubu hiç paket içermiyor\n"
 
-#: ../lib/query.c:648
+#: lib/query.c:540
 #, c-format
 msgid "no package provides %s\n"
 msgstr "hiç bir paket  %s saðlamýyor\n"
 
-#: ../lib/query.c:658
+#: lib/query.c:550
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "hiç bir paket %s tetiklemiyor\n"
 
-#: ../lib/query.c:668
+#: lib/query.c:560
 #, c-format
 msgid "no package requires %s\n"
 msgstr "hiç bir paket %s gerektirmiyor\n"
 
-#: ../lib/query.c:683
+#: lib/query.c:575
 #, fuzzy, c-format
 msgid "file %s: %s\n"
 msgstr "%s açýlamadý: %s"
 
-#: ../lib/query.c:686
+#: lib/query.c:578
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "%s dosyasý, hiç bir pakete ait deðil\n"
 
-#: ../lib/query.c:699
+#: lib/query.c:591
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "geçersiz paket numarsý: %s\n"
 
-#: ../lib/query.c:702
+#: lib/query.c:594
 #, fuzzy, c-format
 msgid "package record number: %d\n"
 msgstr "geçersiz paket numarsý: %s\n"
 
-#: ../lib/query.c:705
+#: lib/query.c:597
 #, c-format
 msgid "record %d could not be read\n"
 msgstr "%d numaralý kayýt okunamadý\n"
 
-#: ../lib/query.c:720
+#: lib/query.c:609 lib/rpminstall.c:393
+#, c-format
+msgid "package %s is not installed\n"
+msgstr "%s pakedi yüklenmemiþ\n"
+
+#: lib/query.c:612
 #, c-format
 msgid "error looking for package %s\n"
 msgstr "%s pakedi aranýrken hata oluþtu\n"
 
-#: ../lib/query.c:742
+#: lib/query.c:634
 #, fuzzy
 msgid "rpmQuery: rpmdbOpen() failed\n"
 msgstr "%s: Eriþilemedi\n"
 
-#: ../lib/rebuilddb.c:18
+#: lib/query.c:691
+#, fuzzy
+msgid "query package owning file"
+msgstr "<dosya> isimli dosyayý içeren paketi sorgulamak"
+
+#: lib/query.c:693
+#, fuzzy
+msgid "query packages in group"
+msgstr "pakedin adý yok :-)"
+
+#: lib/query.c:695
+#, fuzzy
+msgid "query a package file"
+msgstr "Tüm paketleri sorgulama"
+
+#: lib/query.c:699
+#, fuzzy
+msgid "query a spec file"
+msgstr "%s 'nin sorgulamasý baþarýsýzlýkla sonuçlandý\n"
+
+#: lib/query.c:701
+#, fuzzy
+msgid "query the pacakges triggered by the package"
+msgstr "<dosya> isimli dosyayý içeren paketi sorgulamak"
+
+#: lib/query.c:703
+#, fuzzy
+msgid "query the packages which require a capability"
+msgstr "<i> yeteneðine ihtiyaç duyan paketleri sorgulama"
+
+#: lib/query.c:705
+#, fuzzy
+msgid "query the packages which provide a capability"
+msgstr "<i> yeteneði olan paketleri sorgulama"
+
+#: lib/query.c:742
+#, fuzzy
+msgid "list all configuration files"
+msgstr ""
+"sadece yapýlandýrma (configuration) dosyalarýný gösterir (impliziert -l)"
+
+#: lib/query.c:744
+#, fuzzy
+msgid "list all documentation files"
+msgstr "paket ile gelen belgeleri de yükler"
+
+#: lib/query.c:746
+#, fuzzy
+msgid "dump basic file information"
+msgstr "Paket bilgisini gösterme"
+
+#: lib/query.c:748
+#, fuzzy
+msgid "list files in package"
+msgstr "paket yüklemek"
+
+#: lib/query.c:752
+msgid "use the following query format"
+msgstr ""
+
+#: lib/query.c:754
+msgid "substitute i18n sections from the following catalogue"
+msgstr ""
+
+#: lib/query.c:757
+msgid "display the states of the listed files"
+msgstr ""
+
+#: lib/query.c:759
+#, fuzzy
+msgid "display a verbose file listing"
+msgstr "Paketin içerdiði dosyalarý gösterme"
+
+#: lib/rebuilddb.c:20
 #, fuzzy, c-format
 msgid "rebuilding database in rootdir %s\n"
 msgstr "mevcut veritabanýný kullanýlarak veritabýnýný yeniden oluþturur"
 
-#: ../lib/rebuilddb.c:22 ../lib/rpmdb.c:64 ../lib/rpmdb.c:82 ../lib/rpmdb.c:98
+#: lib/rebuilddb.c:24 lib/rpmdb.c:69 lib/rpmdb.c:88 lib/rpmdb.c:105
 msgid "no dbpath has been set"
 msgstr "dbpath deðeri girilmemiþ"
 
-#: ../lib/rebuilddb.c:30
+#: lib/rebuilddb.c:33
 #, c-format
 msgid "temporary database %s already exists"
 msgstr "geçici veritabaný %s mevcut"
 
-#: ../lib/rebuilddb.c:34
+#: lib/rebuilddb.c:37
 #, fuzzy, c-format
 msgid "creating directory: %s\n"
 msgstr "%s dizinin oluþturulmasýnda hata: %s"
 
-#: ../lib/rebuilddb.c:36
+#: lib/rebuilddb.c:39
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr "%s dizinin oluþturulmasýnda hata: %s"
 
-#: ../lib/rebuilddb.c:44
+#: lib/rebuilddb.c:43
 msgid "opening old database\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:51
+#: lib/rebuilddb.c:50
 msgid "opening new database\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:61 ../lib/rebuilddb.c:79
+#: lib/rebuilddb.c:60 lib/rebuilddb.c:78
 #, c-format
 msgid "record number %d in database is bad -- skipping it"
 msgstr "veritabanýndaki %d numaralý kayýt hatalý -- atlanýyor"
 
-#: ../lib/rebuilddb.c:73
+#: lib/rebuilddb.c:72
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr "%d de yer alan kayýt saklayamýyor"
 
-#: ../lib/rebuilddb.c:92
+#: lib/rebuilddb.c:91
 msgid "failed to rebuild database; original database remains in place\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:100
+#: lib/rebuilddb.c:99
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: ../lib/rebuilddb.c:102
+#: lib/rebuilddb.c:101
 #, c-format
 msgid "replaces files in %s with files from %s to recover"
 msgstr ""
 
-#: ../lib/rebuilddb.c:108
+#: lib/rebuilddb.c:107
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "%s açýlamadý: %s"
 
-#: ../lib/rpmdb.c:159
+#: lib/rpmchecksig.c:31
+#, fuzzy, c-format
+msgid "%s: fdOpen failed: %s\n"
+msgstr "%s: Eriþilemedi\n"
+
+#: lib/rpmchecksig.c:42
+#, fuzzy
+msgid "makeTempFile failed\n"
+msgstr "%s: Eriþilemedi\n"
+
+#: lib/rpmchecksig.c:74
+#, fuzzy, c-format
+msgid "%s: fdWrite failed: %s\n"
+msgstr "%s: Eriþilemedi\n"
+
+#: lib/rpmchecksig.c:80
+#, fuzzy, c-format
+msgid "%s: fdRead failed: %s\n"
+msgstr "%s: 'readLead' hata verdi\n"
+
+#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:242
+#, c-format
+msgid "%s: readLead failed\n"
+msgstr "%s: 'readLead' hata verdi\n"
+
+#: lib/rpmchecksig.c:118
+#, c-format
+msgid "%s: Can't sign v1.0 RPM\n"
+msgstr "%s: v1.0-RPM (eski sürüm) imzalanamýyor\n"
+
+#: lib/rpmchecksig.c:122
+#, c-format
+msgid "%s: Can't re-sign v2.0 RPM\n"
+msgstr "%s: v2.0-RPM (eski sürüm) yeniden imzalanamýyor\n"
+
+#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:256
+#, c-format
+msgid "%s: rpmReadSignature failed\n"
+msgstr "%s: 'rpmReadSignature' hata verdi\n"
+
+#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:261
+#, c-format
+msgid "%s: No signature available\n"
+msgstr "%s: Ýmza bulunmuyor\n"
+
+#: lib/rpmchecksig.c:167
+#, fuzzy, c-format
+msgid "%s: writeLead failed: %s\n"
+msgstr "%s: 'readLead' hata verdi\n"
+
+#: lib/rpmchecksig.c:173
+#, fuzzy, c-format
+msgid "%s: rpmWriteSignature failed\n"
+msgstr "%s: 'rpmReadSignature' hata verdi\n"
+
+#: lib/rpmchecksig.c:248
+#, c-format
+msgid "%s: No signature available (v1.0 RPM)\n"
+msgstr "%s: Ýmza bulundurmuyor (v1.0 RPM)\n"
+
+#: lib/rpmchecksig.c:408
+msgid "NOT OK"
+msgstr ""
+
+#: lib/rpmchecksig.c:409 lib/rpmchecksig.c:423
+#, fuzzy
+msgid " (MISSING KEYS:"
+msgstr " (EKSÝK ANAHTARLAR)"
+
+#: lib/rpmchecksig.c:411 lib/rpmchecksig.c:425
+msgid ") "
+msgstr ""
+
+#: lib/rpmchecksig.c:412 lib/rpmchecksig.c:426
+msgid " (UNTRUSTED KEYS:"
+msgstr ""
+
+#: lib/rpmchecksig.c:414 lib/rpmchecksig.c:428
+msgid ")"
+msgstr ""
+
+#: lib/rpmchecksig.c:422
+msgid "OK"
+msgstr ""
+
+#: lib/rpmdb.c:184
 #, fuzzy, c-format
 msgid "opening database mode 0x%x in %s\n"
 msgstr "mevcut veritabanýný kullanýlarak veritabýnýný yeniden oluþturur"
 
-#: ../lib/rpmdb.c:182 ../lib/rpmdb.c:189
+# , c-format
+#: lib/rpmdb.c:193 lib/url.c:431
+#, c-format
+msgid "failed to open %s\n"
+msgstr "%s 'ye eriþimde hata oluþtu\n"
+
+#: lib/rpmdb.c:206 lib/rpmdb.c:214
 #, c-format
 msgid "cannot get %s lock on database"
 msgstr "Veritabaný için %s kilit (lock) alýnamadý"
 
-#: ../lib/rpmdb.c:183
+#: lib/rpmdb.c:207
 msgid "exclusive"
 msgstr "özel"
 
-#: ../lib/rpmdb.c:190
+#: lib/rpmdb.c:215
 msgid "shared"
 msgstr "paylaþýlan (shared)"
 
-#: ../lib/rpmdb.c:213
+#: lib/rpmdb.c:246
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
-#: ../lib/rpmdb.c:372
+#: lib/rpmdb.c:439
 #, c-format
 msgid "package %s not listed in %s"
 msgstr "%s paketi %s altýnda gözükmüyor"
 
-#: ../lib/rpmdb.c:383
+#: lib/rpmdb.c:450
 #, c-format
 msgid "package %s not found in %s"
 msgstr "%s pakedi %s içerisinde bulunamadý"
 
-#: ../lib/rpmdb.c:407 ../lib/uninstall.c:40
+#: lib/rpmdb.c:475 lib/uninstall.c:85
 #, c-format
 msgid "cannot read header at %d for uninstall"
 msgstr "%d numaralý paketin silmek için gereken 'header' kýsmý okunamadý"
 
-#: ../lib/rpmdb.c:415
+#: lib/rpmdb.c:483
 msgid "package has no name"
 msgstr "pakedin adý yok :-)"
 
-#: ../lib/rpmdb.c:417
+#: lib/rpmdb.c:485
 msgid "removing name index\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:422
+#: lib/rpmdb.c:490
 #, fuzzy
 msgid "package has no group\n"
 msgstr "pakedin adý yok :-)"
 
-#: ../lib/rpmdb.c:424
+#: lib/rpmdb.c:492
 msgid "removing group index\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:431
+#: lib/rpmdb.c:499
 #, fuzzy, c-format
 msgid "removing provides index for %s\n"
 msgstr "%s kaydýnýn %s dosyasýndan silinmesinde hata"
 
-#: ../lib/rpmdb.c:446
+#: lib/rpmdb.c:514
 #, fuzzy, c-format
 msgid "removing requiredby index for %s\n"
 msgstr "%s kaydýnýn %s dosyasýndan silinmesinde hata"
 
-#: ../lib/rpmdb.c:458
+#: lib/rpmdb.c:526
 #, fuzzy, c-format
 msgid "removing trigger index for %s\n"
 msgstr "%s kaydýnýn %s dosyasýndan silinmesinde hata"
 
-#: ../lib/rpmdb.c:469
+#: lib/rpmdb.c:537
 #, c-format
 msgid "removing conflict index for %s\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:486
+#: lib/rpmdb.c:554
 #, c-format
 msgid "removing file index for %s\n"
 msgstr ""
 
-#: ../lib/rpmdb.c:495
+#: lib/rpmdb.c:563
 #, fuzzy
 msgid "package has no files\n"
 msgstr "pakedin adý yok :-)"
 
 # reservieren???
-#: ../lib/rpmdb.c:568
+#: lib/rpmdb.c:645
 msgid "cannot allocate space for database"
 msgstr "Veritabaný için yer bulunamadý"
 
-#: ../lib/rpmdb.c:639
+#: lib/rpmdb.c:711
 #, c-format
 msgid "cannot read header at %d for update"
 msgstr "%d numaralý paketin güncelleme için gereken 'header' kýsmý okunamadý"
 
-#: ../lib/rpmdb.c:648
+#: lib/rpmdb.c:720
 msgid "header changed size!"
 msgstr ""
 
-#: ../lib/rpmlead.c:41
+#: lib/rpminstall.c:128
+#, fuzzy
+msgid "counting packages to install\n"
+msgstr "yüklenecek paketler belirtilmedi"
+
+#: lib/rpminstall.c:132
+#, fuzzy, c-format
+msgid "found %d packages\n"
+msgstr "Tüm paketleri sorgulama"
+
+#: lib/rpminstall.c:141
+#, fuzzy
+msgid "looking for packages to download\n"
+msgstr "%s pakedi aranýrken hata oluþtu\n"
+
+#: lib/rpminstall.c:152
+#, c-format
+msgid "Retrieving %s\n"
+msgstr "%s alýnýyor\n"
+
+#: lib/rpminstall.c:161
+#, c-format
+msgid " ... as %s\n"
+msgstr ""
+
+#: lib/rpminstall.c:165
+#, fuzzy, c-format
+msgid "skipping %s - transfer failed - %s\n"
+msgstr "hata: %s atlanýyor - aktarým baþarýsýz - %s\n"
+
+#: lib/rpminstall.c:182
+#, c-format
+msgid "retrieved %d packages\n"
+msgstr ""
+
+#: lib/rpminstall.c:191 lib/rpminstall.c:332
+#, fuzzy, c-format
+msgid "cannot open file %s\n"
+msgstr "%s dosyasý açýlamýyor: "
+
+#: lib/rpminstall.c:207 lib/rpminstall.c:469
+#, fuzzy, c-format
+msgid "%s cannot be installed\n"
+msgstr "hata: %s yüklenemedi\n"
+
+#: lib/rpminstall.c:243
+#, fuzzy, c-format
+msgid "package %s is not relocateable\n"
+msgstr "%s pakedi yüklenmemiþ\n"
+
+#: lib/rpminstall.c:261
+#, fuzzy, c-format
+msgid "error reading from file %s\n"
+msgstr "%s dizinin oluþturulmasýnda hata: %s"
+
+#: lib/rpminstall.c:266
+#, c-format
+msgid "file %s requires a newer version of RPM\n"
+msgstr ""
+
+#: lib/rpminstall.c:283
+#, fuzzy, c-format
+msgid "found %d source and %d binary packages\n"
+msgstr "%s grubu hiç paket içermiyor\n"
+
+#: lib/rpminstall.c:294
+msgid "failed dependencies:\n"
+msgstr "baðýmlýlýk hatasý, aþaðýdaki paketlere ihtiyacýnýz var:\n"
+
+#: lib/rpminstall.c:312
+#, fuzzy
+msgid "installing binary packages\n"
+msgstr "paket yüklemek"
+
+#: lib/rpminstall.c:397
+#, fuzzy, c-format
+msgid "searching for package %s\n"
+msgstr "%s paketi bulunamadý\n"
+
+#: lib/rpminstall.c:406
+#, c-format
+msgid "\"%s\" specifies multiple packages\n"
+msgstr "\"%s\" birden fazla paketi tanýmlýyor\n"
+
+#: lib/rpminstall.c:432
+msgid "removing these packages would break dependencies:\n"
+msgstr "bu paketin silinmesi aþaðýdaki baðýmlýlýklarý etkileyecektir:\n"
+
+#: lib/rpminstall.c:459
+#, fuzzy, c-format
+msgid "cannot open %s\n"
+msgstr "hata: %s eriþilemiyor\n"
+
+#: lib/rpminstall.c:464
+#, c-format
+msgid "Installing %s\n"
+msgstr "%s yükleniyor\n"
+
+#: lib/rpmlead.c:48
 #, c-format
 msgid "read failed: %s (%d)"
 msgstr "okuma hatasý: %s (%d)"
 
-#: ../lib/rpmrc.c:178
+#: lib/rpmrc.c:177
 #, c-format
 msgid "missing second ':' at %s:%d"
 msgstr "%s te ikinci ':' eksik:%d"
 
-#: ../lib/rpmrc.c:181
+#: lib/rpmrc.c:180
 #, c-format
 msgid "missing architecture name at %s:%d"
 msgstr "%s te eksik mimari tanýmlamasý:%d"
 
-#: ../lib/rpmrc.c:329
+#: lib/rpmrc.c:328
 #, c-format
 msgid "Incomplete data line at %s:%d"
 msgstr "%s te eksik data satýrý:%d"
 
-#: ../lib/rpmrc.c:333
+#: lib/rpmrc.c:332
 #, c-format
 msgid "Too many args in data line at %s:%d"
 msgstr "%s te data satýrýnda çok fazla argüman:%d"
 
-#: ../lib/rpmrc.c:340
+#: lib/rpmrc.c:339
 #, c-format
 msgid "Bad arch/os number: %s (%s:%d)"
 msgstr "Kötü arch/os numarasý %s: (%s:%d)"
 
-#: ../lib/rpmrc.c:374
+#: lib/rpmrc.c:373
 #, c-format
 msgid "Incomplete default line at %s:%d"
 msgstr "%s te eksik default satýrý:%d"
 
-#: ../lib/rpmrc.c:379
+#: lib/rpmrc.c:378
 #, c-format
 msgid "Too many args in default line at %s:%d"
 msgstr "%s te default satýrýnda çok fazla argüman:%d"
 
-#: ../lib/rpmrc.c:562
+#: lib/rpmrc.c:561
 #, c-format
 msgid "Cannot expand %s"
 msgstr ""
 
-#: ../lib/rpmrc.c:577
+#: lib/rpmrc.c:576
 #, c-format
 msgid "Unable to open %s for reading: %s."
 msgstr "%s okuma eriþimi için açýlamadý:%s."
 
-#: ../lib/rpmrc.c:611
+#: lib/rpmrc.c:608
 #, c-format
 msgid "Failed to read %s: %s."
 msgstr "%s okunamadý: %s"
 
-#: ../lib/rpmrc.c:642
+#: lib/rpmrc.c:638
 #, c-format
 msgid "missing ':' at %s:%d"
 msgstr "%s te eksik ':' :%d"
 
-#: ../lib/rpmrc.c:658 ../lib/rpmrc.c:716
+#: lib/rpmrc.c:655 lib/rpmrc.c:729
 #, c-format
 msgid "missing argument for %s at %s:%d"
 msgstr "%s için %s te eksik argüman :%d"
 
-#: ../lib/rpmrc.c:672 ../lib/rpmrc.c:690
+#: lib/rpmrc.c:672 lib/rpmrc.c:694
 #, fuzzy, c-format
 msgid "%s expansion failed at %s:%d \"%s\""
 msgstr "%s açýlamadý: %s"
 
-#: ../lib/rpmrc.c:678
+#: lib/rpmrc.c:680
 #, fuzzy, c-format
 msgid "cannot open %s at %s:%d"
 msgstr "%s dosyasý açýlamýyor: "
 
-#: ../lib/rpmrc.c:706
+#: lib/rpmrc.c:721
 #, c-format
 msgid "missing architecture for %s at %s:%d"
 msgstr "%s için %s te eksik mimari:%d"
 
-#: ../lib/rpmrc.c:773
+#: lib/rpmrc.c:788
 #, c-format
 msgid "bad option '%s' at %s:%d"
 msgstr "%s geçersiz seçenek %s:%d"
 
-#: ../lib/rpmrc.c:1109
+#: lib/rpmrc.c:1147
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: ../lib/rpmrc.c:1110
+#: lib/rpmrc.c:1148
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: ../lib/signature.c:147
+#: lib/signature.c:106
+#, c-format
+msgid "sigsize         : %d\n"
+msgstr ""
+
+#: lib/signature.c:107
+#, c-format
+msgid "Header + Archive: %d\n"
+msgstr ""
+
+#: lib/signature.c:108
+#, c-format
+msgid "expected size   : %d\n"
+msgstr ""
+
+#: lib/signature.c:112
+msgid "file is not regular -- skipping size check\n"
+msgstr ""
+
+#: lib/signature.c:134
 #, fuzzy
 msgid "No signature\n"
 msgstr "%s: Ýmza bulunmuyor\n"
 
-#: ../lib/signature.c:150
+#: lib/signature.c:137
 #, fuzzy
 msgid "Old PGP signature\n"
 msgstr "PGP-imzasý yaratýr"
 
-#: ../lib/signature.c:163
+#: lib/signature.c:149
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr "Eski imza !!! Eee bunu nasýl baþardýn bakiiim ?"
 
-#: ../lib/signature.c:167
+#: lib/signature.c:153
 #, fuzzy
 msgid "New Header signature\n"
 msgstr "imzayý okumak mümkün olmadý"
 
 #. 8-byte pad
-#: ../lib/signature.c:175 ../lib/signature.c:213
+#: lib/signature.c:160 lib/signature.c:202
 #, c-format
 msgid "Signature size: %d\n"
 msgstr ""
 
-#: ../lib/signature.c:176 ../lib/signature.c:214
+#: lib/signature.c:161 lib/signature.c:203
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr ""
 
-#: ../lib/signature.c:306 ../lib/signature.c:812
-msgid "Couldn't exec pgp"
+#: lib/signature.c:266
+#, fuzzy, c-format
+msgid "Couldn't exec pgp (%s)"
 msgstr "PGP çalýþtýrýlamadý"
 
-#: ../lib/signature.c:317
+#: lib/signature.c:277
 msgid "pgp failed"
 msgstr "PGP hata verdi"
 
 #. PGP failed to write signature
 #. Just in case
-#: ../lib/signature.c:324
+#: lib/signature.c:284
 msgid "pgp failed to write signature"
 msgstr "PGP imzasýnýn yazýlmasý sýrasýnda hata oluþtu"
 
-#: ../lib/signature.c:329
+#: lib/signature.c:289
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: ../lib/signature.c:340 ../lib/signature.c:416
+#: lib/signature.c:300 lib/signature.c:377
 msgid "unable to read the signature"
 msgstr "imzayý okumak mümkün olmadý"
 
-#: ../lib/signature.c:345
+#: lib/signature.c:305
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: ../lib/signature.c:382 ../lib/signature.c:787
+#: lib/signature.c:343 lib/signature.c:686
 #, fuzzy
 msgid "Couldn't exec gpg"
 msgstr "PGP çalýþtýrýlamadý"
 
-#: ../lib/signature.c:393
+#: lib/signature.c:354
 #, fuzzy
 msgid "gpg failed"
 msgstr "PGP hata verdi"
 
 #. GPG failed to write signature
 #. Just in case
-#: ../lib/signature.c:400
+#: lib/signature.c:361
 #, fuzzy
 msgid "gpg failed to write signature"
 msgstr "PGP imzasýnýn yazýlmasý sýrasýnda hata oluþtu"
 
-#: ../lib/signature.c:405
+#: lib/signature.c:366
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: ../lib/signature.c:421
+#: lib/signature.c:382
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
-#: ../lib/signature.c:436
-#, c-format
-msgid "sigsize         : %d\n"
-msgstr ""
-
-#: ../lib/signature.c:437
-#, c-format
-msgid "Header + Archive: %d\n"
-msgstr ""
-
-#: ../lib/signature.c:438
-#, c-format
-msgid "expected size   : %d\n"
-msgstr ""
+#: lib/signature.c:409
+#, fuzzy
+msgid "Generating signature using PGP.\n"
+msgstr "PGP-imzasý yaratýr"
 
-#: ../lib/signature.c:442
-msgid "file is not regular -- skipping size check\n"
-msgstr ""
+#: lib/signature.c:415
+#, fuzzy
+msgid "Generating signature using GPG.\n"
+msgstr "PGP-imzasý yaratýr"
 
-#: ../lib/signature.c:560 ../lib/signature.c:607
+#: lib/signature.c:492 lib/signature.c:554
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr "PGP çalýþtýrýlamadý. PGP kontrollerini atlamak için --nopgp kullanýn."
 
-#: ../lib/signature.c:605 ../lib/signature.c:677
+#: lib/signature.c:552 lib/signature.c:625
 #, fuzzy
 msgid "exec failed!\n"
 msgstr "%s: Eriþilemedi\n"
 
-#: ../lib/signature.c:679
+#: lib/signature.c:627
 #, fuzzy
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr "PGP çalýþtýrýlamadý. PGP kontrollerini atlamak için --nopgp kullanýn."
 
-#: ../lib/signature.c:716
+#: lib/signature.c:715
+msgid "Couldn't exec pgp"
+msgstr "PGP çalýþtýrýlamadý"
+
+#. @notreached@
+#. This case should have been screened out long ago.
+#: lib/signature.c:719 lib/signature.c:772
+msgid "Invalid %%_signature spec in macro file"
+msgstr ""
+
+#: lib/signature.c:752
 #, fuzzy
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr "rpmrc dosyanýzda \"pgp_name:\" tanýmlanmýþ olmalý"
 
-#: ../lib/signature.c:728
+#: lib/signature.c:764
 #, fuzzy
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr "rpmrc dosyanýzda \"pgp_name:\" tanýmlanmýþ olmalý"
 
-#. Currently the calling function (rpm.c:main) is checking this and
-#. * doing a better job.  This section should never be accessed.
-#.
-#: ../lib/signature.c:736 ../lib/signature.c:816
-msgid "Invalid %%_signature spec in macro file"
-msgstr ""
-
-#: ../lib/transaction.c:793
+#: lib/transaction.c:363
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: ../lib/transaction.c:799
+#: lib/transaction.c:370
 #, fuzzy, c-format
 msgid "excluding %s\n"
 msgstr "%s alýnýyor\n"
 
-#: ../lib/transaction.c:887
+#: lib/transaction.c:489
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: ../lib/uninstall.c:51
+#: lib/uninstall.c:37
+#, c-format
+msgid "cannot remove %s - directory not empty"
+msgstr "%s silinemedi - belirtilen dizin boþ deðil"
+
+#: lib/uninstall.c:40
+#, c-format
+msgid "rmdir of %s failed: %s"
+msgstr "%s dizinin silinmesinde belirtilen hata oluþtu: %s"
+
+#: lib/uninstall.c:48
+#, c-format
+msgid "removal of %s failed: %s"
+msgstr "%s 'in silinmesinde belirtilen hata oluþtu: %s"
+
+#: lib/uninstall.c:97
 #, fuzzy, c-format
 msgid "cannot read packages named %s for uninstall"
 msgstr "%d numaralý paketin silmek için gereken 'header' kýsmý okunamadý"
 
-#: ../lib/uninstall.c:79
+#: lib/uninstall.c:130
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: ../lib/uninstall.c:124
+#: lib/uninstall.c:191
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: ../lib/uninstall.c:138
+#: lib/uninstall.c:204
 msgid "removing database entry\n"
 msgstr ""
 
-#: ../lib/uninstall.c:289
+#: lib/uninstall.c:365
 msgid "execution of script failed"
 msgstr "betik (script) çalýþtýrýlamadý "
 
-#: ../lib/uninstall.c:348
+#: lib/url.c:144
 #, c-format
-msgid "cannot remove %s - directory not empty"
-msgstr "%s silinemedi - belirtilen dizin boþ deðil"
+msgid "Password for %s@%s: "
+msgstr "%s'%s için parola"
 
-#: ../lib/uninstall.c:351
+#: lib/url.c:168 lib/url.c:194
+#, fuzzy, c-format
+msgid "error: %sport must be a number\n"
+msgstr "hata: ftpport bir sayý olmalý\n"
+
+#: lib/url.c:279
+#, fuzzy
+msgid "url port must be a number\n"
+msgstr "hata: ftpport bir sayý olmalý\n"
+
+#. XXX PARANOIA
+#: lib/url.c:317
 #, c-format
-msgid "rmdir of %s failed: %s"
-msgstr "%s dizinin silinmesinde belirtilen hata oluþtu: %s"
+msgid "logging into %s as %s, pw %s\n"
+msgstr ""
 
-#: ../lib/uninstall.c:359
+#: lib/url.c:446
 #, c-format
-msgid "removal of %s failed: %s"
-msgstr "%s 'in silinmesinde belirtilen hata oluþtu: %s"
+msgid "failed to create %s\n"
+msgstr "%s yaratýlamýyor\n"
 
-#: ../lib/verify.c:36
+#: lib/verify.c:36
 #, fuzzy
 msgid "don't verify files in package"
 msgstr "paket yüklemek"
 
-#: ../lib/verify.c:206
+#: lib/verify.c:206
 msgid "package lacks both user name and id lists (this should never happen)"
 msgstr ""
 
-#: ../lib/verify.c:224
+#: lib/verify.c:224
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: ../lib/verify.c:257
+#: lib/verify.c:257
 #, fuzzy, c-format
 msgid "missing    %s\n"
 msgstr "% den sonra eksik {"
 
-#: ../lib/verify.c:321
+#: lib/verify.c:319
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "%s-%s-%s 'nin baðýmlýlýk sorunlarý: "
 
-#: ../lib/verify.c:369
+#: lib/verify.c:367
 #, fuzzy
 msgid "rpmVerify: rpmdbOpen() failed\n"
 msgstr "%s: Eriþilemedi\n"
 
+#, fuzzy
+#~ msgid "failed build prerequisites:\n"
+#~ msgstr "baðýmlýlýk hatasý, aþaðýdaki paketlere ihtiyacýnýz var:\n"
+
+#~ msgid "Couldn't read the header/archive"
+#~ msgstr "'header/archive' okunamadý"
+
+#~ msgid "Couldn't write header/archive to temp file"
+#~ msgstr "'header/archive' geçici bir dosyaya yazýlamadý"
+
+#~ msgid "Couldn't read sigtarget"
+#~ msgstr "Ýmza hedefi 'sigtarget' okunamadý"
+
+#~ msgid "Couldn't write package"
+#~ msgstr "Paket yazýlamadý"
+
+#~ msgid "Unable to write %s"
+#~ msgstr "%s 'nin yazýlmasý mümkün deðil"
+
+#~ msgid "unexpected query specifiers"
+#~ msgstr "sorgulama için beklenmeyen bilgiler girildi"
+
+#~ msgid "--nofiles may only be specified during package verification"
+#~ msgstr "--nofiles sadece paket doðrulamasý sýrasýnda kullanýlabilir"
+
+#~ msgid "--clean may only be used with -b and -t"
+#~ msgstr "--clean sadece -b ve -t ile kullanýlýr"
+
+#~ msgid "--rmsource may only be used with -b and -t"
+#~ msgstr "--rmsource sadece -b ve -t ile kullanýlýr"
+
+#~ msgid "--short-circuit may only be used during package building"
+#~ msgstr "--short-circuit sadece paket oluþturulmasý sýrasýnda kullanýlabilir"
+
+#, fuzzy
+#~ msgid "--short-circuit may only be used with -bc, -bi, -bs, -tc -ti, or -ts"
+#~ msgstr ""
+#~ "--short-circuit mutlaka -bc, bi, -tc veya -ti ile beraber kullanýlmalýdýr"
+
+#, fuzzy
+#~ msgid "pgp version 5 not found: "
+#~ msgstr "Dosya sunucuda bulunamadý"
+
 #~ msgid "showing package: %d\n"
 #~ msgstr "%d : numaralý paketi gösteriyorum\n"